Added depends to python(3)-pkg-resources (Closes: #821010).

This commit is contained in:
Ondřej Nový
2016-04-14 18:34:24 +02:00
parent 59c4a704fd
commit 41aa8e13b7
3 changed files with 7 additions and 4 deletions

1
debian/changelog vendored
View File

@@ -7,6 +7,7 @@ alembic (0.8.4-1) UNRELEASED; urgency=medium
* Added myself to d/copyright.
* Fixed homepage (https).
* Standards-Version is 3.9.8 now (no change)
* Added depends to python(3)-pkg-resources (Closes: #821010).
-- Ondřej Nový <novy@ondrej.org> Sat, 27 Feb 2016 19:11:36 +0100

4
debian/control vendored
View File

@@ -53,12 +53,12 @@ Package: python-alembic
Architecture: all
Depends: python-editor,
python-mako,
python-pkg-resources,
python-sqlalchemy,
${misc:Depends},
${python:Depends},
Breaks: alembic (<< 0.6.3+ds-2),
Replaces: alembic (<< 0.6.3+ds-2),
Recommends: python-pkg-resources,
Description: lightweight database migration tool for SQLAlchemy - Python 2.x
Alembic is a new database migration tool, written by the author
of SQLAlchemy. A migration tool offers the following functionality:
@@ -78,11 +78,11 @@ Package: python3-alembic
Architecture: all
Depends: python3-editor,
python3-mako,
python3-pkg-resources,
python3-sqlalchemy,
${misc:Depends},
${python3:Depends},
${sphinxdoc:Depends},
Recommends: python3-pkg-resources,
Description: lightweight database migration tool for SQLAlchemy - Python 3.x
Alembic is a new database migration tool, written by the author
of SQLAlchemy. A migration tool offers the following functionality:

View File

@@ -1,5 +1,7 @@
Depends: python-alembic
Test-Command: python -c "import alembic; print alembic.__version__"
Test-Command: python -c "import alembic; print alembic.__version__" &&
python2-alembic -h >/dev/null
Depends: python3-alembic
Test-Command: python3 -c "import alembic; print(alembic.__version__)"
Test-Command: python3 -c "import alembic; print(alembic.__version__)" &&
python3-alembic -h >/dev/null