1
0
mirror of synced 2026-02-20 05:45:15 +00:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Axel Beckert
a39f24e754 Release as 4.9.1 and upload to Debian unstable as 4.9.1-1 2021-10-24 05:39:12 +02:00
Axel Beckert
8a623b30ba Also create an .orig.tar.xz signature upon "make release" 2021-10-24 05:36:26 +02:00
Axel Beckert
5730250725 Declare compliance with Debian Policy 4.6.0
No other changes were needed.
2021-10-24 05:24:56 +02:00
Axel Beckert
ac04bed0f2 This seems closer to the original semantics 2021-10-24 05:09:08 +02:00
4 changed files with 7 additions and 4 deletions

View File

@@ -270,6 +270,7 @@ manpages:
# #
release: orig-tar-gz release: orig-tar-gz
gpg --armour --detach-sign ../$(BASE)-$(VERSION).tar.gz gpg --armour --detach-sign ../$(BASE)-$(VERSION).tar.gz
cp -p ../$(BASE)-$(VERSION).tar.gz.asc ../$(BASE)_$(DEBVERSION).orig.tar.gz.asc
git tag -s -m "Release as $(VERSION)" "release-$(VERSION)" git tag -s -m "Release as $(VERSION)" "release-$(VERSION)"
tarball: test tidy fixup-perms update-version update-modules clean changelog tarball: test tidy fixup-perms update-version update-modules clean changelog

6
debian/changelog vendored
View File

@@ -1,11 +1,13 @@
xen-tools (4.9.1-1) UNRELEASED; urgency=medium xen-tools (4.9.1-1) unstable; urgency=medium
* New upstream bugfix release. * New upstream bugfix release.
+ Fix missing "|" in regex in Debian's 20-setup-apt. (Closes: #997668) + Fix missing "|" in regex in Debian's 20-setup-apt. (Closes: #997668)
+ Make test xt/gitignore.t work with git releases ≥ 2.32.0. + Make test xt/gitignore.t work with git releases ≥ 2.32.0.
+ Travis CI: stop testing again Perl "dev". It no more seems to exist. + Travis CI: stop testing again Perl "dev". It no more seems to exist.
+ Also create an .orig.tar.xz signature upon "make release".
* Declare compliance with Debian Policy 4.6.0. (No changes needed.)
-- Axel Beckert <abe@debian.org> Sun, 24 Oct 2021 02:02:49 +0200 -- Axel Beckert <abe@debian.org> Sun, 24 Oct 2021 05:38:40 +0200
xen-tools (4.9-1) unstable; urgency=medium xen-tools (4.9-1) unstable; urgency=medium

2
debian/control vendored
View File

@@ -18,7 +18,7 @@ Build-Depends: debhelper-compat (= 13),
libtest-pod-coverage-perl, libtest-pod-coverage-perl,
libtest-pod-perl, libtest-pod-perl,
libtext-template-perl libtext-template-perl
Standards-Version: 4.5.1 Standards-Version: 4.6.0
Homepage: https://xen-tools.org/software/xen-tools Homepage: https://xen-tools.org/software/xen-tools
Vcs-Browser: https://github.com/xen-tools/xen-tools Vcs-Browser: https://github.com/xen-tools/xen-tools
Vcs-Git: https://github.com/xen-tools/xen-tools.git Vcs-Git: https://github.com/xen-tools/xen-tools.git

View File

@@ -23,7 +23,7 @@ if (which('git') and -d '.git') {
use_ok( 'Git' ); use_ok( 'Git' );
# First, check that no tracked files are ignored # First, check that no tracked files are ignored
my $cmd = Git::command_output_pipe('ls-files', '--others', '--ignored', '--exclude-standard'); my $cmd = Git::command_output_pipe('ls-files', '--cached', '--ignored', '--exclude-standard');
my $output; my $output;
while (<$cmd>) { $output .= "--> $_" } while (<$cmd>) { $output .= "--> $_" }
close $cmd; close $cmd;