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.9.ebuild
Date: Thu, 07 Jan 2010 19:09:31
Message-Id: E1NSxjc-00040Z-VB@stork.gentoo.org
1 arfrever 10/01/07 19:09:28
2
3 Modified: ChangeLog
4 Added: pyinotify-0.8.9.ebuild
5 Log:
6 Version bump.
7 (Portage version: 15172-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 dev-python/pyinotify/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 16 Dec 2009 21:10:12 -0000 1.19
23 +++ ChangeLog 7 Jan 2010 19:09:28 -0000 1.20
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.19 2009/12/16 21:10:12 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/ChangeLog,v 1.20 2010/01/07 19:09:28 arfrever Exp $
30 +
31 +*pyinotify-0.8.9 (07 Jan 2010)
32 +
33 + 07 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +pyinotify-0.8.9.ebuild:
35 + Version bump.
36
37 16 Dec 2009; Markus Meier <maekke@g.o> pyinotify-0.8.8.ebuild:
38 amd64/x86 stable, bug #295699
39
40
41
42 1.1 dev-python/pyinotify/pyinotify-0.8.9.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyinotify-0.8.9.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinotify/pyinotify-0.8.9.ebuild,v 1.1 2010/01/07 19:09:28 arfrever Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 DESCRIPTION="Python module used for monitoring filesystems events"
59 HOMEPAGE="http://trac.dbzteam.org/pyinotify http://pypi.python.org/pypi/pyinotify"
60 SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
65 IUSE="doc examples"
66
67 DEPEND=""
68 RDEPEND=""
69
70 S="${WORKDIR}/${PN}"
71
72 PYTHON_MODNAME="pyinotify.py"
73
74 src_install() {
75 distutils_src_install
76
77 if use doc; then
78 docinto html/python2
79 dohtml python2/docstrings/* || die "dohtml failed"
80 docinto html/python3
81 dohtml python3/docstrings/* || die "dohtml failed"
82 fi
83
84 if use examples; then
85 insinto /usr/share/doc/${PF}/examples
86 doins python2/examples/* || die "doins failed"
87 fi
88 }