[Git][java-team/javatools][master] 4 commits: jh_linkjars: Skip debhelper-compat because it is a virtual package.
Markus Koschany
gitlab at salsa.debian.org
Sat Sep 28 23:26:58 BST 2019
Markus Koschany pushed to branch master at Debian Java Maintainers / javatools
Commits:
7421acf2 by Markus Koschany at 2019-09-28T22:16:25Z
jh_linkjars: Skip debhelper-compat because it is a virtual package.
Closes: #933715
- - - - -
93d1ff57 by Markus Koschany at 2019-09-28T22:16:28Z
Switch to debhelper-compat = 12.
- - - - -
816b186f by Markus Koschany at 2019-09-28T22:16:28Z
Declare compliance with Debian Policy 4.4.0.
- - - - -
d39b74ae by Markus Koschany at 2019-09-28T22:16:28Z
Update changelog
- - - - -
4 changed files:
- debian/changelog
- − debian/compat
- debian/control
- jh_linkjars
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,13 @@
+javatools (0.72.10) unstable; urgency=medium
+
+ * Team upload.
+ * jh_linkjars: Skip debhelper-compat because it is a virtual package.
+ (Closes: #933715)
+ * Switch to debhelper-compat = 12.
+ * Declare compliance with Debian Policy 4.4.0.
+
+ -- Markus Koschany <apo at debian.org> Sun, 29 Sep 2019 00:12:36 +0200
+
javatools (0.72.9) unstable; urgency=medium
* Team upload.
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg at apache.org>
Build-Depends:
- debhelper (>= 11),
+ debhelper-compat (= 12),
default-jdk,
libarchive-zip-perl (>= 1.30-6~),
libtest-minimumversion-perl,
@@ -13,7 +13,7 @@ Build-Depends:
markdown,
perl
Rules-Requires-Root: no
-Standards-Version: 4.2.1
+Standards-Version: 4.4.0
Vcs-Git: https://salsa.debian.org/java-team/javatools.git
Vcs-Browser: https://salsa.debian.org/java-team/javatools
=====================================
jh_linkjars
=====================================
@@ -108,6 +108,8 @@ sub find_jars {
my @all_jars;
while (@packages) {
my $pkg = pop(@packages);
+ # Skip debhelper-compat because it is a virtual package #933715
+ next if $pkg =~ "debhelper-compat";
my $dpkg_output = `dpkg -L "$pkg"`;
error_exitcode("dpkg -L \"$pkg\"") if $?;
my @jars = parse_dpkg_L($dpkg_output);
View it on GitLab: https://salsa.debian.org/java-team/javatools/compare/979ae9a579aa67bd56a002064c09fd24f7550530...d39b74aefb66fb0c7092c5b2e6785f6b22f9513e
--
View it on GitLab: https://salsa.debian.org/java-team/javatools/compare/979ae9a579aa67bd56a002064c09fd24f7550530...d39b74aefb66fb0c7092c5b2e6785f6b22f9513e
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-java-commits/attachments/20190928/63cf7323/attachment.html>
More information about the pkg-java-commits
mailing list