Hello community, here is the log from the commit of package pdns for openSUSE:Factory checked in at 2014-10-08 22:13:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pdns (Old) and /work/SRC/openSUSE:Factory/.pdns.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pdns" Changes: -------- --- /work/SRC/openSUSE:Factory/pdns/pdns.changes 2014-08-03 15:36:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.pdns.new/pdns.changes 2014-10-08 22:14:08.000000000 +0200 @@ -1,0 +2,74 @@ +Wed Oct 1 01:25:28 UTC 2014 - [email protected] + +- enable sqlite3 support also on sle11 + +------------------------------------------------------------------- +Wed Oct 1 01:09:48 UTC 2014 - [email protected] + +- also drop asciidoc and ragel buildrequires: + - asciidoc seems unused + - ragel is only needed when we patch pdns/dnslabeltext.rl + +------------------------------------------------------------------- +Wed Oct 1 01:05:27 UTC 2014 - [email protected] + +- drop xmlto buildrequires + +------------------------------------------------------------------- +Wed Oct 1 01:02:30 UTC 2014 - [email protected] + +- only enable pkcs11 and zeromq support on distros newer than + 11.1/SLE11 + +------------------------------------------------------------------- +Wed Oct 1 00:43:14 UTC 2014 - [email protected] + +- convert all conditionals in the spec file to bcond_with(out) + +------------------------------------------------------------------- +Tue Sep 30 23:57:19 UTC 2014 - [email protected] + +- update to version 3.4.0 + upgrade notes: http://doc.powerdns.com/html/from3.3.1to3.4.0.html + + This is a performance, feature, bugfix and conformity update to + 3.3.1 and any earlier version. It contains a huge amount of work + by various contributors, to whom we are very grateful. + + For all the details see + http://doc.powerdns.com/html/changelog.html#changelog-auth-3.4.0 +- use system polarssl on 13.2 and newer + new buildrequires polarssl-devel >= 1.1 +- enable lmdb backend on 13.2 and newer (new subpackage) + new buildrequires: lmdb-devel +- enable zeromq backend (new subpackage) + new buildrequires: zeromq-devel +- enable pkcs11 support + new buildrequires: pkgconfig(p11-kit-1) +- drop docbook tools from buildrequires +- no longer extend the libdir with the pkg_name, configure does + that automatically now. +- drop remotebackend-http again. it got removed. +- refreshed the date/time patch: + new name: pdns-3.4.0-no_date_time.patch +- drop pdns-3.2_polarssl.patch: no longer needed. the intree copy + is integrated into the normal build system. +- package newly provided sql files in each subpackage. + +------------------------------------------------------------------- +Mon Sep 29 19:57:53 UTC 2014 - [email protected] + +- fix build in distros that do not have %_tmpfilesdir macro. + +------------------------------------------------------------------- +Mon Sep 29 01:08:43 UTC 2014 - [email protected] + +- Use lua-devel, current versions now support lua 5.2 +- Use /run/pdns as _localstatedir in distros with systemd + this also requires using --with-socketdir even when + no systemd otherwise the path is overriden by the build + system. +- pdns-no-date-time.patch : Do not use __DATE__ or __TIME__ + in source code and/or build system to make build-compare happy. + +------------------------------------------------------------------- Old: ---- pdns-3.2_polarssl.patch pdns-3.3.1.tar.gz New: ---- pdns-3.4.0-no_date_time.patch pdns-3.4.0.tar.bz2 pdns.tmpfiles series ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pdns.spec ++++++ --- /var/tmp/diff_new_pack.zQPZr1/_old 2014-10-08 22:14:09.000000000 +0200 +++ /var/tmp/diff_new_pack.zQPZr1/_new 2014-10-08 22:14:09.000000000 +0200 @@ -15,87 +15,106 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -%if 0%{?suse_version} > 1220 -%define with_systemd 1 -%else -%define with_systemd 0 -%endif Name: pdns -Version: 3.3.1 +Version: 3.4.0 Release: 0 # -# %define pkg_name pdns -%define pkg_version 3.3.1 -%define polarssl_version 1.1.2 +%define pkg_version 3.4.0 +%define polarssl_version 1.3.2 +# %define home %{_var}/lib/pdns +%if 0%{?suse_version} > 1220 +%bcond_without systemd +%define _localstatedir /run/pdns +%else +%bcond_with systemd %define _localstatedir %{_var}/run/pdns +%endif +%{!?_tmpfilesdir: %global _tmpfilesdir /usr/lib/tmpfiles.d } # - -%if 0%{?suse_version} > 1100 -%define with_pdns_sqlite3 1 +%bcond_without pdns_lua +%bcond_with pdns_mongo +%bcond_without pdns_mydns +%bcond_without pdns_sqlite3 +%bcond_with pdns_tinydns +%if 0%{?suse_version} >= 1320 +%bcond_without pdns_lmdb +%bcond_with pdns_intree_polarssl +%else +%bcond_with pdns_lmdb +%bcond_without pdns_intree_polarssl %endif -%define with_pdns_lua 1 -%define with_pdns_mongo 0 -%define with_pdns_mydns 1 -%define with_pdns_tinydns 0 %if 0%{?suse_version} > 1200 -%define with_pdns_botan 1 -%endif -%if 0%{?suse_version} >= 1320 -%define with_pdns_lmdb 0 +%bcond_without pdns_botan +%else +%bcond_with pdns_botan %endif %if 0%{?suse_version} > 1110 -%define with_pdns_tools 1 +%bcond_without pdns_tools +%bcond_without pdns_pkcs11 +%bcond_without pdns_zeromq +%else +%bcond_with pdns_tools +%bcond_with pdns_pkcs11 +%bcond_with pdns_zeromq %endif # BuildRoot: %{_tmppath}/%{name}-%{version}-build -%if 0%{?with_pdns_botan} +%if %{with pdns_botan} BuildRequires: Botan-devel >= 1.10 %endif -BuildRequires: automake +#BuildRequires: asciidoc BuildRequires: autoconf +BuildRequires: automake +BuildRequires: bison BuildRequires: boost-devel BuildRequires: curl-devel -BuildRequires: docbook-toys -BuildRequires: docbook-utils -BuildRequires: docbook-xsl-stylesheets +BuildRequires: flex BuildRequires: gcc-c++ BuildRequires: gdbm-devel BuildRequires: libtool -%if 0%{?with_pdns_lua} -%if 0%{?suse_version} < 1030 || 0%{?suse_version} > 1210 -BuildRequires: lua51-devel -%else +%if %{with pdns_lua} BuildRequires: lua-devel %endif -%endif -%if 0%{?with_pdns_lmdb} +%if %{with pdns_lmdb} BuildRequires: lmdb-devel %endif -%if 0%{?with_pdns_tinydns} +%if %{with pdns_tinydns} # FIXME: Could not find libcdb/tinycdb %endif -%if 0%{?with_pdns_mongo} +%if %{with pdns_mongo} # FIXME: needs mongo devel package %endif BuildRequires: mysql-devel BuildRequires: openldap2-devel BuildRequires: pkg-config BuildRequires: postgresql-devel -BuildRequires: pwdutils -# we add opendbx-backend-sqlite2 as we pull in sqlite2 anyway and we need one installed backend +#BuildRequires: ragel +BuildRequires: sqlite-devel >= 3 +%if %{with pdns_sqlite3} BuildRequires: sqlite-devel >= 3 +%endif # -%if 0%{?with_pdns_opendbx} +%if %{with pdns_opendbx} BuildRequires: opendbx-backend-pgsql BuildRequires: opendbx-devel %endif -%if 0%{?with_pdns_xdb} +BuildRequires: pkgconfig +%if %{with pdns_pkcs11} +BuildRequires: pkgconfig(p11-kit-1) +%endif +%if ! %{with pdns_intree_polarssl} +BuildRequires: polarssl-devel >= 1.1 +%endif +%if %{with pdns_xdb} BuildRequires: tdb-devel %endif -%if %{with_systemd} +%if %{with pdns_zeromq} +BuildRequires: zeromq-devel +%endif +%if %{with systemd} BuildRequires: systemd %{?systemd_requires} %else @@ -105,16 +124,18 @@ PreReq: pwdutils # Url: http://www.powerdns.com/ -Source: %{name}-%{pkg_version}.tar.gz +Source: http://downloads.powerdns.com/releases/pdns-%{pkg_version}.tar.bz2 Source1: rcpdns Source2: README.opendbx Source3: %{name}.service +Source4: pdns.tmpfiles +Source5: series # PATCH-MISSING-TAG -- See http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines -Patch: pdns-3.2_polarssl.patch -# +Patch: pdns-3.4.0-no_date_time.patch Summary: Modern, advanced and high performance authoritative-only nameserver License: GPL-2.0 Group: Productivity/Networking/DNS/Servers + %description The PowerDNS Nameserver is a modern, advanced and high performance authoritative-only nameserver. It is written from scratch and conforms @@ -134,7 +155,7 @@ This package holds the MySQL backend for pdns. -%if 0%{?with_pdns_mydns} +%if %{with pdns_mydns} %package backend-mydns Requires: %{name} = %{version} # @@ -163,7 +184,7 @@ This package holds the PostgreSQL backend for pdns. -%if 0%{?with_pdns_sqlite3} +%if %{with pdns_sqlite3} %package backend-sqlite3 Requires: %{name} = %{version} # @@ -191,12 +212,13 @@ This package holds the LDAP backend for pdns. -%if 0%{?with_pdns_opendbx} +%if %{with pdns_opendbx} %package backend-opendbx Requires: %{name} = %{version} # Summary: OpenDBX backend for pdns Group: Productivity/Networking/DNS/Servers + %description backend-opendbx The PowerDNS Nameserver is a modern, advanced and high performance authoritative-only nameserver. It is written from scratch and conforms @@ -207,7 +229,7 @@ %endif -%if 0%{?with_pdns_lua} +%if %{with pdns_lua} %package backend-lua Requires: %{name} = %{version} # @@ -223,8 +245,7 @@ %endif - -%if 0%{?with_pdns_xdb} +%if %{with pdns_xdb} %package backend-xdb Requires: %{name} = %{version} # @@ -240,7 +261,7 @@ %endif -%if 0%{?with_pdns_lmdb} +%if %{with pdns_lmdb} %package backend-lmdb Requires: %{name} = %{version} # @@ -255,7 +276,7 @@ This package holds the LMDB backend for pdns. %endif -%if 0%{?with_pdns_recursor} +%if %{with pdns_recursor} %package -n pdns-recursor Requires: %{name} = %{version} # @@ -269,8 +290,8 @@ %prep %setup -n %{name}-%{pkg_version} -%patch -%if 0%{?with_pdns_opendbx} +%patch -p1 +%if %{with pdns_opendbx} cp %{S:2} README.opendbx %endif cp modules/geobackend/README README.geobackend @@ -287,17 +308,30 @@ export LIBS="-pie" # "mysql" backend is legacy crap. dont build it! %configure \ + --docdir=%{_datadir}/doc/packages/%{name}/ \ + --disable-silent-rules \ + --with-socketdir=%{_localstatedir} \ --with-pic \ -%if 0%{?with_pdns_botan} +%if %{with pdns_botan} --enable-botan1.10 \ %endif +%if %{with pdns_intree_polarssl} + --without-system-polarssl \ +%else + --with-system-polarssl \ +%endif --sysconfdir=%{_sysconfdir}/%{pkg_name} \ - --libdir=%{_libdir}/%{pkg_name} \ + --libdir=%{_libdir} \ --with-pgsql-lib=%{_libdir} \ --with-mysql-lib=%{_libdir} \ - --enable-remotebackend-http \ +%if %{with pdns_pkcs11} + --enable-experimental-pkcs11 \ +%endif +%if %{with pdns_zeromq} + --enable-remotebackend-zeromq \ +%endif --with-modules="" \ -%if 0%{?with_pdns_lua} +%if %{with pdns_lua} --with-lua \ %endif --with-dynmodules="\ @@ -306,93 +340,87 @@ gmysql \ gpgsql \ ldap \ -%if 0%{?with_pdns_lmdb} +%if %{with pdns_lmdb} lmdb \ %endif -%if 0%{?with_pdns_lua} +%if %{with pdns_lua} lua \ %endif -%if 0%{?with_pdns_mongo} +%if %{with pdns_mongo} mongodb \ %endif -%if 0%{?with_pdns_mydns} +%if %{with pdns_mydns} mydns \ %endif -%if 0%{?with_pdns_tinydns} +%if %{with pdns_tinydns} tinydns \ %endif -%if 0%{?with_pdns_sqlite3} +%if %{with pdns_sqlite3} gsqlite3 \ %endif -%if 0%{?with_pdns_opendbx} +%if %{with pdns_opendbx} opendbx \ %endif -%if 0%{?with_pdns_xdb} +%if %{with pdns_xdb} xdb \ %endif -%if 0%{?with_pdns_db2} +%if %{with pdns_db2} db2 \ %endif -%if 0%{?with_pdns_odbc} +%if %{with pdns_odbc} odbc \ %endif -%if 0%{?with_pdns_oracle} +%if %{with pdns_oracle} goracle \ oracle \ %endif "\ -%if 0%{?with_pdns_tools} +%if %{with pdns_tools} --enable-tools \ %endif --disable-static -pushd pdns/ext/polarssl-%{polarssl_version}/library - make V=1 OFLAGS="%{optflags}" static shared -popd -make V=1 - -# pushd pdns/docs -# db2html -o html pdns.sgml -# find . -type d -exec chmod 755 {} \; -# find . -type f -exec chmod 644 {} \; -# ln -s book1.html html/index.html -# popd +make %install -make install DESTDIR="%{buildroot}" V=1 +make install DESTDIR="%{buildroot}" install -Dd -m 0755 %{buildroot}{%{home},%{_var}} mv %{buildroot}%{_sysconfdir}/%{pkg_name}/pdns.conf{-dist,} -%if %{with_systemd} -install -D -m 0755 %{SOURCE3} %{buildroot}%{_unitdir}/%{pkg_name}.service +%if %{with systemd} +install -D -m 0644 %{SOURCE3} %{buildroot}%{_unitdir}/%{pkg_name}.service +install -D -m 0644 %{SOURCE4} %{buildroot}%{_tmpfilesdir}/pdns.conf ln -s /usr/sbin/service %{buildroot}%{_sbindir}/rc%{pkg_name} %else install -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/init.d/%{pkg_name} ln -s -f ../..%{_sysconfdir}/init.d/%{pkg_name} %{buildroot}%{_sbindir}/rc%{pkg_name} %endif rm -rfv %{buildroot}%{_libdir}/pdns/*.la +# +install -m 0644 AUTHORS NEWS NOTICE COPYING README* %{buildroot}%{_datadir}/doc/packages/%{name}/ %pre /usr/sbin/groupadd -r pdns &>/dev/null || : /usr/sbin/useradd -g pdns -s /bin/false -r -c "pdns" -d %{home} pdns &>/dev/null || : -%if %{with_systemd} +%if %{with systemd} %service_add_pre %{name}.service %endif %post -%if %{with_systemd} +%if %{with systemd} +%{?tmpfiles_create:%{tmpfiles_create}} %service_add_post %{name}.service %else %{fillup_and_insserv pdns} %endif %preun -%if %{with_systemd} +%if %{with systemd} %service_del_preun %{name}.service %else %stop_on_removal pdns %endif %postun -%if %{with_systemd} +%if %{with systemd} %service_del_postun %{name}.service %else %restart_on_update pdns @@ -401,17 +429,25 @@ %files %defattr (-,root,root,-) -%doc HACKING README* TODO -#doc pdns/docs/html -%if %{with_systemd} +%dir %{_datadir}/doc/packages/%{name}/ +%doc %{_datadir}/doc/packages/%{name}/AUTHORS +%doc %{_datadir}/doc/packages/%{name}/COPYING +%doc %{_datadir}/doc/packages/%{name}/NEWS +%doc %{_datadir}/doc/packages/%{name}/NOTICE +%doc %{_datadir}/doc/packages/%{name}/README* +%exclude %{_datadir}/doc/packages/%{name}/*.sql +%if %{with systemd} %{_unitdir}/%{name}.service +%{_tmpfilesdir}/pdns.conf %else %{_sysconfdir}/init.d/%{pkg_name} %endif +%{_sbindir}/rcpdns %dir %attr(750,root,pdns) %{_sysconfdir}/%{pkg_name} %config(noreplace) %attr(640,root,pdns) %{_sysconfdir}/%{pkg_name}/%{pkg_name}.conf -%if 0%{?with_pdns_tools} +%if %{with pdns_tools} %{_bindir}/dnsbulktest +%{_bindir}/dnsdist %{_bindir}/dnsreplay %{_bindir}/dnsscan %{_bindir}/dnsscope @@ -419,29 +455,28 @@ %{_bindir}/dnswasher %{_bindir}/nproxy %{_bindir}/nsec3dig +%{_bindir}/saxfr %{_mandir}/man1/dnstcpbench.1* +%{_mandir}/man1/dnsdist.1* %{_mandir}/man8/dnsreplay.8* %{_mandir}/man8/dnsscope.8* %{_mandir}/man8/dnswasher.8* %endif +%{_sbindir}/pdns_server %{_bindir}/pdns_control -%{_bindir}/zone2ldap +%{_bindir}/pdnssec %{_bindir}/zone2sql %{_bindir}/zone2json -%{_bindir}/pdnssec -%{_sbindir}/rcpdns -%{_sbindir}/pdns_server %{_mandir}/man8/pdns_control.8* %{_mandir}/man8/pdns_server.8* -%{_mandir}/man8/zone2sql.8* %{_mandir}/man8/pdnssec.8* -%{_mandir}/man8/zone2ldap.8* +%{_mandir}/man8/zone2sql.8* %dir %{_libdir}/%{pkg_name} %{_libdir}/%{pkg_name}/libpipebackend.so* %{_libdir}/%{pkg_name}/libgeobackend.so* %dir %attr(750,root,pdns) %{home} -%if 0%{?with_pdns_recursor} +%if %{with pdns_recursor} %files -n pdns-recursor %defattr (-,root,root,-) %{_sbindir}/pdns_recursor @@ -450,14 +485,15 @@ %files backend-mysql %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libgmysqlbackend.so* +%doc %{_datadir}/doc/packages/%{name}/*.mysql.sql -%if 0%{?with_pdns_mydns} +%if %{with pdns_mydns} %files backend-mydns %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libmydnsbackend.so* %endif -%if 0%{?with_pdns_lua} +%if %{with pdns_lua} %files backend-lua %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libluabackend.so* @@ -466,35 +502,39 @@ %files backend-postgresql %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libgpgsqlbackend.so* +%doc %{_datadir}/doc/packages/%{name}/*.pgsql.sql -%if 0%{?with_pdns_sqlite3} +%if %{with pdns_sqlite3} %files backend-sqlite3 %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libgsqlite3backend.so* +%doc %{_datadir}/doc/packages/%{name}/*.sqlite3.sql %endif %files backend-ldap %defattr (-,root,root,-) +%{_bindir}/zone2ldap %{_libdir}/%{pkg_name}/libldapbackend.so* +%{_mandir}/man8/zone2ldap.8* -%if 0%{?with_pdns_opendbx} +%if %{with pdns_opendbx} %files backend-opendbx %defattr (-,root,root,-) %{_libdir}/%{pkg_name}/libopendbxbackend.so* %endif -%if 0%{?with_pdns_xdb} +%if %{with pdns_xdb} %files backend-xdb %defattr (-,root,root,-) %{_bindir}/xdb-fill %{_libdir}/%{pkg_name}/libxdbbackend.so* %endif -%if 0%{?with_pdns_lmdb} +%if %{with pdns_lmdb} %files backend-lmdb %defattr (-,root,root,-) +%{_bindir}/zone2lmdb %{_libdir}/%{pkg_name}/liblmdbbackend.so* %endif - %changelog ++++++ pdns-3.4.0-no_date_time.patch ++++++ Index: pdns-3.4.0/modules/bindbackend/bindbackend2.cc =================================================================== --- pdns-3.4.0.orig/modules/bindbackend/bindbackend2.cc +++ pdns-3.4.0/modules/bindbackend/bindbackend2.cc @@ -1359,7 +1359,7 @@ public: Bind2Loader() { BackendMakers().report(new Bind2Factory); - L << Logger::Info << "[bind2backend] This is the bind backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[bind2backend] This is the bind backend version " VERSION " reporting" << endl; } }; static Bind2Loader bind2loader; Index: pdns-3.4.0/modules/db2backend/DB2Backend.cc =================================================================== --- pdns-3.4.0.orig/modules/db2backend/DB2Backend.cc +++ pdns-3.4.0/modules/db2backend/DB2Backend.cc @@ -616,7 +616,7 @@ class DB2Loader Loader() { BackendMakers().report(new DB2Factory); - L << Logger::Info << "[db2backend] This is the db2 backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[db2backend] This is the db2 backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/geobackend/geobackend.hh =================================================================== --- pdns-3.4.0.orig/modules/geobackend/geobackend.hh +++ pdns-3.4.0/modules/geobackend/geobackend.hh @@ -105,7 +105,7 @@ class GeoLoader { public: GeoLoader() { BackendMakers().report(new GeoFactory); - L << Logger::Info << "[geobackend] This is the geo backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[geobackend] This is the geo backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/geoipbackend/geoipbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/geoipbackend/geoipbackend.cc +++ pdns-3.4.0/modules/geoipbackend/geoipbackend.cc @@ -643,7 +643,7 @@ class GeoIPLoader { public: GeoIPLoader() { BackendMakers().report(new GeoIPFactory); - L << Logger::Info << "[geobackend] This is the geo backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[geobackend] This is the geo backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/gmysqlbackend/gmysqlbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/gmysqlbackend/gmysqlbackend.cc +++ pdns-3.4.0/modules/gmysqlbackend/gmysqlbackend.cc @@ -142,7 +142,7 @@ public: gMySQLLoader() { BackendMakers().report(new gMySQLFactory("gmysql")); - L << Logger::Info << "[gmysqlbackend] This is the gmysql backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[gmysqlbackend] This is the gmysql backend version " VERSION " reporting" << endl; } }; static gMySQLLoader gmysqlloader; Index: pdns-3.4.0/modules/goraclebackend/goraclebackend.cc =================================================================== --- pdns-3.4.0.orig/modules/goraclebackend/goraclebackend.cc +++ pdns-3.4.0/modules/goraclebackend/goraclebackend.cc @@ -148,7 +148,7 @@ public: //! This reports us to the main UeberBackend class gOracleLoader() { BackendMakers().report(new gOracleFactory("goracle")); - L << Logger::Info << "[goraclebackend] This is the goracle backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[goraclebackend] This is the goracle backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/gpgsqlbackend/gpgsqlbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/gpgsqlbackend/gpgsqlbackend.cc +++ pdns-3.4.0/modules/gpgsqlbackend/gpgsqlbackend.cc @@ -137,7 +137,7 @@ public: { BackendMakers().report(new gPgSQLFactory("gpgsql")); BackendMakers().report(new gPgSQLFactory("gpgsql2")); - L << Logger::Info << "[gpgsqlbackend] This is the gpgsql backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[gpgsqlbackend] This is the gpgsql backend version " VERSION " reporting" << endl; } }; static gPgSQLLoader gpgsqlloader; Index: pdns-3.4.0/modules/gsqlite3backend/gsqlite3backend.cc =================================================================== --- pdns-3.4.0.orig/modules/gsqlite3backend/gsqlite3backend.cc +++ pdns-3.4.0/modules/gsqlite3backend/gsqlite3backend.cc @@ -154,7 +154,7 @@ public: gSQLite3Loader() { BackendMakers().report( new gSQLite3Factory( "gsqlite3" )); - L << Logger::Info << "[gsqlite3] This is the gsqlite3 backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << std::endl; + L << Logger::Info << "[gsqlite3] This is the gsqlite3 backend version " VERSION " reporting" << std::endl; } }; Index: pdns-3.4.0/modules/ldapbackend/ldapbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/ldapbackend/ldapbackend.cc +++ pdns-3.4.0/modules/ldapbackend/ldapbackend.cc @@ -564,7 +564,7 @@ public: LdapLoader() { BackendMakers().report( &factory ); - L << Logger::Info << "[ldapbackend] This is the ldap backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[ldapbackend] This is the ldap backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/lmdbbackend/lmdbbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/lmdbbackend/lmdbbackend.cc +++ pdns-3.4.0/modules/lmdbbackend/lmdbbackend.cc @@ -556,7 +556,7 @@ public: LMDBLoader() { BackendMakers().report(new LMDBFactory); - L << Logger::Info << "[lmdbbackend] This is the lmdb backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[lmdbbackend] This is the lmdb backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/luabackend/luabackend.cc =================================================================== --- pdns-3.4.0.orig/modules/luabackend/luabackend.cc +++ pdns-3.4.0/modules/luabackend/luabackend.cc @@ -49,7 +49,7 @@ public: { BackendMakers().report(new LUAFactory); - L << Logger::Info << "[luabackend] This is the lua backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[luabackend] This is the lua backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/mydnsbackend/mydnsbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/mydnsbackend/mydnsbackend.cc +++ pdns-3.4.0/modules/mydnsbackend/mydnsbackend.cc @@ -369,7 +369,7 @@ class MyDNSLoader { public: MyDNSLoader() { BackendMakers().report(new MyDNSFactory()); - L << Logger::Info << "[mydnsbackend] This is the mydns backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[mydnsbackend] This is the mydns backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/opendbxbackend/odbxbackend.hh =================================================================== --- pdns-3.4.0.orig/modules/opendbxbackend/odbxbackend.hh +++ pdns-3.4.0/modules/opendbxbackend/odbxbackend.hh @@ -164,7 +164,7 @@ public: OdbxLoader() { BackendMakers().report( &factory ); - L.log( "[opendbxbackend] This is the opendbx backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting", Logger::Info ); + L.log( "[opendbxbackend] This is the opendbx backend version " VERSION " reporting", Logger::Info ); } }; Index: pdns-3.4.0/modules/oraclebackend/oraclebackend.cc =================================================================== --- pdns-3.4.0.orig/modules/oraclebackend/oraclebackend.cc +++ pdns-3.4.0/modules/oraclebackend/oraclebackend.cc @@ -2279,7 +2279,7 @@ public: OracleLoader() { BackendMakers().report(new OracleFactory); - L << Logger::Info << "[oraclebackend] This is the oracle backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[oraclebackend] This is the oracle backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/pipebackend/pipebackend.cc =================================================================== --- pdns-3.4.0.orig/modules/pipebackend/pipebackend.cc +++ pdns-3.4.0/modules/pipebackend/pipebackend.cc @@ -290,7 +290,7 @@ class PipeLoader PipeLoader() { BackendMakers().report(new PipeFactory); - L << Logger::Info << kBackendId <<" This is the pipe backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << kBackendId <<" This is the pipe backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/randombackend/randombackend.cc =================================================================== --- pdns-3.4.0.orig/modules/randombackend/randombackend.cc +++ pdns-3.4.0/modules/randombackend/randombackend.cc @@ -100,7 +100,7 @@ public: RandomLoader() { BackendMakers().report(new RandomFactory); - L << Logger::Info << "[randombackend] This is the random backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[randombackend] This is the random backend version " VERSION " reporting" << endl; } }; Index: pdns-3.4.0/modules/remotebackend/remotebackend.cc =================================================================== --- pdns-3.4.0.orig/modules/remotebackend/remotebackend.cc +++ pdns-3.4.0/modules/remotebackend/remotebackend.cc @@ -1069,7 +1069,7 @@ public: RemoteLoader::RemoteLoader() { BackendMakers().report(new RemoteBackendFactory); - L << Logger::Info << kBackendId << " This is the remote backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << kBackendId << " This is the remote backend version " VERSION " reporting" << endl; } static RemoteLoader remoteloader; Index: pdns-3.4.0/modules/tinydnsbackend/tinydnsbackend.cc =================================================================== --- pdns-3.4.0.orig/modules/tinydnsbackend/tinydnsbackend.cc +++ pdns-3.4.0/modules/tinydnsbackend/tinydnsbackend.cc @@ -334,7 +334,7 @@ class TinyDNSLoader public: TinyDNSLoader() { BackendMakers().report(new TinyDNSFactory); - L << Logger::Info << "[tinydnsbackend] This is the tinydns backend version " VERSION " (" __DATE__ ", " __TIME__ ") reporting" << endl; + L << Logger::Info << "[tinydnsbackend] This is the tinydns backend version " VERSION " reporting" << endl; } }; ++++++ pdns-3.3.1.tar.gz -> pdns-3.4.0.tar.bz2 ++++++ ++++ 247475 lines of diff (skipped) ++++++ pdns.tmpfiles ++++++ d /run/pdns 0770 pdns root++++++ series ++++++ pdns-3.4.0-no_date_time.patch -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
