[Pkg-bazaar-commits] r164 ./bzr-builddeb/trunk: * Allow empty author information in the changelog for those that like to
James Westby
jw+debian at jameswestby.net
Mon Aug 13 21:08:20 UTC 2007
------------------------------------------------------------
revno: 164
committer: James Westby <jw+debian at jameswestby.net>
branch nick: trunk
timestamp: Mon 2007-08-13 22:08:20 +0100
message:
* Allow empty author information in the changelog for those that like to
develop without filling it in, and then add it while releasing.
modified:
debian/changelog
debian/control
util.py
-------------- next part --------------
=== modified file 'debian/changelog'
--- a/debian/changelog 2007-07-25 19:54:12 +0000
+++ b/debian/changelog 2007-08-13 21:08:20 +0000
@@ -1,3 +1,10 @@
+bzr-builddeb (0.19) unstable; urgency=low
+
+ * Allow empty author information in the changelog for those that like to
+ develop without filling it in, and then add it while releasing.
+
+ -- James Westby <jw+debian at jameswestby.net> Mon, 13 Aug 2007 22:03:03 +0100
+
bzr-builddeb (0.18) unstable; urgency=medium
* Medium urgency as it will hold up the bzr 0.18 transition.
=== modified file 'debian/control'
--- a/debian/control 2007-07-25 17:15:07 +0000
+++ b/debian/control 2007-08-13 21:08:20 +0000
@@ -4,13 +4,13 @@
Maintainer: Debian Bazaar Maintainers <pkg-bazaar-maint at lists.alioth.debian.org>
Uploaders: Reinhard Tartler <siretart at tauware.de>, James Westby <jw+debian at jameswestby.net>
Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11)
-Build-Depends-Indep: bzr (>= 0.18~), python-central (>= 0.5.8), python-docutils, python-debian (>= 0.1.3), python-deb822 (>= 0.3), bzrtools (>= 0.18), patchutils
+Build-Depends-Indep: bzr (>= 0.18~), python-central (>= 0.5.8), python-docutils, python-debian (>= 0.1.4), python-deb822 (>= 0.3), bzrtools (>= 0.18), patchutils
XS-Python-Version: >= 2.4
Standards-Version: 3.7.2
Package: bzr-builddeb
Architecture: all
-Depends: bzr (>= 0.18~), python-debian (>= 0.1.3), ${python:Depends}, python-deb822 (>= 0.3), dpkg-dev, fakeroot, bzrtools (>= 0.18), devscripts, patchutils
+Depends: bzr (>= 0.18~), python-debian (>= 0.1.4), ${python:Depends}, python-deb822 (>= 0.3), dpkg-dev, fakeroot, bzrtools (>= 0.18), devscripts, patchutils
Provides: bzr-buildpackage
XB-Python-Version: ${python:Versions}
Description: bzr plugin for Debian package management
=== modified file 'util.py'
--- a/util.py 2007-07-25 16:49:12 +0000
+++ b/util.py 2007-08-13 21:08:20 +0000
@@ -77,7 +77,7 @@
finally:
t.unlock()
changelog = Changelog()
- changelog.parse_changelog(contents, max_blocks=1)
+ changelog.parse_changelog(contents, max_blocks=1, allow_empty_author=True)
return changelog, larstiq
def tarball_name(package, version):
More information about the Pkg-bazaar-commits
mailing list