diff options
Diffstat (limited to 'dev-python/pythong')
-rw-r--r-- | dev-python/pythong/Manifest | 4 | ||||
-rw-r--r-- | dev-python/pythong/metadata.xml | 8 | ||||
-rw-r--r-- | dev-python/pythong/pythong-2.1.5-r3.ebuild | 55 |
3 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/pythong/Manifest b/dev-python/pythong/Manifest deleted file mode 100644 index 5a98660cc315..000000000000 --- a/dev-python/pythong/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST python.pdf 2547987 BLAKE2B 2f8d6baf3d94fd4072d2c482e934bbe168269d48e5ff7ea35c61c29b826269388e75669fb8f3fff0cbf1d113f84cf0c547ec21bad032ddba6ead06a4b473a3ed SHA512 9d16eb39ff5996be70aa41cb758e73adf1fa72a7e83613626cf6f519def99fd30169a87b1e918902e1aecfb75d925cb7e49d9ad5733dd5274b9a351adaaf201e -DIST pythonG-2_1_5.tgz 397754 BLAKE2B 88480558274384cf8cac8c9423949b80ac5c022b3e404af4cc732efb8393c27b2f6957fcb630ba7d5455bb15d508117516e02ed4fc1c6c20326abf19768ebbcb SHA512 8a8c3ada425a1d7a0565e495494a8edfcf8b4224cb93ea843669e4d0b2ca9e122d038c728ff8242885e0b320caa6db8ef8f721f99c423b7a8f87a83a4e6f51c6 -EBUILD pythong-2.1.5-r3.ebuild 1280 BLAKE2B 7f6f0d2b73bd76ce9af0c4a13c726bf084f79f152bb4e0a951896a6414f2e81398a344d1cfdb1615a487e5eec3cca081a693ff38241e59df991794df728f0233 SHA512 5a651577b178525f4ca3a87c51ae52a58e9b2af5f8d21ce9edc33062fb4976c735ed28211b7d3728d5cb1e9a500dca3e81baf649c8b5ea8b919ff1991987d67d -MISC metadata.xml 246 BLAKE2B 3a28b3bb42a0352827a446ea608867a7782fe682458527ef441a528a22c9f951dc203639934a69ffb520f63aadce3037df28bf8c5304b3a5921b336142f9f246 SHA512 3245fb694492b2f698fb63aac02e66fb8a94fe35eabda45df4790bec043a1ea552e112315334001902f070093bb73e7b741aa3004757404aed97ebdb86cc9fbc diff --git a/dev-python/pythong/metadata.xml b/dev-python/pythong/metadata.xml deleted file mode 100644 index e24dd86faa2a..000000000000 --- a/dev-python/pythong/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> -</pkgmetadata> diff --git a/dev-python/pythong/pythong-2.1.5-r3.ebuild b/dev-python/pythong/pythong-2.1.5-r3.ebuild deleted file mode 100644 index 3e649b8f4557..000000000000 --- a/dev-python/pythong/pythong-2.1.5-r3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="tk" - -inherit python-single-r1 - -MY_PN="pythonG" -MY_PV=${PV/_/-} -MY_PV=${MY_PV//\./_} - -DESCRIPTION="Nice and powerful spanish development environment for Python" -HOMEPAGE="http://www3.uji.es/~dllorens/PythonG/principal.html" -SRC_URI=" - http://www3.uji.es/~dllorens/downloads/pythong/linux/${MY_PN}-${MY_PV}.tgz - doc? ( http://marmota.act.uji.es/MTP/pdf/python.pdf )" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ia64 x86" -SLOT="0" -IUSE="doc" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - >=dev-lang/tk-8.3.4:0= - $(python_gen_cond_dep ' - dev-python/pmw:py2[${PYTHON_MULTI_USEDEP}] - ')" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_PN}-${MY_PV}" - -src_prepare() { - sed \ - -e "s:^\(fullpath = \).*:\1'$(python_get_sitedir)':" \ - -e "/^url_docFuncPG/s:'+fullpath+':/usr/share/doc/${PF}:" \ - -i pythong.py || die "sed in pythong.py failed" -} - -src_install() { - python_domodule modulepythong.py libpythong - python_doscript pythong.py - - dodoc leeme.txt - dodoc -r {LICENCIA,MANUAL,demos} - rm -fr "${ED}/usr/share/doc/${PF}/demos/modulepythong.py" || die - - if use doc; then - dodoc "${DISTDIR}"/python.pdf - fi - python_optimize -} |