gnutls-vl.spec 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. %bcond_without srp
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. %global __provides_exclude_from ^%{_libdir}/pkgconfig/.*$
  4. Summary: GNU TLS Library
  5. Summary(ja): GNU TLS ライブラリ
  6. Name: gnutls
  7. Version: 3.8.0
  8. Release: 1%{?_dist_release}
  9. Group: system,security
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. # The libgnutls library is LGPLv2+, utilities and remaining libraries are GPLv3+
  13. License: GPLv3+ and LGPLv2+
  14. URL: https://www.gnutls.org/
  15. %global shortver %(echo "%{version}" | sed -e 's/\.[0-9]*$//')
  16. Source0: https://www.gnupg.org/ftp/gcrypt/gnutls/v%{shortver}/%{name}-%{version}.tar.xz
  17. Source1: libgnutls-config
  18. #patches from fedora development
  19. Patch1: gnutls-3.2.7-rpath.patch
  20. # Vine Patches
  21. # Nothing...
  22. # Security fixes
  23. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  24. BuildRequires: libtasn1-devel >= 4.13
  25. Requires: libtasn1 >= 4.13
  26. BuildRequires: libunistring-devel
  27. BuildRequires: datefudge >= 1.22
  28. BuildRequires: gmp-devel
  29. BuildRequires: gettext readline-devel libtool
  30. BuildRequires: p11-kit-devel >= 0.21.3
  31. BuildRequires: nettle-devel >= 3.6
  32. Requires: nettle >= 3.6
  33. BuildRequires: texinfo, autogen
  34. BuildRequires: unbound-devel unbound-libs
  35. BuildRequires: zlib-devel
  36. Requires: zlib
  37. # for tests
  38. BuildRequires: net-tools
  39. %description
  40. GnuTLS is a project that aims to develop a library which provides a secure
  41. layer, over a reliable transport layer. Currently the GnuTLS library implements
  42. the proposed standards by the IETF's TLS working group.
  43. #'
  44. %package dane
  45. Summary: A DANE protocol implementation for GnuTLS
  46. Summary(ja): GnuTLSのDANE実装
  47. Group: system
  48. Requires: %{name} = %{version}-%{release}
  49. %description dane
  50. This package contains a part of GnuTLS library that implements the DANE
  51. protocol for verifying TLS certificates through DNSSEC.
  52. %package devel
  53. Summary: Development files for the GnuTLS package.
  54. Summary(ja): GnuTLSの開発用ファイル
  55. Group: programming
  56. Requires: %{name} = %{version}-%{release}
  57. Requires: %{name}-dane = %{version}-%{release}
  58. Requires: libgcrypt-devel, zlib-devel, pkgconfig
  59. Requires: libtasn1-devel, nettle-devel
  60. Provides: pkgconfig(gnutls) = %{version}
  61. Provides: pkgconfig(gnutls-dane) = %{version}
  62. %description devel
  63. GnuTLS is a project that aims to develop a library which provides a secure
  64. layer, over a reliable transport layer. Currently the GnuTLS library implements
  65. the proposed standards by the IETF's TLS working group.
  66. This package contains files needed for developing applications with the GnuTLS
  67. library.
  68. #'
  69. %package utils
  70. Summary: Command line tools for TLS protocol.
  71. Summary(ja): GnuTLS のコマンドラインツール
  72. Group: system
  73. Requires: %{name} = %{version}-%{release}
  74. %description utils
  75. GnuTLS is a project that aims to develop a library which provides a secure
  76. layer, over a reliable transport layer. Currently the GnuTLS library implements
  77. the proposed standards by the IETF's TLS working group.
  78. This package contains command line TLS client and server and certificate
  79. manipulation tools.
  80. #'
  81. %package c++
  82. Summary: The C++ interface to GnuTLS
  83. Group: system
  84. Requires: %{name} = %{version}-%{release}
  85. %description c++
  86. GnuTLS is a project that aims to develop a library which provides a secure
  87. layer, over a reliable transport layer. Currently the GnuTLS library implements
  88. the proposed standards by the IETF's TLS working group.
  89. This package contains the C++ interface for the GnuTLS library.
  90. #'
  91. %package -n compat32-%{name}
  92. Summary: GNU TLS Library
  93. Summary(ja): GNU TLS ライブラリ
  94. Group: system,legacy
  95. Requires: %{name} = %{version}-%{release}
  96. %description -n compat32-%{name}
  97. GnuTLS is a project that aims to develop a library which provides a secure
  98. layer, over a reliable transport layer. Currently the GnuTLS library implements
  99. the proposed standards by the IETF's TLS working group.
  100. #'
  101. %package -n compat32-%{name}-devel
  102. Summary: Development files for the GnuTLS package.
  103. Summary(ja): GnuTLS の開発用ファイル
  104. Group: programming,legacy
  105. Requires: compat32-%{name} = %{version}-%{release}
  106. Requires: %{name}-devel = %{version}-%{release}
  107. Requires: compat32-libgcrypt-devel, compat32-zlib-devel
  108. %description -n compat32-%{name}-devel
  109. GnuTLS is a project that aims to develop a library which provides a secure
  110. layer, over a reliable transport layer. Currently the GnuTLS library implements
  111. the proposed standards by the IETF's TLS working group.
  112. This package contains files needed for developing applications with the GnuTLS
  113. library.
  114. #'
  115. %debug_package
  116. %prep
  117. %autosetup -p1
  118. sed -i \
  119. -e 's|sys_lib_dlsearch_path_spec="/lib /usr/lib|sys_lib_dlsearch_path_spec="/lib /usr/lib %{_libdir}|g' \
  120. configure
  121. rm -f lib/minitasn1/*.c lib/minitasn1/*.h
  122. rm -f src/libopts/*.c src/libopts/*.h src/libopts/compat/*.c src/libopts/compat/*.h
  123. echo "SYSTEM=NORMAL" >> tests/system.prio
  124. %build
  125. export LDFLAGS="-Wl,--no-add-needed"
  126. #autoreconf -fiv
  127. %configure \
  128. --enable-sha1-support \
  129. --disable-static \
  130. --disable-openssl-compatibility \
  131. --disable-non-suiteb-curves \
  132. --with-unbound-root-key-file=/var/lib/unbound/root.key \
  133. --enable-dane \
  134. --disable-rpath \
  135. %if %{with srp}
  136. --enable-srp-authentication \
  137. %endif
  138. %{nil}
  139. # --with-libgcrypt
  140. # --with-lzo \
  141. # --with-included-libcfg \
  142. # --with-libtasn1-prefix=%{_prefix} \
  143. # --with-included-libtasn1 \
  144. # --with-included-opencdk \
  145. # --with-included-lzo \
  146. make %{?_smp_mflags}
  147. # cp lib/COPYING COPYING.LIB
  148. %install
  149. %__rm -rf %{buildroot}
  150. # makeinstall macro causes build error, why?
  151. make install DESTDIR=%{buildroot}
  152. rm -f %{buildroot}%{_infodir}/dir
  153. rm -f %{buildroot}%{_libdir}/*.la
  154. rm -f %{buildroot}%{_libdir}/gnutls/libpkcs11mock1.*
  155. rm -rf %{buildroot}%{_docdir}/gnutls
  156. %find_lang gnutls
  157. %ifarch x86_64
  158. %check
  159. make check %{?_smp_mflags}
  160. %endif
  161. %clean
  162. rm -rf %{buildroot}
  163. %files -f gnutls.lang
  164. %defattr(-,root,root,-)
  165. %{_libdir}/libgnutls.so.30*
  166. # %{_libdir}/libgnutls-xssl.so.0*
  167. %doc README* AUTHORS NEWS THANKS
  168. %files dane
  169. %{_libdir}/libgnutls-dane.so.*
  170. %files devel
  171. %defattr(-,root,root,-)
  172. %{_includedir}/*
  173. %{_libdir}/libgnutls*.so
  174. %{_libdir}/pkgconfig/*.pc
  175. %{_mandir}/man3/*
  176. %{_infodir}/gnutls*
  177. %{_infodir}/pkcs11-vision.png.gz
  178. %files utils
  179. %defattr(-,root,root,-)
  180. %{_bindir}/certtool
  181. %{_bindir}/danetool
  182. %{_bindir}/psktool
  183. %{_bindir}/p11tool
  184. %{_bindir}/ocsptool
  185. %if %{with srp}
  186. %{_bindir}/srptool
  187. %endif
  188. %{_bindir}/gnutls*
  189. %{_mandir}/man1/*
  190. %doc doc/certtool.cfg
  191. %files c++
  192. %{_libdir}/libgnutlsxx.so.*
  193. %if %{build_compat32}
  194. %files -n compat32-%{name}
  195. %defattr(-,root,root,-)
  196. %{_libdir}/libgnutls.so.30*
  197. %{_libdir}/libgnutls-dane.so.*
  198. # %{_libdir}/libgnutls-xssl.so.0*
  199. %files -n compat32-%{name}-devel
  200. %defattr(-,root,root,-)
  201. #%{_libdir}/libgnutls*.a
  202. %{_libdir}/libgnutls*.so
  203. %endif
  204. %changelog
  205. * Sat Feb 25 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.0-1
  206. - new upstream release.
  207. - guile-bindings was removed from upstream.
  208. * Fri Nov 18 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.8-2
  209. - rebuilt with guile-3.0.
  210. * Fri Nov 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.8-1
  211. - new upstream release.
  212. * Tue Aug 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.7-1
  213. - new upstream release.
  214. * Wed Jun 08 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.6-1
  215. - new upstream release.
  216. - dropped install-info scriptlets.
  217. * Mon May 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.4-1
  218. - new upstream release.
  219. * Fri Jun 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.2-1
  220. - new upstream release.
  221. * Sat Mar 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.1-1
  222. - new upstream release.
  223. - dropped ldconfig scriptlets.
  224. * Tue Feb 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.7.0-1
  225. - new upstream release.
  226. * Wed Sep 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.15-2
  227. - added a subpackage: gnutls-dane.
  228. * Tue Sep 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.15-1
  229. - new upstream release.
  230. * Thu Jun 11 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.14-1
  231. - new upstream release.
  232. * Tue Apr 07 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.13-1
  233. - new upstream release.
  234. * Wed Sep 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.9-1
  235. - new upstream release.
  236. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.7-1
  237. - new upstream release.
  238. - updated Patch2.
  239. - dropped Patch3.
  240. * Thu Nov 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.4-1
  241. - new upstream release.
  242. - dropped Patch2-3,1001 and 2001.
  243. - imported Patch2-3 from rawhide.
  244. - enabled DANE support.
  245. * Sat Jan 28 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 3.4.14-3
  246. - fix CVE-2017-5337, CVE-2017-5334, CVE-2017-5336, CVE-2017-5335
  247. - add Patch3001 from Fedora 24 gnutls-3.4.17-2.fc24
  248. * Thu Jan 12 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 3.4.14-2
  249. - fix CVE-2016-7444; OCSP validation issue
  250. - add Patch2001
  251. - add BR: net-tools; for test
  252. * Thu Jul 7 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.14-1
  253. - new upstream release 3.4.14.
  254. - dropped Patch100.
  255. - added BR: datefudge.
  256. * Mon Jul 4 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.13-1
  257. - new upstream release 3.4.13.
  258. - added Patch100: workaround of failing cert-test (The certificate was expired).
  259. * Sun Feb 14 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.9-1
  260. - new upstream release 3.4.9
  261. * Fri Jan 1 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.7-2
  262. - rebuilt to marge changelog
  263. * Tue Dec 29 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.7-1
  264. - new upstream release 3.4.7
  265. * Tue Dec 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.17-3
  266. - rebuild with nettls-3.1.1
  267. * Fri Aug 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-2
  268. - BR: libtasn1-devel >= 3.9
  269. * Fri Aug 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-1
  270. - built for release
  271. * Tue Aug 18 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-0.2
  272. - rm libgnutls-xssl.so.0* in files list
  273. * Mon Aug 17 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.3.17-0.1
  274. - for test
  275. * Mon Aug 17 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.20-3
  276. - add patch1000 for fix SA-2015-3
  277. * Sun Jan 25 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.2.20-2
  278. - rebuilt with guile 2.0.11
  279. * Tue Nov 18 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.20-1
  280. - new upstream release with security fix
  281. * Thu Jun 5 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.15-1
  282. - new upstream release with security fix
  283. * Tue Mar 11 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.12.1-1
  284. - new upstream release with security fix
  285. * Wed Feb 19 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.11-1
  286. - new upstream release with security fix
  287. * Sun Feb 9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-3
  288. - fix R: in compat32
  289. * Wed Feb 5 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-2
  290. - fix BR:, R: (drop unneeded dependency)
  291. * Mon Feb 3 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.2.10-1
  292. - new upstream release 3.2.10
  293. - update patches / drop old patches
  294. - add BR: nettle
  295. * Fri Jun 07 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.23-2
  296. - added Patch100 from upstream to fix CVE-2013-2116
  297. * Fri Feb 08 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.23-1
  298. - new upstream release
  299. - fixed a day of the week in %%changelog
  300. * Sat Jan 26 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.22-1
  301. - new upstream release
  302. * Sun Nov 11 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.21-1
  303. - new upstream release
  304. * Sun Jun 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.20-1
  305. - new upstream release
  306. * Tue May 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.19-1
  307. - new upstream release
  308. * Sun Mar 18 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.18-1
  309. - new upstream release
  310. - changed BuildRequires: p11-kit-devel >= 0.11
  311. * Fri Mar 16 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.17-1
  312. - new upstream release
  313. * Sat Jan 14 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.16-1
  314. - new upstream release
  315. * Mon Dec 05 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-3
  316. - added BuildRequires: p11-kit-devel
  317. * Sun Dec 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-2
  318. - deleted BuildRequires: nettle-devel
  319. - mistake.. fixed.
  320. * Sun Dec 04 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.12.14-1
  321. - new upstream release
  322. - synced Fedora development package
  323. - add new sub-package: c++
  324. * Sun Apr 10 2011 IWAI, Masaharu <iwai@alib.jp> 2.10.5-2
  325. - add Requires: libtasn1-devel for devel subpackage
  326. * Sun Apr 3 2011 IWAI, Masaharu <iwai@alib.jp> 2.10.5-1
  327. - new upstream release
  328. * Sun Dec 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.4-1
  329. - new upstream release
  330. * Tue Nov 23 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.3-1
  331. - new upstream release
  332. - dropt patch1
  333. * Sat Oct 9 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.10.2-1
  334. - new upstream release
  335. - added patch1,2,3,4 from Fedora development
  336. - added BuildRequires: gettext readline-devel libtool
  337. - added configure option
  338. --disable-static,--disable-srp-authentication
  339. - dropt *.a files from -devel package again
  340. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.8.6-2
  341. - build with rpm-4.8.1-1 for pkg-config file
  342. * Mon Mar 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.6-1
  343. - new upstream release
  344. - applied new naming policy to spec
  345. * Thu Nov 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.5-1
  346. - new upstream release
  347. * Sat Sep 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.4-1
  348. - new upstream release
  349. * Wed Aug 19 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.3-1
  350. - new upstream release
  351. * Thu Aug 13 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.8.2-1
  352. - new upstream release with security fix (handling X.509 CN or SAN fields)
  353. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.8.1-2vl5
  354. - added compat32 package for x86_64 arch support
  355. * Thu Jun 11 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.8.1-1vl5
  356. - new upstream release
  357. - added autoreconf
  358. - deleted libguile*.a
  359. - dropt Patch3
  360. - added %post guile, %postun guile
  361. * Sun May 03 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.6-2
  362. - drop *.a files from -devel package
  363. - build with system lzo
  364. * Sun May 03 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.6-1
  365. - new upstream release with security fixes (CVE-2009-1415,1416,1417)
  366. * Wed Apr 15 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.5-1vl5
  367. - update to 2.6.5
  368. * Wed Mar 25 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.4-2
  369. - spec in UTF-8
  370. * Sun Feb 8 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.4-1vl5
  371. - update to 2.6.4
  372. - modifeid Source0
  373. * Mon Jan 19 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.3-2vl5
  374. - add BuildRequires: guile-devel >= 1.8.6
  375. * Tue Jan 13 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.3-1vl5
  376. - update to 2.6.3
  377. - import from fedora developing's 2.6.3
  378. - License tag fixed
  379. - dropped patch0, patch1, patch2
  380. - added patch3
  381. - added BuildRequires: gmp-devel
  382. - add new sub-package: guile
  383. - added %package guile, %description guile, %files guile
  384. * Sat Mar 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.3-2vl5
  385. - used %%{?_dist_release} macro
  386. * Mon Mar 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.3-2vl1
  387. - update to 1.6.3 (use no-SRP source)
  388. - import from fedora core's 1.6.3-2
  389. - nosrc.tar.bz2 (source0)
  390. - license tag fix
  391. - build with system libtasn1
  392. * Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4.5-0vl1
  393. - update to 1.4.5 (use no-SRP source)
  394. - import from fedora core's 1.4.5-1
  395. - nosrc.tar.bz2 (source0)
  396. - drop obsolete cve-2006-4790.patch (patch3)
  397. * Tue Oct 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4.1-2vl1
  398. - [SECURITY] update to 1.4.1 (use no-SRP source)
  399. - import from fedora core's 1.4.1-2
  400. - nosrp.tar.bz2 (source0)
  401. - libgnutls-config (source1)
  402. - nosrc.patch (patch0)
  403. - enable-psk.patch (patch1)
  404. - cve-2006-4790.patch (patch3)
  405. - update required version of libgcrypt (>= 1.2.2)
  406. - add Requires: pkgconfig to -devel package
  407. - add %%check section
  408. - update %%files
  409. - add new sub-package: utils
  410. * Sat May 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.25-0vl1
  411. - [SECURITY FIX] upstream release
  412. - record packet parsing denial of service (CAN-2005-1431)
  413. * Mon Mar 28 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.24-0vl1
  414. - initial build for Vine Linux
  415. - upstream release
  416. * Wed Mar 2 2005 Warren Togami <wtogami@redhat.com> 1.0.20-6
  417. - gcc4 rebuild
  418. * Tue Jan 4 2005 Ivana Varekova <varekova@redhat.com> 1.0.20-5
  419. - add gnutls Requires zlib-devel (#144069)
  420. * Mon Nov 08 2004 Colin Walters <walters@redhat.com> 1.0.20-4
  421. - Make gnutls-devel Require libgcrypt-devel
  422. * Tue Sep 21 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-3
  423. - rebuild with release++, otherwise unchanged.
  424. * Tue Sep 7 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-2
  425. - patent tainted SRP code removed.
  426. * Sun Sep 5 2004 Jeff Johnson <jbj@redhat.com> 1.0.20-1
  427. - update to 1.0.20.
  428. - add --with-included-opencdk --with-included-libtasn1
  429. - add --with-included-libcfg --with-included-lzo
  430. - add --disable-srp-authentication.
  431. - do "make check" after build.
  432. * Fri Mar 21 2003 Jeff Johnson <jbj@redhat.com> 0.9.2-1
  433. - upgrade to 0.9.2
  434. * Tue Jun 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.4-1
  435. - update to 0.4.4.
  436. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  437. - automated rebuild
  438. * Sat May 25 2002 Jeff Johnson <jbj@redhat.com> 0.4.3-1
  439. - update to 0.4.3.
  440. * Tue May 21 2002 Jeff Johnson <jbj@redhat.com> 0.4.2-1
  441. - update to 0.4.2.
  442. - change license to LGPL.
  443. - include splint annotations patch.
  444. * Tue Apr 2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.4.0-1
  445. - update to 0.4.0
  446. * Thu Jan 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.2-1
  447. - update to 0.3.2
  448. * Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 0.3.0-1
  449. - add a URL
  450. * Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
  451. - initial package