Re: UPDATE: databases/p5-DBD-mysql

2019-01-28 Thread Giovanni Bechis
On Mon, Jan 28, 2019 at 07:56:02PM -0700, Andrew Hewus Fresh wrote:
> On Fri, Jan 18, 2019 at 08:36:45AM +0100, Giovanni Bechis wrote:
> > On Wed, Jan 09, 2019 at 09:16:51AM +0100, Giovanni Bechis wrote:
> > > Update to latest version with a fix to handle
> > > type conversions in amavisd.
> > > Comments ? ok ?
> > >  Cheers
> > >   Giovanni
> > New diff to update to 4.050
> >  Cheers
> >   Giovanni
> 
> This looks OK afresh1@ but to get tests to pass I need this patch since
> we don't enforce passwords in our test mariadb instance.  Not sure if
> there's a better workaround.
> 
I will commit with your patch added, if there is a better workaround
it will be meat for a later commit.
 Cheers & Thanks
  Giovanni


> $OpenBSD$
> 
> Index: t/10connect.t
> --- t/10connect.t.orig
> +++ t/10connect.t
> @@ -71,7 +70,9 @@ ok($dbh->disconnect(), 'Disconnected');
>  eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password,
> { RaiseError => 1, PrintError => 1, AutoCommit => 0,
>   Username => '4yZ73s9qeECdWi', Password => '64heUGwAsVoNqo' });};
> +SKIP: { skip "Our mariadb test runs with --skip-grant-tables", 1;
>  ok($@, 'Username and Password attributes override');
> +}
>  
>  eval {$dbh= DBI->connect($test_dsn, '4yZ73s9qeECdWi', '64heUGwAsVoNqo',
> { RaiseError => 1, PrintError => 1, AutoCommit => 0,



signature.asc
Description: PGP signature


Re: UPDATE: databases/p5-DBD-mysql

2019-01-28 Thread Andrew Hewus Fresh
On Fri, Jan 18, 2019 at 08:36:45AM +0100, Giovanni Bechis wrote:
> On Wed, Jan 09, 2019 at 09:16:51AM +0100, Giovanni Bechis wrote:
> > Update to latest version with a fix to handle
> > type conversions in amavisd.
> > Comments ? ok ?
> >  Cheers
> >   Giovanni
> New diff to update to 4.050
>  Cheers
>   Giovanni

This looks OK afresh1@ but to get tests to pass I need this patch since
we don't enforce passwords in our test mariadb instance.  Not sure if
there's a better workaround.

$OpenBSD$

Index: t/10connect.t
--- t/10connect.t.orig
+++ t/10connect.t
@@ -71,7 +70,9 @@ ok($dbh->disconnect(), 'Disconnected');
 eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password,
{ RaiseError => 1, PrintError => 1, AutoCommit => 0,
  Username => '4yZ73s9qeECdWi', Password => '64heUGwAsVoNqo' });};
+SKIP: { skip "Our mariadb test runs with --skip-grant-tables", 1;
 ok($@, 'Username and Password attributes override');
+}
 
 eval {$dbh= DBI->connect($test_dsn, '4yZ73s9qeECdWi', '64heUGwAsVoNqo',
{ RaiseError => 1, PrintError => 1, AutoCommit => 0,


Re: UPDATE: databases/p5-DBD-mysql

2019-01-17 Thread Giovanni Bechis
On Wed, Jan 09, 2019 at 09:16:51AM +0100, Giovanni Bechis wrote:
> Update to latest version with a fix to handle
> type conversions in amavisd.
> Comments ? ok ?
>  Cheers
>   Giovanni
New diff to update to 4.050
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.53
diff -u -p -r1.53 Makefile
--- Makefile17 May 2018 09:20:07 -  1.53
+++ Makefile18 Jan 2019 07:31:52 -
@@ -1,15 +1,14 @@
 # $OpenBSD: Makefile,v 1.53 2018/05/17 09:20:07 espie Exp $
 
 COMMENT=   MySQL drivers for the Perl DBI
-DISTNAME=  DBD-mysql-4.042
-REVISION = 0
+DISTNAME=  DBD-mysql-4.050
 
 CATEGORIES=databases
 
 MAINTAINER=Giovanni Bechis 
 
 MODULES=   cpan databases/mariadb
-CPAN_AUTHOR=   MICHIELB
+CPAN_AUTHOR=   DVEEDEN
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.28
diff -u -p -r1.28 distinfo
--- distinfo20 Mar 2017 14:06:35 -  1.28
+++ distinfo18 Jan 2019 07:31:56 -
@@ -1,2 +1,2 @@
-SHA256 (DBD-mysql-4.042.tar.gz) = 2ttohHiNw/30CxO3LYxg1ag2gMwq7sdRXD5ZmeBktFU=
-SIZE (DBD-mysql-4.042.tar.gz) = 160028
+SHA256 (DBD-mysql-4.050.tar.gz) = T0hUH/FaCnQF92rcEPgWJ8M5lvv1bJXCbAlERMCSjXg=
+SIZE (DBD-mysql-4.050.tar.gz) = 161579
Index: patches/patch-dbdimp_c
===
RCS file: patches/patch-dbdimp_c
diff -N patches/patch-dbdimp_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-dbdimp_c  18 Jan 2019 07:33:46 -
@@ -0,0 +1,34 @@
+$OpenBSD$
+
+backport fix for issue 
+https://github.com/perl5-dbi/DBD-mysql/issues/78
+
+Index: dbdimp.c
+--- dbdimp.c.orig
 dbdimp.c
+@@ -4447,8 +4447,7 @@ process:
+   if (!(fields[i].flags & ZEROFILL_FLAG))
+   {
+ /* Coerce to double and set scalar as NV */
+-(void) SvNV(sv);
+-SvNOK_only(sv);
++sv_setnv(sv, SvNV(sv));
+   }
+   break;
+ 
+@@ -4459,13 +4458,11 @@ process:
+ /* Coerce to integer and set scalar as UV resp. IV */
+ if (fields[i].flags & UNSIGNED_FLAG)
+ {
+-  (void) SvUV(sv);
+-  SvIOK_only_UV(sv);
++  sv_setuv(sv, SvUV(sv));
+ }
+ else
+ {
+-  (void) SvIV(sv);
+-  SvIOK_only(sv);
++  sv_setiv(sv, SvIV(sv));
+ }
+   }
+   break;


UPDATE: databases/p5-DBD-mysql

2019-01-09 Thread Giovanni Bechis
Update to latest version with a fix to handle
type conversions in amavisd.
Comments ? ok ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.53
diff -u -p -r1.53 Makefile
--- Makefile17 May 2018 09:20:07 -  1.53
+++ Makefile8 Jan 2019 08:01:17 -
@@ -1,15 +1,14 @@
 # $OpenBSD: Makefile,v 1.53 2018/05/17 09:20:07 espie Exp $
 
 COMMENT=   MySQL drivers for the Perl DBI
-DISTNAME=  DBD-mysql-4.042
-REVISION = 0
+DISTNAME=  DBD-mysql-4.049
 
 CATEGORIES=databases
 
 MAINTAINER=Giovanni Bechis 
 
 MODULES=   cpan databases/mariadb
-CPAN_AUTHOR=   MICHIELB
+CPAN_AUTHOR=   DVEEDEN
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.28
diff -u -p -r1.28 distinfo
--- distinfo20 Mar 2017 14:06:35 -  1.28
+++ distinfo8 Jan 2019 07:34:28 -
@@ -1,2 +1,2 @@
-SHA256 (DBD-mysql-4.042.tar.gz) = 2ttohHiNw/30CxO3LYxg1ag2gMwq7sdRXD5ZmeBktFU=
-SIZE (DBD-mysql-4.042.tar.gz) = 160028
+SHA256 (DBD-mysql-4.049.tar.gz) = z78CDx5TodnUirlkrx4/oCKNxPXfbaZuaRxcAcrgQTs=
+SIZE (DBD-mysql-4.049.tar.gz) = 160889
Index: patches/patch-dbdimp_c
===
RCS file: patches/patch-dbdimp_c
diff -N patches/patch-dbdimp_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-dbdimp_c  9 Jan 2019 07:44:24 -
@@ -0,0 +1,36 @@
+$OpenBSD$
+
+backport fix for issue 
+https://github.com/perl5-dbi/DBD-mysql/issues/78
+
+Index: dbdimp.c
+--- dbdimp.c.orig
 dbdimp.c
+@@ -4436,9 +4436,8 @@ process:
+ case MYSQL_TYPE_DOUBLE:
+   if (!(fields[i].flags & ZEROFILL_FLAG))
+   {
+-/* Coerce to dobule and set scalar as NV */
+-(void) SvNV(sv);
+-SvNOK_only(sv);
++/* Coerce to double and set scalar as NV */
++sv_setnv(sv, SvNV(sv));
+   }
+   break;
+ 
+@@ -4449,13 +4448,11 @@ process:
+ /* Coerce to integer and set scalar as UV resp. IV */
+ if (fields[i].flags & UNSIGNED_FLAG)
+ {
+-  (void) SvUV(sv);
+-  SvIOK_only_UV(sv);
++  sv_setuv(sv, SvUV(sv));
+ }
+ else
+ {
+-  (void) SvIV(sv);
+-  SvIOK_only(sv);
++  sv_setiv(sv, SvIV(sv));
+ }
+   }
+   break;


UPDATE: databases/p5-DBD-mysql

2015-01-16 Thread Giovanni Bechis
Update to 4.0.29 and fix a use-after-free (reported upstream).
 Comments ? Ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.41
diff -u -p -r1.41 Makefile
--- Makefile6 Dec 2014 14:26:44 -   1.41
+++ Makefile27 Dec 2014 22:43:03 -
@@ -4,7 +4,7 @@ SHARED_ONLY=Yes
 
 COMMENT=   MySQL drivers for the Perl DBI
 
-DISTNAME=  DBD-mysql-4.028
+DISTNAME=  DBD-mysql-4.029
 CATEGORIES=databases
 
 MAINTAINER=Giovanni Bechis giova...@openbsd.org
Index: distinfo
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.20
diff -u -p -r1.20 distinfo
--- distinfo6 Dec 2014 14:26:44 -   1.20
+++ distinfo27 Dec 2014 22:43:11 -
@@ -1,2 +1,2 @@
-SHA256 (DBD-mysql-4.028.tar.gz) = WEKySv/avOixcSL5EM1bWyU78mbX5QhK9d9CSFI4Ee0=
-SIZE (DBD-mysql-4.028.tar.gz) = 138614
+SHA256 (DBD-mysql-4.029.tar.gz) = pJ0cG8+swJzy0fpjiuZTwubFjrwIFgkwaSKCqxhz1Qw=
+SIZE (DBD-mysql-4.029.tar.gz) = 139722
Index: patches/patch-dbdimp_c
===
RCS file: patches/patch-dbdimp_c
diff -N patches/patch-dbdimp_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-dbdimp_c  16 Jan 2015 08:13:35 -
@@ -0,0 +1,31 @@
+$OpenBSD$
+Fix a use-after-free if my_login fails
+
+--- dbdimp.c.orig  Mon Dec  8 09:44:50 2014
 dbdimp.c   Sun Dec 28 00:40:38 2014
+@@ -2061,8 +2061,11 @@ static int my_login(pTHX_ SV* dbh, imp_dbh_t *imp_dbh)
+   result = mysql_dr_connect(dbh, imp_dbh-pmysql, mysql_socket, host, port, 
user,
+ password, dbname, imp_dbh) ? TRUE : FALSE;
+   if (fresh  !result) {
++  do_error(dbh, mysql_errno(imp_dbh-pmysql),
++  mysql_error(imp_dbh-pmysql) ,mysql_sqlstate(imp_dbh-pmysql));
+   /* Prevent leaks, but do not free in case of a reconnect. See #97625 */
+   Safefree(imp_dbh-pmysql);
++  imp_dbh-pmysql = NULL;
+   }
+   return result;
+ }
+@@ -4953,9 +4956,11 @@ int mysql_db_reconnect(SV* h)
+*/
+   if (!dbd_db_disconnect(h, imp_dbh) || !my_login(aTHX_ h, imp_dbh))
+   {
+-do_error(h, mysql_errno(imp_dbh-pmysql), mysql_error(imp_dbh-pmysql),
++if(!imp_dbh-pmysql) {
++  do_error(h, mysql_errno(imp_dbh-pmysql), mysql_error(imp_dbh-pmysql),
+  mysql_sqlstate(imp_dbh-pmysql));
+-memcpy (imp_dbh-pmysql, save_socket, sizeof(save_socket));
++  memcpy (imp_dbh-pmysql, save_socket, sizeof(save_socket));
++}
+ ++imp_dbh-stats.auto_reconnects_failed;
+ return FALSE;
+   }
Index: pkg/PLIST
===
RCS file: /var/cvs/ports/databases/p5-DBD-mysql/pkg/PLIST,v
retrieving revision 1.7
diff -u -p -r1.7 PLIST
--- pkg/PLIST   11 Jul 2014 14:11:12 -  1.7
+++ pkg/PLIST   27 Dec 2014 22:47:44 -
@@ -2,13 +2,13 @@
 @comment ${P5ARCH}/Bundle/DBD/
 @comment ${P5ARCH}/Bundle/DBD/mysql.pm
 @comment ${P5ARCH}/DBD/README.pod
+@comment ${P5ARCH}/DBD/mysql/INSTALL.pod
+@comment ${P5ARCH}/auto/DBD/mysql/mysql.bs
 ${P5ARCH}/DBD/mysql/
 ${P5ARCH}/DBD/mysql.pm
 ${P5ARCH}/DBD/mysql/GetInfo.pm
-@comment ${P5ARCH}/DBD/mysql/INSTALL.pod
 ${P5ARCH}/auto/DBD/
 ${P5ARCH}/auto/DBD/mysql/
-@comment ${P5ARCH}/auto/DBD/mysql/mysql.bs
 ${P5ARCH}/auto/DBD/mysql/mysql.so
 @man man/man3p/Bundle::DBD::mysql.3p
 @man man/man3p/DBD::README.3p


Re: UPDATE: databases/p5-DBD-mysql

2011-09-27 Thread Giovanni Bechis
On 09/13/11 10:14, Giovanni Bechis wrote:
 Update to latest version and take maintainership, ok ?
 A lot of fixes related mainly to prepared statements and utf-8 handling.

Diff updated, any ok/comments about this ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.29
diff -u -p -r1.29 Makefile
--- Makefile16 Sep 2011 08:48:03 -  1.29
+++ Makefile27 Sep 2011 10:23:47 -
@@ -4,11 +4,12 @@ SHARED_ONLY=  Yes
 
 COMMENT=   MySQL drivers for the Perl DBI
 
-DISTNAME=  DBD-mysql-4.019
-REVISION = 0
+DISTNAME=  DBD-mysql-4.020
 CATEGORIES=databases
+
+MAINTAINER=Giovanni Bechis giova...@openbsd.org
+
 MODULES=   cpan
-USE_GROFF =Yes
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.14
diff -u -p -r1.14 distinfo
--- distinfo13 Jun 2011 16:50:00 -  1.14
+++ distinfo27 Sep 2011 10:23:47 -
@@ -1,5 +1,5 @@
-MD5 (DBD-mysql-4.019.tar.gz) = Vm2Yq4/6yWJqMfb21FVVjg==
-RMD160 (DBD-mysql-4.019.tar.gz) = xvvedNLt7j85M/iX//oT0zcQns4=
-SHA1 (DBD-mysql-4.019.tar.gz) = xqzepZ6sMT4U0BauKvDLl7Btf+I=
-SHA256 (DBD-mysql-4.019.tar.gz) = pAg5olFkO95wC37l9pxmwlAH0iYKmShA4RCTsAl1lR4=
-SIZE (DBD-mysql-4.019.tar.gz) = 136526
+MD5 (DBD-mysql-4.020.tar.gz) = or+ICLvUUpjoTd4Gr71Y6Q==
+RMD160 (DBD-mysql-4.020.tar.gz) = hHB0h8IJhYCOP5zjX84m4ewHd7s=
+SHA1 (DBD-mysql-4.020.tar.gz) = HD4R42Ng4IqjPEI1mYvDgCa0y3M=
+SHA256 (DBD-mysql-4.020.tar.gz) = kpnznzkD0+CvpkQEAfiDKaBXg0gXaEqmmaUH2tapk+c=
+SIZE (DBD-mysql-4.020.tar.gz) = 137736


UPDATE: databases/p5-DBD-mysql

2011-09-13 Thread Giovanni Bechis
Update to latest version and take maintainership, ok ?
A lot of fixes related mainly to prepared statements and utf-8 handling.
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.28
diff -u -p -r1.28 Makefile
--- Makefile13 Jun 2011 16:50:00 -  1.28
+++ Makefile13 Sep 2011 08:24:46 -
@@ -1,13 +1,14 @@
 # $OpenBSD: Makefile,v 1.28 2011/06/13 16:50:00 jasper Exp $
 
-SHARED_ONLY=   Yes
+SHARED_ONLY=   Yes
 
 COMMENT=   MySQL drivers for the Perl DBI
 
-DISTNAME=  DBD-mysql-4.019
+DISTNAME=  DBD-mysql-4.020
 CATEGORIES=databases
 MODULES=   cpan
-USE_GROFF =Yes
+
+MAINTAINER=Giovanni Bechis giova...@openbsd.org
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.14
diff -u -p -r1.14 distinfo
--- distinfo13 Jun 2011 16:50:00 -  1.14
+++ distinfo13 Sep 2011 08:24:46 -
@@ -1,5 +1,5 @@
-MD5 (DBD-mysql-4.019.tar.gz) = Vm2Yq4/6yWJqMfb21FVVjg==
-RMD160 (DBD-mysql-4.019.tar.gz) = xvvedNLt7j85M/iX//oT0zcQns4=
-SHA1 (DBD-mysql-4.019.tar.gz) = xqzepZ6sMT4U0BauKvDLl7Btf+I=
-SHA256 (DBD-mysql-4.019.tar.gz) = pAg5olFkO95wC37l9pxmwlAH0iYKmShA4RCTsAl1lR4=
-SIZE (DBD-mysql-4.019.tar.gz) = 136526
+MD5 (DBD-mysql-4.020.tar.gz) = or+ICLvUUpjoTd4Gr71Y6Q==
+RMD160 (DBD-mysql-4.020.tar.gz) = hHB0h8IJhYCOP5zjX84m4ewHd7s=
+SHA1 (DBD-mysql-4.020.tar.gz) = HD4R42Ng4IqjPEI1mYvDgCa0y3M=
+SHA256 (DBD-mysql-4.020.tar.gz) = kpnznzkD0+CvpkQEAfiDKaBXg0gXaEqmmaUH2tapk+c=
+SIZE (DBD-mysql-4.020.tar.gz) = 137736


Re: [Update] databases/p5-DBD-mysql

2011-05-09 Thread wen heping
Soory I missed attaching diff file in previous email.

Now I attached the diff file and update it to 4.019


Regards,
wen


2011/5/7 wen heping wenhep...@gmail.com:
 Hi,

   here is an update of p5-DBD-mysql to 4.018.

   Tested OK on Loongson and regress test OK.

   Comments ? OK ?

 wen

Index: p5-DBD-mysql/Makefile
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/Makefile,v
retrieving revision 1.27
diff -u -r1.27 Makefile
--- p5-DBD-mysql/Makefile   3 Dec 2010 11:44:24 -   1.27
+++ p5-DBD-mysql/Makefile   9 May 2011 15:22:37 -
@@ -4,11 +4,9 @@
 
 COMMENT=   MySQL drivers for the Perl DBI
 
-DISTNAME=  DBD-mysql-4.014
-REVISION=  1
+DISTNAME=  DBD-mysql-4.019
 CATEGORIES=databases
 MODULES=   cpan
-USE_GROFF =Yes
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: p5-DBD-mysql/distinfo
===
RCS file: /cvs/ports/databases/p5-DBD-mysql/distinfo,v
retrieving revision 1.13
diff -u -r1.13 distinfo
--- p5-DBD-mysql/distinfo   5 May 2010 10:00:46 -   1.13
+++ p5-DBD-mysql/distinfo   9 May 2011 15:22:37 -
@@ -1,5 +1,5 @@
-MD5 (DBD-mysql-4.014.tar.gz) = dPEYpJhOakn47OKOaMr1Qw==
-RMD160 (DBD-mysql-4.014.tar.gz) = Vl/Umqd2WaJ3KhrdlvVDWUk0VnA=
-SHA1 (DBD-mysql-4.014.tar.gz) = EdMm7JBzgxFhzv/3TKPXUDwL+1k=
-SHA256 (DBD-mysql-4.014.tar.gz) = NTpGP8alNMitGAu0lc+DBNVeiLPKrorsSVBuLbsCC+8=
-SIZE (DBD-mysql-4.014.tar.gz) = 131270
+MD5 (DBD-mysql-4.019.tar.gz) = Vm2Yq4/6yWJqMfb21FVVjg==
+RMD160 (DBD-mysql-4.019.tar.gz) = xvvedNLt7j85M/iX//oT0zcQns4=
+SHA1 (DBD-mysql-4.019.tar.gz) = xqzepZ6sMT4U0BauKvDLl7Btf+I=
+SHA256 (DBD-mysql-4.019.tar.gz) = pAg5olFkO95wC37l9pxmwlAH0iYKmShA4RCTsAl1lR4=
+SIZE (DBD-mysql-4.019.tar.gz) = 136526


[Update] databases/p5-DBD-mysql

2011-05-07 Thread wen heping
Hi,

   here is an update of p5-DBD-mysql to 4.018.

   Tested OK on Loongson and regress test OK.

   Comments ? OK ?

wen



UPDATE: databases/p5-DBD-mysql 3.008 - 4.004

2007-05-15 Thread Giovanni Bechis
Update to latest version of this perl module.
A lot of bug has been fixed since 3.008 version:
http://search.cpan.org/src/CAPTTOFU/DBD-mysql-4.004/ChangeLog
 Comments ? Ok ?
  Giovanni



Re: UPDATE: databases/p5-DBD-mysql 3.008 - 4.004

2007-05-15 Thread Giovanni Bechis
On Tue, May 15, 2007 at 07:27:39PM +0200, Giovanni Bechis wrote:
 Update to latest version of this perl module.

Oops, I forgot the diff
It's available at:
http://bigio.snb.it/openbsd/p5-DBD-mysql-4.004.diff
 Giovanni



UPDATE: databases/p5-DBD-mysql

2007-04-10 Thread Giovanni Bechis
Update to latest version (4.003).
Tested on i386.
 Ok ?
  Giovanni
diff -ruNx CVS databases/p5-DBD-mysql/Makefile 
mystuff/databases/p5-DBD-mysql/Makefile
--- databases/p5-DBD-mysql/Makefile Fri Dec 15 14:31:54 2006
+++ mystuff/databases/p5-DBD-mysql/Makefile Thu Mar 22 14:33:08 2007
@@ -4,7 +4,7 @@
 
 COMMENT=   'MySQL drivers for the Perl DBI'
 
-DISTNAME=  DBD-mysql-3.0008
+DISTNAME=  DBD-mysql-4.003
 PKGNAME=   p5-${DISTNAME}
 CATEGORIES=databases
 MODULES=   cpan
diff -ruNx CVS databases/p5-DBD-mysql/distinfo 
mystuff/databases/p5-DBD-mysql/distinfo
--- databases/p5-DBD-mysql/distinfo Fri Apr  6 17:52:55 2007
+++ mystuff/databases/p5-DBD-mysql/distinfo Tue Apr 10 09:25:11 2007
@@ -1,5 +1,5 @@
-MD5 (DBD-mysql-3.0008.tar.gz) = grH4mOwmwaEsyH4Asw8xPw==
-RMD160 (DBD-mysql-3.0008.tar.gz) = z43hLaTGa6UoOzAUkEnziiD0vKM=
-SHA1 (DBD-mysql-3.0008.tar.gz) = 0/oWpitWSCWOl+onvqtRRhtlfo8=
-SHA256 (DBD-mysql-3.0008.tar.gz) = 26tWS1gy5QEBnkMYbCQVZaVvZQYM1bPh21vVd9+4DnU=
-SIZE (DBD-mysql-3.0008.tar.gz) = 116159
+MD5 (DBD-mysql-4.003.tar.gz) = FX+BfSalKqr/Yc449wQ7lQ==
+RMD160 (DBD-mysql-4.003.tar.gz) = vt5KeYjd4fiSCeNht0mmJPyJlhQ=
+SHA1 (DBD-mysql-4.003.tar.gz) = uER28pjE+yn2SvPpIJNXmwEKaXg=
+SHA256 (DBD-mysql-4.003.tar.gz) = E7OGfTDfodfaVBmYr3sBaO5gfc1mQYXKQPO7neT3YUA=
+SIZE (DBD-mysql-4.003.tar.gz) = 121582
diff -ruNx CVS databases/p5-DBD-mysql/patches/patch-Makefile_PL 
mystuff/databases/p5-DBD-mysql/patches/patch-Makefile_PL
--- databases/p5-DBD-mysql/patches/patch-Makefile_PLTue Dec 30 21:41:29 2003
+++ mystuff/databases/p5-DBD-mysql/patches/patch-Makefile_PLWed Mar 21 
22:44:55 2007
@@ -1,7 +1,7 @@
-$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2003/12/30 20:41:29 wilfried Exp $
 Makefile.PL.orig   Tue Apr 30 00:42:17 2002
-+++ Makefile.PLWed Apr  2 15:41:39 2003
-@@ -46,15 +46,6 @@ foreach my $key (sort { $a cmp $b} keys 
+$OpenBSD$
+--- Makefile.PL.orig   Wed Mar 21 22:44:18 2007
 Makefile.PLWed Mar 21 22:44:44 2007
+@@ -172,14 +172,6 @@ foreach my $key (sort { $a cmp $b} keys %$opt)
 $key, $source-{$key}, $opt-{$key})
  }
  
@@ -13,7 +13,6 @@
 -MSG
 -
 -sleep 5;
--
+ 
  eval { require File::Spec };
- my $fileName = $@ ?
-   t/mysql.mtest : File::Spec-catfile(t, mysql.mtest);
+ my $ps_dsn= ;
diff -ruNx CVS databases/p5-DBD-mysql/pkg/PLIST 
mystuff/databases/p5-DBD-mysql/pkg/PLIST
--- databases/p5-DBD-mysql/pkg/PLISTWed Sep 15 01:31:46 2004
+++ mystuff/databases/p5-DBD-mysql/pkg/PLISTTue Apr 10 09:54:07 2007
@@ -5,9 +5,6 @@
 ${P5ARCH}/DBD/mysql.pm
 ${P5ARCH}/DBD/mysql/GetInfo.pm
 @comment ${P5ARCH}/DBD/mysql/INSTALL.pod
-${P5ARCH}/Mysql/
-${P5ARCH}/Mysql.pm
-${P5ARCH}/Mysql/Statement.pm
 ${P5ARCH}/auto/DBD/
 ${P5ARCH}/auto/DBD/mysql/
 ${P5ARCH}/auto/DBD/mysql/mysql.bs
@@ -15,4 +12,3 @@
 @man man/man3p/Bundle::DBD::mysql.3p
 @man man/man3p/DBD::mysql.3p
 @man man/man3p/DBD::mysql::INSTALL.3p
[EMAIL PROTECTED] man/man3p/Mysql.3p