diff options
author | clsung <clsung@FreeBSD.org> | 2009-05-13 10:29:49 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2009-05-13 10:29:49 +0800 |
commit | 9df66bdcb029d578653db586460ea37f0df8cb01 (patch) | |
tree | 8bc7685bf5c726fdf58930431de4ab9b3d775656 /databases/p5-DBD-SQLite | |
parent | e8cc63ff563f0f8f456c60c2fd5a223aeabbb51a (diff) | |
download | freebsd-ports-gnome-9df66bdcb029d578653db586460ea37f0df8cb01.tar.gz freebsd-ports-gnome-9df66bdcb029d578653db586460ea37f0df8cb01.tar.zst freebsd-ports-gnome-9df66bdcb029d578653db586460ea37f0df8cb01.zip |
- Update to 1.23
PR: ports/133915
Submitted by: TERAMOTO Masahiro <markun_AT_onohara dot to>
Diffstat (limited to 'databases/p5-DBD-SQLite')
-rw-r--r-- | databases/p5-DBD-SQLite/Makefile | 2 | ||||
-rw-r--r-- | databases/p5-DBD-SQLite/distinfo | 6 | ||||
-rw-r--r-- | databases/p5-DBD-SQLite/files/patch-Makefile.PL | 41 |
3 files changed, 4 insertions, 45 deletions
diff --git a/databases/p5-DBD-SQLite/Makefile b/databases/p5-DBD-SQLite/Makefile index b72330cda02b..06db1981653c 100644 --- a/databases/p5-DBD-SQLite/Makefile +++ b/databases/p5-DBD-SQLite/Makefile @@ -6,7 +6,7 @@ # PORTNAME= DBD-SQLite -PORTVERSION= 1.14 +PORTVERSION= 1.23 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/databases/p5-DBD-SQLite/distinfo b/databases/p5-DBD-SQLite/distinfo index 5422fa9f5d7a..6509d846e2f3 100644 --- a/databases/p5-DBD-SQLite/distinfo +++ b/databases/p5-DBD-SQLite/distinfo @@ -1,3 +1,3 @@ -MD5 (DBD-SQLite-1.14.tar.gz) = 78a89cc8fd46bb2a5d537433dcccc8e6 -SHA256 (DBD-SQLite-1.14.tar.gz) = 44189d373a77eeb8a5353e0cd88bff04dde6e611678abdc6834c80d35d2f0d07 -SIZE (DBD-SQLite-1.14.tar.gz) = 703380 +MD5 (DBD-SQLite-1.23.tar.gz) = 3fb6d567a507b4f347d56a6ba38966d0 +SHA256 (DBD-SQLite-1.23.tar.gz) = d2c8532aa54521aa725c0f63f4e0025d56e87e70ede0f86fdd2447dbf738d895 +SIZE (DBD-SQLite-1.23.tar.gz) = 1042328 diff --git a/databases/p5-DBD-SQLite/files/patch-Makefile.PL b/databases/p5-DBD-SQLite/files/patch-Makefile.PL deleted file mode 100644 index e1b1e6f1d68f..000000000000 --- a/databases/p5-DBD-SQLite/files/patch-Makefile.PL +++ /dev/null @@ -1,41 +0,0 @@ ---- Makefile.PL.orig Fri Sep 8 05:45:13 2006 -+++ Makefile.PL Tue Sep 12 13:59:02 2006 -@@ -68,31 +68,31 @@ - - # Now, check for a compatible sqlite3 - unless ($force_local) { -- my ($dir, $file, $fh, $version); -+ my ($dir, $file, $version); - print "Checking installed SQLite version...\n"; - if ($sqlite_inc) { -- open($fh, '< ' . File::Spec->catfile($sqlite_inc, 'sqlite3.h')) -+ open(FH, '< ' . File::Spec->catfile($sqlite_inc, 'sqlite3.h')) - or die "Error opening sqlite3.h in $sqlite_inc: $!"; -- while (defined($_ = <$fh>)) { -+ while (defined($_ = <FH>)) { - if (/\#define\s+SQLITE_VERSION_NUMBER\s+(\d+)/) { - $version = $1; - last; - } - } -- close($fh); -+ close(FH); - } else { - # Go hunting for the file (Matt: Add more dirs here as you see fit) - for $dir ([ qw(usr include) ], [ qw(usr local include) ]) { - $file = File::Spec->catfile('', @$dir, 'sqlite3.h'); - next unless (-f $file); -- open($fh, "< $file") or die "Error opening $file: $!"; -- while (defined($_ = <$fh>)) { -+ open(FH, "< $file") or die "Error opening $file: $!"; -+ while (defined($_ = <FH>)) { - if (/\#define\s+SQLITE_VERSION_NUMBER\s+(\d+)/) { - $version = $1; - last; - } - } -- close($fh); -+ close(FH); - last if $version; - } - } |