diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-11-29 06:31:51 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-11-29 06:31:51 +0000 |
commit | c2166430ed7663410e3c60adad84c299dea27dab (patch) | |
tree | 3648d0a9bdc1e1e2ab9ff43b71b6f169ea21639e /dev-python/pyinotify | |
parent | Bump (diff) | |
download | gentoo-2-c2166430ed7663410e3c60adad84c299dea27dab.tar.gz gentoo-2-c2166430ed7663410e3c60adad84c299dea27dab.tar.bz2 gentoo-2-c2166430ed7663410e3c60adad84c299dea27dab.zip |
Bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/pyinotify')
-rw-r--r-- | dev-python/pyinotify/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pyinotify/pyinotify-0.9.4.ebuild | 33 |
2 files changed, 39 insertions, 2 deletions
diff --git a/dev-python/pyinotify/ChangeLog b/dev-python/pyinotify/ChangeLog index 2ecb70e2c41c..6678eb5e9a8a 100644 --- a/dev-python/pyinotify/ChangeLog +++ b/dev-python/pyinotify/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyinotify # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.47 2012/02/07 23:09:38 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.48 2012/11/29 06:31:51 patrick Exp $ + +*pyinotify-0.9.4 (29 Nov 2012) + + 29 Nov 2012; Patrick Lauer <patrick@gentoo.org> +pyinotify-0.9.4.ebuild: + Bump 07 Feb 2012; Mike Gilbert <floppym@gentoo.org> pyinotify-0.9.2.ebuild, pyinotify-0.9.3.ebuild: @@ -175,4 +180,3 @@ +pyinotify-0.6.3.ebuild: Initial import, bug 125960. Slightly updated ebuild from Panard <panard.inzenet.org> - diff --git a/dev-python/pyinotify/pyinotify-0.9.4.ebuild b/dev-python/pyinotify/pyinotify-0.9.4.ebuild new file mode 100644 index 000000000000..9eb1a9b20dd3 --- /dev/null +++ b/dev-python/pyinotify/pyinotify-0.9.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.9.4.ebuild,v 1.1 2012/11/29 06:31:51 patrick Exp $ + +EAPI="3" +PYTHON_DEPEND="*:2.5" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 *-jython" + +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="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +DEPEND="dev-python/setuptools" +RDEPEND="" + +PYTHON_MODNAME="pyinotify.py" + +src_install() { + distutils_src_install + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins python2/examples/* || die "Installation of examples failed" + fi +} |