[Git][haskell-team/haskell-devscripts][master] 2 commits: dh_haskell_depends_cabal: only operate on -dev and -prof packages
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Tue Oct 28 04:05:16 GMT 2025
Scott Talbert pushed to branch master at Debian Haskell Group / haskell-devscripts
Commits:
86b81ba2 by Scott Talbert at 2025-10-27T23:59:50-04:00
dh_haskell_depends_cabal: only operate on -dev and -prof packages
- - - - -
09016b36 by Scott Talbert at 2025-10-28T00:00:39-04:00
haskell-devscripts (0.16.42) unstable; urgency=medium
- - - - -
2 changed files:
- debian/changelog
- dh_haskell_depends_cabal
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+haskell-devscripts (0.16.42) unstable; urgency=medium
+
+ * dh_haskell_depends_cabal: only operate on -dev and -prof packages
+
+ -- Scott Talbert <swt at techie.net> Tue, 28 Oct 2025 00:00:22 -0400
+
haskell-devscripts (0.16.41) unstable; urgency=medium
* dh_haskell_recommends...: handle non-existent install dir
=====================================
dh_haskell_depends_cabal
=====================================
@@ -59,6 +59,7 @@ my $haskell_ghc_pkg = ghc_pkg_command();
for my $installable (@{ $dh{DOPACKAGES} }) {
my $type = installable_type($installable);
+ next if ($type ne 'dev' && $type ne 'prof');
my $haskell_compiler
= installable_hc($installable) || $ENV{DEB_DEFAULT_COMPILER};
View it on GitLab: https://salsa.debian.org/haskell-team/haskell-devscripts/-/compare/4deb58d9ca375e3c38250898bbd0b33f27791d9e...09016b36696aa00a3575e276d70f24e9ab31fa82
--
View it on GitLab: https://salsa.debian.org/haskell-team/haskell-devscripts/-/compare/4deb58d9ca375e3c38250898bbd0b33f27791d9e...09016b36696aa00a3575e276d70f24e9ab31fa82
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/20251028/7052482e/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list