* [gentoo-commits] gentoo-x86 commit in dev-python/celery/files: celery-3.0.1-fix-setuptools-import.patch
@ 2012-07-17 15:10 Corentin Chary (iksaif)
0 siblings, 0 replies; 2+ messages in thread
From: Corentin Chary (iksaif) @ 2012-07-17 15:10 UTC (permalink / raw
To: gentoo-commits
iksaif 12/07/17 15:10:59
Added: celery-3.0.1-fix-setuptools-import.patch
Log:
Bump to 2.5.5 and 3.0.1. Add examples and doc thanks to idella4.
Closes #425794 and #422661.
(Portage version: 2.1.11.7/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-python/celery/files/celery-3.0.1-fix-setuptools-import.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/celery/files/celery-3.0.1-fix-setuptools-import.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/celery/files/celery-3.0.1-fix-setuptools-import.patch?rev=1.1&content-type=text/plain
Index: celery-3.0.1-fix-setuptools-import.patch
===================================================================
--- setup.py.orig 2012-07-17 08:31:53.346133430 +0200
+++ setup.py 2012-07-17 08:32:08.296813785 +0200
@@ -8,6 +8,16 @@
raise Exception('Celery requires Python 2.5 or higher.')
try:
+ from setuptools import setup, find_packages
+ from setuptools.command.test import test
+except ImportError:
+ raise
+ from ez_setup import use_setuptools
+ use_setuptools()
+ from setuptools import setup, find_packages # noqa
+ from setuptools.command.test import test # noqa
+
+try:
orig_path = sys.path[:]
for path in (os.path.curdir, os.getcwd()):
if path in sys.path:
@@ -32,17 +42,6 @@
except:
pass
-
-try:
- from setuptools import setup, find_packages
- from setuptools.command.test import test
-except ImportError:
- raise
- from ez_setup import use_setuptools
- use_setuptools()
- from setuptools import setup, find_packages # noqa
- from setuptools.command.test import test # noqa
-
NAME = 'celery'
entrypoints = {}
extra = {}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/celery/files: celery-3.0.1-fix-setuptools-import.patch
@ 2012-07-29 19:57 Corentin Chary (iksaif)
0 siblings, 0 replies; 2+ messages in thread
From: Corentin Chary (iksaif) @ 2012-07-29 19:57 UTC (permalink / raw
To: gentoo-commits
iksaif 12/07/29 19:57:07
Removed: celery-3.0.1-fix-setuptools-import.patch
Log:
Bump to 3.0.4.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-29 19:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-29 19:57 [gentoo-commits] gentoo-x86 commit in dev-python/celery/files: celery-3.0.1-fix-setuptools-import.patch Corentin Chary (iksaif)
-- strict thread matches above, loose matches on Subject: below --
2012-07-17 15:10 Corentin Chary (iksaif)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox