[maven-debian-helper] 01/02: Team upload.
Christopher Stuart Hoskin
mans0954 at moszumanska.debian.org
Tue Oct 10 05:31:56 UTC 2017
This is an automated email from the git hooks/post-receive script.
mans0954 pushed a commit to branch master
in repository maven-debian-helper.
commit 26335a5583f7f827290050f8711ba40c47f3601d
Author: Christopher Hoskin <mans0954 at debian.org>
Date: Tue Oct 10 06:29:47 2017 +0100
Team upload.
* Team upload.
* Fix "Wrong package name for -doc packages" use unless instead of &&
(Closes: #878103)
---
debian/changelog | 8 ++++++++
share/perl/maven.pm | 2 +-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index d1eec77..ad1d271 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+maven-debian-helper (2.2.6) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Fix "Wrong package name for -doc packages" use unless instead of &&
+ (Closes: #878103)
+
+ -- Christopher Hoskin <mans0954 at debian.org> Tue, 10 Oct 2017 06:10:30 +0100
+
maven-debian-helper (2.2.5) unstable; urgency=medium
* Team upload.
diff --git a/share/perl/maven.pm b/share/perl/maven.pm
index 27ec4b2..ec4334d 100644
--- a/share/perl/maven.pm
+++ b/share/perl/maven.pm
@@ -25,7 +25,7 @@ sub new {
my @packages = @{$dh{DOPACKAGES}};
$this->{package} = shift @packages;
- $this->{doc_package} = (grep /-doc$/, @packages)[0] && (get_buildoption("nodoc") != 1);
+ $this->{doc_package} = (grep /-doc$/, @packages)[0] unless get_buildoption("nodoc");
my $classconf = '/etc/maven/m2-debian.conf';
my @classpath = ('/usr/share/maven/boot/plexus-classworlds-2.x.jar');
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-debian-helper.git
More information about the pkg-java-commits
mailing list