From: Mikle Kolyada Date: Fri, 28 Feb 2020 07:21:55 +0000 (+0300) Subject: dev-python/zsi: remove last-rited package X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e5af07a05eb04e6e2ce070f60fc9333e4dd60c3e;p=gentoo.git dev-python/zsi: remove last-rited package Signed-off-by: Mikle Kolyada --- diff --git a/dev-python/zsi/Manifest b/dev-python/zsi/Manifest deleted file mode 100644 index 0ac13c908d76..000000000000 --- a/dev-python/zsi/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ZSI-2.1-a1.tar.gz 932958 BLAKE2B a0133c2d2febc3be64d738a38304a0148fd6895333a48c940752af4ca25019f1cb26d606b3da86c2d386e117f081a83d47a52fd0ec9cbb12393f9397806f73cc SHA512 13f8734a5b09caa83786e776bc1104061812d05543b1412cda02dd904d6cd926042a4a882ffac71081a5275879d79927ea225ae2753936e0d026aee074f07974 diff --git a/dev-python/zsi/metadata.xml b/dev-python/zsi/metadata.xml deleted file mode 100644 index 5a758b8ad8f3..000000000000 --- a/dev-python/zsi/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - python@gentoo.org - Python - - - add support for python-twisted (needs - dev-python/twisted-core and dev-python/twisted-web) - - - - pywebsvcs - - diff --git a/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild b/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild deleted file mode 100644 index c4eee8e2d0f2..000000000000 --- a/dev-python/zsi/zsi-2.1_alpha1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -MY_PN="ZSI" -MY_P="${MY_PN}-${PV/_alpha/-a}" - -DESCRIPTION="Web Services for Python" -HOMEPAGE="http://pywebsvcs.sourceforge.net/zsi.html" -SRC_URI="mirror://sourceforge/pywebsvcs/${MY_P}.tar.gz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc examples twisted" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="${PYTHON_DEPS} - dev-python/setuptools[${PYTHON_USEDEP}] - twisted? ( - dev-python/twisted-core - dev-python/twisted-web - )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -python_prepare_all() { - if ! use twisted; then - sed -i \ - -e "/version_info/d"\ - -e "/ZSI.twisted/d"\ - setup.py || die "sed failed" - fi - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - if use doc; then - dohtml doc/*.{html,css,png} - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r doc/examples/* samples/* - fi -}