| /trunk/debian/control |
|---|
| 0,0 → 1,18 |
| Source: libmail-dkim-perl |
| Section: perl |
| Priority: optional |
| Maintainer: Magnus Holmgren <magnus@kibibyte.se> |
| Build-Depends: debhelper (>= 5) |
| Build-Depends-Indep: perl (>= 5.6.0-16), liberror-perl, libdigest-sha1-perl, libdigest-sha-perl, libmailtools-perl, libnet-dns-perl, libcrypt-openssl-rsa-perl |
| Standards-Version: 3.7.2 |
| Package: libmail-dkim-perl |
| Architecture: all |
| Depends: ${perl:Depends}, liberror-perl, libdigest-sha1-perl, libdigest-sha-perl, libmailtools-perl, libnet-dns-perl, libcrypt-openssl-rsa-perl |
| Description: Creation and verification of DKIM mail signatures - Perl library |
| DomainKeys Identified Mail (DKIM) provides a method for validating an identity |
| that is associated with a message, during the time it is transferred over the |
| Internet. That identity then can be held accountable for the message. |
| . |
| This is a Perl implementation created by Jason Long of Messiah College. |
| It performs signing as well as signature verification. |
| /trunk/debian/compat |
|---|
| 0,0 → 1,0 |
| 5 |
| /trunk/debian/watch |
|---|
| 0,0 → 1,4 |
| version=3 |
| http://jason.long.name/dkimproxy/Mail-DKIM-([\d.]+).tar.gz debian uupdate |
| ftp://ftp.sunet.se/pub/lang/perl/CPAN/modules/by-module/Mail/Mail-DKIM-([\d.]+).tar.gz debian uupdate |
| /trunk/debian/changelog |
|---|
| 0,0 → 1,42 |
| libmail-dkim-perl (0.24-1) experimental; urgency=low |
| * New upstream (bugfix) release. |
| * Add debian/watch. |
| -- Magnus Holmgren <magnus@kibibyte.se> Sat, 24 Mar 2007 23:04:03 +0100 |
| libmail-dkim-perl (0.23-1) experimental; urgency=low |
| * New upstream release. |
| -- Magnus Holmgren <magnus@kibibyte.se> Sat, 10 Mar 2007 20:36:14 +0100 |
| libmail-dkim-perl (0.22-1) experimental; urgency=low |
| * New upstream release. |
| ยท This version will also verify the older DomainKeys kind of |
| signatures. |
| * This time the tests have been made non-build-critical, as their |
| outcome really doesn't say anything about the success of the |
| build. |
| -- Magnus Holmgren <magnus@kibibyte.se> Tue, 30 Jan 2007 01:17:52 +0100 |
| libmail-dkim-perl (0.19-3) unstable; urgency=low |
| * Really disable network-dependent tests, POSIX-compliantly (Closes: |
| #395860) |
| -- Magnus Holmgren <magnus@kibibyte.se> Mon, 6 Nov 2006 12:20:29 +0100 |
| libmail-dkim-perl (0.19-2) unstable; urgency=low |
| * Disable test cases requiring network access (Closes: #395860) |
| -- Magnus Holmgren <magnus@kibibyte.se> Mon, 30 Oct 2006 15:09:01 +0100 |
| libmail-dkim-perl (0.19-1) unstable; urgency=low |
| * Initial release (Closes: #378046). |
| -- Magnus Holmgren <magnus@kibibyte.se> Sat, 7 Oct 2006 16:40:20 +0200 |
| /trunk/debian/copyright |
|---|
| 0,0 → 1,22 |
| This package was debianized by Magnus Holmgren <magnus@kibibyte.se> on |
| Wed, 12 Jul 2006 20:22:49 +0200. |
| It was downloaded from <URL:http://jason.long.name/dkimproxy/> |
| Upstream Author: Jason Long <jason@long.name> |
| Copyright (C) 2006 by Messiah College and 2004 by Anthony D. Urso |
| This library is free software; you can redistribute it and/or modify |
| it under the same terms as Perl itself, either Perl version 5.8.6 or, |
| at your option, any later version of Perl 5 you may have available. |
| This currently means an option of either the GPL (version 1.0 or |
| or any later version) or the Artistic License. |
| On Debian GNU/Linux systems, the complete text of the GNU General |
| Public License can be found in `/usr/share/common-licenses/GPL' and |
| the Artistic Licence in `/usr/share/common-licenses/Artistic'. |
| The Debian packaging is (C) 2006 Magnus Holmgren <magnus@kibibyte.se> and |
| is also licensed under the above terms. |
| /trunk/debian/docs |
|---|
| 0,0 → 1,4 |
| README |
| HACKING.DKIM |
| Changes |
| TODO |
| /trunk/debian/rules |
|---|
| 0,0 → 1,68 |
| #!/usr/bin/make -f |
| #-*- makefile -*- |
| # Made with the aid of dh_make, by Craig Small |
| # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. |
| # Some lines taken from debmake, by Christoph Lameter. |
| # Uncomment this to turn on verbose mode. |
| #export DH_VERBOSE=1 |
| PACKAGE := $(shell dh_listpackages) |
| PERL = /usr/bin/perl |
| TMP := $(CURDIR)/debian/$(PACKAGE) |
| build: build-stamp |
| build-stamp: |
| dh_testdir |
| $(PERL) Makefile.PL INSTALLDIRS=vendor |
| $(MAKE) |
| $(MAKE) test || true |
| touch build-stamp |
| clean: |
| dh_testdir |
| dh_testroot |
| rm -f build-stamp |
| -$(MAKE) realclean |
| dh_clean |
| install: |
| dh_testdir |
| dh_testroot |
| dh_clean -k |
| dh_installdirs |
| $(MAKE) install DESTDIR=$(TMP)/ |
| # Remove any empty directories |
| find $(TMP)/usr -depth -type d -empty -exec rmdir '{}' ';' |
| # Build architecture-dependent files here. |
| binary-arch: |
| dh_testdir |
| touch debian/files |
| # We have nothing to do by default. |
| # Build architecture-independent files here. |
| binary-indep: build install |
| dh_testdir |
| dh_testroot |
| dh_installdocs |
| dh_installman |
| dh_installchangelogs -k ChangeLog |
| dh_link |
| dh_compress usr/share/doc/$(PACKAGE)/Changes |
| dh_fixperms |
| dh_installdeb |
| dh_perl |
| dh_gencontrol |
| dh_md5sums |
| dh_builddeb |
| binary: binary-indep |
| .PHONY: build clean binary-indep binary-arch binary |
| Property changes: |
| Added: svn:executable |
| ## -0,0 +1 ## |
| +* |
| \ No newline at end of property |
| Index: debian/README.Debian |
| =================================================================== |
| --- debian/README.Debian (nonexistent) |
| +++ debian/README.Debian (revision 2) |
| @@ -0,0 +1,15 @@ |
| +Yahoo! Inc. claims patent rights concerning DomainKeys and |
| +DKIM. Details of the claim can be found at |
| +<https://datatracker.ietf.org/public/ipr_detail_show.cgi?&ipr_id=693>. |
| +Their licensing statement from that page reads as follows, as of |
| +2007-02-30: |
| + |
| +"Yahoo! licenses its Necessary Patent Claims contained in the patent(s) and |
| +patent application(s) disclosed above under either of two separate license |
| +agreements, one of which is the DomainKeys Patent License Agreement (v1.2), and |
| +the other is the GNU General Public License v2.0 (and no other version)." |
| + |
| +It is believed that this will cause normal users no legal problems, but the |
| +packager can't guarantee anything. |
| + |
| +For more information about DKIM, see http://mipassoc.org/dkim/ |
| Index: debian |
| =================================================================== |
| --- debian (nonexistent) |
| +++ debian (revision 2) |
| /debian |
|---|
| Property changes: |
| Added: mergeWithUpstream |
| ## -0,0 +1 ## |
| +1 |
| \ No newline at end of property |