commit
9611431c4b
@ -0,0 +1 @@
|
|||||||
|
SOURCES/ldns-1.8.3.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
2796cc49636f68260c9662b60d5a7c9e6eed195c SOURCES/ldns-1.8.3.tar.gz
|
@ -0,0 +1,69 @@
|
|||||||
|
diff --git a/ldns-1.8.1/packaging/ldns-config.in b/ldns-1.8.1/packaging/ldns-config.in
|
||||||
|
index 623f77e..2b961f9 100755
|
||||||
|
--- a/ldns-1.8.1/packaging/ldns-config.in
|
||||||
|
+++ b/ldns-1.8.1/packaging/ldns-config.in
|
||||||
|
@@ -3,16 +3,28 @@
|
||||||
|
prefix="@prefix@"
|
||||||
|
exec_prefix="@exec_prefix@"
|
||||||
|
VERSION="@PACKAGE_VERSION@"
|
||||||
|
-CFLAGS="@CFLAGS@"
|
||||||
|
CPPFLAGS="@CPPFLAGS@ @LIBSSL_CPPFLAGS@"
|
||||||
|
-LDFLAGS="@LDFLAGS@ @LIBSSL_LDFLAGS@"
|
||||||
|
PYTHON_CPPFLAGS="@PYTHON_CPPFLAGS@"
|
||||||
|
-PYTHON_LDFLAGS="@PYTHON_LDFLAGS@"
|
||||||
|
+PYTHON_LDFLAGS="@PYTHON_LIBS@"
|
||||||
|
LIBS="@LIBS@ @LIBSSL_LIBS@"
|
||||||
|
-LIBDIR="@libdir@"
|
||||||
|
INCLUDEDIR="@includedir@"
|
||||||
|
LIBVERSION="@VERSION_INFO@"
|
||||||
|
+ARCH="`uname -m`"
|
||||||
|
|
||||||
|
+case $ARCH in
|
||||||
|
+ x86_64 | amd64 | sparc64 | s390x | ppc64)
|
||||||
|
+
|
||||||
|
+ LIBDIR="/usr/lib64"
|
||||||
|
+ LIBDIR_SEC="/usr/lib"
|
||||||
|
+ ;;
|
||||||
|
+ * )
|
||||||
|
+ LIBDIR="/usr/lib"
|
||||||
|
+ LIBDIR_SEC="/usr/lib64"
|
||||||
|
+ ;;
|
||||||
|
+esac
|
||||||
|
+
|
||||||
|
+LDFLAGS_SEC="@LDFLAGS@ -L$LIBDIR_SEC"
|
||||||
|
+LDFLAGS="@LDFLAGS@ -L$LIBDIR"
|
||||||
|
|
||||||
|
for arg in $@
|
||||||
|
do
|
||||||
|
@@ -28,13 +40,17 @@ do
|
||||||
|
then
|
||||||
|
echo "${LDFLAGS} -L${LIBDIR} ${LIBS} -lldns"
|
||||||
|
fi
|
||||||
|
+ if [ $arg = "--libs_sec" ] || [ $arg = "--libs-sec" ]
|
||||||
|
+ then
|
||||||
|
+ echo "${LDFLAGS_SEC} ${LIBS} -lldns"
|
||||||
|
+ fi
|
||||||
|
if [ $arg = "--python-libs" ]
|
||||||
|
then
|
||||||
|
echo "${LDFLAGS} ${PYTHON_LDFLAGS} -L${LIBDIR} ${LIBS} -lldns"
|
||||||
|
fi
|
||||||
|
if [ $arg = "-h" ] || [ $arg = "--help" ]
|
||||||
|
then
|
||||||
|
- echo "Usage: $0 [--cflags] [--python-cflags] [--libs] [--python-libs] [--version]"
|
||||||
|
+ echo "Usage: $0 [--cflags] [--python-cflags] [--libs] [--libs-sec] [--python-libs] [--version]"
|
||||||
|
fi
|
||||||
|
if [ $arg = "--version" ]
|
||||||
|
then
|
||||||
|
diff --git a/ldns-1.8.1/packaging/libldns.pc.in b/ldns-1.8.1/packaging/libldns.pc.in
|
||||||
|
index 923b688..3c30db8 100644
|
||||||
|
--- a/ldns-1.8.1/packaging/libldns.pc.in
|
||||||
|
+++ b/ldns-1.8.1/packaging/libldns.pc.in
|
||||||
|
@@ -1,7 +1,7 @@
|
||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
-includedir=@includedir@
|
||||||
|
+includedir=@includedir@/ldns
|
||||||
|
|
||||||
|
Name: ldns
|
||||||
|
Description: Library for DNS programming
|
@ -0,0 +1,24 @@
|
|||||||
|
From d7c107aff35800cd571f69d56a118d9ec91bd152 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||||
|
Date: Fri, 19 Jul 2024 12:58:05 +0200
|
||||||
|
Subject: [PATCH] Remove unused openssl/engine.h header
|
||||||
|
|
||||||
|
---
|
||||||
|
ldns-1.8.3/examples/ldns-nsec3-hash.c | 1 -
|
||||||
|
1 file changed, 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/ldns-1.8.3/examples/ldns-nsec3-hash.c b/ldns-1.8.3/examples/ldns-nsec3-hash.c
|
||||||
|
index f9325d3..f04f1aa 100644
|
||||||
|
--- a/ldns-1.8.3/examples/ldns-nsec3-hash.c
|
||||||
|
+++ b/ldns-1.8.3/examples/ldns-nsec3-hash.c
|
||||||
|
@@ -18,7 +18,6 @@
|
||||||
|
|
||||||
|
#ifdef HAVE_SSL
|
||||||
|
#include <openssl/conf.h>
|
||||||
|
-#include <openssl/engine.h>
|
||||||
|
#endif /* HAVE_SSL */
|
||||||
|
|
||||||
|
#define MAX_FILENAME_LEN 250
|
||||||
|
--
|
||||||
|
2.45.2
|
||||||
|
|
@ -0,0 +1,293 @@
|
|||||||
|
From 5a9b19d53b34b3a1b332b39569945ae5dedb1a61 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||||
|
Date: Tue, 3 Jan 2023 21:37:34 +0100
|
||||||
|
Subject: [PATCH] Update python configuration, support platform site dir
|
||||||
|
|
||||||
|
Update to the most recent ax_python_devel.m4 from autoconf-archive
|
||||||
|
2022.09.03. It reports two separate directories, one for platform
|
||||||
|
independent files, another for platform specific files.
|
||||||
|
|
||||||
|
Make minimal change and switch to using platform dependent directory.
|
||||||
|
Should work on python 3.12, which removes distutils module completely.
|
||||||
|
---
|
||||||
|
ldns-1.8.3/Makefile.in | 2 +-
|
||||||
|
ldns-1.8.3/ax_python_devel.m4 | 147 +++++++++++++++++++++++++++-------
|
||||||
|
2 files changed, 119 insertions(+), 30 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/ldns-1.8.3/Makefile.in b/ldns-1.8.3/Makefile.in
|
||||||
|
index 57957d0..64bb155 100644
|
||||||
|
--- a/ldns-1.8.3/Makefile.in
|
||||||
|
+++ b/ldns-1.8.3/Makefile.in
|
||||||
|
@@ -20,7 +20,7 @@ p5_dns_ldns_dir = $(srcdir)/contrib/DNS-LDNS
|
||||||
|
PERL = @PERL@
|
||||||
|
swig = @swig@
|
||||||
|
swigpy_flags = -python @SWIGPY3@
|
||||||
|
-python_site = @PYTHON_SITE_PKG@
|
||||||
|
+python_site = @PYTHON_PLATFORM_SITE_PKG@
|
||||||
|
pyldns_inst = @PYLDNSINST@
|
||||||
|
pyldns_uninst = @PYLDNSUNINST@
|
||||||
|
pyldnsx_inst = @PYLDNSXINST@
|
||||||
|
diff --git a/ldns-1.8.3/ax_python_devel.m4 b/ldns-1.8.3/ax_python_devel.m4
|
||||||
|
index aff04f6..780584e 100644
|
||||||
|
--- a/ldns-1.8.3/ax_python_devel.m4
|
||||||
|
+++ b/ldns-1.8.3/ax_python_devel.m4
|
||||||
|
@@ -67,7 +67,7 @@
|
||||||
|
# modified version of the Autoconf Macro, you may extend this special
|
||||||
|
# exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
|
-#serial 21
|
||||||
|
+#serial 32
|
||||||
|
|
||||||
|
AU_ALIAS([AC_PYTHON_DEVEL], [AX_PYTHON_DEVEL])
|
||||||
|
AC_DEFUN([AX_PYTHON_DEVEL],[
|
||||||
|
@@ -112,15 +112,39 @@ to something else than an empty string.
|
||||||
|
fi
|
||||||
|
|
||||||
|
#
|
||||||
|
- # if the macro parameter ``version'' is set, honour it
|
||||||
|
+ # If the macro parameter ``version'' is set, honour it.
|
||||||
|
+ # A Python shim class, VPy, is used to implement correct version comparisons via
|
||||||
|
+ # string expressions, since e.g. a naive textual ">= 2.7.3" won't work for
|
||||||
|
+ # Python 2.7.10 (the ".1" being evaluated as less than ".3").
|
||||||
|
#
|
||||||
|
if test -n "$1"; then
|
||||||
|
AC_MSG_CHECKING([for a version of Python $1])
|
||||||
|
- ac_supports_python_ver=`$PYTHON -c "import sys; \
|
||||||
|
- ver = sys.version.split ()[[0]]; \
|
||||||
|
+ cat << EOF > ax_python_devel_vpy.py
|
||||||
|
+class VPy:
|
||||||
|
+ def vtup(self, s):
|
||||||
|
+ return tuple(map(int, s.strip().replace("rc", ".").split(".")))
|
||||||
|
+ def __init__(self):
|
||||||
|
+ import sys
|
||||||
|
+ self.vpy = tuple(sys.version_info)
|
||||||
|
+ def __eq__(self, s):
|
||||||
|
+ return self.vpy == self.vtup(s)
|
||||||
|
+ def __ne__(self, s):
|
||||||
|
+ return self.vpy != self.vtup(s)
|
||||||
|
+ def __lt__(self, s):
|
||||||
|
+ return self.vpy < self.vtup(s)
|
||||||
|
+ def __gt__(self, s):
|
||||||
|
+ return self.vpy > self.vtup(s)
|
||||||
|
+ def __le__(self, s):
|
||||||
|
+ return self.vpy <= self.vtup(s)
|
||||||
|
+ def __ge__(self, s):
|
||||||
|
+ return self.vpy >= self.vtup(s)
|
||||||
|
+EOF
|
||||||
|
+ ac_supports_python_ver=`$PYTHON -c "import ax_python_devel_vpy; \
|
||||||
|
+ ver = ax_python_devel_vpy.VPy(); \
|
||||||
|
print (ver $1)"`
|
||||||
|
+ rm -rf ax_python_devel_vpy*.py* __pycache__/ax_python_devel_vpy*.py*
|
||||||
|
if test "$ac_supports_python_ver" = "True"; then
|
||||||
|
- AC_MSG_RESULT([yes])
|
||||||
|
+ AC_MSG_RESULT([yes])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
AC_MSG_ERROR([this package requires Python $1.
|
||||||
|
@@ -135,16 +159,25 @@ variable to configure. See ``configure --help'' for reference.
|
||||||
|
#
|
||||||
|
# Check if you have distutils, else fail
|
||||||
|
#
|
||||||
|
- AC_MSG_CHECKING([for the distutils Python package])
|
||||||
|
- ac_distutils_result=`$PYTHON -c "import distutils" 2>&1`
|
||||||
|
+ AC_MSG_CHECKING([for the sysconfig Python package])
|
||||||
|
+ ac_sysconfig_result=`$PYTHON -c "import sysconfig" 2>&1`
|
||||||
|
if test $? -eq 0; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
+ IMPORT_SYSCONFIG="import sysconfig"
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
- AC_MSG_ERROR([cannot import Python module "distutils".
|
||||||
|
+
|
||||||
|
+ AC_MSG_CHECKING([for the distutils Python package])
|
||||||
|
+ ac_sysconfig_result=`$PYTHON -c "from distutils import sysconfig" 2>&1`
|
||||||
|
+ if test $? -eq 0; then
|
||||||
|
+ AC_MSG_RESULT([yes])
|
||||||
|
+ IMPORT_SYSCONFIG="from distutils import sysconfig"
|
||||||
|
+ else
|
||||||
|
+ AC_MSG_ERROR([cannot import Python module "distutils".
|
||||||
|
Please check your Python installation. The error was:
|
||||||
|
-$ac_distutils_result])
|
||||||
|
- PYTHON_VERSION=""
|
||||||
|
+$ac_sysconfig_result])
|
||||||
|
+ PYTHON_VERSION=""
|
||||||
|
+ fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
#
|
||||||
|
@@ -152,10 +185,19 @@ $ac_distutils_result])
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([for Python include path])
|
||||||
|
if test -z "$PYTHON_CPPFLAGS"; then
|
||||||
|
- python_path=`$PYTHON -c "import distutils.sysconfig; \
|
||||||
|
- print (distutils.sysconfig.get_python_inc ());"`
|
||||||
|
- plat_python_path=`$PYTHON -c "import distutils.sysconfig; \
|
||||||
|
- print (distutils.sysconfig.get_python_inc (plat_specific=1));"`
|
||||||
|
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||||
|
+ # sysconfig module has different functions
|
||||||
|
+ python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_path ('include'));"`
|
||||||
|
+ plat_python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_path ('platinclude'));"`
|
||||||
|
+ else
|
||||||
|
+ # old distutils way
|
||||||
|
+ python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_python_inc ());"`
|
||||||
|
+ plat_python_path=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_python_inc (plat_specific=1));"`
|
||||||
|
+ fi
|
||||||
|
if test -n "${python_path}"; then
|
||||||
|
if test "${plat_python_path}" != "${python_path}"; then
|
||||||
|
python_path="-I$python_path -I$plat_python_path"
|
||||||
|
@@ -179,7 +221,7 @@ $ac_distutils_result])
|
||||||
|
|
||||||
|
# join all versioning strings, on some systems
|
||||||
|
# major/minor numbers could be in different list elements
|
||||||
|
-from distutils.sysconfig import *
|
||||||
|
+from sysconfig import *
|
||||||
|
e = get_config_var('VERSION')
|
||||||
|
if e is not None:
|
||||||
|
print(e)
|
||||||
|
@@ -190,7 +232,7 @@ EOD`
|
||||||
|
ac_python_version=$PYTHON_VERSION
|
||||||
|
else
|
||||||
|
ac_python_version=`$PYTHON -c "import sys; \
|
||||||
|
- print (sys.version[[:3]])"`
|
||||||
|
+ print ("%d.%d" % sys.version_info[[:2]])"`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
@@ -202,8 +244,8 @@ EOD`
|
||||||
|
ac_python_libdir=`cat<<EOD | $PYTHON -
|
||||||
|
|
||||||
|
# There should be only one
|
||||||
|
-import distutils.sysconfig
|
||||||
|
-e = distutils.sysconfig.get_config_var('LIBDIR')
|
||||||
|
+$IMPORT_SYSCONFIG
|
||||||
|
+e = sysconfig.get_config_var('LIBDIR')
|
||||||
|
if e is not None:
|
||||||
|
print (e)
|
||||||
|
EOD`
|
||||||
|
@@ -211,8 +253,8 @@ EOD`
|
||||||
|
# Now, for the library:
|
||||||
|
ac_python_library=`cat<<EOD | $PYTHON -
|
||||||
|
|
||||||
|
-import distutils.sysconfig
|
||||||
|
-c = distutils.sysconfig.get_config_vars()
|
||||||
|
+$IMPORT_SYSCONFIG
|
||||||
|
+c = sysconfig.get_config_vars()
|
||||||
|
if 'LDVERSION' in c:
|
||||||
|
print ('python'+c[['LDVERSION']])
|
||||||
|
else:
|
||||||
|
@@ -231,7 +273,7 @@ EOD`
|
||||||
|
else
|
||||||
|
# old way: use libpython from python_configdir
|
||||||
|
ac_python_libdir=`$PYTHON -c \
|
||||||
|
- "from distutils.sysconfig import get_python_lib as f; \
|
||||||
|
+ "from sysconfig import get_python_lib as f; \
|
||||||
|
import os; \
|
||||||
|
print (os.path.join(f(plat_specific=1, standard_lib=1), 'config'));"`
|
||||||
|
PYTHON_LIBS="-L$ac_python_libdir -lpython$ac_python_version"
|
||||||
|
@@ -252,19 +294,66 @@ EOD`
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([for Python site-packages path])
|
||||||
|
if test -z "$PYTHON_SITE_PKG"; then
|
||||||
|
- PYTHON_SITE_PKG=`$PYTHON -c "import distutils.sysconfig; \
|
||||||
|
- print (distutils.sysconfig.get_python_lib(1,0));"`
|
||||||
|
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||||
|
+ PYTHON_SITE_PKG=`$PYTHON -c "
|
||||||
|
+$IMPORT_SYSCONFIG;
|
||||||
|
+if hasattr(sysconfig, 'get_default_scheme'):
|
||||||
|
+ scheme = sysconfig.get_default_scheme()
|
||||||
|
+else:
|
||||||
|
+ scheme = sysconfig._get_default_scheme()
|
||||||
|
+if scheme == 'posix_local':
|
||||||
|
+ # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/
|
||||||
|
+ scheme = 'posix_prefix'
|
||||||
|
+prefix = '$prefix'
|
||||||
|
+if prefix == 'NONE':
|
||||||
|
+ prefix = '$ac_default_prefix'
|
||||||
|
+sitedir = sysconfig.get_path('purelib', scheme, vars={'base': prefix})
|
||||||
|
+print(sitedir)"`
|
||||||
|
+ else
|
||||||
|
+ # distutils.sysconfig way
|
||||||
|
+ PYTHON_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_python_lib(0,0));"`
|
||||||
|
+ fi
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT([$PYTHON_SITE_PKG])
|
||||||
|
AC_SUBST([PYTHON_SITE_PKG])
|
||||||
|
|
||||||
|
+ #
|
||||||
|
+ # Check for platform-specific site packages
|
||||||
|
+ #
|
||||||
|
+ AC_MSG_CHECKING([for Python platform specific site-packages path])
|
||||||
|
+ if test -z "$PYTHON_PLATFORM_SITE_PKG"; then
|
||||||
|
+ if test "$IMPORT_SYSCONFIG" = "import sysconfig"; then
|
||||||
|
+ PYTHON_PLATFORM_SITE_PKG=`$PYTHON -c "
|
||||||
|
+$IMPORT_SYSCONFIG;
|
||||||
|
+if hasattr(sysconfig, 'get_default_scheme'):
|
||||||
|
+ scheme = sysconfig.get_default_scheme()
|
||||||
|
+else:
|
||||||
|
+ scheme = sysconfig._get_default_scheme()
|
||||||
|
+if scheme == 'posix_local':
|
||||||
|
+ # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/
|
||||||
|
+ scheme = 'posix_prefix'
|
||||||
|
+prefix = '$prefix'
|
||||||
|
+if prefix == 'NONE':
|
||||||
|
+ prefix = '$ac_default_prefix'
|
||||||
|
+sitedir = sysconfig.get_path('platlib', scheme, vars={'platbase': prefix})
|
||||||
|
+print(sitedir)"`
|
||||||
|
+ else
|
||||||
|
+ # distutils.sysconfig way
|
||||||
|
+ PYTHON_PLATFORM_SITE_PKG=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ print (sysconfig.get_python_lib(1,0));"`
|
||||||
|
+ fi
|
||||||
|
+ fi
|
||||||
|
+ AC_MSG_RESULT([$PYTHON_PLATFORM_SITE_PKG])
|
||||||
|
+ AC_SUBST([PYTHON_PLATFORM_SITE_PKG])
|
||||||
|
+
|
||||||
|
#
|
||||||
|
# libraries which must be linked in when embedding
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING(python extra libraries)
|
||||||
|
if test -z "$PYTHON_EXTRA_LIBS"; then
|
||||||
|
- PYTHON_EXTRA_LIBS=`$PYTHON -c "import distutils.sysconfig; \
|
||||||
|
- conf = distutils.sysconfig.get_config_var; \
|
||||||
|
+ PYTHON_EXTRA_LIBS=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ conf = sysconfig.get_config_var; \
|
||||||
|
print (conf('LIBS') + ' ' + conf('SYSLIBS'))"`
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT([$PYTHON_EXTRA_LIBS])
|
||||||
|
@@ -275,8 +364,8 @@ EOD`
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING(python extra linking flags)
|
||||||
|
if test -z "$PYTHON_EXTRA_LDFLAGS"; then
|
||||||
|
- PYTHON_EXTRA_LDFLAGS=`$PYTHON -c "import distutils.sysconfig; \
|
||||||
|
- conf = distutils.sysconfig.get_config_var; \
|
||||||
|
+ PYTHON_EXTRA_LDFLAGS=`$PYTHON -c "$IMPORT_SYSCONFIG; \
|
||||||
|
+ conf = sysconfig.get_config_var; \
|
||||||
|
print (conf('LINKFORSHARED'))"`
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT([$PYTHON_EXTRA_LDFLAGS])
|
||||||
|
@@ -290,7 +379,7 @@ EOD`
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
ac_save_LDFLAGS="$LDFLAGS"
|
||||||
|
ac_save_CPPFLAGS="$CPPFLAGS"
|
||||||
|
- LIBS="$ac_save_LIBS $PYTHON_LIBS $PYTHON_EXTRA_LIBS $PYTHON_EXTRA_LIBS"
|
||||||
|
+ LIBS="$ac_save_LIBS $PYTHON_LIBS $PYTHON_EXTRA_LIBS"
|
||||||
|
LDFLAGS="$ac_save_LDFLAGS $PYTHON_EXTRA_LDFLAGS"
|
||||||
|
CPPFLAGS="$ac_save_CPPFLAGS $PYTHON_CPPFLAGS"
|
||||||
|
AC_LANG_PUSH([C])
|
||||||
|
@@ -306,7 +395,7 @@ EOD`
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$pythonexists])
|
||||||
|
|
||||||
|
- if test ! "x$pythonexists" = "xyes"; then
|
||||||
|
+ if test ! "x$pythonexists" = "xyes"; then
|
||||||
|
AC_MSG_FAILURE([
|
||||||
|
Could not link test program to Python. Maybe the main Python library has been
|
||||||
|
installed in some non-standard library path. If so, pass it to configure,
|
||||||
|
--
|
||||||
|
2.39.1
|
||||||
|
|
@ -0,0 +1,70 @@
|
|||||||
|
From e780aecd574400233c0dd35424dade90b5d4cbf1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||||||
|
Date: Thu, 4 Jan 2024 10:02:11 +0100
|
||||||
|
Subject: [PATCH] Update address of b.root-servers.net and some others
|
||||||
|
|
||||||
|
Update recently changed root servers address in the drill tool. Update
|
||||||
|
also other addresses and expand IPv6 addresses.
|
||||||
|
---
|
||||||
|
ldns-1.8.3/drill/root.c | 22 +++++++++++++++++-----
|
||||||
|
1 file changed, 17 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/ldns-1.8.3/drill/root.c b/ldns-1.8.3/drill/root.c
|
||||||
|
index a829935..8705094 100644
|
||||||
|
--- a/ldns-1.8.3/drill/root.c
|
||||||
|
+++ b/ldns-1.8.3/drill/root.c
|
||||||
|
@@ -28,26 +28,38 @@ init_root(void)
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:BA3E::2:30", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
- (void)ldns_rr_new_frm_str(&r, "B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201", 0, NULL, NULL);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "B.ROOT-SERVERS.NET. 3600000 A 170.247.170.2", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "B.ROOT-SERVERS.NET. 3600000 AAAA 2801:1b8:10::B", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
- (void)ldns_rr_new_frm_str(&r, "D.ROOT-SERVERS.NET. 3600000 A 128.8.10.90", 0, NULL, NULL);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::C", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2D::D", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:A8::E", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2F::F", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
- (void)ldns_rr_new_frm_str(&r, "H.ROOT-SERVERS.NET. 3600000 A 128.63.2.53", 0, NULL, NULL);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::D0D", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
- (void)ldns_rr_new_frm_str(&r, "H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::803F:235", 0, NULL, NULL);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7FE::53", 0, NULL, NULL);
|
||||||
|
+ ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:C27::2:30", 0, NULL, NULL);
|
||||||
|
@@ -58,7 +70,7 @@ init_root(void)
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
- (void)ldns_rr_new_frm_str(&r, "L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:3::42 ", 0, NULL, NULL);
|
||||||
|
+ (void)ldns_rr_new_frm_str(&r, "L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9F::42", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
(void)ldns_rr_new_frm_str(&r, "M.ROOT-SERVERS.NET. 3600000 A 202.12.27.33", 0, NULL, NULL);
|
||||||
|
ldns_rr_list_push_rr(global_dns_root, r);
|
||||||
|
--
|
||||||
|
2.43.0
|
||||||
|
|
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEE3DTuXbJBe8wVHlEA5fj4IS93pJgFAmL6IjQACgkQ5fj4IS93
|
||||||
|
pJhiJA//eHb2+DVUz4StIrTwfCd5VSe0xETUkg2m3qfUT+7+blf/w+8aRzN6dwhQ
|
||||||
|
bs44URFgmpy2dKUlC9Q2sCKX5RxLFI/8JnXWenaofIw/n320F0YhBN/kewH+8YTN
|
||||||
|
KN9CMFbEsAR1ortzPPsM4r56JeHgcTwEwwIhYX+WaC9n6QMqk7pJVC+B6vrW1Gjc
|
||||||
|
7loZ0vD1CeLSTKZrt9aknlQEjBe0CSpCAVOBlrh/fPghv9p0slIq6Ovol6Kt2w88
|
||||||
|
OeheBWf6g/Ll4g1ke41VE40e3SETW5KxHsxyIuhUltaUyJHzpmrGac6ydoctipzT
|
||||||
|
nJzwPA9PUIt+dX2qOKlUDD7PwRIGqmOG1pV6x0wz7eJq7tIjPgxgNk+xF2rTKjyt
|
||||||
|
m3bRGgBOzYf0raOE1yGtnyanAtI9BK6HbsaEuLxsZswzNWByZ9Fgp5sOK5iTswQO
|
||||||
|
xl2nhH9chyf0ktxbHvla6zZIi/Jj1mAumiZbkWUg6LHnIORYOqdeKByCg/aFHuNX
|
||||||
|
t7IDpO9VL+EPdrrhnynX+JDRbAxxarQAYqOsi+ARWyygQ0tON+UyxJ2vtEoFQFhG
|
||||||
|
LMQoal2h9mohYl5pJoWigsnPKdN4JMIhyxEyAS5HreDoeB8YX8x64cuvySVkUlyr
|
||||||
|
Qi7eByrJuyw9YdWt8iWOO6chokzw9S3jOyuYiKH/G9cqMDpRgAY=
|
||||||
|
=lSAh
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -0,0 +1,26 @@
|
|||||||
|
32-bit compatibility for Python SWIG bindings
|
||||||
|
|
||||||
|
The ssize_t type can be int instead of long, and the pointer types are
|
||||||
|
incompatible.
|
||||||
|
|
||||||
|
Submitted upstream: <https://github.com/NLnetLabs/ldns/pull/233>
|
||||||
|
|
||||||
|
diff -ur ldns-1.8.3.orig/ldns-1.8.3/contrib/python/ldns.i ldns-1.8.3/ldns-1.8.3/contrib/python/ldns.i
|
||||||
|
--- ldns-1.8.3.orig/ldns-1.8.3/contrib/python/ldns.i 2022-08-15 12:38:22.000000000 +0200
|
||||||
|
+++ ldns-1.8.3/ldns-1.8.3/contrib/python/ldns.i 2024-01-26 11:46:55.329133288 +0100
|
||||||
|
@@ -99,12 +99,14 @@
|
||||||
|
%typemap(in, noblock=1) (ssize_t)
|
||||||
|
{
|
||||||
|
int $1_res = 0;
|
||||||
|
- $1_res = SWIG_AsVal_long($input, &$1);
|
||||||
|
+ long val;
|
||||||
|
+ $1_res = SWIG_AsVal_long($input, &val);
|
||||||
|
if (!SWIG_IsOK($1_res)) {
|
||||||
|
SWIG_exception_fail(SWIG_ArgError($1_res), "in method '"
|
||||||
|
"$symname" "', argument " "$argnum" " of type '"
|
||||||
|
"$type""'");
|
||||||
|
}
|
||||||
|
+ $1 = val;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,60 @@
|
|||||||
|
SWIG_Python_str_AsChar removal in SWIG 4.2.0
|
||||||
|
|
||||||
|
The replacement, SWIG_PyUnicode_AsUTF8AndSize, has different memory
|
||||||
|
management requirements.
|
||||||
|
|
||||||
|
Submitted upstream: <https://github.com/NLnetLabs/ldns/pull/232>
|
||||||
|
|
||||||
|
diff -ur ldns-1.8.3.orig/ldns-1.8.3/contrib/python/ldns_rdf.i ldns-1.8.3/ldns-1.8.3/contrib/python/ldns_rdf.i
|
||||||
|
--- ldns-1.8.3.orig/ldns-1.8.3/contrib/python/ldns_rdf.i 2022-08-15 12:38:22.000000000 +0200
|
||||||
|
+++ ldns-1.8.3/ldns-1.8.3/contrib/python/ldns_rdf.i 2024-01-26 11:28:52.983540469 +0100
|
||||||
|
@@ -56,7 +56,11 @@
|
||||||
|
*/
|
||||||
|
%typemap(arginit, noblock=1) const ldns_rdf *
|
||||||
|
{
|
||||||
|
+#if SWIG_VERSION >= 0x040200
|
||||||
|
+ PyObject *$1_bytes = NULL;
|
||||||
|
+#else
|
||||||
|
char *$1_str = NULL;
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@@ -66,11 +70,17 @@
|
||||||
|
%typemap(in, noblock=1) const ldns_rdf * (void* argp, $1_ltype tmp = 0, int res)
|
||||||
|
{
|
||||||
|
if (Python_str_Check($input)) {
|
||||||
|
+ const char *argstr;
|
||||||
|
+#if SWIG_VERSION >= 0x040200
|
||||||
|
+ argstr = SWIG_PyUnicode_AsUTF8AndSize($input, NULL, &$1_bytes);
|
||||||
|
+#else
|
||||||
|
$1_str = SWIG_Python_str_AsChar($input);
|
||||||
|
- if ($1_str == NULL) {
|
||||||
|
+ argstr = $1_str;
|
||||||
|
+#endif
|
||||||
|
+ if (argstr == NULL) {
|
||||||
|
%argument_fail(SWIG_TypeError, "char *", $symname, $argnum);
|
||||||
|
}
|
||||||
|
- tmp = ldns_dname_new_frm_str($1_str);
|
||||||
|
+ tmp = ldns_dname_new_frm_str(argstr);
|
||||||
|
if (tmp == NULL) {
|
||||||
|
%argument_fail(SWIG_TypeError, "char *", $symname, $argnum);
|
||||||
|
}
|
||||||
|
@@ -90,10 +100,17 @@
|
||||||
|
*/
|
||||||
|
%typemap(freearg, noblock=1) const ldns_rdf *
|
||||||
|
{
|
||||||
|
+#if SWIG_VERSION >= 0x040200
|
||||||
|
+ if ($1_bytes != NULL) {
|
||||||
|
+ /* Is not NULL only when a conversion form string occurred. */
|
||||||
|
+ Py_XDECREF($1_bytes);
|
||||||
|
+ }
|
||||||
|
+#else
|
||||||
|
if ($1_str != NULL) {
|
||||||
|
/* Is not NULL only when a conversion form string occurred. */
|
||||||
|
SWIG_Python_str_DelForPy3($1_str); /* Is a empty macro for Python < 3. */
|
||||||
|
}
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
%nodefaultctor ldns_struct_rdf; /* No default constructor. */
|
@ -0,0 +1,99 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
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
|
||||||
|
Vw==
|
||||||
|
=0pAG
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
@ -0,0 +1,882 @@
|
|||||||
|
%global _hardened_build 1
|
||||||
|
|
||||||
|
%bcond_without python3
|
||||||
|
%if 0%{?rhel} > 7 || 0%{?fedora} > 29
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
%bcond_without perl
|
||||||
|
%bcond_without ecdsa
|
||||||
|
%if 0%{?fedora} >= 26 || 0%{?rhel} > 7
|
||||||
|
%bcond_without eddsa
|
||||||
|
%bcond_without dane_ta
|
||||||
|
%else
|
||||||
|
%bcond_with eddsa
|
||||||
|
%bcond_with dane_ta
|
||||||
|
%endif
|
||||||
|
# GOST is not allowed in Fedora/RHEL due to legal reasons (not NIST ECC)
|
||||||
|
%bcond_with gost
|
||||||
|
|
||||||
|
%if %{with python2} || %{with python3}
|
||||||
|
%{?filter_setup:
|
||||||
|
%global _ldns_internal_filter /^_ldns[.]so.*/d;
|
||||||
|
%filter_from_requires %{_ldns_internal_filter}
|
||||||
|
%filter_from_provides %{_ldns_internal_filter}
|
||||||
|
%filter_setup
|
||||||
|
}
|
||||||
|
%global _ldns_internal _ldns[.]so[.].*
|
||||||
|
%global __requires_exclude ^(%{_ldns_internal})$
|
||||||
|
%global __provides_exclude ^(%{_ldns_internal})$
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with perl}
|
||||||
|
%{?perl_default_filter}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Summary: Low-level DNS(SEC) library with API
|
||||||
|
Name: ldns
|
||||||
|
Version: 1.8.3
|
||||||
|
Release: 16%{?dist}
|
||||||
|
|
||||||
|
License: BSD-3-Clause
|
||||||
|
Url: https://www.nlnetlabs.nl/%{name}/
|
||||||
|
Source0: https://www.nlnetlabs.nl/downloads/%{name}/%{name}-%{version}.tar.gz
|
||||||
|
Source1: https://www.nlnetlabs.nl/downloads/%{name}/%{name}-%{version}.tar.gz.asc
|
||||||
|
# Willem Toorop, https://www.nlnetlabs.nl/people/
|
||||||
|
Source2: https://keys.openpgp.org/vks/v1/by-fingerprint/DC34EE5DB2417BCC151E5100E5F8F8212F77A498#/wtoorop.asc
|
||||||
|
Patch1: ldns-1.7.0-multilib.patch
|
||||||
|
# https://github.com/NLnetLabs/ldns/pull/204
|
||||||
|
Patch2: ldns-1.8-python-dirs.patch
|
||||||
|
# https://github.com/NLnetLabs/ldns/pull/230
|
||||||
|
Patch3: ldns-1.8-root-servers.net.patch
|
||||||
|
# https://github.com/NLnetLabs/ldns/pull/232
|
||||||
|
Patch4: ldns-swig-4.2.patch
|
||||||
|
# https://github.com/NLnetLabs/ldns/pull/233
|
||||||
|
Patch5: ldns-swig-32bit.patch
|
||||||
|
Patch6: ldns-1.8-openssl-engine.patch
|
||||||
|
|
||||||
|
BuildRequires: libtool
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: autoconf-archive
|
||||||
|
|
||||||
|
BuildRequires: gcc, make
|
||||||
|
BuildRequires: libpcap-devel
|
||||||
|
%if %{with dane_ta}
|
||||||
|
BuildRequires: openssl-devel >= 1.1.0
|
||||||
|
%else
|
||||||
|
BuildRequires: openssl-devel >= 1.0.2k
|
||||||
|
%endif
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: doxygen
|
||||||
|
BuildRequires: gnupg2
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
BuildRequires: python2-devel, swig
|
||||||
|
%endif
|
||||||
|
%if %{with python3}
|
||||||
|
BuildRequires: python3-devel, swig
|
||||||
|
%endif
|
||||||
|
%if %{with perl}
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
BuildRequires: perl-ExtUtils-MakeMaker
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl(Devel::CheckLib)
|
||||||
|
# workaround for koji / perl bug
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
%endif
|
||||||
|
Requires: ca-certificates
|
||||||
|
|
||||||
|
%description
|
||||||
|
ldns is a library with the aim to simplify DNS programming in C. All
|
||||||
|
low-level DNS/DNSSEC operations are supported. We also define a higher
|
||||||
|
level API which allows a programmer to (for instance) create or sign
|
||||||
|
packets.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development package that includes the ldns header files
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: pkgconfig openssl-devel
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The devel package contains the ldns library and the include files
|
||||||
|
|
||||||
|
%package utils
|
||||||
|
Summary: DNS(SEC) utilities for querying dns
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description utils
|
||||||
|
Collection of tools to get, check or alter DNS(SEC) data.
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%package -n python2-ldns
|
||||||
|
Summary: Python2 extensions for ldns
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
%{?python_provide:%python_provide python2-ldns}
|
||||||
|
|
||||||
|
%description -n python2-ldns
|
||||||
|
Python2 extensions for ldns
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%package -n python3-ldns
|
||||||
|
Summary: Python3 extensions for ldns
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
%{?python_provide:%python_provide python3-ldns}
|
||||||
|
|
||||||
|
%description -n python3-ldns
|
||||||
|
Python3 extensions for ldns
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with perl}
|
||||||
|
%package -n perl-ldns
|
||||||
|
Summary: Perl extensions for ldns
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n perl-ldns
|
||||||
|
Perl extensions for ldns
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for the ldns library
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package contains documentation for the ldns library
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%{?extra_version:%global pkgname %{name}-%{version}%{extra_version}}%{!?extra_version:%global pkgname %{name}-%{version}}
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%gpgverify -d 0 -s 1 -k 2
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%autosetup -cn %{pkgname} -N
|
||||||
|
pushd %{pkgname}
|
||||||
|
|
||||||
|
%autopatch -p2
|
||||||
|
|
||||||
|
rm -f config.guess config.sub ltmain.sh
|
||||||
|
# Use ax_python_devel from autoconf-archive
|
||||||
|
cp -p %{_datadir}/aclocal/{ax_python_devel,ax_pkg_swig}.m4 .
|
||||||
|
aclocal
|
||||||
|
libtoolize -c --install
|
||||||
|
autoreconf --install
|
||||||
|
|
||||||
|
# fixup .pc file
|
||||||
|
sed -i "s/@includedir@/@includedir@\/ldns/" packaging/libldns.pc.in
|
||||||
|
|
||||||
|
# copy common doc files - after here, since it may be patched
|
||||||
|
cp -pr doc LICENSE README* Changelog ../
|
||||||
|
cp -p contrib/ldnsx/LICENSE ../LICENSE.ldnsx
|
||||||
|
cp -p contrib/ldnsx/README ../README.ldnsx
|
||||||
|
popd
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
cp -a %{pkgname} %{pkgname}_python3
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
cp -a %{pkgname} %{pkgname}_python2
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags} -fPIC -fno-strict-aliasing -DOPENSSL_NO_ENGINE"
|
||||||
|
CXXFLAGS="%{optflags} -fPIC -fno-strict-aliasing -DOPENSSL_NO_ENGINE"
|
||||||
|
LDFLAGS="$RPM_LD_FLAGS -Wl,-z,now -pie"
|
||||||
|
export CFLAGS CXXFLAGS LDFLAGS
|
||||||
|
|
||||||
|
%if %{with gost}
|
||||||
|
%global enable_gost --enable-gost
|
||||||
|
%else
|
||||||
|
%global enable_gost --disable-gost
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with ecdsa}
|
||||||
|
%global enable_ecdsa --enable-ecdsa
|
||||||
|
%else
|
||||||
|
%global enable_ecdsa --disable-ecdsa
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with eddsa}
|
||||||
|
%global enable_eddsa --enable-ed25519 --enable-ed448
|
||||||
|
%else
|
||||||
|
%global enable_eddsa --disable-ed25519 --disable-ed448
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if ! %{with dane_ta}
|
||||||
|
%global disable_dane_ta --disable-dane-ta-usage
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global common_args \\\
|
||||||
|
--disable-rpath \\\
|
||||||
|
%{enable_gost} %{enable_ecdsa} %{enable_eddsa} %{?disable_dane_ta} \\\
|
||||||
|
--with-ca-file=/etc/pki/tls/certs/ca-bundle.trust.crt \\\
|
||||||
|
--with-ca-path=/etc/pki/tls/certs/ \\\
|
||||||
|
--with-trust-anchor=%{_sharedstatedir}/unbound/root.key \\\
|
||||||
|
--disable-static \\\
|
||||||
|
|
||||||
|
%if 0%{with python3}
|
||||||
|
pushd %{pkgname}_python3
|
||||||
|
%else
|
||||||
|
pushd %{pkgname}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
%{common_args} \
|
||||||
|
--with-examples \
|
||||||
|
--with-drill \
|
||||||
|
%if %{with python3}
|
||||||
|
--with-pyldns PYTHON=%{__python3}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Using 'make' instead of 'make_build' macro to prevent build from failing
|
||||||
|
make
|
||||||
|
%make_build doc
|
||||||
|
|
||||||
|
# Multilib conflict avoidance
|
||||||
|
sed -e "s,-L%{_libdir},," -i packaging/ldns-config
|
||||||
|
|
||||||
|
# We cannot use the built-in --with-p5-dns-ldns
|
||||||
|
%if %{with perl}
|
||||||
|
pushd contrib/DNS-LDNS
|
||||||
|
LD_LIBRARY_PATH="../../lib:$LD_LIBRARY_PATH" perl \
|
||||||
|
Makefile.PL INSTALLDIRS=vendor INC="-I. -I../.." LIBS="-L../../lib"
|
||||||
|
%make_build -j1
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# specfic hardening options should not end up in ldns-config
|
||||||
|
sed -i "s~$RPM_LD_FLAGS~~" packaging/ldns-config
|
||||||
|
popd
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
pushd %{pkgname}_python2
|
||||||
|
%configure \
|
||||||
|
%{common_args} \
|
||||||
|
--with-pyldns PYTHON=%{__python2}
|
||||||
|
|
||||||
|
%make_build
|
||||||
|
sed -e "s,-L%{_libdir},," -i packaging/ldns-config
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
pushd %{pkgname}_python3
|
||||||
|
%else
|
||||||
|
pushd %{pkgname}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_libdir}/pkgconfig
|
||||||
|
%make_install install
|
||||||
|
%make_install install-doc
|
||||||
|
|
||||||
|
# remove .la files
|
||||||
|
rm -rf %{buildroot}%{_libdir}/*.la
|
||||||
|
%if %{with python3}
|
||||||
|
rm -rf %{buildroot}%{python3_sitearch}/*.la
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with perl}
|
||||||
|
%make_install -j1 -C contrib/DNS-LDNS pure_install
|
||||||
|
chmod 755 %{buildroot}%{perl_vendorarch}/auto/DNS/LDNS/LDNS.so
|
||||||
|
rm -f %{buildroot}%{perl_vendorarch}/auto/DNS/LDNS/{.packlist,LDNS.bs}
|
||||||
|
rm -f %{buildroot}%{perl_archlib}/perllocal.pod
|
||||||
|
%endif
|
||||||
|
popd
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
pushd %{pkgname}_python2
|
||||||
|
%make_install install-pyldns install-pyldnsx
|
||||||
|
rm -rf %{buildroot}%{_libdir}/*.la %{buildroot}%{python2_sitearch}/*.la
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# don't package xml files
|
||||||
|
rm doc/*.xml
|
||||||
|
# don't package building script for install-doc in doc section
|
||||||
|
rm doc/doxyparse.pl
|
||||||
|
# remove double set of man pages
|
||||||
|
rm -rf doc/man
|
||||||
|
|
||||||
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README
|
||||||
|
%license LICENSE
|
||||||
|
%{_libdir}/libldns.so.3*
|
||||||
|
|
||||||
|
%files utils
|
||||||
|
%{_bindir}/drill
|
||||||
|
%{_bindir}/ldnsd
|
||||||
|
%{_bindir}/ldns-chaos
|
||||||
|
%{_bindir}/ldns-compare-zones
|
||||||
|
%{_bindir}/ldns-[d-z]*
|
||||||
|
%{_mandir}/man1/drill*
|
||||||
|
%{_mandir}/man1/%{name}*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%doc Changelog README.git
|
||||||
|
%{_libdir}/libldns.so
|
||||||
|
%{_libdir}/pkgconfig/ldns.pc
|
||||||
|
%{_bindir}/ldns-config
|
||||||
|
%dir %{_includedir}/%{name}
|
||||||
|
%{_includedir}/%{name}/*.h
|
||||||
|
%{_mandir}/man3/%{name}*.3*
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-ldns
|
||||||
|
%doc %{pkgname}_python2/contrib/python/Changelog README.ldnsx
|
||||||
|
%license LICENSE.ldnsx
|
||||||
|
%{python2_sitearch}/%{name}.py*
|
||||||
|
%{python2_sitearch}/%{name}x.py*
|
||||||
|
%{python2_sitearch}/_%{name}.so*
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with python3}
|
||||||
|
%files -n python3-ldns
|
||||||
|
%doc %{pkgname}_python3/contrib/python/Changelog README.ldnsx
|
||||||
|
%license LICENSE.ldnsx
|
||||||
|
%pycached %{python3_sitearch}/%{name}.py
|
||||||
|
%pycached %{python3_sitearch}/%{name}x.py
|
||||||
|
%{python3_sitearch}/_%{name}.so*
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with perl}
|
||||||
|
%files -n perl-ldns
|
||||||
|
%{perl_vendorarch}/*
|
||||||
|
%exclude %dir %{perl_vendorarch}/auto/
|
||||||
|
%{_mandir}/man3/DNS::LDNS*.3pm.gz
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc doc
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.8.3-16
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 1.8.3-16
|
||||||
|
- Bump release for Aug 2024 java mass rebuild
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Petr Menšík <pemensik@redhat.com> - 1.8.3-15
|
||||||
|
- Remove unneeded openssl/engine.h causing build failures
|
||||||
|
- Explicitly disable openssl engine (RHEL-33736)
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.8.3-14
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Florian Weimer <fweimer@redhat.com> - 1.8.3-13
|
||||||
|
- SWIG 4.2 and i686 compatibility
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 04 2024 Petr Menšík <pemensik@redhat.com> - 1.8.3-10
|
||||||
|
- Update address of b.root-servers.net and some others (#2253462)
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.8.3-8
|
||||||
|
- Perl 5.38 rebuild
|
||||||
|
|
||||||
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.8.3-7
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Wed Jan 25 2023 Petr Menšík <pemensik@redhat.com> - 1.8.3-6
|
||||||
|
- Python packaging cleanups (#2155003)
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 17 2023 Petr Menšík <pemensik@redhat.com> - 1.8.3-4
|
||||||
|
- Return back dist tag to release
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Petr Menšík <pemensik@redhat.com> - 1.8.3-3
|
||||||
|
- Use recent autoconf python detection (#2155003)
|
||||||
|
- Install python modules into separate directories
|
||||||
|
|
||||||
|
* Fri Sep 30 2022 Petr Menšík <pemensik@redhat.com> - 1.8.3-2
|
||||||
|
- Update License tag to SPDX identifier
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Paul Wouters <pwouters@redhat.com> - 1.8.3-1
|
||||||
|
- Update to 1.8.3
|
||||||
|
- Remove --enable-rrtype-svcb-https, it is now enabled by default
|
||||||
|
- Bugfix #183: Assertion failure with OPT record without rdata.
|
||||||
|
- minor other fixups
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.8.1-6
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.8.1-5
|
||||||
|
- Perl 5.36 rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 08 2021 Richard Lescak <rlescak@redhat.com> - 1.8.1-3
|
||||||
|
- Replaced 'make_build' macro with 'make' to prevent build from failing
|
||||||
|
|
||||||
|
* Mon Dec 06 2021 Petr Menšík <pemensik@redhat.com> - 1.8.1-2
|
||||||
|
- Enable svcb and https record type support
|
||||||
|
- Remove multilib conflict in ldns-devel
|
||||||
|
|
||||||
|
* Mon Dec 06 2021 Paul Wouters <paul.wouters@aiven.io> - 1.8.1-1
|
||||||
|
- Resolves: rhbz#2028465 Heap out-of-bound read vulnerability in rr_frm_str_internal function
|
||||||
|
- Resolves: rhbz#2028468 Heap out-of-bound read vulnerability in ldns_nsec3_salt_data function
|
||||||
|
- Resolves: rhbz#2028472 Fixed time memory compare for Openssl 0.9.8
|
||||||
|
|
||||||
|
* Mon Oct 11 2021 Richard Lescak <rlescak@redhat.com> - 1.7.1-10
|
||||||
|
- Added patch for failing rebuild with OpenSSL 3.0.0 (#2010601)
|
||||||
|
|
||||||
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 1.7.1-9
|
||||||
|
- Rebuilt with OpenSSL 3.0.0
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Petr Menšík <pemensik@redhat.com> - 1.7.1-7
|
||||||
|
- Support python3.10 builds (#1948435)
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.7.1-6
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.1-5
|
||||||
|
- Perl 5.34 rebuild
|
||||||
|
|
||||||
|
* Thu May 20 2021 Paul Wouters <paul.wouters@aiven.io> - 1.7.1-4
|
||||||
|
- Resolves rhbz#1962010 drill fails on sig chase
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 04 2021 Petr Menšík <pemensik@redhat.com> - 1.7.1-2
|
||||||
|
- Use make_build and make_install macro instead of make
|
||||||
|
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
||||||
|
|
||||||
|
* Thu Oct 08 2020 Petr Menšík <pemensik@redhat.com> - 1.7.1-1
|
||||||
|
- Update to 1.7.1
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-32
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.0-31
|
||||||
|
- Perl 5.32 rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.7.0-30
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-29
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.7.0-28
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.7.0-27
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-26
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.0-25
|
||||||
|
- Perl 5.30 rebuild
|
||||||
|
|
||||||
|
* Mon May 20 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.0-24
|
||||||
|
- Fixed build for SWIG 4.0.0 (#1707450)
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Sep 26 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-22
|
||||||
|
- Do not build python2 subpackage on Fedora 30 (#1629800)
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 10 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-20
|
||||||
|
- Add all depends, spec cleanup, use full python interpreter
|
||||||
|
|
||||||
|
* Tue Jul 03 2018 Petr Pisar <ppisar@redhat.com> - 1.7.0-19
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.0-18
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.7.0-17
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Wed Apr 11 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-16
|
||||||
|
- Make DANE TA usage more clear, autoconfigure for old fedora
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-15
|
||||||
|
- Experimental support for ed25519 and ed448
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-14
|
||||||
|
- Add only extra flags to default RPM LDFLAGS
|
||||||
|
- Fix multilib conflict of ldns-config (#1463423)
|
||||||
|
- Make primary python3 in primary build, python2 in optional
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Petr Menšík <pemensik@redhat.com> - 1.7.0-13
|
||||||
|
- Support for python3 package (#1323248)
|
||||||
|
- Moved perl manual pages to perl-ldns
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 05 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.7.0-11
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Thu Nov 09 2017 Petr Menšík <pemensik@redhat.com> - 1.7.0-10
|
||||||
|
- Fix memory corruption in ldns_str2rdf_long_str (#1511046)
|
||||||
|
|
||||||
|
* Thu Nov 09 2017 Petr Menšík <pemensik@redhat.com> - 1.7.0-9
|
||||||
|
- Fix memory corruption in ldns_rr_new_frm_fp_l (#1511046)
|
||||||
|
|
||||||
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.7.0-8
|
||||||
|
- Python 2 binary package renamed to python2-ldns
|
||||||
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.7.0-5
|
||||||
|
- Rebuild due to bug in RPM (RHBZ #1468476)
|
||||||
|
|
||||||
|
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.7.0-4
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Sat Mar 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.7.0-3
|
||||||
|
- explicitly track library soname (so bumps aren't a surprise)
|
||||||
|
- use %%license, drop dup'd README in -devel
|
||||||
|
- BR: openssl-devel >= 1.1.0 (required for DANE verification)
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Petr Menšík <pemensik@redhat.com> - 1.7.0-2
|
||||||
|
- Update to 1.7.0
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.17-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.17-20
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.17-19
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Apr 21 2016 Paul Wouters <pwouters@redhat.com> - 1.6.17-18
|
||||||
|
- Resolves: rhbz#1190724 Missing dependency - openssl-devel
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.17-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 16 2015 Tomas Hozza <thozza@redhat.com> - 1.6.17-16
|
||||||
|
- Fix FTBFS on F23+ (#1230140)
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Paul Wouters <pwouters@redhat.com> - 1.6.17-15
|
||||||
|
- Remove obsoleted Obsolete:s
|
||||||
|
- Fix for man page generation
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Paul Wouters <pwouters@redhat.com> - 1.6.17-14
|
||||||
|
- rebuilt with --enable-rrtype-cds --enable-rrtype-uri enabled
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.17-13
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Paul Wouters <pwouters@redhat.com> - 1.6.17-12
|
||||||
|
- Split with_ecc macro in with_ecdsa and with_gost - and disable gost
|
||||||
|
|
||||||
|
* Mon Nov 24 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-11
|
||||||
|
- Only cond_without sets "with ", so use underscores
|
||||||
|
- multilib.patch was setting LIBDIR_SEC once without leading /
|
||||||
|
|
||||||
|
* Thu Oct 02 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-10
|
||||||
|
- Fix and install the .pc (pkg-config) file
|
||||||
|
|
||||||
|
* Wed Oct 01 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-9
|
||||||
|
- Remove hardening options from ldns-config (rhbz#1147972)
|
||||||
|
|
||||||
|
* Tue Sep 30 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-8
|
||||||
|
- Fix ldns-config (rhbz#1147972) [Florian Lehner]
|
||||||
|
|
||||||
|
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.6.17-7
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.17-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.17-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 06 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-4
|
||||||
|
- Rename ldns-python to python-ldns
|
||||||
|
- Rename ldns-perl to perl-ldns
|
||||||
|
- Ensure ldns-utils is dragged it so an upgrade does not remove utils
|
||||||
|
|
||||||
|
* Tue May 06 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-3
|
||||||
|
- CVE-2014-3209 ldns: ldns-keygen generates keys with world readable permissions
|
||||||
|
- Fix 1017958 - 32 and 64 bit ldns conflicts on some manual pages
|
||||||
|
- Fix rhbz#1062874 - cannot install ldns.x86_64 in parallel to ldns.i686
|
||||||
|
- Incorporate fixes from Tuomo Soini <tis@foobar.fi>
|
||||||
|
- hardened build
|
||||||
|
- fix ldns internal provides and requires filter
|
||||||
|
- fix perl-ldns requirement to include %%_isa
|
||||||
|
- setup filters for perl and python bindings for internal stuff
|
||||||
|
- split utils to separate package
|
||||||
|
|
||||||
|
* Mon Mar 24 2014 Tomas Hozza <thozza@redhat.com> - 1.6.17-2
|
||||||
|
- Fix error causing ldns to sometimes produce faulty DSA sign (#1077776)
|
||||||
|
- Fix FTBFS due to perl modules
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Paul Wouters <pwouters@redhat.com> - 1.6.17-1
|
||||||
|
- Updated to 1.6.17
|
||||||
|
- Enable perl bindings via new ldns-perl sub-package
|
||||||
|
- Enable ECDSA/GOST which is now allowed in Fedora
|
||||||
|
- Removed patches merged upstream, ported multilib patch to 1.6.17
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.16-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 23 2013 Tomas Hozza <thozza@redhat.com> - 1.6.16-5
|
||||||
|
- Fix compiler warnings and one uninitialized value
|
||||||
|
- make ldns-config multilib clean
|
||||||
|
- Fix man pages and usages errors
|
||||||
|
|
||||||
|
* Mon Jun 03 2013 Paul Wouters <pwouters@redhat.com> - 1.6.16-4
|
||||||
|
- Use /var/lib/unbound/root.key for --with-trust-anchor
|
||||||
|
|
||||||
|
* Fri Apr 19 2013 Adam Tkac <atkac redhat com> - 1.6.16-3
|
||||||
|
- make package multilib clean
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.16-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 30 2012 Paul Wouters <pwouters@redhat.com> - 1.6.16-1
|
||||||
|
- Updated to 1.6.16
|
||||||
|
- Addresses bug in 1.6.14 and 1.6.15 that affects opendnssec
|
||||||
|
(if you have empty non-terminals and use NSEC3)
|
||||||
|
|
||||||
|
* Fri Oct 26 2012 Paul Wouters <pwouters@redhat.com> - 1.6.15-1
|
||||||
|
- Updated to 1.6.15, as 1.6.14 accidentally broke ABI
|
||||||
|
(We never released 1.6.14)
|
||||||
|
|
||||||
|
* Tue Oct 23 2012 Paul Wouters <pwouters@redhat.com> - 1.6.14-1
|
||||||
|
- [pulled before release]
|
||||||
|
- Updated to 1.6.14
|
||||||
|
- Removed merged in patch
|
||||||
|
- Added new dependancy on ca-certificates for ldns-dane PKIX validation
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.13-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 01 2012 Paul Wouters <pwouters@redhat.com> - 1.6.13-2
|
||||||
|
- Added reworked ldns-read-zone patch from trunk
|
||||||
|
(adds -p for SOA padding, and -o for zeroizing timestamps/sigs)
|
||||||
|
|
||||||
|
* Mon May 21 2012 Paul Wouters <pwouters@redhat.com> - 1.6.13-1
|
||||||
|
- Upgraded to 1.6.13, bugfix release
|
||||||
|
- Added --disable-ecdsa as ECC is still banned
|
||||||
|
- Removed --with-sha2 - it is always enabled and option was removed
|
||||||
|
|
||||||
|
* Wed Jan 11 2012 Paul Wouters <paul@nohats.ca> - 1.6.12-1
|
||||||
|
- Upgraded to 1.6.12, fixes important end of year handling date bug
|
||||||
|
|
||||||
|
* Wed Oct 5 2011 Paul Wouters <paul@xelerance.com> - 1.6.11-2
|
||||||
|
- Updated to 1.6.11, fixes rhbz#741026 which is CVE-2011-3581
|
||||||
|
- Python goes into sitearch, not sitelib
|
||||||
|
- Fix source link and spelling errors in description
|
||||||
|
|
||||||
|
* Mon Sep 19 2011 Paul Wouters <paul@xelerance.com> - 1.6.10-2
|
||||||
|
- Fix for losing nameserver when it drops UDP fragments in
|
||||||
|
ldns_resolver_send_pkt [Willem Toorop <willem@NLnetLabs.nl>]
|
||||||
|
- Added ldnsx module (to be merged into ldns soon)
|
||||||
|
http://git.xelerance.com/cgi-bin/gitweb.cgi?p=ldnsx.git;a=summary
|
||||||
|
|
||||||
|
* Wed Jun 08 2011 Paul Wouters <paul@xelerance.com> - 1.6.10-1
|
||||||
|
- Upodated to 1.6.10
|
||||||
|
- Commented out dependancies that are only needed for snapshots
|
||||||
|
|
||||||
|
* Sun Mar 27 2011 Paul Wouters <paul@xelerance.com> - 1.6.9-1
|
||||||
|
- Updated to 1.6.9
|
||||||
|
|
||||||
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 24 2011 Paul Wouters <paul@xelerance.com> - 1.6.8-1
|
||||||
|
- Updated to 1.6.8
|
||||||
|
|
||||||
|
* Thu Aug 26 2010 Paul Wouters <paul@xelerance.com> - 1.6.6-2
|
||||||
|
- Bump for EVR
|
||||||
|
|
||||||
|
* Mon Aug 09 2010 Paul Wouters <paul@xelerance.com> - 1.6.6-1
|
||||||
|
- Upgraded to 1.6.6
|
||||||
|
|
||||||
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.6.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||||
|
|
||||||
|
* Tue Jun 15 2010 Paul Wouters <paul@xelerance.com> - 1.6.5-1
|
||||||
|
- Updated to 1.6.5
|
||||||
|
|
||||||
|
* Fri Jan 22 2010 Paul Wouters <paul@xelerance.com> - 1.6.4-2
|
||||||
|
- Fix missing _ldns.so causing ldns-python to not work
|
||||||
|
- Patch for installing ldns-python files
|
||||||
|
- Patch for rpath in ldns-python
|
||||||
|
- Don't install .a file for ldns-python
|
||||||
|
|
||||||
|
* Wed Jan 20 2010 Paul Wouters <paul@xelerance.com> - 1.6.4-1
|
||||||
|
- Upgraded to 1.6.4
|
||||||
|
- Added ldns-python sub package
|
||||||
|
|
||||||
|
* Fri Dec 04 2009 Paul Wouters <paul@xelerance.com> - 1.6.3-1
|
||||||
|
- Upgraded to 1.6.3, which has minor bugfixes
|
||||||
|
|
||||||
|
* Fri Nov 13 2009 Paul Wouters <paul@xelerance.com> - 1.6.2-1
|
||||||
|
- Upgraded to 1.6.2. This fixes various bugs.
|
||||||
|
(upstream released mostly to default with sha2 for the imminent
|
||||||
|
signed root, but we already enabled that in our builds)
|
||||||
|
|
||||||
|
* Tue Aug 25 2009 Tomas Mraz <tmraz@redhat.com> - 1.6.1-3
|
||||||
|
- rebuilt with new openssl
|
||||||
|
|
||||||
|
* Sun Aug 16 2009 Paul Wouters <paul@xelerance.com> - 1.6.1-2
|
||||||
|
- Added openssl dependancy back in, since we get more functionality
|
||||||
|
when using openssl. Especially in 'drill'.
|
||||||
|
|
||||||
|
* Sun Aug 16 2009 Paul Wouters <paul@xelerance.com> - 1.6.1-1
|
||||||
|
- Updated to 1.6.1
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 13 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-4
|
||||||
|
- Fixed the ssl patch so it can now compile --without-ssl
|
||||||
|
|
||||||
|
* Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-3
|
||||||
|
- Added patch to compile with --without-ssl
|
||||||
|
- Removed openssl dependancies
|
||||||
|
- Recompiled with --without-ssl
|
||||||
|
|
||||||
|
* Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-2
|
||||||
|
- Updated to 1.6.0
|
||||||
|
- (did not yet compile with --without-ssl due to compile failures)
|
||||||
|
|
||||||
|
* Fri Jul 10 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-1
|
||||||
|
- Updated to 1.6.0
|
||||||
|
- Compile without openssl
|
||||||
|
|
||||||
|
* Thu Apr 16 2009 Paul Wouters <paul@xelerance.com> - 1.5.1-4
|
||||||
|
- Memory management bug when generating a sha256 key, see:
|
||||||
|
https://bugzilla.redhat.com/show_bug.cgi?id=493953
|
||||||
|
|
||||||
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 10 2009 Paul Wouters <paul@xelerance.com> - 1.5.1-1
|
||||||
|
- Updated to new version, 1.5.0 had a bug preventing
|
||||||
|
zone signing.
|
||||||
|
|
||||||
|
* Mon Feb 9 2009 Paul Wouters <paul@xelerance.com> - 1.5.0-1
|
||||||
|
- Updated to new version
|
||||||
|
|
||||||
|
* Thu Feb 05 2009 Adam Tkac <atkac redhat com> - 1.4.0-3
|
||||||
|
- fixed configure flags
|
||||||
|
|
||||||
|
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.0-2
|
||||||
|
- rebuild with new openssl
|
||||||
|
|
||||||
|
* Fri Nov 7 2008 Paul Wouters <paul@xelerance.com> - 1.4.0-1
|
||||||
|
- Updated to 1.4.0
|
||||||
|
|
||||||
|
* Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-3
|
||||||
|
- enable SHA2 functionality
|
||||||
|
|
||||||
|
* Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-2
|
||||||
|
- re-tag (don't do builds while renaming local repo dirs)
|
||||||
|
|
||||||
|
* Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-1
|
||||||
|
- Updated to latest release
|
||||||
|
|
||||||
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.2-3
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Wed Dec 5 2007 Paul Wouters <paul@xelerance.com> - 1.2.2-2
|
||||||
|
- Rebuild for new libcrypto
|
||||||
|
|
||||||
|
* Thu Nov 29 2007 Paul Wouters <paul@xelerance.com> - 1.2.2-1
|
||||||
|
- Upgraded to 1.2.2. Removed no longer needed race workaround
|
||||||
|
|
||||||
|
* Tue Nov 13 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-4
|
||||||
|
- Try to fix racing ln -s statements in parallel builds
|
||||||
|
|
||||||
|
* Fri Nov 9 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-3
|
||||||
|
- Added patch for ldns-read-zone that does not put @. in RRDATA
|
||||||
|
|
||||||
|
* Fri Oct 19 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-2
|
||||||
|
- Use install -p to work around multilib conflicts for .h files
|
||||||
|
|
||||||
|
* Wed Oct 10 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-1
|
||||||
|
- Updated to 1.2.1
|
||||||
|
- Removed patches that got moved into upstream
|
||||||
|
|
||||||
|
* Wed Aug 8 2007 Paul Wouters <paul@xelerance.com> 1.2.0-11
|
||||||
|
- Patch for ldns-key2ds to write to stdout
|
||||||
|
- Again remove extra set of man pages from doc
|
||||||
|
- own /usr/include/ldns (bug 233858)
|
||||||
|
|
||||||
|
* Wed Aug 8 2007 Paul Wouters <paul@xelerance.com> 1.2.0-10
|
||||||
|
- Added sha256 DS record patch to ldns-key2ds
|
||||||
|
- Minor tweaks for proper doc/man page installation.
|
||||||
|
- Workaround for parallel builds
|
||||||
|
|
||||||
|
* Mon Aug 6 2007 Paul Wouters <paul@xelerance.com> 1.2.0-2
|
||||||
|
- Own the /usr/include/ldns directory (bug #233858)
|
||||||
|
- Removed obsoleted patch
|
||||||
|
- Remove files form previous libtool run accidentally packages by upstream
|
||||||
|
|
||||||
|
* Mon Sep 11 2006 Paul Wouters <paul@xelerance.com> 1.0.1-4
|
||||||
|
- Commented out 1.1.0 make targets, put make 1.0.1 targets.
|
||||||
|
|
||||||
|
* Mon Sep 11 2006 Paul Wouters <paul@xelerance.com> 1.0.1-3
|
||||||
|
- Fixed changelog typo in date
|
||||||
|
- Rebuild requested for PT_GNU_HASH support from gcc
|
||||||
|
- Did not upgrade to 1.1.0 due to compile issues on x86_64
|
||||||
|
|
||||||
|
* Fri Jan 6 2006 Paul Wouters <paul@xelerance.com> 1.0.1-1
|
||||||
|
- Upgraded to 1.0.1. Removed temporary clean hack from spec file.
|
||||||
|
|
||||||
|
* Sun Dec 18 2005 Paul Wouters <paul@xelerance.com> 1.0.0-8
|
||||||
|
- Cannot use make clean because there are no Makefiles. Use hardcoded rm.
|
||||||
|
|
||||||
|
* Sun Dec 18 2005 Paul Wouters <paul@xelerance.com> 1.0.0-7
|
||||||
|
- Patched 'make clean' target to get rid of object files shipped with 1.0.0
|
||||||
|
|
||||||
|
* Tue Dec 13 2005 Paul Wouters <paul@xelerance.com> 1.0.0-6
|
||||||
|
- added a make clean for 2.3.3 since .o files were left behind upstream,
|
||||||
|
causing failure on ppc platform
|
||||||
|
|
||||||
|
* Sun Dec 11 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.0.0-5
|
||||||
|
- minor cleanups
|
||||||
|
|
||||||
|
* Wed Oct 5 2005 Paul Wouters <paul@xelerance.com> 0.70_1205
|
||||||
|
- reworked for svn version
|
||||||
|
|
||||||
|
* Sun Sep 25 2005 Paul Wouters <paul@xelerance.com> - 0.70
|
||||||
|
- Initial version
|
Loading…
Reference in new issue