gnutls-vl.spec 19 KB

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