Commit e9f5b218 authored by Ilias Tsitsimpis's avatar Ilias Tsitsimpis
Browse files

cabal-debian: Upgrading from 4.36.2 to 4.38

parent efb406a9
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
cabal-debian (4.36.2-2) UNRELEASED; urgency=medium
cabal-debian (4.38-1) unstable; urgency=medium

  [ Clint Adams ]
  * Set Rules-Requires-Root to no.

 -- Clint Adams <clint@debian.org>  Sun, 06 May 2018 22:09:09 -0400
  [ Ilias Tsitsimpis ]
  * New upstream release
  * Bump debhelper compat level to 10
  * Drop fix-utils-shlibs-depends patch, applied upstream

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Mon, 11 Jun 2018 15:20:11 +0300

cabal-debian (4.36.2-1) unstable; urgency=medium

+1 −1
Original line number Diff line number Diff line
9
10
+11 −16
Original line number Diff line number Diff line
@@ -6,14 +6,19 @@ Uploaders:
Priority: optional
Section: haskell
Rules-Requires-Root: no
Build-Depends:
Build-Depends: debhelper (>= 10),
 haskell-devscripts (>= 0.13),
 cdbs,
 debhelper (>= 10),
 ghc (>= 8),
 ghc,
 ghc-prof,
 haskell-devscripts (>= 0.13),
 libghc-ansi-wl-pprint-dev (<< 0.7),
 libghc-diff-dev (>= 0.3.1),
 libghc-diff-prof,
 libghc-hunit-dev,
 libghc-hunit-prof,
 libghc-unixutils-dev (>= 1.53),
 libghc-unixutils-prof,
 libghc-ansi-wl-pprint-dev (>= 0.6),
 libghc-ansi-wl-pprint-dev (<< 0.7),
 libghc-ansi-wl-pprint-prof,
 libghc-bifunctors-dev,
 libghc-bifunctors-prof,
@@ -21,14 +26,10 @@ Build-Depends:
 libghc-data-default-prof,
 libghc-debian-dev (>= 3.91),
 libghc-debian-prof,
 libghc-diff-dev (>= 0.3.1),
 libghc-diff-prof,
 libghc-exceptions-dev,
 libghc-exceptions-prof,
 libghc-hsemail-dev,
 libghc-hsemail-prof,
 libghc-hunit-dev,
 libghc-hunit-prof,
 libghc-lens-dev,
 libghc-lens-prof,
 libghc-memoize-dev (>= 0.7),
@@ -53,8 +54,6 @@ Build-Depends:
 libghc-syb-prof,
 libghc-text-dev,
 libghc-text-prof,
 libghc-unixutils-dev (>= 1.53),
 libghc-unixutils-prof,
 libghc-utf8-string-dev,
 libghc-utf8-string-prof,
Standards-Version: 4.1.4
@@ -66,14 +65,10 @@ Package: cabal-debian
Architecture: any
Section: utils
Depends:
 debhelper (>= 9),
 ${haskell:Depends},
 ${misc:Depends},
 ${shlibs:Depends},
Recommends:
 apt-file,
Conflicts:
 haskell-debian-utils (<< 3.59),
Recommends: apt-file,
Description: Create a debianization for a cabal package
 Tool for creating debianizations of Haskell packages based on the .cabal
 file.  If apt-file is installed it will use it to discover what is the
+0 −11
Original line number Diff line number Diff line
--- a/src/Debian/Debianize/Finalize.hs
+++ b/src/Debian/Debianize/Finalize.hs
@@ -432,6 +432,8 @@
       B.depends %= (anyrel "${shlibs:Depends}" : )
     when (typ == B.Utilities) $
       B.depends %= (anyrel "${shlibs:Depends}" : )
+    when (typ == B.Utilities) $
+      B.depends %= (anyrel "${shlibs:Depends}" : )
     B.depends    %= ([anyrel "${haskell:Depends}", anyrel "${misc:Depends}"] ++)
     B.recommends %= (anyrel "${haskell:Recommends}" : )
     B.suggests   %= (anyrel "${haskell:Suggests}" :)
+0 −1
Original line number Diff line number Diff line
fix-utils-shlibs-depends
Loading