summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-12 18:36:10 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-12 18:36:10 +0000
commit715d536c3174c94ccdeb4193aa259d51076bfeb8 (patch)
treec58422a0e2e056dde6d964302c631cb573f721de /dev-python
parentsparc stable wrt #350709 (diff)
downloadgentoo-2-715d536c3174c94ccdeb4193aa259d51076bfeb8.tar.gz
gentoo-2-715d536c3174c94ccdeb4193aa259d51076bfeb8.tar.bz2
gentoo-2-715d536c3174c94ccdeb4193aa259d51076bfeb8.zip
Delete older ebuild.
(Portage version: 2.2.0_alpha23_p3/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyinotify/ChangeLog6
-rw-r--r--dev-python/pyinotify/pyinotify-0.9.0.ebuild42
2 files changed, 5 insertions, 43 deletions
diff --git a/dev-python/pyinotify/ChangeLog b/dev-python/pyinotify/ChangeLog
index 1ae66d5eb16a..4ca0908d7e85 100644
--- a/dev-python/pyinotify/ChangeLog
+++ b/dev-python/pyinotify/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/pyinotify
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.36 2011/02/12 18:23:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.37 2011/02/12 18:36:10 arfrever Exp $
+
+ 12 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -pyinotify-0.9.0.ebuild:
+ Delete.
12 Feb 2011; Raúl Porcel <armin76@gentoo.org> pyinotify-0.9.1.ebuild:
sparc stable wrt #345497
diff --git a/dev-python/pyinotify/pyinotify-0.9.0.ebuild b/dev-python/pyinotify/pyinotify-0.9.0.ebuild
deleted file mode 100644
index d5c7f64932b0..000000000000
--- a/dev-python/pyinotify/pyinotify-0.9.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.9.0.ebuild,v 1.4 2010/09/28 16:01:08 ranger Exp $
-
-EAPI="3"
-PYTHON_DEPEND="*:2.5"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4"
-
-inherit distutils
-
-DESCRIPTION="Python module used for monitoring filesystems events"
-HOMEPAGE="http://trac.dbzteam.org/pyinotify http://pypi.python.org/pypi/pyinotify"
-SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~amd64-linux"
-IUSE="doc examples"
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/${PN}"
-
-PYTHON_MODNAME="pyinotify.py"
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- docinto html/python2
- dohtml python2/docstrings/* || die "dohtml failed"
- docinto html/python3
- dohtml python3/docstrings/* || die "dohtml failed"
- fi
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins python2/examples/* || die "doins failed"
- fi
-}