[Git][haskell-team/DHG_packages][master] trim CDBS leftovers
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Tue Nov 11 13:58:04 GMT 2025
Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
80fb8786 by Alexandre Detiste at 2025-11-11T12:06:58+01:00
trim CDBS leftovers
- - - - -
13 changed files:
- p/haskell-blaze-builder/debian/rules
- p/haskell-elm-bridge/debian/rules
- p/haskell-finite-field/debian/rules
- − p/haskell-hashtables/debian/control.orig
- p/haskell-hmatrix/debian/rules
- p/haskell-regex-pcre2/debian/rules
- p/haskell-regex/debian/rules
- p/haskell-servant-client-core/debian/rules
- p/haskell-servant-client/debian/rules
- p/haskell-servant-elm/debian/rules
- p/haskell-token-bucket/debian/rules
- − p/haskell-topograph/debian/control.orig
- p/haskell-wai-app-static/debian/rules
Changes:
=====================================
p/haskell-blaze-builder/debian/rules
=====================================
@@ -1,6 +1,4 @@
#!/usr/bin/make -f
-DEB_DH_INSTALLCHANGELOGS_ARGS += CHANGES
-
%:
dh $@
=====================================
p/haskell-elm-bridge/debian/rules
=====================================
@@ -1,6 +1,4 @@
#!/usr/bin/make -f
-DEB_DH_COMPAT_DISABLE := 1
-
%:
dh $@
=====================================
p/haskell-finite-field/debian/rules
=====================================
@@ -1,6 +1,5 @@
#!/usr/bin/make -f
-DEB_INSTALL_CHANGELOGS_ALL = CHANGELOG.markdown
export DEB_ENABLE_TESTS = yes
%:
=====================================
p/haskell-hashtables/debian/control.orig deleted
=====================================
@@ -1,131 +0,0 @@
-Source: haskell-hashtables
-Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
-Uploaders:
- Iain Lane <laney at debian.org>,
-Priority: optional
-Section: haskell
-Rules-Requires-Root: no
-Build-Depends:
- cdbs,
- debhelper (>= 10),
- ghc (>= 8),
- ghc-prof,
-<<<<<<< HEAD
- haskell-devscripts (>= 0.13),
- libghc-hashable-dev,
-=======
- libghc-hashable-dev (>= 1.4),
- libghc-hashable-dev (<< 1.5),
->>>>>>> f7b67ac1c3 (hashtables: Upgrading from 1.2.4.2 to 1.3.1)
- libghc-hashable-prof,
- libghc-primitive-dev,
- libghc-primitive-prof,
- libghc-vector-dev (>= 0.7),
- libghc-vector-dev (<< 0.14),
- libghc-vector-prof,
-Build-Depends-Indep:
- ghc-doc,
- libghc-hashable-doc,
- libghc-primitive-doc,
- libghc-vector-doc,
-Standards-Version: 4.6.2
-Homepage: http://github.com/gregorycollins/hashtables
-Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-hashtables
-Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-hashtables]
-
-Package: libghc-hashtables-dev
-Architecture: any
-Depends:
- ${haskell:Depends},
- ${misc:Depends},
- ${shlibs:Depends},
-Recommends:
- ${haskell:Recommends},
-Suggests:
- ${haskell:Suggests},
-Provides:
- ${haskell:Provides},
-Description: mutable hash tables${haskell:ShortBlurb}
- This package provides a couple of different implementations of mutable hash
- tables in the ST monad, as well as a typeclass abstracting their common
- operations, and a set of wrappers to use the hash tables in the IO monad.
- .
- There are three hash table implementations:
- .
- * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
- linear probing as the collision strategy. This should currently be the
- fastest available hash table implementation for lookups, although it has a
- higher memory overhead than others.
- * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
- Cuckoo hashing has worst-case O(1) lookups and performs well even when the
- table is highly loaded.
- * Data.HashTable.ST.Linear contains a linear hash table, which trades some
- insert and lookup performance for higher space efficiency and much shorter
- delays when expanding the table.
- .
- ${haskell:Blurb}
-
-Package: libghc-hashtables-prof
-Architecture: any
-Depends:
- ${haskell:Depends},
- ${misc:Depends},
- ${shlibs:Depends},
-Recommends:
- ${haskell:Recommends},
-Suggests:
- ${haskell:Suggests},
-Provides:
- ${haskell:Provides},
-Description: mutable hash tables -- profiling libraries${haskell:ShortBlurb}
- This package provides a couple of different implementations of mutable hash
- tables in the ST monad, as well as a typeclass abstracting their common
- operations, and a set of wrappers to use the hash tables in the IO monad.
- .
- There are three hash table implementations:
- .
- * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
- linear probing as the collision strategy. This should currently be the
- fastest available hash table implementation for lookups, although it has a
- higher memory overhead than others.
- * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
- Cuckoo hashing has worst-case O(1) lookups and performs well even when the
- table is highly loaded.
- * Data.HashTable.ST.Linear contains a linear hash table, which trades some
- insert and lookup performance for higher space efficiency and much shorter
- delays when expanding the table.
- .
- ${haskell:Blurb}
-
-Package: libghc-hashtables-doc
-Architecture: all
-Section: doc
-Depends:
- ${haskell:Depends},
- ${misc:Depends},
- ${shlibs:Depends},
-Recommends:
- ${haskell:Recommends},
-Suggests:
- ${haskell:Suggests},
-Provides:
- ${haskell:Provides},
-Description: mutable hash tables -- documentation${haskell:ShortBlurb}
- This package provides a couple of different implementations of mutable hash
- tables in the ST monad, as well as a typeclass abstracting their common
- operations, and a set of wrappers to use the hash tables in the IO monad.
- .
- There are three hash table implementations:
- .
- * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
- linear probing as the collision strategy. This should currently be the
- fastest available hash table implementation for lookups, although it has a
- higher memory overhead than others.
- * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
- Cuckoo hashing has worst-case O(1) lookups and performs well even when the
- table is highly loaded.
- * Data.HashTable.ST.Linear contains a linear hash table, which trades some
- insert and lookup performance for higher space efficiency and much shorter
- delays when expanding the table.
- .
- ${haskell:Blurb}
=====================================
p/haskell-hmatrix/debian/rules
=====================================
@@ -12,7 +12,5 @@ ifeq ($(DEB_HOST_ARCH_BITS), 32)
export DEB_SETUP_GHC_CONFIGURE_ARGS = -O0
endif
-DEB_INSTALL_CHANGELOGS_ALL := CHANGELOG
-
%:
dh $@
=====================================
p/haskell-regex-pcre2/debian/rules
=====================================
@@ -1,6 +1,4 @@
#!/usr/bin/make -f
-DEB_DH_COMPAT_DISABLE := 1
-
%:
dh $@
=====================================
p/haskell-regex/debian/rules
=====================================
@@ -1,6 +1,4 @@
#!/usr/bin/make -f
-DEB_DH_COMPAT_DISABLE := 1
-
%:
dh $@
=====================================
p/haskell-servant-client-core/debian/rules
=====================================
@@ -1,7 +1,6 @@
#!/usr/bin/make -f
export DEB_ENABLE_TESTS = yes
-DEB_INSTALL_CHANGELOGS_ALL = CHANGELOG.md
%:
dh $@
=====================================
p/haskell-servant-client/debian/rules
=====================================
@@ -1,7 +1,5 @@
#!/usr/bin/make -f
-DEB_INSTALL_CHANGELOGS_ALL = CHANGELOG.md
-
# Disable tests; they require the missing markdown-unlit library.
export DEB_ENABLE_TESTS = no
=====================================
p/haskell-servant-elm/debian/rules
=====================================
@@ -1,6 +1,4 @@
#!/usr/bin/make -f
-DEB_DH_COMPAT_DISABLE := 1
-
%:
dh $@
=====================================
p/haskell-token-bucket/debian/rules
=====================================
@@ -5,7 +5,6 @@ include /usr/share/dpkg/default.mk
ifneq ($(DEB_HOST_ARCH),riscv64)
export DEB_ENABLE_TESTS = yes
endif
-DEB_INSTALL_CHANGELOGS_ALL = changelog.md
%:
dh $@
=====================================
p/haskell-topograph/debian/control.orig deleted
=====================================
@@ -1,75 +0,0 @@
-Source: haskell-topograph
-Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
-Uploaders: Clint Adams <clint at debian.org>
-Priority: optional
-Section: haskell
-Build-Depends: debhelper (>= 10),
- haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
- cdbs,
- ghc (>= 9.4),
- ghc-prof,
-<<<<<<< HEAD
- libghc-base-compat-dev,
- libghc-base-compat-prof,
- libghc-base-orphans-dev (>= 0.8),
-=======
- libghc-base-orphans-dev (>= 0.9.2),
->>>>>>> 55b6a95bb0 (topograph: Upgrading from 1.0.0.2 to 1.0.1)
- libghc-base-orphans-dev (<< 0.10),
- libghc-base-orphans-prof,
- libghc-vector-dev (>= 0.13.1.0),
- libghc-vector-dev (<< 0.14),
- libghc-vector-prof,
-Build-Depends-Indep: ghc-doc,
- libghc-base-orphans-doc,
- libghc-vector-doc,
-Standards-Version: 4.7.0
-Homepage: https://github.com/phadej/topograph
-X-Description: directed acyclic graphs
- Directed acyclic graphs can be sorted topographically.
- Existence of topographic ordering allows writing many graph
- algorithms efficiently. Many graphs, including most
- dependency graphs, are acyclic.
- .
- There are some algorithms built in: dfs, transpose, transitive
- closure, transitive reduction, etc.
-
-Package: libghc-topograph-dev
-Architecture: any
-Depends: ${haskell:Depends},
- ${misc:Depends},
- ${shlibs:Depends},
-Recommends: ${haskell:Recommends},
-Suggests: ${haskell:Suggests},
-Conflicts: ${haskell:Conflicts},
-Provides: ${haskell:Provides},
-Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
- ${haskell:LongDescription}
- .
- ${haskell:Blurb}
-
-Package: libghc-topograph-prof
-Architecture: any
-Depends: ${haskell:Depends},
- ${misc:Depends},
-Recommends: ${haskell:Recommends},
-Suggests: ${haskell:Suggests},
-Conflicts: ${haskell:Conflicts},
-Provides: ${haskell:Provides},
-Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
- ${haskell:LongDescription}
- .
- ${haskell:Blurb}
-
-Package: libghc-topograph-doc
-Architecture: all
-Section: doc
-Depends: ${haskell:Depends},
- ${misc:Depends},
-Recommends: ${haskell:Recommends},
-Suggests: ${haskell:Suggests},
-Conflicts: ${haskell:Conflicts},
-Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
- ${haskell:LongDescription}
- .
- ${haskell:Blurb}
=====================================
p/haskell-wai-app-static/debian/rules
=====================================
@@ -1,7 +1,6 @@
#!/usr/bin/make -f
export DEB_ENABLE_TESTS = yes
-DEB_DH_STRIP_ARGS := --no-automatic-dbgsym
%:
dh $@
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/80fb878694088dbc23b5c4a257dd28d8757a49f4
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/80fb878694088dbc23b5c4a257dd28d8757a49f4
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20251111/44347901/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list