monsieurp    15/03/09 14:56:36

  Modified:             ChangeLog
  Added:                DBD-mysql-4.31.0.ebuild
  Log:
  Version bump. Fix bug 420245.
  
  (Portage version: 2.2.14/cvs/Linux i686, unsigned Manifest commit)

Revision  Changes    Path
1.143                dev-perl/DBD-mysql/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/ChangeLog?rev=1.143&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/ChangeLog?rev=1.143&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/ChangeLog?r1=1.142&r2=1.143

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog   20 Aug 2014 20:27:28 -0000      1.142
+++ ChangeLog   9 Mar 2015 14:56:36 -0000       1.143
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/DBD-mysql
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v 1.142 
2014/08/20 20:27:28 axs Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/ChangeLog,v 1.143 
2015/03/09 14:56:36 monsieurp Exp $
+
+*DBD-mysql-4.31.0 (09 Mar 2015)
+
+  09 Mar 2015; Patrice Clement <monsie...@gentoo.org> +DBD-mysql-4.31.0.ebuild:
+  Version bump. Fix bug 420245.
 
 *DBD-mysql-4.20.0-r1 (20 Aug 2014)
 



1.1                  dev-perl/DBD-mysql/DBD-mysql-4.31.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.31.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.31.0.ebuild?rev=1.1&content-type=text/plain

Index: DBD-mysql-4.31.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-mysql/DBD-mysql-4.31.0.ebuild,v 
1.1 2015/03/09 14:56:36 monsieurp Exp $

EAPI=5

MODULE_AUTHOR=CAPTTOFU
MODULE_VERSION=4.031
inherit eutils perl-module

DESCRIPTION="The Perl DBD:mysql Module"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="embedded test"

RDEPEND="dev-perl/DBI
        dev-perl/Test-Deep
        virtual/mysql[embedded?]"
DEPEND="${RDEPEND}"

if use test; then
        SRC_TEST="do"
else
        SRC_TEST="skip"
fi

src_configure() {
        if use test; then
                myconf="${myconf} --testdb=test \
                        --testhost=localhost \
                        --testuser=test \
                        --testpassword=test"
        fi
        use embedded && myconf="${myconf} --force-embedded 
--embedded=mysql_config"
        perl-module_src_configure
}

src_test() {
        if use test; then
                einfo
                einfo "If tests fail, you have to configure your MySQL instance 
to create"
                einfo "and grant some privileges to the test user."
                einfo "You can run the following commands at the MySQL prompt: "
                einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';"
                einfo "> CREATE DATABASE test;"
                einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
                einfo
                sleep 5
                perl-module_src_test
        fi
}




Reply via email to