pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/p5-DBD-mysql Update to 4.050



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d56aa93e41f5
branches:  trunk
changeset: 318606:d56aa93e41f5
user:      wen <wen%pkgsrc.org@localhost>
date:      Sun Jan 27 07:32:16 2019 +0000

description:
Update to 4.050

Upstream changes:
2018-10-25 Dani?l van Eeden, Patrick Galbraith,
DBI/DBD community (4.050)
* Fix SQL syntax for statements that have "...limit = ?" #288
* Make tests pass on MySQL 4.1 #286
* Travis-CI: Install Test::Deep #281
* Fix undefined ssl_verify_set on MySQL 5.0 and before #283
* Fix compilation on MySQL 4.1 #283
* Move Travis to dbdeployer (#284) #284
* Fix compiling on 8.0.0 and 8.0.1 #285
* Fix compatibility with MariaDB 10.3 #291

diffstat:

 databases/p5-DBD-mysql/Makefile               |   5 +--
 databases/p5-DBD-mysql/distinfo               |  10 ++++----
 databases/p5-DBD-mysql/patches/patch-dbdimp.c |  28 ---------------------------
 3 files changed, 7 insertions(+), 36 deletions(-)

diffs (62 lines):

diff -r a511221ac251 -r d56aa93e41f5 databases/p5-DBD-mysql/Makefile
--- a/databases/p5-DBD-mysql/Makefile   Sun Jan 27 06:43:21 2019 +0000
+++ b/databases/p5-DBD-mysql/Makefile   Sun Jan 27 07:32:16 2019 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.76 2019/01/06 09:09:16 markd Exp $
+# $NetBSD: Makefile,v 1.77 2019/01/27 07:32:16 wen Exp $
 
-DISTNAME=      DBD-mysql-4.049
+DISTNAME=      DBD-mysql-4.050
 PKGNAME=       p5-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    databases perl5
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=DBD/}
 
diff -r a511221ac251 -r d56aa93e41f5 databases/p5-DBD-mysql/distinfo
--- a/databases/p5-DBD-mysql/distinfo   Sun Jan 27 06:43:21 2019 +0000
+++ b/databases/p5-DBD-mysql/distinfo   Sun Jan 27 07:32:16 2019 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.34 2019/01/06 09:09:16 markd Exp $
+$NetBSD: distinfo,v 1.35 2019/01/27 07:32:16 wen Exp $
 
-SHA1 (DBD-mysql-4.049.tar.gz) = 97566ab690f09a50c3b995eaed1068aa8bacac46
-RMD160 (DBD-mysql-4.049.tar.gz) = 1948629385701f60fe2e1ed33af734c2da4b2b12
-SHA512 (DBD-mysql-4.049.tar.gz) = e0e1376927be3afd366e3fff4e221e8ecc57339644c8e420e34b9e45a802e2a2a2c294fdd7ca0c59a84d6236f7d0e8fd2000b5da8f6839444d3318e3b7d9b422
-Size (DBD-mysql-4.049.tar.gz) = 160889 bytes
+SHA1 (DBD-mysql-4.050.tar.gz) = ff19efb5c5a9add075eafa1ad082cc74c2214f2a
+RMD160 (DBD-mysql-4.050.tar.gz) = 00ac33c18ab9560e3cf82c15d97510373e1f29e5
+SHA512 (DBD-mysql-4.050.tar.gz) = 910f5b4ba7a7890d50a79f37d04ec8971a4f62acd0fe30bf3ab634f66e3128f0cd6513e5c9da8c807a0f4477d0cc766682ea8dd0d8072d02821b78df51f37879
+Size (DBD-mysql-4.050.tar.gz) = 161579 bytes
 SHA1 (patch-dbdimp.c) = ee2bb85eab5b25f088b655e0ff47f1af6a7d16d0
diff -r a511221ac251 -r d56aa93e41f5 databases/p5-DBD-mysql/patches/patch-dbdimp.c
--- a/databases/p5-DBD-mysql/patches/patch-dbdimp.c     Sun Jan 27 06:43:21 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-$NetBSD: patch-dbdimp.c,v 1.1 2019/01/06 09:09:16 markd Exp $
-
-Fix SQL syntax for statements that have "...limit = ?"
-commit 7805e828fad02d37f913228019cf352636fcfe36
-
---- dbdimp.c.orig      2018-11-17 18:49:08.000000000 +0000
-+++ dbdimp.c
-@@ -604,9 +604,9 @@ static char *parse_params(
-       /*
-         it would be good to be able to handle any number of cases and orders
-       */
--      if ((*statement_ptr == 'l' || *statement_ptr == 'L') &&
--          (!strncmp(statement_ptr+1, "imit ", 5) ||
--           !strncmp(statement_ptr+1, "IMIT ", 5)))
-+      if (((*statement_ptr == ' ') || (*statement_ptr == '\n') || (*statement_ptr == '\t')) &&
-+          (!strncmp(statement_ptr+1, "limit ", 5) ||
-+           !strncmp(statement_ptr+1, "LIMIT ", 5)))
-       {
-         limit_flag = 1;
-       }
-@@ -780,6 +780,7 @@ static char *parse_params(
- 
-       /* in case this is a nested LIMIT */
-       case ')':
-+      case '=':
-         limit_flag = 0;
-       *ptr++ = *statement_ptr++;
-         break;



Home | Main Index | Thread Index | Old Index