public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: cvsdist <cvsdist@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/openssl] rebase_40beta: auto-import changelog data from openssl-0.9.5a-17.src.rpm
Date: Tue, 09 Jun 2026 12:41:47 GMT [thread overview]
Message-ID: <178100890787.1.8154073409484882676.rpms-openssl-def39f16e57c@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/openssl
Branch : rebase_40beta
Commit : def39f16e57cc18ad171ee0e69cc667cf9240669
Author : cvsdist <cvsdist@fedoraproject.org>
Date : 2004-09-09T09:35:12+00:00
Stats : +56/-13 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/openssl/c/def39f16e57cc18ad171ee0e69cc667cf9240669?branch=rebase_40beta
Log:
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
---
diff --git a/openssl.spec b/openssl.spec
index b9ba350..42bbcd6 100644
--- a/openssl.spec
+++ b/openssl.spec
@@ -4,7 +4,7 @@
Summary: Secure Sockets Layer Toolkit
Name: openssl
Version: 0.9.5a
-Release: 14
+Release: 17
Source: openssl-%{version}-usa.tar.bz2
Source1: hobble-openssl
Source2: Makefile.certificate
@@ -14,6 +14,7 @@ Patch0: openssl-0.9.5-redhat.patch
Patch1: openssl-0.9.5-rsanull.patch
Patch2: openssl-0.9.5a-64.patch
Patch3: openssl-0.9.5a-defaults.patch
+Patch4: openssl-0.9.5a-ia64.patch
Copyright: BSDish
Group: System Environment/Libraries
URL: http://www.openssl.org/
@@ -64,6 +65,7 @@ This package allows you to call OpenSSL functions from python scripts.
%patch2 -p1
%endif
%patch3 -p1
+%patch4 -p1
# Extract what we need for building extensions.
gzip -dc %{SOURCE3} | tar xf -
@@ -140,10 +142,11 @@ popd
# Build the python extensions.
pushd m2crypto-%{m2crypto_version}/swig
+export PATH=`pwd`/../../bin:$PATH
make \
- INCLUDE=-I. -I../../include \
+ INCLUDE="-I. -I../../include" \
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
cd ../doc
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 -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.
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
@@ -230,24 +240,57 @@ popd
%postun -p /sbin/ldconfig
%changelog
-* Thu Sep 21 2000 Nalin Dahyabhai <nalin@redhat.com>
+* Tue Sep 26 2000 Bill Nottingham <notting@redhat.com>
+- fix some issues in building when it's not installed
+
+* Wed Sep 6 2000 Nalin Dahyabhai <nalin@redhat.com>
+- make sure the headers we include are the ones we built with (aaaaarrgh!)
+
+* Fri Sep 1 2000 Nalin Dahyabhai <nalin@redhat.com>
+- add Richard Henderson's patch for BN on ia64
+- clean up the changelog
+
+* Tue Aug 29 2000 Nalin Dahyabhai <nalin@redhat.com>
+- fix the building of python modules without openssl-devel already installed
+
+* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
+- byte-compile python extensions without the build-root
+- adjust the makefile to not remove temporary files (like .key files when
+ building .csr files) by marking them as .PRECIOUS
+
+* 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
-- rework certificate makefile to have the right parts for Apache
+
+* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
- strip binaries and libraries
-- enable actual RSA support
-- use %{__perl} instead of /usr/bin/perl
+- 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
-- disable RC5, IDEA support
-- break out python extensions
-- byte-compile python extensions without the build-root
-- adjust the makefile to not remove temporary files (like .key files when
- building .csr files)
-- fix the building of python modules without openssl-devel already installed
+- 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>
- Bero told me to move the Makefile into this package
reply other threads:[~2026-06-09 12:41 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178100890787.1.8154073409484882676.rpms-openssl-def39f16e57c@fedoraproject.org \
--to=cvsdist@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox