unbound-vl.spec 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %global with_munin 1
  3. %{?!enable_gost: %global enable_gost 1}
  4. # not ready yet
  5. %{?!with_python: %global with_python 0}
  6. %if %{with_python}
  7. %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  8. %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
  9. %endif
  10. %define _sharedstatedir /var/lib
  11. Summary: Validating, recursive, and caching DNS(SEC) resolver
  12. Name: unbound
  13. Version: 1.9.3
  14. Release: 1%{?_dist_release}
  15. License: BSD
  16. Url: http://www.unbound.net/
  17. Source: https://nlnetlabs.nl/downloads/unbound/%{name}-%{version}.tar.gz
  18. Source1: unbound.init
  19. Source2: unbound.conf
  20. Source3: unbound.munin
  21. Source4: dlv.isc.org.key
  22. Source5: root.key
  23. Source6: root.anchor
  24. Source7: icannbundle.pem
  25. Source8: unbound.cron
  26. Source9: example.com.key
  27. Source10: example.com.conf
  28. Source11: block-example.com.conf
  29. Group: System Environment/Daemons
  30. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  31. BuildRequires: flex
  32. BuildRequires: libevent-devel
  33. BuildRequires: expat-devel
  34. %if %{with_python}
  35. BuildRequires: python-devel swig
  36. %endif
  37. %if %{enable_gost}
  38. BuildRequires: openssl-devel >= 1.0.0
  39. %else
  40. BuildRequires: openssl-devel
  41. %endif
  42. # Required for SVN versions
  43. #BuildRequires: bison
  44. Requires(post): chkconfig
  45. Requires(preun): chkconfig
  46. Requires(preun): initscripts
  47. Requires(postun): initscripts
  48. Requires(pre): shadow-utils
  49. Distribution: Vine Linux
  50. Vendor: Project Vine
  51. Packager: iwaim, daisuke
  52. %description
  53. Unbound is a validating, recursive, and caching DNS(SEC) resolver.
  54. The C implementation of Unbound is developed and maintained by NLnet
  55. Labs. It is based on ideas and algorithms taken from a java prototype
  56. developed by Verisign labs, Nominet, Kirei and ep.net.
  57. Unbound is designed as a set of modular components, so that also
  58. DNSSEC (secure DNS) validation and stub-resolvers (that do not run
  59. as a server, but are linked into an application) are easily possible.
  60. %if %{with_munin}
  61. %package munin
  62. Summary: Plugin for the munin / munin-node monitoring package
  63. Summary(ja): munin/munin-node モニタリングパッケージ用のプラグイン
  64. Group: System Environment/Daemons
  65. Requires: munin-node
  66. Requires: %{name} = %{version}-%{release}, bc
  67. %description munin
  68. Plugin for the munin / munin-node monitoring package
  69. %endif
  70. %package devel
  71. Summary: Development package that includes the unbound header files
  72. Group: Development/Libraries
  73. Requires: %{name}-libs = %{version}-%{release}, openssl-devel
  74. %description devel
  75. The devel package contains the unbound library and the include files
  76. %package libs
  77. Summary: Libraries used by the unbound server and client applications
  78. Group: Applications/System
  79. Requires(post): /sbin/ldconfig
  80. Requires(postun): /sbin/ldconfig
  81. Requires: openssl >= 0.9.8g-12
  82. %description libs
  83. Contains libraries used by the unbound server and client applications
  84. %if %{with_python}
  85. %package python
  86. Summary: Python modules and extensions for unbound
  87. Group: Applications/System
  88. Requires: %{name}-libs = %{version}-%{release}
  89. %description python
  90. Python modules and extensions for unbound
  91. %endif
  92. %package -n compat32-%{name}-libs
  93. Summary: Libraries used by the unbound server and client applications
  94. Group: Applications/System
  95. Requires: %{name}-libs = %{version}-%{release}
  96. Requires(post): /sbin/ldconfig
  97. Requires(postun): /sbin/ldconfig
  98. Requires: openssl >= 0.9.8g-12
  99. %description -n compat32-%{name}-libs
  100. Contains libraries used by the unbound server and client applications
  101. %prep
  102. %setup -q
  103. %build
  104. %configure --with-libevent --with-pthreads --with-ssl \
  105. --disable-rpath --enable-debug --disable-static \
  106. --with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \
  107. --with-pidfile=%{_localstatedir}/run/%{name}/%{name}.pid \
  108. %if %{with_python}
  109. --with-pythonmodule --with-pyunbound \
  110. %endif
  111. %if !%{enable_gost}
  112. --disable-gost \
  113. %endif
  114. --enable-sha2 \
  115. --disable-sha1 \
  116. --with-rootkey-file=%{_sharedstatedir}/unbound/root.key
  117. %{__make} %{?_smp_mflags}
  118. %install
  119. rm -rf %{buildroot}
  120. %{__make} DESTDIR=%{buildroot} install
  121. install -d 0755 %{buildroot}%{_initrddir}
  122. install -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/unbound
  123. install -m 0755 %{SOURCE2} %{buildroot}%{_sysconfdir}/unbound
  124. install -m 0755 %{SOURCE7} %{buildroot}%{_sysconfdir}/unbound
  125. install -d 0755 %{buildroot}%{_sysconfdir}/cron.d
  126. install -p -m 0644 %{SOURCE8} %{buildroot}%{_sysconfdir}/cron.d/unbound-anchor
  127. %if %{with_munin}
  128. # Install munin plugin and its softlinks
  129. install -d 0755 %{buildroot}%{_sysconfdir}/munin/plugin-conf.d
  130. install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/munin/plugin-conf.d/unbound
  131. install -d 0755 %{buildroot}%{_datadir}/munin/plugins/
  132. install -m 0755 contrib/unbound_munin_ %{buildroot}%{_datadir}/munin/plugins/unbound
  133. for plugin in unbound_munin_hits unbound_munin_queue \
  134. unbound_munin_memory unbound_munin_by_type \
  135. unbound_munin_by_class unbound_munin_by_opcode \
  136. unbound_munin_by_rcode unbound_munin_by_flags \
  137. unbound_munin_histogram; do
  138. ln -s unbound %{buildroot}%{_datadir}/munin/plugins/$plugin
  139. done
  140. %endif
  141. # install root and DLV key
  142. install -m 0644 %{SOURCE4} %{SOURCE5} %{buildroot}%{_sysconfdir}/unbound/
  143. install -d -m 0755 %{buildroot}%{_sharedstatedir}/unbound
  144. install -m 0644 %{SOURCE6} %{buildroot}%{_sharedstatedir}/unbound/root.key
  145. # remove static library from install (fedora packaging guidelines)
  146. rm -rf %{buildroot}%{_libdir}/*.la
  147. %if %{with_python}
  148. rm -rf %{buildroot}%{python_sitelib}/*/*.la
  149. %endif
  150. mkdir -p %{buildroot}%{_localstatedir}/run/unbound
  151. # Install directories for easier config file drop in
  152. install -d -m 0755 %{buildroot}%{_sysconfdir}/unbound/{keys.d,local.d,conf.d}
  153. install -p %{SOURCE9} %{buildroot}%{_sysconfdir}/unbound/keys.d/
  154. install -p %{SOURCE10} %{buildroot}%{_sysconfdir}/unbound/conf.d/
  155. install -p %{SOURCE11} %{buildroot}%{_sysconfdir}/unbound/local.d/
  156. %clean
  157. rm -rf ${RPM_BUILD_ROOT}
  158. %files
  159. %defattr(-,root,root,-)
  160. %license doc/LICENSE
  161. %doc doc/README doc/CREDITS doc/FEATURES
  162. %attr(0755,root,root) %{_initrddir}/%{name}
  163. %attr(0755,root,root) %dir %{_sysconfdir}/%{name}
  164. %attr(0755,unbound,unbound) %dir %{_localstatedir}/run/%{name}
  165. %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/unbound.conf
  166. %dir %attr(0755,root,unbound) %{_sysconfdir}/%{name}/keys.d
  167. %attr(0664,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/keys.d/*.key
  168. %dir %attr(0755,root,unbound) %{_sysconfdir}/%{name}/conf.d
  169. %attr(0664,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/conf.d/*.conf
  170. %dir %attr(0755,root,unbound) %{_sysconfdir}/%{name}/local.d
  171. %attr(0664,root,unbound) %config(noreplace) %{_sysconfdir}/%{name}/local.d/*.conf
  172. %{_sbindir}/*
  173. %exclude %{_sbindir}/unbound-anchor
  174. %{_mandir}/*/*
  175. %if %{with_python}
  176. %files python
  177. %{python_sitelib}/*
  178. %endif
  179. %if %{with_munin}
  180. %files munin
  181. %defattr(-,root,root,-)
  182. %config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/unbound
  183. %{_datadir}/munin/plugins/unbound*
  184. %endif
  185. %files devel
  186. %defattr(-,root,root,-)
  187. %{_libdir}/libunbound.so
  188. %{_includedir}/unbound.h
  189. %{_libdir}/pkgconfig/libunbound.pc
  190. %doc README
  191. %files libs
  192. %defattr(-,root,root,-)
  193. %license doc/LICENSE
  194. %doc doc/README
  195. %{_sbindir}/unbound-anchor
  196. %{_libdir}/libunbound.so.*
  197. %{_sysconfdir}/%{name}/icannbundle.pem
  198. %attr(0644,root,root) %{_sysconfdir}/cron.d/unbound-anchor
  199. %dir %attr(0755,unbound,unbound) %{_sharedstatedir}/%{name}
  200. %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/dlv.isc.org.key
  201. %attr(0644,unbound,unbound) %config(noreplace) %{_sharedstatedir}/%{name}/root.key
  202. %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/root.key
  203. %if %{build_compat32}
  204. %files -n compat32-%{name}-libs
  205. %defattr(-,root,root,-)
  206. %{_libdir}/libunbound.so.*
  207. %endif
  208. %pre libs
  209. getent group unbound >/dev/null || groupadd -r unbound
  210. getent passwd unbound >/dev/null || \
  211. useradd -r -g unbound -d %{_sysconfdir}/unbound -s /sbin/nologin \
  212. -c "Unbound DNS resolver" unbound
  213. exit 0
  214. %post
  215. /sbin/chkconfig --add %{name}
  216. # dnssec-conf used to contain our DLV key, but now we include it via unbound
  217. # If unbound had previously been configured with dnssec-configure, we need
  218. # to migrate the location of the DLV key file (to keep DLV enabled, and because
  219. # unbound won't start with a bad location for a DLV key file.
  220. sed -i "s:/etc/pki/dnssec-keys[/]*dlv:/etc/unbound:" %{_sysconfdir}/unbound/unbound.conf
  221. %post libs
  222. /sbin/ldconfig
  223. /sbin/runuser --command="%{_sbindir}/unbound-anchor -a %{_sharedstatedir}/unbound/root.key -c %{_sysconfdir}/unbound/icannbundle.pem" --shell /bin/sh unbound ||:
  224. %preun
  225. if [ "$1" -eq 0 ]; then
  226. /sbin/service %{name} stop >/dev/null 2>&1
  227. /sbin/chkconfig --del %{name}
  228. fi
  229. %postun
  230. if [ "$1" -ge "1" ]; then
  231. /sbin/service %{name} condrestart >/dev/null 2>&1 || :
  232. fi
  233. %postun libs
  234. /sbin/ldconfig
  235. %post -n compat32-%{name}-libs
  236. /sbin/ldconfig
  237. %postun -n compat32-%{name}-libs
  238. /sbin/ldconfig
  239. %changelog
  240. * Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9.3-1
  241. - updated to 1.9.3.
  242. * Sat Aug 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9.2-1
  243. - updated to 1.9.2.
  244. * Fri Nov 09 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.8.1-2
  245. - added a subpackage 'compat32-unbound-libs'.
  246. * Sun Nov 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.8.1-1
  247. - updated to 1.8.1.
  248. - rebuilt with openssl-1.1.1 and libevent-2.1.8.
  249. - updated root.key and root.anchor.
  250. * Thu Oct 4 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 1.8.0-1
  251. - update to 1.8.0
  252. - drop mesh patch (Patch0): upstream fixed
  253. * Thu May 24 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 1.7.1-3
  254. - Fix mesh state assertion failure due to callback removal. (Patch0)
  255. * Sun May 6 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 1.7.1-2
  256. - enable ECDSA support
  257. - enable GOST support
  258. * Sat May 5 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 1.7.1-1
  259. - update to 1.7.1
  260. - add pkgconfig file in devel sub package
  261. * Thu Jan 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.6.7-1
  262. - updated to 1.6.7.
  263. * Mon Jul 31 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 1.6.4-1
  264. - update to 1.6.4
  265. * Sat Jun 24 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.3-1
  266. - update to 1.6.3
  267. * Mon Jun 05 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.2-1
  268. - update to 1.6.2
  269. - disables SHA1 support
  270. * Sat Feb 25 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.1-1
  271. - update to 1.6.1
  272. * Mon Jan 30 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.0-2
  273. - fix Requires and BuildRequres
  274. - drop ldns
  275. * Thu Dec 29 2016 IWAI, Masaharu <iwaim.sub@gmail.com> 1.6.0-1
  276. - update to 1.6.0
  277. * Thu Jun 16 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.9-1
  278. - new upstream release.
  279. * Mon Mar 14 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.8-1
  280. - new upstream release.
  281. * Thu Dec 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.7-1
  282. - new upstream release.
  283. * Tue Nov 3 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.6-1
  284. - new upstream release.
  285. * Sun Mar 22 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.5.3-1
  286. - update to 1.5.3
  287. * Tue Dec 09 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.5.1-1
  288. - update to 1.5.1
  289. * Tue Jun 17 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 1.4.22-3
  290. - move create user script to libs subpackage
  291. * Wed Jun 11 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 1.4.22-2
  292. - add {B,C}.ROOT-SERVERS.NET. IPv6 address
  293. * Wed Apr 16 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.22-1
  294. - update to 1.4.22
  295. - move root.key to /var/lib/unbound
  296. - add icannbundle.pem from http://data.iana.org/root-anchors/icannbundle.pem
  297. - add unbound.cron
  298. - move keys and unbound-anchor to libs subpackage
  299. * Mon Oct 07 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.21-1
  300. - new upstream release
  301. * Tue Mar 26 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.20-1
  302. - new upstream release
  303. * Thu Dec 13 2012 IWAI, Masaharu <iwai@alib.jp> 1.4.19-1
  304. - new upstream release
  305. - drop glob patch (Patch1): upstream merged
  306. * Wed Dec 5 2012 IWAI, Masaharu <iwai@alib.jp> 1.4.18-1
  307. - new upstream release
  308. * Sun May 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.17-1
  309. - update to 1.4.17
  310. - add root.key for DNSSEC
  311. - enable munin subpackage by default
  312. - buildrequire ldns-devel >= 1.6.13
  313. * Wed Feb 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.14-2
  314. - rebuild with python-2.7.2
  315. * Wed Dec 21 2011 IWAI, Masaharu <iwai@alib.jp> 1.4.14-1
  316. - new upstream release
  317. * Sat Sep 3 2011 IWAI, Masaharu <iwai@alib.jp> 1.4.12-1
  318. - new upstream release
  319. * Tue May 31 2011 IWAI, Masaharu <iwai@alib.jp> 1.4.10-1
  320. - new upstream releas
  321. * Wed Mar 30 2011 IWAI, Masaharu <iwai@alib.jp> 1.4.9-1
  322. - new upstream release
  323. * Wed Feb 23 2011 IWAI, Masaharu <iwai@alib.jp> 1.4.8-1
  324. - new upstream release
  325. * Thu Feb 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.7-2
  326. - rebuilt with libevent-2.0.10
  327. * Sun Nov 14 2010 IWAI, Masaharu <iwai@alib.jp> 1.4.7-1
  328. - new upstream release
  329. - add enable_gost flag: default disable
  330. - add BuildRequires: expat-devel
  331. * Thu Sep 2 2010 IWAI, Masaharu <iwai@alib.jp> 1.4.6-1
  332. - new upstream release
  333. * Fri Jul 23 2010 IWAI, Masaharu <iwai@alib.jp> 1.4.5-1
  334. - new upstream release
  335. * Wed May 5 2010 IWAI, Masaharu <iwai@alib.jp> 1.4.4-1
  336. - initial build for Vine Linux: based Fedora 1.4.3-1.fc14
  337. - update to 1.4.4
  338. - build without munin
  339. * Thu Mar 11 2010 Paul Wouters <paul@xelerance.com> - 1.4.3-1
  340. - Update to 1.4.3 that fixes 64bit crasher
  341. * Tue Mar 09 2010 Paul Wouters <paul@xelerance.com> - 1.4.2-1
  342. - Updated to 1.4.2
  343. - Updated unbound.conf with new options
  344. - Enabled pre-fetching DNSKEY records (DNSSEC speedup)
  345. - Enabled re-fetching popular records before they expire
  346. - Enabled logging of DNSSEC validation errors
  347. * Mon Mar 01 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-5
  348. - Overriding -D_GNU_SOURCE is no longer needed. This fixes DSO issues
  349. with pthreads
  350. * Wed Feb 24 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-3
  351. - Change make/configure lines to attempt to fix -lphtread linking issue
  352. * Thu Feb 18 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-2
  353. - Removed dependancy for dnssec-conf
  354. - Added ISC DLV key (formerly in dnssec-conf)
  355. - Fixup old DLV locations in unbound.conf file via %%post
  356. - Fix parent child disagreement handling and no-ipv6 present [svn r1953]
  357. * Tue Jan 05 2010 Paul Wouters <paul@xelerance.com> - 1.4.1-1
  358. - Updated to 1.4.1
  359. - Changed %%define to %%global
  360. * Thu Oct 08 2009 Paul Wouters <paul@xelerance.com> - 1.3.4-2
  361. - Bump version
  362. * Thu Oct 08 2009 Paul Wouters <paul@xelerance.com> - 1.3.4-1
  363. - Upgraded to 1.3.4. Security fix with validating NSEC3 records
  364. * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.3.3-2
  365. - rebuilt with new openssl
  366. * Mon Aug 17 2009 Paul Wouters <paul@xelerance.com> - 1.3.3-1
  367. - Updated to 1.3.3
  368. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-3
  369. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  370. * Sat Jun 20 2009 Paul Wouters <paul@xelerance.com> - 1.3.0-2
  371. - Added missing glob patch to cvs
  372. - Place python macros within the %%with_python check
  373. * Sat Jun 20 2009 Paul Wouters <paul@xelerance.com> - 1.3.0-1
  374. - Updated to 1.3.0
  375. - Added unbound-python sub package. disabled for now
  376. - Patch from svn to fix DLV lookups
  377. - Patches from svn to detect wrong truncated response from BIND 9.6.1 with
  378. minimal-responses)
  379. - Added Default-Start and Default-Stop to unbound.init
  380. - Re-enabled --enable-sha2
  381. - Re-enabled glob.patch
  382. * Wed May 20 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-7
  383. - unbound-iterator.patch was not commited
  384. * Wed May 20 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-6
  385. - Fix for https://bugzilla.redhat.com/show_bug.cgi?id=499793
  386. * Tue Mar 17 2009 Paul Wouters <paul@xelerance.com> - 1.2.1-5
  387. - Use --nocheck to avoid giving an error on missing unbound-remote certs/keys
  388. * Tue Mar 10 2009 Adam Tkac <atkac redhat com> - 1.2.1-4
  389. - enable DNSSEC only if it is enabled in sysconfig/dnssec
  390. * Mon Mar 09 2009 Adam Tkac <atkac redhat com> - 1.2.1-3
  391. - add DNSSEC support to initscript and enabled it per default
  392. - add requires dnssec-conf
  393. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
  394. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  395. * Tue Feb 10 2009 Paul Wouters <paul@xelerance.com - 1.2.1-1
  396. - updated to 1.2.1
  397. * Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1.2.0-2
  398. - rebuild with new openssl
  399. * Wed Jan 14 2009 Paul Wouters <paul@xelerance.com - 1.2.0-1
  400. - Updated to 1.2.0
  401. - Added dependancy on minimum SSL for CVE-2008-5077
  402. - Added dependancy on bc for unbound-munin
  403. - Added minimum requirement of libevent 1.4.5. Crashes with older versions
  404. (note: libevent is stale in EL-4 and not in EL-5, needs fixing there)
  405. - Removed dependancy on selinux-policy (will get used when available)
  406. - Enable options as per draft-wijngaards-dnsext-resolver-side-mitigation-00.txt
  407. - Enable unwanted-reply-threshold to mitigate against a Kaminsky attack
  408. - Enable val-clean-additional to drop addition unsigned data from signed
  409. response.
  410. - Removed patches (got merged into upstream)
  411. * Mon Jan 5 2009 Paul Wouters <paul@xelerance.com> - 1.1.1-7
  412. - Modified scandir patch to silently fail when wildcard matches nothing
  413. - Patch to allow unbound-checkconf to find empty wildcard matches
  414. * Mon Jan 5 2009 Paul Wouters <paul@xelerance.com> - 1.1.1-6
  415. - Added scandir patch for trusted-keys-file: option, which
  416. is used to load multiple dnssec keys in bind file format
  417. * Mon Dec 8 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-4
  418. - Added Requires: for selinux-policy >= 3.5.13-33 for proper SElinux rules.
  419. * Mon Dec 1 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-3
  420. - We did not own the /etc/unbound directory (#474020)
  421. - Fixed cvs anomalies
  422. * Fri Nov 28 2008 Adam Tkac <atkac redhat com> - 1.1.1-2
  423. - removed all obsolete chroot related stuff
  424. - label control certs after generation correctly
  425. * Thu Nov 20 2008 Paul Wouters <paul@xelerance.com> - 1.1.1-1
  426. - Updated to unbound 1.1.1 which fixes a crasher and
  427. addresses nlnetlabs bug #219
  428. * Wed Nov 19 2008 Paul Wouters <paul@xelerance.com> - 1.1.0-3
  429. - Remove the chroot, obsoleted by SElinux
  430. - Add additional munin plugin links supported by unbound plugin
  431. - Move configuration directory from /var/lib/unbound to /etc/unbound
  432. - Modified unbound.init and unbound.conf to account for chroot changes
  433. - Updated unbound.conf with new available options
  434. - Enabled dns-0x20 protection per default
  435. * Wed Nov 19 2008 Adam Tkac <atkac redhat com> - 1.1.0-2
  436. - unbound-1.1.0-log_open.patch
  437. - make sure log is opened before chroot call
  438. - tracked as http://www.nlnetlabs.nl/bugs/show_bug.cgi?id=219
  439. - removed /dev/log and /var/run/unbound and /etc/resolv.conf from
  440. chroot, not needed
  441. - don't mount files in chroot, it causes problems during updates
  442. - fixed typo in default config file
  443. * Fri Nov 14 2008 Paul Wouters <paul@xelerance.com> - 1.1.0-1
  444. - Updated to version 1.1.0
  445. - Updated unbound.conf's statistics options and remote-control
  446. to work properly for munin
  447. - Added unbound-munin package
  448. - Generate unbound remote-control key/certs on first startup
  449. - Required ldns is now 1.4.0
  450. * Wed Oct 22 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-5
  451. - Only call ldconfig in -libs package
  452. - Move configure into build section
  453. - devel subpackage should only depend on libs subpackage
  454. * Tue Oct 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-4
  455. - Fix CFLAGS getting lost in build
  456. - Don't enable interface-automatic:yes because that
  457. causes unbound to listen on 0.0.0.0 instead of 127.0.0.1
  458. * Sun Oct 19 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-3
  459. - Split off unbound-libs, make build verbose
  460. * Thu Oct 9 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-2
  461. - FSB compliance, chroot fixes, initscript fixes
  462. * Thu Sep 11 2008 Paul Wouters <paul@xelerance.com> - 1.0.2-1
  463. - Upgraded to 1.0.2
  464. * Wed Jul 16 2008 Paul Wouters <paul@xelerance.com> - 1.0.1-1
  465. - upgraded to new release
  466. * Wed May 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.0-2
  467. - Build against ldns-1.3.0
  468. * Wed May 21 2008 Paul Wouters <paul@xelerance.com> - 1.0.0-1
  469. - Split of -devel package, fixed dependancies, make rpmlint happy
  470. * Fri Apr 25 2008 Wouter Wijngaards <wouter@nlnetlabs.nl> - 0.12
  471. - Using parts from ports collection entry by Jaap Akkerhuis.
  472. - Using Fedoraproject wiki guidelines.
  473. * Wed Apr 23 2008 Wouter Wijngaards <wouter@nlnetlabs.nl> - 0.11
  474. - Initial version.