[Python-modules-commits] r26965 - in packages/alembic/trunk/debian (7 files)
toabctl at users.alioth.debian.org
toabctl at users.alioth.debian.org
Fri Jan 3 07:11:00 UTC 2014
Date: Friday, January 3, 2014 @ 07:10:58
Author: toabctl
Revision: 26965
* New upstream release (closes: #734021)
* debian/patches: Add 01disable_sphinx_changelog_ext.patch to disable Sphinx
changelog extension which is currently not packaged for Debian.
* debian/control: Add python-mock to Build-Depends according to setup.py.
* debian/rules: Add http_proxy='localhost' to disable internet access during
documentation build.
* debian/alembic.1: Updated with help2man target from debian/rules.
Added:
packages/alembic/trunk/debian/patches/
packages/alembic/trunk/debian/patches/01disable_sphinx_changelog_ext.patch
packages/alembic/trunk/debian/patches/series
Modified:
packages/alembic/trunk/debian/alembic.1
packages/alembic/trunk/debian/changelog
packages/alembic/trunk/debian/control
packages/alembic/trunk/debian/rules
Modified: packages/alembic/trunk/debian/alembic.1
===================================================================
--- packages/alembic/trunk/debian/alembic.1 2014-01-02 21:54:55 UTC (rev 26964)
+++ packages/alembic/trunk/debian/alembic.1 2014-01-03 07:10:58 UTC (rev 26965)
@@ -1,9 +1,9 @@
-.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.9.
-.TH ALEMBIC "1" "June 2012" "alembic 0.3.4" "User Commands"
+.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.43.3.
+.TH ALEMBIC "1" "January 2014" "alembic 0.6.2" "User Commands"
.SH NAME
alembic \- lightweight database migration tool for usage with the SQLAlchemy
.SH DESCRIPTION
-usage: alembic [\-h] [\-c CONFIG] [\-n NAME]
+usage: alembic [\-h] [\-c CONFIG] [\-n NAME] [\-x X]
.IP
{branches, current, downgrade, history, init, list_templates, revision, splice, stamp, upgrade}
\&...
@@ -52,3 +52,8 @@
.TP
\fB\-n\fR NAME, \fB\-\-name\fR NAME
Name of section in .ini file to use for Alembic config
+.TP
+\fB\-x\fR X
+Additional arguments consumed by custom env.py
+scripts, e.g. \fB\-x\fR setting1=somesetting \fB\-x\fR
+setting2=somesetting
Modified: packages/alembic/trunk/debian/changelog
===================================================================
--- packages/alembic/trunk/debian/changelog 2014-01-02 21:54:55 UTC (rev 26964)
+++ packages/alembic/trunk/debian/changelog 2014-01-03 07:10:58 UTC (rev 26965)
@@ -1,14 +1,23 @@
-alembic (0.6.0+ds-1) UNRELEASED; urgency=low
+alembic (0.6.2+ds-1) UNRELEASED; urgency=low
- * New upstream release
+ [ Jackson Doak ]
+ * New upstream release (closes: #734021)
* Incorporate NMU changes
* debian/control:
- Bump standards-version to 3.9.5
- Add X-Python-Version
* Add doc-base
- -- Jackson Doak <noskcaj at ubuntu.com> Fri, 04 Oct 2013 17:26:30 +1000
+ [ Thomas Bechtold ]
+ * debian/patches: Add 01disable_sphinx_changelog_ext.patch to disable Sphinx
+ changelog extension which is currently not packaged for Debian.
+ * debian/control: Add python-mock to Build-Depends according to setup.py.
+ * debian/rules: Add http_proxy='localhost' to disable internet access during
+ documentation build.
+ * debian/alembic.1: Updated with help2man target from debian/rules.
+ -- Thomas Bechtold <toabctl at debian.org> Fri, 03 Jan 2014 07:33:33 +0100
+
alembic (0.4.2+ds-3.1) unstable; urgency=low
* Non-maintainer upload.
Modified: packages/alembic/trunk/debian/control
===================================================================
--- packages/alembic/trunk/debian/control 2014-01-02 21:54:55 UTC (rev 26964)
+++ packages/alembic/trunk/debian/control 2014-01-03 07:10:58 UTC (rev 26965)
@@ -9,7 +9,7 @@
Homepage: http://www.bitbucket.org/zzzeek/alembic
Build-Depends: debhelper (>= 8), python-all, python-setuptools,
python-nose, python-sqlalchemy, python-mako,
- python-sphinx (>= 1.0.7+dfsg)
+ python-sphinx (>= 1.0.7+dfsg), python-mock
X-Python-Version: >= 2.6
Package: alembic
Added: packages/alembic/trunk/debian/patches/01disable_sphinx_changelog_ext.patch
===================================================================
--- packages/alembic/trunk/debian/patches/01disable_sphinx_changelog_ext.patch (rev 0)
+++ packages/alembic/trunk/debian/patches/01disable_sphinx_changelog_ext.patch 2014-01-03 07:10:58 UTC (rev 26965)
@@ -0,0 +1,16 @@
+Author: Thomas Bechtold <toabctl at debian.org>
+Description: Disable the Sphinx changelog module because it's currently
+ not packaged for Debian.
+Forwarded: no
+--- a/docs/build/conf.py
++++ b/docs/build/conf.py
+@@ -30,8 +30,7 @@
+
+ # Add any Sphinx extension module names here, as strings. They can be extensions
+ # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',
+- 'changelog']
++extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',]
+
+ # tags to sort on inside of sections
+ changelog_sections = ["feature", "bug", "moved", "changed", "removed"]
Added: packages/alembic/trunk/debian/patches/series
===================================================================
--- packages/alembic/trunk/debian/patches/series (rev 0)
+++ packages/alembic/trunk/debian/patches/series 2014-01-03 07:10:58 UTC (rev 26965)
@@ -0,0 +1 @@
+01disable_sphinx_changelog_ext.patch
Modified: packages/alembic/trunk/debian/rules
===================================================================
--- packages/alembic/trunk/debian/rules 2014-01-02 21:54:55 UTC (rev 26964)
+++ packages/alembic/trunk/debian/rules 2014-01-03 07:10:58 UTC (rev 26965)
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
-VERSION=0.6.0
+VERSION=0.6.2
PYVERS:=$(shell pyversions -vr)
@@ -9,7 +9,7 @@
override_dh_auto_build:
dh_auto_build
- make -C docs/build html
+ http_proxy='localhost' make -C docs/build html
override_dh_auto_clean:
dh_auto_clean
More information about the Python-modules-commits
mailing list