Patch-out upper constraints of SQLAlchemy

Change-Id: Ia0a18898970aa6f9f508b9a3760f2bcaaf206dd7
This commit is contained in:
Ondřej Nový 2017-01-20 10:53:00 +01:00
parent 26647d502b
commit 6262ef32ab
5 changed files with 22 additions and 11 deletions

15
debian/changelog vendored
View File

@ -1,15 +1,14 @@
barbican (1:3.0.0-2) UNRELEASED; urgency=medium
* Bumped debhelper compat version to 10
* Added lsb-base to depends
-- Ondřej Nový <onovy@debian.org> Wed, 23 Nov 2016 23:47:52 +0100
barbican (1:3.0.0-1) unstable; urgency=medium
[ Thomas Goirand ]
* New upstream release.
-- Thomas Goirand <zigo@debian.org> Thu, 06 Oct 2016 17:26:17 +0200
[ Ondřej Nový ]
* Bumped debhelper compat version to 10
* Added lsb-base to depends
* Patch-out upper constraints of SQLAlchemy
-- Ondřej Nový <onovy@debian.org> Fri, 20 Jan 2017 10:36:47 +0100
barbican (1:3.0.0~rc1-2) unstable; urgency=medium

6
debian/control vendored
View File

@ -127,7 +127,7 @@ Package: barbican-api
Architecture: all
Depends: adduser,
barbican-common (= ${binary:Version}),
lsb-base,
${ostack-lsb-base},
python-openstackclient,
q-text-as-data,
${misc:Depends},
@ -142,7 +142,7 @@ Description: OpenStack Key Management Service - API Server
Package: barbican-worker
Architecture: all
Depends: barbican-common (= ${binary:Version}),
lsb-base,
${ostack-lsb-base},
${misc:Depends},
${python:Depends}
Description: OpenStack Key Management Service - Worker Node
@ -156,7 +156,7 @@ Description: OpenStack Key Management Service - Worker Node
Package: barbican-keystone-listener
Architecture: all
Depends: barbican-common (= ${binary:Version}),
lsb-base,
${ostack-lsb-base},
${misc:Depends},
${python:Depends}
Description: OpenStack Key Management Service - Keystone Listener

1
debian/debian_control_vars vendored Normal file
View File

@ -0,0 +1 @@
ostack-lsb-base= lsb-base

View File

@ -0,0 +1,10 @@
--- a/requirements.txt
+++ b/requirements.txt
@@ -27,6 +27,6 @@
ldap3>=0.9.8.2 # LGPLv3
keystonemiddleware
six>=1.9.0 # MIT
-SQLAlchemy<1.1.0,>=1.0.10 # MIT
+SQLAlchemy>=1.0.10 # MIT
stevedore>=1.16.0 # Apache-2.0
WebOb>=1.2.3 # MIT

View File

@ -4,3 +4,4 @@ repair-broken-migration-scripts.patch
fix-barbican-api.patch
fixes-keystone_authtoken-in-config-file.patch
fix-requirements.txt.patch
allow_newer_sqlalchemy.patch