diff options
author | he <he@pkgsrc.org> | 2008-12-20 23:38:37 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2008-12-20 23:38:37 +0000 |
commit | 2dc51126e80b167137ef8c98b311733d1a2a5352 (patch) | |
tree | 630e041b5b7f462df0635a20e53b59606eaf1307 /devel | |
parent | 4a69b1ef35704d3f62a1976e7c6b178bb972ff0b (diff) | |
download | pkgsrc-2dc51126e80b167137ef8c98b311733d1a2a5352.tar.gz |
Update from version 0.44nb3 to 0.45.
Pkgsrc changes:
o Update dependencies with version information culled from META.yml
o Re-do the patch to include Inline::C without prompting
Upstream changes:
version: 0.45
date: Sat Nov 22 2008
No changes from 0.44_01
version: 0.44_01
date: Tues Oct 11 2008
changes:
- Apply patch to Inline.pm that addresses a problem with whitespace occurring
in the name of the build directory. (RT ticket 4150)
- Fix ParseRegExp.pm. (RT ticket 6327)
- Fix (in Inline.pm) problem regarding the calling of the same script from
different builds of perl. (RT ticket 29326)
- Allow Inline::install() subroutine to apply to languages other than C and
CPP. (RT ticket 35517)
- Fix C/Makefile.PL so that the C compiler can still be found when $Config{cc}
reports something like /some/place/cc. (RT ticket 8251)
- In C/C.pm, allow for the calling of multiple typemaps (RT ticket 5639), and
have the "No Inline C functions bound to Perl" warning specify the file for
which no bindings were found (RT ticket 17774).
- Minor doc fixes.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Inline/Makefile | 9 | ||||
-rw-r--r-- | devel/p5-Inline/distinfo | 10 | ||||
-rw-r--r-- | devel/p5-Inline/patches/patch-aa | 44 |
3 files changed, 31 insertions, 32 deletions
diff --git a/devel/p5-Inline/Makefile b/devel/p5-Inline/Makefile index 173e9b53b1c..fcb8dca4b84 100644 --- a/devel/p5-Inline/Makefile +++ b/devel/p5-Inline/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.15 2008/10/19 19:17:55 he Exp $ +# $NetBSD: Makefile,v 1.16 2008/12/20 23:38:37 he Exp $ # -DISTNAME= Inline-0.44 +DISTNAME= Inline-0.45 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 SVR4_PKGNAME= p5inl CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Inline/} @@ -12,8 +11,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://search.cpan.org/dist/Inline/ COMMENT= Perl5 module for writing Perl subroutines in other languages -DEPENDS+= p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5 -DEPENDS+= p5-Parse-RecDescent-[0-9]*:../../devel/p5-Parse-RecDescent +DEPENDS+= p5-Digest-MD5>=2.09:../../security/p5-Digest-MD5 +DEPENDS+= p5-Parse-RecDescent>=1.80:../../devel/p5-Parse-RecDescent PKG_INSTALLATION_TYPES= overwrite pkgviews PKG_DESTDIR_SUPPORT= user-destdir diff --git a/devel/p5-Inline/distinfo b/devel/p5-Inline/distinfo index b2b4a1c8b84..3ed61aec968 100644 --- a/devel/p5-Inline/distinfo +++ b/devel/p5-Inline/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 22:24:26 agc Exp $ +$NetBSD: distinfo,v 1.4 2008/12/20 23:38:37 he Exp $ -SHA1 (Inline-0.44.tar.gz) = a6bfcf271325cb8c4bfca497427d67b2b2f795ef -RMD160 (Inline-0.44.tar.gz) = ed7b0c1a8d63d021501699a1bcb0916a1dbe1a5b -Size (Inline-0.44.tar.gz) = 91450 bytes -SHA1 (patch-aa) = 4b22fa4022617813587e59fdd6b7b4d1a7bf456a +SHA1 (Inline-0.45.tar.gz) = a2d9ef44861e66e573fc7ffb7e6ed7ab92a59038 +RMD160 (Inline-0.45.tar.gz) = 0563af1b2c52c26190cd2bef4f724395d92101e0 +Size (Inline-0.45.tar.gz) = 93844 bytes +SHA1 (patch-aa) = 1212d464a76967d9c019fd246e0da2feb5dc9892 diff --git a/devel/p5-Inline/patches/patch-aa b/devel/p5-Inline/patches/patch-aa index 7a3e7b6633e..f0a1195f566 100644 --- a/devel/p5-Inline/patches/patch-aa +++ b/devel/p5-Inline/patches/patch-aa @@ -1,25 +1,25 @@ -$NetBSD: patch-aa,v 1.1.1.1 2002/09/01 22:39:23 kim Exp $ +$NetBSD: patch-aa,v 1.2 2008/12/20 23:38:37 he Exp $ Include Inline::C without prompting. ---- C/Makefile.PL.orig Wed Jun 13 00:27:13 2001 -+++ C/Makefile.PL Sun Aug 18 17:58:40 2002 -@@ -51,12 +51,12 @@ - # ' - } - --my $answer = ''; --my $default = $found ? "y" : "n"; --while (1) { -- $answer = prompt ('Do you want to install Inline::C?', $default); -- last if $answer =~ /^(y|yes|n|no)$/i; --} -+my $answer = 'y'; -+#my $default = $found ? "y" : "n"; -+#while (1) { -+# $answer = prompt ('Do you want to install Inline::C?', $default); -+# last if $answer =~ /^(y|yes|n|no)$/i; -+#} - - if ($answer =~ /^(y|yes)$/i) { - WriteMakefile( +--- C/Makefile.PL.orig 2008-11-10 11:35:43.000000000 +0100 ++++ C/Makefile.PL +@@ -58,12 +58,12 @@ END
+ # '
+ }
+
+-my $answer = '';
+-my $default = $found ? "y" : "n";
+-while (1) {
+- $answer = prompt ('Do you want to install Inline::C?', $default);
+- last if $answer =~ /^(y|yes|n|no)$/i;
+-}
++my $answer = 'y';
++#my $default = $found ? "y" : "n";
++#while (1) {
++# $answer = prompt ('Do you want to install Inline::C?', $default);
++# last if $answer =~ /^(y|yes|n|no)$/i;
++#}
+
+ if ($answer =~ /^(y|yes)$/i) {
+ WriteMakefile(
|