Compare commits

...
Sign in to create a new pull request.

14 commits

Author SHA1 Message Date
Fedora Release Engineering
3e252b7c5d Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 18:48:56 +00:00
Fedora Release Engineering
cb56af18a2 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 11:48:31 +00:00
Fedora Release Engineering
12b82978f2 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 06:34:45 +00:00
Fedora Release Engineering
3717567e30 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 04:31:09 +00:00
Fedora Release Engineering
652fc3d19e Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-22 02:39:50 +00:00
Fedora Release Engineering
b3593c3cba Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-21 04:11:31 +00:00
Petr Menšík
a736995dbd Update to 0.4.3 (#2156047) 2023-01-03 11:26:16 +01:00
Petr Menšík
7708e3bbfd Provide path to unbound-anchor key, but commented out 2022-10-15 14:23:33 +02:00
Petr Menšík
eaf1ff9e12 Private users do not work with dynamic users
Used dynamic user together with private users does not work.
2022-10-15 14:12:49 +02:00
Petr Menšík
651e372cda Use unbound-anchor key again 2022-10-14 00:37:59 +02:00
Petr Menšík
a7bced6e6c Update to 0.4.2 (#1974450) 2022-10-14 00:29:24 +02:00
Petr Menšík
9ec25f1c42 Update License tag to SPDX identifier 2022-09-30 13:28:36 +02:00
Joe Orton
6d02ced5fd fix build (#2113738)
Resolves: rhbz#2113738
2022-08-02 08:16:33 +01:00
Fedora Release Engineering
5e0544d9ec Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-23 09:32:54 +00:00
4 changed files with 72 additions and 13 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
/stubby-0.3.1.tar.gz
/stubby-0.4.0.tar.gz
/stubby-0.4.2.tar.gz
/stubby-0.4.3.tar.gz

View file

@ -1 +1 @@
SHA512 (stubby-0.4.0.tar.gz) = 2529a42cc786f4363e9d0ea12e40fc30c197492cbec4722763f6839cc9ec922985219374f8bf7df02dea51a1029b41b46a1547028492776efbf4d7a45fe86958
SHA512 (stubby-0.4.3.tar.gz) = 422d46b03200178acab6129d0268b5732fa2f439ad164c2ce771e68cd01737b4248d5a678ba0da716af41a24110f6b41ef3bcc567ad6fd94838a9be2d2cc8da3

View file

@ -1,11 +1,28 @@
diff -up getdns-1.6.0/stubby/stubby.yml.example.anchor getdns-1.6.0/stubby/stubby.yml.example
--- getdns-1.6.0/stubby/stubby.yml.example.anchor 2020-03-11 23:57:32.380258063 +0100
+++ getdns-1.6.0/stubby/stubby.yml.example 2020-03-11 23:59:59.545636591 +0100
@@ -157,6 +157,7 @@ listen_addresses:
# Specify the location of the installed trust anchor file to override the
From 3dc07827ba060247b714efdc00f2fc5617163204 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
Date: Sat, 15 Oct 2022 14:21:39 +0200
Subject: [PATCH] Use trust anchor path maintained by unbound-anchor
Other packages use it as well. Point to single file, which might be
reused by other packages. But keep the path commented out and use by
default just built-in trust anchor.
---
stubby.yml.example | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stubby.yml.example b/stubby.yml.example
index 1af0468..b86cd65 100644
--- a/stubby.yml.example
+++ b/stubby.yml.example
@@ -171,7 +171,7 @@ listen_addresses:
# Specify the location of the installed trust anchor files to override the
# default location (see above)
# dnssec_trust_anchors: "/etc/unbound/getdns-root.key"
+dnssec_trust_anchors: "/var/lib/unbound/root.key"
# dnssec_trust_anchors:
-# - "/etc/unbound/getdns-root.key"
+# - "/var/lib/unbound/root.key"
################################## UPSTREAMS ################################
--
2.37.3

View file

@ -1,9 +1,9 @@
Name: stubby
Version: 0.4.0
Release: 3%{?dist}
Version: 0.4.3
Release: 7%{?dist}
Summary: Application that act as a local DNS Privacy stub resolver
License: BSD
License: BSD-3-Clause
URL: https://github.com/getdnsapi/stubby
Source0: https://github.com/getdnsapi/stubby/archive/v%{version}/stubby-%{version}.tar.gz
@ -11,6 +11,8 @@ Provides: getdns-stubby = 1.7.0-1
Obsoletes: getdns-stubby < 1.7.0-1
%{?systemd_requires}
Patch1: stubby-0.3.1-dnssec-ta.patch
BuildRequires: gcc
BuildRequires: make
BuildRequires: cmake
@ -25,10 +27,10 @@ Stubby encrypts DNS queries sent from a client machine to a
DNS Privacy resolver increasing end user privacy.
%prep
%autosetup
%autosetup -p1
%build
%cmake -DCMAKE_BUILD_TYPE:STRING=Release .
%cmake -DCMAKE_BUILD_TYPE:STRING=Release
%cmake_build
%install
@ -64,6 +66,44 @@ fi
%changelog
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Tue Jan 03 2023 Petr Menšík <pemensik@redhat.com> - 0.4.3-1
- Update to 0.4.3 (#2156047)
* Sat Oct 15 2022 Petr Menšík <pemensik@redhat.com> - 0.4.2-2
- Private users do not work with dynamic users
- Provide path to unbound-anchor key, but keep it commented out
* Thu Oct 13 2022 Petr Menšík <pemensik@redhat.com> - 0.4.2-1
- Update to 0.4.2 (#1974450)
- Use unbound-anchor key again
* Fri Sep 30 2022 Petr Menšík <pemensik@redhat.com> - 0.4.0-6
- Update License tag to SPDX identifier
* Tue Aug 2 2022 Joe Orton <jorton@redhat.com> - 0.4.0-5
- fix build (#2113738)
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild