Fixed patches folder.

This commit is contained in:
Thomas Goirand 2015-09-23 22:32:53 +00:00
parent 3a29862154
commit a16a97ce17
4 changed files with 1 additions and 45 deletions

1
debian/changelog vendored
View File

@ -2,6 +2,7 @@ migrate (0.10.0-1) experimental; urgency=medium
* New upstream release.
* Fixed (build-)depends for this release.
* Removed Python3 fix patch applied upstream.
-- Thomas Goirand <zigo@debian.org> Thu, 24 Sep 2015 00:24:13 +0200

View File

@ -1,18 +0,0 @@
Description: Do not impose PBR version
The current release is too restrictive regarding PBR version, which may
make OpenStack not installable in Sid. This patch fixes that.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2015-07-28
--- migrate-0.9.7.orig/requirements.txt
+++ migrate-0.9.7/requirements.txt
@@ -1,7 +1,7 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-pbr>=0.11,<2.0
+pbr
# never put a cap on this, *ever*, sqla versions are handled via
# tox, and if SQLA is capped it will only make it so we aren't testing

View File

@ -1,25 +0,0 @@
Description: Fix usage() function for python 3
Author: Thomas Goirand <zigo@debian.org>
Origin: <vendor|upstream|other>, <url of original patch>
Forwarded: no
Last-Update: 2015-07-15
--- migrate-0.9.7.orig/migrate/versioning/migrate_repository.py
+++ migrate-0.9.7/migrate/versioning/migrate_repository.py
@@ -13,13 +13,9 @@ log = logging.getLogger(__name__)
def usage():
"""Gives usage information."""
- print """Usage: %(prog)s repository-to-migrate
-
- Upgrade your repository to the new flat format.
-
- NOTE: You should probably make a backup before running this.
- """ % {'prog': sys.argv[0]}
-
+ print("Usage: %s repository-to-migrate" % sys.argv[0])
+ print("Upgrade your repository to the new flat format.")
+ print("NOTE: You should probably make a backup before running this.")
sys.exit(1)

View File

@ -1,5 +1,3 @@
use-local-intersphinx.patch
keep_empty_modules.patch
disable_issuetracker.patch
fix-usage-function-for-python3.patch
do-not-impose-pbr-version.patch