Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgcrypt for openSUSE:Factory checked in at 2024-01-29 22:25:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgcrypt (Old) and /work/SRC/openSUSE:Factory/.libgcrypt.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgcrypt" Mon Jan 29 22:25:48 2024 rev:102 rq:1141963 version:1.10.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libgcrypt/libgcrypt.changes 2023-11-23 21:38:33.266864091 +0100 +++ /work/SRC/openSUSE:Factory/.libgcrypt.new.1815/libgcrypt.changes 2024-01-29 22:25:50.142528789 +0100 @@ -1,0 +2,5 @@ +Sat Jan 27 13:37:34 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- add libgcrypt-no-deprecated-grep-alias.patch + +------------------------------------------------------------------- New: ---- libgcrypt-no-deprecated-grep-alias.patch BETA DEBUG BEGIN: New: - add libgcrypt-no-deprecated-grep-alias.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgcrypt.spec ++++++ --- /var/tmp/diff_new_pack.7LkTrl/_old 2024-01-29 22:25:52.390610272 +0100 +++ /var/tmp/diff_new_pack.7LkTrl/_new 2024-01-29 22:25:52.390610272 +0100 @@ -1,7 +1,7 @@ # # spec file for package libgcrypt # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -37,6 +37,8 @@ Patch1: libgcrypt-1.10.0-allow_FSM_same_state.patch #PATCH-FIX-OPENSUSE Do not pull revision info from GIT when autoconf is run Patch2: libgcrypt-nobetasuffix.patch +# https://dev.gnupg.org/T6964 +Patch3: libgcrypt-no-deprecated-grep-alias.patch # FIPS patches: #PATCH-FIX-SUSE bsc#1190700 FIPS: Provide a service-level indicator for PK Patch100: libgcrypt-FIPS-SLI-pk.patch ++++++ libgcrypt-no-deprecated-grep-alias.patch ++++++ --- libgcrypt-1.10.3.orig/acinclude.m4 +++ libgcrypt-1.10.3/acinclude.m4 @@ -130,10 +130,10 @@ EOF ac_nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \| cut -d \' \' -f 2 \> $ac_nlist) && test -s "$ac_nlist"; then # See whether the symbols have a leading underscore. - if egrep '^_nm_test_func' "$ac_nlist" >/dev/null; then + if grep -E '^_nm_test_func' "$ac_nlist" >/dev/null; then ac_cv_sys_symbol_underscore=yes else - if egrep '^nm_test_func ' "$ac_nlist" >/dev/null; then + if grep -E '^nm_test_func ' "$ac_nlist" >/dev/null; then : else echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD --- libgcrypt-1.10.3.orig/src/libgcrypt-config.in +++ libgcrypt-1.10.3/src/libgcrypt-config.in @@ -154,7 +154,7 @@ if test "$echo_cflags" = "yes"; then tmp="" for i in $includes $cflags_final; do - if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then + if echo "$tmp" | @GREP@ -F -v -- "$i" >/dev/null; then tmp="$tmp $i" fi done @@ -175,7 +175,7 @@ if test "$echo_libs" = "yes"; then tmp="" for i in $libdirs $libs_final; do - if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then + if echo "$tmp" | @GREP@ -F -v -- "$i" >/dev/null; then tmp="$tmp $i" fi done