Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/starcluster/files: starcluster-0.93.3-requires.patch
Date: Fri, 30 Nov 2012 08:28:33
Message-Id: 20121130082822.3AFCB20C65@flycatcher.gentoo.org
1 idella4 12/11/30 08:28:22
2
3 Modified: starcluster-0.93.3-requires.patch
4 Log:
5 Replacement -requires.patch, thanks to initial ebuild author J. T. Riley, fixes Bug #437912
6
7 (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/starcluster/files/starcluster-0.93.3-requires.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/starcluster/files/starcluster-0.93.3-requires.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/starcluster/files/starcluster-0.93.3-requires.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/starcluster/files/starcluster-0.93.3-requires.patch?r1=1.1&r2=1.2
15
16 Index: starcluster-0.93.3-requires.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/starcluster/files/starcluster-0.93.3-requires.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- starcluster-0.93.3-requires.patch 13 Nov 2012 07:15:21 -0000 1.1
23 +++ starcluster-0.93.3-requires.patch 30 Nov 2012 08:28:22 -0000 1.2
24 @@ -1,14 +1,19 @@
25 -diff -ur StarCluster-0.93.3.orig/StarCluster.egg-info/requires.txt StarCluster-0.93.3/StarCluster.egg-info/requires.txt
26 ---- StarCluster.egg-info/requires.txt 2012-03-21 10:02:45.000000000 +0800
27 -+++ StarCluster.egg-info/requires.txt 2012-11-14 06:57:29.319441881 +0800
28 -@@ -1,6 +1,6 @@
29 --ssh==1.7.13
30 --boto==2.3.0
31 -+ssh>=1.7.13
32 -+boto>=2.3.0
33 - workerpool==0.9.2
34 - Jinja2==2.6
35 - decorator==3.3.1
36 --pyasn1==0.0.13b
37 -\ No newline at end of file
38 -+pyasn1>=0.0.13b
39 +Patch by JT Riley, Bug #437912
40 +diff --git a/setup.py b/setup.py
41 +index 241b7ce..3c52c68 100644
42 +--- a/setup.py
43 ++++ b/setup.py
44 +@@ -12,9 +12,9 @@ try:
45 + console_scripts = ['starcluster = starcluster.cli:main']
46 + extra = dict(test_suite="starcluster.tests",
47 + tests_require="nose",
48 +- install_requires=["ssh==1.7.13", "boto==2.3.0",
49 +- "workerpool==0.9.2", "Jinja2==2.6",
50 +- "decorator==3.3.1", "pyasn1==0.0.13b"],
51 ++ install_requires=["ssh>=1.7.13", "boto>=2.3.0",
52 ++ "workerpool>=0.9.2", "Jinja2>=2.6",
53 ++ "decorator>=3.3.1", "pyasn1>=0.0.13b"],
54 + include_package_data=True,
55 + entry_points=dict(console_scripts=console_scripts),
56 + zip_safe=False)
57 +