mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
- updated from v0.07 to v0.09
0.09 2005-11-30 - order_name called with unknown order reported wrong id. (bug, but one that should be impossible to ever trigger) - added a #define packWARN for older perls that don't have it yet. 0.08 2005-11-20 - Remove pointless sv_reftype test from object access. - Add extract_all - absorb and key_absorb now take any number of heaps as argument instead of absorbing exactly one. - Add mass insert/key_insert/_key_insert. Use them in absorb. - Added merge_arrays Approved by: tobez
This commit is contained in:
parent
94f3279468
commit
9b13567ff7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150571
@ -6,13 +6,13 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= Heap-Simple-XS
|
PORTNAME= Heap-Simple-XS
|
||||||
PORTVERSION= 0.07
|
PORTVERSION= 0.09
|
||||||
CATEGORIES= devel perl5
|
CATEGORIES= devel perl5
|
||||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||||
MASTER_SITE_SUBDIR= Heap
|
MASTER_SITE_SUBDIR= Heap
|
||||||
PKGNAMEPREFIX= p5-
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
MAINTAINER= aaron@daltons.ca
|
MAINTAINER= aaron@FreeBSD.org
|
||||||
COMMENT= An XS implementation of the Heap::Simple interface
|
COMMENT= An XS implementation of the Heap::Simple interface
|
||||||
|
|
||||||
BUILD_DEPENDS= ${SITE_PERL}/Heap/Simple.pm:${PORTSDIR}/devel/p5-Heap-Simple
|
BUILD_DEPENDS= ${SITE_PERL}/Heap/Simple.pm:${PORTSDIR}/devel/p5-Heap-Simple
|
||||||
@ -25,7 +25,7 @@ MAN3= Heap::Simple::XS.3
|
|||||||
.include <bsd.port.pre.mk>
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
.if ${PERL_LEVEL} < 500600
|
.if ${PERL_LEVEL} < 500600
|
||||||
IGNORE= Uses ??{} in regexps, which came with perl5.6, install lang/perl5 or lang/perl5.8
|
IGNORE= uses ??{} in regexps, which came with perl5.6. Install lang/perl5 or lang/perl5.8 and try again
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.post.mk>
|
.include <bsd.port.post.mk>
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
MD5 (Heap-Simple-XS-0.07.tar.gz) = e27ac062153031d72dce020f1a30ab35
|
MD5 (Heap-Simple-XS-0.09.tar.gz) = 64a943e0d44ae6cbf8d28eb1d1bd29d9
|
||||||
SIZE (Heap-Simple-XS-0.07.tar.gz) = 57403
|
SHA256 (Heap-Simple-XS-0.09.tar.gz) = 00ff45fd311c06e65de97cb642f2397d10b9696fdd96348025ef4b2d375880b2
|
||||||
|
SIZE (Heap-Simple-XS-0.09.tar.gz) = 63471
|
||||||
|
11
devel/p5-Heap-Simple-XS/files/patch-Makefile
Normal file
11
devel/p5-Heap-Simple-XS/files/patch-Makefile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- Makefile.PL Wed Jul 27 14:50:45 2005
|
||||||
|
+++ Makefile.PL Fri Nov 25 18:59:24 2005
|
||||||
|
@@ -7,7 +7,7 @@
|
||||||
|
|
||||||
|
# Allows to suppress all questions with -n
|
||||||
|
use Getopt::Std;
|
||||||
|
-our $opt_n;
|
||||||
|
+our $opt_n = 1;
|
||||||
|
getopts("n") || die "Usage: $0 [-n]\n";
|
||||||
|
|
||||||
|
my $benchmark = 0;
|
Loading…
Reference in New Issue
Block a user