summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-01-07 19:08:04 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-01-07 19:08:04 +0000
commitf7591a541b20178d652570dfd8fa9af44795f001 (patch)
tree00e9fa49c5374c45a0f76aaf9f6e495cc7f847b3 /dev-python
parentMarking mpgtx-1.3.1-r1 ppc for bug 298661 (diff)
downloadhistorical-f7591a541b20178d652570dfd8fa9af44795f001.tar.gz
historical-f7591a541b20178d652570dfd8fa9af44795f001.tar.bz2
historical-f7591a541b20178d652570dfd8fa9af44795f001.zip
Delete older ebuilds.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyinotify/files/pyinotify-0.8.6-libc-fix.patch21
-rw-r--r--dev-python/pyinotify/pyinotify-0.7.1.ebuild30
-rw-r--r--dev-python/pyinotify/pyinotify-0.8.6.ebuild39
3 files changed, 0 insertions, 90 deletions
diff --git a/dev-python/pyinotify/files/pyinotify-0.8.6-libc-fix.patch b/dev-python/pyinotify/files/pyinotify-0.8.6-libc-fix.patch
deleted file mode 100644
index c2ac651082c6..000000000000
--- a/dev-python/pyinotify/files/pyinotify-0.8.6-libc-fix.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Common subdirectories: pyinotify.orig/docstrings and pyinotify/docstrings
-diff -Nut pyinotify.orig/pyinotify.py pyinotify/pyinotify.py
---- pyinotify.orig/pyinotify.py 2009-06-15 18:41:58.490312591 +0200
-+++ pyinotify/pyinotify.py 2009-06-15 18:42:31.990187432 +0200
-@@ -95,15 +95,6 @@
- # load libc
- LIBC = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
-
--# the libc version check.
--# XXX: Maybe it is better to check if the libc has the needed functions inside?
--# Because there are inotify patches for libc 2.3.6.
--LIBC.gnu_get_libc_version.restype = ctypes.c_char_p
--LIBC_VERSION = LIBC.gnu_get_libc_version()
--if LIBC_VERSION < '2.4':
-- raise UnsupportedLibcVersionError(LIBC_VERSION)
--
--
- # logging
- log = logging.getLogger("pyinotify")
- console_handler = logging.StreamHandler()
-
diff --git a/dev-python/pyinotify/pyinotify-0.7.1.ebuild b/dev-python/pyinotify/pyinotify-0.7.1.ebuild
deleted file mode 100644
index 9322b3b5ae20..000000000000
--- a/dev-python/pyinotify/pyinotify-0.7.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.7.1.ebuild,v 1.6 2009/04/14 09:44:50 armin76 Exp $
-
-NEED_PYTHON="2.3"
-
-inherit distutils
-
-DESCRIPTION="Python wrapper for inotify"
-HOMEPAGE="http://pyinotify.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="doc examples"
-
-src_install() {
- DOCS="AUTHORS NEWS"
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r src/examples
- fi
-
- if use doc; then
- dohtml -r doc/*
- fi
-}
diff --git a/dev-python/pyinotify/pyinotify-0.8.6.ebuild b/dev-python/pyinotify/pyinotify-0.8.6.ebuild
deleted file mode 100644
index c75840a373df..000000000000
--- a/dev-python/pyinotify/pyinotify-0.8.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.6.ebuild,v 1.2 2009/06/16 07:50:00 mr_bones_ Exp $
-
-NEED_PYTHON="2.4"
-
-inherit distutils
-
-S="${WORKDIR}/${PN}"
-
-DESCRIPTION="Python wrapper for inotify"
-HOMEPAGE="http://trac.dbzteam.org/pyinotify"
-SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="doc examples"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-libc-fix.patch
-}
-
-src_install() {
- cd python
- DOCS="NEWS"
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r src/examples
- fi
-
- if use doc; then
- dohtml -r doc/*
- fi
-}