packages feed

cblrepo 0.6.1 → 0.6.2

raw patch · 3 files changed

+5/−5 lines, 3 files

Files

cblrepo.cabal view
@@ -1,5 +1,5 @@ name: cblrepo-version: 0.6.1+version: 0.6.2 cabal-version: >= 1.6 license: OtherLicense license-file: LICENSE-2.0
src/Util/Misc.hs view
@@ -65,7 +65,7 @@ progName = "cblrepo" dbName = progName ++ ".db" -ghcVersion = (Version [7,4,1] [])+ghcVersion = (Version [7,4,2] []) ghcVersionDep = "ghc=" ++ display ghcVersion ++ "-1"  -- {{{1 command line argument type
src/Util/Translation.hs view
@@ -189,8 +189,8 @@                  exeBuildFunction = text "build() {" <>                     nest 4 (empty <$> text "cd ${srcdir}/${_hkgname}-${pkgver}" <$>-                        maybe empty (\ _ ->-                            text $ "patch " ++ shVarValue hkgName ++ ".cabal ${srcdir}/cabal.patch ")+                        maybe empty+                            (\ _ -> text $ "patch " ++ shVarValue hkgName ++ ".cabal ${srcdir}/cabal.patch ")                             cabalPatchFile <$>                         maybe empty (\ _ ->                             text $ "patch -p4 < ${srcdir}/source.patch")@@ -287,7 +287,7 @@         pkgDesc = synopsis pd         url = if null (homepage pd) then "http://hackage.haskell.org/package/${_hkgname}" else (homepage pd)         lic = display (license pd)-        makeDepends = if hasLib then ["haddock"] else [ghcVersionDep, "haddock"] ++ calcExactDeps db pd+        makeDepends = if hasLib then [] else [ghcVersionDep] ++ calcExactDeps db pd         depends = if hasLib then [ghcVersionDep] ++ calcExactDeps db pd else []         extraLibDepends = maybe [] (extraLibs . libBuildInfo) (library pd)         install = if hasLib then (apShInstall ap) else Nothing