summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris PeBenito <pebenito@gentoo.org>2006-02-05 04:33:53 +0000
committerChris PeBenito <pebenito@gentoo.org>2006-02-05 04:33:53 +0000
commit9eecf476618eebe1c742d0d3dd96405dcb3f74ed (patch)
tree801186f99dc9d85772c1fa7efca459564ff08b75 /dev-python/python-selinux
parent- add minimal testing profile for 2006 (diff)
downloadgentoo-2-9eecf476618eebe1c742d0d3dd96405dcb3f74ed.tar.gz
gentoo-2-9eecf476618eebe1c742d0d3dd96405dcb3f74ed.tar.bz2
gentoo-2-9eecf476618eebe1c742d0d3dd96405dcb3f74ed.zip
remove old version
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'dev-python/python-selinux')
-rw-r--r--dev-python/python-selinux/ChangeLog6
-rw-r--r--dev-python/python-selinux/files/digest-python-selinux-2.150
-rw-r--r--dev-python/python-selinux/files/python-selinux-2.15.c.bz2bin6831 -> 0 bytes
-rw-r--r--dev-python/python-selinux/python-selinux-2.15.ebuild35
4 files changed, 5 insertions, 36 deletions
diff --git a/dev-python/python-selinux/ChangeLog b/dev-python/python-selinux/ChangeLog
index 816321c3732a..c525b8661d35 100644
--- a/dev-python/python-selinux/ChangeLog
+++ b/dev-python/python-selinux/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/python-selinux
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-selinux/ChangeLog,v 1.27 2006/01/14 01:00:11 spb Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-selinux/ChangeLog,v 1.28 2006/02/05 04:33:53 pebenito Exp $
+
+ 05 Feb 2006; Chris PeBenito <pebenito@gentoo.org>
+ -files/python-selinux-2.15.c.bz2, -python-selinux-2.15.ebuild:
+ Remove old version.
14 Jan 2006; Stephen Bennett <spb@gentoo.org> python-selinux-2.16.ebuild:
Added ~alpha
diff --git a/dev-python/python-selinux/files/digest-python-selinux-2.15 b/dev-python/python-selinux/files/digest-python-selinux-2.15
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/dev-python/python-selinux/files/digest-python-selinux-2.15
+++ /dev/null
diff --git a/dev-python/python-selinux/files/python-selinux-2.15.c.bz2 b/dev-python/python-selinux/files/python-selinux-2.15.c.bz2
deleted file mode 100644
index d7f11b47ae22..000000000000
--- a/dev-python/python-selinux/files/python-selinux-2.15.c.bz2
+++ /dev/null
Binary files differ
diff --git a/dev-python/python-selinux/python-selinux-2.15.ebuild b/dev-python/python-selinux/python-selinux-2.15.ebuild
deleted file mode 100644
index a98541f9a551..000000000000
--- a/dev-python/python-selinux/python-selinux-2.15.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-selinux/python-selinux-2.15.ebuild,v 1.4 2005/05/10 18:33:41 spb Exp $
-
-inherit python
-python_version
-
-DESCRIPTION="Python bindings for SELinux functions"
-HOMEPAGE="http://www.gentoo.org/proj/en/hardened/selinux/"
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="x86 ppc sparc amd64 mips"
-IUSE=""
-
-DEPEND="dev-lang/python
- sys-libs/libselinux"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- mkdir -p ${S}
- bzcat ${FILESDIR}/${P}.c.bz2 > ${S}/selinux.c || die
-}
-
-src_compile() {
- cd ${S}
- einfo "Compiling selinux.so for python ${PYVER}"
- gcc -fPIC -shared -o selinux.so -I /usr/include/python${PYVER}/ selinux.c -lselinux || die
-}
-
-src_install() {
- insinto /usr/lib/python${PYVER}/site-packages
- doins selinux.so
-}