diff options
author | Torsten Veller <tove@gentoo.org> | 2010-04-07 07:29:02 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2010-04-07 07:29:02 +0000 |
commit | 54e1c385c8682dd588ea45839c6843d236e9a3a2 (patch) | |
tree | 041ed75b72b877e215a2e9e5c7c0e2724f12f00b /dev-perl/Mail-DKIM | |
parent | Version bump (diff) | |
download | historical-54e1c385c8682dd588ea45839c6843d236e9a3a2.tar.gz historical-54e1c385c8682dd588ea45839c6843d236e9a3a2.tar.bz2 historical-54e1c385c8682dd588ea45839c6843d236e9a3a2.zip |
Version bump
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-perl/Mail-DKIM')
-rw-r--r-- | dev-perl/Mail-DKIM/ChangeLog | 7 | ||||
-rw-r--r-- | dev-perl/Mail-DKIM/Mail-DKIM-0.38.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-perl/Mail-DKIM/ChangeLog b/dev-perl/Mail-DKIM/ChangeLog index 4da2554f8c78..1404374f40d6 100644 --- a/dev-perl/Mail-DKIM/ChangeLog +++ b/dev-perl/Mail-DKIM/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/Mail-DKIM # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-DKIM/ChangeLog,v 1.39 2010/01/28 19:12:53 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-DKIM/ChangeLog,v 1.40 2010/04/07 07:21:41 tove Exp $ + +*Mail-DKIM-0.38 (07 Apr 2010) + + 07 Apr 2010; Torsten Veller <tove@gentoo.org> +Mail-DKIM-0.38.ebuild: + Version bump 28 Jan 2010; Raúl Porcel <armin76@gentoo.org> Mail-DKIM-0.36.ebuild, Mail-DKIM-0.37.ebuild: diff --git a/dev-perl/Mail-DKIM/Mail-DKIM-0.38.ebuild b/dev-perl/Mail-DKIM/Mail-DKIM-0.38.ebuild new file mode 100644 index 000000000000..d29ac10e300d --- /dev/null +++ b/dev-perl/Mail-DKIM/Mail-DKIM-0.38.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-DKIM/Mail-DKIM-0.38.ebuild,v 1.1 2010/04/07 07:21:41 tove Exp $ + +EAPI=2 + +MODULE_AUTHOR=JASLONG +inherit perl-module + +DESCRIPTION="Mail::DKIM - Signs/verifies Internet mail using DKIM message signatures" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-perl/Crypt-OpenSSL-RSA-0.24 + virtual/perl-Digest-SHA + virtual/perl-MIME-Base64 + dev-perl/Net-DNS + dev-perl/MailTools" +RDEPEND="${DEPEND}" + +SRC_TEST="do" + +src_test(){ + # disable online tests + for test in policy public_key verifier ; do + mv "${S}"/t/${test}.t{,.disable} + done + perl-module_src_test +} |