From 8fe6b5b6ff816cb9a0a2ce04dc997b4f4229bbc2 Mon Sep 17 00:00:00 2001 From: he Date: Mon, 19 Jan 2009 22:54:24 +0000 Subject: Updating from version 1.15nb1 to 1.17. Pkgsrc changes: o Update patch to Makefile.PL to avoid reading stdin. Upstream changes: (Nothing marked 1.17 from upstream...) Version 1.16_04, released 4 January, 2009 ------------------------------------------ * added tests to prove valid quoting (most of them fail) * Reformat the source * add some (profiled) tweaks as removing useless regex to speed up SELECT * Fixed Bugs: * 14217 Does not correctly handle SQL statements with comments * 15686 Join syntax is case-sensitive, and common columns in natural joins are "ambiguous" [patch] * 13080 Cannot update a field based on its previous value * 26058 functions on computed columns aliased to the underlying column name are not called Version 1.16_03, released 1 January, 2009 ------------------------------------------ * removed *.orig and *.rej relicts Version 1.16_02, released 1 January, 2009 ------------------------------------------ * Changing join_2_tables to reduce memory usage when joining a lot of tables * Fixed Bugs: * 15688 Columns aliased with double quotes are a fatal error * 16579 Speed optimizations * 30590 Bug in SQL::Statement::is_number() * 41875 Bug in synopsis example Version 1.16_01, released 1 January, 2009 ------------------------------------------ * With this release, I'd like to welcome Jens Rehsack as co-maintainer of the SQL::Statement and SQL::Parser modules. Jens has added in some great improvements. Thanks Jens! -- Jeff * Adding a lot of join tests (once from Jeff, 48 from PostgreSQL official handbook) - no error of them will be corrected in the first run Thanks to Alexander Breibach -- Jens --- databases/p5-SQL-Statement/Makefile | 7 +++--- databases/p5-SQL-Statement/distinfo | 10 ++++----- databases/p5-SQL-Statement/patches/patch-aa | 33 +++++++++++++++++------------ 3 files changed, 27 insertions(+), 23 deletions(-) (limited to 'databases') diff --git a/databases/p5-SQL-Statement/Makefile b/databases/p5-SQL-Statement/Makefile index 5d7ac2cd347..7acca8073aa 100644 --- a/databases/p5-SQL-Statement/Makefile +++ b/databases/p5-SQL-Statement/Makefile @@ -1,15 +1,14 @@ -# $NetBSD: Makefile,v 1.23 2008/10/19 19:17:46 he Exp $ +# $NetBSD: Makefile,v 1.24 2009/01/19 22:54:24 he Exp $ # -DISTNAME= SQL-Statement-1.15 +DISTNAME= SQL-Statement-1.17 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 SVR4_PKGNAME= p5sqs CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=SQL/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://search.cpan.org/dist/SQL-Statement +HOMEPAGE= http://search.cpan.org/dist/SQL-Statement/ COMMENT= Small, abstract SQL engine PKG_DESTDIR_SUPPORT= user-destdir diff --git a/databases/p5-SQL-Statement/distinfo b/databases/p5-SQL-Statement/distinfo index c8ac4fefab0..8833bfd8270 100644 --- a/databases/p5-SQL-Statement/distinfo +++ b/databases/p5-SQL-Statement/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2008/07/23 22:57:11 rhaen Exp $ +$NetBSD: distinfo,v 1.10 2009/01/19 22:54:24 he Exp $ -SHA1 (SQL-Statement-1.15.tar.gz) = efb7755d92b1ba4560db99481b6158b227f0bf40 -RMD160 (SQL-Statement-1.15.tar.gz) = 684abd84e27969c57299c85fd2d80f80cfa8271b -Size (SQL-Statement-1.15.tar.gz) = 87237 bytes -SHA1 (patch-aa) = c8ff44669e45201262d042612fbce32bc430efbc +SHA1 (SQL-Statement-1.17.tar.gz) = a33d1d54b09b39d2510c4a7ca8e823229ef437a6 +RMD160 (SQL-Statement-1.17.tar.gz) = 2437b7ff348a608fd3ecae984d35e44ba8364398 +Size (SQL-Statement-1.17.tar.gz) = 92293 bytes +SHA1 (patch-aa) = 15241b36f0f6722f411e3e31f8388bf763b705da diff --git a/databases/p5-SQL-Statement/patches/patch-aa b/databases/p5-SQL-Statement/patches/patch-aa index 8558714fc37..075084f5957 100644 --- a/databases/p5-SQL-Statement/patches/patch-aa +++ b/databases/p5-SQL-Statement/patches/patch-aa @@ -1,14 +1,19 @@ -$NetBSD: patch-aa,v 1.3 2003/04/21 20:24:26 cjep Exp $ ---- Makefile.PL.orig 2002-01-23 16:32:58.000000000 +0100 -+++ Makefile.PL 2003-03-03 12:06:05.000000000 +0100 -@@ -18,8 +18,8 @@ - - END_OF_WARNING - print "Press enter to continue ... "; --my $x = ; --last if $x; -+# my $x = ; -+# last if $x; - } - }; - +$NetBSD: patch-aa,v 1.4 2009/01/19 22:54:24 he Exp $ + +Avoid Makefile.PL querying stdin, possibly causing a build to stall. + +--- Makefile.PL.orig 2009-01-18 16:35:38.000000000 +0100 ++++ Makefile.PL +@@ -17,9 +17,9 @@ WARNING! You seem to have an older versi + See the README for details. + + END_OF_WARNING +-print "Press enter to continue ... "; +-my $x = ; +-last if $x; ++# print "Press enter to continue ... "; ++# my $x = ; ++# last if $x; + } + }; + -- cgit v1.2.3