cabal-debian 3.4 → 3.4.1
raw patch · 3 files changed
+12/−13 lines, 3 filesdep −Unixutilsdep −applicative-extrasdep −bytestringsetup-changedPVP ok
version bump matches the API change (PVP)
Dependencies removed: Unixutils, applicative-extras, bytestring, network
API changes (from Hackage documentation)
Files
- Setup.hs +4/−8
- cabal-debian.cabal +1/−5
- debian/changelog +7/−0
Setup.hs view
@@ -1,19 +1,15 @@ #!/usr/bin/runhaskell +import Control.Monad (when) import Distribution.Simple import Distribution.Simple.LocalBuildInfo (LocalBuildInfo(buildDir)) import Distribution.Simple.Program import System.Cmd import System.Exit -main = defaultMainWithHooks simpleUserHooks {- postBuild =- \ _ _ _ lbi ->- case buildDir lbi of- "dist-ghc/build" -> return ()- _ -> runTestScript lbi- -- , runTests = \ _ _ _ lbi -> runTestScript lbi- }+main = defaultMainWithHooks simpleUserHooks+ {- { postBuild = \ _ _ _ lbi -> when (buildDir lbi /= "dist-ghc/build") (runTestScript lbi)+ , runTests = \ _ _ _ lbi -> runTestScript lbi } -} runTestScript lbi = system (buildDir lbi ++ "/cabal-debian-tests/cabal-debian-tests") >>= \ code ->
cabal-debian.cabal view
@@ -1,5 +1,5 @@ Name: cabal-debian-Version: 3.4+Version: 3.4.1 License: BSD3 License-File: debian/copyright Author: David Fox <dsf@seereason.com>@@ -31,9 +31,7 @@ GHC-Options: -threaded -Wall -O2 Build-Depends: ansi-wl-pprint,- applicative-extras, base < 5,- bytestring, Cabal >= 1.9, containers, data-lens,@@ -44,7 +42,6 @@ hsemail, HUnit, mtl,- network, parsec >= 3, process, pureMD5,@@ -52,7 +49,6 @@ syb, text, unix,- Unixutils >= 1.50, utf8-string Exposed-Modules: Data.Algorithm.Diff.Context
debian/changelog view
@@ -1,3 +1,10 @@+haskell-cabal-debian (3.4.1) unstable; urgency=low++ * Remove call to test script in Setup.hs+ * Remove unused dependencies++ -- David Fox <dsf@seereason.com> Mon, 10 Jun 2013 09:12:38 -0700+ haskell-cabal-debian (3.4) unstable; urgency=low * Add support for modifying the Provides and Replaces fields.