Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package augeas for openSUSE:Factory checked 
in at 2021-06-01 10:34:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/augeas (Old)
 and      /work/SRC/openSUSE:Factory/.augeas.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "augeas"

Tue Jun  1 10:34:39 2021 rev:52 rq:895787 version:1.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/augeas/augeas.changes    2021-03-10 
08:46:28.570221420 +0100
+++ /work/SRC/openSUSE:Factory/.augeas.new.1898/augeas.changes  2021-06-01 
10:34:49.580543835 +0200
@@ -1,0 +2,9 @@
+Wed May 26 23:58:36 UTC 2021 - Jason Sikes <[email protected]>
+
+- Allow all printable ASCII characters in WPA-PSK definition
+  * augeas-allow_printable_ASCII.patch
+  * bsc#1185524
+  * Sourced from https://github.com/hercules-team/augeas/pull/723/commits
+  * Credit to Michal Filka <[email protected]>
+
+-------------------------------------------------------------------

New:
----
  augeas-allow_printable_ASCII.patch

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

Other differences:
------------------
++++++ augeas.spec ++++++
--- /var/tmp/diff_new_pack.6YibVk/_old  2021-06-01 10:34:50.064544659 +0200
+++ /var/tmp/diff_new_pack.6YibVk/_new  2021-06-01 10:34:50.068544666 +0200
@@ -30,6 +30,7 @@
 Patch0:         augeas-modprobe-lense.patch
 Patch1:         gcc9-disable-broken-test.patch
 Patch2:         augeas-new_options_for_chrony.patch
+Patch3:         augeas-allow_printable_ASCII.patch
 BuildRequires:  pkgconfig
 BuildRequires:  readline-devel
 BuildRequires:  pkgconfig(libxml-2.0)
@@ -95,6 +96,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 %configure \


++++++ augeas-allow_printable_ASCII.patch ++++++
diff --git a/lenses/networkmanager.aug b/lenses/networkmanager.aug
index 81d1cb5..8649168 100644
--- a/lenses/networkmanager.aug
+++ b/lenses/networkmanager.aug
@@ -34,13 +34,17 @@ let eol        = Util.eol
  *                        ENTRY
  * GLib entries can contain semicolons, entry names can contain spaces and
  * brackets
+ *
+ * At least entry for WPA-PSK definition can contain all printable ASCII
+ * characters including '#', ' ' and others. Comments following the entry
+ * are no option for this reason.
  *************************************************************************)
 (* Variable: entry_re *)
 let entry_re   = /[A-Za-z][A-Za-z0-9:._\(\) \t-]+/
 
 (* Lens: entry *)
 let entry   = [ key entry_re . sep
-                . Quote.double_opt? . eol ]
+                . IniFile.sto_to_eol? . eol ]
               | comment
 
 (************************************************************************

Reply via email to