openssl-vl.spec 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955
  1. %bcond_with fips
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. %{!?_pkgdocdir:%global _pkgdocdir %{_docdir}}
  4. # 1.0.0 soversion = 10
  5. # 1.1.0 soversion = 1.1 (same as upstream although presence of some symbols
  6. # depends on build configuration options)
  7. %define soversion 3
  8. Summary: Secure Sockets Layer Toolkit
  9. Name: openssl
  10. Version: 3.0.7
  11. Release: 1%{_dist_release}
  12. Group: system,security
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. Packager: daisuke, iwamoto
  16. License: BSDish
  17. URL: https://www.openssl.org/
  18. # We have to remove certain patented algorithms from the openssl source
  19. # tarball with the hobble-openssl script which is included below.
  20. # The original openssl upstream tarball cannot be shipped in the .src.rpm.
  21. Source: openssl-%{version}-hobbled.tar.xz
  22. Source1: hobble-openssl
  23. Source2: Makefile.certificate
  24. Source6: make-dummy-cert
  25. Source7: renew-dummy-cert
  26. Source9: configuration-switch.h
  27. Source10: configuration-prefix.h
  28. Source12: ec_curve.c
  29. Source13: ectest.c
  30. # Patches exported from source git
  31. # Aarch64 and ppc64le use lib64
  32. #Patch1: 0001-Aarch64-and-ppc64le-use-lib64.patch
  33. # Use more general default values in openssl.cnf
  34. Patch2: 0002-Use-more-general-default-values-in-openssl.cnf.patch
  35. # Do not install html docs
  36. Patch3: 0003-Do-not-install-html-docs.patch
  37. # Override default paths for the CA directory tree
  38. Patch4: 0004-Override-default-paths-for-the-CA-directory-tree.patch
  39. # apps/ca: fix md option help text
  40. Patch5: 0005-apps-ca-fix-md-option-help-text.patch
  41. # Disable signature verification with totally unsafe hash algorithms
  42. Patch6: 0006-Disable-signature-verification-with-totally-unsafe-h.patch
  43. # Add support for PROFILE=SYSTEM system default cipherlist
  44. Patch7: 0007-Add-support-for-PROFILE-SYSTEM-system-default-cipher.patch
  45. # Add FIPS_mode() compatibility macro
  46. Patch8: 0008-Add-FIPS_mode-compatibility-macro.patch
  47. # Add check to see if fips flag is enabled in kernel
  48. #Patch9: 0009-Add-Kernel-FIPS-mode-flag-support.patch
  49. # remove unsupported EC curves
  50. Patch11: 0011-Remove-EC-curves.patch
  51. # Disable explicit EC curves
  52. Patch12: 0012-Disable-explicit-ec.patch
  53. # Instructions to load legacy provider in openssl.cnf
  54. #Patch24: 0024-load-legacy-prov.patch
  55. # Selectively disallow SHA1 signatures rhbz#2070977
  56. Patch49: 0049-Allow-disabling-of-SHA1-signatures.patch
  57. # Backport of patch for RHEL for Edge rhbz #2027261
  58. Patch51: 0051-Support-different-R_BITS-lengths-for-KBKDF.patch
  59. # Support SHA1 in TLS in LEGACY crypto-policy (which is SECLEVEL=1)
  60. Patch52: 0052-Allow-SHA1-in-seclevel-1-if-rh-allow-sha1-signatures.patch
  61. # Instrument with USDT probes related to SHA-1 deprecation
  62. #Patch53: 0053-Add-SHA1-probes.patch
  63. # https://github.com/openssl/openssl/pull/18103
  64. # The patch is incorporated in 3.0.3 but we provide this function since 3.0.1
  65. # so the patch should persist
  66. Patch56: 0056-strcasecmp.patch
  67. # https://github.com/openssl/openssl/pull/18444
  68. #Patch58: 0058-replace-expired-certs.patch
  69. # drop test
  70. Patch1000: drop_bad_test.patch
  71. # security fix
  72. # none
  73. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  74. BuildRequires: perl, sed
  75. BuildRequires: zlib-devel, krb5-devel
  76. BuildRequires: lksctp-tools-devel
  77. Requires: mktemp
  78. Requires: ca-certificates
  79. Requires: %{name}-libs = %{version}-%{release}
  80. Obsoletes: openssl111 < 3.0.0
  81. %define solibbase %(echo %version | sed 's/[[:alpha:]]//g')
  82. %description
  83. The OpenSSL certificate management tool and the shared libraries that
  84. provide various cryptographic algorithms and protocols.
  85. %package libs
  86. Summary: A general purpose cryptography library with TLS implementation
  87. Group: system
  88. %description libs
  89. OpenSSL is a toolkit for supporting cryptography. The openssl-libs
  90. package contains the libraries that are used by various applications which
  91. support cryptographic algorithms and protocols.
  92. %package devel
  93. Summary: OpenSSL libraries and development headers.
  94. Group: programming
  95. Requires: %{name}-libs = %{version}-%{release}
  96. Requires: krb5-devel
  97. Conflicts: openssl111-devel < 3.0.0
  98. %description devel
  99. The static libraries and include files needed to compile apps
  100. with support for various the cryptographic algorithms and protocols
  101. supported by OpenSSL.
  102. Patches for many networking apps can be found at:
  103. ftp://ftp.psy.uq.oz.au/pub/Crypto/SSLapps/
  104. %package static
  105. Summary: Libraries for static linking of applications which will use OpenSSL
  106. Group: programming
  107. Requires: %{name}-devel = %{version}-%{release}
  108. Conflicts: openssl111-static < 3.0.0
  109. %description static
  110. OpenSSL is a toolkit for supporting cryptography. The openssl-static
  111. package contains static libraries needed for static linking of
  112. applications which support various cryptographic algorithms and
  113. protocols.
  114. %package perl
  115. Summary: OpenSSL scripts which require Perl.
  116. Group: security
  117. Requires: %{name}-libs = %{version}-%{release}
  118. Obsoletes: openssl111-perl < 3.0.0
  119. Requires: perl
  120. %description perl
  121. Perl scripts provided with OpenSSL for converting certificates and keys
  122. from other formats to those used by OpenSSL.
  123. ## to build compat32 for x86_64 architecture support
  124. %package -n compat32-%{name}
  125. Summary: Secure Sockets Layer Toolkit
  126. Group: system
  127. Requires: %{name} = %{version}-%{release}
  128. %description -n compat32-%{name}
  129. The OpenSSL certificate management tool and the shared libraries that
  130. provide various cryptographic algorithms and protocols.
  131. %package -n compat32-%{name}-devel
  132. Summary: OpenSSL libraries and development headers.
  133. Group: programming
  134. Requires: compat32-%{name} = %{version}-%{release}
  135. Requires: compat32-krb5-devel
  136. Conflicts: compat32-openssl111-devel < 3.0.0
  137. %description -n compat32-%{name}-devel
  138. The static libraries and include files needed to compile apps
  139. with support for various the cryptographic algorithms and protocols
  140. supported by OpenSSL.
  141. %debug_package
  142. %prep
  143. %setup -q -n %{name}-%{version}
  144. %autopatch -p1
  145. # The hobble_openssl is called here redundantly, just to be sure.
  146. # The tarball has already the sources removed.
  147. %{SOURCE1} > /dev/null
  148. cp %{SOURCE12} crypto/ec/
  149. cp %{SOURCE13} test/
  150. %build
  151. # Figure out which flags we want to use.
  152. # default
  153. sslarch=%{_os}-%{_target_cpu}
  154. #
  155. %ifarch %ix86
  156. sslarch=linux-elf
  157. if ! echo %{_target} | grep -q i686 ; then
  158. sslflags="no-asm 386"
  159. fi
  160. %endif
  161. %ifarch x86_64
  162. sslflags=enable-ec_nistp_64_gcc_128
  163. %endif
  164. # Add -Wa,--noexecstack here so that libcrypto's assembler modules will be
  165. # marked as not requiring an executable stack.
  166. # Also add -DPURIFY to make using valgrind with openssl easier as we do not
  167. # want to depend on the uninitialized memory as a source of entropy anyway.
  168. RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wa,--noexecstack -DPURIFY $RPM_LD_FLAGS"
  169. export HASHBANGPERL=/usr/bin/perl
  170. perl -pi -e 's|/engines-|/%{name}/engines-|' ./Configurations/unix-Makefile.tmpl
  171. # ia64, x86_64, ppc are OK by default
  172. # Configure the build tree. Override OpenSSL defaults with known-good defaults
  173. # usable on all platforms. The Configure script already knows to use -fPIC and
  174. # RPM_OPT_FLAGS, so we can skip specifiying them here.
  175. ./Configure \
  176. --prefix=%{_prefix} --openssldir=%{_sysconfdir}/pki/tls ${sslflags} \
  177. --system-ciphers-file=%{_sysconfdir}/crypto-policies/back-ends/openssl.config \
  178. zlib enable-camellia enable-seed enable-rfc3779 enable-sctp \
  179. enable-cms enable-md2 enable-rc5 enable-ktls enable-fips \
  180. no-mdc2 no-ec2m no-sm2 no-sm4 enable-buildtest-c++ \
  181. shared ${sslarch} $RPM_OPT_FLAGS '-DDEVRANDOM="\"/dev/urandom\""'
  182. # Do not run this in a production package the FIPS symbols must be patched-in
  183. #util/mkdef.pl crypto update
  184. make -s %{?_smp_mflags} all
  185. # Clean up the .pc files
  186. for i in libcrypto.pc libssl.pc openssl.pc ; do
  187. sed -i '/^Libs.private:/{s/-L[^ ]* //;s/-Wl[^ ]* //}' $i
  188. done
  189. %check
  190. # Verify that what was compiled actually works.
  191. # Hack - either enable SCTP AUTH chunks in kernel or disable sctp for check
  192. (sysctl net.sctp.addip_enable=1 && sysctl net.sctp.auth_enable=1) || \
  193. (echo 'Failed to enable SCTP AUTH chunks, disabling SCTP for tests...' &&
  194. sed '/"msan" => "default",/a\ \ "sctp" => "default",' configdata.pm > configdata.pm.new && \
  195. touch -r configdata.pm configdata.pm.new && \
  196. mv -f configdata.pm.new configdata.pm)
  197. # We must revert patch4 before tests otherwise they will fail
  198. patch -p1 -R < %{PATCH4}
  199. LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
  200. export LD_LIBRARY_PATH
  201. OPENSSL_ENABLE_MD5_VERIFY=
  202. export OPENSSL_ENABLE_MD5_VERIFY
  203. OPENSSL_SYSTEM_CIPHERS_OVERRIDE=xyz_nonexistent_file
  204. export OPENSSL_SYSTEM_CIPHERS_OVERRIDE
  205. make test HARNESS_JOBS=8
  206. %if 0
  207. # Add generation of HMAC checksum of the final stripped library
  208. %define __spec_install_post \
  209. %{?__debug_package:%{__debug_install_post}} \
  210. %{__arch_install_post} \
  211. %{__os_install_post} \
  212. %{nil}
  213. %endif
  214. %define __provides_exclude_from %{_libdir}/openssl
  215. %install
  216. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  217. # Install OpenSSL.
  218. install -d $RPM_BUILD_ROOT{/%{_lib},%{_bindir},%{_includedir},%{_libdir},%{_mandir},%{_libdir}/openssl,%{_pkgdocdir}}
  219. make DESTDIR=$RPM_BUILD_ROOT install
  220. mv $RPM_BUILD_ROOT%{_libdir}/lib*.so.%{soversion} $RPM_BUILD_ROOT/%{_lib}/
  221. rename so.%{soversion} so.%{version} $RPM_BUILD_ROOT/%{_lib}/*.so.%{soversion}
  222. for lib in $RPM_BUILD_ROOT/%{_lib}/*.so.%{version} ; do
  223. chmod 755 ${lib}
  224. ln -s -f ../../%{_lib}/`basename ${lib}` $RPM_BUILD_ROOT/%{_libdir}/`basename ${lib} .%{version}`
  225. ln -s -f `basename ${lib}` $RPM_BUILD_ROOT/%{_lib}/`basename ${lib} .%{version}`.%{soversion}
  226. done
  227. # Install a makefile for generating keys and self-signed certs, and a script
  228. # for generating them on the fly.
  229. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/certs
  230. install -m644 %{SOURCE2} $RPM_BUILD_ROOT%{_pkgdocdir}/Makefile.certificate
  231. install -m755 %{SOURCE6} $RPM_BUILD_ROOT%{_bindir}/make-dummy-cert
  232. install -m755 %{SOURCE7} $RPM_BUILD_ROOT%{_bindir}/renew-dummy-cert
  233. # Move runable perl scripts to bindir
  234. mv $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/misc/*.pl $RPM_BUILD_ROOT%{_bindir}
  235. mv $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/misc/tsget $RPM_BUILD_ROOT%{_bindir}
  236. # Rename man pages so that they don't conflict with other system man pages.
  237. pushd $RPM_BUILD_ROOT%{_mandir}
  238. mv man5/config.5ossl man5/openssl.cnf.5
  239. popd
  240. mkdir -m755 $RPM_BUILD_ROOT%{_sysconfdir}/pki/CA
  241. mkdir -m700 $RPM_BUILD_ROOT%{_sysconfdir}/pki/CA/private
  242. mkdir -m755 $RPM_BUILD_ROOT%{_sysconfdir}/pki/CA/certs
  243. mkdir -m755 $RPM_BUILD_ROOT%{_sysconfdir}/pki/CA/crl
  244. mkdir -m755 $RPM_BUILD_ROOT%{_sysconfdir}/pki/CA/newcerts
  245. # Ensure the config file timestamps are identical across builds to avoid
  246. # mulitlib conflicts and unnecessary renames on upgrade
  247. touch -r %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/openssl.cnf
  248. touch -r %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/ct_log_list.cnf
  249. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/openssl.cnf.dist
  250. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/ct_log_list.cnf.dist
  251. %ifarch i686
  252. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pki/tls/fipsmodule.cnf
  253. %endif
  254. # Determine which arch opensslconf.h is going to try to #include.
  255. basearch=%{_arch}
  256. %ifarch %{ix86}
  257. basearch=i386
  258. %endif
  259. # Next step of gradual disablement of SSL3.
  260. # Make SSL3 disappear to newly built dependencies.
  261. sed -i '/^\#ifndef OPENSSL_NO_SSL_TRACE/i\
  262. #ifndef OPENSSL_NO_SSL3\
  263. # define OPENSSL_NO_SSL3\
  264. #endif' $RPM_BUILD_ROOT/%{_prefix}/include/openssl/opensslconf.h
  265. %ifarch %{multilib_arches}
  266. # Do an opensslconf.h switcheroo to avoid file conflicts on systems where you
  267. # can have both a 32- and 64-bit version of the library, and they each need
  268. # their own correct-but-different versions of opensslconf.h to be usable.
  269. install -m644 %{SOURCE10} \
  270. $RPM_BUILD_ROOT/%{_prefix}/include/openssl/configuration-${basearch}.h
  271. cat $RPM_BUILD_ROOT/%{_prefix}/include/openssl/configuration.h >> \
  272. $RPM_BUILD_ROOT/%{_prefix}/include/openssl/configuration-${basearch}.h
  273. install -m644 %{SOURCE9} \
  274. $RPM_BUILD_ROOT/%{_prefix}/include/openssl/configuration.h
  275. %endif
  276. %clean
  277. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  278. %files
  279. %defattr(-,root,root)
  280. %{!?_licensedir:%global license %%doc}
  281. %license LICENSE.txt
  282. %doc NEWS.md README.md
  283. %{_pkgdocdir}/Makefile.certificate
  284. %{_bindir}/make-dummy-cert
  285. %{_bindir}/renew-dummy-cert
  286. %{_bindir}/openssl
  287. %dir %{_mandir}/man1*
  288. %{_mandir}/man1*/*
  289. %dir %{_mandir}/man5*
  290. %{_mandir}/man5*/*
  291. %dir %{_mandir}/man7*
  292. %{_mandir}/man7*/*
  293. %exclude %{_mandir}/man1/*.pl*
  294. %exclude %{_mandir}/man1/tsget*
  295. %files libs
  296. %{!?_licensedir:%global license %%doc}
  297. %license LICENSE.txt
  298. %dir %{_sysconfdir}/pki/tls
  299. %dir %{_sysconfdir}/pki/tls/certs
  300. %dir %{_sysconfdir}/pki/tls/misc
  301. %dir %{_sysconfdir}/pki/tls/private
  302. %config(noreplace) %{_sysconfdir}/pki/tls/openssl.cnf
  303. %config(noreplace) %{_sysconfdir}/pki/tls/ct_log_list.cnf
  304. %attr(0755,root,root) /%{_lib}/libcrypto.so.%{version}
  305. /%{_lib}/libcrypto.so.%{soversion}
  306. %attr(0755,root,root) /%{_lib}/libssl.so.%{version}
  307. /%{_lib}/libssl.so.%{soversion}
  308. %attr(0755,root,root) %{_libdir}/%{name}/engines-%{soversion}
  309. %attr(0755,root,root) %{_libdir}/ossl-modules
  310. %ifnarch i686
  311. %config(noreplace) %{_sysconfdir}/pki/tls/fipsmodule.cnf
  312. %endif
  313. %files devel
  314. %doc CHANGES.md doc/dir-locals.example.el doc/openssl-c-indent.el
  315. %{_prefix}/include/openssl
  316. %exclude %{_libdir}/lib*.a
  317. %{_libdir}/*.so
  318. %attr(0644,root,root) %{_libdir}/pkgconfig/*.pc
  319. %dir %{_mandir}/man3*
  320. %{_mandir}/man3*/*
  321. %files static
  322. %defattr(-,root,root)
  323. %attr(0644,root,root) %{_libdir}/*.a
  324. %files perl
  325. %defattr(-,root,root)
  326. %{_bindir}/c_rehash
  327. %{_bindir}/*.pl
  328. %{_bindir}/tsget
  329. %{_mandir}/man1*/*.pl*
  330. %{_mandir}/man1*/tsget*
  331. %dir %{_sysconfdir}/pki/CA
  332. %dir %{_sysconfdir}/pki/CA/private
  333. %dir %{_sysconfdir}/pki/CA/certs
  334. %dir %{_sysconfdir}/pki/CA/crl
  335. %dir %{_sysconfdir}/pki/CA/newcerts
  336. ## to build compat32 for x86_64 architecture support
  337. %if %{build_compat32}
  338. %files -n compat32-%{name}
  339. %defattr(-,root,root)
  340. %attr(0755,root,root) /%{_lib}/*.so.*
  341. %files -n compat32-%{name}-devel
  342. %defattr(-,root,root)
  343. %exclude %{_libdir}/lib*.a
  344. %attr(0755,root,root) %{_libdir}/*.so
  345. %attr(0644,root,root) %{_libdir}/pkgconfig/*.pc
  346. %endif
  347. %changelog
  348. * Wed Nov 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.7-1
  349. - new upstream release.
  350. * Wed Oct 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.6-1
  351. - new upstream release.
  352. * Wed Jul 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.5-1
  353. - new upstream release.
  354. * Wed Jun 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.4-1
  355. - new upstream release.
  356. * Wed Mar 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.2-1
  357. - new upstream release.
  358. * Wed Dec 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.1-1
  359. - new upstream release.
  360. * Thu Sep 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.0-1
  361. - new upstream release.
  362. * Wed Aug 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1l-1
  363. - new upstream release.
  364. * Fri Mar 26 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1k-1
  365. - new upstream release.
  366. - dropped ldconfig scriptlets.
  367. * Wed Feb 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1j-1
  368. - new upstream release.
  369. * Wed Dec 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1i-1
  370. - new upstream release.
  371. * Sat Nov 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1h-1
  372. - new upstream release.
  373. - dropped Patch43: fixed in upstream.
  374. - imported Patch55-70 from rawhide.
  375. - updated Source13.
  376. * Sat Apr 25 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1g-1
  377. - new upstream release.
  378. * Wed Apr 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1f-1
  379. - new upstream release.
  380. - updated Patch1.
  381. - dropped Patch54: fixed in upstream.
  382. * Wed Mar 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1e-1
  383. - new upstream release.
  384. - dropped Patch100 and 1000: fixed in upstream.
  385. * Fri Dec 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1d-2
  386. - imported Patch1000 from upstream.
  387. * Fri Sep 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1d-1
  388. - new upstream release.
  389. - updated Source12 and 13.
  390. - updated all patches.
  391. - imported Patch100 from upstream.
  392. * Sat Aug 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1c-1
  393. - new upstream release.
  394. - updated Patch37 and 41.
  395. - imported Patch52-54 from rawhide.
  396. * Mon May 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1b-2
  397. - fixed openssl.cnf
  398. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1b-1
  399. - new upstream release.
  400. - imported Patch36 from rawhide.
  401. - updated Patch32.
  402. * Sat Dec 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1a-1
  403. - new upstream release.
  404. - updated Patch2.
  405. - dropped Patch36 and 46: fixed in upstream.
  406. * Thu Nov 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1-2
  407. - fixed symlinks.
  408. * Thu Nov 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1-1
  409. - new upstream release (newest LTS version).
  410. - imported fedora stuff (except FIPS).
  411. * Sun Apr 1 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 1.0.2o-1
  412. - new upstream release with security fixes
  413. * Sun Jan 21 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.2n-1
  414. - new upstream release with security fixes
  415. * Wed Nov 15 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.2m-1
  416. - new upstream release with security fixes
  417. * Sun Jan 29 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 1.0.2k-1
  418. - new upstream release with security fixes
  419. * Thu May 5 2016 IWAI, Masaharu <iwaim.sub@gmail.com> 1.0.2h-1
  420. - new upstream release with security fixes
  421. * Wed Mar 9 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.2g-1
  422. - new upstream release 1.0.2 with security fixes
  423. - Patch2 is merged into Patch0
  424. * Mon Dec 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1q-1
  425. - new upstream release with security fixes
  426. * Fri Jul 10 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1p-1
  427. - new upstream release with security fixes
  428. * Wed Jul 1 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1o-1
  429. - new upstream release
  430. * Sun Apr 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1m-1
  431. - merged into Vine6
  432. * Fri Mar 20 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1m-1
  433. - new upstream release with security fixes
  434. - update Patch2,5
  435. * Mon Jan 12 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1k-1
  436. - new upstream release with security fixes
  437. * Mon Oct 20 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1j-1
  438. - new upstream release with security fixes
  439. - add patch8 from fc21 (fix perl find.pl)
  440. * Fri Jun 6 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.0.1h-1
  441. - new upstream release with security fixes.
  442. * Tue Apr 8 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1g-1
  443. - new upstream release with security fixes
  444. * Thu Jan 9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.1f-1
  445. - new upstream release with security fixes
  446. * Tue Sep 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1e-2
  447. - move root CA bundle to ca-certificates package
  448. * Tue Feb 12 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1e-1
  449. - update to 1.0.1e
  450. - 1.0.1d has major regressions from 1.0.1c
  451. * Sat Feb 9 2013 IWAI, Masaharu <iwai@alib.jp> 1.0.1d-2
  452. - remove tsget script to delete dependency perl(WWW::Curl::Easy)
  453. - openssl-perl package contains it in docdir
  454. * Fri Feb 08 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.0.1d-1
  455. - new upstream release with security fix (CVE-2012-2686, CVE-2013-0166, 0169)
  456. - fixed %%files
  457. * Tue May 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1c-1
  458. - update to 1.0.1c
  459. - enable configure options:
  460. enable-camellia enable-seed enable-tlsext enable-rfc3779
  461. enable-cms enable-md2
  462. - remove no-asm option from ai64/x86_64/ppc/ppc64/i686
  463. - generate a table with the compile settings before configure
  464. * Fri Jan 20 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0g-1
  465. - new upstream release with security fix (CVE-2012-0050)
  466. * Fri Jan 6 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0f-1
  467. - new upstream release with security fix
  468. (CVE-2011-4108,09, CVE-2011-4576,77, CVE-2011-4619, CVE-2012-0027)
  469. * Wed Sep 7 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0e-1
  470. - new upstream release with security fix (CVE-2011-3207, 3210)
  471. * Sun Mar 20 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0d-2
  472. - rebuild with krb5-libs 1.8
  473. * Fri Feb 11 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0d-1
  474. - new upstream release with security fix
  475. * Sat Jan 15 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0c-4
  476. - use upstream openssl.pc instead of vine original one (SOURCE6)
  477. * Sun Jan 9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0c-3
  478. - move tsget to docs to delete dependency perl(WWW::Curl::Easy)
  479. * Sat Jan 1 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0c-2
  480. - add R: krb5-devel into devel pkg
  481. - add R: compat32-krb5-devel into compat32-devel pkg
  482. * Fri Dec 31 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0c-1
  483. - new upstream release 1.0.0x
  484. - separate static libs into static package
  485. - change configure options
  486. - change so version 10
  487. - add tsget into perl package
  488. - update all patches
  489. * Thu Dec 30 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8q-2
  490. - fix changelog typo...
  491. * Tue Dec 7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8q-1
  492. - new upstream release with security fix (CVE-2010-4180)
  493. * Wed Nov 17 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8p-1
  494. - new upstream release with security fix (CVE-2010-3864)
  495. - drop patches included in new release
  496. - update patch4
  497. * Sun Jan 17 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8k-5
  498. - add patch12 for fix CVE-2009-3555 (renegotiation)
  499. * Fri Jan 15 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8k-4
  500. - add patch11 for fix CVE-2009-4355 (memory leak)
  501. * Tue Jun 23 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8k-3
  502. - add patch10 to fix CVE-2009-1377, 78, 79 (from fc11)
  503. * Mon Jun 22 2009 NAKAMURA Kenta <kenta@vinelinux.org> 0.9.8k-2
  504. - removed unnecessary %%if %{build_compat32} statements
  505. - removed lib*.a from devel package
  506. * Mon Mar 30 2009 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8k-1
  507. - new upstream release with security fix (CVE-2000-0590,0591,0789)
  508. * Sun Jan 11 2009 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8j-1
  509. - new upstream release with security fix (CVE-2008-5077)
  510. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.8i-1
  511. - new upstream release
  512. * Sat Jul 12 2008 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.8h-1
  513. - new upstream release
  514. - new versioning policy
  515. * Sat Oct 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.8g-0vl1
  516. - new upstream release
  517. - drop patch10,20 which is merged in upstream
  518. * Fri Sep 28 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.9.8e-0vl3
  519. - add security patch in advance for CVE-2007-5135
  520. http://www.securityfocus.com/archive/1/archive/1/480855/100/0/threaded
  521. http://marc.info/?l=openssl-cvs&m=119020417919619&w=2
  522. * Fri Aug 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.9.8e-0vl2
  523. - add security patch for CVE-2007-3108
  524. (http://openssl.org/news/patch-CVE-2007-3108.txt)
  525. * Tue May 15 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.8e-0vl1
  526. - new upstream release
  527. * Sun Dec 24 2006 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.7l-0vl2
  528. - update (fix) openssl.pc <BTS:437>
  529. * Fri Sep 29 2006 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.7l-0vl1
  530. - new upstream release (with security fix)
  531. * Mon Sep 11 2006 Satosh IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.9.7k-0vl1
  532. - new upstream release
  533. - add patch2 to use RPM_OPT macro
  534. * Mon Feb 06 2006 Shu KONNO <owa@bg.wakwak.com> 0.9.7i-0vl3
  535. - moved macros _lib to /usr/lib/rpm/rpmrc or macros files
  536. * Fri Feb 03 2006 Shu KONNO <owa@bg.wakwak.com> 0.9.7i-0vl2
  537. - added compat32-* packages for x86_64 architecture support
  538. - added openssl-0.9.7i.Configure-compat32.patch
  539. - changed '/lib' to '/%{_lib}'
  540. * Mon Oct 17 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.7i-0vl1
  541. - new upstream release
  542. * Mon Jan 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.7d-0vl4
  543. - rebuild on VineSeed
  544. * Sun Jan 09 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 0.9.7d-0vl3.1
  545. - added a security patch from Gentoo.
  546. - Patch1: openssl-0.9.7c-tempfile.patch
  547. * Sun Mar 28 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.9.7d-0vl3
  548. - sslarch for ppc was missing... added.
  549. * Fri Mar 26 2004 Tomoya TAKA <taka@vinelinux.org> 0.9.7d-0vl2
  550. - use sslarch=linux-alpha-gcc instead of alpha-gcc
  551. * Mon Mar 22 2004 Satoshi MACHINO <machino@vinelinux.org> 0.9.7d-0vl1
  552. - new upstream version
  553. - clean up of spec file
  554. -- removed old patches
  555. * Sat Mar 20 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6m-0vl1
  556. - new upstream release
  557. - SECURITY fix.
  558. - http://www.openssl.org/news/secadv_20040317.txt
  559. * Wed Oct 1 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6k-0vl1
  560. - new upstream release
  561. - [Security fix]
  562. - Vulnerabilities in ASN.1 parsing
  563. http://www.openssl.org/news/secadv_20030930.txt
  564. - see %{_docdir}/%{name}-%{version}/CHANGES for other changes
  565. * Wed Jun 04 2003 HOTTA Michihide <hotta@net-newbie.com> 0.9.6j-0vl2
  566. - add openssl.pc for pkgconfig
  567. * Tue Mar 11 2003 Satoshi MACHINO <machino@vinelinux.org> 0.9.6j-0vl1
  568. - New upstream version
  569. - dropped patch10, 11
  570. -- merged upstream version
  571. * Sun Feb 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6i-0vl1
  572. - rebuild for VineSeed
  573. * Sun Feb 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6i-0vl0.26.1
  574. - [Security Fix]
  575. - Timing-based attacks on RSA keys
  576. http://www.openssl.org/news/secadv_20030317.txt
  577. - Klima-Pokorny0Rosa attack on RSA in SSL/TLS
  578. http://www.openssl.org/news/secadv_20030317.txt
  579. * Sun Feb 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6i-0vl0.26
  580. - new upstream release 0.9.6i
  581. - [Security Fix]
  582. - build for Vine Linux 2.6 errata
  583. * Mon Nov 18 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6h-0vl1
  584. - new upstream release 0.9.6h
  585. * Mon Nov 18 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6g-0vl1
  586. - new upstream release 0.9.6g
  587. * Mon Oct 28 2002 IWAI Masaharu <iwai@alib.jp> 0.9.6b-1vl6
  588. - SECURITY: CAN-2002-0659 fixed
  589. - added Patch101 from RedHat 7.2 updates 0.9.6b-28
  590. * Fri Aug 02 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.6b-28
  591. - update asn patch to fix accidental reversal of a logic check
  592. * Thu Aug 01 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.6b-27
  593. - update asn patch to reduce chance that compiler optimization will remove
  594. one of the added tests
  595. * Thu Aug 01 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.6b-26
  596. - rebuild
  597. * Tue Jul 30 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.6b-25
  598. - add patch to fix ASN.1 vulnerabilities
  599. * Wed Jul 31 2002 IWAI Masaharu <iwai@alib.jp> 0.9.6b-1vl5
  600. - rename spec file name
  601. - SECURITY: CA-2002-23 fixed
  602. - added Patch100 from RedHat 7.2 updates 0.9.6b-24
  603. * Thu Jul 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.9.6b-24
  604. - add backport of Ben Laurie's patches for OpenSSL 0.9.6d
  605. * Mon Sep 10 2001 Satoshi MACHINO <machino@vinelinux.org> 0.9.6b-1vl4
  606. - added ${PATH} in LD_LIBRARY_PATH
  607. - added install -m 755 *.so.* $RPM_BUILD_ROOT%{_libdir} in %install
  608. * Sun Jul 15 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6b-1vl3
  609. - remove --no-<cipher>
  610. * Sun Jul 15 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6b-1vl2
  611. - add Patch10 for mipsel shared ( Configure )
  612. * Sat Jul 14 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.6b-1vl1
  613. - build for Vine Linux
  614. - use openssl-engine-0.9.6b.tar.gz
  615. * Wed Jul 11 2001 Nalin Dahyabhai <nalin@redhat.com>
  616. - update to 0.9.6b
  617. * Thu Jul 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  618. - move .so symlinks back to %%{_libdir}
  619. * Tue Jul 3 2001 Nalin Dahyabhai <nalin@redhat.com>
  620. - move shared libraries to /lib (#38410)
  621. * Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
  622. - switch to engine code base
  623. * Mon Jun 18 2001 Nalin Dahyabhai <nalin@redhat.com>
  624. - add a script for creating dummy certificates
  625. - move man pages from %%{_mandir}/man?/foo.?ssl to %%{_mandir}/man?ssl/foo.?
  626. * Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  627. - add s390x support
  628. * Fri Jun 1 2001 Nalin Dahyabhai <nalin@redhat.com>
  629. - change two memcpy() calls to memmove()
  630. - don't define L_ENDIAN on alpha
  631. * Tue May 15 2001 Nalin Dahyabhai <nalin@redhat.com>
  632. - make subpackages depend on the main package
  633. * Tue May 1 2001 Nalin Dahyabhai <nalin@redhat.com>
  634. - adjust the hobble script to not disturb symlinks in include/ (fix from
  635. Joe Orton)
  636. * Thu Apr 26 2001 Nalin Dahyabhai <nalin@redhat.com>
  637. - drop the m2crypo patch we weren't using
  638. * Tue Apr 24 2001 Nalin Dahyabhai <nalin@redhat.com>
  639. - configure using "shared" as well
  640. * Sun Apr 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  641. - update to 0.9.6a
  642. - use the build-shared target to build shared libraries
  643. - bump the soversion to 2 because we're no longer compatible with
  644. our 0.9.5a packages or our 0.9.6 packages
  645. - drop the patch for making rsatest a no-op when rsa null support is used
  646. - put all man pages into <section>ssl instead of <section>
  647. - break the m2crypto modules into a separate package
  648. * Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
  649. - use BN_LLONG on s390
  650. * Mon Mar 12 2001 Nalin Dahyabhai <nalin@redhat.com>
  651. - fix the s390 changes for 0.9.6 (isn't supposed to be marked as 64-bit)
  652. * Sat Mar 3 2001 Nalin Dahyabhai <nalin@redhat.com>
  653. - move c_rehash to the perl subpackage, because it's a perl script now
  654. * Fri Mar 2 2001 Nalin Dahyabhai <nalin@redhat.com>
  655. - update to 0.9.6
  656. - enable MD2
  657. - use the libcrypto.so and libssl.so targets to build shared libs with
  658. - bump the soversion to 1 because we're no longer compatible with any of
  659. the various 0.9.5a packages circulating around, which provide lib*.so.0
  660. * Wed Feb 28 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  661. - change hobble-openssl for disabling MD2 again
  662. * Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com>
  663. - re-disable MD2 -- the EVP_MD_CTX structure would grow from 100 to 152
  664. bytes or so, causing EVP_DigestInit() to zero out stack variables in
  665. apps built against a version of the library without it
  666. * Mon Feb 26 2001 Nalin Dahyabhai <nalin@redhat.com>
  667. - disable some inline assembly, which on x86 is Pentium-specific
  668. - re-enable MD2 (see http://www.ietf.org/ietf/IPR/RSA-MD-all)
  669. * Thu Feb 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  670. - fix s390 patch
  671. * Fri Dec 8 2000 Than Ngo <than@redhat.com>
  672. - added support s390
  673. * Mon Nov 20 2000 Nalin Dahyabhai <nalin@redhat.com>
  674. - remove -Wa,* and -m* compiler flags from the default Configure file (#20656)
  675. - add the CA.pl man page to the perl subpackage
  676. * Thu Nov 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  677. - always build with -mcpu=ev5 on alpha
  678. * Tue Oct 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  679. - add a symlink from cert.pem to ca-bundle.crt
  680. * Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com>
  681. - add a ca-bundle file for packages like Samba to reference for CA certificates
  682. * Tue Oct 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  683. - remove libcrypto's crypt(), which doesn't handle md5crypt (#19295)
  684. * Mon Oct 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  685. - add unzip as a buildprereq (#17662)
  686. - update m2crypto to 0.05-snap4
  687. * Tue Sep 26 2000 Bill Nottingham <notting@redhat.com>
  688. - fix some issues in building when it's not installed
  689. * Wed Sep 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  690. - make sure the headers we include are the ones we built with (aaaaarrgh!)
  691. * Fri Sep 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  692. - add Richard Henderson's patch for BN on ia64
  693. - clean up the changelog
  694. * Tue Aug 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  695. - fix the building of python modules without openssl-devel already installed
  696. * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
  697. - byte-compile python extensions without the build-root
  698. - adjust the makefile to not remove temporary files (like .key files when
  699. building .csr files) by marking them as .PRECIOUS
  700. * Sat Aug 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  701. - break out python extensions into a subpackage
  702. * Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  703. - tweak the makefile some more
  704. * Tue Jul 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  705. - disable MD2 support
  706. * Thu Jul 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  707. - disable MDC2 support
  708. * Sun Jul 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  709. - tweak the disabling of RC5, IDEA support
  710. - tweak the makefile
  711. * Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  712. - strip binaries and libraries
  713. - rework certificate makefile to have the right parts for Apache
  714. * Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  715. - use %%{_perl} instead of /usr/bin/perl
  716. - disable alpha until it passes its own test suite
  717. * Fri Jun 9 2000 Nalin Dahyabhai <nalin@redhat.com>
  718. - move the passwd.1 man page out of the passwd package's way
  719. * Fri Jun 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  720. - update to 0.9.5a, modified for U.S.
  721. - add perl as a build-time requirement
  722. - move certificate makefile to another package
  723. - disable RC5, IDEA, RSA support
  724. - remove optimizations for now
  725. * Wed Mar 1 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  726. - Bero told me to move the Makefile into this package
  727. * Wed Mar 1 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  728. - add lib*.so symlinks to link dynamically against shared libs
  729. * Tue Feb 29 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  730. - update to 0.9.5
  731. - run ldconfig directly in post/postun
  732. - add FAQ
  733. * Sat Dec 18 1999 Bernhard Rosenkrdnzer <bero@redhat.de>
  734. - Fix build on non-x86 platforms
  735. * Fri Nov 12 1999 Bernhard Rosenkrdnzer <bero@redhat.de>
  736. - move /usr/share/ssl/* from -devel to main package
  737. * Tue Oct 26 1999 Bernhard Rosenkrdnzer <bero@redhat.de>
  738. - inital packaging
  739. - changes from base:
  740. - Move /usr/local/ssl to /usr/share/ssl for FHS compliance
  741. - handle RPM_OPT_FLAGS