summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-12-15 13:18:44 +0000
committerwiz <wiz@pkgsrc.org>2009-12-15 13:18:44 +0000
commit4aa3665c973311efd58267fb1fae0c80448b1c5c (patch)
treee2881e1f233e8b10fd8a7383a24c7482a2033811 /security
parente1bcf76219c5060b19e93afb8f325bf93e806298 (diff)
downloadpkgsrc-4aa3665c973311efd58267fb1fae0c80448b1c5c.tar.gz
Update to 0.42, set LICENSE (still depend on gpg1 for now).
0.42 Wed Sep 30 23:20:58 JST 2009 * Support for GPG2 0.41_01 Fri Sep 25 02:56:33 JST 2009 * Beginnings of support for GPG2 0.40_04 Tue Apr 21 19:50:12 JST 2009 * Use Any::Moose instead of Moose for Mouse celerity (Sartak) 0.40_1 Sat Nov 15 12:35:59 EST 2008 * [rt.cpan.org #40963] Replace Class::MethodMaker with Moose (Chris Prather)
Diffstat (limited to 'security')
-rw-r--r--security/p5-GnuPG-Interface/Makefile14
-rw-r--r--security/p5-GnuPG-Interface/distinfo10
-rw-r--r--security/p5-GnuPG-Interface/patches/patch-aa29
-rw-r--r--security/p5-GnuPG-Interface/patches/patch-ab13
4 files changed, 8 insertions, 58 deletions
diff --git a/security/p5-GnuPG-Interface/Makefile b/security/p5-GnuPG-Interface/Makefile
index 50144a43eba..89ca2742756 100644
--- a/security/p5-GnuPG-Interface/Makefile
+++ b/security/p5-GnuPG-Interface/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2008/10/19 19:18:46 he Exp $
+# $NetBSD: Makefile,v 1.12 2009/12/15 13:18:44 wiz Exp $
#
-DISTNAME= GnuPG-Interface-0.36
+DISTNAME= GnuPG-Interface-0.42
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=GnuPG/}
@@ -11,19 +10,14 @@ MAINTAINER= pkgsrc-users@NetBSD.org
#HOMEPAGE= http://gnupg-interface.sourceforge.net/
HOMEPAGE= http://search.cpan.org/dist/GnuPG-Interface/
COMMENT= Perl interface to GnuPG
+LICENSE= ${PERL5_LICENSE}
PKG_DESTDIR_SUPPORT= user-destdir
-DEPENDS+= p5-Class-MakeMethods>=1.010:../../devel/p5-Class-MakeMethods
DEPENDS+= gnupg>=1.2.3:../../security/gnupg
+DEPENDS+= p5-Any-Moose>=0.04:../../devel/p5-Any-Moose
PERL5_PACKLIST= auto/GnuPG/Interface/.packlist
-pre-configure:
- cd ${WRKSRC}/lib/GnuPG && for f in *.pm; do \
- ${SED} -e 's/use Class::MethodMaker/use Class::MakeMethods::Emulator::MethodMaker/' $$f > $$f.new && \
- ${MV} -f $$f.new $$f; \
- done
-
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/security/p5-GnuPG-Interface/distinfo b/security/p5-GnuPG-Interface/distinfo
index 0653cc39796..4306d9620e3 100644
--- a/security/p5-GnuPG-Interface/distinfo
+++ b/security/p5-GnuPG-Interface/distinfo
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.4 2008/07/30 13:26:52 he Exp $
+$NetBSD: distinfo,v 1.5 2009/12/15 13:18:44 wiz Exp $
-SHA1 (GnuPG-Interface-0.36.tar.gz) = a447fc386b8b385eafceff6ff846d0d2972d4b7d
-RMD160 (GnuPG-Interface-0.36.tar.gz) = d43452d11208f9f1e3db74e6f124d07cece2fc2f
-Size (GnuPG-Interface-0.36.tar.gz) = 44832 bytes
-SHA1 (patch-aa) = 3e050bfd306758e72170c0f353a602cd59345536
-SHA1 (patch-ab) = de27289735f964962a94e938ca11e9376e838d1d
+SHA1 (GnuPG-Interface-0.42.tar.gz) = 42aa71e5972b4d81207c6b08805d10a5fc8839ab
+RMD160 (GnuPG-Interface-0.42.tar.gz) = 682c0c90f5d3cd2aa7957b609efa6f340672ae8b
+Size (GnuPG-Interface-0.42.tar.gz) = 59861 bytes
diff --git a/security/p5-GnuPG-Interface/patches/patch-aa b/security/p5-GnuPG-Interface/patches/patch-aa
deleted file mode 100644
index ba140ea5110..00000000000
--- a/security/p5-GnuPG-Interface/patches/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/01/10 18:22:23 tv Exp $
-
---- lib/GnuPG/Interface.pm.orig Fri Aug 15 14:37:00 2003
-+++ lib/GnuPG/Interface.pm
-@@ -690,6 +690,15 @@ sub recv_keys( $% )
-
-
-
-+sub search_keys( $% )
-+{
-+ my ( $self, %args ) = @_;
-+ return $self->wrap_call( %args,
-+ commands => [ '--search-keys' ] );
-+}
-+
-+
-+
- sub send_keys( $% )
- {
- my ( $self, %args ) = @_;
-@@ -885,6 +894,8 @@ This methods work as described in L<Clas
- =item export_keys( % )
-
- =item recv_keys( % )
-+
-+=item search_keys( % )
-
- =item send_keys( % )
-
diff --git a/security/p5-GnuPG-Interface/patches/patch-ab b/security/p5-GnuPG-Interface/patches/patch-ab
deleted file mode 100644
index ba91f75d756..00000000000
--- a/security/p5-GnuPG-Interface/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/03/04 20:57:50 tv Exp $
-
---- Makefile.PL.orig 2005-03-04 15:44:26.000000000 -0500
-+++ Makefile.PL
-@@ -40,7 +40,7 @@ WriteMakefile
- VERSION_FROM => File::Spec->catfile( $gnupg_base, 'Interface.pm' ),
-
- PREREQ_PM => {
-- 'Class::MethodMaker' => 1.00,
-+ 'Class::MakeMethods' => 1.010,
- },
-
- PM => { %pm_install_hash },