ae7b05e
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
cvsdist 50f04da
a57c80d
# Keep this value in sync with the definition in openssl.spec.
ae7b05e
%global multilib_arches %{ix86} ia64 ppc ppc64 s390 s390x x86_64 sparc sparcv9 sparc64
a57c80d
496d958
Summary: Support for using OpenSSL in python scripts
cvsdist 50f04da
Name: m2crypto
a1fdfc4
Version: 0.21.1
a3bcfc5
Release: 8%{?dist}
60b8884
Source0: http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz
60b8884
# https://bugzilla.osafoundation.org/show_bug.cgi?id=2341
a1fdfc4
Patch0: m2crypto-0.21.1-timeouts.patch
baa5e86
# This is only precautionary, it does fix anything - not sent upstream
a1fdfc4
Patch1: m2crypto-0.21.1-gcc_macros.patch
bb2c20d
# https://bugzilla.osafoundation.org/show_bug.cgi?id=12972
a1fdfc4
Patch2: m2crypto-0.20.2-fips.patch
481af17
# https://bugzilla.osafoundation.org/show_bug.cgi?id=12973
a1fdfc4
Patch3: m2crypto-0.20.2-check.patch
a1fdfc4
# https://bugzilla.osafoundation.org/show_bug.cgi?id=13005
a1fdfc4
Patch4: m2crypto-0.21.1-memoryview.patch
0c0d908
# https://bugzilla.osafoundation.org/show_bug.cgi?id=13020
0c0d908
Patch5: m2crypto-0.21.1-smime-doc.patch
6cf6a3f
# https://bugzilla.osafoundation.org/show_bug.cgi?id=12999
6cf6a3f
Patch6: m2crypto-0.21.1-AES_crypt.patch
d6ab187
# https://bugzilla.osafoundation.org/show_bug.cgi?id=13044
d6ab187
Patch7: m2crypto-0.21.1-IPv6.patch
a3bcfc5
# https://bugzilla.osafoundation.org/show_bug.cgi?id=13049
a3bcfc5
Patch8: m2crypto-0.21.1-https-proxy.patch
bfe6dc0
License: MIT
cvsdist 50f04da
Group: System Environment/Libraries
496d958
URL: http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto
6d615fc
BuildRequires: openssl-devel, python2-devel
44230c0
BuildRequires: perl, pkgconfig, swig, which
880276d
880276d
%filter_provides_in %{python_sitearch}/M2Crypto/__m2crypto.so
880276d
%filter_setup
cvsdist 50f04da
cvsdist 50f04da
%description
cvsdist 50f04da
This package allows you to call OpenSSL functions from python scripts.
cvsdist 50f04da
cvsdist 50f04da
%prep
60b8884
%setup -q -n M2Crypto-%{version}
c75ce4c
%patch0 -p1 -b .timeouts
baa5e86
%patch1 -p1 -b .gcc_macros
a1fdfc4
%patch2 -p1 -b .fips
a1fdfc4
%patch3 -p1 -b .check
a1fdfc4
%patch4 -p1 -b .memoryview
0c0d908
%patch5 -p0
6cf6a3f
%patch6 -p0 -b .AES_crypt
d6ab187
%patch7 -p1 -b .IPv6
a3bcfc5
%patch8 -p1 -b .https-proxy
79c3b0b
79c3b0b
# Red Hat opensslconf.h #includes an architecture-specific file, but SWIG
79c3b0b
# doesn't follow the #include.
79c3b0b
79c3b0b
# Determine which arch opensslconf.h is going to try to #include.
79c3b0b
basearch=%{_arch}
79c3b0b
%ifarch %{ix86}
79c3b0b
basearch=i386
79c3b0b
%endif
60b8884
%ifarch sparcv9
60b8884
basearch=sparc
60b8884
%endif
a57c80d
%ifarch %{multilib_arches}
60b8884
for i in SWIG/_ec.i SWIG/_evp.i; do
60b8884
	sed -i -e "s/opensslconf/opensslconf-${basearch}/" "$i"
60b8884
done
a57c80d
%endif
cvsdist 76d4e75
fd29467
gcc -E -dM - < /dev/null | grep -v __STDC__ \
fd29467
	| sed 's/^\(#define \([^ ]*\) .*\)$/#undef \2\n\1/' > SWIG/gcc_macros.h
baa5e86
cvsdist 76d4e75
%build
66d846d
CFLAGS="$RPM_OPT_FLAGS" ; export CFLAGS
cvsdist 76d4e75
if pkg-config openssl ; then
cvsdist 76d4e75
	CFLAGS="$CFLAGS `pkg-config --cflags openssl`" ; export CFLAGS
cvsdist 76d4e75
	LDFLAGS="$LDFLAGS`pkg-config --libs-only-L openssl`" ; export LDFLAGS
cvsdist 76d4e75
fi
cvsdist 76d4e75
d3babca
# -cpperraswarn is necessary for including opensslconf-${basearch} directly
e8aeee3
SWIG_FEATURES=-cpperraswarn %{__python} setup.py build
cvsdist 50f04da
cvsdist 50f04da
%install
66d846d
CFLAGS="$RPM_OPT_FLAGS" ; export CFLAGS
cvsdist 76d4e75
if pkg-config openssl ; then
cvsdist 76d4e75
	CFLAGS="$CFLAGS `pkg-config --cflags openssl`" ; export CFLAGS
cvsdist 76d4e75
	LDFLAGS="$LDFLAGS`pkg-config --libs-only-L openssl`" ; export LDFLAGS
cvsdist 76d4e75
fi
cvsdist 76d4e75
e8aeee3
%{__python} setup.py install --root=$RPM_BUILD_ROOT
cvsdist 50f04da
b26e3f2
for i in medusa medusa054; do
e8aeee3
	sed -i -e '1s,#! /usr/local/bin/python,#! %{__python},' \
b26e3f2
		demo/$i/http_server.py
b26e3f2
done
b26e3f2
b26e3f2
# Windows-only
b26e3f2
rm demo/Zope/starts.bat
c75ce4c
# Fix up documentation permissions
60b8884
find demo tests -type f -perm -111 -print0 | xargs -0 chmod a-x
c75ce4c
44230c0
grep -rl '/usr/bin/env python' demo tests \
e8aeee3
	| xargs sed -i "s,/usr/bin/env python,%{__python},"
b26e3f2
c75ce4c
rm tests/*.py.* # Patch backup files
c75ce4c
cvsdist 50f04da
%clean
496d958
rm -rf $RPM_BUILD_ROOT
cvsdist 50f04da
cvsdist 50f04da
%files
cvsdist 50f04da
%defattr(-,root,root)
79c3b0b
%doc CHANGES LICENCE README demo tests
496d958
%{python_sitearch}/M2Crypto
adeb065
%{python_sitearch}/M2Crypto-*.egg-info
cvsdist 50f04da
cvsdist 76d4e75
%changelog
a3bcfc5
* Thu Mar 15 2012 Miloslav Trmač <mitr@redhat.com> - 0.21.1-8
a3bcfc5
- Fix HTTPS proxy support
a3bcfc5
  Resolves: #803554
a3bcfc5
d6ab187
* Tue Mar 13 2012 Miloslav Trmač <mitr@redhat.com> - 0.21.1-7
d6ab187
- Support IPv6 in M2Crypto.httpslib
d6ab187
  Resolves: #742914
d6ab187
e3f4b9c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.1-6
e3f4b9c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e3f4b9c
6cf6a3f
* Thu May 12 2011 Miloslav Trmač <mitr@redhat.com> - 0.21.1-5
6cf6a3f
- Fix a memory leak in AES_crypt
6cf6a3f
  Resolves: #659881
6cf6a3f
7ee9f96
* Tue May 10 2011 Miloslav Trmač <mitr@redhat.com> - 0.21.1-4
7ee9f96
- Fix handling of buffer() objects as input data to SSL
7ee9f96
  Resolves: #702766
7ee9f96
7ee9f96
* Mon Mar 28 2011 Miloslav Trmač <mitr@redhat.com> - 0.21.1-3
0c0d908
- Fix S/MIME documentation and examples
0c0d908
  Resolves: #618500
0c0d908
3e60f88
* Wed Feb 23 2011 Garrett Holmstrom <gholms@fedoraproject.org> - 0.21.1-3
0c0d908
- Use the %%__python macro for Python calls and locations
0c0d908
  Patch by Garrett Holmstrom <gholms@fedoraproject.org>
0c0d908
4304b08
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.1-2
4304b08
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4304b08
a1fdfc4
* Tue Jan 18 2011 Miloslav Trmač <mitr@redhat.com> - 0.21.1-1
a1fdfc4
- Update to m2crypto-0.21.1
a1fdfc4
- Make the test suite pass with Python 2.7
a1fdfc4
d171a55
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.20.2-9
d171a55
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
d171a55
481af17
* Fri Jul  9 2010 Miloslav Trmač <mitr@redhat.com> - 0.20.2-8
481af17
- Allow overriding SSL.Connection.postConnectionCheck from m2urllib2
481af17
  Resolves: #610906
481af17
bb2c20d
* Wed May 19 2010 Miloslav Trmač <mitr@redhat.com> - 0.20.2-7
bb2c20d
- Make test suite pass in FIPS mode
bb2c20d
  Resolves: #565662
bb2c20d
880276d
* Thu Mar  4 2010 Miloslav Trmač <mitr@redhat.com> - 0.20.2-6
880276d
- Filter out bogus Provides: __m2crypto.so
880276d
- Drop explicit Requires: python
880276d
c75ce4c
* Mon Feb 15 2010 Miloslav Trmač <mitr@redhat.com> - 0.20.2-5
c75ce4c
- Make test suite pass with OpenSSL 1.0.0
c75ce4c
- Don't ship patch backup files in %%doc
c75ce4c
ae7b05e
* Tue Jan  5 2010 Miloslav Trmač <mitr@redhat.com> - 0.20.2-4
ae7b05e
- s/%%define/%%global/
ae7b05e
44230c0
* Mon Dec  7 2009 Miloslav Trmač <mitr@redhat.com> - 0.20.2-3
44230c0
- Don't use '!# /usr/bin/env python'
44230c0
  Resolves: #521887
44230c0
061cad6
* Thu Oct 15 2009 Miloslav Trmač <mitr@redhat.com> - 0.20.2-2
061cad6
- Add a dist tag.
061cad6
22b5070
* Wed Oct  7 2009 Miloslav Trmač <mitr@redhat.com> - 0.20.2-1
22b5070
- Update to m2crypto-0.20.2
22b5070
- Drop BuildRoot: and cleaning it at start of %%install
22b5070
017c6b0
* Sun Aug 30 2009 Miloslav Trmač <mitr@redhat.com> - 0.20.1-1
017c6b0
- Update to m2crypto-0.20.1
017c6b0
- Add upstream patch to build with OpenSSL 1.0.0
017c6b0
62b9174
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.20-2
62b9174
- rebuilt with new openssl
62b9174
9628323
* Tue Aug 11 2009 Miloslav Trmač <mitr@volny.cz> - 0.20-1
9628323
- Update to m2crypto-0.20
9628323
- Fix incorrect merge in HTTPS CONNNECT proxy support
9628323
426a9d7
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.1-10
426a9d7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
426a9d7
4169d1c
* Wed Jun 24 2009 Miloslav Trmač <mitr@redhat.com> - 0.19.1-9
4169d1c
- Fix OpenSSL locking callback
4169d1c
  Resolves: #507903
4169d1c
ffee3ac
* Wed Jun 10 2009 Miloslav Trmač <mitr@redhat.com> - 0.19.1-8
ffee3ac
- Don't reject certificates with subjectAltName that does not contain a dNSName
ffee3ac
  Resolves: #504060
ffee3ac
8ac18cd
* Wed Jun  3 2009 Miloslav Trmač <mitr@redhat.com> - 0.19.1-7
8ac18cd
- Only send the selector in SSL HTTP requests.  Patch by James Bowes
8ac18cd
  <jbowes@redhat.com>.
8ac18cd
  Resolves: #491674
8ac18cd
0a25343
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.1-6
0a25343
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0a25343
fd29467
* Wed Feb  4 2009 Miloslav Trmač <mitr@redhat.com> - 0.19.1-5
fd29467
- Close the connection when an m2urllib2 response is closed
fd29467
  Resolves: #460692
fd29467
- Work around conflicts between macros defined by gcc and swig
fd29467
406c32e
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 0.19.1-4
406c32e
- rebuild with new openssl
406c32e
b7c9353
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.19.1-3
b7c9353
- Rebuild for Python 2.6
b7c9353
baa5e86
* Mon Nov 10 2008 Miloslav Trmač <mitr@redhat.com> - 0.19.1-2
baa5e86
- Import all gcc-defined macros into SWIG (recommended by Adam Tkac)
baa5e86
3fbe332
* Mon Oct 13 2008 Miloslav Trmač <mitr@redhat.com> - 0.19.1-1
3fbe332
- Update to m2crypto-0.19.1
3fbe332
60b8884
* Mon Oct  6 2008 Miloslav Trmač <mitr@redhat.com> - 0.19-1
60b8884
- Update to m2crypto-0.19
60b8884
- Fix some rpmlint warnings
60b8884
35f779f
* Thu Sep 18 2008 Dennis Gilmore <dennis@ausil.us> - 0.18.2-8
35f779f
- enable sparc arches
35f779f
40f17b5
* Wed Jun 11 2008 Miloslav Trmač <mitr@redhat.com> - 0.18.2-7
40f17b5
- Update m2urllib2 to match the Python 2.5 code instead
40f17b5
5c5ec44
* Sun Jun  8 2008 Miloslav Trmač <mitr@redhat.com> - 0.18.2-6
5c5ec44
- Don't remove the User-Agent header from proxied requests
5c5ec44
  Related: #448858
5c5ec44
- Update m2urllib2.py to work with Python 2.5
5c5ec44
d13fe42
* Sat Jun  7 2008 Miloslav Trmač <mitr@redhat.com> - 0.18.2-5
d13fe42
- Use User-Agent in HTTP proxy CONNECT requests
d13fe42
  Related: #448858
d13fe42
06fe288
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.18.2-4
06fe288
- Autorebuild for GCC 4.3
06fe288
adeb065
* Fri Jan 11 2008 Miloslav Trmač <mitr@redhat.com> - 0.18.2-3
adeb065
- Ship Python egg information
adeb065
c75e699
* Tue Dec  4 2007 Miloslav Trmač <mitr@redhat.com> - 0.18.2-2
c75e699
- Rebuild with openssl-0.9.8g
c75e699
83ec2ba
* Fri Oct 26 2007 Miloslav Trmač <mitr@redhat.com> - 0.18.2-1
83ec2ba
- Update to m2crypto-0.18.2
83ec2ba
- Remove BuildRequires: unzip
83ec2ba
bfe6dc0
* Sun Sep 23 2007 Miloslav Trmač <mitr@redhat.com> - 0.18-2
bfe6dc0
- Add missing Host: header to CONNECT requests (patch by Karl Grindley)
bfe6dc0
  Resolves: #239034
bfe6dc0
- Fix License:
bfe6dc0
7f963cc
* Wed Aug  1 2007 Miloslav Trmač <mitr@redhat.com> - 0.18-1
7f963cc
- Update to m2crypto-0.18
7f963cc
a57c80d
* Wed Jul 11 2007 Miloslav Trmač <mitr@redhat.com> - 0.17-3
a57c80d
- Try to fix build on Alpha
a57c80d
  Resolves: #246828
a57c80d
2a9f58b
* Fri Apr 27 2007 Miloslav Trmac <mitr@redhat.com> - 0.17-2
2a9f58b
- Make m2xmlrpclib work with Python 2.5
2a9f58b
  Resolves: #237902
2a9f58b
af9de46
* Wed Jan 17 2007 Miloslav Trmac <mitr@redhat.com> - 0.17-1
af9de46
- Update to m2crypto-0.17
af9de46
- Update for Python 2.5
af9de46
218f0d1
* Thu Dec  7 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-8
218f0d1
- Rebuild with updated build tools to avoid DT_TEXTREL on s390x
218f0d1
  Resolves: #218578
218f0d1
e4ccfbb
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.16-7
e4ccfbb
- rebuild against python 2.5
e4ccfbb
a6a4df8
* Mon Oct 23 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-6
a6a4df8
- Add support for SSL socket timeouts (based on a patch by James Bowes
a6a4df8
  <jbowes@redhat.com>)
a6a4df8
  Resolves: #219966
a6a4df8
269144a
* Fri Oct 20 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-5
269144a
- Backport the urllib2 wrapper (code by James Bowes <jbowes@redhat.com>)
73cd691
  Resolves: #210956
73cd691
- Add proxy support for https using CONNECT (original patch by James Bowes
73cd691
  <jbowes@redhat.com>)
73cd691
  Resolves: #210963
269144a
b26e3f2
* Tue Sep 26 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-4
b26e3f2
- Drop Obsoletes: openssl-python, openssl-python was last shipped in RHL 7.1
b26e3f2
- Fix interpreter paths in demos
b26e3f2
496d958
* Sat Sep 23 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-3
496d958
- Make more compliant with Fedora guidelines
496d958
- Update URL:
496d958
2b42a91
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.16-2.1
2b42a91
- rebuild
2b42a91
d3babca
* Thu Jul  6 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-2
d3babca
- Fix build with rawhide swig
d3babca
79c3b0b
* Thu Jul  6 2006 Miloslav Trmac <mitr@redhat.com> - 0.16-1
79c3b0b
- Update to m2crypto-0.16
79c3b0b
da62245
* Wed Apr 19 2006 Miloslav Trmac <mitr@redhat.com> - 0.15-4
da62245
- Fix SSL.Connection.accept (#188742)
da62245
83bc62c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.15-3.2
83bc62c
- bump again for double-long bug on ppc(64)
83bc62c
378bc98
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.15-3.1
378bc98
- rebuilt for new gcc4.1 snapshot and glibc changes
378bc98
d196d06
* Tue Jan  3 2006 Miloslav Trmac <mitr@redhat.com> - 0.15-3
d196d06
- Add BuildRequires: swig
d196d06
3197fd9
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3197fd9
- rebuilt
3197fd9
02058aa
* Wed Nov  9 2005 Miloslav Trmac <mitr@redhat.com> - 0.15-2
02058aa
- Rebuild with newer openssl
02058aa
bb7c1fb
* Mon Aug 29 2005 Miloslav Trmac <mitr@redhat.com> - 0.15-1
bb7c1fb
- Update to m2crypto-0.15
bb7c1fb
- Drop bundled swig
bb7c1fb
9e6ff18
* Tue Jun 14 2005 Miloslav Trmac <mitr@redhat.com> - 0.13-5
9e6ff18
- Better fix for #159898, by Dan Williams
9e6ff18
b835d66
* Thu Jun  9 2005 Miloslav Trmac <mitr@redhat.com> - 0.13-4
02058aa
- Fix invalid handle_error override in SSL.SSLServer (#159898, patch by Dan
b835d66
  Williams)
b835d66
66d846d
* Tue May 31 2005 Miloslav Trmac <mitr@redhat.com> - 0.13-3
66d846d
- Fix invalid Python version comparisons in M2Crypto.httpslib (#156979)
66d846d
- Don't ship obsolete xmlrpclib.py.patch
66d846d
- Clean up the build process a bit
66d846d
528b4ac
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 0.13-2
528b4ac
- rebuild
528b4ac
02058aa
* Tue Nov 23 2004 Karsten Hopp <karsten@redhat.de> 0.13-1
d7aa90d
- update, remove now obsolete patches
d7aa90d
c5f89e7
* Mon Nov 22 2004 Karsten Hopp <karsten@redhat.de> 0.09-7
c5f89e7
- changed pythonver from 2.3 to 2.4
c5f89e7
cvsdist eb04a01
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist eb04a01
- rebuilt
cvsdist eb04a01
cvsdist 323ae95
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 323ae95
- rebuilt
cvsdist 323ae95
cvsdist 323ae95
* Tue Feb 24 2004 Harald Hoyer <harald@redhat.com> - 0.09-5
cvsdist 323ae95
- changed pythonver from 2.2 to 2.3
cvsdist 323ae95
- patched setup.py to cope with include path
cvsdist 323ae95
cvsdist 323ae95
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 323ae95
- rebuilt
cvsdist 323ae95
cvsdist 165495d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 165495d
- rebuilt
cvsdist 165495d
cvsdist 76d4e75
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist 76d4e75
- rebuilt
cvsdist 50f04da
cvsdist 76d4e75
* Tue Jan 14 2003 Nalin Dahyabhai <nalin@redhat.com> 0.09-1
cvsdist 76d4e75
- Update to version 0.09
cvsdist 76d4e75
- Build using bundled copy of SWIG
cvsdist 76d4e75
- Pick up additional CFLAGS and LDFLAGS from OpenSSL's pkgconfig data, if
cvsdist 76d4e75
  there is any
cvsdist 76d4e75
- Handle const changes in new OpenSSL
cvsdist 76d4e75
- Remove unnecessary ldconfig calls in post/postun
cvsdist 76d4e75
cvsdist 76d4e75
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 0.07_snap3-2
cvsdist 76d4e75
- Update to version 0.07_snap3
cvsdist 50f04da
cvsdist 76fed79
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 76fed79
- automated rebuild
cvsdist 76fed79
cvsdist b3332c6
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist b3332c6
- automated rebuild
cvsdist b3332c6
cvsdist b3332c6
* Mon May 20 2002 Nalin Dahyabhai <nalin@redhat.com> 0.05_snap4-4
cvsdist b3332c6
- rebuild with Python 2.2
cvsdist b3332c6
cvsdist b3332c6
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 0.05_snap4-3
cvsdist b3332c6
- remove a stray -L at link-time which prevented linking with libssl (#59985)
cvsdist b3332c6
cvsdist b3332c6
* Thu Aug 23 2001 Nalin Dahyabhai <nalin@redhat.com> 0.05_snap4-2
cvsdist 4492860
- drop patch which isn't needed because we know swig is installed
cvsdist 4492860
cvsdist b3332c6
* Mon Apr  9 2001 Nalin Dahyabhai <nalin@redhat.com> 0.05_snap4-1
cvsdist 50f04da
- break off from openssl-python