pdns/pdns.spec

706 lines
22 KiB
RPMSpec
Raw Normal View History

%global _hardened_build 1
2011-08-08 09:17:19 +00:00
%global backends %{nil}
Name: pdns
2017-01-17 14:38:12 +00:00
Version: 4.0.3
2017-02-14 12:49:28 +00:00
Release: 5%{?dist}
2013-01-17 22:39:02 +00:00
Summary: A modern, advanced and high performance authoritative-only nameserver
Group: System Environment/Daemons
2013-01-17 22:39:02 +00:00
License: GPLv2
URL: http://powerdns.com
2016-07-11 14:34:55 +00:00
Source0: http://downloads.powerdns.com/releases/%{name}-%{version}.tar.bz2
2016-03-02 17:11:51 +00:00
Source1: pdns.service
2016-05-13 13:37:36 +00:00
Patch0: pdns-disable-secpoll.patch
2017-01-17 13:27:31 +00:00
Patch1: fix-unit-tests-32bit.patch
Patch2: fix-negative-ipv6-32bit.patch
2017-02-14 12:49:28 +00:00
Patch3: pdns-gcc70.patch
Requires(pre): shadow-utils
Requires(post): systemd-units
Requires(preun): systemd-units
Requires(postun): systemd-units
BuildRequires: systemd-units
BuildRequires: boost-devel
BuildRequires: lua-devel
2013-05-28 12:48:11 +00:00
BuildRequires: bison
2014-08-01 12:14:33 +00:00
BuildRequires: zeromq-devel
2016-02-26 20:22:23 +00:00
BuildRequires: openssl-devel
2016-06-29 15:41:23 +00:00
BuildRequires: protobuf-devel
BuildRequires: protobuf-compiler
Provides: powerdns = %{version}-%{release}
2014-09-23 10:05:40 +00:00
%global backends %{backends} bind
%description
The PowerDNS Nameserver is a modern, advanced and high performance
authoritative-only nameserver. It is written from scratch and conforms
to all relevant DNS standards documents.
Furthermore, PowerDNS interfaces with almost any database.
2013-06-28 13:44:09 +00:00
%package tools
Summary: Extra tools for %{name}
Group: System Environment/Daemons
2013-06-28 13:44:09 +00:00
%description tools
This package contains the extra tools for %{name}
2013-06-28 13:44:09 +00:00
%package backend-mysql
Summary: MySQL backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
2016-03-02 17:11:51 +00:00
BuildRequires: mariadb-devel
2013-06-28 13:44:09 +00:00
%global backends %{backends} gmysql
2007-04-24 07:38:10 +00:00
2013-06-28 13:44:09 +00:00
%description backend-mysql
This package contains the gmysql backend for %{name}
2013-06-28 13:44:09 +00:00
%package backend-postgresql
Summary: PostgreSQL backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: postgresql-devel
%global backends %{backends} gpgsql
%description backend-postgresql
This package contains the gpgsql backend for %{name}
2013-06-28 13:44:09 +00:00
%package backend-pipe
Summary: Pipe backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
%global backends %{backends} pipe
%description backend-pipe
This package contains the pipe backend for %{name}
2013-08-21 09:34:10 +00:00
%package backend-remote
Summary: Remote backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
%global backends %{backends} remote
%description backend-remote
This package contains the remote backend for %{name}
2013-06-28 13:44:09 +00:00
%package backend-ldap
Summary: LDAP backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: openldap-devel
%global backends %{backends} ldap
%description backend-ldap
This package contains the ldap backend for %{name}
2013-12-17 18:58:49 +00:00
%package backend-lua
Summary: LUA backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
%global backends %{backends} lua
%description backend-lua
This package contains the lua backend for %{name}
2013-06-28 13:44:09 +00:00
%package backend-sqlite
Summary: SQLite backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: sqlite-devel
%global backends %{backends} gsqlite3
%description backend-sqlite
2007-04-24 07:38:10 +00:00
This package contains the SQLite backend for %{name}
2014-03-17 16:04:56 +00:00
%package backend-opendbx
Summary: OpenDBX backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: opendbx-devel
%global backends %{backends} opendbx
%description backend-opendbx
This package contains the opendbx backend for %{name}
2014-10-02 09:24:48 +00:00
%package backend-geoip
Summary: GeoIP backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: geoip-devel
BuildRequires: yaml-cpp-devel
%global backends %{backends} geoip
%description backend-geoip
This package contains the GeoIP backend for %{name}
%package backend-mydns
Summary: MyDNS backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
%global backends %{backends} mydns
%description backend-mydns
This package contains the MyDNS backend for %{name}
%package backend-tinydns
Summary: TinyDNS backend for %{name}
Group: System Environment/Daemons
Requires: %{name}%{?_isa} = %{version}-%{release}
BuildRequires: tinycdb-devel
%global backends %{backends} tinydns
%description backend-tinydns
This package contains the TinyDNS backend for %{name}
%prep
2016-07-11 14:34:55 +00:00
%setup -q
2016-05-13 13:37:36 +00:00
%patch0 -p1 -b .disable-secpoll
2017-01-17 13:27:31 +00:00
%patch1 -p1 -b .fix-unit-tests-32bit
%patch2 -p1 -b .fix-negative-ipv6-32bit
2017-02-14 12:49:28 +00:00
%patch3 -p1 -b .gcc70
2013-12-17 18:58:49 +00:00
%build
2015-02-07 19:04:24 +00:00
export CPPFLAGS="-DLDAP_DEPRECATED"
%configure \
--sysconfdir=%{_sysconfdir}/%{name} \
--disable-static \
2014-10-10 15:54:41 +00:00
--disable-dependency-tracking \
--disable-silent-rules \
--with-modules='' \
--with-lua \
2011-08-08 09:17:19 +00:00
--with-dynmodules='%{backends}' \
2013-10-13 13:57:27 +00:00
--enable-tools \
2014-10-10 15:54:41 +00:00
--enable-remotebackend-zeromq \
2016-07-11 17:26:00 +00:00
--enable-unit-tests \
--enable-reproducible
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
%{__rm} -f %{buildroot}%{_libdir}/%{name}/*.la
%{__mv} %{buildroot}%{_sysconfdir}/%{name}/pdns.conf{-dist,}
chmod 600 %{buildroot}%{_sysconfdir}/%{name}/pdns.conf
# rename zone2ldap to pdns-zone2ldap (#1193116)
2016-06-29 15:41:23 +00:00
%{__mv} %{buildroot}/%{_bindir}/zone2ldap %{buildroot}/%{_bindir}/pdns_zone2ldap
%{__mv} %{buildroot}/%{_mandir}/man1/zone2ldap.1 %{buildroot}/%{_mandir}/man1/pdns_zone2ldap.1
2016-03-02 17:11:51 +00:00
# Copy systemd service file
install -p -D -m 644 %{SOURCE1} %{buildroot}%{_unitdir}/pdns.service
2016-05-13 13:37:36 +00:00
# change user/group to pdns
# change default backend to bind
sed -i \
-e 's/# setuid=/setuid=pdns/' \
-e 's/# setgid=/setgid=pdns/' \
-e 's/# launch=/launch=bind/' \
%{buildroot}%{_sysconfdir}/%{name}/pdns.conf
2016-05-27 15:12:35 +00:00
%{__rm} %{buildroot}/%{_bindir}/stubquery
2016-03-02 17:11:51 +00:00
%check
make %{?_smp_mflags} -C pdns check
2014-10-10 15:54:41 +00:00
%pre
getent group pdns >/dev/null || groupadd -r pdns
getent passwd pdns >/dev/null || \
useradd -r -g pdns -d / -s /sbin/nologin \
-c "PowerDNS user" pdns
exit 0
%post
%systemd_post pdns.service
%preun
%systemd_preun pdns.service
%postun
%systemd_postun_with_restart pdns.service
%files
%doc COPYING README
%{_bindir}/pdns_control
2016-06-29 15:41:23 +00:00
%{_bindir}/pdnsutil
%{_bindir}/pdns_zone2ldap
%{_bindir}/zone2sql
2013-01-17 22:39:02 +00:00
%{_bindir}/zone2json
%{_sbindir}/pdns_server
2015-02-07 19:04:24 +00:00
%{_mandir}/man1/pdns_control.1.gz
%{_mandir}/man1/pdns_server.1.gz
%{_mandir}/man1/zone2sql.1.gz
2016-06-29 15:41:23 +00:00
%{_mandir}/man1/zone2json.1.gz
%{_mandir}/man1/pdns_zone2ldap.1.gz
2015-12-27 17:44:22 +00:00
%{_mandir}/man1/pdnsutil.1.gz
%{_unitdir}/pdns.service
2016-06-29 15:41:23 +00:00
%{_libdir}/%{name}/libbindbackend.so
%dir %{_libdir}/%{name}/
%dir %{_sysconfdir}/%{name}/
%config(noreplace) %{_sysconfdir}/%{name}/pdns.conf
2013-06-28 13:44:09 +00:00
%files tools
2016-06-29 15:41:23 +00:00
%{_bindir}/calidns
2013-06-28 13:44:09 +00:00
%{_bindir}/dnsbulktest
2016-06-29 15:41:23 +00:00
%{_bindir}/dnsgram
%{_bindir}/dnspcap2protobuf
2013-06-28 13:44:09 +00:00
%{_bindir}/dnsreplay
%{_bindir}/dnsscan
%{_bindir}/dnsscope
%{_bindir}/dnstcpbench
%{_bindir}/dnswasher
2016-06-29 15:41:23 +00:00
%{_bindir}/dumresp
%{_bindir}/ixplore
%{_bindir}/pdns_notify
2013-06-28 13:44:09 +00:00
%{_bindir}/nproxy
%{_bindir}/nsec3dig
2014-08-01 12:14:33 +00:00
%{_bindir}/saxfr
2016-06-29 15:41:23 +00:00
%{_bindir}/sdig
%{_mandir}/man1/calidns.1.gz
%{_mandir}/man1/dnsbulktest.1.gz
%{_mandir}/man1/dnsgram.1.gz
%{_mandir}/man1/dnspcap2protobuf.1.gz
2015-02-07 19:04:24 +00:00
%{_mandir}/man1/dnsreplay.1.gz
2016-06-29 15:41:23 +00:00
%{_mandir}/man1/dnsscan.1.gz
2015-02-07 19:04:24 +00:00
%{_mandir}/man1/dnsscope.1.gz
2013-06-28 13:44:09 +00:00
%{_mandir}/man1/dnstcpbench.1.gz
2016-06-29 15:41:23 +00:00
%{_mandir}/man1/dnswasher.1.gz
%{_mandir}/man1/dumresp.1.gz
%{_mandir}/man1/ixplore.1.gz
%{_mandir}/man1/pdns_notify.1.gz
%{_mandir}/man1/nproxy.1.gz
%{_mandir}/man1/nsec3dig.1.gz
%{_mandir}/man1/saxfr.1.gz
%{_mandir}/man1/sdig.1.gz
2013-06-28 13:44:09 +00:00
%files backend-mysql
2015-07-31 21:49:53 +00:00
%{_pkgdocdir}/schema.mysql.sql
%{_pkgdocdir}/dnssec-3.x_to_3.4.0_schema.mysql.sql
%{_pkgdocdir}/nodnssec-3.x_to_3.4.0_schema.mysql.sql
%{_libdir}/%{name}/libgmysqlbackend.so
%files backend-postgresql
2015-07-31 21:49:53 +00:00
%{_pkgdocdir}/schema.pgsql.sql
%{_pkgdocdir}/dnssec-3.x_to_3.4.0_schema.pgsql.sql
%{_pkgdocdir}/nodnssec-3.x_to_3.4.0_schema.pgsql.sql
2013-06-28 13:44:09 +00:00
%{_libdir}/%{name}/libgpgsqlbackend.so
%files backend-pipe
%{_libdir}/%{name}/libpipebackend.so
2013-08-21 09:34:10 +00:00
%files backend-remote
%{_libdir}/%{name}/libremotebackend.so
%files backend-ldap
%{_libdir}/%{name}/libldapbackend.so
2013-12-17 18:58:49 +00:00
%files backend-lua
%{_libdir}/%{name}/libluabackend.so
2007-04-24 07:38:10 +00:00
%files backend-sqlite
2015-07-31 21:49:53 +00:00
%{_pkgdocdir}/schema.sqlite3.sql
%{_pkgdocdir}/dnssec-3.x_to_3.4.0_schema.sqlite3.sql
%{_pkgdocdir}/nodnssec-3.x_to_3.4.0_schema.sqlite3.sql
2013-06-28 13:44:09 +00:00
%{_libdir}/%{name}/libgsqlite3backend.so
2007-04-24 07:38:10 +00:00
2014-03-17 16:04:56 +00:00
%files backend-opendbx
%{_libdir}/%{name}/libopendbxbackend.so
2014-10-02 09:24:48 +00:00
%files backend-geoip
%{_libdir}/%{name}/libgeoipbackend.so
%files backend-mydns
2015-07-31 21:49:53 +00:00
%{_pkgdocdir}/schema.mydns.sql
2014-10-02 09:24:48 +00:00
%{_libdir}/%{name}/libmydnsbackend.so
%files backend-tinydns
%{_libdir}/%{name}/libtinydnsbackend.so
%changelog
2017-02-14 12:49:28 +00:00
* Tue Feb 14 2017 Morten Stevens <mstevens@fedoraproject.org> - 4.0.3-5
- Fix for GCC 7.0
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-01-27 10:35:19 +00:00
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 4.0.3-3
- Rebuilt for Boost 1.63
2017-01-26 18:05:43 +00:00
* Thu Jan 26 2017 Orion Poplawski <orion@cora.nwra.com> - 4.0.3-2
- Rebuild for protobuf 3.2.0
2017-01-17 14:38:12 +00:00
* Tue Jan 17 2017 Morten Stevens <mstevens@fedoraproject.org> - 4.0.3-1
- Update to 4.0.3
2017-01-17 13:27:31 +00:00
* Tue Jan 17 2017 Morten Stevens <mstevens@fedoraproject.org> - 4.0.2-2
- Fix for building on armv7hl
2017-01-16 22:06:52 +00:00
* Mon Jan 16 2017 Morten Stevens <mstevens@fedoraproject.org> - 4.0.2-1
- Update to 4.0.2
- Security fix for CVE-2016-2120, CVE-2016-7068, CVE-2016-7072, CVE-2016-7073, CVE-2016-7074
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 4.0.1-3
- Add upstream patch to fix build with openssl 1.1.0
2016-11-19 16:12:47 +00:00
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 4.0.1-3
- Rebuild for protobuf 3.1.0
2016-08-23 14:57:39 +00:00
* Tue Aug 23 2016 Richard Shaw <hobbes1069@gmail.com> - 4.0.1-2
- Rebuild for updated yaml-cpp
2016-07-29 17:46:36 +00:00
* Fri Jul 29 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.1-1
- Update to 4.0.1
2016-07-11 17:26:00 +00:00
* Mon Jul 11 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> - 4.0.0-2
- Enable reproducible builds
2016-07-11 14:34:55 +00:00
* Mon Jul 11 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-1
- Update to 4.0.0
2016-06-29 15:41:23 +00:00
* Wed Jun 29 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.8.rc2
- Update to 4.0.0 RC2
2016-05-27 15:12:35 +00:00
* Fri May 27 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.7.beta1
- Update to 4.0.0 beta 1
2016-05-13 13:37:36 +00:00
* Fri May 13 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.6.alpha3
- Update to 4.0.0 alpha 3
2016-03-02 17:11:51 +00:00
* Wed Mar 02 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.5.alpha2
- Added mariadb-devel build dependency
- Added own systemd unit file
- Remove cryptopp-devel build dependency
- Reenable %check
2016-02-26 20:22:23 +00:00
* Fri Feb 26 2016 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.4.alpha2
- Update to 4.0.0 alpha 2
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-0.3.alpha1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-15 16:41:09 +00:00
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 4.0.0-0.2.alpha1
- Rebuilt for Boost 1.60
2015-12-27 17:44:22 +00:00
* Sun Dec 27 2015 Morten Stevens <mstevens@fedoraproject.org> - 4.0.0-0.1.alpha1
- Update to 4.0.0 (Technical Preview)
- Backend geo and lmdb has been deprecated
- Reenable mbedtls build dependency
2015-12-27 23:59:28 +00:00
- Temporary disable %check
2015-12-27 17:44:22 +00:00
* Sat Nov 07 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.7-1
2015-11-07 14:12:29 +00:00
- Update to 3.4.7
2015-09-03 13:19:58 +00:00
* Thu Sep 03 2015 Jonathan Wakely <jwakely@redhat.com> - 3.4.6-2
- Rebuilt for Boost 1.59
2015-09-02 13:44:26 +00:00
* Wed Sep 02 2015 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.4.6-1
2015-09-02 18:19:43 +00:00
- Upstream released new version, containing fix for CVE-2015-5230
- Remove dnsdist, it is now a separate project
2015-09-02 13:44:26 +00:00
2015-08-27 19:35:13 +00:00
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 3.4.5-9
- Rebuilt for Boost 1.59
2015-08-26 13:47:59 +00:00
* Wed Aug 26 2015 Jonathan Wakely <jwakely@redhat.com> - 3.4.5-8
- Rebuilt for NVR bump on F23 branch
2015-12-27 17:44:22 +00:00
* Fri Jul 31 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.5-7
2015-07-31 21:49:53 +00:00
- Switch to pkgdocdir
2015-12-27 17:44:22 +00:00
* Fri Jul 31 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.5-6
2015-07-31 20:57:06 +00:00
- Mbedtls build dep temporary disabled due build issues
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.5-5
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
2015-07-22 17:17:11 +00:00
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 3.4.5-4
- rebuild for Boost 1.58
2015-06-23 12:59:53 +00:00
* Tue Jun 23 2015 Thomas Spura <tomspur@fedoraproject.org> - 3.4.5-3
- rebuilt for new zeromq 4.1.2
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-12-27 17:44:22 +00:00
* Wed Jun 10 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.5-1
2015-06-10 10:42:06 +00:00
- Update to 3.4.5
- Added mbedtls-devel as build dep
2015-12-27 17:44:22 +00:00
* Mon Apr 27 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.4-1
2015-04-27 11:44:05 +00:00
- Update to 3.4.4
- CVE-2015-1868
- Remove polarssl-devel as build dependency
2015-12-27 17:44:22 +00:00
* Mon Mar 02 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.3-1
2015-03-02 16:24:14 +00:00
- Update to 3.4.3
2015-12-27 17:44:22 +00:00
* Tue Feb 17 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.2-2
- Rename zone2ldap to pdns-zone2ldap (#1193116)
- Remove rpath workaround
2015-12-27 17:44:22 +00:00
* Sat Feb 07 2015 Morten Stevens <mstevens@fedoraproject.org> - 3.4.2-1
2015-02-07 19:04:24 +00:00
- Update to 3.4.2
- Disable security status polling by default
2015-01-27 15:47:12 +00:00
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 3.4.1-2
- Rebuild for boost 1.57.0
2015-12-27 17:44:22 +00:00
* Mon Nov 03 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.1-1
2014-11-03 17:21:34 +00:00
- Update to 3.4.1
- Enable security status polling
2014-10-10 15:54:41 +00:00
* Fri Oct 10 2014 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.4.0-5
- Run the unit tests during check
2015-12-27 17:44:22 +00:00
* Mon Oct 06 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-4
2014-10-06 20:34:43 +00:00
- Enable backend LMDB
2015-12-27 17:44:22 +00:00
* Mon Oct 06 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-3
2014-10-06 11:51:29 +00:00
- Remove unused build dependency
2015-12-27 17:44:22 +00:00
* Thu Oct 02 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-2
2014-10-02 09:24:48 +00:00
- Enable backend: GeoIP, MyDNS, TinyDNS
2015-12-27 17:44:22 +00:00
* Tue Sep 30 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-1
2014-09-30 11:52:11 +00:00
- Update to 3.4.0
2015-12-27 17:44:22 +00:00
* Tue Sep 23 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-0.3.rc2
2014-09-23 10:05:40 +00:00
- Update to 3.4.0-rc2
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-0.2.rc1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2015-12-27 17:44:22 +00:00
* Fri Aug 01 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.4.0-0.1.rc1
2014-08-01 12:14:33 +00:00
- Update to 3.4.0-rc1
- Enable zeromq remote backend
2015-12-27 17:44:22 +00:00
* Mon Jul 14 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.3.1-6
2014-07-14 12:31:44 +00:00
- Rebuild for PolarSSL 1.3.8
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-23 02:07:07 +00:00
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 3.3.1-4
- Rebuild for boost 1.55.0
2015-12-27 17:44:22 +00:00
* Fri May 02 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.3.1-3
2014-05-02 11:50:06 +00:00
- Rebuild for PolarSSL 1.3.6
2015-12-27 17:44:22 +00:00
* Mon Mar 17 2014 Morten Stevens <mstevens@fedoraproject.org> - 3.3.1-2
2014-03-17 16:04:56 +00:00
- Enable OpenDBX backend, thanks to Jean-Eudes Onfray (rhbz#1075490)
2015-12-27 17:44:22 +00:00
* Tue Dec 17 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3.1-1
2013-12-17 18:58:49 +00:00
- Update to latest upstream release 3.3.1
- Add LUA backend
- Add polarssl-devel as build dependency
2015-12-27 17:44:22 +00:00
* Sun Oct 13 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-6
2013-10-13 13:57:27 +00:00
- Enable remotebackend-http
2015-12-27 17:44:22 +00:00
* Sat Aug 31 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-5
2013-08-31 18:24:07 +00:00
- Add patch to fix Remote backend
2015-12-27 17:44:22 +00:00
* Wed Aug 21 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-4
2013-08-21 09:34:10 +00:00
- Add Remote backend
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-27 12:40:52 +00:00
* Sat Jul 27 2013 pmachata@redhat.com - 3.3-2
- Rebuild for boost 1.54.0
2015-12-27 17:44:22 +00:00
* Fri Jul 05 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-1
2013-07-05 11:40:57 +00:00
- Update to 3.3
2015-12-27 17:44:22 +00:00
* Fri Jun 28 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-0.3.rc2
2013-06-28 13:44:09 +00:00
- Update to 3.3-rc2
- Add extra tools package for pdns
2015-12-27 17:44:22 +00:00
* Tue Jun 04 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-0.2.rc1
2013-06-04 12:04:01 +00:00
- Update systemd unit file
- Spec cleanup
2015-12-27 17:44:22 +00:00
* Tue May 28 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.3-0.1.rc1
2013-06-04 12:04:01 +00:00
- Update to 3.3-rc1
2013-05-28 12:48:11 +00:00
2015-12-27 17:44:22 +00:00
* Mon Apr 22 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.2-7
2013-04-22 14:03:58 +00:00
- Disarm dead code that causes gcc crashes on ARM (rhbz#954191)
2015-12-27 17:44:22 +00:00
* Tue Apr 09 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.2-6
2013-04-09 15:14:31 +00:00
- Add support for aarch64 (rhbz#926316)
* Tue Mar 05 2013 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.2-5
- Enable hardened build as per http://fedoraproject.org/wiki/Packaging:Guidelines#PIE
2013-02-11 13:23:55 +00:00
* Mon Feb 11 2013 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.2-4
- Enable PrivateTmp as per http://fedoraproject.org/wiki/Features/ServicesPrivateTmp
- Fix bogus date in changelog
2013-02-10 01:23:53 +00:00
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 3.2-3
- Rebuild for Boost-1.53.0
2013-02-09 22:10:02 +00:00
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 3.2-2
- Rebuild for Boost-1.53.0
2015-12-27 17:44:22 +00:00
* Thu Jan 17 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.2-1
2013-01-17 22:39:02 +00:00
- Update to 3.2
2015-12-27 17:44:22 +00:00
* Mon Jan 07 2013 Morten Stevens <mstevens@fedoraproject.org> - 3.1-7
- Disable pdns guardian by default (rhbz#883852)
- Drop backend MongoDB as it does not work (upstream commit 3017)
2012-11-25 21:32:47 +00:00
* Thu Nov 22 2012 Ruben Kerkhof <ruben@rubenkerkhof.com> - 3.1-6
- Add example schemas to documentation
2015-12-27 17:44:22 +00:00
* Fri Oct 19 2012 Morten Stevens <mstevens@fedoraproject.org> - 3.1-5
- Fixed permissions of pdns.conf file (rhbz#646510)
- Set bind as default backend
2015-12-27 17:44:22 +00:00
* Mon Sep 24 2012 Morten Stevens <mstevens@fedoraproject.org> - 3.1-4
- use new systemd rpm macros (rhbz#850266)
2015-12-27 17:44:22 +00:00
* Mon Sep 24 2012 Morten Stevens <mstevens@fedoraproject.org> - 3.1-3
- Fix pdns daemon exit code (rhbz#859898)
- Update systemd unit file
2015-12-27 17:44:22 +00:00
* Tue Sep 18 2012 Morten Stevens <mstevens@fedoraproject.org> - 3.1-2
2012-09-18 12:06:21 +00:00
- Fix MongoDB backend
2015-12-27 17:44:22 +00:00
* Mon Sep 17 2012 Morten Stevens <mstevens@fedoraproject.org> - 3.1-1
2012-09-17 18:01:49 +00:00
- Update to 3.1
- Remove MongoDB backend due build problems
2012-02-28 19:34:12 +00:00
2012-09-17 18:08:17 +00:00
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-2
- Rebuilt for c++ ABI breakage
2012-09-17 18:01:49 +00:00
* Mon Jan 09 2012 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0.1-1
2012-01-09 12:23:20 +00:00
- CVE-2012-0206
2011-08-08 09:17:19 +00:00
* Sun Aug 07 2011 Dan Horák <dan@danny.cz> - 3.0-7
- mongodb supports only x86
2011-07-25 16:58:23 +00:00
* Mon Jul 25 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-6
- Upstream released new version
* Wed Jul 20 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-5.rc3
- New release candidate
- Add MongoDB backend
- Enable LUA support
- Convert to systemd
* Sat Apr 09 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-4.pre.20110327.2103.fc16
2011-04-09 12:10:01 +00:00
- Rebuilt for new boost
* Mon Mar 28 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-3.pre.20110327.2103
- License file moved a directory up
- Add pdnssec and dnsreplay commands
2011-03-28 11:07:23 +00:00
* Mon Mar 28 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-2.pre.20110327.2103
- Add lua BuildRequires
* Mon Mar 28 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 3.0-1.pre.20110327.2103
- Upstream released new pre-release version
- Now with DNSSEC support
- Drop merged patches
* Wed Mar 23 2011 Dan Horák <dan@danny.cz> - 2.9.22-13
- rebuilt for mysql 5.5.10 (soname bump in libmysqlclient)
2011-03-23 11:17:12 +00:00
* Wed Mar 23 2011 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-12
- Rebuilt for new mysqlclient
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.22-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Tue Dec 14 2010 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-10
- Fix crash on SIGSTOP and SIGCONT, thanks to Anders Kaseorg (#652841)
2010-01-14 20:32:01 +00:00
* Thu Jan 14 2010 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-9
- Fix changelog entry
* Thu Jan 14 2010 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-8
2010-01-14 19:47:00 +00:00
- Fix postgres lib detection (#555462)
2009-08-21 15:15:48 +00:00
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.9.22-7
- rebuilt with new openssl
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.22-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-02-26 16:37:43 +00:00
* Thu Feb 26 2009 Ruben Kerkhof <ruben@rubenkerkhof.com> - 2.9.22-5
- Fix build with gcc4.4
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.22-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2009-01-26 14:10:16 +00:00
* Mon Jan 26 2009 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-3
- Upstream released new version
2009-01-23 11:53:02 +00:00
* Fri Jan 23 2009 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-2.rc3
- Rebuild for new libmysqlclient
2009-01-19 13:04:50 +00:00
* Mon Jan 19 2009 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-1.rc3
- New release candidate
* Wed Dec 03 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.22-1.rc2
2009-01-19 13:04:50 +00:00
- Upstream released new release candidate
- Drop patches which are upstreamed
2008-11-17 07:52:59 +00:00
* Mon Nov 17 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21.2-1
- Upstream released new version
* Fri Sep 12 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21.1-2
- Fix handling of AAAA records (bz #461768)
2008-08-06 13:14:27 +00:00
* Wed Aug 06 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21.1-1
- CVE-2008-3337
2008-02-09 14:53:39 +00:00
* Sat Feb 09 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21-4
- GCC 4.3 fixes
2007-12-05 21:54:57 +00:00
* Wed Dec 05 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21-3
2007-12-05 21:53:11 +00:00
- Rebuild to pick up new openldap
* Tue Sep 11 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21-2
- Fix license tag
- Add README for geo backend to docs
2013-06-04 12:04:01 +00:00
2007-04-24 07:38:10 +00:00
* Tue Apr 24 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.9.21-1
- Upstream released 2.9.21
- Enabled new SQLite backend
2013-06-04 12:04:01 +00:00
2013-02-11 13:23:55 +00:00
* Tue Apr 10 2007 <ruben@rubenkerkhof.com> 2.9.20-9
- Add Requires for chkconfig, service and useradd (#235582)
2013-06-04 12:04:01 +00:00
* Mon Jan 1 2007 <ruben@rubenkerkhof.com> 2.9.20-8
- Add the pdns user and group to the config file
- Don't restart pdns on an upgrade
- Minor cleanups in scriptlets
2013-06-04 12:04:01 +00:00
2007-01-01 14:04:39 +00:00
* Mon Jan 1 2007 <ruben@rubenkerkhof.com> 2.9.20-7
- Fixed typo in scriptlet
2013-06-04 12:04:01 +00:00
* Mon Jan 1 2007 <ruben@rubenkerkhof.com> 2.9.20-6
- Check if user pdns exists before adding it
2013-06-04 12:04:01 +00:00
* Sat Dec 30 2006 <ruben@rubenkerkhof.com> 2.9.20-5
- Strip rpath from the backends as well
2013-06-04 12:04:01 +00:00
* Fri Dec 29 2006 <ruben@rubenkerkhof.com> 2.9.20-4
- Disable rpath
2013-06-04 12:04:01 +00:00
* Thu Dec 28 2006 <ruben@rubenkerkhof.com> 2.9.20-3
- More fixes as per review #219973
2013-06-04 12:04:01 +00:00
* Wed Dec 27 2006 <ruben@rubenkerkhof.com> 2.9.20-2
- A few changes for FE review (bz #219973):
- Renamed package to pdns, since that's how upstream calls it
- Removed calls to ldconfig
- Subpackages now require %%{version}-%%{release}
2013-06-04 12:04:01 +00:00
* Sat Dec 16 2006 <ruben@rubenkerkhof.com> 2.9.20-1
- Initial import