Hello community,

here is the log from the commit of package knot for openSUSE:Factory checked in 
at 2014-02-19 18:56:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/knot (Old)
 and      /work/SRC/openSUSE:Factory/.knot.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "knot"

Changes:
--------
--- /work/SRC/openSUSE:Factory/knot/knot.changes        2014-01-29 
22:15:52.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.knot.new/knot.changes   2014-02-19 
18:56:08.000000000 +0100
@@ -1,0 +2,22 @@
+Tue Feb 18 14:56:36 UTC 2014 - ond...@sury.org
+
+- Enable recvmmsg support in the build to increase performance
+- Update upstream config directory to /etc/knot (instead of /etc/knot/knot)
+- Replace tar.xz with tar.gz to allow backporting to older releases
+- Disable silent rules to have more verbose builds
+- Add support to compile with OpenSSL << 1.0.0
+
+- added patches:
+  * 0001-loosen-openssl-dependency.patch
+
+-------------------------------------------------------------------
+Tue Feb 18 12:07:36 UTC 2014 - ond...@sury.org
+
+- update to 1.4.3:
+  * Failure when expanding wildcard leading to apex and having DNSKEY records
+  * Failure for query to wildcard without wildcard expansion
+  * Bad cleanup when loading a faulty entry from a journal 
+  * Zone file $ORIGIN and configuration comparison is case-insensitive
+  * Config "include" statement supports directory and includes all files within
+
+-------------------------------------------------------------------

Old:
----
  knot-1.4.2.tar.xz

New:
----
  0001-loosen-openssl-dependency.patch
  knot-1.4.3.tar.gz

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

Other differences:
------------------
++++++ knot.spec ++++++
--- /var/tmp/diff_new_pack.a3erqY/_old  2014-02-19 18:56:08.000000000 +0100
+++ /var/tmp/diff_new_pack.a3erqY/_new  2014-02-19 18:56:08.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package knot
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:           knot
 Url:            http://www.knot-dns.cz
-Version:        1.4.2
+Version:        1.4.3
 Release:        0
 Summary:        An authoritative DNS daemon
 License:        GPL-3.0+
@@ -39,9 +39,10 @@
 %{?systemd_requires}
 %define has_systemd 1
 %endif
-Source0:        https://secure.nic.cz/files/knot-dns/%{name}-%{version}.tar.xz
+Source0:        https://secure.nic.cz/files/knot-dns/%{name}-%{version}.tar.gz
 Source1:        knot.conf
 Source2:        knot.service
+Patch0:         0001-loosen-openssl-dependency.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -49,16 +50,19 @@
 
 %prep
 %setup -q 
+%patch0 -p1
 
 %build
 %if 0%{suse_version} == 1210
 export SUSE_ASNEEDED=0
 %endif
 %configure \
-  --sysconfdir=%{_sysconfdir}/%{name} \
+  --sysconfdir=%{_sysconfdir} \
   --libexecdir=%{_libexecdir}/%{name} \
   --localstatedir=/var/lib \
-  --libexecdir=%{_libexecdir}/%{name}
+  --libexecdir=%{_libexecdir}/%{name} \
+  --enable-recvmmsg=yes \
+  --disable-silent-rules
 make %{?_smp_mflags}
 
 %install
@@ -66,7 +70,7 @@
 rm %{buildroot}/%{_infodir}/dir
 install -d %{buildroot}%{_docdir}/%{name}
 install -d %{buildroot}%{_docdir}/%{name}/samples/
-rm -r %{buildroot}%{_sysconfdir}/%{name}/%{name}
+rm %{buildroot}%{_sysconfdir}/%{name}/*
 install -p -m644 %{SOURCE1} %{buildroot}%{_sysconfdir}/%{name}/%{name}.conf
 %if 0%{?has_systemd}
 install -d %{buildroot}%{_unitdir}
@@ -74,6 +78,7 @@
 %endif
 install -p -m644 COPYING AUTHORS NEWS THANKS README 
%{buildroot}%{_docdir}/%{name}
 install -p -m644 samples/*.conf samples/*.zone* 
%{buildroot}%{_docdir}/%{name}/samples/
+ln -s /sbin/service %{buildroot}%{_sbindir}/rcknot
 
 %pre
 getent group knot >/dev/null || groupadd -r knot

++++++ 0001-loosen-openssl-dependency.patch ++++++
--- knot.orig/configure
+++ knot/configure
@@ -13429,23 +13429,6 @@ if test "$with_openssl" = "no"; then :
 
 fi
 
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h.  */
-#include <openssl/crypto.h>
-   #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
-   openssl_version_ok
-   #endif
-
-_ACEOF
-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-  $EGREP "openssl_version_ok" >/dev/null 2>&1; then :
-
-else
-  as_fn_error $? "OpenSSL library version >= 1.0.0 is required." "$LINENO" 5
-
-fi
-rm -f conftest*
-
 
 
 # Check whether --with-libidn was given.
--- knot.orig/configure.ac
+++ knot/configure.ac
@@ -283,14 +283,6 @@ AS_IF([test "$with_openssl" = "no"],[
   AC_MSG_ERROR([OpenSSL library is required.])
 ])
 
-AC_EGREP_CPP(openssl_version_ok,
-  [#include <openssl/crypto.h>
-   #if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
-   openssl_version_ok
-   #endif
-  ],[],[AC_MSG_ERROR([OpenSSL library version >= 1.0.0 is required.])]
-)
-
 AC_ARG_WITH(libidn, AC_HELP_STRING([--with-libidn=[DIR]],
     [Support IDN (needs GNU Libidn)]),
     libidn=$withval, libidn=yes)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to