Hello community,

here is the log from the commit of package yast2-dns-server for 
openSUSE:Factory checked in at 2012-04-17 22:03:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-dns-server (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-dns-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-dns-server", Maintainer is "loci...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-dns-server/yast2-dns-server.changes        
2012-02-29 14:12:46.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-dns-server.new/yast2-dns-server.changes   
2012-04-17 22:04:42.000000000 +0200
@@ -1,0 +2,8 @@
+Thu Apr 12 12:05:03 CEST 2012 - loci...@suse.com
+
+- Fixed zone-file agent to handle semicolons in TXT records
+  correctly instead of considering them to represent comments
+  (bnc#755766).
+- 2.23.1
+
+------------------------------------------------------------------

Old:
----
  yast2-dns-server-2.22.1.tar.bz2

New:
----
  yast2-dns-server-2.23.1.tar.bz2

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

Other differences:
------------------
++++++ yast2-dns-server.spec ++++++
--- /var/tmp/diff_new_pack.gQg0gA/_old  2012-04-17 22:04:43.000000000 +0200
+++ /var/tmp/diff_new_pack.gQg0gA/_new  2012-04-17 22:04:43.000000000 +0200
@@ -16,17 +16,20 @@
 #
 
 
-
 Name:           yast2-dns-server
-Version:        2.22.1
+Version:        2.23.1
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source0:        yast2-dns-server-%{version}.tar.bz2
 
-Group:          System/YaST
-License:        GPL-2.0+
-BuildRequires:  perl-XML-Writer update-desktop-files yast2 yast2-devtools 
yast2-ldap-client yast2-perl-bindings yast2-testsuite
+BuildRequires:  perl-XML-Writer
+BuildRequires:  update-desktop-files
+BuildRequires:  yast2
+BuildRequires:  yast2-devtools
+BuildRequires:  yast2-ldap-client
+BuildRequires:  yast2-perl-bindings
+BuildRequires:  yast2-testsuite
 
 # requires DnsServerAPI::GetReverseIPforIPv6
 BuildRequires:  yast2 >= 2.17.8
@@ -35,15 +38,16 @@
 # Exporter Data::Dumper
 Requires:       perl-base
 # Time
-Requires:       perl
-Requires:       yast2-perl-bindings
 Requires:       bind-utils
+Requires:       perl
 Requires:       yast2-ldap
 Requires:       yast2-ldap-client
+Requires:       yast2-perl-bindings
 # /sbin/ip
 Requires:       iproute2
 # DnsServerUI::CurrentlyUsedIPs
-Requires:       grep sed
+Requires:       grep
+Requires:       sed
 
 # Script /sbin/netconfig 0.71.2+?
 # FATE #303386: Network setup tools
@@ -56,6 +60,8 @@
 BuildArch:      noarch
 
 Summary:        YaST2 - DNS Server Configuration
+License:        GPL-2.0
+Group:          System/YaST
 
 %description
 This package contains the YaST2 component for DNS server configuration.

++++++ yast2-dns-server-2.22.1.tar.bz2 -> yast2-dns-server-2.23.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-dns-server-2.22.1/VERSION 
new/yast2-dns-server-2.23.1/VERSION
--- old/yast2-dns-server-2.22.1/VERSION 2012-02-28 13:18:10.000000000 +0100
+++ new/yast2-dns-server-2.23.1/VERSION 2012-04-17 11:17:59.000000000 +0200
@@ -1 +1 @@
-2.22.1
+2.23.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-dns-server-2.22.1/agents/ag_dns_zone 
new/yast2-dns-server-2.23.1/agents/ag_dns_zone
--- old/yast2-dns-server-2.22.1/agents/ag_dns_zone      2011-10-18 
16:57:43.000000000 +0200
+++ new/yast2-dns-server-2.23.1/agents/ag_dns_zone      2012-04-17 
11:17:59.000000000 +0200
@@ -261,7 +261,20 @@
                {
                    my %rec = ();
                    my $in = ""; my $ttl = "";
-                   ($rec{"key"}, $ttl, $in, $rec{"type"}, $rec{"value"}) = 
$line =~ /^([^ \t]*)([ \t]+[0-9a-zA-Z]+)?[ \t]*(IN)?[ \t]+([A-Za-z]+)[ 
\t]+([^;\n]+).*$/;
+                   $line =~ s/^([^ \t]*)([ \t]+[0-9a-zA-Z]+)?[ \t]*(IN)?[ 
\t]+([A-Za-z]+)[ \t]+//;
+                   ($rec{"key"}, $ttl, $in, $rec{"type"}, $rec{"value"}) = 
($1, $2, $3, $4);
+
+                   # BNC #755766
+                   # TXT records (values) can contain semicolons
+                   if ($rec{"type"} =~ /txt/i) {
+                       $line =~ s/^(\"[^\n]*\")[ \t]*(;.*)?$//;
+                       $rec{"value"} = $1;
+                       $rec{"value"} =~ s/\"[ \t]\"//g; # several texts merged 
into one
+                   # The other records consider each semicolon to be a comment
+                   } else {
+                       $line =~ s/^([^;\n]+).*$//;
+                       $rec{"value"} = $1;
+                   }
 
                    # undefined key takes the key from the previous line
                    if (!$rec{"key"}) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-dns-server-2.22.1/configure 
new/yast2-dns-server-2.23.1/configure
--- old/yast2-dns-server-2.22.1/configure       2012-02-28 13:19:38.000000000 
+0100
+++ new/yast2-dns-server-2.23.1/configure       2012-04-17 11:18:07.000000000 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-dns-server 2.22.1.
+# Generated by GNU Autoconf 2.68 for yast2-dns-server 2.23.1.
 #
 # Report bugs to <http://bugs.opensuse.org/>.
 #
@@ -559,8 +559,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-dns-server'
 PACKAGE_TARNAME='yast2-dns-server'
-PACKAGE_VERSION='2.22.1'
-PACKAGE_STRING='yast2-dns-server 2.22.1'
+PACKAGE_VERSION='2.23.1'
+PACKAGE_STRING='yast2-dns-server 2.23.1'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1229,7 +1229,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 yast2-dns-server 2.22.1 to adapt to many kinds of 
systems.
+\`configure' configures yast2-dns-server 2.23.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1301,7 +1301,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of yast2-dns-server 2.22.1:";;
+     short | recursive ) echo "Configuration of yast2-dns-server 2.23.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1381,7 +1381,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-dns-server configure 2.22.1
+yast2-dns-server configure 2.23.1
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1398,7 +1398,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-dns-server $as_me 2.22.1, which was
+It was created by yast2-dns-server $as_me 2.23.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2328,7 +2328,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-dns-server'
- VERSION='2.22.1'
+ VERSION='2.23.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2450,7 +2450,7 @@
 
 
 
-VERSION="2.22.1"
+VERSION="2.23.1"
 RPMNAME="yast2-dns-server"
 MAINTAINER="Lukas Ocilka <loci...@suse.cz>"
 
@@ -3380,7 +3380,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yast2-dns-server $as_me 2.22.1, which was
+This file was extended by yast2-dns-server $as_me 2.23.1, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3433,7 +3433,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-yast2-dns-server config.status 2.22.1
+yast2-dns-server config.status 2.23.1
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-dns-server-2.22.1/configure.in 
new/yast2-dns-server-2.23.1/configure.in
--- old/yast2-dns-server-2.22.1/configure.in    2012-02-28 13:19:36.000000000 
+0100
+++ new/yast2-dns-server-2.23.1/configure.in    2012-04-17 11:18:05.000000000 
+0200
@@ -3,7 +3,7 @@
 dnl -- This file is generated by y2autoconf 2.21.8 - DO NOT EDIT! --
 dnl    (edit configure.in.in instead)
 
-AC_INIT(yast2-dns-server, 2.22.1, http://bugs.opensuse.org/, yast2-dns-server)
+AC_INIT(yast2-dns-server, 2.23.1, http://bugs.opensuse.org/, yast2-dns-server)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="2.22.1"
+VERSION="2.23.1"
 RPMNAME="yast2-dns-server"
 MAINTAINER="Lukas Ocilka <loci...@suse.cz>"
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to