floppym 15/05/06 00:50:04 Modified: ChangeLog Added: pycparser-2.12.ebuild Removed: pycparser-2.11.ebuild Log: Version bump, should fix bug 548718. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path 1.36 dev-python/pycparser/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycparser/ChangeLog?rev=1.36&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycparser/ChangeLog?rev=1.36&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycparser/ChangeLog?r1=1.35&r2=1.36 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pycparser/ChangeLog,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- ChangeLog 5 May 2015 18:04:23 -0000 1.35 +++ ChangeLog 6 May 2015 00:50:03 -0000 1.36 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pycparser # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycparser/ChangeLog,v 1.35 2015/05/05 18:04:23 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycparser/ChangeLog,v 1.36 2015/05/06 00:50:03 floppym Exp $ + +*pycparser-2.12 (06 May 2015) + + 06 May 2015; Mike Gilbert <flop...@gentoo.org> +pycparser-2.12.ebuild, + -pycparser-2.11.ebuild: + Version bump, should fix bug 548718. *pycparser-2.11 (05 May 2015) 1.1 dev-python/pycparser/pycparser-2.12.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycparser/pycparser-2.12.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycparser/pycparser-2.12.ebuild?rev=1.1&content-type=text/plain Index: pycparser-2.12.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycparser/pycparser-2.12.ebuild,v 1.1 2015/05/06 00:50:03 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) inherit distutils-r1 vcs-snapshot DESCRIPTION="C parser and AST generator written in Python" HOMEPAGE="https://github.com/eliben/pycparser" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="test" RDEPEND="dev-python/ply[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_compile() { distutils-r1_python_compile pushd "${BUILD_DIR}/lib/pycparser" > /dev/null || die "${PYTHON}" _build_tables.py || die popd > /dev/null || die } python_test() { nosetests || die }