commit
28e6699d62
@ -0,0 +1 @@
|
||||
8476168033b2e83cb3cb749cb1cc194269cebeff SOURCES/bind-dyndb-ldap-11.10.tar.bz2
|
@ -0,0 +1 @@
|
||||
SOURCES/bind-dyndb-ldap-11.10.tar.bz2
|
@ -0,0 +1,38 @@
|
||||
From 282b1c9ea58cc0f2337a72912808505e5f540d5a Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||
Date: Sat, 28 Jan 2023 11:32:05 +0100
|
||||
Subject: [PATCH] Minimal change to compile with BIND 9.18.11
|
||||
|
||||
DSCP codes are not working and their support were removed from BIND9. Do
|
||||
not require them to be present.
|
||||
---
|
||||
src/fwd.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/src/fwd.c b/src/fwd.c
|
||||
index 24f6e53..10ec848 100644
|
||||
--- a/src/fwd.c
|
||||
+++ b/src/fwd.c
|
||||
@@ -198,7 +198,9 @@ fwd_print_list_buff(isc_mem_t *mctx, dns_forwarders_t *fwdrs,
|
||||
INSIST((fwdr_int == NULL) == (fwdr_cfg == NULL)), fwdr_int != NULL;
|
||||
fwdr_int = ISC_LIST_NEXT(fwdr_int, link), fwdr_cfg = cfg_list_next(fwdr_cfg)) {
|
||||
fwdr_cfg->obj->value.sockaddrdscp.sockaddr = fwdr_int->addr;
|
||||
+#if LIBDNS_VERSION_MAJOR < 1811
|
||||
fwdr_cfg->obj->value.sockaddrdscp.dscp = fwdr_int->dscp;
|
||||
+#endif
|
||||
}
|
||||
cfg_print(faddresses, buffer_append_str, &tmp_buf);
|
||||
|
||||
@@ -281,7 +283,9 @@ fwd_parse_str(const char *fwdrs_str, isc_mem_t *mctx,
|
||||
isc_sockaddr_setport(&addr, port);
|
||||
fwdr = isc_mem_get(mctx, sizeof(*(fwdr)));
|
||||
fwdr->addr = addr;
|
||||
+#if LIBDNS_VERSION_MAJOR < 1811
|
||||
fwdr->dscp = cfg_obj_getdscp(fwdr_cfg);
|
||||
+#endif
|
||||
ISC_LINK_INIT(fwdr, link);
|
||||
ISC_LIST_APPEND(*fwdrs, fwdr, link);
|
||||
}
|
||||
--
|
||||
2.39.1
|
||||
|
@ -0,0 +1,56 @@
|
||||
From 5d9a012e07578d1a813b385224ba53f77f06b026 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||
Date: Wed, 22 Mar 2023 13:38:18 +0100
|
||||
Subject: [PATCH] Remove rpz_attach for BIND 9.16+
|
||||
|
||||
rpz_attach is never supplied from BIND9 code both in 9.16 or 9.18.
|
||||
Remove our custom function and pass NULL as well. It would be never
|
||||
called anyway.
|
||||
|
||||
Modified to directly remove the function without db_registered fix.
|
||||
---
|
||||
src/ldap_driver.c | 20 ++++----------------
|
||||
1 file changed, 4 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/src/ldap_driver.c b/src/ldap_driver.c
|
||||
index e4aeeb2..20e12fc 100644
|
||||
--- a/src/ldap_driver.c
|
||||
+++ b/src/ldap_driver.c
|
||||
@@ -804,22 +804,6 @@ rpz_attach(dns_db_t *db, dns_rpz_zones_t *rpzs, uint8_t rpz_num)
|
||||
|
||||
dns_db_rpz_attach(ldapdb->rbtdb, rpzs, rpz_num);
|
||||
}
|
||||
-#else
|
||||
-void
|
||||
-rpz_attach(dns_db_t *db, void *void_rpzs, uint8_t rpz_num)
|
||||
-{
|
||||
- ldapdb_t *ldapdb = (ldapdb_t *) db;
|
||||
- dns_rpz_zones_t *rpzs = (dns_rpz_zones_t *) void_rpzs;
|
||||
- isc_result_t result;
|
||||
-
|
||||
- REQUIRE(VALID_LDAPDB(ldapdb));
|
||||
-
|
||||
- rpzs->zones[rpz_num]->db_registered = true;
|
||||
- result = dns_db_updatenotify_register(ldapdb->rbtdb,
|
||||
- dns_rpz_dbupdate_callback,
|
||||
- rpzs->zones[rpz_num]);
|
||||
- REQUIRE(result == ISC_R_SUCCESS);
|
||||
-}
|
||||
#endif
|
||||
|
||||
/*
|
||||
@@ -966,7 +950,11 @@ static dns_dbmethods_t ldapdb_methods = {
|
||||
resigned,
|
||||
isdnssec,
|
||||
getrrsetstats,
|
||||
+#if LIBDNS_VERSION_MAJOR < 1600
|
||||
rpz_attach,
|
||||
+#else
|
||||
+ NULL,
|
||||
+#endif
|
||||
NULL, /* rpz_ready */
|
||||
findnodeext,
|
||||
findext,
|
||||
--
|
||||
2.39.2
|
||||
|
@ -0,0 +1,405 @@
|
||||
From 131ddb918a5e80bfac2ce97d994f75d42fdf4546 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||
Date: Mon, 25 Sep 2023 12:33:42 +0200
|
||||
Subject: [PATCH] Detect and propagate atomic libraries like bind9
|
||||
|
||||
BIND9 headers expect atomic definitions are configured before they are
|
||||
included. It needs adding atomic libraries detection in configure AND
|
||||
including config.h before any ISC headers are included.
|
||||
|
||||
Move dyndb-config.h before isc headers anywhere where needed.
|
||||
---
|
||||
configure.ac | 72 +++++++++++++++++++++++++++++++++++++++++++++
|
||||
src/empty_zones.c | 3 +-
|
||||
src/fs.c | 2 ++
|
||||
src/fwd_register.c | 3 +-
|
||||
src/krb5_helper.c | 1 +
|
||||
src/ldap_convert.c | 3 +-
|
||||
src/ldap_entry.c | 4 ++-
|
||||
src/lock.c | 2 ++
|
||||
src/log.c | 2 ++
|
||||
src/metadb.c | 2 ++
|
||||
src/mldap.c | 5 ++--
|
||||
src/rbt_helper.c | 3 +-
|
||||
src/semaphore.c | 2 ++
|
||||
src/settings.c | 3 +-
|
||||
src/str.c | 2 ++
|
||||
src/syncptr.c | 3 +-
|
||||
src/zone.c | 2 ++
|
||||
src/zone_register.c | 3 +-
|
||||
18 files changed, 107 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 9f7f3640c..c30f105db 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -145,6 +145,78 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([
|
||||
], [AC_MSG_ERROR([Cross compiling is not supported.])]
|
||||
)
|
||||
|
||||
+# Following atomic checks taken from bind9 configure
|
||||
+# SPDX-License-Identifier: MPL-2.0
|
||||
+#
|
||||
+# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
+# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
+# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
+#
|
||||
+ISC_ATOMIC_LIBS=""
|
||||
+AC_CHECK_HEADERS(
|
||||
+ [stdatomic.h],
|
||||
+ [AC_MSG_CHECKING([for memory model aware atomic operations])
|
||||
+ AC_COMPILE_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <stdatomic.h>]],
|
||||
+ [[atomic_int_fast32_t val = 0; atomic_fetch_add_explicit(&val, 1, memory_order_relaxed);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([stdatomic.h])
|
||||
+ AC_MSG_CHECKING([whether -latomic is needed for 64-bit stdatomic.h functions])
|
||||
+ AC_LINK_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <stdatomic.h>]],
|
||||
+ [[atomic_int_fast64_t val = 0; atomic_fetch_add_explicit(&val, 1, memory_order_relaxed);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([no])],
|
||||
+ [ISC_ATOMIC_LIBS="-latomic"
|
||||
+ AX_SAVE_FLAGS([atomic])
|
||||
+ LIBS="$LIBS $ISC_ATOMIC_LIBS"
|
||||
+ AC_LINK_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <stdatomic.h>]],
|
||||
+ [[atomic_int_fast64_t val = 0; atomic_fetch_add_explicit(&val, 1, memory_order_relaxed);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([yes])],
|
||||
+ [AC_MSG_FAILURE([libatomic needed, but linking with -latomic failed, please fix your toolchain.])])
|
||||
+ AX_RESTORE_FLAGS([atomic])
|
||||
+ ])
|
||||
+ ],
|
||||
+ [AC_MSG_FAILURE([stdatomic.h header found, but compilation failed, please fix your toolchain.])]
|
||||
+ )],
|
||||
+ [AC_MSG_CHECKING([for memory model aware atomic operations])
|
||||
+ AC_COMPILE_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <inttypes.h>]],
|
||||
+ [[int32_t val = 0; __atomic_fetch_add(&val, 1, __ATOMIC_RELAXED);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([__atomic builtins])
|
||||
+ AC_DEFINE([HAVE___ATOMIC], [1], [define if __atomic builtins are not available])
|
||||
+ AC_MSG_CHECKING([whether -latomic is needed for 64-bit __atomic builtins])
|
||||
+ AC_LINK_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <inttypes.h>]],
|
||||
+ [[int64_t val = 0; __atomic_fetch_add(&val, 1, __ATOMIC_RELAXED);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([no])],
|
||||
+ [ISC_ATOMIC_LIBS="-latomic"
|
||||
+ AX_SAVE_FLAGS([atomic])
|
||||
+ LIBS="$LIBS $ISC_ATOMIC_LIBS"
|
||||
+ AC_LINK_IFELSE(
|
||||
+ [AC_LANG_PROGRAM(
|
||||
+ [[#include <inttypes.h>]],
|
||||
+ [[int64_t val = 0; __atomic_fetch_add(&val, 1, __ATOMIC_RELAXED);]]
|
||||
+ )],
|
||||
+ [AC_MSG_RESULT([yes])],
|
||||
+ [AC_MSG_FAILURE([libatomic needed, but linking with -latomic failed, please fix your toolchain.])])
|
||||
+ AX_RESTORE_FLAGS([atomic])
|
||||
+ ])
|
||||
+ ],
|
||||
+ [AC_MSG_FAILURE([not found])
|
||||
+ ])
|
||||
+ ])
|
||||
+LIBS="$LIBS $ISC_ATOMIC_LIBS"
|
||||
+
|
||||
dnl isc_errno_toresult() was not available in older header files
|
||||
AC_MSG_CHECKING([isc_errno_toresult availability])
|
||||
AC_TRY_RUN([
|
||||
diff --git a/src/empty_zones.c b/src/empty_zones.c
|
||||
index 4e14a804a..f818046d4 100644
|
||||
--- a/src/empty_zones.c
|
||||
+++ b/src/empty_zones.c
|
||||
@@ -1,5 +1,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/result.h>
|
||||
#include <isc/types.h>
|
||||
#include <isc/util.h>
|
||||
@@ -8,7 +10,6 @@
|
||||
#include <dns/zone.h>
|
||||
#include <dns/zt.h>
|
||||
|
||||
-#include "dyndb-config.h"
|
||||
#include "empty_zones.h"
|
||||
#include "util.h"
|
||||
#include "zone_register.h"
|
||||
diff --git a/src/fs.c b/src/fs.c
|
||||
index 09df5842a..4f3c9c069 100644
|
||||
--- a/src/fs.c
|
||||
+++ b/src/fs.c
|
||||
@@ -8,6 +8,8 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/dir.h>
|
||||
#include <isc/file.h>
|
||||
#include <isc/errno.h>
|
||||
diff --git a/src/fwd_register.c b/src/fwd_register.c
|
||||
index 5a3d4e2c2..85792d52e 100644
|
||||
--- a/src/fwd_register.c
|
||||
+++ b/src/fwd_register.c
|
||||
@@ -2,11 +2,12 @@
|
||||
* Copyright (C) 2013-2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/rwlock.h>
|
||||
#include <isc/util.h>
|
||||
#include <dns/name.h>
|
||||
|
||||
-#include "dyndb-config.h"
|
||||
#include "rbt_helper.h"
|
||||
#include "fwd_register.h"
|
||||
#include "util.h"
|
||||
diff --git a/src/krb5_helper.c b/src/krb5_helper.c
|
||||
index 5d7ee6a9a..92412304b 100644
|
||||
--- a/src/krb5_helper.c
|
||||
+++ b/src/krb5_helper.c
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
#define _POSIX_C_SOURCE 200112L /* setenv */
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
#include <isc/util.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
diff --git a/src/ldap_convert.c b/src/ldap_convert.c
|
||||
index 87f635f79..0a946c421 100644
|
||||
--- a/src/ldap_convert.c
|
||||
+++ b/src/ldap_convert.c
|
||||
@@ -2,6 +2,8 @@
|
||||
* Copyright (C) 2009-2015 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/buffer.h>
|
||||
#include <isc/hex.h>
|
||||
#include <isc/mem.h>
|
||||
@@ -20,7 +22,6 @@
|
||||
#include <strings.h>
|
||||
#include <ctype.h>
|
||||
|
||||
-#include "dyndb-config.h"
|
||||
#include "str.h"
|
||||
#include "ldap_convert.h"
|
||||
#include "log.h"
|
||||
diff --git a/src/ldap_entry.c b/src/ldap_entry.c
|
||||
index cdf26d858..a29797b1c 100644
|
||||
--- a/src/ldap_entry.c
|
||||
+++ b/src/ldap_entry.c
|
||||
@@ -2,12 +2,14 @@
|
||||
* Copyright (C) 2011-2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
#include <uuid/uuid.h>
|
||||
+#include <inttypes.h>
|
||||
+
|
||||
+#include "dyndb-config.h"
|
||||
|
||||
#include <dns/rdata.h>
|
||||
#include <dns/ttl.h>
|
||||
#include <dns/types.h>
|
||||
|
||||
-#include <inttypes.h>
|
||||
#include <isc/region.h>
|
||||
#include <isc/types.h>
|
||||
#include <isc/util.h>
|
||||
diff --git a/src/lock.c b/src/lock.c
|
||||
index df6e5ccba..abb5fe0d7 100644
|
||||
--- a/src/lock.c
|
||||
+++ b/src/lock.c
|
||||
@@ -2,6 +2,8 @@
|
||||
* Copyright (C) 2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/task.h>
|
||||
#include <isc/util.h>
|
||||
|
||||
diff --git a/src/log.c b/src/log.c
|
||||
index 1eba3cde2..78f9e68b5 100644
|
||||
--- a/src/log.c
|
||||
+++ b/src/log.c
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/formatcheck.h>
|
||||
#include <isc/util.h>
|
||||
|
||||
diff --git a/src/metadb.c b/src/metadb.c
|
||||
index 276de244f..f035269d2 100644
|
||||
--- a/src/metadb.c
|
||||
+++ b/src/metadb.c
|
||||
@@ -4,6 +4,8 @@
|
||||
* Meta-database for information which are not represented in DNS data.
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/mutex.h>
|
||||
#include <isc/util.h>
|
||||
|
||||
diff --git a/src/mldap.c b/src/mldap.c
|
||||
index 0bc2d332f..92a330ccb 100644
|
||||
--- a/src/mldap.c
|
||||
+++ b/src/mldap.c
|
||||
@@ -8,8 +8,10 @@
|
||||
#include <ldap.h>
|
||||
#include <stddef.h>
|
||||
#include <uuid/uuid.h>
|
||||
-
|
||||
#include <inttypes.h>
|
||||
+
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/net.h>
|
||||
#include <isc/refcount.h>
|
||||
#include <isc/result.h>
|
||||
@@ -27,7 +29,6 @@
|
||||
#include "metadb.h"
|
||||
#include "mldap.h"
|
||||
#include "util.h"
|
||||
-#include "dyndb-config.h"
|
||||
|
||||
#if LIBDNS_VERSION_MAJOR < 1600
|
||||
#define REFCOUNT_CAST(n) ((typeof(((isc_refcount_t *)0)->refs)) (n))
|
||||
diff --git a/src/rbt_helper.c b/src/rbt_helper.c
|
||||
index 6009553bf..d918801c6 100644
|
||||
--- a/src/rbt_helper.c
|
||||
+++ b/src/rbt_helper.c
|
||||
@@ -2,12 +2,13 @@
|
||||
* Copyright (C) 2013-2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/util.h>
|
||||
#include <dns/rbt.h>
|
||||
|
||||
#include "util.h"
|
||||
#include "rbt_helper.h"
|
||||
-#include "dyndb-config.h"
|
||||
|
||||
#define LDAPDB_RBTITER_MAGIC ISC_MAGIC('L', 'D', 'P', 'I')
|
||||
|
||||
diff --git a/src/semaphore.c b/src/semaphore.c
|
||||
index b6d02ffac..8b549b8a4 100644
|
||||
--- a/src/semaphore.c
|
||||
+++ b/src/semaphore.c
|
||||
@@ -8,6 +8,8 @@
|
||||
* own signal. However, for our purposes, this shouldn't be needed.
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/condition.h>
|
||||
#include <isc/result.h>
|
||||
#include <isc/util.h>
|
||||
diff --git a/src/settings.c b/src/settings.c
|
||||
index 2a0bb1982..2c9d18238 100644
|
||||
--- a/src/settings.c
|
||||
+++ b/src/settings.c
|
||||
@@ -2,6 +2,8 @@
|
||||
* Copyright (C) 2009-2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/util.h>
|
||||
#include <isc/mem.h>
|
||||
#include <isc/task.h>
|
||||
@@ -24,7 +26,6 @@
|
||||
#include "types.h"
|
||||
#include "ldap_helper.h"
|
||||
#include "zone_register.h"
|
||||
-#include "dyndb-config.h"
|
||||
|
||||
#if LIBDNS_VERSION_MAJOR < 1600
|
||||
#define cfg_parse_buffer cfg_parse_buffer4
|
||||
diff --git a/src/str.c b/src/str.c
|
||||
index 6797eded0..a68f66c73 100644
|
||||
--- a/src/str.c
|
||||
+++ b/src/str.c
|
||||
@@ -9,6 +9,8 @@
|
||||
* Review all the REQUIRE() macros.
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/buffer.h>
|
||||
#include <isc/mem.h>
|
||||
#include <isc/mutex.h>
|
||||
diff --git a/src/syncptr.c b/src/syncptr.c
|
||||
index f7b8c02bc..7fab14a9e 100644
|
||||
--- a/src/syncptr.c
|
||||
+++ b/src/syncptr.c
|
||||
@@ -6,6 +6,8 @@
|
||||
#include <arpa/inet.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/event.h>
|
||||
#include <isc/netaddr.h>
|
||||
#include <isc/task.h>
|
||||
@@ -18,7 +20,6 @@
|
||||
#include <dns/zone.h>
|
||||
#include <dns/zt.h>
|
||||
|
||||
-#include "dyndb-config.h"
|
||||
#include "util.h"
|
||||
#include "ldap_convert.h"
|
||||
#include "ldap_entry.h"
|
||||
diff --git a/src/zone.c b/src/zone.c
|
||||
index 0180ba8ea..899f612c3 100644
|
||||
--- a/src/zone.c
|
||||
+++ b/src/zone.c
|
||||
@@ -3,6 +3,8 @@
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/types.h>
|
||||
#include <isc/util.h>
|
||||
|
||||
diff --git a/src/zone_register.c b/src/zone_register.c
|
||||
index 504aa9be2..4db5e02c7 100644
|
||||
--- a/src/zone_register.c
|
||||
+++ b/src/zone_register.c
|
||||
@@ -2,6 +2,8 @@
|
||||
* Copyright (C) 2009-2014 bind-dyndb-ldap authors; see COPYING for license
|
||||
*/
|
||||
|
||||
+#include "dyndb-config.h"
|
||||
+
|
||||
#include <isc/mem.h>
|
||||
#include <isc/rwlock.h>
|
||||
#include <isc/util.h>
|
||||
@@ -12,7 +14,6 @@
|
||||
#include <dns/result.h>
|
||||
#include <dns/zone.h>
|
||||
|
||||
-#include "dyndb-config.h"
|
||||
#include "fs.h"
|
||||
#include "ldap_driver.h"
|
||||
#include "log.h"
|
||||
--
|
||||
2.41.0
|
||||
|
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEEhAodHH8+xLL+UwQ1RxniuKu/YhoFAmKxbw8ACgkQRxniuKu/
|
||||
YhpvSQ/+ONhrsgo9PS5Lbe7gpQcBIWlzat2TnceeeDNE7ybB4iXSFaAjYFwysGQ0
|
||||
5/WJGIjzA4r+fl7o5JxBhn8HAxN3TM13xhzM/91sFAlNDrnO6QameulIEr8vAJTW
|
||||
HNuQ/+rwZKfyGWJn32Ztex/7lX+GAQKnMqZ90TdHibMMawk2rP5617N1hgUMDkao
|
||||
9bCVZ8ezzrKeECaJDygi8VT/3z0wffksnL/Elj5NVRJD1T9J2cNEwxj9oklnccOc
|
||||
dK7C/zzv9k2mH4CssVZsZxk0JDO8McuzquSgBWJy4n6Jxz6tunykmGAjQDS/UizI
|
||||
DuC6tCnDZL2kN0krMe0wXyayT+D13jUPjsj8/GKxz7QbIPu6sK6EXj/FEwH+LscG
|
||||
xud7v79puMJ76CO+/mhLg7qTV+erAuy0HjGcS7cGX/l4X9lMpesrDwOD17/MpfFL
|
||||
6+6aAf8ypzo2gxRW0x4Xb8vrJwYyt4+l9u+ipm8RfYRXcT6dMwuhjkXr3AE9Np1g
|
||||
Hh/Ya5EwgICiCzO5J9Q7xvU8kqzXvMpwd+FY/3lnGXg982UmTTYZBixVU8BuXFqi
|
||||
aXo73b6+zXr9sT/Dclz8ZA/UX60GyQ7qTFYGSPa5ZPts4DL8IgWliXJaalDG5XvW
|
||||
VtfeMOfH9Q2mAPrBa0BTVmHwItzDgjGCVGeSAdN8g1tFpq48rxQ=
|
||||
=2rGI
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,104 @@
|
||||
From 5dd2fefa0bc7cd7689004cec64304c3a02be9eab Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
Date: Thu, 12 Jan 2023 13:25:10 +0200
|
||||
Subject: [PATCH] Support bind 9.18.10 or later
|
||||
|
||||
dns_db_allrdatasets() gained a new parameter. Adopt the code to allow
|
||||
injecting 0 options if building against 9.18.10.
|
||||
|
||||
Fixes: https://pagure.io/bind-dyndb-ldap/issue/216
|
||||
|
||||
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
---
|
||||
src/ldap_driver.c | 7 ++++---
|
||||
src/ldap_helper.c | 4 ++--
|
||||
src/metadb.c | 3 ++-
|
||||
src/util.h | 6 ++++++
|
||||
4 files changed, 14 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/src/ldap_driver.c b/src/ldap_driver.c
|
||||
index 7367493..e4aeeb2 100644
|
||||
--- a/src/ldap_driver.c
|
||||
+++ b/src/ldap_driver.c
|
||||
@@ -465,13 +465,14 @@ findrdataset(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
|
||||
|
||||
static isc_result_t
|
||||
allrdatasets(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
|
||||
- isc_stdtime_t now, dns_rdatasetiter_t **iteratorp)
|
||||
+ DNS_DB_ALLRDATASETS_OPTIONS(unsigned int options, isc_stdtime_t now),
|
||||
+ dns_rdatasetiter_t **iteratorp)
|
||||
{
|
||||
ldapdb_t *ldapdb = (ldapdb_t *) db;
|
||||
|
||||
REQUIRE(VALID_LDAPDB(ldapdb));
|
||||
|
||||
- return dns_db_allrdatasets(ldapdb->rbtdb, node, version, now, iteratorp);
|
||||
+ return dns_db_allrdatasets(ldapdb->rbtdb, node, version, DNS_DB_ALLRDATASETS_OPTIONS(options, now), iteratorp);
|
||||
}
|
||||
|
||||
/* TODO: Add 'tainted' flag to the LDAP instance if something went wrong. */
|
||||
@@ -514,7 +515,7 @@ node_isempty(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
|
||||
|
||||
CHECK(ldapdb_name_fromnode(node, dns_fixedname_initname(&fname)));
|
||||
|
||||
- result = dns_db_allrdatasets(db, node, version, now, &rds_iter);
|
||||
+ result = dns_db_allrdatasets(db, node, version, DNS_DB_ALLRDATASETS_OPTIONS(0, now), &rds_iter);
|
||||
if (result == ISC_R_NOTFOUND) {
|
||||
*isempty = true;
|
||||
} else if (result == ISC_R_SUCCESS) {
|
||||
diff --git a/src/ldap_helper.c b/src/ldap_helper.c
|
||||
index 7ea3df9..7ac3d91 100644
|
||||
--- a/src/ldap_helper.c
|
||||
+++ b/src/ldap_helper.c
|
||||
@@ -2005,7 +2005,7 @@ zone_sync_apex(const ldap_instance_t * const inst,
|
||||
zone_settings, &rdatalist));
|
||||
|
||||
CHECK(dns_db_getoriginnode(rbtdb, &node));
|
||||
- result = dns_db_allrdatasets(rbtdb, node, version, 0,
|
||||
+ result = dns_db_allrdatasets(rbtdb, node, version, DNS_DB_ALLRDATASETS_OPTIONS(0, 0),
|
||||
&rbt_rds_iterator);
|
||||
if (result == ISC_R_SUCCESS) {
|
||||
CHECK(diff_ldap_rbtdb(inst->mctx, &name, &rdatalist,
|
||||
@@ -3929,7 +3929,7 @@ update_restart:
|
||||
CHECK(dns_db_newversion(ldapdb, &version));
|
||||
|
||||
CHECK(dns_db_findnode(rbtdb, &entry->fqdn, true, &node));
|
||||
- result = dns_db_allrdatasets(rbtdb, node, version, 0, &rbt_rds_iterator);
|
||||
+ result = dns_db_allrdatasets(rbtdb, node, version, DNS_DB_ALLRDATASETS_OPTIONS(0, 0), &rbt_rds_iterator);
|
||||
if (result != ISC_R_SUCCESS && result != ISC_R_NOTFOUND)
|
||||
goto cleanup;
|
||||
|
||||
diff --git a/src/metadb.c b/src/metadb.c
|
||||
index f469a30..276de24 100644
|
||||
--- a/src/metadb.c
|
||||
+++ b/src/metadb.c
|
||||
@@ -217,7 +217,8 @@ metadb_node_delete(metadb_node_t **nodep) {
|
||||
node = *nodep;
|
||||
|
||||
dns_rdataset_init(&rdataset);
|
||||
- CHECK(dns_db_allrdatasets(node->rbtdb, node->dbnode, node->version, 0,
|
||||
+ CHECK(dns_db_allrdatasets(node->rbtdb, node->dbnode, node->version,
|
||||
+ DNS_DB_ALLRDATASETS_OPTIONS(0, 0),
|
||||
&iter));
|
||||
|
||||
for (result = dns_rdatasetiter_first(iter);
|
||||
diff --git a/src/util.h b/src/util.h
|
||||
index 5088ff3..e4620ff 100644
|
||||
--- a/src/util.h
|
||||
+++ b/src/util.h
|
||||
@@ -29,6 +29,12 @@ extern bool verbose_checks; /* from settings.c */
|
||||
#define dns_name_copynf(src, dst) dns_name_copy((src), (dst))
|
||||
#endif
|
||||
|
||||
+#if LIBDNS_VERSION_MAJOR >= 1810
|
||||
+#define DNS_DB_ALLRDATASETS_OPTIONS(options, tstamp) options, tstamp
|
||||
+#else
|
||||
+#define DNS_DB_ALLRDATASETS_OPTIONS(options, tstamp) tstamp
|
||||
+#endif
|
||||
+
|
||||
#define CLEANUP_WITH(result_code) \
|
||||
do { \
|
||||
result = (result_code); \
|
||||
--
|
||||
2.39.0
|
||||
|
@ -0,0 +1,152 @@
|
||||
From 00131b7b72daa953ab2bf5e6a4fd5508052debb0 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
Date: Thu, 12 Jan 2023 14:33:07 +0200
|
||||
Subject: [PATCH] adopt to bind 9.18.9+ loggers
|
||||
|
||||
Fixes: https://pagure.io/bind-dyndb-ldap/issues/216
|
||||
|
||||
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
---
|
||||
src/ldap_helper.c | 12 ++++--------
|
||||
src/log.h | 9 +++++++++
|
||||
src/settings.c | 12 ++++--------
|
||||
src/syncrepl.c | 6 ++----
|
||||
4 files changed, 19 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/src/ldap_helper.c b/src/ldap_helper.c
|
||||
index 7ac3d91..acabd31 100644
|
||||
--- a/src/ldap_helper.c
|
||||
+++ b/src/ldap_helper.c
|
||||
@@ -1317,8 +1317,7 @@ configure_zone_acl(isc_mem_t *mctx, dns_zone_t *zone,
|
||||
dns_zone_logc(zone, DNS_LOGCATEGORY_SECURITY, ISC_LOG_CRITICAL,
|
||||
"cannot configure restrictive %s policy: %s",
|
||||
type_txt, isc_result_totext(result2));
|
||||
- FATAL_ERROR(__FILE__, __LINE__,
|
||||
- "insecure state detected");
|
||||
+ fatal_error("insecure state detected");
|
||||
}
|
||||
}
|
||||
acl_setter(zone, acl);
|
||||
@@ -1365,8 +1364,7 @@ configure_zone_ssutable(dns_zone_t *zone, const char *update_str)
|
||||
dns_zone_logc(zone, DNS_LOGCATEGORY_SECURITY, ISC_LOG_CRITICAL,
|
||||
"cannot disable all updates: %s",
|
||||
isc_result_totext(result2));
|
||||
- FATAL_ERROR(__FILE__, __LINE__,
|
||||
- "insecure state detected");
|
||||
+ fatal_error("insecure state detected");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2951,8 +2949,7 @@ force_reconnect:
|
||||
ldap_inst);
|
||||
break;
|
||||
case AUTH_INVALID:
|
||||
- UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||
- "invalid auth_method_enum value %u",
|
||||
+ unexpected_error("invalid auth_method_enum value %u",
|
||||
auth_method_enum);
|
||||
break;
|
||||
|
||||
@@ -3782,8 +3779,7 @@ update_zone(isc_task_t *task, isc_event_t *event)
|
||||
else if (entry->class & LDAP_ENTRYCLASS_FORWARD)
|
||||
CHECK(ldap_parse_fwd_zoneentry(entry, inst));
|
||||
else
|
||||
- FATAL_ERROR(__FILE__, __LINE__,
|
||||
- "update_zone: unexpected entry class");
|
||||
+ fatal_error("update_zone: unexpected entry class");
|
||||
}
|
||||
|
||||
cleanup:
|
||||
diff --git a/src/log.h b/src/log.h
|
||||
index da71f8b..844ac46 100644
|
||||
--- a/src/log.h
|
||||
+++ b/src/log.h
|
||||
@@ -17,8 +17,17 @@
|
||||
#define GET_LOG_LEVEL(level) (level)
|
||||
#endif
|
||||
|
||||
+#if LIBDNS_VERSION_MAJOR >= 1809
|
||||
+#define fatal_error(...) \
|
||||
+ isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
|
||||
+#define unexpected_error(...) \
|
||||
+ isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
|
||||
+#else
|
||||
#define fatal_error(...) \
|
||||
isc_error_fatal(__FILE__, __LINE__, __VA_ARGS__)
|
||||
+#define unexpected_error(...) \
|
||||
+ isc_error_unexpected(__FILE__, __LINE__, __VA_ARGS__)
|
||||
+#endif
|
||||
|
||||
#define log_bug(fmt, ...) \
|
||||
log_error("bug in %s(): " fmt, __func__,##__VA_ARGS__)
|
||||
diff --git a/src/settings.c b/src/settings.c
|
||||
index def60d7..2a0bb19 100644
|
||||
--- a/src/settings.c
|
||||
+++ b/src/settings.c
|
||||
@@ -178,8 +178,7 @@ setting_get(const char *const name, const setting_type_t type,
|
||||
*(bool *)target = setting->value.value_boolean;
|
||||
break;
|
||||
default:
|
||||
- UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||
- "invalid setting_type_t value %u", type);
|
||||
+ unexpected_error("invalid setting_type_t value %u", type);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -278,8 +277,7 @@ set_value(isc_mem_t *mctx, const settings_set_t *set, setting_t *setting,
|
||||
CLEANUP_WITH(ISC_R_IGNORE);
|
||||
break;
|
||||
default:
|
||||
- UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||
- "invalid setting_type_t value %u", setting->type);
|
||||
+ unexpected_error("invalid setting_type_t value %u", setting->type);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -304,8 +302,7 @@ set_value(isc_mem_t *mctx, const settings_set_t *set, setting_t *setting,
|
||||
setting->value.value_boolean = numeric_value;
|
||||
break;
|
||||
default:
|
||||
- UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||
- "invalid setting_type_t value %u", setting->type);
|
||||
+ unexpected_error("invalid setting_type_t value %u", setting->type);
|
||||
break;
|
||||
}
|
||||
setting->filled = 1;
|
||||
@@ -389,8 +386,7 @@ setting_unset(const char *const name, const settings_set_t *set)
|
||||
case ST_BOOLEAN:
|
||||
break;
|
||||
default:
|
||||
- UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||
- "invalid setting_type_t value %u", setting->type);
|
||||
+ unexpected_error("invalid setting_type_t value %u", setting->type);
|
||||
break;
|
||||
}
|
||||
setting->filled = 0;
|
||||
diff --git a/src/syncrepl.c b/src/syncrepl.c
|
||||
index 0bee09a..f94379c 100644
|
||||
--- a/src/syncrepl.c
|
||||
+++ b/src/syncrepl.c
|
||||
@@ -148,8 +148,7 @@ finish(isc_task_t *task, isc_event_t *event) {
|
||||
case sync_datainit:
|
||||
case sync_finished:
|
||||
default:
|
||||
- FATAL_ERROR(__FILE__, __LINE__,
|
||||
- "sync_barrier_wait(): invalid state "
|
||||
+ fatal_error("sync_barrier_wait(): invalid state "
|
||||
"%u", bev->sctx->state);
|
||||
}
|
||||
sync_state_change(bev->sctx, new_state, false);
|
||||
@@ -518,8 +517,7 @@ sync_barrier_wait(sync_ctx_t *sctx, ldap_instance_t *inst) {
|
||||
case sync_databarrier:
|
||||
case sync_finished:
|
||||
default:
|
||||
- FATAL_ERROR(__FILE__, __LINE__,
|
||||
- "sync_barrier_wait(): invalid state "
|
||||
+ fatal_error("sync_barrier_wait(): invalid state "
|
||||
"%u", sctx->state);
|
||||
}
|
||||
|
||||
--
|
||||
2.39.0
|
||||
|
@ -0,0 +1,38 @@
|
||||
From 47902df23bf637e6c7ece67b928339e0fda58ae0 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
Date: Mon, 16 Jan 2023 11:03:24 +0200
|
||||
Subject: [PATCH] Handle dns_db_allrdatasets() backports too
|
||||
|
||||
With https://gitlab.isc.org/isc-projects/bind9/-/merge_requests/7189 the
|
||||
changes were also backported to 9.16.36+ as well. Instead of checking
|
||||
version, check if an additional define is present.
|
||||
|
||||
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
|
||||
---
|
||||
src/util.h | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/util.h b/src/util.h
|
||||
index e4620ff..5da0f5c 100644
|
||||
--- a/src/util.h
|
||||
+++ b/src/util.h
|
||||
@@ -13,6 +13,7 @@
|
||||
#include <dns/types.h>
|
||||
#include <dns/name.h>
|
||||
#include <dns/result.h>
|
||||
+#include <dns/db.h>
|
||||
|
||||
#include "log.h"
|
||||
#include "dyndb-config.h"
|
||||
@@ -29,7 +30,7 @@ extern bool verbose_checks; /* from settings.c */
|
||||
#define dns_name_copynf(src, dst) dns_name_copy((src), (dst))
|
||||
#endif
|
||||
|
||||
-#if LIBDNS_VERSION_MAJOR >= 1810
|
||||
+#ifdef DNS_DB_STALEOK
|
||||
#define DNS_DB_ALLRDATASETS_OPTIONS(options, tstamp) options, tstamp
|
||||
#else
|
||||
#define DNS_DB_ALLRDATASETS_OPTIONS(options, tstamp) tstamp
|
||||
--
|
||||
2.39.0
|
||||
|
@ -0,0 +1,701 @@
|
||||
|
||||
%define VERSION %{version}
|
||||
|
||||
%define bind_version 32:9.16.16
|
||||
|
||||
%if 0%{?fedora} >= 31 || 0%{?rhel} > 8
|
||||
%global openssl_pkcs11_version 0.4.10-6
|
||||
%global softhsm_version 2.5.0-4
|
||||
%else
|
||||
%global with_bind_pkcs11 1
|
||||
%endif
|
||||
|
||||
Name: bind-dyndb-ldap
|
||||
Version: 11.10
|
||||
Release: 26%{?dist}
|
||||
Summary: LDAP back-end plug-in for BIND
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://releases.pagure.org/bind-dyndb-ldap
|
||||
Source0: https://releases.pagure.org/%{name}/%{name}-%{VERSION}.tar.bz2
|
||||
Source1: https://releases.pagure.org/%{name}/%{name}-%{VERSION}.tar.bz2.asc
|
||||
|
||||
# https://pagure.io/bind-dyndb-ldap/pull-request/217
|
||||
# https://pagure.io/bind-dyndb-ldap/c/00131b7b72daa953ab2bf5e6a4fd5508052debb0
|
||||
Patch1: bind-dyndb-ldap-bind-9.18.10-db-options.patch
|
||||
# https://pagure.io/bind-dyndb-ldap/c/47902df23bf637e6c7ece67b928339e0fda58ae0
|
||||
Patch2: bind-dyndb-ldap-bind-9.18.10-logs.patch
|
||||
# https://pagure.io/bind-dyndb-ldap/c/5dd2fefa0bc7cd7689004cec64304c3a02be9eab
|
||||
Patch3: bind-dyndb-ldap-bind-9.18.10-staleok.patch
|
||||
Patch4: bind-dyndb-ldap-11.10-bind-9.18.11.patch
|
||||
Patch5: bind-dyndb-ldap-11.10-bind-9.18.13.patch
|
||||
# https://pagure.io/bind-dyndb-ldap/pull-request/226
|
||||
Patch6: bind-dyndb-ldap-11.10-bind-9.18.19.patch
|
||||
|
||||
BuildRequires: bind-devel >= %{bind_version}, bind-lite-devel >= %{bind_version}
|
||||
BuildRequires: krb5-devel
|
||||
BuildRequires: openldap-devel
|
||||
BuildRequires: libuuid-devel
|
||||
BuildRequires: automake, autoconf, libtool
|
||||
BuildRequires: autoconf-archive
|
||||
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2165256
|
||||
Conflicts: bind9-next
|
||||
|
||||
%if %{with bind_pkcs11}
|
||||
BuildRequires: bind-pkcs11-devel >= %{bind_version}
|
||||
BuildRequires: make
|
||||
Requires(pre): bind-pkcs11 >= %{bind_version}
|
||||
Requires: bind-pkcs11 >= %{bind_version}
|
||||
Requires: bind-pkcs11-utils >= %{bind_version}
|
||||
%else
|
||||
Requires: softhsm >= %{softhsm_version}
|
||||
Requires: openssl-pkcs11 >= %{openssl_pkcs11_version}
|
||||
Requires(pre): bind >= %{bind_version}
|
||||
Requires: bind >= %{bind_version}
|
||||
%endif
|
||||
|
||||
%description
|
||||
This package provides an LDAP back-end plug-in for BIND. It features
|
||||
support for dynamic updates and internal caching, to lift the load
|
||||
off of your LDAP server.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{VERSION} -p1
|
||||
|
||||
%build
|
||||
autoreconf -fiv
|
||||
export BIND9_CFLAGS='-I /usr/include/bind9 -DHAVE_TLS -DHAVE_THREAD_LOCAL'
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
mkdir -m 770 -p %{buildroot}/%{_localstatedir}/named/dyndb-ldap
|
||||
|
||||
# Remove unwanted files
|
||||
rm %{buildroot}%{_libdir}/bind/ldap.la
|
||||
rm -r %{buildroot}%{_datadir}/doc/%{name}
|
||||
|
||||
|
||||
%post
|
||||
[ -f /etc/named.conf ] || exit 0
|
||||
|
||||
# Transform named.conf if it still has old-style API.
|
||||
PLATFORM=$(uname -m)
|
||||
|
||||
if [ $PLATFORM == "x86_64" ] ; then
|
||||
LIBPATH=/usr/lib64
|
||||
else
|
||||
LIBPATH=/usr/lib
|
||||
fi
|
||||
|
||||
# The following sed script:
|
||||
# - scopes the named.conf changes to dynamic-db
|
||||
# - replaces arg "name value" syntax with name "value"
|
||||
# - changes dynamic-db header to dyndb
|
||||
# - uses the new way the define path to the library
|
||||
# - removes no longer supported arguments (library, cache_ttl,
|
||||
# psearch, serial_autoincrement, zone_refresh)
|
||||
while read -r PATTERN
|
||||
do
|
||||
SEDSCRIPT+="$PATTERN"
|
||||
done <<EOF
|
||||
/^\s*dynamic-db/,/};/ {
|
||||
|
||||
s/\(\s*\)arg\s\+\(["']\)\([a-zA-Z_]\+\s\)/\1\3\2/g;
|
||||
|
||||
s/^dynamic-db/dyndb/;
|
||||
|
||||
s@\(dyndb "[^"]\+"\)@\1 "$LIBPATH/bind/ldap.so"@;
|
||||
s@\(dyndb '[^']\+'\)@\1 '$LIBPATH/bind/ldap.so'@;
|
||||
|
||||
/\s*library[^;]\+;/d;
|
||||
/\s*cache_ttl[^;]\+;/d;
|
||||
/\s*psearch[^;]\+;/d;
|
||||
/\s*serial_autoincrement[^;]\+;/d;
|
||||
/\s*zone_refresh[^;]\+;/d;
|
||||
}
|
||||
EOF
|
||||
|
||||
sed -i.bak -e "$SEDSCRIPT" /etc/named.conf
|
||||
|
||||
|
||||
%files
|
||||
%doc NEWS README.md COPYING doc/{example,schema}.ldif
|
||||
%dir %attr(770, root, named) %{_localstatedir}/named/dyndb-ldap
|
||||
%{_libdir}/bind/ldap.so
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 11.10-26
|
||||
- Rebuilt for MSVSphere 10
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 11.10-26
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 11.10-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 11.10-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Jan 15 2024 Petr Menšík <pemensik@redhat.com> - 11.10-23
|
||||
- Rebuilt for BIND 9.18.21 (#2255407)
|
||||
|
||||
* Mon Nov 20 2023 Petr Menšík <pemensik@redhat.com> - 11.10-22
|
||||
- Rebuilt for BIND 9.18.20 (#2249835)
|
||||
|
||||
* Mon Sep 25 2023 Petr Menšík <pemensik@redhat.com> - 11.10-21
|
||||
- Support for bind 9.18.19 (#2232346)
|
||||
- Require autoconf-archive at build time
|
||||
|
||||
* Wed Sep 06 2023 Petr Menšík <pemensik@redhat.com> - 11.10-20
|
||||
- Rebuilt for BIND 9.18.18 (#2232346)
|
||||
|
||||
* Wed Jul 19 2023 Petr Menšík <pemensik@redhat.com> - 11.10-19
|
||||
- Rebuild for BIND 9.18.17 (#2223913)
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 11.10-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jun 21 2023 Petr Menšík <pemensik@redhat.com> - 11.10-17
|
||||
- Rebuild for BIND 9.18.16 (#2216462)
|
||||
|
||||
* Thu May 18 2023 Petr Menšík <pemensik@redhat.com> - 11.10-16
|
||||
- Rebuild for BIND 9.18.15 (#2207908)
|
||||
|
||||
* Sat Apr 22 2023 Petr Menšík <pemensik@redhat.com> - 11.10-15
|
||||
- Rebuilt for BIND 9.18.14 (#2187996)
|
||||
|
||||
* Wed Mar 22 2023 Petr Menšík <pemensik@redhat.com> - 11.10-14
|
||||
- Rebuilt for BIND 9.18.13 (#2178717)
|
||||
|
||||
* Mon Feb 20 2023 Petr Menšík <pemensik@redhat.com> - 11.10-13
|
||||
- Rebuilt for BIND 9.18.12 (#2170096)
|
||||
|
||||
* Sun Jan 29 2023 Adam Williamson <awilliam@redhat.com> - 11.10-12
|
||||
- Rebuild for BIND 9.18.11 again (tagging mess, again see #2165256)
|
||||
|
||||
* Sat Jan 28 2023 Adam Williamson <awilliam@redhat.com> - 11.10-11.2
|
||||
- Conflict with bind9-next (#2165256)
|
||||
|
||||
* Sat Jan 28 2023 Petr Menšík <pemensik@redhat.com> - 11.10-11
|
||||
- Support for BIND 9.18.11 (#2164395)
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 11.10-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Jan 16 2023 Petr Menšík <pemensik@redhat.com> - 11.10-9
|
||||
- Rebuilt for BIND 9.18.10 (#2143258)
|
||||
- Include changes needed to build with latest BIND9
|
||||
|
||||
* Mon Nov 21 2022 Petr Menšík <pemensik@redhat.com> - 11.10-8
|
||||
- Rebuilt for BIND 9.18.9 (#2143258)
|
||||
- Support error header change
|
||||
|
||||
* Sat Oct 22 2022 Petr Menšík <pemensik@redhat.com> - 11.10-7
|
||||
- Rebuilt for BIND 9.18.8 (#2136100)
|
||||
|
||||
* Wed Sep 21 2022 Petr Menšík <pemensik@redhat.com> - 11.10-6
|
||||
- Rebuild for BIND 9.18.7 (#2128609)
|
||||
|
||||
* Tue Sep 13 2022 Petr Menšík <pemensik@redhat.com> - 11.10-5
|
||||
- Rebuild for BIND 9.18.6 with fixed PKCS11 (#2122841)
|
||||
|
||||
* Tue Aug 30 2022 Petr Menšík <pemensik@redhat.com> - 11.10-4
|
||||
- Rebuild for BIND 9.18.6 (#2119132)
|
||||
|
||||
* Wed Aug 03 2022 Petr Menšík <pemensik@redhat.com> - 11.10-3
|
||||
- Rebuild for BIND 9.18.5 (#2057493)
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 11.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jun 21 2022 Alexander Bokovoy <abokovoy@redhat.com> - 11.10-1
|
||||
- Release 11.10
|
||||
- Support BIND 9.17+
|
||||
|
||||
* Mon Jun 20 2022 Petr Menšík <pemensik@redhat.com> - 11.9-17
|
||||
- Rebuilt for BIND 9.16.30 (#2097312)
|
||||
|
||||
* Fri May 27 2022 Petr Menšík <pemensik@redhat.com> - 11.9-16
|
||||
- Rebuild for BIND 9.16.29 (#2087920)
|
||||
|
||||
* Thu Apr 21 2022 Petr Menšík <pemensik@redhat.com> - 11.9-15
|
||||
- Rebuilt for BIND 9.16.28 (#2076941)
|
||||
|
||||
* Fri Mar 18 2022 Petr Menšík <pemensik@redhat.com> - 11.9-14
|
||||
- Rebuilt for BIND 9.16.27 (#2055120)
|
||||
|
||||
* Fri Jan 21 2022 Petr Menšík <pemensik@redhat.com> - 11.9-13
|
||||
- Rebuild for BIND 9.16.25 (#2042504)
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 11.9-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Dec 30 2021 Alexander Bokovoy <abokovoy@redhat.com> - 11.9-11
|
||||
- Rebuild for BIND 9.16.24 (#2035298)
|
||||
|
||||
* Wed Dec 15 2021 Petr Menšík <pemensik@redhat.com> - 11.9-10
|
||||
- Rebuilt for BIND 9.16.23 (#2032934)
|
||||
|
||||
* Fri Nov 19 2021 Petr Menšík <pemensik@redhat.com> - 11.9-9
|
||||
- Rebuilt for BIND 9.16.23 (#2024210)
|
||||
|
||||
* Thu Oct 28 2021 Petr Menšík <pemensik@redhat.com> - 11.9-8
|
||||
- Rebuilt for BIND 9.16.22 (#2017912)
|
||||
|
||||
* Fri Sep 17 2021 Petr Menšík <pemensik@redhat.com> - 11.9-7
|
||||
- Rebuilt for BIND 9.16.21 (#2004385)
|
||||
|
||||
* Thu Aug 19 2021 Petr Menšík <pemensik@redhat.com> - 11.9-6
|
||||
- Rebuilt for BIND 9.16.20 (#1995289)
|
||||
|
||||
* Wed Jul 21 2021 Petr Menšík <pemensik@redhat.com> - 11.9-5
|
||||
- Rebuilt for BIND 9.16.19 (#1984627)
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sat Jun 19 2021 Petr Menšík <pemensik@redhat.com> - 11.9-3
|
||||
- Rebuilt for BIND 9.16.18
|
||||
|
||||
* Thu Jun 17 2021 Petr Menšík <pemensik@redhat.com> - 11.9-2
|
||||
- Add BIND 9.16.17 support
|
||||
|
||||
* Mon May 24 2021 Alexander Bokovoy <abokovoy@redhat.com> - 11.9-1
|
||||
- New upstream release 11.9
|
||||
|
||||
* Fri May 21 2021 Petr Menšík <pemensik@redhat.com> - 11.7-4
|
||||
- Add BIND 9.16.16 support
|
||||
|
||||
* Thu Apr 29 2021 Petr Menšík <pemensik@redhat.com> - 11.7-3
|
||||
- Rebuilt for BIND 9.16.15
|
||||
|
||||
* Fri Mar 26 2021 Petr Menšík <pemensik@redhat.com> - 11.7-2
|
||||
- Support for BIND 9.16.13
|
||||
|
||||
* Wed Feb 24 2021 Alexander Bokovoy <abokovoy@redhat.com> - 11.7-1
|
||||
- Upstream release 11.7
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 22 2021 Petr Menšík <pemensik@redhat.com> - 11.6-6
|
||||
- Rebuilt for BIND 9.16.11
|
||||
|
||||
* Fri Jan 15 2021 Petr Menšík <pemensik@redhat.com> - 11.6-5
|
||||
- Rebuilt for BIND 9.16.10
|
||||
|
||||
* Tue Jan 12 2021 Petr Menšík <pemensik@redhat.com> - 11.6-4
|
||||
- Support BIND 9.16.10
|
||||
- Use make macros
|
||||
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||
|
||||
* Thu Dec 17 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.6-3
|
||||
- Both require bind and require it for pre-install script
|
||||
- Resolves: rhbz#1902811
|
||||
|
||||
* Thu Dec 17 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.6-2
|
||||
- Fix requires to bind: require bind installed before bind-dyndb-ldap
|
||||
as we depend on named group
|
||||
|
||||
* Mon Nov 23 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.6-1
|
||||
- Upstream release 11.6
|
||||
- Use reference counting semantics in destructors according to BIND version
|
||||
|
||||
* Wed Nov 18 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.5-1
|
||||
- Upstream release 11.5
|
||||
- Use OpenSSL pkcs11 engine in BIND instead of native PKCS11
|
||||
|
||||
* Fri Oct 23 2020 Petr Menšík <pemensik@redhat.com> - 11.3-5
|
||||
- Rebuilt for bind 9.11.24
|
||||
|
||||
* Fri Aug 21 2020 Petr Menšík <pemensik@redhat.com> - 11.3-4
|
||||
- Rebuilt for bind 9.11.22
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 11.3-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 11.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jun 08 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.3-1
|
||||
- Upstream release 11.3
|
||||
|
||||
* Tue Mar 31 2020 Petr Menšík <pemensik@redhat.com> - 11.2-5
|
||||
- Rebuilt for bind 9.11.17
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 11.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Nov 25 2019 Petr Menšík <pemensik@redhat.com> - 11.2-3
|
||||
- Rebuilt for bind 9.11.13
|
||||
|
||||
* Mon Nov 11 2019 Petr Menšík <pemensik@redhat.com> - 11.2-2
|
||||
- Add support for serve-stale, detected on build time
|
||||
|
||||
* Tue Nov 05 2019 Alexander Bokovoy <abokovoy@redhat.com> - 11.2-1
|
||||
- New upstream release v11.2
|
||||
|
||||
* Tue Aug 27 2019 Petr Menšík <pemensik@redhat.com> - 11.1-20
|
||||
- Rebuilt for bind 9.11.10
|
||||
|
||||
* Fri Aug 16 2019 Alexander Bokovoy <abokovoy@redhat.com> - 11.1-19
|
||||
- Fix attribute templating in case of a missing default value
|
||||
- Resolves: rhbz#1705072
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jul 17 2019 Petr Menšík <pemensik@redhat.com> - 11.1-17
|
||||
- Rebuilt for bind 9.11.8
|
||||
|
||||
* Tue Jun 11 2019 Petr Menšík <pemensik@redhat.com> - 11.1-16
|
||||
- Rebuilt for bind 9.11.7
|
||||
|
||||
* Fri May 03 2019 Petr Menšík <pemensik@redhat.com> - 11.1-15
|
||||
- Rebuilt for bind 9.11.6
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Nov 05 2018 Petr Menšík <pemensik@redhat.com> - 11.1-13
|
||||
- Support for bind 9.11.5 headers
|
||||
|
||||
* Thu Jul 12 2018 Petr Menšík <pemensik@redhat.com> - 11.1-12
|
||||
- Require bind with writable home, update to 9.11.4
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Mar 01 2018 Petr Menšík <pemensik@redhat.com> - 11.1-10
|
||||
- Rebuild for bind 9.11.3. Minor tweaks to compile.
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2018 Petr Menšík <pemensik@redhat.com> - 11.1-8
|
||||
- Rebuild again against bind-9.11.2-P1
|
||||
|
||||
* Tue Jan 09 2018 Petr Menšík <pemensik@redhat.com> - 11.1-7
|
||||
- Rebuild for bind 9.11.2
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue Jun 27 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-4
|
||||
- Bump BIND version and fix library dependecies
|
||||
- Coverity fixes
|
||||
|
||||
* Mon Jun 26 2017 Petr Menšík <pemensik@redhat.com> - 11.1-3
|
||||
- Build with updated libraries
|
||||
|
||||
* Mon Mar 13 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-2
|
||||
- Fix error poinstall sed script
|
||||
|
||||
* Fri Mar 10 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-1
|
||||
- Update to 11.1
|
||||
- Bumped required version of BIND to 9.11.0-6.P2
|
||||
(required since bind-dyndb-ldap 11.0-1 release)
|
||||
- Updated source URL links to pagure
|
||||
|
||||
* Fri Feb 10 2017 Tomas Krizek <tkrizek@redhat.com> - 11.0-2
|
||||
- Patch to fix build warnings (removed duplicate const)
|
||||
|
||||
* Thu Feb 09 2017 Tomas Krizek <tkrizek@redhat.com> - 11.0-2
|
||||
- Added named.conf transformation script as post action
|
||||
|
||||
* Thu Dec 15 2016 Tomas Krizek <tkrizek@redhat.com> - 11.0-1
|
||||
- Update to 11.0
|
||||
|
||||
* Mon Nov 21 2016 Petr Menšík <pemensik@redhat.com> - 10.1-2
|
||||
- Patched to alfa 11.0 with support for BIND 9.11
|
||||
- Configuration format in named.conf is different
|
||||
and incompatible with all previous versions. Please see README.md.
|
||||
- Minimal BIND version is now 9.11.0rc1. Please see NEWS.
|
||||
|
||||
* Wed Aug 17 2016 Petr Spacek <pspacek@redhat.com> - 10.1-1
|
||||
- Update to 10.1.
|
||||
- Fix deletion of DNS root zone not to break global forwarding.
|
||||
https://fedorahosted.org/bind-dyndb-ldap/ticket/167
|
||||
|
||||
* Wed Jul 27 2016 Petr Spacek <pspacek@redhat.com> - 10.0-2
|
||||
- Backport fix for crash https://fedorahosted.org/bind-dyndb-ldap/ticket/166
|
||||
|
||||
* Tue Jun 21 2016 Petr Spacek <pspacek@redhat.com> - 10.0-1
|
||||
- Update to 10.0
|
||||
|
||||
* Fri May 27 2016 Tomas Hozza <thozza@redhat.com> - 9.0-3
|
||||
- Resolved build issue due to changes in libdns API
|
||||
|
||||
* Thu May 26 2016 Tomas Hozza <thozza@redhat.com> - 9.0-2
|
||||
- Rebuild against bind-9.10.4-P1
|
||||
|
||||
* Thu May 12 2016 Petr Spacek <pspacek@redhat.com> - 9.0-1
|
||||
- Update to 9.0
|
||||
- Fix for GCC 4.9+ was merged upstream
|
||||
|
||||
* Fri Mar 04 2016 Petr Spacek <pspacek@redhat.com> - 8.0-6
|
||||
- Fix builds with GCC 4.9+
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 8.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Dec 17 2015 Petr Spacek <pspacek@redhat.com> - 8.0-4
|
||||
- Rebuild against bind 9.10.3-P2
|
||||
|
||||
* Fri Sep 04 2015 Tomas Hozza <thozza@redhat.com> - 8.0-3
|
||||
- Rebuild against bind 9.10.3rc1
|
||||
|
||||
* Wed Jun 24 2015 Tomas Hozza <thozza@redhat.com> - 8.0-2
|
||||
- rebuild against bind-9.10.2-P1
|
||||
|
||||
* Tue Jun 23 2015 Petr Spacek <pspacek@redhat.com> - 8.0-1
|
||||
- update to 8.0
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Mar 13 2015 Tomas Hozza <thozza@redhat.com> - 7.0-4
|
||||
- rebuild against bind-9.10.2
|
||||
|
||||
* Wed Feb 25 2015 Tomas Hozza <thozza@redhat.com> - 7.0-3
|
||||
- Rebuild against bind-9.10.2rc2
|
||||
|
||||
* Mon Feb 02 2015 Tomas Hozza <thozza@redhat.com> - 7.0-2
|
||||
- rebuild against bind-9.10.2rc1
|
||||
|
||||
* Mon Jan 12 2015 Petr Spacek <pspacek@redhat.com> - 7.0-1
|
||||
- update to 7.0 to add support for BIND 9.10
|
||||
|
||||
* Tue Dec 02 2014 Petr Spacek <pspacek@redhat.com> - 6.1-1
|
||||
- update to 6.1
|
||||
- drop patches which were merged upstream
|
||||
|
||||
* Tue Oct 21 2014 Petr Viktorin <pviktori@redhat.com> - 6.0-5
|
||||
- use lower version of bind-pkcs11-utils for f20 and el7
|
||||
|
||||
* Mon Oct 20 2014 Petr Spacek <pspacek@redhat.com> - 6.0-4
|
||||
- add dependency on bind-pkcs11-utils >= 32:9.9.6-2
|
||||
to help with freeipa-server upgrade
|
||||
|
||||
* Mon Oct 20 2014 Petr Spacek <pspacek@redhat.com> - 6.0-3
|
||||
- replace dependency on bind with dependency on bind-pkcs11 >= 32:9.9.6-2
|
||||
to help with freeipa-server upgrade
|
||||
|
||||
* Fri Oct 03 2014 Tomas Hozza <thozza@redhat.com> - 6.0-2
|
||||
- rebuild against bind-9.9.6
|
||||
|
||||
* Tue Sep 23 2014 Petr Spacek <pspacek redhat com> - 6.0-1
|
||||
- update to 6.0
|
||||
|
||||
* Fri Sep 12 2014 Petr Spacek <pspacek redhat com> - 5.3-1
|
||||
- update to 5.3
|
||||
|
||||
* Mon Sep 08 2014 Petr Spacek <pspacek redhat com> 5.2-1
|
||||
- update to 5.2
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Thu Jul 24 2014 Petr Spacek <pspacek redhat com> 5.1-1
|
||||
- update to 5.1
|
||||
- fixes bug 1122393
|
||||
|
||||
* Tue Jun 24 2014 Petr Spacek <pspacek redhat com> 5.0-1
|
||||
- update to 5.0
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed Apr 09 2014 Petr Spacek <pspacek redhat com> 4.3-1
|
||||
- update to 4.3
|
||||
|
||||
* Mon Feb 24 2014 Petr Spacek <pspacek redhat com> 4.1-2
|
||||
- remove deprecated define _BSD_SOURCE
|
||||
|
||||
* Mon Feb 24 2014 Petr Spacek <pspacek redhat com> 4.1-1
|
||||
- update to 4.1
|
||||
|
||||
* Thu Jul 18 2013 Petr Spacek <pspacek redhat com> 3.5-1
|
||||
- update to 3.5
|
||||
|
||||
* Mon Jul 15 2013 Tomas Hozza <thozza@redhat.com> 3.4-2
|
||||
- rebuild against new bind
|
||||
|
||||
* Tue Jun 25 2013 Petr Spacek <pspacek redhat com> 3.4-1
|
||||
- update to 3.4
|
||||
|
||||
* Tue Jun 04 2013 Petr Spacek <pspacek redhat com> 3.3-1
|
||||
- update to 3.3
|
||||
- patch bind-dyndb-ldap-tbabej-0001-Build-fixes-for-Fedora-19.patch merged
|
||||
|
||||
* Tue May 14 2013 Petr Spacek <pspacek redhat com> 3.2-1
|
||||
- update to 3.2
|
||||
|
||||
* Tue Apr 16 2013 Adam Tkac <atkac redhat com> 3.1-2
|
||||
- rebuild against new bind
|
||||
- build with --disable-werror
|
||||
|
||||
* Fri Apr 12 2013 Petr Spacek <pspacek redhat com> 3.1-1
|
||||
- update to 3.1
|
||||
|
||||
* Tue Apr 02 2013 Petr Spacek <pspacek redhat com> 3.0-1
|
||||
- update to 3.0
|
||||
|
||||
* Tue Mar 26 2013 Petr Spacek <pspacek redhat com> 2.6-1
|
||||
- update to 2.6
|
||||
|
||||
* Mon Feb 04 2013 Petr Spacek <pspacek redhat com> 2.5-1
|
||||
- update to 2.5
|
||||
|
||||
* Tue Jan 15 2013 Petr Spacek <pspacek redhat com> 2.4-1
|
||||
- update to 2.4
|
||||
|
||||
* Thu Nov 8 2012 Petr Spacek <pspacek redhat com> 2.3-2
|
||||
- rebuild with proper changelog
|
||||
|
||||
* Thu Nov 8 2012 Petr Spacek <pspacek redhat com> 2.3-1
|
||||
- update to 2.3
|
||||
|
||||
* Mon Oct 29 2012 Adam Tkac <atkac redhat com> 2.1-1
|
||||
- update to 2.1
|
||||
|
||||
* Thu Oct 11 2012 Adam Tkac <atkac redhat com> 2.0-0.3.20121009git6a86b1
|
||||
- rebuild against new bind-libs
|
||||
|
||||
* Tue Oct 9 2012 Petr Spacek <pspacek redhat com> 2.0-0.2.20121009git6a86b1
|
||||
- update to the latest master
|
||||
|
||||
* Fri Sep 21 2012 Adam Tkac <atkac redhat com> 2.0-0.1.20120921git7710d89
|
||||
- update to the latest master
|
||||
- bind-dyndb-ldap110-master.patch was merged
|
||||
|
||||
* Thu Aug 16 2012 Adam Tkac <atkac redhat com> 1.1.0-0.16.rc1
|
||||
- update to the latest git
|
||||
|
||||
* Thu Aug 02 2012 Adam Tkac <atkac redhat com> 1.1.0-0.15.rc1
|
||||
- update to the latest git
|
||||
- fix for CVE-2012-3429 has been merged
|
||||
|
||||
* Thu Aug 02 2012 Adam Tkac <atkac redhat com> 1.1.0-0.14.rc1
|
||||
- fix CVE-2012-3429
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-0.13.rc1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu Jun 07 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.12.rc1
|
||||
- update to the latest master (#827401)
|
||||
|
||||
* Thu Apr 26 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.11.rc1
|
||||
- update to 1.1.0rc1 (CVE-2012-2134)
|
||||
|
||||
* Tue Mar 27 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.10.b2
|
||||
- update to 1.1.0b2
|
||||
|
||||
* Tue Mar 06 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.9.b1
|
||||
- update to 1.1.0b1
|
||||
|
||||
* Mon Feb 13 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.8.a2
|
||||
- update to 1.1.0a2
|
||||
|
||||
* Thu Feb 02 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.7.a1
|
||||
- rebuild against new bind
|
||||
|
||||
* Wed Jan 18 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.6.a1
|
||||
- update to 1.1.0a1
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-0.5.rc1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.4.rc1
|
||||
- update to 1.0.0rc1
|
||||
|
||||
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.3.b1
|
||||
- rebuild against new bind
|
||||
|
||||
* Fri Sep 09 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.2.b1
|
||||
- rebuild against new bind
|
||||
|
||||
* Wed Aug 31 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.1.b1
|
||||
- update to 1.0.0b1 (psearch + bugfixes)
|
||||
- bind-dyndb-ldap-rh727856.patch merged
|
||||
|
||||
* Wed Aug 03 2011 Adam Tkac <atkac redhat com> - 0.2.0-4
|
||||
- fix race condition in semaphore_wait (#727856)
|
||||
|
||||
* Mon Feb 21 2011 Adam Tkac <atkac redhat com> - 0.2.0-3
|
||||
- rebuild against new bind
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Jan 12 2011 Adam Tkac <atkac redhat com> - 0.2.0-1
|
||||
- update to 0.2.0
|
||||
- patches merged
|
||||
- 0001-Bugfix-Improve-LDAP-schema-to-be-loadable-by-OpenLDA.patch
|
||||
- 0004-Bugfix-Fix-loading-of-child-zones-from-LDAP.patch
|
||||
|
||||
* Wed Dec 15 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.17.b
|
||||
- fix LDAP schema (#622604)
|
||||
- load child zones from LDAP correctly (#622617)
|
||||
|
||||
* Fri Oct 22 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.16.b
|
||||
- build with correct RPM_OPT_FLAGS (#645529)
|
||||
|
||||
* Wed Oct 20 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.15.b
|
||||
- use "isc-config.sh" utility to get correct BIND9 CFLAGS
|
||||
|
||||
* Thu Sep 30 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.14.b
|
||||
- rebuild against new bind
|
||||
|
||||
* Fri Aug 27 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.13.b
|
||||
- rebuild against new bind
|
||||
|
||||
* Tue Aug 17 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.12.b
|
||||
- rebuild against new bind
|
||||
|
||||
* Tue Aug 03 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.11.b
|
||||
- rebuild against new bind
|
||||
|
||||
* Mon May 31 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.10.b
|
||||
- rebuild against new bind
|
||||
|
||||
* Wed Mar 24 2010 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.9.b
|
||||
- update to the latest upstream release
|
||||
|
||||
* Thu Jan 28 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.8.a1.20091210git
|
||||
- rebuild against new bind
|
||||
|
||||
* Tue Dec 15 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.7.a1.20091210git
|
||||
- rebuild against new bind
|
||||
|
||||
* Thu Dec 10 2009 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.6.a1.20091210git
|
||||
- update to the latest git snapshot
|
||||
- change upstream URL, project moved to fedorahosted
|
||||
- change license to GPL version 2 or later
|
||||
- add epoch to versioned requires
|
||||
- add krb5-devel to the list of build requires
|
||||
|
||||
* Tue Dec 01 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.5.a1
|
||||
- rebuild against new bind
|
||||
|
||||
* Thu Nov 26 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.4.a1
|
||||
- rebuild against new bind
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-0.3.a1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2009 Caolán McNamara <caolanm@redhat.com> - 0.1.0-0.2.a1
|
||||
- rebuild for dependencies
|
||||
|
||||
* Sun May 03 2009 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.1.a1
|
||||
- initial packaging
|
Loading…
Reference in new issue