Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package NetworkManager-strongswan for 
openSUSE:Factory checked in at 2026-09-21 12:01:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/NetworkManager-strongswan (Old)
 and      /work/SRC/openSUSE:Factory/.NetworkManager-strongswan.new.383539 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "NetworkManager-strongswan"

Mon Sep 21 12:01:03 2026 rev:31 rq:1378871 version:1.6.6

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/NetworkManager-strongswan/NetworkManager-strongswan.changes
      2026-08-22 21:34:44.052182463 +0200
+++ 
/work/SRC/openSUSE:Factory/.NetworkManager-strongswan.new.383539/NetworkManager-strongswan.changes
  2026-09-21 12:01:19.642478795 +0200
@@ -1,0 +2,7 @@
+Fri Sep 11 07:56:15 UTC 2026 - Dominique Leuenberger <[email protected]>
+
+- Update to version 1.6.6:
+  + Reverted one of the changes that was added with 1.6.4 (sorry,
+    no indication by upstream WHAT exactly was reverted).
+
+-------------------------------------------------------------------

Old:
----
  NetworkManager-strongswan-1.6.5.tar.bz2
  NetworkManager-strongswan-1.6.5.tar.bz2.sig

New:
----
  NetworkManager-strongswan-1.6.6.tar.bz2
  NetworkManager-strongswan-1.6.6.tar.bz2.sig

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

Other differences:
------------------
++++++ NetworkManager-strongswan.spec ++++++
--- /var/tmp/diff_new_pack.Tg8GLd/_old  2026-09-21 12:01:20.505514990 +0200
+++ /var/tmp/diff_new_pack.Tg8GLd/_new  2026-09-21 12:01:20.507515074 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           NetworkManager-strongswan
-Version:        1.6.5
+Version:        1.6.6
 Release:        0
 Summary:        NetworkManager VPN support for strongSwan
 License:        GPL-2.0-or-later

++++++ NetworkManager-strongswan-1.6.5.tar.bz2 -> 
NetworkManager-strongswan-1.6.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-strongswan-1.6.5/NEWS 
new/NetworkManager-strongswan-1.6.6/NEWS
--- old/NetworkManager-strongswan-1.6.5/NEWS    2026-04-22 13:58:42.000000000 
+0200
+++ new/NetworkManager-strongswan-1.6.6/NEWS    2026-09-07 14:10:39.000000000 
+0200
@@ -1,3 +1,8 @@
+NetworkManager-strongswan-1.6.6
+-------------------------------
+
+- Reverted one of the changes that was added with 1.6.4
+
 NetworkManager-strongswan-1.6.5
 -------------------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-strongswan-1.6.5/auth-dialog/main.c 
new/NetworkManager-strongswan-1.6.6/auth-dialog/main.c
--- old/NetworkManager-strongswan-1.6.5/auth-dialog/main.c      2026-04-21 
09:37:55.000000000 +0200
+++ new/NetworkManager-strongswan-1.6.6/auth-dialog/main.c      2026-09-04 
17:35:41.000000000 +0200
@@ -28,7 +28,6 @@
 #include <glib/gi18n.h>
 #include <gtk/gtk.h>
 #include <libsecret/secret.h>
-#include <pwd.h>
 
 #include <NetworkManager.h>
 #include <nm-vpn-service-plugin.h>
@@ -218,11 +217,6 @@
                printf("%s\n%s\n", secret_name, secret);
                g_free(secret);
        }
-}
-
-static void print_last_secret (const char *secret_name, gchar *secret)
-{
-       print_secret(secret_name, secret);
        printf("\n\n");
        fflush(stdout);
 }
@@ -322,17 +316,6 @@
                        agent = getenv("SSH_AUTH_SOCK");
                        if (agent)
                        {
-                               int uid = getuid();
-                               struct passwd *pw = getpwuid(uid);
-
-                               if (!pw)
-                               {
-                                       fprintf(stderr, "Unable to determine 
username for "
-                                                       "authentication via 
ssh-agent\n");
-                                       status = 1;
-                                       goto out;
-                               }
-
                                if (external_ui_mode)
                                {
                                        GKeyFile *keyfile;
@@ -343,7 +326,6 @@
                                        g_key_file_set_string (keyfile, 
UI_KEYFILE_GROUP, "Description", "SSH agent");
                                        g_key_file_set_string (keyfile, 
UI_KEYFILE_GROUP, "Title", _("Authenticate VPN"));
 
-                                       keyfile_add_entry_info (keyfile, 
"agent-user", pw->pw_name, "SSH agent user", TRUE, FALSE);
                                        keyfile_add_entry_info (keyfile, 
"agent", agent, "SSH agent socket", TRUE, FALSE);
 
                                        keyfile_print_stdout (keyfile);
@@ -351,8 +333,7 @@
                                }
                                else
                                {
-                                       print_secret("agent-user", g_strdup 
(pw->pw_name));
-                                       print_last_secret("agent", g_strdup 
(agent));
+                                       print_secret("agent", g_strdup (agent));
                                        wait_for_quit ();
                                }
                        }
@@ -385,7 +366,7 @@
                }
                else if (!external_ui_mode)
                {
-                       print_last_secret("password", pass);
+                       print_secret("password", pass);
                        wait_for_quit ();
                }
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-strongswan-1.6.5/configure 
new/NetworkManager-strongswan-1.6.6/configure
--- old/NetworkManager-strongswan-1.6.5/configure       2026-04-22 
14:00:02.000000000 +0200
+++ new/NetworkManager-strongswan-1.6.6/configure       2026-09-07 
14:11:21.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for NetworkManager-strongswan 1.6.5.
+# Generated by GNU Autoconf 2.71 for NetworkManager-strongswan 1.6.6.
 #
 # Report bugs to <[email protected]>.
 #
@@ -621,8 +621,8 @@
 # Identity of this package.
 PACKAGE_NAME='NetworkManager-strongswan'
 PACKAGE_TARNAME='NetworkManager-strongswan'
-PACKAGE_VERSION='1.6.5'
-PACKAGE_STRING='NetworkManager-strongswan 1.6.5'
+PACKAGE_VERSION='1.6.6'
+PACKAGE_STRING='NetworkManager-strongswan 1.6.6'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1424,7 +1424,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures NetworkManager-strongswan 1.6.5 to adapt to many kinds 
of systems.
+\`configure' configures NetworkManager-strongswan 1.6.6 to adapt to many kinds 
of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1496,7 +1496,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of NetworkManager-strongswan 
1.6.5:";;
+     short | recursive ) echo "Configuration of NetworkManager-strongswan 
1.6.6:";;
    esac
   cat <<\_ACEOF
 
@@ -1649,7 +1649,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-NetworkManager-strongswan configure 1.6.5
+NetworkManager-strongswan configure 1.6.6
 generated by GNU Autoconf 2.71
 
 Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2005,7 +2005,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by NetworkManager-strongswan $as_me 1.6.5, which was
+It was created by NetworkManager-strongswan $as_me 1.6.6, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -3275,7 +3275,7 @@
 
 # Define the identity of the package.
  PACKAGE='NetworkManager-strongswan'
- VERSION='1.6.5'
+ VERSION='1.6.6'
 
 
 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -16742,7 +16742,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by NetworkManager-strongswan $as_me 1.6.5, which was
+This file was extended by NetworkManager-strongswan $as_me 1.6.6, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -16810,7 +16810,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-NetworkManager-strongswan config.status 1.6.5
+NetworkManager-strongswan config.status 1.6.6
 configured by $0, generated by GNU Autoconf 2.71,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetworkManager-strongswan-1.6.5/configure.ac 
new/NetworkManager-strongswan-1.6.6/configure.ac
--- old/NetworkManager-strongswan-1.6.5/configure.ac    2026-04-22 
13:58:58.000000000 +0200
+++ new/NetworkManager-strongswan-1.6.6/configure.ac    2026-09-07 
14:09:18.000000000 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.69])
 
-AC_INIT([NetworkManager-strongswan],[1.6.5],[[email protected]],[NetworkManager-strongswan])
+AC_INIT([NetworkManager-strongswan],[1.6.6],[[email protected]],[NetworkManager-strongswan])
 AM_INIT_AUTOMAKE([subdir-objects])
 AM_MAINTAINER_MODE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/NetworkManager-strongswan-1.6.5/po/NetworkManager-strongswan.pot 
new/NetworkManager-strongswan-1.6.6/po/NetworkManager-strongswan.pot
--- old/NetworkManager-strongswan-1.6.5/po/NetworkManager-strongswan.pot        
2026-04-22 14:00:08.000000000 +0200
+++ new/NetworkManager-strongswan-1.6.6/po/NetworkManager-strongswan.pot        
2026-09-07 14:11:37.000000000 +0200
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: NetworkManager-strongswan 1.6.5\n"
+"Project-Id-Version: NetworkManager-strongswan 1.6.6\n"
 "Report-Msgid-Bugs-To: https://github.com/strongswan/strongswan\n";
-"POT-Creation-Date: 2026-04-22 14:00+0200\n"
+"POT-Creation-Date: 2026-09-07 14:11+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <[email protected]>\n"
@@ -312,38 +312,38 @@
 msgid "Choose a private key…"
 msgstr ""
 
-#: auth-dialog/main.c:137
+#: auth-dialog/main.c:136
 #, c-format
 msgid "EAP password required to establish VPN connection '%s'."
 msgstr ""
 
-#: auth-dialog/main.c:142
+#: auth-dialog/main.c:141
 #, c-format
 msgid ""
 "Pre-shared key required to establish VPN connection '%s' (min. 20 "
 "characters)."
 msgstr ""
 
-#: auth-dialog/main.c:150
+#: auth-dialog/main.c:149
 #, c-format
 msgid "Smartcard PIN required to establish VPN connection '%s'."
 msgstr ""
 
-#: auth-dialog/main.c:155
+#: auth-dialog/main.c:154
 #, c-format
 msgid ""
 "Private key decryption password required to establish VPN connection '%s'."
 msgstr ""
 
-#: auth-dialog/main.c:167 auth-dialog/main.c:185 auth-dialog/main.c:344
+#: auth-dialog/main.c:166 auth-dialog/main.c:184 auth-dialog/main.c:327
 msgid "Authenticate VPN"
 msgstr ""
 
-#: auth-dialog/main.c:169
+#: auth-dialog/main.c:168
 msgid "Password:"
 msgstr ""
 
-#: auth-dialog/main.c:364
+#: auth-dialog/main.c:345
 msgid ""
 "Configuration uses ssh-agent for authentication, but ssh-agent is not "
 "running!"


++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.Tg8GLd/_old  2026-09-21 12:01:20.785526734 +0200
+++ /var/tmp/diff_new_pack.Tg8GLd/_new  2026-09-21 12:01:20.788526860 +0200
@@ -1,6 +1,7 @@
-mtime: 1787225510
-commit: 7bb6c9c38296321fcdc1ad3253e43d82412a1fbfe2c5b9d7dbd78c3fa6768ceb
+mtime: 1789113409
+commit: b8dd5eca76583dc463dc77704ccf7464638ff4b368c5d1be35d747cea89bd455
 url: https://src.opensuse.org/GNOME/NetworkManager-strongswan
-revision: 7bb6c9c38296321fcdc1ad3253e43d82412a1fbfe2c5b9d7dbd78c3fa6768ceb
+revision: b8dd5eca76583dc463dc77704ccf7464638ff4b368c5d1be35d747cea89bd455
+trackingbranch: factory
 projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-09-11 09:56:49.000000000 +0200
@@ -0,0 +1,4 @@
+*.obscpio
+*.osc
+_build.*
+.pbuild

Reply via email to