hackport 0.2.8 → 0.2.9
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- Portage/EBuild.hs +2/−1
- hackport.cabal +1/−1
Portage/EBuild.hs view
@@ -75,7 +75,7 @@ Just pn -> ss "MY_PN=". quote pn. nl. ss "MY_P=". quote "${MY_PN}-${PV}". nl. nl). ss "DESCRIPTION=". quote (description ebuild). nl.- ss "HOMEPAGE=". quote (homepage ebuild). nl.+ ss "HOMEPAGE=". quote (expandVars (homepage ebuild)). nl. ss "SRC_URI=". quote (replaceVars (src_uri ebuild)). nl. nl. ss "LICENSE=". quote (convertLicense . license $ ebuild).@@ -92,6 +92,7 @@ Just _ -> nl. ss "S=". quote ("${WORKDIR}/${MY_P}"). nl) $ [] where replaceVars = replaceCommonVars (name ebuild) (my_pn ebuild) (version ebuild)+ expandVars = replaceMultiVars [(name ebuild, "${PN}")] ss :: String -> String -> String ss = showString
hackport.cabal view
@@ -1,5 +1,5 @@ Name: hackport-Version: 0.2.8+Version: 0.2.9 License: GPL License-file: LICENSE Author: Henning Günther, Duncan Coutts, Lennart Kolmodin