auto-import changelog data from openssl-0.9.5a-17.src.rpm

Tue Sep 26 2000 Bill Nottingham <notting@redhat.com>
- fix some issues in building when it's not installed
This commit is contained in:
cvsdist 2004-09-09 09:35:12 +00:00
parent e21e1846a7
commit def39f16e5

View File

@ -4,7 +4,7 @@
Summary: Secure Sockets Layer Toolkit Summary: Secure Sockets Layer Toolkit
Name: openssl Name: openssl
Version: 0.9.5a Version: 0.9.5a
Release: 14 Release: 17
Source: openssl-%{version}-usa.tar.bz2 Source: openssl-%{version}-usa.tar.bz2
Source1: hobble-openssl Source1: hobble-openssl
Source2: Makefile.certificate Source2: Makefile.certificate
@ -14,6 +14,7 @@ Patch0: openssl-0.9.5-redhat.patch
Patch1: openssl-0.9.5-rsanull.patch Patch1: openssl-0.9.5-rsanull.patch
Patch2: openssl-0.9.5a-64.patch Patch2: openssl-0.9.5a-64.patch
Patch3: openssl-0.9.5a-defaults.patch Patch3: openssl-0.9.5a-defaults.patch
Patch4: openssl-0.9.5a-ia64.patch
Copyright: BSDish Copyright: BSDish
Group: System Environment/Libraries Group: System Environment/Libraries
URL: http://www.openssl.org/ URL: http://www.openssl.org/
@ -64,6 +65,7 @@ This package allows you to call OpenSSL functions from python scripts.
%patch2 -p1 %patch2 -p1
%endif %endif
%patch3 -p1 %patch3 -p1
%patch4 -p1
# Extract what we need for building extensions. # Extract what we need for building extensions.
gzip -dc %{SOURCE3} | tar xf - gzip -dc %{SOURCE3} | tar xf -
@ -140,10 +142,11 @@ popd
# Build the python extensions. # Build the python extensions.
pushd m2crypto-%{m2crypto_version}/swig pushd m2crypto-%{m2crypto_version}/swig
export PATH=`pwd`/../../bin:$PATH
make \ make \
INCLUDE=-I. -I../../include \ INCLUDE="-I. -I../../include" \
LIBS="-L${TOPDIR} -lssl -lcrypto -lc" \ LIBS="-L${TOPDIR} -lssl -lcrypto -lc" \
PYINCLUDE="-DHAVE_CONFIG_H -I/usr/include/python1.5 -I/usr/lib/python1.5/config" PYINCLUDE="-DHAVE_CONFIG_H -I/usr/include/python1.5 -I/usr/lib/python1.5/config" \
PYLIB=/usr/lib/python1.5/config PYLIB=/usr/lib/python1.5/config
cd ../doc cd ../doc
sh -x go sh -x go
@ -167,6 +170,13 @@ install -m644 $RPM_SOURCE_DIR/Makefile.certificate $RPM_BUILD_ROOT%{_datadir}/ss
strip $RPM_BUILD_ROOT%{_bindir}/* ||: strip $RPM_BUILD_ROOT%{_bindir}/* ||:
strip -g $RPM_BUILD_ROOT%{_libdir}/lib* ||: strip -g $RPM_BUILD_ROOT%{_libdir}/lib* ||:
# Make sure we actually include the headers we built against.
for header in $RPM_BUILD_ROOT%{_includedir}/openssl/* ; do
if [ -f ${header} -a -f include/openssl/$(basename ${header}) ] ; then
install -m644 include/openssl/`basename ${header}` ${header}
fi
done
# Fudge this. # Fudge this.
mv $RPM_BUILD_ROOT%{_mandir}/man1/passwd.1 $RPM_BUILD_ROOT%{_mandir}/man1/sslpasswd.1 mv $RPM_BUILD_ROOT%{_mandir}/man1/passwd.1 $RPM_BUILD_ROOT%{_mandir}/man1/sslpasswd.1
mv $RPM_BUILD_ROOT%{_mandir}/man3/rand.3 $RPM_BUILD_ROOT%{_mandir}/man3/sslrand.3 mv $RPM_BUILD_ROOT%{_mandir}/man3/rand.3 $RPM_BUILD_ROOT%{_mandir}/man3/sslrand.3
@ -230,24 +240,57 @@ popd
%postun -p /sbin/ldconfig %postun -p /sbin/ldconfig
%changelog %changelog
* Thu Sep 21 2000 Nalin Dahyabhai <nalin@redhat.com> * Tue Sep 26 2000 Bill Nottingham <notting@redhat.com>
- tweak the makefile some more - fix some issues in building when it's not installed
- disable MD2 support
- disable MDC2 support * Wed Sep 6 2000 Nalin Dahyabhai <nalin@redhat.com>
- tweak the makefile - make sure the headers we include are the ones we built with (aaaaarrgh!)
- rework certificate makefile to have the right parts for Apache
- strip binaries and libraries * Fri Sep 1 2000 Nalin Dahyabhai <nalin@redhat.com>
- enable actual RSA support - add Richard Henderson's patch for BN on ia64
- use %{__perl} instead of /usr/bin/perl - clean up the changelog
- move the passwd.1 man page out of the passwd package's way
- update to 0.9.5a, modified for U.S. * Tue Aug 29 2000 Nalin Dahyabhai <nalin@redhat.com>
- add perl as a build-time requirement - fix the building of python modules without openssl-devel already installed
- disable RC5, IDEA support
- break out python extensions * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
- byte-compile python extensions without the build-root - byte-compile python extensions without the build-root
- adjust the makefile to not remove temporary files (like .key files when - adjust the makefile to not remove temporary files (like .key files when
building .csr files) building .csr files) by marking them as .PRECIOUS
- fix the building of python modules without openssl-devel already installed
* Sat Aug 19 2000 Nalin Dahyabhai <nalin@redhat.com>
- break out python extensions into a subpackage
* Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
- tweak the makefile some more
* Tue Jul 11 2000 Nalin Dahyabhai <nalin@redhat.com>
- disable MD2 support
* Thu Jul 6 2000 Nalin Dahyabhai <nalin@redhat.com>
- disable MDC2 support
* Sun Jul 2 2000 Nalin Dahyabhai <nalin@redhat.com>
- tweak the disabling of RC5, IDEA support
- tweak the makefile
* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
- strip binaries and libraries
- rework certificate makefile to have the right parts for Apache
* Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
- use %%{_perl} instead of /usr/bin/perl
- disable alpha until it passes its own test suite
* Fri Jun 9 2000 Nalin Dahyabhai <nalin@redhat.com>
- move the passwd.1 man page out of the passwd package's way
* Fri Jun 2 2000 Nalin Dahyabhai <nalin@redhat.com>
- update to 0.9.5a, modified for U.S.
- add perl as a build-time requirement
- move certificate makefile to another package
- disable RC5, IDEA, RSA support
- remove optimizations for now
* Wed Mar 1 2000 Florian La Roche <Florian.LaRoche@redhat.de> * Wed Mar 1 2000 Florian La Roche <Florian.LaRoche@redhat.de>
- Bero told me to move the Makefile into this package - Bero told me to move the Makefile into this package