packages feed

cabal-debian 5.2.3 → 5.2.4

raw patch · 4 files changed

+6/−4 lines, 4 filesdep ~Cabaldep ~DiffPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: Cabal, Diff

API changes (from Hackage documentation)

Files

cabal-debian.cabal view
@@ -1,6 +1,6 @@ cabal-version:  3.0 Name:           cabal-debian-Version:        5.2.3+Version:        5.2.4 Copyright:      Copyright (c) 2007-2014, David Fox, Jeremy Shaw; 2017-2024 Clint Adams License:        BSD-3-Clause License-File:   LICENSE@@ -136,7 +136,7 @@   test-data/artvaluereport2/output/debian/artvaluereport2-backups.install   test-data/artvaluereport2/output/debian/copyright   test-data/artvaluereport2/output/debian/source/format-Tested-With:    GHC ==9.8.1 || ==9.6.4 || ==9.4.8+Tested-With:    GHC ==9.10.1 || ==9.8.2 || ==9.6.6  Source-Repository head   type: git
src/Debian/Debianize/Bundled.hs view
@@ -165,12 +165,14 @@                          missing (Just "8.0.2") = Set.fromList ["bin-package-db"]                          missing (Just "9.0.2") = Set.fromList ["bin-package-db", "hoopl"]                          missing (Just "9.4.6") = Set.fromList ["bin-package-db", "hoopl"]+                         missing (Just "9.6.6") = Set.fromList ["bin-package-db", "hoopl"]                          missing _ = mempty                          extra (Just "7.8.4") = Set.fromList ["haskell2010","haskell98","old-locale","old-time"]                          extra (Just "8.0.1") = Set.fromList ["ghc-boot","ghc-boot-th","ghci"]                          extra (Just "8.0.2") = Set.fromList ["ghc-boot","ghc-boot-th","ghci"]                          extra (Just "9.0.2") = Set.fromList ["exceptions", "ghc-bignum", "ghc-boot", "ghc-boot-th", "ghc-compact", "ghc-heap", "ghci", "libiserv", "mtl", "parsec", "stm", "text"]                          extra (Just "9.4.6") = Set.fromList ["exceptions", "ghc-bignum", "ghc-boot", "ghc-boot-th", "ghc-compact", "ghc-heap", "ghci", "libiserv", "mtl", "parsec", "stm", "text"]+                         extra (Just "9.6.6") = Set.fromList ["Cabal-syntax","exceptions","ghc-bignum","ghc-boot","ghc-boot-th","ghc-compact","ghc-heap","ghci","libiserv","mtl","parsec","rts","stm","system-cxx-std-lib","text"]                          extra _ = mempty                      assertEqual "Bundled4"                        (missing ver, extra ver)
src/Debian/Debianize/Finalize.hs view
@@ -463,7 +463,7 @@          let packagesURI = "https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/" <> pack src         zoom D.control $ do-           S.standardsVersion .?= Just (parseStandardsVersion "4.6.2")+           S.standardsVersion .?= Just (parseStandardsVersion "4.7.0")            S.homepage .?= Just ("https://hackage.haskell.org/package/" <> pack (unPackageName cabal))            S.vcsFields %= Set.union (Set.fromList               [ S.VCSBrowser packagesURI
src/Debian/Debianize/Optparse.hs view
@@ -340,7 +340,7 @@ standardsVersionP = O.option (parseStandardsVersion <$> O.str) m where   m = O.help helpMsg       <> O.long "standards-version"-      <> O.value (parseStandardsVersion "4.6.2")+      <> O.value (parseStandardsVersion "4.7.0")       <> O.metavar "CABALVERSION"   helpMsg = unlines [     "Claim compatibility to this version of the Debian policy",