This project is mirrored from https://github.com/haskell/Cabal.
Pull mirroring updated .
- Feb 24, 2008
-
-
Duncan Coutts authored
Added readBinaryFile for on use (uploading .tar.gz files) Remove readURI as it was not being used.
-
- Feb 23, 2008
-
-
Duncan Coutts authored
-
Duncan Coutts authored
-
- Feb 22, 2008
-
-
Duncan Coutts authored
And note problem #246 about unpacking tar files with links
-
Duncan Coutts authored
Several of the general util functions in Hackage.Utils are now in the main Cabal lib in Distribution.Simple.Utils so we use those. The Package class moved into Distribution.Package. Use the packageId class function in more places.
-
Duncan Coutts authored
and instead of exitWith ExitSuccess just return through main rather than throwing an exception
-
- Feb 21, 2008
-
-
Lennart Kolmodin authored
-
Lennart Kolmodin authored
-
Lennart Kolmodin authored
-
Lennart Kolmodin authored
A naive implementation of 'cabal check'. It will list the errors and warnings as implemented by Cabal, yielding them in groups of severity. Currently ignores verbosity levels, no additional arguments are understood. This addresses ticket #211.
-
Duncan Coutts authored
Then print out at the end why packages failed. This is a step closer to producing detailed build reports.
-
Duncan Coutts authored
And use that to simplify the code slightly. Also add an assertion into removeFailed, that the first returned result is the failed package itself, since we'll rely on this in the install code.
-
- Feb 20, 2008
-
-
Duncan Coutts authored
and adapt to the minor finalisePackageDescription change
-
Duncan Coutts authored
This allows us to figure out what to do when installing a single package fails. Instead of just carrying on as if nothing had happened and then failing several other packages which depended on the one that failed initially we can cut those dependent packages out as soon as the first one fails and if there is anything left that did not depend on the failed package then we can try and carry on.
-
- Feb 15, 2008
-
-
Duncan Coutts authored
The InstalledPackageIndex replaces our Hackage.LocalIndex module
-
- Feb 13, 2008
-
-
Duncan Coutts authored
-
Duncan Coutts authored
-
- Feb 11, 2008
-
-
Duncan Coutts authored
Due to recent Cabal api changes
-
- Feb 10, 2008
-
-
Peter Higley authored
-
- Jan 20, 2008
-
-
Duncan Coutts authored
-
- Jan 19, 2008
-
-
Duncan Coutts authored
Just like the install command has always done. This makes them consistent. So by default that means cabal configure uses --user --prefix=$HOME/.cabal
-
Duncan Coutts authored
-
Duncan Coutts authored
All the other warnings are instances of ghc bug #1148.
-
Duncan Coutts authored
-
- Jan 18, 2008
-
-
Duncan Coutts authored
Implements feature request #167.
-
Duncan Coutts authored
To allow us to implement case-insensitivity in package names given on the command line. We lookup in the package index for packages with the same name case-insensitively. If there is no exact match exact case-sensitively and there are more than one packages matching case-insensitively then it aborts with a message listing the matches. This should not often happen since within any single HackageDB server, we can check that packages names are unique case-insensitively but it's possible to get ambiguities if cabal-install has been configured to use multiple repos.
-
Duncan Coutts authored
-
Duncan Coutts authored
The whole Dependency module is pure now, no IO since it takes the indexes as arguments, rather than the many more args required to do the IO to load up the indexes. Much nicer. Also update all callers.
-
Duncan Coutts authored
Added my copyright as I've almost completely rewritten the module.
-
Duncan Coutts authored
Very much like the RepoIndex module but only holds package ids at the moment rather that full InstalledPackageInfo records that we'd really prefer.
-
Duncan Coutts authored
In preperation to add Hackage.LocalIndex module
-
Duncan Coutts authored
-
- Jan 17, 2008
-
-
Duncan Coutts authored
-
Duncan Coutts authored
Not much faster but rather cleaner.
-
Duncan Coutts authored
This represents the collection of packages from a remote repo. It encodes the policies on how we find packages when we have multiple repos. The policy is encoded in the repo merge operation and in the various kinds of lookup functions.
-
Duncan Coutts authored
-
Duncan Coutts authored
-
- Jan 15, 2008
-
-
Duncan Coutts authored
Fixes setting the --prefix from the command line which was previously being ignored in favour of the default prefix from the config file.
-
Duncan Coutts authored
eg, currently it is "cabal-install/0.4.2"
-
Duncan Coutts authored
Though do display it at deafening verbosity level.
-