* New upstream release.
* Fixed (build-)depends for this release.
+ * Rebased and updated patches.
-- Thomas Goirand <zigo@debian.org> Sun, 02 Aug 2015 11:22:32 +0200
-Description: Allow routes 2.0
- Upstream is rejecting Routes 2.0 because the archive on PyPi is broken,
- however, the Debian package for Routes 2.0 is perfectly fine. So we remove
- the restriction.
+Description: Allow Routes == 2.0
+ The Debian package for Routes 2.0 is perfectly valid, as it contains patches.
+ This patch makes it possible to use it.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
-Last-Update: 2015-03-19
+Last-Update: 2015-08-02
-Index: heat/requirements.txt
-===================================================================
---- heat.orig/requirements.txt
-+++ heat/requirements.txt
-@@ -40,7 +40,7 @@ python-troveclient>=1.0.7
+--- heat-5.0.0~b2.orig/requirements.txt
++++ heat-5.0.0~b2/requirements.txt
+@@ -49,8 +49,7 @@ python-troveclient>=1.0.9
+ python-zaqarclient>=0.1.1
PyYAML>=3.1.0
- qpid-python
- requests>=2.2.0,!=2.4.0
--Routes>=1.12.3,!=2.0
+ requests>=2.5.2
+-Routes!=2.0,!=2.1,>=1.12.3;python_version=='2.7'
+-Routes!=2.0,>=1.12.3;python_version!='2.7'
+Routes>=1.12.3
six>=1.9.0
- SQLAlchemy>=0.9.7,<=0.9.99
- sqlalchemy-migrate>=0.9.5
+ SQLAlchemy<1.1.0,>=0.9.7
+ sqlalchemy-migrate>=0.9.6
+++ /dev/null
-Description: Fix too restrictive sqlalchemy restriction in requirements.txt
-Author: Thomas Goirand <zigo@debian.org>
-Forwarded: no
-Last-Update: 2015-07-01
-
---- heat-2015.1.0.orig/requirements.txt
-+++ heat-2015.1.0/requirements.txt
-@@ -42,7 +42,7 @@ qpid-python
- requests>=2.2.0,!=2.4.0
- Routes>=1.12.3
- six>=1.9.0
--SQLAlchemy>=0.9.7,<=0.9.99
-+SQLAlchemy>=0.9.7
- sqlalchemy-migrate>=0.9.5
- stevedore>=1.3.0,<1.4.0 # Apache-2.0
- WebOb>=1.2.3
-allow-route-2.0.patch
only-run-tests-in-heat.tests.patch
using-assertRegexp-instead-of-Regex.patch
-fix-sqlalchemy-requirements.txt
+allow-route-2.0.patch
===================================================================
--- heat.orig/heat/tests/test_software_deployment.py
+++ heat/heat/tests/test_software_deployment.py
-@@ -952,7 +952,7 @@ class SoftwareDeploymentTest(common.Heat
+@@ -1005,7 +1005,7 @@ class SoftwareDeploymentTest(common.Heat
'^http://192.0.2.1/v1/AUTH_test_tenant_id/'
- '(software_deployment_test_stack-deployment_mysql-.*)/(.*)'
+ '(.*)/(software_deployment_test_stack-deployment_mysql-.*)'
'\\?temp_url_sig=.*&temp_url_expires=\\d*$')
- self.assertRegex(temp_url, temp_url_pattern)
+ self.assertRegexp(temp_url, temp_url_pattern)
m = temp_url_pattern.search(temp_url)
- object_name = m.group(2)
- self.assertEqual(container, m.group(1))
+ container = m.group(1)
+ self.assertEqual(object_name, m.group(2))