Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gpg2 for openSUSE:Factory checked in 
at 2023-10-20 23:15:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gpg2 (Old)
 and      /work/SRC/openSUSE:Factory/.gpg2.new.1945 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gpg2"

Fri Oct 20 23:15:36 2023 rev:171 rq:1118846 version:2.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/gpg2/gpg2.changes        2023-10-17 
20:22:37.238287851 +0200
+++ /work/SRC/openSUSE:Factory/.gpg2.new.1945/gpg2.changes      2023-10-20 
23:15:41.284157830 +0200
@@ -1,0 +2,7 @@
+Tue Oct 17 10:27:15 UTC 2023 - Pedro Monreal <pmonr...@suse.com>
+
+- Do not pull revision info from GIT when autoconf is run. This
+  removes the -unknown suffix after the version number.        
+  * Add gnupg-nobetasuffix.patch [bsc#1216334]
+
+-------------------------------------------------------------------

New:
----
  gnupg-nobetasuffix.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gpg2.spec ++++++
--- /var/tmp/diff_new_pack.X4UvKj/_old  2023-10-20 23:15:43.424235912 +0200
+++ /var/tmp/diff_new_pack.X4UvKj/_new  2023-10-20 23:15:43.428236059 +0200
@@ -46,6 +46,8 @@
 Patch12:        gnupg-revert-rfc4880bis.patch
 #PATCH-FIX-UPSTREAM Fix emacs gpg2 output parsing
 Patch13:        gnupg-Report-BEGIN_-status-before-examining-the-input.patch
+#PATCH-FIX-OPENSUSE Do not pull revision info from GIT when autoconf is run
+Patch14:        gnupg-nobetasuffix.patch
 BuildRequires:  expect
 BuildRequires:  fdupes
 BuildRequires:  ibmswtpm2


++++++ gnupg-nobetasuffix.patch ++++++
Index: gnupg-2.4.3/autogen.sh
===================================================================
--- gnupg-2.4.3.orig/autogen.sh
+++ gnupg-2.4.3/autogen.sh
@@ -221,7 +221,7 @@ if [ "$myhost" = "find-version" ]; then
     esac
 
     beta=no
-    if [ -e .git ]; then
+    if false; then
       ingit=yes
       tmp=$(git describe --match "${matchstr1}" --long 2>/dev/null)
       tmp=$(echo "$tmp" | sed s/^"$package"//)
@@ -237,8 +237,8 @@ if [ "$myhost" = "find-version" ]; then
       rvd=$((0x$(echo ${rev} | dd bs=1 count=4 2>/dev/null)))
     else
       ingit=no
-      beta=yes
-      tmp="-unknown"
+      beta=no
+      tmp=""
       rev="0000000"
       rvd="0"
     fi

Reply via email to