Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/fusil: fusil-1.4.ebuild ChangeLog
Date: Fri, 29 Jul 2011 22:28:15
Message-Id: 20110729222805.A62FD2004B@flycatcher.gentoo.org
1 bicatali 11/07/29 22:28:05
2
3 Modified: ChangeLog
4 Added: fusil-1.4.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 dev-python/fusil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 30 Jun 2010 00:03:15 -0000 1.6
24 +++ ChangeLog 29 Jul 2011 22:28:05 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/fusil
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v 1.6 2010/06/30 00:03:15 arfrever Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/ChangeLog,v 1.7 2011/07/29 22:28:05 bicatali Exp $
31 +
32 +*fusil-1.4 (29 Jul 2011)
33 +
34 + 29 Jul 2011; Sébastien Fabbro <bicatali@g.o>
35 + +files/1.4-python25.patch, +fusil-1.4.ebuild:
36 + Version bump
37
38 30 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
39 fusil-1.3.2.ebuild:
40
41
42
43 1.1 dev-python/fusil/fusil-1.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/fusil-1.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fusil/fusil-1.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: fusil-1.4.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/fusil/fusil-1.4.ebuild,v 1.1 2011/07/29 22:28:05 bicatali Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="*:2.5"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="2.4"
58
59 inherit distutils eutils
60
61 DESCRIPTION="Fusil the fuzzer is a Python library used to write fuzzing programs."
62 HOMEPAGE="http://bitbucket.org/haypo/fusil/wiki/Home http://pypi.python.org/pypi/fusil"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc examples"
69
70 DEPEND=">=dev-python/python-ptrace-0.6"
71 RDEPEND="${DEPEND}"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PV}-python25.patch
75 }
76
77 src_compile() {
78 distutils_src_compile
79 if use doc; then
80 cd doc
81 emake RST2HTML="rst2html.py" || die "Generation of documentation failed"
82 fi
83 }
84
85 src_install(){
86 distutils_src_install
87 if use doc; then
88 dohtml doc/*
89 fi
90 if use examples; then
91 insinto /usr/share/doc/${PF}
92 doins -r examples
93 fi
94 }
95
96 pkg_postinst() {
97 distutils_pkg_postinst
98 enewgroup fusil
99 enewuser fusil -1 -1 -1 "fusil"
100 }