pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/p5-GnuPG-Interface Update to 0.42, set LICENS...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6a033f2a09df
branches:  trunk
changeset: 568532:6a033f2a09df
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Dec 15 13:18:44 2009 +0000

description:
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:

 security/p5-GnuPG-Interface/Makefile         |  14 +++---------
 security/p5-GnuPG-Interface/distinfo         |  10 +++-----
 security/p5-GnuPG-Interface/patches/patch-aa |  29 ----------------------------
 security/p5-GnuPG-Interface/patches/patch-ab |  13 ------------
 4 files changed, 8 insertions(+), 58 deletions(-)

diffs (102 lines):

diff -r 1e4868526f3f -r 6a033f2a09df security/p5-GnuPG-Interface/Makefile
--- a/security/p5-GnuPG-Interface/Makefile      Tue Dec 15 13:12:46 2009 +0000
+++ b/security/p5-GnuPG-Interface/Makefile      Tue Dec 15 13:18:44 2009 +0000
@@ -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 @@
 #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 -r 1e4868526f3f -r 6a033f2a09df security/p5-GnuPG-Interface/distinfo
--- a/security/p5-GnuPG-Interface/distinfo      Tue Dec 15 13:12:46 2009 +0000
+++ b/security/p5-GnuPG-Interface/distinfo      Tue Dec 15 13:18:44 2009 +0000
@@ -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 -r 1e4868526f3f -r 6a033f2a09df security/p5-GnuPG-Interface/patches/patch-aa
--- a/security/p5-GnuPG-Interface/patches/patch-aa      Tue Dec 15 13:12:46 2009 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 1e4868526f3f -r 6a033f2a09df security/p5-GnuPG-Interface/patches/patch-ab
--- a/security/p5-GnuPG-Interface/patches/patch-ab      Tue Dec 15 13:12:46 2009 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 },



Home | Main Index | Thread Index | Old Index