hackport 0.2.14 → 0.2.15
raw patch · 5 files changed
+8/−8 lines, 5 files
Files
- Cabal2Ebuild.hs +4/−4
- Portage/EBuild.hs +1/−1
- README.rst +1/−1
- cabal/cabal-install/Distribution/Client/Tar.hs +1/−1
- hackport.cabal +1/−1
Cabal2Ebuild.hs view
@@ -110,16 +110,16 @@ ,"ghc-prim" ,"haskell98" ,"hpc" --has ebuild, but only in the overlay- ,"integer"+ ,"integer" -- up to ghc-6.10+ ,"integer-gmp" -- ghc-6.12+ ,"old-locale" ,"old-time" ,"packedstring" ,"pretty" ,"process"- ,"random"- ,"readline" --has ebuild, but only in the overlay+ -- ,"random" -- not a core package since ghc-7.2 ,"rts" -- ,"syb" -- was splitted off from ghc again ,"template-haskell"- ,"unix" --has ebuild, but only in the overlay+ ,"unix" -- unsafe to upgrade ]
Portage/EBuild.hs view
@@ -80,7 +80,7 @@ nl. ss ("# ebuild generated by hackport " ++ hackportVersion ebuild). nl. nl.- ss "EAPI=\"3\"". nl.+ ss "EAPI=4". nl. nl. ss "CABAL_FEATURES=". quote' (sepBy " " $ features ebuild). nl. ss "inherit haskell-cabal". nl.
README.rst view
@@ -21,7 +21,7 @@ $ mkdir ~/overlays $ cd ~/overlays- $ git clone git clone git://github.com/gentoo-haskell/gentoo-haskell.git+ $ git clone git://github.com/gentoo-haskell/gentoo-haskell.git $ cd gentoo-haskell $ hackport update $ ls -1 .hackport/
cabal/cabal-install/Distribution/Client/Tar.hs view
@@ -743,7 +743,7 @@ putString n s = take n s ++ fill (n - length s) '\NUL' --TODO: check integer widths, eg for large file sizes-putOct :: Integral a => FieldWidth -> a -> String+putOct :: (Integral a, Show a) => FieldWidth -> a -> String putOct n x = let octStr = take (n-1) $ showOct x "" in fill (n - length octStr - 1) '0'
hackport.cabal view
@@ -1,5 +1,5 @@ Name: hackport-Version: 0.2.14+Version: 0.2.15 License: GPL License-file: LICENSE Author: Henning Günther, Duncan Coutts, Lennart Kolmodin