[Python-modules-commits] r29526 - in packages/python-pyramid/trunk/debian (7 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Thu Jun 26 21:59:36 UTC 2014


    Date: Thursday, June 26, 2014 @ 21:59:35
  Author: barry
Revision: 29526

* d/pydist-overrides: Fix requirement satisfaction for WebOb and WebTest.
* d/patches/tweak-requirements.patch: Added to disable attempts to
  install test requirements from PyPI at build time.

Added:
  packages/python-pyramid/trunk/debian/patches/
  packages/python-pyramid/trunk/debian/patches/series
  packages/python-pyramid/trunk/debian/patches/tweak-requirements.patch
  packages/python-pyramid/trunk/debian/py3dist-overrides
  packages/python-pyramid/trunk/debian/pydist-overrides
Modified:
  packages/python-pyramid/trunk/debian/changelog
  packages/python-pyramid/trunk/debian/control

Modified: packages/python-pyramid/trunk/debian/changelog
===================================================================
--- packages/python-pyramid/trunk/debian/changelog	2014-06-26 18:39:58 UTC (rev 29525)
+++ packages/python-pyramid/trunk/debian/changelog	2014-06-26 21:59:35 UTC (rev 29526)
@@ -15,6 +15,9 @@
     prune non-free docs directory.
   * d/watch: Add filenamemangle rule so that a proper +dfsg.orig.tar.gz
     file will be generated, keeping svn-buildpackage happy.
+  * d/pydist-overrides: Fix requirement satisfaction for WebOb and WebTest.
+  * d/patches/tweak-requirements.patch: Added to disable attempts to
+    install test requirements from PyPI at build time.
 
  -- Barry Warsaw <barry at debian.org>  Thu, 19 Jun 2014 15:49:59 -0400
 
@@ -29,7 +32,7 @@
   [ TANIGUCHI Takaki ]
   * New upstream release
   * Bump Standards-Version to 3.9.4.
-    + debian/copyright: Update copyright-format 1.0. 
+    + debian/copyright: Update copyright-format 1.0.
   * debian/source/options: Ignore egg-file changes. (Closes: #671195)
   * New upstream release
 

Modified: packages/python-pyramid/trunk/debian/control
===================================================================
--- packages/python-pyramid/trunk/debian/control	2014-06-26 18:39:58 UTC (rev 29525)
+++ packages/python-pyramid/trunk/debian/control	2014-06-26 21:59:35 UTC (rev 29526)
@@ -12,6 +12,7 @@
                python-translationstring,
                python-venusian,
                python-webob,
+               python-webtest,
                python-zope.component,
                python-zope.deprecation,
                python-zope.interface,
@@ -22,9 +23,10 @@
                python3-translationstring,
                python3-venusian,
                python3-webob,
+               python3-webtest,
                python3-zope.component,
                python3-zope.deprecation,
-               python3-zope.interface,
+               python3-zope.interface
 Standards-Version: 3.9.5
 Homepage: http://docs.pylonshq.com/
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-pyramid/trunk/

Added: packages/python-pyramid/trunk/debian/patches/series
===================================================================
--- packages/python-pyramid/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-pyramid/trunk/debian/patches/series	2014-06-26 21:59:35 UTC (rev 29526)
@@ -0,0 +1 @@
+tweak-requirements.patch

Added: packages/python-pyramid/trunk/debian/patches/tweak-requirements.patch
===================================================================
--- packages/python-pyramid/trunk/debian/patches/tweak-requirements.patch	                        (rev 0)
+++ packages/python-pyramid/trunk/debian/patches/tweak-requirements.patch	2014-06-26 21:59:35 UTC (rev 29526)
@@ -0,0 +1,26 @@
+Description: Comment out some requirements that can't be satisfied
+ automatically from installed packages or debian/py{,3}dist-override files.
+ It's okay because our Build-Depends will take care of it.
+Author: Barry Warsaw <barry at debian.org>
+Forwarded: not-needed
+
+--- a/setup.py
++++ b/setup.py
+@@ -39,7 +39,7 @@
+ 
+ install_requires=[
+     'setuptools',
+-    'WebOb >= 1.3.1', # request.domain and CookieProfile
++    #'WebOb >= 1.3.1', # request.domain and CookieProfile
+     'repoze.lru >= 0.4', # py3 compat
+     'zope.interface >= 3.8.0',  # has zope.interface.registry
+     'zope.deprecation >= 3.5.0', # py3 compat
+@@ -49,7 +49,7 @@
+     ]
+ 
+ tests_require = [
+-    'WebTest >= 1.3.1', # py3 compat
++    #'WebTest >= 1.3.1', # py3 compat
+     ]
+ 
+ if not PY3:

Added: packages/python-pyramid/trunk/debian/py3dist-overrides
===================================================================
--- packages/python-pyramid/trunk/debian/py3dist-overrides	                        (rev 0)
+++ packages/python-pyramid/trunk/debian/py3dist-overrides	2014-06-26 21:59:35 UTC (rev 29526)
@@ -0,0 +1,2 @@
+WebOb python3-webob
+WebTest python3-webtest

Added: packages/python-pyramid/trunk/debian/pydist-overrides
===================================================================
--- packages/python-pyramid/trunk/debian/pydist-overrides	                        (rev 0)
+++ packages/python-pyramid/trunk/debian/pydist-overrides	2014-06-26 21:59:35 UTC (rev 29526)
@@ -0,0 +1,2 @@
+WebOb python-webob
+WebTest python-webtest




More information about the Python-modules-commits mailing list