Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/dpkt: dpkt-1.8.ebuild ChangeLog
Date: Mon, 03 Jun 2013 06:02:47
Message-Id: 20130603060241.A61292171D@flycatcher.gentoo.org
1 patrick 13/06/03 06:02:41
2
3 Modified: ChangeLog
4 Added: dpkt-1.8.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.5 dev-python/dpkt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dpkt/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dpkt/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dpkt/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/dpkt/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 1 Jul 2010 01:35:31 -0000 1.4
24 +++ ChangeLog 3 Jun 2013 06:02:41 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/dpkt
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dpkt/ChangeLog,v 1.4 2010/07/01 01:35:31 arfrever Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dpkt/ChangeLog,v 1.5 2013/06/03 06:02:41 patrick Exp $
31 +
32 +*dpkt-1.8 (03 Jun 2013)
33 +
34 + 03 Jun 2013; Patrick Lauer <patrick@g.o> +dpkt-1.8.ebuild:
35 + Bump
36
37 *dpkt-1.7 (01 Jul 2010)
38
39 @@ -18,4 +23,3 @@
40 06 Feb 2007; Tiziano Müller <dev-zero@g.o> +dpkt-1.6.ebuild,
41 +metadata.xml:
42 New ebuild for bug #165530 (thanks to Santiago M. Mola Velasco).
43 -
44
45
46
47 1.1 dev-python/dpkt/dpkt-1.8.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dpkt/dpkt-1.8.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dpkt/dpkt-1.8.ebuild?rev=1.1&content-type=text/plain
51
52 Index: dpkt-1.8.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/dpkt/dpkt-1.8.ebuild,v 1.1 2013/06/03 06:02:41 patrick Exp $
57
58 EAPI="3"
59 PYTHON_DEPEND="2"
60 SUPPORT_PYTHON_ABIS="1"
61 RESTRICT_PYTHON_ABIS="3.*"
62
63 inherit distutils
64
65 DESCRIPTION="Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols."
66 HOMEPAGE="http://code.google.com/p/dpkt/"
67 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
68
69 LICENSE="BSD"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="examples"
73
74 DEPEND=""
75 RDEPEND=""
76
77 DOCS="AUTHORS CHANGES HACKING"
78
79 src_test() {
80 testing() {
81 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/test-perf2.py
82 }
83 python_execute_function testing
84 }
85
86 src_install() {
87 distutils_src_install
88
89 if use examples; then
90 insinto /usr/share/doc/${PF}
91 doins -r examples
92 fi
93 }