summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris PeBenito <pebenito@gentoo.org>2005-03-19 00:15:03 +0000
committerChris PeBenito <pebenito@gentoo.org>2005-03-19 00:15:03 +0000
commit0ab53ae1e55c50079aa5704b547fe93ece5bf225 (patch)
treecbfb911c3a63f0503468c09884280dce7d9a7685 /dev-python/python-selinux
parentinitial import #84751 (diff)
downloadgentoo-2-0ab53ae1e55c50079aa5704b547fe93ece5bf225.tar.gz
gentoo-2-0ab53ae1e55c50079aa5704b547fe93ece5bf225.tar.bz2
gentoo-2-0ab53ae1e55c50079aa5704b547fe93ece5bf225.zip
rm old
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-python/python-selinux')
-rw-r--r--dev-python/python-selinux/files/digest-python-selinux-2.140
-rw-r--r--dev-python/python-selinux/files/python-selinux-2.14.c.bz2bin5879 -> 0 bytes
-rw-r--r--dev-python/python-selinux/python-selinux-2.14.ebuild35
3 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/python-selinux/files/digest-python-selinux-2.14 b/dev-python/python-selinux/files/digest-python-selinux-2.14
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/dev-python/python-selinux/files/digest-python-selinux-2.14
+++ /dev/null
diff --git a/dev-python/python-selinux/files/python-selinux-2.14.c.bz2 b/dev-python/python-selinux/files/python-selinux-2.14.c.bz2
deleted file mode 100644
index c5b2ce1a1f09..000000000000
--- a/dev-python/python-selinux/files/python-selinux-2.14.c.bz2
+++ /dev/null
Binary files differ
diff --git a/dev-python/python-selinux/python-selinux-2.14.ebuild b/dev-python/python-selinux/python-selinux-2.14.ebuild
deleted file mode 100644
index 52745a839025..000000000000
--- a/dev-python/python-selinux/python-selinux-2.14.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2004 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.14.ebuild,v 1.5 2004/09/20 21:17:36 pebenito 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"
-IUSE=""
-
-DEPEND="dev-lang/python
- sys-libs/libselinux"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- mkdir -p ${S}
- bzcat ${FILESDIR}/${P}.c.bz2 > ${S}/selinux.c
-}
-
-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
-}