new upstream release 2020.7
https://github.com/coreos/rpm-ostree/releases/tag/v2020.7
This commit is contained in:
parent
bbd2d17f8d
commit
5943026f1a
1
.gitignore
vendored
1
.gitignore
vendored
@ -92,3 +92,4 @@
|
||||
/rpm-ostree-2020.4.15.g8b0bcd7b.tar.xz
|
||||
/rpm-ostree-2020.5.tar.xz
|
||||
/rpm-ostree-2020.6.tar.xz
|
||||
/rpm-ostree-2020.7.tar.xz
|
||||
|
@ -1,29 +0,0 @@
|
||||
From ac26db038e67ea7fe8236cfafabcba74ad89b894 Mon Sep 17 00:00:00 2001
|
||||
From: Colin Walters <walters@verbum.org>
|
||||
Date: Thu, 22 Oct 2020 14:25:51 +0000
|
||||
Subject: [PATCH] sysroot: Fix usage of sd_journal_send on 32 bit
|
||||
|
||||
See https://bugzilla.redhat.com/show_bug.cgi?id=1890577
|
||||
|
||||
This is the same as https://github.com/ostreedev/ostree/pull/2219
|
||||
---
|
||||
src/daemon/rpmostree-sysroot-upgrader.c | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/daemon/rpmostree-sysroot-upgrader.c b/src/daemon/rpmostree-sysroot-upgrader.c
|
||||
index 32e77a0a3..7a8e1e9ea 100644
|
||||
--- a/src/daemon/rpmostree-sysroot-upgrader.c
|
||||
+++ b/src/daemon/rpmostree-sysroot-upgrader.c
|
||||
@@ -1328,9 +1328,9 @@ write_history (RpmOstreeSysrootUpgrader *self,
|
||||
SD_ID128_FORMAT_VAL(RPMOSTREE_NEW_DEPLOYMENT_MSG),
|
||||
"MESSAGE=Created new deployment /%s", deployment_dirpath,
|
||||
"DEPLOYMENT_PATH=/%s", deployment_dirpath,
|
||||
- "DEPLOYMENT_TIMESTAMP=%ld", stbuf.st_ctime,
|
||||
- "DEPLOYMENT_DEVICE=%u", stbuf.st_dev,
|
||||
- "DEPLOYMENT_INODE=%u", stbuf.st_ino,
|
||||
+ "DEPLOYMENT_TIMESTAMP=%" PRIu64, (uint64_t) stbuf.st_ctime,
|
||||
+ "DEPLOYMENT_DEVICE=%" PRIu64, (uint64_t) stbuf.st_dev,
|
||||
+ "DEPLOYMENT_INODE=%" PRIu64, (uint64_t) stbuf.st_ino,
|
||||
"DEPLOYMENT_CHECKSUM=%s", ostree_deployment_get_csum (new_deployment),
|
||||
"DEPLOYMENT_REFSPEC=%s", rpmostree_origin_get_refspec (self->origin),
|
||||
/* we could use iovecs here and sd_journal_sendv to make these truly
|
@ -3,8 +3,8 @@
|
||||
|
||||
Summary: Hybrid image/package system
|
||||
Name: rpm-ostree
|
||||
Version: 2020.6
|
||||
Release: 2%{?dist}
|
||||
Version: 2020.7
|
||||
Release: 1%{?dist}
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/coreos/rpm-ostree
|
||||
# This tarball is generated via "cd packaging && make -f Makefile.dist-packaging dist-snapshot"
|
||||
@ -194,6 +194,10 @@ $PYTHON autofiles.py > files.devel \
|
||||
|
||||
%files devel -f files.devel
|
||||
%changelog
|
||||
* Mon Nov 02 2020 Luca BRUNO <lucab@lucabruno.net> - 2020.7-1
|
||||
- New upstream version
|
||||
https://github.com/coreos/rpm-ostree/releases/tag/v2020.7
|
||||
|
||||
* Mon Nov 02 2020 Jeff Law <law@redhat.com> - 2020.6-2
|
||||
- Fix invalid use of volatile caught by gcc-11
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (rpm-ostree-2020.6.tar.xz) = aa07b50a720c0791d5f23f0b8d0f2201e1eb6151e4a36fd2b620ed028c3d50dcf970369beb2cb2a366960b6f735d68d3fff8bfed89c67465062c6385ee0bde79
|
||||
SHA512 (rpm-ostree-2020.7.tar.xz) = e8056f58d396b906642624bb55f48e618e95193a026761cccd0d33bb56524ddec5012f7b922f51504c5c2e0cb2757b758636cb8aebeace5aae3d24dc864f16f2
|
||||
|
Loading…
Reference in New Issue
Block a user