summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-09-02 11:07:57 +0000
committerMichał Górny <mgorny@gentoo.org>2013-09-02 11:07:57 +0000
commitb1c6d378fbffd0ea8ebf1d1159c6d72bb68790c0 (patch)
treed9fe8945622bc5c59021f6157584c69a7c705ddd /dev-python/python-slip
parentRemove vulnerable versions, security bug #481228. (diff)
downloadgentoo-2-b1c6d378fbffd0ea8ebf1d1159c6d72bb68790c0.tar.gz
gentoo-2-b1c6d378fbffd0ea8ebf1d1159c6d72bb68790c0.tar.bz2
gentoo-2-b1c6d378fbffd0ea8ebf1d1159c6d72bb68790c0.zip
Drop old.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'dev-python/python-slip')
-rw-r--r--dev-python/python-slip/ChangeLog5
-rw-r--r--dev-python/python-slip/python-slip-0.2.21.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-python/python-slip/ChangeLog b/dev-python/python-slip/ChangeLog
index 56974d9133a5..642a6cd9561a 100644
--- a/dev-python/python-slip/ChangeLog
+++ b/dev-python/python-slip/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/python-slip
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/ChangeLog,v 1.10 2013/08/18 13:25:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/ChangeLog,v 1.11 2013/09/02 11:07:57 mgorny Exp $
+
+ 02 Sep 2013; Michał Górny <mgorny@gentoo.org> -python-slip-0.2.21.ebuild:
+ Drop old.
18 Aug 2013; Agostino Sarubbo <ago@gentoo.org> python-slip-0.2.21-r1.ebuild:
Stable for x86, wrt bug #479508
diff --git a/dev-python/python-slip/python-slip-0.2.21.ebuild b/dev-python/python-slip/python-slip-0.2.21.ebuild
deleted file mode 100644
index 63910c5ee8fd..000000000000
--- a/dev-python/python-slip/python-slip-0.2.21.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/python-slip-0.2.21.ebuild,v 1.4 2013/04/06 13:12:26 swift Exp $
-
-EAPI=4
-
-# pygtk, pygobject:2 etc. don't support multiple python2 slots
-PYTHON_COMPAT="python2_7"
-
-inherit eutils python-distutils-ng
-
-DESCRIPTION="Miscellaneous convenience, extension and workaround code for Python"
-HOMEPAGE="https://fedorahosted.org/python-slip/"
-SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dbus gtk selinux"
-
-RDEPEND="
- dbus? (
- dev-python/dbus-python
- dev-python/pygobject:2
- sys-auth/polkit )
- gtk? ( dev-python/pygtk:2 )
-"
-DEPEND=""
-
-python_prepare_all() {
- use selinux || epatch "${FILESDIR}/${PN}-0.2.20-no-selinux.patch"
- sed -e "s:@VERSION@:${PV}:" setup.py.in > setup.py || die "sed failed"
-
- if ! use dbus; then
- sed -e '/name="slip.dbus"/ s/\(.*\)/if 0:\n \1/' \
- -i setup.py || die "sed 2 failed"
- fi
- if ! use gtk; then
- sed -e '/name="slip.gtk"/ s/\(.*\)/if 0:\n \1/' \
- -i setup.py || die "sed 3 failed"
- fi
-}