summaryrefslogtreecommitdiffhomepage
path: root/patches
diff options
context:
space:
mode:
authorNeal Gompa <ngompa13@gmail.com>2020-05-29 19:19:12 -0400
committerConan_Kudo <ngompa13@gmail.com>2020-05-30 22:06:40 +0000
commit62c6b4ae822db79c3dd1e5f1079a4d2977675976 (patch)
tree0ece37f8ab8c7ea92cbc328930cae99e5e30089e /patches
parentddaa391dfb7216fd8b11def1aacb78f87cb21ca0 (diff)
downloadmidipix_build-62c6b4ae822db79c3dd1e5f1079a4d2977675976.tar.bz2
midipix_build-62c6b4ae822db79c3dd1e5f1079a4d2977675976.tar.xz
groups/231.native_packages_etc.group: tdnf: Update to v2.1.1
Signed-off-by: Neal Gompa <ngompa13@gmail.com>
Diffstat (limited to 'patches')
-rw-r--r--patches/tdnf-2.0.0-alpha.1_pre.local.patch130
-rw-r--r--patches/tdnf-2.1.1_pre.local.patch28
2 files changed, 28 insertions, 130 deletions
diff --git a/patches/tdnf-2.0.0-alpha.1_pre.local.patch b/patches/tdnf-2.0.0-alpha.1_pre.local.patch
deleted file mode 100644
index bfacd87b..00000000
--- a/patches/tdnf-2.0.0-alpha.1_pre.local.patch
+++ /dev/null
@@ -1,130 +0,0 @@
-From f2fe2c648454bc5885366c93d4075ca5777ddbda Mon Sep 17 00:00:00 2001
-From: Neal Gompa <ngompa13@gmail.com>
-Date: Sun, 29 Apr 2018 15:52:26 -0400
-Subject: [PATCH] Fix TDNF build configuration to use pkgconfig data to find
- dependencies
-
-With the notable exception of identifying that we're using rpm.org rpm,
-all the configuration of how to use dependencies to compile and link
-TDNF and its libraries should come from pkgconfig. That way, TDNF
-will reliably build across more platforms.
-
-In addition, trivial changes to drop -Werror and specify that -std=gnu99
-is required for the build are included so that it will compile properly
-on compilers that do not default to newer C standards and not make
-assumptions about what is coerced from a warning to an error by default.
----
- client/Makefile.am | 5 ++---
- configure.ac | 25 +++++++++++++------------
- solv/Makefile.am | 4 ++--
- tdnf-cli-libs.pc.in | 2 +-
- tdnf.pc.in | 2 +-
- 5 files changed, 19 insertions(+), 19 deletions(-)
-
-diff --git a/client/Makefile.am b/client/Makefile.am
-index 9bd3deb..6857c3f 100644
---- a/client/Makefile.am
-+++ b/client/Makefile.am
-@@ -26,6 +26,5 @@ libtdnf_la_LIBADD = \
- @top_builddir@/solv/libtdnfsolv.la \
- $(top_builddir)/common/libcommon.la \
- @LIBCURL_LIBS@ \
-- -lrpm \
-- -lsolv \
-- -lsolvext
-+ @RPM_LIBS@ \
-+ @LIBSOLVEXT_LIBS@
-diff --git a/configure.ac b/configure.ac
-index d78bb8c..d5c4a51 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -2,7 +2,7 @@ AC_INIT(tdnf, 2.0.0)
- AC_MSG_NOTICE([tdnf configuration])
-
- AC_CANONICAL_SYSTEM
--AM_INIT_AUTOMAKE([-Wall -Werror foreign])
-+AM_INIT_AUTOMAKE([-Wall foreign])
-
- AC_CONFIG_TESTDIR(tests)
-
-@@ -15,29 +15,30 @@ AC_PROG_LIBTOOL
- CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_GNU_SOURCE -fPIC"
-
- AM_CPPFLAGS="$AM_CPPFLAGS -I${top_srcdir}/include"
--AM_CFLAGS="$AM_CFLAGS -Wall -Werror -fno-strict-aliasing"
-+AM_CFLAGS="$AM_CFLAGS -std=gnu99 -Wall -fno-strict-aliasing"
-
- CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_GNU_SOURCE -fPIC"
- AC_SUBST(AM_CPPFLAGS)
- AC_SUBST(AM_CFLAGS)
-
- #libsolv
--echo "Looking for libsolv headers"
--AC_CHECK_HEADERS(solv/pool.h)
-+PKG_CHECK_MODULES([LIBSOLV], [libsolv], [have_libsolv=yes], [have_libsolv=no])
-+PKG_CHECK_MODULES([LIBSOLVEXT], [libsolvext], [have_libsolvext=yes], [have_libsolvext=no])
-+AM_CONDITIONAL([LIBSOLV], [test "$have_libsolv" = "yes"])
-+AM_CONDITIONAL([LIBSOLVEXT], [test "$have_libsolvext" = "yes"])
-
--echo "Looking for libsolv libs"
--AC_CHECK_LIB(solv, pool_create)
--
--#licurl
-+#libcurl
- PKG_CHECK_MODULES([LIBCURL], [libcurl], [have_libcurl=yes], [have_libcurl=no])
- AM_CONDITIONAL([LIBCURL], [test "$have_libcurl" = "yes"])
-
- #rpm
--echo "Looking for librpm headers"
--AC_CHECK_HEADERS(rpm/rpmlib.h)
-+PKG_CHECK_MODULES([RPM], [rpm], [have_rpm=yes], [have_rpm=no])
-+AM_CONDITIONAL([RPM], [test "$have_rpm" = "yes"])
-+
-+# test to prove rpm.org rpm
-+echo "Looking for rpm.org librpm headers"
-+AC_CHECK_HEADERS(rpm/header.h)
-
--echo "Looking for librpm libs"
--AC_CHECK_LIB(rpm, rpmtsCreate)
-
- #makefiles
- AC_CONFIG_FILES([Makefile
-diff --git a/solv/Makefile.am b/solv/Makefile.am
-index 6625b3b..ef546a9 100644
---- a/solv/Makefile.am
-+++ b/solv/Makefile.am
-@@ -10,5 +10,5 @@ libtdnfsolv_la_SOURCES = \
-
- libtdnfsolv_la_LDFLAGS = \
- -static \
-- -lrpm \
-- -lsolv
-+ @RPM_LIBS@ \
-+ @LIBSOLV_LIBS@
-diff --git a/tdnf-cli-libs.pc.in b/tdnf-cli-libs.pc.in
-index 0912b68..4523e4d 100644
---- a/tdnf-cli-libs.pc.in
-+++ b/tdnf-cli-libs.pc.in
-@@ -6,6 +6,6 @@ includedir=@includedir@/tdnf
- Name: tdnf-cli-libs
- Description: tdnf cli libs
- Version: @VERSION@
--Requires:
-+Requires: tdnf
- Libs: -L${libdir} -ltdnfcli
- Cflags: -I${includedir}
-diff --git a/tdnf.pc.in b/tdnf.pc.in
-index 811568d..4ad7a07 100644
---- a/tdnf.pc.in
-+++ b/tdnf.pc.in
-@@ -6,6 +6,6 @@ includedir=@includedir@/tdnf
- Name: tdnf
- Description: tiny dandified yum
- Version: @VERSION@
--Requires:libsolv rpm
-+Requires: libsolv libsolvext rpm libcurl
- Libs: -L${libdir} -ltdnf
- Cflags: -I${includedir}
---
-2.17.0
-
diff --git a/patches/tdnf-2.1.1_pre.local.patch b/patches/tdnf-2.1.1_pre.local.patch
new file mode 100644
index 00000000..52459566
--- /dev/null
+++ b/patches/tdnf-2.1.1_pre.local.patch
@@ -0,0 +1,28 @@
+From 047b306ec03d4d83c66653f75de448e697cb8c0c Mon Sep 17 00:00:00 2001
+From: Neal Gompa <ngompa13@gmail.com>
+Date: Fri, 29 May 2020 19:17:58 -0400
+Subject: [PATCH] CMakeLists: Disable building Python stuff for now
+
+We do not need the Python bindings at the moment...
+
+Signed-off-by: Neal Gompa <ngompa13@gmail.com>
+---
+ CMakeLists.txt | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 25ee54e..b126bb0 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -66,8 +66,6 @@ set(LIB_TDNF_CLI tdnfcli)
+ add_subdirectory("${PROJECT_SOURCE_DIR}/common")
+ add_subdirectory("${PROJECT_SOURCE_DIR}/client")
+ add_subdirectory("${PROJECT_SOURCE_DIR}/plugins")
+-add_subdirectory("${PROJECT_SOURCE_DIR}/python")
+ add_subdirectory("${PROJECT_SOURCE_DIR}/resources")
+ add_subdirectory("${PROJECT_SOURCE_DIR}/solv")
+ add_subdirectory("${PROJECT_SOURCE_DIR}/tools")
+-add_subdirectory("${PROJECT_SOURCE_DIR}/pytests")
+--
+2.26.1
+