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/pylibpcap: ChangeLog pylibpcap-0.6.2.ebuild
Date: Thu, 30 Dec 2010 21:37:28
Message-Id: 20101230213715.771F620054@flycatcher.gentoo.org
1 arfrever 10/12/30 21:37:15
2
3 Modified: ChangeLog pylibpcap-0.6.2.ebuild
4 Log:
5 Fix dependencies. Set SUPPORT_PYTHON_ABIS.
6
7 (Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 dev-python/pylibpcap/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 14 Oct 2008 03:56:38 -0000 1.19
23 +++ ChangeLog 30 Dec 2010 21:37:15 -0000 1.20
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/pylibpcap
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/ChangeLog,v 1.19 2008/10/14 03:56:38 neurogeek Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/ChangeLog,v 1.20 2010/12/30 21:37:15 arfrever Exp $
30 +
31 + 30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
32 + pylibpcap-0.6.2.ebuild:
33 + Fix dependencies. Set SUPPORT_PYTHON_ABIS.
34
35 *pylibpcap-0.6.2 (14 Oct 2008)
36
37
38
39
40 1.2 dev-python/pylibpcap/pylibpcap-0.6.2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild?r1=1.1&r2=1.2
45
46 Index: pylibpcap-0.6.2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- pylibpcap-0.6.2.ebuild 14 Oct 2008 03:56:38 -0000 1.1
53 +++ pylibpcap-0.6.2.ebuild 30 Dec 2010 21:37:15 -0000 1.2
54 @@ -1,6 +1,11 @@
55 -# Copyright 1999-2008 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild,v 1.1 2008/10/14 03:56:38 neurogeek Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylibpcap/pylibpcap-0.6.2.ebuild,v 1.2 2010/12/30 21:37:15 arfrever Exp $
60 +
61 +EAPI="3"
62 +PYTHON_DEPEND="2"
63 +SUPPORT_PYTHON_ABIS="1"
64 +RESTRICT_PYTHON_ABIS="3.* *-jython"
65
66 inherit distutils
67
68 @@ -17,10 +22,13 @@
69 DEPEND="${RDEPEND}
70 >=dev-lang/swig-1.3.34"
71
72 +PYTHON_MODNAME="pcap.py"
73 +
74 src_install() {
75 distutils_src_install
76 - if use examples ; then
77 +
78 + if use examples; then
79 insinto /usr/share/doc/${PF}
80 - doins -r examples
81 + doins -r examples || die "Installation of examples failed"
82 fi
83 }