Your message dated Sat, 15 Feb 2014 13:03:49 +0000
with message-id <[email protected]>
and subject line Bug#733759: fixed in git-buildpackage 0.6.9
has caused the Debian Bug report #733759,
regarding git-buildpackage: git-dch ignores gbp.conf if conf section is called 
[dch] rather than [git-dch]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
733759: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733759
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: git-buildpackage
Version: 0.6.8
Severity: important

Hi Guido,

Under certain conditions, git-dch ignores the values set in gbp.conf. I
have attached a shell log used to replicate the issue. I use a single,
system-wide gbp.conf.

In my example, 'git-dch' ignores my config when the section is called
[dch], but 'gbp dch' works okay. Changing the section to the legacy
[git-dch] name allows both commands to work correctly.

Marking as important as I fear this may affect all of the legacy git-*
gbp commands.

Thanks,
Jon

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (450, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.11-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages git-buildpackage depends on:
ii  devscripts            2.13.9
ii  git                   1:1.8.5.2-1
ii  man-db                2.6.5-2
ii  python                2.7.5-5
ii  python-dateutil       1.5+dfsg-0.1
ii  python-pkg-resources  1.4.2-1

Versions of packages git-buildpackage recommends:
ii  cowbuilder    0.73
ii  pristine-tar  1.28

Versions of packages git-buildpackage suggests:
ii  python-notify  0.1.1-3
ii  unzip          6.0-10

-- Configuration Files:
/etc/git-buildpackage/gbp.conf changed [not included]

-- no debconf information
jmccrohan@lambda:~/src/debian/awesome-extra$ ls -lah /etc/git-buildpackage/gbp.conf ~/.gbp.conf .gbp.conf debian/gbp.conf .git/gbp.conf
ls: cannot access /home/jmccrohan/.gbp.conf: No such file or directory
ls: cannot access .gbp.conf: No such file or directory
ls: cannot access debian/gbp.conf: No such file or directory
ls: cannot access .git/gbp.conf: No such file or directory
-rw-r--r-- 1 root root 4.0K Dec 31 03:13 /etc/git-buildpackage/gbp.conf
jmccrohan@lambda:~/src/debian/awesome-extra$ cat /etc/git-buildpackage/gbp.conf
[DEFAULT]
builder = pdebuild
cleaner = fakeroot debian/rules clean
pristine-tar = True
color = auto

[buildpackage]

[import-orig]

[import-dsc]

[dch]
id-length = 7
git-author = True
customizations = /usr/share/doc/git-buildpackage/examples/wrap_cl.py

[pq]

[clone]

[pull]

[create-remote-repo]

[remote-config pkg-libvirt]
remote-url-pattern = ssh://git.debian.org/git/pkg-libvirt/%(pkg)s
template-dir = /srv/alioth.debian.org/chroot/home/groups/pkg-libvirt/git-template

jmccrohan@lambda:~/src/debian/awesome-extra$ git-dch --ignore-branch 
jmccrohan@lambda:~/src/debian/awesome-extra$ git diff debian/changelog
diff --git a/debian/changelog b/debian/changelog
index f30eaa6..784cbd7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+awesome-extra (2012061102) UNRELEASED; urgency=medium
+
+  * d/control: Add myself to Uploaders
+  * d/control: Bump Standards-Version to 3.9.5
+  * d/{compat,control}: Bump debhelper version to 9
+  * The upstream obvious git repo (git.mercenariesguild.net/obvious.git) has gone AWOL; switch git submodule to HEAD of Rob Hoelz's forked version on github (which has support for awesome 3.5) (0585fb4)
+  * Update vicious (v2.1.2)
+  * Update bashlets (805558e)
+  * Update flaw (409a98b)
+  * Update shifty (b12b66e)
+
+ -- Jonathan McCrohan <[email protected]>  Tue, 31 Dec 2013 16:52:19 +0000
+
 awesome-extra (2012061101) unstable; urgency=low
 
   * Update revelation
jmccrohan@lambda:~/src/debian/awesome-extra$ git checkout debian/changelog
jmccrohan@lambda:~/src/debian/awesome-extra$ gbp dch --ignore-branch 
jmccrohan@lambda:~/src/debian/awesome-extra$ git diff debian/changelog
diff --git a/debian/changelog b/debian/changelog
index f30eaa6..a0abed1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+awesome-extra (2012061102) UNRELEASED; urgency=medium
+
+  * [6ab7883] d/control: Add myself to Uploaders
+  * [02eba78] d/control: Bump Standards-Version to 3.9.5
+  * [0d8188d] d/{compat,control}: Bump debhelper version to 9
+  * [0a9296e] The upstream obvious git repo
+    (git.mercenariesguild.net/obvious.git) has gone AWOL; switch git
+    submodule to HEAD of Rob Hoelz's forked version on github (which has
+    support for awesome 3.5) (0585fb4)
+  * [f62c5ed] Update vicious (v2.1.2)
+  * [f3768c2] Update bashlets (805558e)
+  * [e8305a0] Update flaw (409a98b)
+  * [2c90ccf] Update shifty (b12b66e)
+
+ -- Jonathan McCrohan <[email protected]>  Tue, 31 Dec 2013 16:52:48 +0000
+
 awesome-extra (2012061101) unstable; urgency=low
 
   * Update revelation
jmccrohan@lambda:~/src/debian/awesome-extra$ sudo sed -i 's/dch/git-dch/' /etc/git-buildpackage/gbp.conf
jmccrohan@lambda:~/src/debian/awesome-extra$ git checkout debian/changelog
jmccrohan@lambda:~/src/debian/awesome-extra$ git-dch --ignore-branch 
jmccrohan@lambda:~/src/debian/awesome-extra$ git diff debian/changelog
diff --git a/debian/changelog b/debian/changelog
index f30eaa6..aacb3a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+awesome-extra (2012061102) UNRELEASED; urgency=medium
+
+  * [6ab7883] d/control: Add myself to Uploaders
+  * [02eba78] d/control: Bump Standards-Version to 3.9.5
+  * [0d8188d] d/{compat,control}: Bump debhelper version to 9
+  * [0a9296e] The upstream obvious git repo
+    (git.mercenariesguild.net/obvious.git) has gone AWOL; switch git
+    submodule to HEAD of Rob Hoelz's forked version on github (which has
+    support for awesome 3.5) (0585fb4)
+  * [f62c5ed] Update vicious (v2.1.2)
+  * [f3768c2] Update bashlets (805558e)
+  * [e8305a0] Update flaw (409a98b)
+  * [2c90ccf] Update shifty (b12b66e)
+
+ -- Jonathan McCrohan <[email protected]>  Tue, 31 Dec 2013 16:54:48 +0000
+
 awesome-extra (2012061101) unstable; urgency=low
 
   * Update revelation
jmccrohan@lambda:~/src/debian/awesome-extra$ 


--- End Message ---
--- Begin Message ---
Source: git-buildpackage
Source-Version: 0.6.9

We believe that the bug you reported is fixed in the latest version of
git-buildpackage, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guido Günther <[email protected]> (supplier of updated git-buildpackage package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 15 Feb 2014 11:45:00 +0100
Source: git-buildpackage
Binary: git-buildpackage
Architecture: source all
Version: 0.6.9
Distribution: unstable
Urgency: medium
Maintainer: Guido Günther <[email protected]>
Changed-By: Guido Günther <[email protected]>
Description: 
 git-buildpackage - Suite to help with Debian packages in Git repositories
Closes: 635920 670624 733759
Changes: 
 git-buildpackage (0.6.9) unstable; urgency=medium
 .
   [ Guido Günther ]
   * [78f3673] Depend on newer devscripts.
     These contain a uscan that handles repackaging at the right level and
     won't let us pick up the wrong tarball name.
     Thanks to gregor herrmann and all others involved (Closes: #635920)
   * [7c64575] Avoid backtrace on config file parse errors
     "gbp buildpackage" did this already but others didn't (Closes: #733759)
   * [7b1eadd] Make parsing config file sections symmetric.
     Always read the legacy command's config file section prior to the
     subcommand's config file section.
     Until now 'gbp <subcommand>' would read '[subcommand]' as well as
     '[gbp-<subcommand>]' sections while 'gbp-<subcommand>' would only read
     '[gbp-<subcommand>]' sections. (Closes: #733759)
   * [49f0e44] Change the default of cleaner to /bin/true.
     Running a clean command within version control by default nowadays
     causes more trouble than it helps. It's unnecessary with
     pbuilder/cowbuilder/sbuild and with export-dir. So change the default
     from 'debuild clean' to a noop ('/bin/true'). (Closes: #670624)
   * [d93c89f] import_orig: test error paths of find_source
   * [daf249f] docs: improve docs on using upstream's git repo.
     The documentation on using upstream's git directly instead of tarballs
     was very terse. Add a step by step guide on how to get started and
     how to update to new upstream versions.
 .
   [ Markus Lehtonen ]
   * [e876beb] tests: adapt dch tests for older devscripts.
     Determine the default urgency level by determining the version number of
     the dch tool from command line.
Checksums-Sha1: 
 f394db66d00ac30e137b345de5308eb219783f61 1266 git-buildpackage_0.6.9.dsc
 9d2781c67d156f71e354aa067b136a63a5633049 170052 git-buildpackage_0.6.9.tar.xz
 f271c263a6399dbaf358fe5974266b32bce6051d 274554 git-buildpackage_0.6.9_all.deb
Checksums-Sha256: 
 b53feac4a81368d0e6af8a815226ed7c80ec96e7b81707a506b3c9e394cd1954 1266 
git-buildpackage_0.6.9.dsc
 e046221c4e074179f81d0496e1332a004255aa3acc6c3c7792a4494a8ff8a906 170052 
git-buildpackage_0.6.9.tar.xz
 f5ccef18767b1cb2b2181c83530b3f6f31842327cc848c1ddb1c6c48fea6da89 274554 
git-buildpackage_0.6.9_all.deb
Files: 
 e69fa97de4bfb6ec6cec7e44a0fb42f6 1266 vcs optional git-buildpackage_0.6.9.dsc
 e2f1023d347658607f2a5779e3f2a9a1 170052 vcs optional 
git-buildpackage_0.6.9.tar.xz
 70ff575a7410299a9c996ce4d64f37d2 274554 vcs optional 
git-buildpackage_0.6.9_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iD8DBQFS/2L/n88szT8+ZCYRAk3hAJ9/X9Qvflh1STKdULdoC1gl5u7A6QCfTDkj
F8CIOiX3k31T4ySd8r6dS74=
=sOvH
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to