Compare commits
14 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e252b7c5d | ||
|
|
cb56af18a2 | ||
|
|
12b82978f2 | ||
|
|
3717567e30 | ||
|
|
652fc3d19e | ||
|
|
b3593c3cba | ||
|
|
a736995dbd | ||
|
|
7708e3bbfd | ||
|
|
eaf1ff9e12 | ||
|
|
651e372cda | ||
|
|
a7bced6e6c | ||
|
|
9ec25f1c42 | ||
|
|
6d02ced5fd | ||
|
|
5e0544d9ec |
4 changed files with 72 additions and 13 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (stubby-0.4.0.tar.gz) = 2529a42cc786f4363e9d0ea12e40fc30c197492cbec4722763f6839cc9ec922985219374f8bf7df02dea51a1029b41b46a1547028492776efbf4d7a45fe86958
|
||||
SHA512 (stubby-0.4.3.tar.gz) = 422d46b03200178acab6129d0268b5732fa2f439ad164c2ce771e68cd01737b4248d5a678ba0da716af41a24110f6b41ef3bcc567ad6fd94838a9be2d2cc8da3
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
50
stubby.spec
50
stubby.spec
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue