radhermit 14/06/10 23:56:38 Modified: ChangeLog Added: apsw-3.8.5_p1.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.71 dev-python/apsw/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?rev=1.71&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?rev=1.71&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?r1=1.70&r2=1.71 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- ChangeLog 20 May 2014 22:18:49 -0000 1.70 +++ ChangeLog 10 Jun 2014 23:56:38 -0000 1.71 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/apsw # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v 1.70 2014/05/20 22:18:49 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v 1.71 2014/06/10 23:56:38 radhermit Exp $ + +*apsw-3.8.5_p1 (10 Jun 2014) + + 10 Jun 2014; Tim Harder <radher...@gentoo.org> +apsw-3.8.5_p1.ebuild: + Version bump. 20 May 2014; Manuel RĂ¼ger <mr...@gentoo.org> apsw-3.8.4.3_p1.ebuild: Add ~arm keyword. 1.1 dev-python/apsw/apsw-3.8.5_p1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/apsw-3.8.5_p1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/apsw-3.8.5_p1.ebuild?rev=1.1&content-type=text/plain Index: apsw-3.8.5_p1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/apsw-3.8.5_p1.ebuild,v 1.1 2014/06/10 23:56:38 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) inherit distutils-r1 MY_PV=${PV/_p/-r} MY_P=${PN}-${MY_PV} DESCRIPTION="APSW - Another Python SQLite Wrapper" HOMEPAGE="http://code.google.com/p/apsw/" HOMEPAGE="https://github.com/rogerbinns/apsw/" SRC_URI="https://github.com/rogerbinns/apsw/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="ZLIB" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc64 ~x86" IUSE="doc" RDEPEND=">=dev-db/sqlite-${PV%_p*}" DEPEND="${RDEPEND} app-arch/unzip" S=${WORKDIR}/${MY_P} PATCHES=( "${FILESDIR}"/${PN}-3.6.20.1-fix_tests.patch ) python_compile() { if [[ ${EPYTHON} == python2* ]]; then local CFLAGS="${CFLAGS} -fno-strict-aliasing" export CFLAGS fi distutils-r1_python_compile --enable=load_extension } src_test() { # tests use overlapping database files local DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test } python_test() { "${PYTHON}" setup.py build_test_extension || die "Building of test loadable extension failed" "${PYTHON}" tests.py -v || die } python_install_all() { distutils-r1_python_install_all if use doc ; then dohtml -r doc/* fi }