Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
jh_linkjars: Skip debhelper-compat because it is a virtual package.
· 7421acf2
Markus Koschany
authored
Sep 29, 2019
Closes: #933715
7421acf2
Switch to debhelper-compat = 12.
· 93d1ff57
Markus Koschany
authored
Sep 29, 2019
93d1ff57
Declare compliance with Debian Policy 4.4.0.
· 816b186f
Markus Koschany
authored
Sep 29, 2019
816b186f
Update changelog
· d39b74ae
Markus Koschany
authored
Sep 29, 2019
d39b74ae
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
d39b74ae
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@debian.org> Sun, 29 Sep 2019 00:12:36 +0200
javatools (0.72.9) unstable; urgency=medium
* Team upload.
...
...
debian/compat
deleted
100644 → 0
View file @
979ae9a5
11
debian/control
View file @
d39b74ae
...
...
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends:
debhelper (
>
= 1
1
),
debhelper
-compat
(= 1
2
),
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
View file @
d39b74ae
...
...
@@ -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
);
...
...