ldns-vl.spec 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. %{?!with_python3: %global with_python3 0}
  2. %{?!enable_gost: %global enable_gost 0}
  3. %{?!enable_dane: %global enable_dane 1}
  4. %if %{enable_gost}
  5. %define subdir_conf_opt --disable-rpath --disable-static
  6. %else
  7. %define subdir_conf_opt --disable-rpath --disable-static --disable-gost
  8. %endif
  9. Summary: Lowlevel DNS(SEC) library with API
  10. Summary(ja): 低レベルな DNS(SEC) ライブラリと API
  11. Name: ldns
  12. Version: 1.8.0
  13. Release: 1%{?_dist_release}
  14. Group: system
  15. Distribution: Vine Linux
  16. Vendor: Project Vine
  17. Packager: iwaim
  18. License: BSD
  19. URL: http://www.nlnetlabs.nl/%{name}/
  20. Source: https://www.nlnetlabs.nl/downloads/ldns/%{name}-%{version}.tar.gz
  21. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  22. BuildRequires: libtool, autoconf, automake, gcc-c++, doxygen,
  23. BuildRequires: perl, libpcap-devel
  24. %if %{enable_gost}
  25. BuildRequires: openssl-devel >= 1.0.0
  26. %else
  27. BuildRequires: openssl-devel
  28. %endif
  29. %if %{with_python3}
  30. BuildRequires: python3-rpm-macros
  31. BuildRequires: python3-devel, swig
  32. %endif
  33. Obsoletes: ldns-python < 1.7.1-2
  34. Requires: ca-certificates
  35. %description
  36. ldns is a library with the aim to simplify DNS programing in C. All
  37. lowlevel DNS/DNSSEC operations are supported. We also define a higher
  38. level API which allows a programmer to (for instance) create or sign
  39. packets.
  40. %package devel
  41. Summary: Development package that includes the ldns header files
  42. Group: programming
  43. Requires: %{name} = %{version}-%{release}
  44. %description devel
  45. The devel package contains the ldns library and the include files
  46. %if %{with_python3}
  47. %package -n python3-ldns
  48. Summary: Python3 extensions for ldns
  49. Group: programming
  50. Requires: %{name} = %{version}-%{release}
  51. %description -n python3-ldns
  52. Python3 extensions for ldns
  53. %endif
  54. %debug_package
  55. %prep
  56. %{?extra_version:%global pkgname %{name}-%{version}%{extra_version}}%{!?extra_version:%global pkgname %{name}-%{version}}
  57. %autosetup -cn %{pkgname} -N
  58. pushd %{pkgname}
  59. # fixup .pc file
  60. sed -i "s/@includedir@/@includedir@\/ldns/" packaging/libldns.pc.in
  61. autoreconf -ivf
  62. popd
  63. %build
  64. CFLAGS="%{optflags} -fPIC -fno-strict-aliasing"
  65. CXXFLAGS="%{optflags} -fPIC -fno-strict-aliasing"
  66. LDFLAGS="$RPM_LD_FLAGS -Wl,-z,now -pie"
  67. export CFLAGS CXXFLAGS LDFLAGS
  68. pushd %{pkgname}
  69. %configure --disable-rpath --disable-static \
  70. --enable-ecdsa \
  71. --enable-ed25519 --enable-ed448 \
  72. --with-ca-file=/etc/pki/tls/certs/ca-bundle.trust.crt \
  73. --with-ca-path=/etc/pki/tls/certs/ \
  74. --with-trust-anchor=%{_sharedstatedir}/unbound/root.key \
  75. --with-examples \
  76. --with-drill \
  77. %if !%{enable_gost}
  78. --disable-gost \
  79. %endif
  80. %if %{with_python3}
  81. --with-pyldns PYTHON=%{__python3}\
  82. %endif
  83. make %{?_smp_mflags}
  84. make %{?_smp_mflags} drill
  85. make %{?_smp_mflags} examples
  86. make %{?_smp_mflags} doc
  87. popd
  88. %install
  89. rm -rf %{buildroot}
  90. pushd %{pkgname}
  91. mkdir -p %{buildroot}%{_libdir}/pkgconfig
  92. make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install
  93. make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install-drill
  94. make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install-examples
  95. make DESTDIR=%{buildroot} INSTALL="%{__install} -p" install-doc
  96. %if %{with_python3}
  97. # remove execute perms from python files
  98. chmod a-x %{buildroot}%{python3_sitearch}/*py
  99. %endif
  100. # don't package building script in doc
  101. rm doc/doxyparse.pl
  102. #remove doc stubs
  103. rm -rf doc/.svn
  104. #remove double set of man pages
  105. rm -rf doc/man
  106. # remove .la files
  107. rm -rf %{buildroot}%{_libdir}/*.la %{buildroot}%{python3_sitearch}/*.la
  108. popd
  109. %clean
  110. rm -rf %{buildroot}
  111. %files
  112. %license %{pkgname}/LICENSE
  113. %doc %{pkgname}/README
  114. %{_libdir}/libldns*so.*
  115. %{_bindir}/drill
  116. %{_bindir}/ldnsd
  117. #%{_bindir}/ldns-*
  118. %{_bindir}/ldns-chaos
  119. %{_bindir}/ldns-compare-zones
  120. %{_bindir}/ldns-[d-z]*
  121. %{_mandir}/*/*
  122. %files devel
  123. %doc %{pkgname}/doc %{pkgname}/Changelog %{pkgname}/README
  124. %{_libdir}/libldns*so
  125. %{_bindir}/ldns-config
  126. %{_libdir}/pkgconfig/*.pc
  127. %dir %{_includedir}/ldns
  128. %{_includedir}/ldns/*.h
  129. %if %{with_python3}
  130. %files python3-ldns
  131. %defattr(-,root,root)
  132. %{python_sitearch}/*
  133. %endif
  134. %changelog
  135. * Fri Nov 26 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.8.0-1
  136. - new upstream release.
  137. - dropped Patch1.
  138. - dropped Patch2-4: fixed in upstream.
  139. * Sat Oct 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7.1-2
  140. - rebuilt with openssl-3.0.0.
  141. - imported Patch1-4 from rawhide.
  142. - dropped ldconfig scriptlets.
  143. - dropped python support.
  144. * Sat Aug 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7.1-1
  145. - updated to 1.7.1.
  146. * Sun Nov 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7.0-2
  147. - rebuilt with openssl-1.1.1.
  148. * Mon Jan 30 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.7.0-1
  149. - update to 1.7.0
  150. - add enable_dane option
  151. * Tue Mar 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.6.17-2
  152. - rebuilt with openssl-1.0.2g.
  153. * Mon Mar 9 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.17-1
  154. - update to 1.6.17
  155. - drop 'fix compiler warnings and one uninitialized value' patch (Patch1000)
  156. - upstream merged
  157. * Tue Dec 31 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.16-2
  158. - add 'fix compiler warnings and one uninitialized value' patch (Patch1000)
  159. - from Fedora ldns-1.6.16-6.fc20
  160. * Wed Dec 5 2012 IWAI, Masaharu <iwai@alib.jp> 1.6.16-1
  161. - new upstream release
  162. * Sun May 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.13-1
  163. - new upstream release
  164. - move python files to sitearch from sitelib
  165. * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.10-2
  166. - rebuild with python-2.7.2
  167. * Sat Sep 3 2011 IWAI, Masaharu <iwai@alib.jp> 1.6.10-1
  168. - new upstream release
  169. * Wed Mar 30 2011 IWAI, Masaharu <iwai@alib.jp> 1.6.9-1
  170. - new upstream release
  171. * Wed Feb 23 2011 IWAI, Masaharu <iwai@alib.jp> 1.6.8-1
  172. - new upstream release
  173. * Sun Nov 14 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.7-1
  174. - new upstream release
  175. - add enable_gost flag: default disable
  176. - defined subdir_conf_opt rpm macro
  177. * Thu Sep 2 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.6-1
  178. - new upstream release
  179. * Fri Jul 23 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.5-1
  180. - new upstream release
  181. - drop unnecessary installfix patch (Patch1): upstream merged
  182. - drop unnecessary rpathfix patch (Patch2): upstream merged
  183. * Thu Jun 3 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.4-2vl6
  184. - rebuild with libpcap 1.1.1 on VineSeed
  185. * Wed May 5 2010 IWAI, Masaharu <iwai@alib.jp> 1.6.4-1
  186. - initial build for Vine Linux: based Fedora 1.6.4-2.fc13
  187. * Fri Jan 22 2010 Paul Wouters <paul@xelerance.com> - 1.6.4-2
  188. - Fix missing _ldns.so causing ldns-python to not work
  189. - Patch for installing ldns-python files
  190. - Patch for rpath in ldns-python
  191. - Don't install .a file for ldns-python
  192. * Wed Jan 20 2010 Paul Wouters <paul@xelerance.com> - 1.6.4-1
  193. - Upgraded to 1.6.4.
  194. - Added ldns-python sub package
  195. * Fri Dec 04 2009 Paul Wouters <paul@xelerance.com> - 1.6.3-1
  196. - Upgraded to 1.6.3, which has minor bugfixes
  197. * Fri Nov 13 2009 Paul Wouters <paul@xelerance.com> - 1.6.2-1
  198. - Upgraded to 1.6.2. This fixes various bugs.
  199. (upstream released mostly to default with sha2 for the imminent
  200. signed root, but we already enabled that in our builds)
  201. * Tue Aug 25 2009 Tomas Mraz <tmraz@redhat.com> - 1.6.1-3
  202. - rebuilt with new openssl
  203. * Sun Aug 16 2009 Paul Wouters <paul@xelerance.com> - 1.6.1-2
  204. - Added openssl dependancy back in, since we get more functionality
  205. when using openssl. Especially in 'drill'.
  206. * Sun Aug 16 2009 Paul Wouters <paul@xelerance.com> - 1.6.1-1
  207. - Updated to 1.6.1
  208. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-5
  209. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  210. * Mon Jul 13 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-4
  211. - Fixed the ssl patch so it can now compile --without-ssl
  212. * Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-3
  213. - Added patch to compile with --without-ssl
  214. - Removed openssl dependancies
  215. - Recompiled with --without-ssl
  216. * Sat Jul 11 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-2
  217. - Updated to 1.6.0
  218. - (did not yet compile with --without-ssl due to compile failures)
  219. * Fri Jul 10 2009 Paul Wouters <paul@xelerance.com> - 1.6.0-1
  220. - Updated to 1.6.0
  221. - Compile without openssl
  222. * Thu Apr 16 2009 Paul Wouters <paul@xelerance.com> - 1.5.1-4
  223. - Memory management bug when generating a sha256 key, see:
  224. https://bugzilla.redhat.com/show_bug.cgi?id=493953
  225. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-2
  226. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  227. * Tue Feb 10 2009 Paul Wouters <paul@xelerance.com> - 1.5.1-1
  228. - Updated to new version, 1.5.0 had a bug preventing
  229. zone signing.
  230. * Mon Feb 9 2009 Paul Wouters <paul@xelerance.com> - 1.5.0-1
  231. - Updated to new version
  232. * Thu Feb 05 2009 Adam Tkac <atkac redhat com> - 1.4.0-3
  233. - fixed configure flags
  234. * Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.0-2
  235. - rebuild with new openssl
  236. * Fri Nov 7 2008 Paul Wouters <paul@xelerance.com> - 1.4.0-1
  237. - Updated to 1.4.0
  238. * Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-3
  239. - enable SHA2 functionality
  240. * Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-2
  241. - re-tag (don't do builds while renaming local repo dirs)
  242. * Wed May 28 2008 Paul Wouters <paul@xelerance.com> - 1.3.0-1
  243. - Updated to latest release
  244. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.2-3
  245. - Autorebuild for GCC 4.3
  246. * Wed Dec 5 2007 Paul Wouters <paul@xelerance.com> - 1.2.2-2
  247. - Rebuild for new libcrypto
  248. * Thu Nov 29 2007 Paul Wouters <paul@xelerance.com> - 1.2.2-1
  249. - Upgraded to 1.2.2. Removed no longer needed race workaround
  250. * Tue Nov 13 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-4
  251. - Try to fix racing ln -s statements in parallel builds
  252. * Fri Nov 9 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-3
  253. - Added patch for ldns-read-zone that does not put @. in RRDATA
  254. * Fri Oct 19 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-2
  255. - Use install -p to work around multilib conflicts for .h files
  256. * Wed Oct 10 2007 Paul Wouters <paul@xelerance.com> - 1.2.1-1
  257. - Updated to 1.2.1
  258. - Removed patches that got moved into upstream
  259. * Wed Aug 8 2007 Paul Wouters <paul@xelerance.com> 1.2.0-11
  260. - Patch for ldns-key2ds to write to stdout
  261. - Again remove extra set of man pages from doc
  262. - own /usr/include/ldns (bug 233858)
  263. * Wed Aug 8 2007 Paul Wouters <paul@xelerance.com> 1.2.0-10
  264. - Added sha256 DS record patch to ldns-key2ds
  265. - Minor tweaks for proper doc/man page installation.
  266. - Workaround for parallel builds
  267. * Mon Aug 6 2007 Paul Wouters <paul@xelerance.com> 1.2.0-2
  268. - Own the /usr/include/ldns directory (bug #233858)
  269. - Removed obsoleted patch
  270. - Remove files form previous libtool run accidentally packages by upstream
  271. * Mon Sep 11 2006 Paul Wouters <paul@xelerance.com> 1.0.1-4
  272. - Commented out 1.1.0 make targets, put make 1.0.1 targets.
  273. * Mon Sep 11 2006 Paul Wouters <paul@xelerance.com> 1.0.1-3
  274. - Fixed changelog typo in date
  275. - Rebuild requested for PT_GNU_HASH support from gcc
  276. - Did not upgrade to 1.1.0 due to compile issues on x86_64
  277. * Fri Jan 6 2006 Paul Wouters <paul@xelerance.com> 1.0.1-1
  278. - Upgraded to 1.0.1. Removed temporary clean hack from spec file.
  279. * Sun Dec 18 2005 Paul Wouters <paul@xelerance.com> 1.0.0-8
  280. - Cannot use make clean because there are no Makefiles. Use hardcoded rm.
  281. * Sun Dec 18 2005 Paul Wouters <paul@xelerance.com> 1.0.0-7
  282. - Patched 'make clean' target to get rid of object files shipped with 1.0.0
  283. * Tue Dec 13 2005 Paul Wouters <paul@xelerance.com> 1.0.0-6
  284. - added a make clean for 2.3.3 since .o files were left behind upstream,
  285. causing failure on ppc platform
  286. * Sun Dec 11 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.0.0-5
  287. - minor cleanups
  288. * Wed Oct 5 2005 Paul Wouters <paul@xelerance.com> 0.70_1205
  289. - reworked for svn version
  290. * Sun Sep 25 2005 Paul Wouters <paul@xelerance.com> - 0.70
  291. - Initial version