Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
14031fb6fa | |||
a7fdf441ad | |||
0d83e092c3 | |||
f896aef4af |
2
_service
2
_service
@@ -1,6 +1,6 @@
|
||||
<services>
|
||||
<service name="cargo_vendor" mode="manual">
|
||||
<param name="src">pdns-recursor-5.1.3/settings/rust/</param>
|
||||
<param name="src">pdns-recursor-5.2.5/settings/rust/</param>
|
||||
<param name="compression">zst</param>
|
||||
<param name="update">true</param>
|
||||
</service>
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c34ee31f522d93997e04ab2ed0fb58de6569c13ed2a2cb0d371cef49a585356a
|
||||
size 1718665
|
Binary file not shown.
3
pdns-recursor-5.2.5.tar.bz2
Normal file
3
pdns-recursor-5.2.5.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a8a657a7abd6e9d237cdd26753f7dcf5ccd5b8c48ac8120b08d2b8d57a1d856a
|
||||
size 1726625
|
BIN
pdns-recursor-5.2.5.tar.bz2.sig
Normal file
BIN
pdns-recursor-5.2.5.tar.bz2.sig
Normal file
Binary file not shown.
@@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 14 01:49:02 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- update to 5.2.5 (CVE-2025-30192 boo#246841)
|
||||
https://doc.powerdns.com/recursor/security-advisories/powerdns-advisory-2025-04.html
|
||||
https://doc.powerdns.com/recursor/changelog/5.1.html#change-5.1.4
|
||||
https://doc.powerdns.com/recursor/changelog/5.1.html#change-5.1.6
|
||||
https://doc.powerdns.com/recursor/changelog/5.1.html#change-5.1.7
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.0
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.1
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.2
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.3
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.4
|
||||
https://doc.powerdns.com/recursor/changelog/5.2.html#change-5.2.5
|
||||
- reenable snmp support ( we had the BR but not the configure flag)
|
||||
- add missing BR for fstrm and libcurl
|
||||
- enable NOD support (new BR libboost_filesystem-devel)
|
||||
- enable luajit where possible
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 22 22:54:01 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pdns-recursor
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -25,8 +25,18 @@
|
||||
%bcond_without systemd_separetedlibs
|
||||
%endif
|
||||
|
||||
%ifarch ppc64le
|
||||
%bcond_with pdns_luajit
|
||||
%else
|
||||
%if 0%{?sle_version} >= 150400 || 0%{?suse_version} >= 1599
|
||||
%bcond_without pdns_luajit
|
||||
%else
|
||||
%bcond_with pdns_luajit
|
||||
%endif
|
||||
%endif
|
||||
|
||||
Name: pdns-recursor
|
||||
Version: 5.1.3
|
||||
Version: 5.2.5
|
||||
Release: 0
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@@ -45,6 +55,7 @@ BuildRequires: gcc-c++
|
||||
|
||||
%if 0%{?suse_version} > 1325
|
||||
BuildRequires: libboost_context-devel
|
||||
BuildRequires: libboost_filesystem-devel
|
||||
BuildRequires: libboost_system-devel
|
||||
BuildRequires: libboost_thread-devel
|
||||
%else
|
||||
@@ -52,16 +63,22 @@ BuildRequires: boost-devel >= 1.66
|
||||
%endif
|
||||
|
||||
BuildRequires: libsodium-devel
|
||||
BuildRequires: lua-devel
|
||||
%if %{with pdns_luajit}
|
||||
BuildRequires: pkgconfig(luajit)
|
||||
%else
|
||||
BuildRequires: pkgconfig(lua)
|
||||
%endif
|
||||
BuildRequires: net-snmp-devel
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3
|
||||
BuildRequires: pkgconfig(libfstrm)
|
||||
%if 0%{?suse_version}
|
||||
PreReq: shadow
|
||||
%else
|
||||
PreReq: shadow-utils
|
||||
%endif
|
||||
BuildRequires: pkgconfig(libcurl)
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
%if %{with systemd_separetedlibs}
|
||||
BuildRequires: pkgconfig(libsystemd)
|
||||
@@ -120,6 +137,8 @@ ln effective_tld_names.dat effective_tld_list.dat
|
||||
--sysconfdir=%{_sysconfdir}/pdns/ \
|
||||
--enable-dns-over-tls \
|
||||
--with-lua \
|
||||
--enable-nod \
|
||||
--with-net-snmp \
|
||||
--with-socketdir=%{_rundir} \
|
||||
--with-service-user=pdns \
|
||||
--with-service-group=pdns
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:992ec3e0f22db8a4f999cc40d3062f9a038c85c466dfa44827c825ce6af61ff8
|
||||
size 6972687
|
||||
oid sha256:510ec4c178c3c276f98e1f5d231cfdfaa43775a8e1359f1e91e529b2b438026a
|
||||
size 6998747
|
||||
|
Reference in New Issue
Block a user