Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyinotify: ChangeLog pyinotify-0.8.8.ebuild
Date: Tue, 03 Nov 2009 00:59:20
Message-Id: E1N57jx-0000zS-Kl@stork.gentoo.org
1 arfrever 09/11/03 00:59:17
2
3 Modified: ChangeLog
4 Added: pyinotify-0.8.8.ebuild
5 Log:
6 Version bump. Set SUPPORT_PYTHON_ABIS.
7 (Portage version: 14774-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 dev-python/pyinotify/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 4 Sep 2009 20:18:13 -0000 1.15
23 +++ ChangeLog 3 Nov 2009 00:59:17 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/pyinotify
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.15 2009/09/04 20:18:13 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.16 2009/11/03 00:59:17 arfrever Exp $
29 +
30 +*pyinotify-0.8.8 (03 Nov 2009)
31 +
32 + 03 Nov 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +pyinotify-0.8.8.ebuild:
34 + Version bump. Set SUPPORT_PYTHON_ABIS.
35
36 04 Sep 2009; Patrick Lauer <patrick@g.o> -pyinotify-0.6.3.ebuild,
37 -pyinotify-0.7.0.ebuild:
38
39
40
41 1.1 dev-python/pyinotify/pyinotify-0.8.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyinotify-0.8.8.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.8.ebuild,v 1.1 2009/11/03 00:59:17 arfrever Exp $
51
52 EAPI="2"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
56
57 DESCRIPTION="Python module used for monitoring filesystems events"
58 HOMEPAGE="http://trac.dbzteam.org/pyinotify http://pypi.python.org/pypi/pyinotify"
59 SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE="doc examples"
65
66 DEPEND=""
67 RDEPEND=""
68 RESTRICT_PYTHON_ABIS="3.*"
69
70 S="${WORKDIR}/${PN}"
71
72 PYTHON_MODNAME="pyinotify.py"
73 DOCS="NEWS TODO"
74
75 src_install() {
76 distutils_src_install
77
78 if use doc; then
79 dohtml docstrings/* || die "dohtml failed"
80 fi
81
82 if use examples; then
83 insinto /usr/share/doc/${PF}
84 doins examples/* || die "doins failed"
85 fi
86 }