diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-17 20:25:48 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-17 20:25:48 +0000 |
commit | c4c96c477177da6661a0e568eeb95d2d67c81510 (patch) | |
tree | 00b909975c1a4931cc7cd2a6f348a89df37c3e6a /dev-python | |
parent | Fix python eclass usage, per Arfrever comments, bug #326101. (diff) | |
download | gentoo-2-c4c96c477177da6661a0e568eeb95d2d67c81510.tar.gz gentoo-2-c4c96c477177da6661a0e568eeb95d2d67c81510.tar.bz2 gentoo-2-c4c96c477177da6661a0e568eeb95d2d67c81510.zip |
Version bump.
(Portage version: 2.2_rc97_p2/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pyinotify/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pyinotify/pyinotify-0.9.1.ebuild | 35 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-python/pyinotify/ChangeLog b/dev-python/pyinotify/ChangeLog index 1281e38b5057..c24a9cd9367f 100644 --- a/dev-python/pyinotify/ChangeLog +++ b/dev-python/pyinotify/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pyinotify # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.31 2010/09/28 21:53:15 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.32 2010/10/17 20:25:48 arfrever Exp $ + +*pyinotify-0.9.1 (17 Oct 2010) + + 17 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pyinotify-0.9.1.ebuild: + Version bump. 28 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> -pyinotify-0.8.9.ebuild: diff --git a/dev-python/pyinotify/pyinotify-0.9.1.ebuild b/dev-python/pyinotify/pyinotify-0.9.1.ebuild new file mode 100644 index 000000000000..4a3455190b61 --- /dev/null +++ b/dev-python/pyinotify/pyinotify-0.9.1.ebuild @@ -0,0 +1,35 @@ +# 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.1.ebuild,v 1.1 2010/10/17 20:25:48 arfrever 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="examples" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${PN}" + +PYTHON_MODNAME="pyinotify.py" + +src_install() { + distutils_src_install + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins python2/examples/* || die "doins failed" + fi +} |