Your message dated Sun, 23 Feb 2014 18:18:27 +0000
with message-id <[email protected]>
and subject line Bug#733759: fixed in git-buildpackage 0.6.10
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.10
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: Sun, 23 Feb 2014 17:56:47 +0100
Source: git-buildpackage
Binary: git-buildpackage
Architecture: source all
Version: 0.6.10
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: 733759 739888
Changes:
git-buildpackage (0.6.10) unstable; urgency=medium
.
* [f1bc542,1b0b17c] config: Don't pull in config defaults twice.
This would otherwise overwrite values set in the legacy config sections.
(Closes: #733759)
* [7e26f91] Remove cover-min-percentage. It makes running single tests
harder than necessary since it requires the percentage also when using
"nose <testname>".
* [d533e0f] import_dsc: Create missing debian branch with
--create-missing-branches (Closes: #739888)
* [df32264] git-import-dsc: Document --create-missing-branches
Checksums-Sha1:
0f5bcf8e5c985ea17bc8c6d0f266d3c7972554f0 1273 git-buildpackage_0.6.10.dsc
16361dc05d8f039054705befac4e4d85f6e6d8e5 1569172 git-buildpackage_0.6.10.tar.xz
680b2988047c3e4e59105b45aa843bb6ef595f99 274852 git-buildpackage_0.6.10_all.deb
Checksums-Sha256:
76fbc564de75b1543ed1476bd3b74f353c310e3f38068a9e3374e3c981dfb7cd 1273
git-buildpackage_0.6.10.dsc
f7a250f1e66c3769f56c8c261816c6a119fa4123f9efc95e1fbc8cfe18614eed 1569172
git-buildpackage_0.6.10.tar.xz
e3d37608bc4be564bbfa522731b7a084ec1a084eb1d11e70b7f71d52f300bec5 274852
git-buildpackage_0.6.10_all.deb
Files:
8774bdfae043198d6e561546cc4f3c9d 1273 vcs optional git-buildpackage_0.6.10.dsc
f087125d52178b1ce04cc11c5f2fa33f 1569172 vcs optional
git-buildpackage_0.6.10.tar.xz
3d50e05ca5a65105f36c29989ed91825 274852 vcs optional
git-buildpackage_0.6.10_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iD8DBQFTCjddn88szT8+ZCYRAplBAJ9iH1il3qyzIq/xzR12v9REHDunfgCeOrVm
WqhZvDd/mr+cgpNSFlUaDG4=
=wi5q
-----END PGP SIGNATURE-----
--- End Message ---