[libnet-dns-sec-perl] branch master updated (256834d -> a4a1a67)
Axel Beckert
abe at deuxchevaux.org
Thu Apr 21 23:18:47 UTC 2016
This is an automated email from the git hooks/post-receive script.
abe pushed a change to branch master
in repository libnet-dns-sec-perl.
from 256834d update changelog
adds f78fc66 Imported Upstream version 1.02
new 413039e Merge tag 'upstream/1.02'
new 905457d Update debian/changelog
new d678027 No more try to install "TODO", it's gone
new d906ebf Bump debhelper compatibility to 9
new 37c8226 Mention module name in long package description
new 921adcf Debian package: Declare compliance with Debian Policy 3.9.8
new a4a1a67 Fix lintian warning empty-short-license-in-dep5-copyright
The 7 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.
Summary of changes:
Changes | 45 +-
MANIFEST | 63 +-
META.json | 27 +-
META.yml | 25 +-
Makefile.PL | 96 +--
README | 258 ++++----
RR/CDNSKEY.pm | 66 ---
RR/CDS.pm | 66 ---
RR/DLV.pm | 66 ---
RR/DNSKEY.pm | 410 -------------
RR/DS.pm | 394 -------------
RR/KEY.pm | 66 ---
RR/NSEC.pm | 223 -------
RR/NSEC3.pm | 430 --------------
RR/NSEC3PARAM.pm | 209 -------
RR/RRSIG.pm | 1012 --------------------------------
RR/SIG.pm | 904 ----------------------------
SEC.pm | 156 -----
SEC/Private.pm | 569 ------------------
TODO | 10 -
debian/changelog | 13 +-
debian/compat | 2 +-
debian/control | 4 +-
debian/copyright | 2 +-
debian/libnet-dns-sec-perl.docs | 1 -
demo/getkeyset.pl | 46 +-
demo/key2ds | 47 +-
demo/make-signed-keyset | 151 +++--
lib/Net/DNS/SEC.pm | 152 +++++
lib/Net/DNS/SEC/DSA.pm | 162 +++++
lib/Net/DNS/SEC/ECCGOST.pm | 245 ++++++++
lib/Net/DNS/SEC/ECDSA.pm | 227 +++++++
Keyset.pm => lib/Net/DNS/SEC/Keyset.pm | 221 ++++---
lib/Net/DNS/SEC/Private.pm | 384 ++++++++++++
lib/Net/DNS/SEC/RSA.pm | 148 +++++
t/00-load.t | 69 +--
t/00-pod.t | 34 +-
t/05-DLV.t | 71 ---
t/05-DNSKEY.t | 78 ---
t/05-DS.t | 72 ---
t/05-KEY.t | 72 ---
t/05-NSEC.t | 80 ---
t/05-NSEC3.t | 105 ----
t/05-NSEC3PARAM.t | 82 ---
t/05-RRSIG.t | 84 ---
t/05-SIG.t | 84 ---
t/07-sec.t | 143 -----
t/09-dnssec.t | 734 -----------------------
t/10-keyset.t | 301 +++++-----
t/10-typeroll.t | 399 -------------
t/11-sep.t | 31 -
t/11-sigstress.t | 205 -------
t/12-nsec++.t | 119 ----
t/13-utilities.t | 148 -----
t/21-RSA-MD5.t | 149 +++++
t/22-RSA-SHA1.t | 76 +++
t/23-RSA-SHA256.t | 76 +++
t/24-RSA-SHA512.t | 79 +++
t/31-DSA-SHA1.t | 117 ++++
t/41-ECC-GOST.t | 108 ++++
t/51-DS-SHA1.t | 40 --
t/51-ECDSA-P256.t | 108 ++++
t/52-DS-SHA256.t | 47 --
t/52-ECDSA-P384.t | 73 +++
t/53-DS-GOST.t | 50 --
t/54-DS-SHA384.t | 47 --
t/Kexample.com.+001+28551.key | 1 -
t/Kexample.com.+001+28551.private | 10 -
t/Kexample.com.+005+34247.key | 1 -
t/Kexample.com.+005+34247.private | 10 -
t/getpacket.pl | 17 -
71 files changed, 2810 insertions(+), 8010 deletions(-)
delete mode 100644 RR/CDNSKEY.pm
delete mode 100644 RR/CDS.pm
delete mode 100644 RR/DLV.pm
delete mode 100644 RR/DNSKEY.pm
delete mode 100644 RR/DS.pm
delete mode 100644 RR/KEY.pm
delete mode 100644 RR/NSEC.pm
delete mode 100644 RR/NSEC3.pm
delete mode 100644 RR/NSEC3PARAM.pm
delete mode 100644 RR/RRSIG.pm
delete mode 100644 RR/SIG.pm
delete mode 100644 SEC.pm
delete mode 100644 SEC/Private.pm
delete mode 100644 TODO
create mode 100644 lib/Net/DNS/SEC.pm
create mode 100644 lib/Net/DNS/SEC/DSA.pm
create mode 100644 lib/Net/DNS/SEC/ECCGOST.pm
create mode 100644 lib/Net/DNS/SEC/ECDSA.pm
rename Keyset.pm => lib/Net/DNS/SEC/Keyset.pm (50%)
create mode 100644 lib/Net/DNS/SEC/Private.pm
create mode 100644 lib/Net/DNS/SEC/RSA.pm
delete mode 100644 t/05-DLV.t
delete mode 100644 t/05-DNSKEY.t
delete mode 100644 t/05-DS.t
delete mode 100644 t/05-KEY.t
delete mode 100644 t/05-NSEC.t
delete mode 100644 t/05-NSEC3.t
delete mode 100644 t/05-NSEC3PARAM.t
delete mode 100644 t/05-RRSIG.t
delete mode 100644 t/05-SIG.t
delete mode 100644 t/07-sec.t
delete mode 100644 t/09-dnssec.t
delete mode 100644 t/10-typeroll.t
delete mode 100644 t/11-sep.t
delete mode 100644 t/11-sigstress.t
delete mode 100644 t/12-nsec++.t
delete mode 100644 t/13-utilities.t
create mode 100644 t/21-RSA-MD5.t
create mode 100644 t/22-RSA-SHA1.t
create mode 100644 t/23-RSA-SHA256.t
create mode 100644 t/24-RSA-SHA512.t
create mode 100644 t/31-DSA-SHA1.t
create mode 100644 t/41-ECC-GOST.t
delete mode 100644 t/51-DS-SHA1.t
create mode 100644 t/51-ECDSA-P256.t
delete mode 100644 t/52-DS-SHA256.t
create mode 100644 t/52-ECDSA-P384.t
delete mode 100644 t/53-DS-GOST.t
delete mode 100644 t/54-DS-SHA384.t
delete mode 100644 t/Kexample.com.+001+28551.key
delete mode 100644 t/Kexample.com.+001+28551.private
delete mode 100644 t/Kexample.com.+005+34247.key
delete mode 100644 t/Kexample.com.+005+34247.private
delete mode 100755 t/getpacket.pl
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-dns-sec-perl.git
More information about the Pkg-perl-cvs-commits
mailing list