idella4 14/12/19 08:19:53 Modified: ChangeLog Added: mysql-python-1.2.5-r1.ebuild Log: revbump; drop py2.6 add pypy, fixes bug #529842 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.109 dev-python/mysql-python/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mysql-python/ChangeLog?rev=1.109&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mysql-python/ChangeLog?rev=1.109&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mysql-python/ChangeLog?r1=1.108&r2=1.109 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/mysql-python/ChangeLog,v retrieving revision 1.108 retrieving revision 1.109 diff -u -r1.108 -r1.109 --- ChangeLog 1 Dec 2014 09:37:56 -0000 1.108 +++ ChangeLog 19 Dec 2014 08:19:53 -0000 1.109 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/mysql-python # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mysql-python/ChangeLog,v 1.108 2014/12/01 09:37:56 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mysql-python/ChangeLog,v 1.109 2014/12/19 08:19:53 idella4 Exp $ + +*mysql-python-1.2.5-r1 (19 Dec 2014) + + 19 Dec 2014; Ian Delaney <[email protected]> +mysql-python-1.2.5-r1.ebuild: + revbump; drop py2.6 add pypy, fixes bug #529842 01 Dec 2014; Agostino Sarubbo <[email protected]> mysql-python-1.2.5.ebuild: Stable for sparc, wrt bug #520298 1.1 dev-python/mysql-python/mysql-python-1.2.5-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mysql-python/mysql-python-1.2.5-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mysql-python/mysql-python-1.2.5-r1.ebuild?rev=1.1&content-type=text/plain Index: mysql-python-1.2.5-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/mysql-python/mysql-python-1.2.5-r1.ebuild,v 1.1 2014/12/19 08:19:53 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 pypy ) inherit distutils-r1 flag-o-matic MY_PN="MySQL-python" MY_P="${MY_PN}-${PV}" DESCRIPTION="Python interface to MySQL" HOMEPAGE="http://sourceforge.net/projects/mysql-python/ http://pypi.python.org/pypi/MySQL-python" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc" RDEPEND="virtual/mysql" DEPEND="${RDEPEND} app-arch/unzip dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" S="${WORKDIR}/${MY_P}" DOCS=( HISTORY README.md doc/{FAQ,MySQLdb}.rst ) python_configure_all() { append-flags -fno-strict-aliasing } python_compile_all() { use doc && sphinx-build -b html doc doc/_build/ } python_install_all() { use doc && local HTML_DOCS=( doc/_build/. ) distutils-r1_python_install_all }
