New upstream release

Closes: #1004467
This commit is contained in:
Simon McVittie 2022-03-07 19:28:22 +00:00
parent 6a0b1ef5a1
commit 18b95a3b1d
5 changed files with 39 additions and 0 deletions

13
debian/changelog vendored
View File

@ -1,3 +1,16 @@
ostree (2022.2-1) UNRELEASED; urgency=medium
* New upstream release
- Updated libglnx submodule fixes an incompatibility with eCryptFS
(Closes: #1004467)
* Install new script /usr/libexec/libostree/s390x-se-luks-gencpio
into ostree-boot
* d/p/s390x-se-luks-gencpio-Use-interoperable-path-for-bash.patch:
Add patch to retain compatibility with non-/usr-merged systems
* d/libostree-1-1.symbols: Update
-- Simon McVittie <smcv@debian.org> Mon, 07 Mar 2022 19:16:49 +0000
ostree (2022.1-3) unstable; urgency=medium
* Use debhelper 11 features instead of dh-exec

View File

@ -41,6 +41,7 @@ libostree-1.so.1 libostree-1-1 #MINVER#
LIBOSTREE_2021.3@LIBOSTREE_2021.3 2021.3
LIBOSTREE_2021.4@LIBOSTREE_2021.4 2021.4
LIBOSTREE_2021.5@LIBOSTREE_2021.5 2021.5
LIBOSTREE_2022.2@LIBOSTREE_2022.2 2022.2
ostree_async_progress_copy_state@LIBOSTREE_2019.6 2019.6
ostree_async_progress_finish@LIBOSTREE_2016.3 2016.4
ostree_async_progress_get@LIBOSTREE_2017.6 2017.6
@ -381,6 +382,7 @@ libostree-1.so.1 libostree-1-1 #MINVER#
ostree_repo_traverse_commit@LIBOSTREE_2016.3 2016.4
ostree_repo_traverse_commit_union@LIBOSTREE_2016.3 2016.4
ostree_repo_traverse_commit_union_with_parents@LIBOSTREE_2018.5 2018.5
ostree_repo_traverse_commit_with_flags@LIBOSTREE_2022.2 2022.2
ostree_repo_traverse_new_parents@LIBOSTREE_2018.5 2018.5
ostree_repo_traverse_new_reachable@LIBOSTREE_2016.3 2016.4
ostree_repo_traverse_parents_get_commits@LIBOSTREE_2018.5 2018.5

View File

@ -10,3 +10,4 @@ usr/lib/ostree/ostree-prepare-root
usr/lib/ostree/ostree-remount
usr/lib/tmpfiles.d/ostree-tmpfiles.conf
usr/libexec/libostree/grub2-15_ostree
usr/libexec/libostree/s390x-se-luks-gencpio

View File

@ -0,0 +1,22 @@
From: Simon McVittie <smcv@debian.org>
Date: Mon, 7 Mar 2022 19:23:09 +0000
Subject: s390x-se-luks-gencpio: Use interoperable path for bash
On OSs that do not consistently merge /usr/bin with /bin, the path to
bash has traditionally been /bin/bash.
Signed-off-by: Simon McVittie <smcv@debian.org>
---
src/libostree/s390x-se-luks-gencpio | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libostree/s390x-se-luks-gencpio b/src/libostree/s390x-se-luks-gencpio
index f0ad24e..a62d43e 100755
--- a/src/libostree/s390x-se-luks-gencpio
+++ b/src/libostree/s390x-se-luks-gencpio
@@ -1,4 +1,4 @@
- #!/usr/bin/bash
+ #!/bin/bash
# This script creates new initramdisk with LUKS config within
set -euo pipefail

View File

@ -1 +1,2 @@
debian/Skip-test-pull-repeated-during-CI.patch
s390x-se-luks-gencpio-Use-interoperable-path-for-bash.patch