Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cabal gen-bounds: Consume (multiple) build plans? #8654

Open
nomeata opened this issue Jan 3, 2023 · 4 comments · May be fixed by #10840
Open

cabal gen-bounds: Consume (multiple) build plans? #8654

nomeata opened this issue Jan 3, 2023 · 4 comments · May be fixed by #10840

Comments

@nomeata
Copy link
Contributor

nomeata commented Jan 3, 2023

I’d like to automate the managing of my build dependencies more, and cabal gen-bounds sounds like it should be an important tool in the process.

However, my projects usually support a range of builds (e.g. different GHC versions), and simply generating the bounds based on one solver results is not going to work.

I could imagine that cabal gen-bounds could read in multiple build plans (e.g. the plan.json produced when building the project) and generating the appropriate dependencies (maybe in ^>= { 1.2.3, 3.4.5 } form) from the union of these build plans.

(Also see related discussion in https://discourse.haskell.org/t/dependency-version-bounds-are-a-lie/5522/17?u=nomeata)

@jneira
Copy link
Member

jneira commented Jan 3, 2023

Hi, thanks for the suggestion. There are other issues about gen-bounds which could be related:

From my tests cabal gen-bounds uses the ghc in PATH so a possible workaround for get bounds for each ghc could be set them as the default ghc:

PS D:\dev\ws\haskell\cabal-test> ghcup set ghc 9.4.2
.......
PS D:\dev\ws\haskell\cabal-test> cabal gen-bounds
.......
bytestring       >= 0.11.3 && < 0.12,
network          >= 3.1.2 && < 3.2,
process          >= 1.6.15 && < 1.7,
text             >= 2.0.1 && < 2.1,
PS D:\dev\ws\haskell\cabal-test> ghcup set ghc 8.10.7
................
PS D:\dev\ws\haskell\cabal-test> cabal gen-bounds -v0
................
bytestring       >= 0.10.12 && < 0.11,
network          >= 3.1.2 && < 3.2,
process          >= 1.6.13 && < 1.7,
text             >= 1.2.4 && < 1.3,

@nomeata
Copy link
Contributor Author

nomeata commented Jan 3, 2023

I started hacking on my own tool (https://github.com/nomeata/cabal-plan-bounds), see it in action at
https://discourse.haskell.org/t/dependency-version-bounds-are-a-lie/5522/22?u=nomeata

But I’ll happily discard that once this is “officially” supported.

(I actually think it’s advantagous if gen-bounds reads a plan, rather than tries to resolve it itself. This way you can have different CI Jobs for different configurations, and collect the plans in the end, without for example having to install all relevant versions of GHC in the same job. But maybe that’s premature optimization.)

@mergify mergify bot closed this as completed in 1f87c0f Jan 5, 2023
@nomeata
Copy link
Contributor Author

nomeata commented Jan 5, 2023

It looks like the wrong issue was closed by that commit. Can it be reopened?

@fendor fendor reopened this Jan 5, 2023
@jneira
Copy link
Member

jneira commented Jan 5, 2023

Well, read the cabal plan outut is more flexible and the way to go for an external tool. However there is no cabal command handling explicitly that output afaik. They consume it implicitly, triggering its generation if needed (or on the fly, like gen-bounds).
I guess it was considered an implementaion detail which should not be leaked to final users.

That design could be changed of course, but it would have broader implications (why not use it explicitly in more places?)

mpickering added a commit that referenced this issue Mar 20, 2025
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
mpickering added a commit that referenced this issue Mar 20, 2025
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
@mpickering mpickering linked a pull request Mar 20, 2025 that will close this issue
8 tasks
mpickering added a commit that referenced this issue Mar 20, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
mpickering added a commit that referenced this issue Mar 20, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
mpickering added a commit that referenced this issue Mar 21, 2025
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
mpickering added a commit that referenced this issue Mar 21, 2025
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
mpickering added a commit that referenced this issue Mar 21, 2025
This commit implements project-aware functionality for the `cabal gen-bounds` command,
allowing it to work correctly in multi-package projects. Previously, running `gen-bounds`
from within a package directory that depends on another local package would fail
because it couldn't find the local dependency.

The implementation follows the same pattern as other v2 commands, creating a full
project context that knows about all packages defined in the cabal.project file.
This allows `gen-bounds` to properly analyze dependencies between local packages
and suggest appropriate bounds.

```
cabal gen-bounds <TARGET>
```

Fixes #7504 #8654 #9752 #5932
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants