Hello community, here is the log from the commit of package libdnf for openSUSE:Factory checked in at 2018-08-20 16:21:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libdnf (Old) and /work/SRC/openSUSE:Factory/.libdnf.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libdnf" Mon Aug 20 16:21:36 2018 rev:5 rq:630431 version:0.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libdnf/libdnf.changes 2018-01-05 01:02:22.672876508 +0100 +++ /work/SRC/openSUSE:Factory/.libdnf.new/libdnf.changes 2018-08-20 16:21:36.561008042 +0200 @@ -2 +2,7 @@ -Thu Jan 4 00:29:05 UTC 2018 - [email protected] +Mon Aug 20 00:04:01 UTC 2018 - Neal Gompa <[email protected]> + +- Refresh patch to fix building against static libsolvext +- Switch to full author identities + +------------------------------------------------------------------- +Thu Jan 4 00:29:05 UTC 2018 - Neal Gompa <[email protected]> @@ -8 +14 @@ -Mon Nov 13 14:17:07 UTC 2017 - [email protected] +Mon Nov 13 14:17:07 UTC 2017 - Neal Gompa <[email protected]> @@ -16 +22 @@ -Tue Oct 10 11:49:41 UTC 2017 - [email protected] +Tue Oct 10 11:49:41 UTC 2017 - Neal Gompa <[email protected]> @@ -26 +32 @@ -Sun Aug 13 16:35:32 UTC 2017 - [email protected] +Sun Aug 13 16:35:32 UTC 2017 - Neal Gompa <[email protected]> @@ -32 +38 @@ -Sun Aug 13 16:10:05 UTC 2017 - [email protected] +Sun Aug 13 16:10:05 UTC 2017 - Neal Gompa <[email protected]> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libdnf.spec ++++++ --- /var/tmp/diff_new_pack.wBkzPd/_old 2018-08-20 16:21:37.069008760 +0200 +++ /var/tmp/diff_new_pack.wBkzPd/_new 2018-08-20 16:21:37.073008766 +0200 @@ -65,6 +65,7 @@ BuildRequires: pkgconfig(gtk-doc) BuildRequires: pkgconfig(liblzma) BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(libzstd) BuildRequires: pkgconfig(zlib) %description ++++++ libdnf-0.9.3-with-static-libsolvext.patch ++++++ --- /var/tmp/diff_new_pack.wBkzPd/_old 2018-08-20 16:21:37.089008789 +0200 +++ /var/tmp/diff_new_pack.wBkzPd/_new 2018-08-20 16:21:37.089008789 +0200 @@ -1,4 +1,4 @@ -From bff8c2a9cc77eb16799473180eebe4ceb6e0a78b Mon Sep 17 00:00:00 2001 +From c9e1aa46714c2b173c4139caf7cc296c62a8edf2 Mon Sep 17 00:00:00 2001 From: Neal Gompa <[email protected]> Date: Sun, 13 Aug 2017 12:35:11 -0400 Subject: [PATCH] Ensure libsolvext dynamic library dependencies are linked @@ -12,17 +12,17 @@ This patch works around it by doing the declarations here rather than in libsolv, since it's not easy to fix there, given upstream constraints. --- - CMakeLists.txt | 11 +++++++++++ + CMakeLists.txt | 13 +++++++++++++ cmake/modules/FindLZMA.cmake | 25 +++++++++++++++++++++++++ - libdnf/CMakeLists.txt | 7 ++++++- - 3 files changed, 42 insertions(+), 1 deletion(-) + libdnf/CMakeLists.txt | 8 +++++++- + 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 cmake/modules/FindLZMA.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt -index 3b98e08..31fa7c2 100644 +index 3b98e08..1194211 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -39,6 +39,17 @@ pkg_check_modules (CHECK REQUIRED check) +@@ -39,6 +39,19 @@ pkg_check_modules (CHECK REQUIRED check) pkg_check_modules (REPO REQUIRED librepo) FIND_PROGRAM (VALGRIND_PROGRAM NAMES valgrind PATH /usr/bin /usr/local/bin) @@ -35,6 +35,8 @@ +find_package (LZMA REQUIRED) +# bzip2 dependency +find_package (BZip2 REQUIRED) ++# zstd dependency ++FIND_LIBRARY (ZSTD_LIBRARY NAMES zstd) +# End static libsolvext dynamic library dependencies + # TODO handle yumdb / dnfdb for libdnf @@ -72,10 +74,10 @@ + SET( LZMA_LIBRARIES ) +ENDIF(LZMA_FOUND) diff --git a/libdnf/CMakeLists.txt b/libdnf/CMakeLists.txt -index 111585e..f3a1f93 100644 +index 6e25c57..8a288cd 100644 --- a/libdnf/CMakeLists.txt +++ b/libdnf/CMakeLists.txt -@@ -43,7 +43,12 @@ TARGET_LINK_LIBRARIES(libdnf +@@ -44,7 +44,13 @@ TARGET_LINK_LIBRARIES(libdnf ${GLIB_GIO_UNIX_LIBRARIES} ${LIBSOLV_LIBRARY} ${LIBSOLV_EXT_LIBRARY} @@ -85,10 +87,11 @@ + ${ZLIB_LIBRARY} + ${LZMA_LIBRARY} + ${BZIP2_LIBRARY} ++ ${ZSTD_LIBRARY} + ) if (ENABLE_RHSM_SUPPORT) target_link_libraries (libdnf ${RHSM_LIBRARIES}) -- -2.12.0 +2.17.1
