Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gpg2 for openSUSE:Factory checked in 
at 2021-12-23 17:53:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gpg2 (Old)
 and      /work/SRC/openSUSE:Factory/.gpg2.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gpg2"

Thu Dec 23 17:53:35 2021 rev:158 rq:942136 version:2.3.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/gpg2/gpg2.changes        2021-11-27 
00:51:35.266747498 +0100
+++ /work/SRC/openSUSE:Factory/.gpg2.new.2520/gpg2.changes      2021-12-23 
17:53:48.763721469 +0100
@@ -1,0 +2,25 @@
+Wed Dec 22 16:08:08 UTC 2021 - Andreas Stieger <andreas.stie...@gmx.de>
+
+- GnuPG 2.3.4:
+  * gpg: New option --min-rsa-length
+  * gpg: New option --forbid-gen-key
+  * gpg: New option --override-compliance-check
+  * gpgconf: New command --show-configs
+  * agent,dirmngr,keyboxd: New option --steal-socket
+  * gpg: Fix printing of binary notations
+  * gpg: Remove stale ultimately trusted keys from the trustdb
+  * gpg: Fix indentation of --print-mds and --print-md sha512
+  * gpg: Emit gpg 2.2 compatible Ed25519 signature
+  * gpgsm: Detect circular chains in --list-chain
+  * dirmngr: Make reading resolv.conf more robust
+  * dirmngr: Ask keyservers to provide the key fingerprints
+  * gpgconf: Allow changing gpg's deprecated keyserver option
+  * gpg-wks-server: Fix created file permissions
+  * scd: Support longer data for ssh-agent authentication with
+    openpgp cards
+  * scd: Modify DEVINFO behavior to support looping forever
+  * Silence warning about the rootdir under Unices w/o a mounted
+    /proc file system
+  * Fix possible build problems about missing include files
+
+-------------------------------------------------------------------

Old:
----
  gnupg-2.3.3.tar.bz2
  gnupg-2.3.3.tar.bz2.sig

New:
----
  gnupg-2.3.4.tar.bz2
  gnupg-2.3.4.tar.bz2.sig

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

Other differences:
------------------
++++++ gpg2.spec ++++++
--- /var/tmp/diff_new_pack.zTNDd1/_old  2021-12-23 17:53:49.383721854 +0100
+++ /var/tmp/diff_new_pack.zTNDd1/_new  2021-12-23 17:53:49.387721856 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           gpg2
-Version:        2.3.3
+Version:        2.3.4
 Release:        0
 Summary:        File encryption, decryption, signature creation and 
verification utility
 License:        GPL-3.0-or-later

++++++ gnupg-2.3.3.tar.bz2 -> gnupg-2.3.4.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/gpg2/gnupg-2.3.3.tar.bz2 
/work/SRC/openSUSE:Factory/.gpg2.new.2520/gnupg-2.3.4.tar.bz2 differ: char 11, 
line 1

++++++ gnupg-add_legacy_FIPS_mode_option.patch ++++++
--- /var/tmp/diff_new_pack.zTNDd1/_old  2021-12-23 17:53:49.435721886 +0100
+++ /var/tmp/diff_new_pack.zTNDd1/_new  2021-12-23 17:53:49.439721888 +0100
@@ -3,11 +3,11 @@
  g10/gpg.c    |    9 +++++++++
  2 files changed, 27 insertions(+)
 
-Index: gnupg-2.3.0/doc/gpg.texi
+Index: gnupg-2.3.4/doc/gpg.texi
 ===================================================================
---- gnupg-2.3.0.orig/doc/gpg.texi
-+++ gnupg-2.3.0/doc/gpg.texi
-@@ -2178,6 +2178,24 @@ implies, this option is for experts only
+--- gnupg-2.3.4.orig/doc/gpg.texi
++++ gnupg-2.3.4/doc/gpg.texi
+@@ -2196,6 +2196,24 @@ implies, this option is for experts only
  understand the implications of what it allows you to do, leave this
  off. @option{--no-expert} disables this option.
  
@@ -32,28 +32,28 @@
  @end table
  
  
-Index: gnupg-2.3.0/g10/gpg.c
+Index: gnupg-2.3.4/g10/gpg.c
 ===================================================================
---- gnupg-2.3.0.orig/g10/gpg.c
-+++ gnupg-2.3.0/g10/gpg.c
-@@ -437,6 +437,7 @@ enum cmd_and_opt_values
-     oNoIncludeKeyBlock,
+--- gnupg-2.3.4.orig/g10/gpg.c
++++ gnupg-2.3.4/g10/gpg.c
+@@ -442,6 +442,7 @@ enum cmd_and_opt_values
      oChUid,
      oForceSignKey,
+     oForbidGenKey,
 +    oSetLegacyFips,
  
      oNoop
    };
-@@ -870,6 +871,7 @@ static gpgrt_opt_t opts[] = {
-   ARGPARSE_s_s (oAEADAlgo,   "aead-algo", "@"),
+@@ -877,6 +878,7 @@ static gpgrt_opt_t opts[] = {
    ARGPARSE_s_s (oDigestAlgo, "digest-algo", "@"),
    ARGPARSE_s_s (oCertDigestAlgo, "cert-digest-algo", "@"),
+   ARGPARSE_s_n (oOverrideComplianceCheck, "override-compliance-check", "@"),
 +  ARGPARSE_s_n (oSetLegacyFips, "set-legacy-fips", "@"),
  
  
    ARGPARSE_header (NULL, N_("Options for unattended use")),
-@@ -3688,6 +3690,14 @@ main (int argc, char **argv)
-             opt.flags.full_timestrings = 1;
+@@ -3725,6 +3727,14 @@ main (int argc, char **argv)
+             mopt.forbid_gen_key = 1;
              break;
  
 +         case oSetLegacyFips:

Reply via email to