From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Apr 16 17:00:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C6E106566C for ; Sat, 16 Apr 2011 17:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5B00A8FC0C for ; Sat, 16 Apr 2011 17:00:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p3GH09Hp087217 for ; Sat, 16 Apr 2011 17:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p3GH0974087207; Sat, 16 Apr 2011 17:00:09 GMT (envelope-from gnats) Date: Sat, 16 Apr 2011 17:00:09 GMT Message-Id: <201104161700.p3GH0974087207@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthew Seaman Cc: Subject: Re: ports/156443: databases/mysql-connector-java -- update to 5.1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2011 17:00:10 -0000 The following reply was made to PR ports/156443; it has been noted by GNATS. From: Matthew Seaman To: bug-followup@FreeBSD.ORG Cc: Subject: Re: ports/156443: databases/mysql-connector-java -- update to 5.1.15 Date: Sat, 16 Apr 2011 17:51:56 +0100 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 16, 2011 at 03:50:11PM +0000, Edwin Groothuis wrote: > Maintainer of databases/mysql-connector-java, >=20 > Please note that PR ports/156443 has just been submitted. >=20 > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. Maintainer suggests using the following patch instead -- * Add LICENSE, don't install yet another copy of the GPLv2 text * Cope with non-ascii characters now appearing in the sources * Update to 5.1.15 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/databases/mysql-connector-java/Makefile,v retrieving revision 1.55 diff -u -u -r1.55 Makefile --- Makefile 3 Jun 2010 17:09:57 -0000 1.55 +++ Makefile 16 Apr 2011 16:45:41 -0000 @@ -6,7 +6,7 @@ # =20 PORTNAME=3D mysql-connector-java -PORTVERSION=3D 5.1.12 +PORTVERSION=3D 5.1.15 CATEGORIES=3D databases java MASTER_SITES=3D ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR=3D Connector-J @@ -18,6 +18,8 @@ =20 CONFLICTS=3D mysql-connector-java*-5.0.* =20 +LICENSE=3D GPLv2 + USE_JAVA=3D yes JAVA_VERSION=3D 1.3+ BUILDDIR=3D ${WRKDIR}/${DISTNAME} @@ -25,7 +27,7 @@ SRCDIR=3D ${WRKDIR}/${DISTNAME}/src JAVADOCDIR=3D ${WRKDIR}/${DISTNAME}/javadoc DESTJARFILE=3D ${PORTNAME}.jar -EXTRADOCS=3D README CHANGES docs/connector-j.html docs/connector-j.pdf +EXTRADOCS=3D CHANGES docs/connector-j.html docs/connector-j.pdf JARFILE=3D ${DISTNAME}-bin.jar JDCLASSPATH=3D ${SRCDIR}:${CLASSPATH} =20 @@ -37,11 +39,10 @@ =20 do-build: .if !defined(NOPORTDOCS) - @${MKDIR} ${JAVADOCDIR} && (cd ${SRCDIR}; \ - ${JAVADOC} -quiet -breakiterator \ - -d ${JAVADOCDIR} -package \ - -classpath ${JDCLASSPATH} \ - com.mysql.jdbc org.gjt.mm.mysql) + @${MKDIR} ${JAVADOCDIR} && (cd ${SRCDIR}; \ + ${JAVADOC} -quiet -breakiterator -encoding utf8 \ + -d ${JAVADOCDIR} -package -classpath ${JDCLASSPATH} \ + com.mysql.jdbc org.gjt.mm.mysql) .endif =20 do-install: do-install-jar do-install-apidocs Index: distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/databases/mysql-connector-java/distinfo,v retrieving revision 1.33 diff -u -u -r1.33 distinfo --- distinfo 20 Mar 2011 12:47:15 -0000 1.33 +++ distinfo 16 Apr 2011 16:45:41 -0000 @@ -1,2 +1,2 @@ -SHA256 (mysql-connector-java-5.1.12.tar.gz) =3D afc4f84eccbfaed92cd7115495= 81971fc27e93b3318d4fa1f5b53a2f58f8d0f0 -SIZE (mysql-connector-java-5.1.12.tar.gz) =3D 3740147 +SHA256 (mysql-connector-java-5.1.15.tar.gz) =3D 6db61abe733fc074215a50abb6= db81c34eae193a8825a832a46dd05a9e566fce +SIZE (mysql-connector-java-5.1.15.tar.gz) =3D 3304179 --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (FreeBSD) iEYEARECAAYFAk2pySwACgkQ8Mjk52CukIzktgCfRMI4wj+gGG2PtMQGTnwur9vp yFYAoILiErQdBVPJaL0B3II03GhRzJ/m =pXy8 -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c--