[libgnupg-interface-perl] annotated tag debian/0.52-8 created (now 62b25c8)

2017-05-26 Thread Daniel Kahn Gillmor
This is an automated email from the git hooks/post-receive script.

dkg pushed a change to annotated tag debian/0.52-8
in repository libgnupg-interface-perl.

at  62b25c8   (tag)
   tagging  f75c03a168168fe99dee6529d256ab4b132a1457 (commit)
  replaces  debian/0.52-7
 tagged by  Daniel Kahn Gillmor
on  Fri May 26 19:56:16 2017 -0400

- Log -
libgnupg-interface-perl Debian release 0.52-8
-BEGIN PGP SIGNATURE-

iQJKBAABCgA0FiEEOCdgUepHf6PklTkyFJitxsGSMjcFAlkowKAWHGRrZ0BmaWZ0
aGhvcnNlbWFuLm5ldAAKCRAUmK3GwZIyN0zuD/9OSd0bea9GQgCJxux70yMPRwr8
p8g//oA9CtOLQaOw6Ij5LdfkRuTGFfgsmoRi9q5Mhqt+zsS7Nc+/2O3UjbdZ4r6D
1jA8dG46443RU5SVMV7JN3WqZ8XFV1Xm7InEl0a8lnnuXEzKnx4Ces1WfM6jiyiH
NtKxTde77lMZalvdzgg0UXmqsrEV7KnclHxnrzS3qjiAQ5OceLP0OEZgCpuo3477
Tky9Aw+BQDUQc4UeLoDhKtOL9Fe9nGoSgeqNl8iC8kpDj6Q2a8aGUtrVgRoM7ICQ
2YXvZINd1AJ1rN1109yQg/bXhZYgGRi7eaJZtMC5jVjHyVJ9ziCygmORXtG8Xi8o
PKf3Wxl4qK0SXR4VznwCE9A0Y3HFBcekzV431HlMXITpmA2ASkEpdj3SHwco/4un
QYHKr3SdnJgRW1IWlOJJRwuUe/Zy9/pX7wFMOKFfcl9rsy58g9b6DhoFrYDE2faF
Wwom7AObcGU9IIZO9cofnQLFDb7506xWfnDNAp1rxiLOwZeMP9tF6hizmn/+hsS6
q7qmRioFpDQFA3E00ngEU9dZ8ZWeXf12XxABYK+KEKKbBZr0KA8ofbZpOZw95vRe
vBI2sK0IGfmSduNwm0hKLaCvYVGpmvv2VdCDYLP8Pi1csbN7/+3iE/HTV9GyjPh4
hRdwv6Bn0JrKC0uZvA==
=ZG5L
-END PGP SIGNATURE-

Daniel Kahn Gillmor (2):
  enable working with gpg1 and in-band passwords
  prepare another relase targeting RT

---

This annotated tag includes the following new commits:

   new  d92a63e   enable working with gpg1 and in-band passwords
   new  f75c03a   prepare another relase targeting RT

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgnupg-interface-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libgnupg-interface-perl] 01/02: enable working with gpg1 and in-band passwords

2017-05-26 Thread Daniel Kahn Gillmor
This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch experimental
in repository libgnupg-interface-perl.

commit d92a63e4b20a6aa8317f7226012a0f776e3cb9f4
Author: Daniel Kahn Gillmor 
Date:   Fri May 26 19:54:45 2017 -0400

enable working with gpg1 and in-band passwords
---
 ...-work-with-gpg1-assuming-plain-gpg-is-mod.patch | 51 ++
 debian/patches/series  |  1 +
 2 files changed, 52 insertions(+)

diff --git 
a/debian/patches/0019-Make-things-work-with-gpg1-assuming-plain-gpg-is-mod.patch
 
b/debian/patches/0019-Make-things-work-with-gpg1-assuming-plain-gpg-is-mod.patch
new file mode 100644
index 000..ae61431
--- /dev/null
+++ 
b/debian/patches/0019-Make-things-work-with-gpg1-assuming-plain-gpg-is-mod.patch
@@ -0,0 +1,51 @@
+From: Daniel Kahn Gillmor 
+Date: Fri, 26 May 2017 18:15:24 -0400
+Subject: Make things work with gpg1 (assuming plain 'gpg' is modern)
+
+ * avoid sending --pinentry-mode=loopback if gpg is invoked as gpg1
+ * fix up t/list_secret_keys to account for the varied output
+ * t/decrypt.t still fails two agent-only tests, but presumably folks
+   who use gpg1 are not expecting to use the agent.
+---
+ lib/GnuPG/Interface.pm | 5 -
+ t/list_secret_keys.t   | 9 +
+ 2 files changed, 9 insertions(+), 5 deletions(-)
+
+diff --git a/lib/GnuPG/Interface.pm b/lib/GnuPG/Interface.pm
+index 5d8b0ec..f80ead5 100644
+--- a/lib/GnuPG/Interface.pm
 b/lib/GnuPG/Interface.pm
+@@ -112,8 +112,11 @@ sub fork_attach_exec( $% ) {
+ # -- version 2.1.x or later.  It's not clear to me how we can
+ # safely and efficiently avoid this assumption (see
+ # https://lists.gnupg.org/pipermail/gnupg-devel/2016-October/031800.html)
++#
++# as a (brittle and incomplete) cleanup, we will avoid trying to
++# send pinentry-loopback if the program is invoked as "gpg1"
+ $use_loopback_pinentry = 1
+-  if ($handles->passphrase());
++  if ($handles->passphrase() && ! ($self->call =~ m/gpg1$/));
+ 
+ # deprecation support
+ $args{commands} ||= $args{gnupg_commands};
+diff --git a/t/list_secret_keys.t b/t/list_secret_keys.t
+index d1e3f30..8e3c911 100644
+--- a/t/list_secret_keys.t
 b/t/list_secret_keys.t
+@@ -23,11 +23,12 @@ TEST
+ $outfile = 'test/secret-keys/1.out';
+ my $out = IO::File->new( "> $outfile" )
+   or die "cannot open $outfile for writing: $ERRNO";
+-my $modern_pubring_line = $gnupg->options->homedir() . "/pubring.kbx\n";
++my $seckey_file = $gpg_is_modern ? 'pubring.kbx' : 'secring.gpg';
++my $pubring_line = $gnupg->options->homedir() . '/' . $seckey_file . "\n";
+ while (<$stdout>) {
+-  if ($gpg_is_modern && ($_ eq $modern_pubring_line)) {
+-$out->print("test/gnupghome/pubring.kbx\n");
+-  } elsif ($gpg_is_modern && /^--*$/) {
++  if ($_ eq $pubring_line) {
++$out->print('test/gnupghome/'.$seckey_file."\n");
++  } elsif (/^--*$/) {
+ $out->print("--\n");
+   } else {
+ $out->print( $_ );
diff --git a/debian/patches/series b/debian/patches/series
index 3d9caf8..13d2f7e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -16,3 +16,4 @@
 0016-Test-use-of-gpg-without-explicit-passphrase-agent-pi.patch
 0017-Kill-any-GnuPG-agent-before-and-after-the-test-suite.patch
 0018-Use-a-short-temporary-homedir-during-the-test-suite.patch
+0019-Make-things-work-with-gpg1-assuming-plain-gpg-is-mod.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgnupg-interface-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libgnupg-interface-perl] 02/02: prepare debian release

2017-05-26 Thread Daniel Kahn Gillmor
This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch experimental
in repository libgnupg-interface-perl.

commit 598c984db36adc30a37a95f7b6b73151099823a9
Author: Daniel Kahn Gillmor 
Date:   Fri May 26 14:37:54 2017 -0400

prepare debian release
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 80ca591..02c1637 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libgnupg-interface-perl (0.52-7) experimental; urgency=medium
+
+  * Use temporary, short-path GNUPGHOME for test suites (Closes: #861591)
+
+ -- Daniel Kahn Gillmor   Fri, 26 May 2017 14:37:11 
-0400
+
 libgnupg-interface-perl (0.52-6) experimental; urgency=medium
 
   * more tweaks to test suite and use of passphrase (enables in-band

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgnupg-interface-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libgnupg-interface-perl] 01/02: Use temporary, short-path GNUPGHOME for test suites (Closes: #861591)

2017-05-26 Thread Daniel Kahn Gillmor
This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch experimental
in repository libgnupg-interface-perl.

commit 1977297160208cb20edaf2339eee8eae0490271b
Author: Daniel Kahn Gillmor 
Date:   Fri May 26 14:36:13 2017 -0400

Use temporary, short-path GNUPGHOME for test suites (Closes: #861591)
---
 ...uPG-agent-before-and-after-the-test-suite.patch |  42 
 ...t-temporary-homedir-during-the-test-suite.patch | 110 +
 debian/patches/series  |   2 +
 3 files changed, 154 insertions(+)

diff --git 
a/debian/patches/0017-Kill-any-GnuPG-agent-before-and-after-the-test-suite.patch
 
b/debian/patches/0017-Kill-any-GnuPG-agent-before-and-after-the-test-suite.patch
new file mode 100644
index 000..2f20f14
--- /dev/null
+++ 
b/debian/patches/0017-Kill-any-GnuPG-agent-before-and-after-the-test-suite.patch
@@ -0,0 +1,42 @@
+From: Daniel Kahn Gillmor 
+Date: Thu, 25 May 2017 16:07:45 -0400
+Subject: Kill any GnuPG agent before and after the test suite.
+
+This helps to ensure that the test suite daemon is started fresh at
+every test suite run.  And it also avoids leaving a daemon running
+after the test suite, assuming the test suite manages to reach the
+end.
+
+This is considered a reasonable practice by upstream.
+---
+ t/000_setup.t   | 3 +++
+ t/zzz_cleanup.t | 2 ++
+ 2 files changed, 5 insertions(+)
+
+diff --git a/t/000_setup.t b/t/000_setup.t
+index b183241..4dc4329 100644
+--- a/t/000_setup.t
 b/t/000_setup.t
+@@ -17,6 +17,9 @@ TEST
+ $agentconf->write("pinentry-program " . getcwd() . 
"/test/fake-pinentry.pl\n");
+ $agentconf->close();
+ copy('test/gpg.conf', 'test/gnupghome/gpg.conf');
++# reset the state of any long-lived gpg-agent, ignoring errors:
++system('gpgconf', '--homedir=test/gnupghome', '--quiet', '--kill', 
'gpg-agent');
++
+ reset_handles();
+ 
+ my $pid = $gnupg->import_keys(command_args => [ 'test/public_keys.pgp', 
'test/secret_keys.pgp', 'test/new_secret.pgp' ],
+diff --git a/t/zzz_cleanup.t b/t/zzz_cleanup.t
+index 5c03a72..eea3a48 100644
+--- a/t/zzz_cleanup.t
 b/t/zzz_cleanup.t
+@@ -12,6 +12,8 @@ use File::Path qw (remove_tree);
+ TEST
+ {
+ my $err = [];
++# kill off any long-lived gpg-agent, ignoring errors:
++system('gpgconf', '--homedir=test/gnupghome', '--quiet', '--kill', 
'gpg-agent');
+ remove_tree('test/gnupghome', {error => \$err});
+ return ! @$err;
+ };
diff --git 
a/debian/patches/0018-Use-a-short-temporary-homedir-during-the-test-suite.patch 
b/debian/patches/0018-Use-a-short-temporary-homedir-during-the-test-suite.patch
new file mode 100644
index 000..457a5e7
--- /dev/null
+++ 
b/debian/patches/0018-Use-a-short-temporary-homedir-during-the-test-suite.patch
@@ -0,0 +1,110 @@
+From: Daniel Kahn Gillmor 
+Date: Fri, 26 May 2017 09:51:40 -0400
+Subject: Use a short temporary homedir during the test suite
+
+This avoids problems with the length of the path to the homedir as
+compared to the size limits of sockaddr_un.sun_path, particularly on
+systems where /run/user/$(id -u) is not present or available (such as
+many minimalist build environments).
+---
+ t/000_setup.t|  9 +
+ t/MyTestSpecific.pm  | 18 +-
+ t/list_secret_keys.t |  3 ++-
+ t/zzz_cleanup.t  |  6 --
+ 4 files changed, 28 insertions(+), 8 deletions(-)
+
+diff --git a/t/000_setup.t b/t/000_setup.t
+index 4dc4329..82d7005 100644
+--- a/t/000_setup.t
 b/t/000_setup.t
+@@ -12,13 +12,14 @@ use File::Copy;
+ 
+ TEST
+ {
+-make_path('test/gnupghome', { mode => 0700 });
+-my $agentconf = IO::File->new( "> test/gnupghome/gpg-agent.conf" );
++my $homedir = $gnupg->options->homedir();
++make_path($homedir, { mode => 0700 });
++my $agentconf = IO::File->new( "> " . $homedir . "/gpg-agent.conf" );
+ $agentconf->write("pinentry-program " . getcwd() . 
"/test/fake-pinentry.pl\n");
+ $agentconf->close();
+-copy('test/gpg.conf', 'test/gnupghome/gpg.conf');
++copy('test/gpg.conf', $homedir . '/gpg.conf');
+ # reset the state of any long-lived gpg-agent, ignoring errors:
+-system('gpgconf', '--homedir=test/gnupghome', '--quiet', '--kill', 
'gpg-agent');
++system('gpgconf', '--homedir', $homedir, '--quiet', '--kill', 
'gpg-agent');
+ 
+ reset_handles();
+ 
+diff --git a/t/MyTestSpecific.pm b/t/MyTestSpecific.pm
+index e513c25..809d55c 100644
+--- a/t/MyTestSpecific.pm
 b/t/MyTestSpecific.pm
+@@ -22,6 +22,7 @@ use IO::Seekable;
+ use File::Compare;
+ use Exporter;
+ use Class::Struct;
++use File::Temp qw (tempdir);
+ 
+ use GnuPG::Interface;
+ use GnuPG::Handles;
+@@ -40,10 +41,25 @@ use vars qw( @ISA   @EXPORT
+ 
+ $gnupg = GnuPG::Interface->new( passphrase => 'test' );
+ 
++
++my $homedir;
++if (-f "test/gnupghome") {
++  my $record = IO::File->new( "< test/gnupghome" );
++  $homedir = 

[libgnupg-interface-perl] annotated tag debian/0.52-7 created (now 0717d6b)

2017-05-26 Thread Daniel Kahn Gillmor
This is an automated email from the git hooks/post-receive script.

dkg pushed a change to annotated tag debian/0.52-7
in repository libgnupg-interface-perl.

at  0717d6b   (tag)
   tagging  598c984db36adc30a37a95f7b6b73151099823a9 (commit)
  replaces  debian/0.52-6
 tagged by  Daniel Kahn Gillmor
on  Fri May 26 14:38:38 2017 -0400

- Log -
libgnupg-interface-perl Debian release 0.52-7
-BEGIN PGP SIGNATURE-

iQJKBAABCgA0FiEEOCdgUepHf6PklTkyFJitxsGSMjcFAlkodi4WHGRrZ0BmaWZ0
aGhvcnNlbWFuLm5ldAAKCRAUmK3GwZIyN3WRD/4sACGLaJ6LbI5GjR6/SRSNgF/G
Eif17yoN3zysDFiwTHLHaRdJ4OI1dSWiLZfOHVJwdjHuctY9hAnEwU8FZcjSapAD
ohytHnR3AUFGP8rgfvv1iUR8g0ziLCyM3wekWvMdK6J8Rmqwvpc3NW4kAWh94E/0
+NBeD1Q2Fm7Yza6WaSHmInIMoZQRRAzrDd6YlFZO4YnUijNcKr4Vk3a3DV2pTMtM
h510BOO4ytFRzs3Y/9LeQWaErTIFimt1Rh5AvXbUA3RUKxNPO5qXmoe8eel5TaT6
qMaRHQvi3qDrRnAdbDMBRxhc2AT5qJGWNcb2ooXmdoNi/y3tLxzcsHYJoCi5a2wx
5p7erIjMatouKRc/pH+Fd+tTMc9qT/83RjsQ6U90TzFmX4Y3v5dAKP/HNEbQZWOH
lCuFJ+KvLJg+ySmmQn32+QHJtgiRqzbB2ECMZo6B83G5n2YFbMgFJiWB7LZ7xaWS
KlnxyamcC83x8zDmvaclCbsm7GVVfvBzhLbSiRmwTvBdbFItXuXIiD3o26DRksnd
OoxwdVAHmA0Wc6Y1WmPadLJcevABuGoAmpxnyNW4B2PL+gykkg4UKrEnmYSYuvr8
XdO47A9PsqPrus3eBomzqEuOoBDT9Ls4jiU37PK8cocPvH1heos0o6/9nPKAHOmN
uKtXxfU4R2QSIBYpxw==
=EhaR
-END PGP SIGNATURE-

Daniel Kahn Gillmor (2):
  Use temporary, short-path GNUPGHOME for test suites (Closes: #861591)
  prepare debian release

---

This annotated tag includes the following new commits:

   new  1977297   Use temporary, short-path GNUPGHOME for test suites 
(Closes: #861591)
   new  598c984   prepare debian release

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgnupg-interface-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libimage-sane-perl] 01/01: pristine-tar data for libimage-sane-perl_0.09.orig.tar.gz

2017-05-26 Thread Jeffrey Ratcliffe
This is an automated email from the git hooks/post-receive script.

jjr pushed a commit to branch pristine-tar
in repository libimage-sane-perl.

commit 09f7aea1fe91876657199691d5204826e9b7076d
Author: Jeffrey Ratcliffe 
Date:   Fri May 26 16:17:45 2017 +0200

pristine-tar data for libimage-sane-perl_0.09.orig.tar.gz
---
 libimage-sane-perl_0.09.orig.tar.gz.delta | Bin 0 -> 1733 bytes
 libimage-sane-perl_0.09.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libimage-sane-perl_0.09.orig.tar.gz.delta 
b/libimage-sane-perl_0.09.orig.tar.gz.delta
new file mode 100644
index 000..33f46d4
Binary files /dev/null and b/libimage-sane-perl_0.09.orig.tar.gz.delta differ
diff --git a/libimage-sane-perl_0.09.orig.tar.gz.id 
b/libimage-sane-perl_0.09.orig.tar.gz.id
new file mode 100644
index 000..36e12c0
--- /dev/null
+++ b/libimage-sane-perl_0.09.orig.tar.gz.id
@@ -0,0 +1 @@
+ebf1ce2b0ac01fe9f8685577a681bfb98237a73b

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libimage-sane-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libimage-sane-perl] 01/01: Initial packaging by dh-make-perl 0.94

2017-05-26 Thread Jeffrey Ratcliffe
This is an automated email from the git hooks/post-receive script.

jjr pushed a commit to branch master
in repository libimage-sane-perl.

commit c7fd4b27c21e95825738efc30e035962c643361f
Author: Jeffrey Ratcliffe 
Date:   Fri May 26 16:17:45 2017 +0200

Initial packaging by dh-make-perl 0.94
---
 debian/changelog   |  5 +
 debian/compat  |  1 +
 debian/control | 30 ++
 debian/copyright   | 36 
 debian/libimage-sane-perl.examples |  1 +
 debian/rules   |  4 
 debian/source/format   |  1 +
 debian/upstream/metadata   |  4 
 debian/watch   |  2 ++
 9 files changed, 84 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 000..9be14a6
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libimage-sane-perl (0.09-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jeffrey Ratcliffe   Fri, 26 May 2017 16:17:44 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 000..6c43e8d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: libimage-sane-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group 
+Uploaders: Jeffrey Ratcliffe 
+Build-Depends: debhelper (>= 9),
+ libexception-class-perl,
+ libextutils-depends-perl,
+ libextutils-pkgconfig-perl,
+ libreadonly-perl,
+ perl
+Standards-Version: 3.9.8
+Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libimage-sane-perl.git
+Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libimage-sane-perl.git
+Homepage: https://metacpan.org/release/Image-Sane
+Testsuite: autopkgtest-pkg-perl
+
+Package: libimage-sane-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
+ libexception-class-perl
+Description: Perl extension for the SANE (Scanner Access Now Easy) Project
+ These Perl bindings for the SANE (Scanner Access Now Easy) Project allow you
+ to access SANE-compatible scanners in a Perlish and object-oriented way,
+ freeing you from the casting and memory management in C, yet remaining very
+ close in spirit to original API.
+ .
+ Find out more about SANE at http://www.sane-project.org.
+ .
+ This description was automagically extracted from the module by dh-make-perl.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 000..8fde266
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Image-Sane
+Upstream-Contact: Jeffrey Ratcliffe
+Upstream-Name: Image-Sane
+DISCLAIMER: This copyright info was automatically extracted
+ from the perl module. It may not be accurate, so you better
+ check the module sources in order to ensure the module for its
+ inclusion in Debian or for general legal information. Please,
+ if licensing information is incorrectly generated, file a bug
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Jeffrey Ratcliffe
+License: 
+
+Files: debian/*
+Copyright: 2017, Jeffrey Ratcliffe 
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/libimage-sane-perl.examples 
b/debian/libimage-sane-perl.examples
new file mode 100644
index 000..e39721e
--- /dev/null
+++ b/debian/libimage-sane-perl.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+   dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..2efbc68
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,4 @@
+---
+Archive: CPAN

[libimage-sane-perl] tag upstream/0.09 created (now 9302d6b)

2017-05-26 Thread Jeffrey Ratcliffe
This is an automated email from the git hooks/post-receive script.

jjr pushed a change to tag upstream/0.09
in repository libimage-sane-perl.

at  9302d6b   (commit)
No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libimage-sane-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libimage-sane-perl] branch pristine-tar created (now 09f7aea)

2017-05-26 Thread Jeffrey Ratcliffe
This is an automated email from the git hooks/post-receive script.

jjr pushed a change to branch pristine-tar
in repository libimage-sane-perl.

at  09f7aea   pristine-tar data for libimage-sane-perl_0.09.orig.tar.gz

This branch includes the following new commits:

   new  09f7aea   pristine-tar data for libimage-sane-perl_0.09.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libimage-sane-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libimage-sane-perl] branch master created (now c7fd4b2)

2017-05-26 Thread Jeffrey Ratcliffe
This is an automated email from the git hooks/post-receive script.

jjr pushed a change to branch master
in repository libimage-sane-perl.

at  c7fd4b2   Initial packaging by dh-make-perl 0.94

This branch includes the following new commits:

   new  c7fd4b2   Initial packaging by dh-make-perl 0.94

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libimage-sane-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits