packages feed

cabal-debian 4.27 → 4.27.1

raw patch · 5 files changed

+15/−3 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

cabal-debian.cabal view
@@ -1,5 +1,5 @@ Name:           cabal-debian-Version:        4.27+Version:        4.27.1 Copyright:      Copyright (c) 2007-2014, David Fox, Jeremy Shaw License:        BSD3 License-File:   LICENSE
changelog view
@@ -1,3 +1,9 @@+haskell-cabal-debian (4.27.1) unstable; urgency=low++  * Fix spurious "Just" in debian/copyright file.++ -- David Fox <dsf@seereason.com>  Tue, 21 Apr 2015 07:01:35 -0700+ haskell-cabal-debian (4.27) unstable; urgency=low    * Remove all vestiges of the old data-lens package.  Thanks to
debian-haskell/Debian/Control/Text.hs view
@@ -92,7 +92,7 @@         where hasFieldName :: String -> Field' T.Text -> Bool               hasFieldName name (Field (fieldName',_)) = T.pack name == T.map toLower fieldName'               hasFieldName _ _ = False-    stripWS = T.strip+    stripWS = T.reverse . T.strip . T.reverse . T.strip     protectFieldText = protectFieldText'     asString = T.unpack 
debian/changelog view
@@ -1,3 +1,9 @@+haskell-cabal-debian (4.27.1) unstable; urgency=low++  * Fix spurious "Just" in debian/copyright file.++ -- David Fox <dsf@seereason.com>  Tue, 21 Apr 2015 07:01:35 -0700+ haskell-cabal-debian (4.27) unstable; urgency=low    * Remove all vestiges of the old data-lens package.  Thanks to
src/Debian/Debianize/Files.hs view
@@ -165,7 +165,7 @@ copyright :: (Monad m, Functor m) => FilesT m [(FilePath, Text)] copyright =     do copyrt <- lift $ use (D.copyright)-       return [("debian/copyright", prettyText copyrt)]+       return $ maybe [] (\ x -> [("debian/copyright", prettyText x)]) copyrt  instance Pretty (PP (PackageDescription -> IO CopyrightDescription)) where     pPrint _ = text "<function>"