openssl-vl.spec 32 KB

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