Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Nov 06, 2016
  2. Nov 05, 2016
  3. Nov 04, 2016
  4. Nov 03, 2016
  5. Nov 02, 2016
    • Edward Z. Yang's avatar
      a42a1b3d
    • Mikhail Glushenkov's avatar
      new-configure: Select the same plan subset as new-build. · 46d1b0c2
      Mikhail Glushenkov authored
      Before:
      
      $ cabal new-configure
      Resolving dependencies...
      In order, the following would be built (use -v for more details):
       - Crypto-4.2.5.1 (exe:SymmetricTest) (requires build)
       - Crypto-4.2.5.1 (exe:WordListTest) (requires build)
       - Crypto-4.2.5.1 (exe:SHA1Test) (requires build)
       - Crypto-4.2.5.1 (exe:QuickTest) (requires build)
       - Crypto-4.2.5.1 (exe:RSATest) (requires build)
       - Crypto-4.2.5.1 (exe:HMACTest) (requires build)
       - HaXml-1.25.3 (exe:Xtract) (requires build)
       - HaXml-1.25.3 (exe:Validate) (requires build)
       - HaXml-1.25.3 (exe:MkOneOf) (requires build)
       - HaXml-1.25.3 (exe:CanonicaliseLazy) (requires build)
       - HaXml-1.25.3 (exe:Canonicalise) (requires build)
       - HaXml-1.25.3 (exe:XsdToHaskell) (requires build)
       - HaXml-1.25.3 (exe:DtdToHaskell) (requires build)
       - HaXml-1.25.3 (exe:FpMLToHaskell) (requires build)
       - aeson-pretty-0.8.1 (exe:aeson-pretty) (requires build)
       - cpphs-1.20.2 (exe:cpphs) (requires build)
       - hS3-0.5.9 (exe:hs3) (requires build)
       - yaml-0.8.18 (exe:json2yaml) (requires build)
       - yaml-0.8.18 (exe:yaml2json) (requires build)
      
      $ cabal new-build
      Resolving dependencies...
      Up to date
      
      After:
      
      $ cabal new-configure
      Resolving dependencies...
      Up to date
      
      $ cabal new-build
      Resolving dependencies...
      Up to date
      46d1b0c2
    • Mikhail Glushenkov's avatar
      Removed unneeded LANGUAGE pragma. · a078b55e
      Mikhail Glushenkov authored
      a078b55e
    • Mikhail Glushenkov's avatar
      Whitespace. · e815863f
      Mikhail Glushenkov authored
      e815863f
    • John Ericson's avatar
      Merge pull request #4067 from Ericson2314/dep-types · 8bccb4d6
      John Ericson authored
      Make more dependency types
      8bccb4d6
    • Auke Booij's avatar
      Merge pull request #4072 from abooij/pr4065-fixup · 3007be18
      Auke Booij authored
      Deduplicate version checks in cabal-testsuite
      3007be18
  6. Nov 01, 2016
  7. Oct 31, 2016
  8. Oct 30, 2016
  9. Oct 29, 2016
  10. Oct 28, 2016
    • Edward Z. Yang's avatar
    • Edsko de Vries's avatar
      Add support for foreign libraries. · 382143aa
      Edsko de Vries authored
      A stanza for a platform library looks something like
      
          platform-library test-package
            type:                native-shared
      
            if os(Windows)
              options: standalone
              mod-def-file: TestPackage.def
      
            other-modules:       MyPlatformLib.Hello
                                 MyPlatformLib.SomeBindings
            build-depends:       base >=4.7 && <4.9
            hs-source-dirs:      src
            c-sources:           csrc/MyPlatformLibWrapper.c
            default-language:    Haskell2010
      
      where native-shared means that we want to build a native shared library
      (.so on Linux, .dylib on OSX, .dll on Windows). The parser also
      recognizes native-static but this is not currently supported anywhere.
      The standalone option means that the we merge all library dependencies
      into the dynamic library (i.e., ghc options -shared -static), rather
      than make the created dynamic library just record its dependencies (ghc
      options -shared -dynamic); it is currently compulsory on Windows and
      unsupported anywhere else. The mod-def-file can be used to specify a
      module definition file, and is also Windows specific.
      
      There is a bit of refactoring in Build: gbuild is the old buildOrReplExe
      and now deals with both executables and platform libraries.
      382143aa
  11. Oct 27, 2016
Loading