patrick 14/05/03 08:07:27 Modified: ChangeLog Added: pyx-0.13.ebuild Log: Bump (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.39 dev-python/pyx/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?rev=1.39&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?rev=1.39&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?r1=1.38&r2=1.39 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- ChangeLog 31 Mar 2014 21:01:35 -0000 1.38 +++ ChangeLog 3 May 2014 08:07:27 -0000 1.39 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyx # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.38 2014/03/31 21:01:35 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.39 2014/05/03 08:07:27 patrick Exp $ + +*pyx-0.13 (03 May 2014) + + 03 May 2014; Patrick Lauer <[email protected]> +pyx-0.13.ebuild: + Bump 31 Mar 2014; Michał Górny <[email protected]> pyx-0.12.1-r1.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/pyx/pyx-0.13.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild?rev=1.1&content-type=text/plain Index: pyx-0.13.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild,v 1.1 2014/05/03 08:07:26 patrick Exp $ EAPI=5 PYTHON_COMPAT=( python3_3 ) inherit distutils-r1 MY_P="${P/pyx/PyX}" DESCRIPTION="Python package for the generation of encapsulated PostScript figures" HOMEPAGE="http://pyx.sourceforge.net/" SRC_URI="mirror://sourceforge/pyx/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc" RDEPEND="virtual/tex-base" DEPEND="${RDEPEND} doc? ( virtual/latex-base )" S="${WORKDIR}/${MY_P}" DOCS=( AUTHORS CHANGES ) src_prepare() { distutils-r1_src_prepare sed -i \ -e 's/^build_t1code=.*/build_t1code=1/' \ -e 's/^build_pykpathsea=.*/build_pykpathsea=1/' \ setup.cfg || die "setup.cfg fix failed" } python_compile_all() { if use doc; then cd "${S}/faq" VARTEXFONTS="${T}"/fonts make latexpdf fi } python_install_all() { use doc && dodoc faq/_build/latex/pyxfaq.pdf }
