summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-06 14:51:55 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-06 15:13:24 +0100
commitdf764636b2c746ac7907a7bca839669b0f0f9d61 (patch)
tree54455a2018cfb385a337d38cfa696f428d93b2de
parentdev-python/xdis: Clean old up (diff)
downloadgentoo-df764636b2c746ac7907a7bca839669b0f0f9d61.tar.gz
gentoo-df764636b2c746ac7907a7bca839669b0f0f9d61.tar.bz2
gentoo-df764636b2c746ac7907a7bca839669b0f0f9d61.zip
dev-python/pyx: Clean old up
-rw-r--r--dev-python/pyx/Manifest1
-rw-r--r--dev-python/pyx/pyx-0.13.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/pyx/Manifest b/dev-python/pyx/Manifest
index 609200866ff3..735c1f390b31 100644
--- a/dev-python/pyx/Manifest
+++ b/dev-python/pyx/Manifest
@@ -1,3 +1,2 @@
DIST PyX-0.12.1.tar.gz 561989 BLAKE2B 894b507f78745e0688abca20db91f4161627812ce303a066dde64841a3ac4e6415e00fb76a9273b413ddd9dc72550726e2f39004c053c6350f4f76253b884be4 SHA512 4941f5aa21aff3743546495fb073c10d2657ff42b2aff401903498638093d0e31e344cce778980f28a7170c6d29eab72ac074277b9d4088376e8692dc71e55c1
-DIST PyX-0.13.tar.gz 1237082 BLAKE2B ddcd5c215b79f68a7f75195104309074ea2ec4e60f581c650a2f3914ef6fe03fb3651b64b535d2247a05c436ff9cb710355917aea04559e9c3633d7cc8ae07b8 SHA512 cab0c22f0862ae20cff92504ededf4fcf5820d5773130fb258de1a95d295ca4fe657b85d5ccd52021a4f84403e6db8eebe9f676fa405781738502456123eb05c
DIST PyX-0.14.1.tar.gz 2475186 BLAKE2B 5e18b2a052c586cfdcfcc46f5351683ce7c3ec41d508b6fd5e085be543ac3730ee866b636d3ab9663e782b95efafcc340260826c82a77955b586ad7a55676c5b SHA512 16265bbdcaf28ce194189a2987b32952f296c850b829454bcccce0abd23838bfca0276c3e9c8e96b8cbfaf1473bf14669f9b7f2032ee039b61ae59ea3aa45a20
diff --git a/dev-python/pyx/pyx-0.13.ebuild b/dev-python/pyx/pyx-0.13.ebuild
deleted file mode 100644
index c60245391eec..000000000000
--- a/dev-python/pyx/pyx-0.13.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python3_4 )
-
-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
- dev-texlive/texlive-basic"
-
-DEPEND="${RDEPEND}
- doc? ( virtual/latex-base
- dev-python/sphinx[latex,${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}/${MY_P}"
-
-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
- VARTEXFONTS="${T}"/fonts emake -C "${S}"/faq latexpdf
- fi
-}
-
-python_install_all() {
- use doc && dodoc faq/_build/latex/pyxfaq.pdf
- distutils-r1_python_install_all
-}