summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-25 15:17:10 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-25 15:17:10 +0000
commit933607ba2ecfcc051a43be47bc88b00ea4dc110b (patch)
treee72dd1a56b3ad7cfe3a4e0c75287d338eeba449e /dev-python/lockfile
parentTeXLive upstream changed repository URL because of Release of TeXLive 2010, f... (diff)
downloadgentoo-2-933607ba2ecfcc051a43be47bc88b00ea4dc110b.tar.gz
gentoo-2-933607ba2ecfcc051a43be47bc88b00ea4dc110b.tar.bz2
gentoo-2-933607ba2ecfcc051a43be47bc88b00ea4dc110b.zip
Delete older ebuild.
(Portage version: 2.2.0_alpha1_p12/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/lockfile')
-rw-r--r--dev-python/lockfile/ChangeLog6
-rw-r--r--dev-python/lockfile/lockfile-0.9.ebuild44
2 files changed, 5 insertions, 45 deletions
diff --git a/dev-python/lockfile/ChangeLog b/dev-python/lockfile/ChangeLog
index c35fbeb929d6..d41e68e7b7e4 100644
--- a/dev-python/lockfile/ChangeLog
+++ b/dev-python/lockfile/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/lockfile
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.9 2010/10/25 12:10:06 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.10 2010/10/25 15:17:10 arfrever Exp $
+
+ 25 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -lockfile-0.9.ebuild:
+ Delete.
25 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
lockfile-0.9.1.ebuild:
diff --git a/dev-python/lockfile/lockfile-0.9.ebuild b/dev-python/lockfile/lockfile-0.9.ebuild
deleted file mode 100644
index df8cfa7769c5..000000000000
--- a/dev-python/lockfile/lockfile-0.9.ebuild
+++ /dev/null
@@ -1,44 +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/lockfile/lockfile-0.9.ebuild,v 1.3 2010/06/28 08:45:42 phajdan.jr Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2:2.5"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Platform-independent file locking module"
-HOMEPAGE="http://code.google.com/p/pylockfile/ http://pypi.python.org/pypi/lockfile http://smontanaro.dyndns.org/python/"
-SRC_URI="http://smontanaro.dyndns.org/python/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-DEPEND="doc? ( dev-python/sphinx )"
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="2.4 3.*"
-
-DOCS="ACKS README RELEASE-NOTES"
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- cd doc
- einfo "Generation of documentation"
- emake html || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- cd doc/.build/html
- docinto html
- cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
- fi
-}