summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2011-07-09 22:11:31 +0000
committerChristoph Mende <angelos@gentoo.org>2011-07-09 22:11:31 +0000
commitf96305fd656a211e9fc6751a266a571870c24bc2 (patch)
treedbd0d46388ee35b63231181e1231a49126b2099a /dev-python/zsi
parentppc stable wrt #367951. Dropped ~ppc64 (diff)
downloadgentoo-2-f96305fd656a211e9fc6751a266a571870c24bc2.tar.gz
gentoo-2-f96305fd656a211e9fc6751a266a571870c24bc2.tar.bz2
gentoo-2-f96305fd656a211e9fc6751a266a571870c24bc2.zip
Remove old (bug #367753)
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/zsi')
-rw-r--r--dev-python/zsi/ChangeLog5
-rw-r--r--dev-python/zsi/zsi-2.0.ebuild59
2 files changed, 4 insertions, 60 deletions
diff --git a/dev-python/zsi/ChangeLog b/dev-python/zsi/ChangeLog
index 753ed93d51ad..eaef7583464a 100644
--- a/dev-python/zsi/ChangeLog
+++ b/dev-python/zsi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/zsi
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/ChangeLog,v 1.19 2011/07/09 22:06:40 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/ChangeLog,v 1.20 2011/07/09 22:11:31 angelos Exp $
+
+ 09 Jul 2011; Christoph Mende <angelos@gentoo.org> -zsi-2.0.ebuild:
+ Remove old (bug #367753)
09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> zsi-2.0.ebuild,
zsi-2.1_alpha1.ebuild:
diff --git a/dev-python/zsi/zsi-2.0.ebuild b/dev-python/zsi/zsi-2.0.ebuild
deleted file mode 100644
index ab83060fa78b..000000000000
--- a/dev-python/zsi/zsi-2.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/zsi-2.0.ebuild,v 1.13 2011/07/09 22:06:40 xarthisius Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2:2.4"
-
-inherit distutils
-
-MY_PN="ZSI"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Web Services for Python"
-HOMEPAGE="http://pywebsvcs.sourceforge.net/zsi.html"
-SRC_URI="mirror://sourceforge/pywebsvcs/${MY_P}.tar.gz"
-
-KEYWORDS="amd64 ppc x86"
-SLOT="0"
-LICENSE="PYTHON"
-IUSE="examples doc twisted"
-
-DEPEND=">=dev-python/pyxml-0.8.3
- >=dev-python/setuptools-0.6_rc3
- twisted? (
- >=dev-python/twisted-2.0
- >=dev-python/twisted-web-0.5.0
- >=dev-lang/python-2.4 )"
-
-S="${WORKDIR}/${MY_P}"
-PYTHON_MODNAME="${MY_PN}"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- if ! use twisted; then
- sed -i \
- -e "/version_info/d"\
- -e "/ZSI.twisted/d"\
- setup.py
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml doc/*.html doc/*.css doc/*.png
- fi
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins -r doc/examples/* samples/*
- fi
-}
-
-DOCS="CHANGES README"