Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. May 28, 2023
  2. Feb 12, 2005
  3. Feb 11, 2005
  4. Feb 10, 2005
  5. Feb 04, 2005
  6. Feb 03, 2005
  7. Jan 30, 2005
    • Isaac Potoczny-Jones's avatar
      INTERFACE CHANGES! rework of cabal hooks. much of this is from Krasimir · 60913d94
      Isaac Potoczny-Jones authored
      User hooks look like this now:
           preConf  :: Args -> ConfigFlags -> IO HookedBuildInfo,
           postConf :: IO ExitCode,
      
      type HookedBuildInfo = (Maybe BuildInfo, [(String, BuildInfo)])
      
      this means that only stuff in BuildInfo can be overridden.  A
      buildinfo file now looks like this:
      
      name: libraryname
      include-dirs: /foo/bar, /bang/baz
      extensions: CPP
      
      executable: executablename
      extensions: TemplateHaskell
      60913d94
  8. Jan 18, 2005
  9. Jan 16, 2005
  10. Jan 14, 2005
    • Isaac Potoczny-Jones's avatar
      Refactoring of PackageDescription and BuildInfo · b41d07eb
      Isaac Potoczny-Jones authored
      Introduced new data type, Library which is symmetric to Executable.
      Removed "executable only" and "library only" fields from
      PackageDescription and moved them to their respective internal types.
      
      Moved Build-depends out of buildinfo and into the package description
      proper, as per Ross's suggestion.
      
      Cleaned up parser and test cases accordingly.
      b41d07eb
  11. Jan 13, 2005
  12. Jan 10, 2005
  13. Jan 08, 2005
  14. Jan 06, 2005
  15. Jan 03, 2005
  16. Dec 19, 2004
    • Isaac Potoczny-Jones's avatar
      INTERFACE CHANGE: split modules => exposedModules executableModules · 6dd3600e
      Isaac Potoczny-Jones authored
      ** Previously, "hidden-modules" had nothing to do with what gets
         built, and we had to compute "exposed-modules" with "modules `setdiff`
         hidden modules".  At Ross Paterson's suggestion, I added
         Exposed-Modules.
      
      ** Since the executable sections also used the "modules" field, I
         changed it to use "executable-modules", and got rid of the
         ambiguous "modules" field.  This should hopefully be more clear to
         everyone.
      6dd3600e
  17. Dec 07, 2004
  18. Nov 17, 2004
  19. Nov 03, 2004
  20. Oct 07, 2004
    • Isaac Potoczny-Jones's avatar
      basic preprocessing works! with some bugs · 8ef19c28
      Isaac Potoczny-Jones authored
      End-to-end preprocessing solution, including some test cases.
      One test case fails:
        right now, preprocessors just stick files into the current
        directory, then copies them into the destination.  this is no good
        since we now won't be able to tell them from real source files the
        next time around.  clean is broken here...
      8ef19c28
  21. Jul 30, 2004
  22. Jul 26, 2004
  23. Jul 25, 2004
  24. Jul 23, 2004
  25. Jul 22, 2004
Loading