vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 42a140686674741827820e2ca7eede886c56d3cd
Author: Guido Günther <agx@sigxcpu.org>
Date: Thu May 26 20:59:08 2022 +0200
clone: Allow to skip alias expansion
Add an option that allow to skip exansion of aliases like salsa:
by gbp so that git can do that.
Closes: #983085
commit 4d173ac01c4993726c92e36f39bfdfec385a6e7d
Author: Guido Günther <agx@sigxcpu.org>
Date: Thu May 26 20:43:06 2022 +0200
docs: Fix --upstream-signature flag description
Thanks: Tino Mettler
commit 71a1556b8e94b325088ebb99282374945efa7df0
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Thu May 26 01:44:07 2022 +0200
debian/rules: clean __pycache__ directories generated during the build
commit a5e6deafbf6460e10e6d21ec7c46dbbcf275c37a
Author: Doesnot Matter <you@example.com>
Date: Thu May 26 19:54:15 2022 +0200
pull: Prefix local branch with 'refs/heads/'
This can resolve ambiguity when generating the rev list.
Closes: #966627
commit 03348fd156b2bfc1d69197649b471b01a4620238
Author: Doesnot Matter <you@example.com>
Date: Thu May 26 19:53:49 2022 +0200
repository: Add helper to prefix branch with 'refs/heads/'
No attempt is being made to ensure this is a local branch.
commit 3e30ce364e2a825355fcb30d6780cce508e8651b
Author: Doesnot Matter <you@example.com>
Date: Thu May 26 18:20:39 2022 +0200
repository.get_submodules: Only strip repo path from the beginning
We shouldn't just replace any occurence since we otherwise might also
substitute in the submodule.
Based on a patch by "ushen <yshxxsjt715@gmail.com>".
See https://github.com/agx/git-buildpackage/pull/82
commit 7740d59eec7c3bd9788667fc0118568eee04f36c
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Thu May 26 01:53:54 2022 +0200
debian/rules: really export GBP_NETWORK_TESTS to tests
$(MAKE) GBP_NETWORK_TESTS=1
was setting a Make variable in the sub-Make, but not exporting it for
test/*.py subprocesses.
commit 9bdb516dce535704318f6be8d7d6694ec434a7b8
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Thu May 26 00:49:25 2022 +0200
debian/clean: add forgotten files
commit 36499a83addedc65bc2393caac488580a2dac004
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Thu May 26 00:47:22 2022 +0200
Move some cleaning from debian/rules to debian/clean
commit 59bf3a6e709d929a98d5bec97227c5f586f00772
Author: Doesnot Matter <you@example.com>
Date: Thu May 26 12:28:47 2022 +0200
repository: list_tree: Handle '-'
This is returned for git submodules and broke the the clone test like:
======================================================================
ERROR: Test that cloning from github urls works
----------------------------------------------------------------------
Traceback (most recent call last):
File "/var/scratch/src/git-buildpackage/git-buildpackage/tests/component/deb/test_clone.py", line 81, in test_clone_github
ret = clone(['arg0', "github:agx/git-buildpackage", dest])
File "/var/scratch/src/git-buildpackage/git-buildpackage/gbp/scripts/clone.py", line 214, in main
if options.defuse_gitattributes.is_on() or not repo_setup.check_gitattributes(repo, 'HEAD'):
File "/var/scratch/src/git-buildpackage/git-buildpackage/gbp/scripts/common/repo_setup.py", line 43, in check_gitattributes
for mode, _type, sha1, size, path in repo.list_tree(treeish, recurse=True, sizes=True):
File "/var/scratch/src/git-buildpackage/git-buildpackage/gbp/git/repository.py", line 1105, in list_tree
yield mode, type, sha1, int(size), filename
ValueError: invalid literal for int() with base 10: '-'
-------------------- >> begin captured logging << --------------------
gbp: info: Cloning from 'https://github.com/agx/git-buildpackage.git' into '/.../git-buildpackage/gbp_TestClone_730g3vkb/tmp_test_clone_github_i9jrqgmy/cloned_repo'
--------------------- >> end captured logging << ---------------------
commit 25327d14f68fdfe4e3c033372878baaf74dea1e5
Author: Doesnot Matter <you@example.com>
Date: Thu May 26 12:01:59 2022 +0200
smoke-rpm: Avoid deprecated distutils
commit 14ea4818664be907fa300806e424997ad7549e37
Author: Guido Günther <agx@sigxcpu.org>
Date: Wed May 25 23:07:11 2022 +0200
deb: Decode changelog content when fetched from git
When importing not form the upstream branch the changelog is fetched
via `git show`. Decode the bytes in that case.
Closes: #1004354
commit 83e77912564c6daaa965491f868afc338d52b110
Author: Guido Günther <agx@sigxcpu.org>
Date: Wed May 25 22:55:03 2022 +0200
tests: Test import-orig from upstream branch
commit bd529f0ed288553049751aa478a0eae83e1988c6
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Tue May 17 15:53:15 2022 +0200
debian/copyrigt: switch to machine-readable format 1.0
commit 4c9032e6817f5e2a14e41a055d844f0d2f48d77b
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Tue May 17 15:17:12 2022 +0200
debian/rules: remove obsolete and unused Make variables
commit 8742d3f9015f9aa280c78081028e9028f683ea38
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Tue May 17 15:13:06 2022 +0200
rules: simplify thanks to debhelper compat 13
When dh-sequence-foo is listed in build-depends, debhelper
automatically inserts dh_foo in the commands.
override_dh_auto_test is not invoked anymore if DEB_BUILD_OPTIONS
contains nocheck.
execute_after_dh_* is available and more readable than override_dh_*.
Move chmod to execute_after_dh_fixperms for clarity.
Examples are not compressed anymore.
commit 6d1c3254434f1068c9b6fedaea1afb5d512d9656
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Tue May 17 15:02:13 2022 +0200
debian/rules: simplify installation of zsh and pk4
There seems to be no reason to change their names and permissions
between the source tree and the eventual installation path.
commit ff524f14546e4978de061409178abbad18a4f730
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Tue May 17 14:54:08 2022 +0200
debhelper: make package prefix explicit in configuration files
This slightly improves readability.
commit 86b4fd88f9aa231b1082e06f44765745bd7daa34
Author: Guido Günther <agx@sigxcpu.org>
Date: Wed May 25 18:13:38 2022 +0200
config: Use ConfigParser instead of deprecated SafeConfigParser
Closes: #1011344
commit 7717b39249c9a439afae918a9e53f304282ecee5
Author: Guido Günther <agx@sigxcpu.org>
Date: Mon May 16 11:23:19 2022 +0200
git/repository: Disable signatures when grepping for commits
Otherwise get the signature back as well.
Thanks: наб for the patch
Closes: #1010370