diff --git a/adcli-0.9.1.tar.gz b/adcli-0.9.1.tar.gz deleted file mode 100644 index b4a833fdde81d59bf5088f329166fec4be9d2713..0000000000000000000000000000000000000000 Binary files a/adcli-0.9.1.tar.gz and /dev/null differ diff --git a/adcli-0.9.2.tar.gz b/adcli-0.9.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..59b2150a7d2c94107b3cf61aae3a0f99da5e15af Binary files /dev/null and b/adcli-0.9.2.tar.gz differ diff --git a/adcli.spec b/adcli.spec index 5f6996f5c0280613871c5f4601f9d6b4a6cf0c6c..cb3641a96474694403af139e348660efb76fa1ef 100644 --- a/adcli.spec +++ b/adcli.spec @@ -1,13 +1,11 @@ Name: adcli -Version: 0.9.1 -Release: 3 +Version: 0.9.2 +Release: 1 Summary: A helper library and tools for Active Directory client operations Group: Development/Libraries License: LGPLv2+ URL: https://gitlab.freedesktop.org/realmd/adcli -Source0: https://gitlab.freedesktop.org/sbose/adcli/uploads/30880d967e79cee789194435e70fbf30/adcli-%{version}.tar.gz - -Patch0: backport-configure-check-for-ns_get16-and-ns_get32-as-well.patch +Source0: https://gitlab.freedesktop.org/realmd/adcli/uploads/ea560656ac921b3fe0d455976aaae9be/adcli-%{version}.tar.gz BuildRequires: gcc intltool pkgconfig libtool gettext-devel krb5-devel BuildRequires: openldap-devel libxslt xmlto git @@ -72,6 +70,9 @@ rm -rf %{buildroot} %doc %{_mandir}/man8/* %changelog +* Thu Oct 20 2022 yixiangzhike - 0.9.2-1 +- update to 0.9.2 + * Fri May 6 2022 yixiangzhike - 0.9.1-3 - delete duplicate files from adcli-help diff --git a/backport-configure-check-for-ns_get16-and-ns_get32-as-well.patch b/backport-configure-check-for-ns_get16-and-ns_get32-as-well.patch deleted file mode 100644 index 22f8a6ac2a6110887cff1208fb8e20e2327f8765..0000000000000000000000000000000000000000 --- a/backport-configure-check-for-ns_get16-and-ns_get32-as-well.patch +++ /dev/null @@ -1,38 +0,0 @@ -From e841ba7513f3f8b6393183d2dea9adcbf7ba2e44 Mon Sep 17 00:00:00 2001 -From: Sumit Bose -Date: Wed, 28 Jul 2021 12:55:16 +0200 -Subject: [PATCH] configure: check for ns_get16 and ns_get32 as well - -With newer versions of glibc res_query() might ba already available in -glibc with ns_get16() and ns_get32() still requires libresolv. - -Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1984891 ---- - configure.ac | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/configure.ac b/configure.ac -index c6ff31d..fc6e790 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -98,13 +98,15 @@ AC_SUBST(LDAP_CFLAGS) - # ------------------------------------------------------------------- - # resolv - --AC_MSG_CHECKING(for which library has res_query) -+AC_MSG_CHECKING([for which library has res_query, ns_get16 and ns_get32]) - for lib in "" "-lresolv"; do - saved_LIBS="$LIBS" - LIBS="$LIBS $lib" - AC_LINK_IFELSE([ - AC_LANG_PROGRAM([#include ], -- [res_query (0, 0, 0, 0, 0)]) -+ [res_query (0, 0, 0, 0, 0); -+ ns_get32 (NULL); -+ ns_get16 (NULL);]) - ], - [ AC_MSG_RESULT(${lib:-libc}); have_res_query="yes"; break; ], - [ LIBS="$saved_LIBS" ]) --- -2.31.1 -