diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-21 02:33:23 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-21 02:33:23 +0000 |
commit | 22739e497192bc5579471c36c6d6e50dcc077d38 (patch) | |
tree | b94849dad92459c0959d1374716adaee275d8f0d /dev-python/lockfile | |
parent | Change dependencies. (diff) | |
download | gentoo-2-22739e497192bc5579471c36c6d6e50dcc077d38.tar.gz gentoo-2-22739e497192bc5579471c36c6d6e50dcc077d38.tar.bz2 gentoo-2-22739e497192bc5579471c36c6d6e50dcc077d38.zip |
Initial addition (bug #289495).
(Portage version: 15123-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/lockfile')
-rw-r--r-- | dev-python/lockfile/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/lockfile/lockfile-0.8.ebuild | 33 | ||||
-rw-r--r-- | dev-python/lockfile/metadata.xml | 5 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/lockfile/ChangeLog b/dev-python/lockfile/ChangeLog new file mode 100644 index 000000000000..88153ebc6216 --- /dev/null +++ b/dev-python/lockfile/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/lockfile +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.1 2009/12/21 02:33:23 arfrever Exp $ + +*lockfile-0.8 (21 Dec 2009) + + 21 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +lockfile-0.8.ebuild, +metadata.xml: + Initial addition (bug #289495). + diff --git a/dev-python/lockfile/lockfile-0.8.ebuild b/dev-python/lockfile/lockfile-0.8.ebuild new file mode 100644 index 000000000000..7baa818a0fa8 --- /dev/null +++ b/dev-python/lockfile/lockfile-0.8.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.8.ebuild,v 1.1 2009/12/21 02:33:23 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Platform-independent file locking module" +HOMEPAGE="http://smontanaro.dyndns.org/python/ http://pypi.python.org/pypi/lockfile" +SRC_URI="http://smontanaro.dyndns.org/python/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" + +DEPEND="" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +DOCS="ACKS README RELEASE-NOTES" +PYTHON_MODNAME="lockfile.py" + +src_install() { + distutils_src_install + + if use doc; then + docinto doc + dodoc doc/* || die "Installation of documentation failed" + fi +} diff --git a/dev-python/lockfile/metadata.xml b/dev-python/lockfile/metadata.xml new file mode 100644 index 000000000000..301d2207cc29 --- /dev/null +++ b/dev-python/lockfile/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> +</pkgmetadata> |