Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/paramiko: ChangeLog paramiko-1.7.2.ebuild
Date: Thu, 31 Jan 2008 15:30:46
Message-Id: E1JKbN3-0004yY-CH@stork.gentoo.org
1 hawking 08/01/31 15:30:33
2
3 Modified: ChangeLog
4 Added: paramiko-1.7.2.ebuild
5 Log:
6 Version bump. Use distutils_src_unpack. Added patch to fix the tests. Run tests with --verbose because it takes quite a bit of time.
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.27 dev-python/paramiko/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paramiko/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paramiko/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paramiko/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/paramiko/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 12 Apr 2007 17:35:05 -0000 1.26
23 +++ ChangeLog 31 Jan 2008 15:30:32 -0000 1.27
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-python/paramiko
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/ChangeLog,v 1.26 2007/04/12 17:35:05 welp Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/ChangeLog,v 1.27 2008/01/31 15:30:32 hawking Exp $
30 +
31 +*paramiko-1.7.2 (31 Jan 2008)
32 +
33 + 31 Jan 2008; Ali Polatel <hawking@g.o>
34 + +files/paramiko-1.7.2-tests_cleanup.patch, +paramiko-1.7.2.ebuild:
35 + Version bump. Use distutils_src_unpack. Added patch to fix the tests. Run
36 + tests with --verbose because it takes quite a bit of time.
37
38 12 Apr 2007; <welp@g.o> paramiko-1.6.3.ebuild:
39 Stable on amd64
40
41
42
43 1.1 dev-python/paramiko/paramiko-1.7.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paramiko/paramiko-1.7.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/paramiko/paramiko-1.7.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: paramiko-1.7.2.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/paramiko-1.7.2.ebuild,v 1.1 2008/01/31 15:30:32 hawking Exp $
53
54 NEED_PYTHON=2.3
55
56 inherit distutils eutils
57
58 DESCRIPTION="SSH2 implementation for Python"
59 HOMEPAGE="http://www.lag.net/paramiko/"
60 SRC_URI="http://www.lag.net/paramiko/download/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
65 IUSE="doc examples"
66
67 RDEPEND=">=dev-python/pycrypto-1.9_alpha6"
68 DEPEND="${RDEPEND}"
69
70 src_unpack() {
71 distutils_src_unpack
72
73 epatch "${FILESDIR}"/${PN}-1.6.3-no-setuptools.patch
74 epatch "${FILESDIR}"/${P}-tests_cleanup.patch
75 }
76
77 src_install() {
78 distutils_src_install
79
80 use doc && dohtml -r docs/*
81
82 if use examples; then
83 insinto /usr/share/doc/${PF}
84 doins -r demos
85 fi
86 }
87
88 src_test() {
89 "${python}" test.py --verbose || die "tests failed"
90 }
91
92
93
94 --
95 gentoo-commits@l.g.o mailing list