Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bce293b4af | ||
|
|
fbaeed3334 | ||
|
|
5a5099ca58 | ||
|
|
71b01cb6ec | ||
|
|
7b158a770b | ||
|
|
08e2ee036b | ||
|
|
a9d0525d64 | ||
|
|
7e3af4c541 | ||
|
|
90e91e4b0f |
7 changed files with 91 additions and 8 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
|
@ -210,3 +210,15 @@ bind-9.7.2b1.tar.gz
|
|||
/bind-9.18.15.tar.xz.asc
|
||||
/bind-9.18.16.tar.xz
|
||||
/bind-9.18.16.tar.xz.asc
|
||||
/bind-9.18.17.tar.xz
|
||||
/bind-9.18.17.tar.xz.asc
|
||||
/bind-9.18.18.tar.xz
|
||||
/bind-9.18.18.tar.xz.asc
|
||||
/bind-9.18.19.tar.xz
|
||||
/bind-9.18.19.tar.xz.asc
|
||||
/bind-9.18.20.tar.xz
|
||||
/bind-9.18.20.tar.xz.asc
|
||||
/bind-9.18.24.tar.xz
|
||||
/bind-9.18.24.tar.xz.asc
|
||||
/bind-9.18.26.tar.xz
|
||||
/bind-9.18.26.tar.xz.asc
|
||||
|
|
|
|||
41
bind-9.18-tests-rbtdb_test-i686.patch
Normal file
41
bind-9.18-tests-rbtdb_test-i686.patch
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
From 37643c9689c2dee85b453879f7145bb393b99dfa Mon Sep 17 00:00:00 2001
|
||||
From: Petr Mensik <pemensik@redhat.com>
|
||||
Date: Fri, 22 Sep 2023 19:54:36 +0200
|
||||
Subject: [PATCH] Skip failing tests on 32 platform
|
||||
|
||||
Reported to fail also on 32 bit arm, but skip it only on current builds.
|
||||
---
|
||||
tests/dns/rbtdb_test.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/tests/dns/rbtdb_test.c b/tests/dns/rbtdb_test.c
|
||||
index 59a5786..384a26a 100644
|
||||
--- a/tests/dns/rbtdb_test.c
|
||||
+++ b/tests/dns/rbtdb_test.c
|
||||
@@ -326,6 +326,7 @@ ISC_RUN_TEST_IMPL(overmempurge_bigrdata) {
|
||||
isc_mem_destroy(&mctx2);
|
||||
}
|
||||
|
||||
+#ifndef i386
|
||||
ISC_RUN_TEST_IMPL(overmempurge_longname) {
|
||||
size_t maxcache = 2097152U; /* 2MB - same as DNS_CACHE_MINSIZE */
|
||||
size_t hiwater = maxcache - (maxcache >> 3); /* borrowed from cache.c */
|
||||
@@ -370,12 +371,15 @@ ISC_RUN_TEST_IMPL(overmempurge_longname) {
|
||||
dns_db_detach(&db);
|
||||
isc_mem_destroy(&mctx2);
|
||||
}
|
||||
+#endif
|
||||
|
||||
ISC_TEST_LIST_START
|
||||
ISC_TEST_ENTRY(ownercase)
|
||||
ISC_TEST_ENTRY(setownercase)
|
||||
ISC_TEST_ENTRY(overmempurge_bigrdata)
|
||||
+#ifndef i386
|
||||
ISC_TEST_ENTRY(overmempurge_longname)
|
||||
+#endif
|
||||
ISC_TEST_LIST_END
|
||||
|
||||
ISC_TEST_MAIN
|
||||
--
|
||||
2.41.0
|
||||
|
||||
28
bind.spec
28
bind.spec
|
|
@ -76,7 +76,7 @@ License: MPL-2.0 AND ISC AND MIT AND BSD-3-Clause AND BSD-2-Clause
|
|||
# ./lib/isc/string.c BSD-3-clause and/or MPL-2.0
|
||||
# ./lib/isc/tm.c BSD-2-clause and/or MPL-2.0
|
||||
# ./lib/isccfg/parser.c BSD-2-clause and/or MPL-2.0
|
||||
Version: 9.18.16
|
||||
Version: 9.18.26
|
||||
Release: 1%{?dist}
|
||||
Epoch: 32
|
||||
Url: https://www.isc.org/downloads/bind/
|
||||
|
|
@ -114,6 +114,8 @@ Patch10: bind-9.5-PIE.patch
|
|||
Patch16: bind-9.16-redhat_doc.patch
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2122010
|
||||
Patch26: bind-9.18-unittest-netmgr-unstable.patch
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2240253
|
||||
Patch27: bind-9.18-tests-rbtdb_test-i686.patch
|
||||
|
||||
%{?systemd_ordering}
|
||||
Requires: coreutils
|
||||
|
|
@ -962,6 +964,30 @@ fi;
|
|||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Apr 22 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.26-1
|
||||
- Update to 9.18.26 (rhbz#2270476)
|
||||
|
||||
* Thu Feb 15 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.24-1
|
||||
- Update to 9.18.24 (#2264032)
|
||||
|
||||
* Tue Jan 16 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.20-2
|
||||
- Update changed b.root-servers.net address in hints (#2253460)
|
||||
|
||||
* Thu Nov 16 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.20-1
|
||||
- Update to 9.18.20 (#2249835)
|
||||
|
||||
* Fri Sep 22 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.19-1
|
||||
- Update to 9.18.19 (#2232346)
|
||||
|
||||
* Fri Sep 22 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.18-2
|
||||
- Skip failing rbtdb_test unit test on i686 (#2240253)
|
||||
|
||||
* Wed Sep 06 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.18-1
|
||||
- Update to 9.18.18 (#2232346)
|
||||
|
||||
* Wed Jul 19 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.17-1
|
||||
- Update to 9.18.17 (#2223913)
|
||||
|
||||
* Wed Jun 21 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.16-1
|
||||
- Update to 9.18.16 (#2216462)
|
||||
|
||||
|
|
|
|||
10
named.root
10
named.root
|
|
@ -8,9 +8,9 @@
|
|||
; file /domain/named.cache
|
||||
; on server FTP.INTERNIC.NET
|
||||
; -OR- RS.INTERNIC.NET
|
||||
;
|
||||
; last update: June 24, 2021
|
||||
; related version of root zone: 2021062401
|
||||
;
|
||||
; last update: December 20, 2023
|
||||
; related version of root zone: 2023122001
|
||||
;
|
||||
; FORMERLY NS.INTERNIC.NET
|
||||
;
|
||||
|
|
@ -21,8 +21,8 @@ A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
|
|||
; FORMERLY NS1.ISI.EDU
|
||||
;
|
||||
. 3600000 NS B.ROOT-SERVERS.NET.
|
||||
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
|
||||
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
|
||||
B.ROOT-SERVERS.NET. 3600000 A 170.247.170.2
|
||||
B.ROOT-SERVERS.NET. 3600000 AAAA 2801:1b8:10::b
|
||||
;
|
||||
; FORMERLY C.PSI.NET
|
||||
;
|
||||
|
|
|
|||
|
|
@ -6,3 +6,5 @@ discover:
|
|||
url: https://src.fedoraproject.org/tests/bind.git
|
||||
execute:
|
||||
how: tmt
|
||||
context:
|
||||
component: bind
|
||||
|
|
|
|||
|
|
@ -7,3 +7,5 @@ discover:
|
|||
filter: 'tier: 1'
|
||||
execute:
|
||||
how: tmt
|
||||
context:
|
||||
component: bind
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,2 +1,2 @@
|
|||
SHA512 (bind-9.18.16.tar.xz) = 90b510552e8fd0c358a627e32bd840eaafc946a2b3c5c4623d0e24aa167fb99aedd91ed19392a104ed5bfce341d9944bab02c680e19d312b59e6688f9546a1fd
|
||||
SHA512 (bind-9.18.16.tar.xz.asc) = 31f4f2d00975c576d551aa6cbd231ea91022c8d97c23c2341c844744258aec73965b2671e4f6a6bc20cd12e1c4dcca915dde0d99cff9cbb6b449fe23ebb79017
|
||||
SHA512 (bind-9.18.26.tar.xz) = 517951bd462aff206706a4bbae3ef917299f90af361fb931a50d2340f0580010b8a0eedce1d4e8c99e99389fc44d71221b907e30d91be0d398acbe29688d6e55
|
||||
SHA512 (bind-9.18.26.tar.xz.asc) = f310613ec1681a0041c6528081eae2a2e02c12514f7adffd339a62929c78afacaa53cb21b126220007cea56c7748a3ea808a0db6ecdbed9502daee9608407438
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue