This project is mirrored from https://github.com/haskell/Cabal.
Pull mirroring updated .
- Jul 29, 2008
-
-
Duncan Coutts authored
Since it is shared between libs and exes. Extend the documentation to describe the syntax of version constraints, including the new version range syntax "build-depends: foo ==1.2.*".
-
Duncan Coutts authored
Change to runhaskell Setup or cabal-install as appropriate.
-
Duncan Coutts authored
It doesn't need to be right up near the top.
-
Duncan Coutts authored
in one of the fields exposed-modules, other-modules or main-is Add an extra note to the section on the Paths_pkgname module as the fact that it's automatically generated confuses people.
-
Duncan Coutts authored
-
Duncan Coutts authored
-
Duncan Coutts authored
-
Duncan Coutts authored
I realised when I started to document it that the behaviour was not terribly consistent or sensible. The meaning now is: The limitation is that * wildcards are only allowed in place of the file name, not in the directory name or file extension. In particular, wildcards do not include directories contents recursively. Furthermore, if a wildcard is used it must be used with an extension, so "data-files: data/*" is not allowed. When matching a wildcard plus extension, a file's full extension must match exactly, so "*.gz" matches "foo.gz" but not "foo.tar.gz". The reason for providing only a very limited form of wildcard is to concisely express the common case of a large number of related files of the same file type without making it too easy to accidentally include unwanted files.
-
Duncan Coutts authored
Fixes ticket #312. For example a user could use: cabal configure --libsubdir="$pkgid/$compiler/$arch" if they wanted to have packages for multiple architectures co-exist in the same filestore area.
-
Duncan Coutts authored
Rather than "pkg ~ 1.2.*". This seemed to be the consensus. The syntax "pkg == 1.2.*" means "pkg >= 1.2 && < 1.3" and it is to encourage people to put upper bounds on api versions.
-
Duncan Coutts authored
Should eliminate the corner case where we're doing a global install but the user package db contains the exact same version as in the global package db. Perhaps we should warn in that case anyway since it's likely to go wrong later.
-
- Jul 28, 2008
-
-
malcolm wallace authored
-
malcolm wallace authored
-
- Jul 24, 2008
-
-
malcolm wallace authored
-
- Jul 23, 2008
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- Jul 20, 2008
-
-
Duncan Coutts authored
Since we do not need to know if hsc2hs uses ghc or gcc as cc by default since in either case we now tell it to use gcc.
-
Duncan Coutts authored
Lookup what flags to use from the package index. Previously this was done by calling ghc as cc and passing -package flags to ghc. ghc would then lookup what extra flags to pass to gcc. We now do that ourselves directly and it's a good deal simpler and it's portable to the other haskell implementations. This is only a first go, the flags may not all be exactly right. Needs testing.
-
Duncan Coutts authored
on Windows we have to find ghc's private copy of gcc.exe
-
Duncan Coutts authored
with type :: PackageFixedDeps pkg => PackageSet pkg -> [pkg]
-
Duncan Coutts authored
dependencyGraph and reverseDependencyClosure now return the full package rather than just the PackageIdentifier
-
Duncan Coutts authored
Turns out the feature to do case-insensitive lookups was only needed in cabal-install (and only in one little part) and elsewhere it causes problems. So use PackageSet instead.
-
- Jul 22, 2008
-
-
Ian Lynagh authored
-
Ian Lynagh authored
This is a bit of a kludge around GHC's #2201, until Cabal is updated to use ghc-pkg dump.
-
- Jul 20, 2008
-
-
Ian Lynagh authored
-
Duncan Coutts authored
-
Ian Lynagh authored
We used to do this with $(eval ...) and $(call ...) in the Makefile, but make 3.79.1 (which is what comes with msys) doesn't understand $(eval ...), so now we just stick the expanded loop directly into the Makefile we generate.
-
- Jul 15, 2008
-
-
Ian Lynagh authored
-
- Jul 13, 2008
-
-
Ian Lynagh authored
-
Ian Lynagh authored
if we have been told to use a specific one with --package-db
-
- Jul 12, 2008
-
-
Ian Lynagh authored
If datadir is foo and the datafile is bar then we should install it to $datadir/bar, not $datadir/foo/bar.
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- Jul 11, 2008
-
-
Duncan Coutts authored
a request from Saizan
-
Duncan Coutts authored
-
Ian Lynagh authored
When a preprocessor generates a .hs file we need to put the .hs-boot file next to it so that GHC can find it.
-
Ian Lynagh authored
-
- Jul 10, 2008
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- Jul 03, 2008
-
-
Ian Lynagh authored
-