This is an automated email from the git hooks/post-receive script. jwilk pushed a commit to branch master in repository devscripts.
commit 00f26d3a12f0e8327317e350321abbf25bddf472 Author: Jakub Wilk <[email protected]> Date: Tue Jun 28 21:55:24 2016 +0200 uscan: Fix gpgv existence check --- debian/changelog | 4 ++++ scripts/uscan.pl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a50de74..8f4aba5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,6 +34,10 @@ devscripts (2.16.6) UNRELEASED; urgency=medium * uscan: + Fix watch file examples around pgpmode=none. + [ Jakub Wilk ] + * uscan: + + Fix gpgv existence check. + -- James McCoy <[email protected]> Sat, 04 Jun 2016 13:46:07 -0400 devscripts (2.16.5) unstable; urgency=medium diff --git a/scripts/uscan.pl b/scripts/uscan.pl index 637e78b..e011bc8 100755 --- a/scripts/uscan.pl +++ b/scripts/uscan.pl @@ -1752,7 +1752,7 @@ sub dehs_verbose ($); my $havegpgv = first { -x $_ } qw(/usr/bin/gpgv2 /usr/bin/gpgv); my $havegpg = first { -x $_ } qw(/usr/bin/gpg2 /usr/bin/gpg); -uscan_die "Please install gpgv or gpgv2.\n" unless defined $havegpg; +uscan_die "Please install gpgv or gpgv2.\n" unless defined $havegpgv; uscan_die "Please install gnupg or gnupg2.\n" unless defined $havegpg; sub usage { -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
