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

New build-tool-depends goals to complement build-tools #3708

Closed
hvr opened this issue Aug 21, 2016 · 6 comments
Closed

New build-tool-depends goals to complement build-tools #3708

hvr opened this issue Aug 21, 2016 · 6 comments

Comments

@hvr
Copy link
Member

hvr commented Aug 21, 2016

When you write build-tools: alex, Cabal checks that an executable of this name is installed. It is jointly the responsibility of the package manager, e.g., cabal-install, to arrange for an executable named alex to be installed.

In a recent commit (c0a4860) we added a special case in cabal-install to handle "well known" build-tools like alex and happy, building and installing them automatically when they are requested in build-tools. However, there remains a more general problem of letting users ask for an executable, which is known to live in a particular package. build-tools as currently specified cannot really handle this, because it is specified to only specify executable names (not package names.) So it seems we really need a new field to give this information. Here is the proposal:

  • We introduce a new tool-depends field, which consists of pkg:exename version-constraints specifications, e.g., tool-depends: gtk2hs-buildtools:gtk2hs2hs < 2.0. This means that we must build the gtk2hsc2hs executable from gtk2hs-buildtools before building this package. In principle cabal-install need only build the gtk2hsc2hs executable, although it's also permissible to just build all the executables in the package (if, e.g., the Setup script doesn't support per-component Cabal <https:/ezyang/ghc-proposals/blob/master/proposals/0000-componentized-cabal.rst>_). If qualification is omitted it is assumed that you need ALL executables from the package.
  • build-tools refers exclusively to non-packaged executables, e.g. provided by the system. However, for backwards compatibility, we introduce an internal mapping hard-coded into cabal-install which maps some build-tools fields to package names. The intended interpretation is that build-tools: happy > 0.4 actually elaborates to tool-depends: happy:happy > 0.4. This mapping will be configurable using the build-tool-packages field in a cabal-project and also modifiable by command line argument. (Names can be bikeshedded of course.)

Examples:

  • tool-depends: mytoolpkg: cabal-install will install all executables defined by a package named mytoolpkg, and ensure they are available prior to building this package.
  • tool-depends: mytoolpkg:mytool: cabal-install will install the executable mytool from mytoolpkg before building this package
  • build-tools: happy: this is equivalent to writing tool-depends: happy:happy.
  • build-tools: someprog: as before this does not effect solver behavior; there just simply needs to be a someprog in the path.

Note: this was originally conceived by @ezyang as part of #220 (which has been addressed); however, since this represents an extension of the .cabal format and hasn't yet been implemented it's been split out into its own issue.

@ezyang
Copy link
Contributor

ezyang commented Aug 22, 2016

I updated the description slightly, and removed the user-configurability of the mapping; I don't think we're going to do that.

@phadej
Copy link
Collaborator

phadej commented Sep 29, 2016

Related comment: ATM specifying build-tools with unknown tool: no warning is printed, but compilation fails. That should be fixed as well. (try e.g. servant-aeson-specs with tests enabled)

@phadej phadej added this to the 2.0 milestone Sep 29, 2016
@Ericson2314
Copy link
Collaborator

Ericson2314 commented Nov 7, 2016

So for my work towards (the reduced goals of) #4047, I think the next step is basically desugaring build-tools into tool-depend. I'm a little fuzzy on the semantics of build-tools, so if somebody could outline them, that would be much appreciated. The end result should be I implement all of tool-depend but the parsing of the field itself (and at that point, I'll be happy to do that too).

On the actual code side, one can now grep for LegacyExeDependency---my plan is most of that code should instead use a new ExeDependency for this, and the desguaring all happen in once place.

@ezyang
Copy link
Contributor

ezyang commented Nov 7, 2016

OK. Do you need a roadmap or are you enough in the brainspace to figure it out?

The current semantics of build-tools is this:

  1. An entry in build-tools denotes an executable name, which we require to be in the PATH when the package is being built.
  2. The exception to (1) is when the name in build-tools refers to a locally defined executable; for a non per-component build (traditional ./Setup configure), then it doesn't have to be in the PATH because we're going to build it ourselves. (In the per-component build case, internal deps are all external so they need to be in the PATH anyway).
  3. In general, it is not known who provides the executable in question. The exceptions are when the executable name is internal (it's defined by the package being built), or when the executable name corresponds to one of a few hardcoded names (alex, happy, etc) in which case cabal-install has hardcoded the particular package to solve for in this case.

Ericson2314 added a commit to Ericson2314/cabal that referenced this issue Nov 12, 2016
haskell#3708 says that an entry without an explicit exe component is shorthand for
all exe components, but this complicates parsing so I'm punting for now: an
explicit component name is required.
Ericson2314 added a commit to Ericson2314/cabal that referenced this issue Nov 14, 2016
haskell#3708 says that an entry without an explicit exe component is shorthand for
all exe components, but this complicates parsing so I'm punting for now: an
explicit component name is required.
@Ericson2314
Copy link
Collaborator

OK to close with #4217 and #4217 picking up the rest?

@ezyang
Copy link
Contributor

ezyang commented Jan 13, 2017

Yep by me.

@ezyang ezyang closed this as completed Jan 13, 2017
@ezyang ezyang changed the title New tool-depend goals to complement build-tools New build-tool-depend goals to complement build-tools Feb 9, 2017
@Ericson2314 Ericson2314 changed the title New build-tool-depend goals to complement build-tools New build-tool-depends goals to complement build-tools Jun 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants