buildbot: add patch to disable sqlalchemy version check

This commit is contained in:
Alessio Sergi 2014-08-27 18:27:24 +02:00
parent b6b427fcef
commit 6df48ab9d6
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,12 @@
--- buildbot/db/enginestrategy.py.orig
+++ buildbot/db/enginestrategy.py
@@ -174,9 +174,6 @@ class BuildbotEngineStrategy(strategies.
if version_tup < (0, 6):
raise RuntimeError("SQLAlchemy version %s is too old" % (version,))
- if version_tup > (0, 7, 10):
- raise RuntimeError("SQLAlchemy version %s is not supported by "
- "SQLAlchemy-Migrate" % (version,))
def create(self, name_or_url, **kwargs):
if 'basedir' not in kwargs:

View File

@ -1,7 +1,7 @@
# Template file for 'buildbot'
pkgname=buildbot
version=0.8.9
revision=1
revision=2
noarch=yes
build_style=python-module
hostmakedepends="python"