[Python-modules-commits] r21548 - in packages/requests/trunk/debian (2 files)
eriol-guest at users.alioth.debian.org
eriol-guest at users.alioth.debian.org
Fri May 4 12:35:28 UTC 2012
Date: Friday, May 4, 2012 @ 12:35:25
Author: eriol-guest
Revision: 21548
Refreshed debian/patches/01_do-not-use-python-certifi.patch
Modified:
packages/requests/trunk/debian/changelog
packages/requests/trunk/debian/patches/01_do-not-use-python-certifi.patch
Modified: packages/requests/trunk/debian/changelog
===================================================================
--- packages/requests/trunk/debian/changelog 2012-05-04 12:33:33 UTC (rev 21547)
+++ packages/requests/trunk/debian/changelog 2012-05-04 12:35:25 UTC (rev 21548)
@@ -1,8 +1,10 @@
requests (0.12.0-1) unstable; urgency=low
* New upstream release
+ * debian/patches/01_do-not-use-python-certifi.patch
+ - Refreshed
- -- Daniele Tricoli <eriol at mornie.org> Fri, 04 May 2012 13:09:09 +0200
+ -- Daniele Tricoli <eriol at mornie.org> Fri, 04 May 2012 14:34:47 +0200
requests (0.11.2-1) unstable; urgency=low
Modified: packages/requests/trunk/debian/patches/01_do-not-use-python-certifi.patch
===================================================================
--- packages/requests/trunk/debian/patches/01_do-not-use-python-certifi.patch 2012-05-04 12:33:33 UTC (rev 21547)
+++ packages/requests/trunk/debian/patches/01_do-not-use-python-certifi.patch 2012-05-04 12:35:25 UTC (rev 21548)
@@ -1,18 +1,17 @@
Description: To verify SSL certificates for HTTPS requests, use the bundle
- provided by ca-certificates instead of python-certifi. Since requests 0.11.2
- it is not needed to hard-code bundle path because requests will search for it.
+ provided by ca-certificates instead of python-certifi.
Author: Daniele Tricoli <eriol at mornie.org>
Forwarded: not-needed
-Last-Update: 2012-04-23
+Last-Update: 2012-05-04
--- a/setup.py
+++ b/setup.py
-@@ -21,7 +21,7 @@
- os.system('python tests/test_requests.py')
- sys.exit()
+@@ -32,7 +32,7 @@
+ # On certain supported platforms (e.g., Red Hat / Debian / FreeBSD), Requests can
+ # use the system CA bundle instead; see `requests.utils` for details.
+ # If your platform is supported, set `requires` to [] instead:
+-requires = ['certifi>=0.0.7']
++requires = []
--required = ['certifi>=0.0.7',]
-+required = []
- packages = [
- 'requests',
- 'requests.packages',
+ # chardet is used to optimally guess the encodings of pages that don't declare one.
+ # At this time, chardet is not a required dependency. However, it's sufficiently
More information about the Python-modules-commits
mailing list