New git snapshot, just getting some new code out there
- We are now bundling a copy of libhif, as otherwise coordinated releases with PackageKit/dnf would be required, and we are not ready for that yet.
This commit is contained in:
parent
ca071a8191
commit
4cc19b0c9a
25
0001-unpacker-Fix-a-32-bit-format-string-error.patch
Normal file
25
0001-unpacker-Fix-a-32-bit-format-string-error.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From f46302c2ab64b48cb3df533421eedb97ba676633 Mon Sep 17 00:00:00 2001
|
||||
From: Colin Walters <walters@verbum.org>
|
||||
Date: Tue, 23 Feb 2016 13:43:26 -0500
|
||||
Subject: [PATCH] unpacker: Fix a 32 bit format string error
|
||||
|
||||
---
|
||||
src/libpriv/rpmostree-unpacker.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/libpriv/rpmostree-unpacker.c b/src/libpriv/rpmostree-unpacker.c
|
||||
index 5bb61a3..5487a6d 100644
|
||||
--- a/src/libpriv/rpmostree-unpacker.c
|
||||
+++ b/src/libpriv/rpmostree-unpacker.c
|
||||
@@ -894,7 +894,7 @@ get_lead_sig_header_as_bytes (RpmOstreeUnpacker *self,
|
||||
if (bytes_remaining > 0)
|
||||
{
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
||||
- "Failed to read %" G_GUINT64_FORMAT " bytes of metadata",
|
||||
+ "Failed to read %" G_GSIZE_FORMAT " bytes of metadata",
|
||||
bytes_remaining);
|
||||
goto out;
|
||||
}
|
||||
--
|
||||
1.8.3.1
|
||||
|
@ -9,6 +9,7 @@ Source0: rpm-ostree-%{version}.tar.xz
|
||||
# Bundled because the library is API/ABI unstable, and we're trying to
|
||||
# avoid being version locked with PackageKit/dnf right now.
|
||||
Source1: libhif.tar.gz
|
||||
Patch0: 0001-unpacker-Fix-a-32-bit-format-string-error.patch
|
||||
Provides: bundled(libhif) = 0.7.0
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/projectatomic/rpm-ostree
|
||||
|
Loading…
Reference in New Issue
Block a user