Blame SPECS/stunnel.spec

4e5299
Summary: An SSL-encrypting socket wrapper
4e5299
Name: stunnel
4e5299
Version: 4.56
cae5ff
Release: 4%{?dist}
4e5299
License: GPLv2
4e5299
Group: Applications/Internet
4e5299
URL: http://www.stunnel.org/
4e5299
Source0: https://www.stunnel.org/downloads/stunnel-%{version}.tar.gz
4e5299
Source1: https://www.stunnel.org/downloads/stunnel-%{version}.tar.gz.asc
4e5299
Source7: https://www.stunnel.org/downloads/stunnel-%{version}.tar.gz.sha256
4e5299
Source2: Certificate-Creation
4e5299
Source3: sfinger.xinetd
4e5299
Source4: stunnel-sfinger.conf
4e5299
Source5: pop3-redirect.xinetd
4e5299
Source6: stunnel-pop3s-client.conf
4e5299
Patch0: stunnel-4-authpriv.patch
4e5299
Patch1: stunnel-4-sample.patch
4e5299
Buildroot: %{_tmppath}/stunnel-root
4e5299
# util-linux is needed for rename
4e5299
BuildRequires: openssl-devel, pkgconfig, tcp_wrappers-devel, util-linux
4e5299
# for /usr/bin/pod2man
4e5299
%if 0%{?fedora} > 18 || 0%{?rhel} >= 7
4e5299
BuildRequires: perl-podlators
4e5299
%endif
4e5299
4e5299
%description
4e5299
Stunnel is a socket wrapper which can provide SSL (Secure Sockets
4e5299
Layer) support to ordinary applications. For example, it can be used
4e5299
in conjunction with imapd to create an SSL secure IMAP server.
4e5299
4e5299
%prep
4e5299
%setup -q
4e5299
%patch0 -p1 -b .authpriv
4e5299
%patch1 -p1 -b .sample
4e5299
4e5299
iconv -f iso-8859-1 -t utf-8 < doc/stunnel.fr.8 > doc/stunnel.fr.8_
4e5299
mv doc/stunnel.fr.8_ doc/stunnel.fr.8
4e5299
4e5299
%build
4e5299
CFLAGS="$RPM_OPT_FLAGS -fPIC"; export CFLAGS
4e5299
if pkg-config openssl ; then
4e5299
	CFLAGS="$CFLAGS `pkg-config --cflags openssl`";
4e5299
	LDFLAGS="`pkg-config --libs-only-L openssl`"; export LDFLAGS
4e5299
fi
4e5299
%configure --enable-fips --enable-ipv6 \
4e5299
	CPPFLAGS="-UPIDFILE -DPIDFILE='\"%{_localstatedir}/run/stunnel.pid\"'"
4e5299
make LDADD="-pie -Wl,-z,defs,-z,relro,-z,now"
4e5299
4e5299
%install
4e5299
rm -rf $RPM_BUILD_ROOT
4e5299
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/stunnel
4e5299
touch $RPM_BUILD_ROOT%{_sysconfdir}/stunnel/stunnel.pem
4e5299
make install DESTDIR=$RPM_BUILD_ROOT
4e5299
# Move the translated man pages to the right subdirectories, and strip off the
4e5299
# language suffixes.
4e5299
for lang in fr pl ; do
4e5299
	mkdir -p $RPM_BUILD_ROOT/%{_mandir}/${lang}/man8
4e5299
	mv $RPM_BUILD_ROOT/%{_mandir}/man8/*.${lang}.8* $RPM_BUILD_ROOT/%{_mandir}/${lang}/man8/
4e5299
	rename ".${lang}" "" $RPM_BUILD_ROOT/%{_mandir}/${lang}/man8/*
4e5299
done
4e5299
4e5299
mkdir srpm-docs
4e5299
cp %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} srpm-docs
4e5299
4e5299
%clean
4e5299
rm -rf $RPM_BUILD_ROOT
4e5299
4e5299
%files
4e5299
%defattr(-,root,root)
4e5299
%doc AUTHORS BUGS ChangeLog COPY* CREDITS PORTS README TODO
4e5299
%doc tools/stunnel.conf-sample
4e5299
%doc srpm-docs/*
4e5299
%lang(en) %doc doc/en/*
4e5299
%lang(po) %doc doc/pl/*
4e5299
%{_bindir}/stunnel
4e5299
%exclude %{_bindir}/stunnel3
4e5299
%exclude %{_datadir}/doc/stunnel
4e5299
%{_libdir}/stunnel
4e5299
%exclude %{_libdir}/stunnel/libstunnel.la
4e5299
%{_mandir}/man8/stunnel.8*
4e5299
%lang(fr) %{_mandir}/fr/man8/stunnel.8*
4e5299
%lang(pl) %{_mandir}/pl/man8/stunnel.8*
4e5299
%dir %{_sysconfdir}/%{name}
4e5299
%exclude %{_sysconfdir}/stunnel/*
4e5299
4e5299
%changelog
cae5ff
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 4.56-4
cae5ff
- Mass rebuild 2014-01-24
cae5ff
cae5ff
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.56-3
cae5ff
- Mass rebuild 2013-12-27
cae5ff
4e5299
* Mon Aug 5 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.56-2
4e5299
- Ftp mirrors for NA does not work, so changing source code
4e5299
  URLs to the correct ones.
4e5299
4e5299
* Mon Aug 5 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.56-1
4e5299
- New upstream realease 4.56.
4e5299
- Updated local patches.
4e5299
- Fixed upstream URL in spec file.
4e5299
- Sourced URL of sha256 hash file in spec file.
4e5299
4e5299
* Tue Mar 26 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.55-2
4e5299
- Resolves: 927841 
4e5299
4e5299
* Mon Mar 4 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.55-1
4e5299
- New upstream realease 4.55
4e5299
- Updated local patches
4e5299
- enabled fips mode
4e5299
- Fixed for pod2man as it build-requires perl-podlators
4e5299
4e5299
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.54-3
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4e5299
4e5299
* Mon Dec 10 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.54-2
4e5299
- 884183: support for full relro.
4e5299
4e5299
* Tue Oct 16 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.54-1
4e5299
- New upstream realease 4.54
4e5299
- Updated local patches
4e5299
4e5299
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.53-2
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4e5299
4e5299
* Mon May 14 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.53-1
4e5299
- New upstream realease 4.53
4e5299
- Updated local patches
4e5299
4e5299
* Tue Mar 6 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.52-1
4e5299
- New upstream realease 4.52
4e5299
- Updated local patches
4e5299
4e5299
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.50-2
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4e5299
4e5299
* Tue Jan 3 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.50-1
4e5299
- New upstream realease 4.50
4e5299
- Updated local patches
4e5299
4e5299
* Tue Sep 20 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.44-1
4e5299
- New upstream realease 4.44
4e5299
- Updated local patches
4e5299
4e5299
* Fri Aug 19 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.42-1
4e5299
- New upstream realease 4.42
4e5299
- Updated local patches
4e5299
- Fixes #732069
4e5299
4e5299
* Mon Aug 1 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.41-1
4e5299
- New upstream realease 4.41
4e5299
- Updated local patches to match the new release
4e5299
4e5299
* Tue Jun 28 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.37-1
4e5299
- New upstream realease 4.37
4e5299
- Updated local patches to match the new release
4e5299
4e5299
* Mon Apr 4 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.35-1
4e5299
- New upstream realease 4.35
4e5299
- Updated authpriv and sample patches to match the new release
4e5299
4e5299
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.34-2
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4e5299
4e5299
* Mon Oct 4 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.34-1
4e5299
- New upstream realease 4.34
4e5299
- Updated authpriv and sample patches to match the new release
4e5299
4e5299
* Wed Apr 7 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.33-1
4e5299
- New upstream realease 4.33
4e5299
- Updated authpriv and sample patches to match the new release
4e5299
- Addresses bz 580117 (inted mode support issue)
4e5299
4e5299
* Mon Mar 29 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.32-1
4e5299
- New upstream realease 4.32
4e5299
- Updated authpriv and sample patches to match the new release
4e5299
4e5299
* Tue Feb 16 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.31-1
4e5299
- New upstream realease 4.31
4e5299
- Updated authpriv and sample patches to match the new release
4e5299
4e5299
* Tue Jan 26 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.30-1
4e5299
- New upstream realease 4.30
4e5299
- Updated authpriv and sample patches for the new release
4e5299
4e5299
* Tue Dec 09 2009 Avesh Agarwal <avagarwa@redhat.com> - 4.29-1
4e5299
- New upstream realease 4.29
4e5299
- Updated authpriv and sample patches for the new release
4e5299
- Modified spec file to include dist tag
4e5299
4e5299
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 4.27-5
4e5299
- rebuilt with new openssl
4e5299
4e5299
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.27-4
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4e5299
4e5299
* Sun May  3 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-3
4e5299
- Fix the previous patch.
4e5299
4e5299
* Wed Apr 29 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-2
4e5299
- Avoid aliasing undefined by ISO C
4e5299
4e5299
* Thu Apr 16 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-1
4e5299
- Update to stunnel-4.27.
4e5299
4e5299
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.26-3
4e5299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4e5299
4e5299
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 4.26-2
4e5299
- disable openssl upstream fips mode
4e5299
4e5299
* Mon Sep 22 2008 Miloslav Trmač <mitr@redhat.com> - 4.26-1
4e5299
- Update to stunnel-4.26.
4e5299
4e5299
* Sun Jun  8 2008 Miloslav Trmač <mitr@redhat.com> - 4.25-2
4e5299
- Use a clearer error message if the service name is unknown in "accept"
4e5299
  Resolves: #450344
4e5299
4e5299
* Mon Jun  2 2008 Miloslav Trmač <mitr@redhat.com> - 4.25-1
4e5299
- Update to stunnel-4.25
4e5299
4e5299
* Tue May 20 2008 Miloslav Trmač <mitr@redhat.com> - 4.24-2
4e5299
- Drop stunnel3
4e5299
  Resolves: #442842
4e5299
4e5299
* Mon May 19 2008 Miloslav Trmač <mitr@redhat.com> - 4.24-1
4e5299
- Update to stunnel-4.24
4e5299
4e5299
* Fri Mar 28 2008 Miloslav Trmač <mitr@redhat.com> - 4.22-1
4e5299
- Update to stunnel-4.22
4e5299
4e5299
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 4.20-6
4e5299
- Autorebuild for GCC 4.3
4e5299
4e5299
* Tue Dec  4 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-5
4e5299
- Rebuild with openssl-0.9.8g
4e5299
4e5299
* Tue Oct 16 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-4
4e5299
- Revert the port to NSS, wait for NSS-based stunnel 5.x instead
4e5299
  Resolves: #301971
4e5299
- Mark localized man pages with %%lang (patch by Ville Skyttä)
4e5299
  Resolves: #322281
4e5299
4e5299
* Tue Aug 28 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-3.nss
4e5299
- Port to NSS
4e5299
4e5299
* Mon Dec  4 2006 Miloslav Trmac <mitr@redhat.com> - 4.20-2
4e5299
- Update BuildRequires for the separate tcp_wrappers-devel package
4e5299
4e5299
* Thu Nov 30 2006 Miloslav Trmac <mitr@redhat.com> - 4.20-1
4e5299
- Update to stunnel-4.20
4e5299
4e5299
* Sat Nov 11 2006 Miloslav Trmac <mitr@redhat.com> - 4.19-1
4e5299
- Update to stunnel-4.19
4e5299
4e5299
* Wed Oct 25 2006 Miloslav Trmac <mitr@redhat.com> - 4.18-1
4e5299
- Update to stunnel-4.18
4e5299
- Remove unused stunnel.cnf from the src.rpm
4e5299
- Fix some rpmlint warnings
4e5299
4e5299
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 4.15-2
4e5299
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
4e5299
  (#203001)
4e5299
4e5299
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.15-1.1
4e5299
- rebuild
4e5299
4e5299
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 4.15-1
4e5299
- Update to stunnel-4.15
4e5299
4e5299
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.14-3.2
4e5299
- bump again for double-long bug on ppc(64)
4e5299
4e5299
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.14-3.1
4e5299
- rebuilt for new gcc4.1 snapshot and glibc changes
4e5299
4e5299
* Tue Jan 31 2006 Miloslav Trmac <mitr@redhat.com> - 4.14-3
4e5299
- Use pthread threading to fix crash on x86_64 (#179236)
4e5299
4e5299
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Wed Nov  9 2005 Miloslav Trmac <mitr@redhat.com> - 4.14-2
4e5299
- Rebuild with newer openssl
4e5299
4e5299
* Thu Nov  3 2005 Miloslav Trmac <mitr@redhat.com> - 4.14-1
4e5299
- Update to stunnel-4.14
4e5299
- Override changed default pid file location, keep it in %%{_localstatedir}/run
4e5299
4e5299
* Sat Oct 22 2005 Miloslav Trmac <mitr@redhat.com> - 4.13-1
4e5299
- Update to stunnel-4.13
4e5299
4e5299
* Fri Sep 30 2005 Miloslav Trmac <mitr@redhat.com> - 4.12-1
4e5299
- Update to stunnel-4.12
4e5299
4e5299
* Thu Sep 22 2005 Miloslav Trmac <mitr@redhat.com> - 4.11-2
4e5299
- Enable IPv6 (#169050, patch by Peter Bieringer)
4e5299
- Don't ship another copy of man pages in HTML
4e5299
4e5299
* Tue Jul 12 2005 Miloslav Trmac <mitr@redhat.com> - 4.11-1
4e5299
- Update to stunnel-4.11
4e5299
- Fix int/size_t mismatches in stack_info ()
4e5299
- Update Certificate-Creation for /etc/pki
4e5299
4e5299
* Wed Jun  1 2005 Miloslav Trmac <mitr@redhat.com> - 4.10-2
4e5299
- Fix inetd mode
4e5299
- Remove unnecessary Requires: and BuildRequires:
4e5299
- Clean up the spec file
4e5299
4e5299
* Tue Apr 26 2005 Nalin Dahyabhai <nalin@redhat.com> 4.10-1
4e5299
- update to 4.10
4e5299
4e5299
* Tue Apr 26 2005 Nalin Dahyabhai <nalin@redhat.com> 4.08-2
4e5299
- add buildprereqs on libtool, util-linux; change textutils/fileutils dep to
4e5299
  coreutils (#133961)
4e5299
4e5299
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 4.08-1
4e5299
- update to 4.08
4e5299
- build stunnel as a PIE binary
4e5299
4e5299
* Mon Nov 22 2004 Miloslav Trmac <mitr@redhat.com> - 4.05-4
4e5299
- Convert man pages to UTF-8
4e5299
4e5299
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Thu May 27 2004 Nalin Dahyabhai <nalin@redhat.com> 4.05-2
4e5299
- move the sample configuration to %%doc, it shouldn't be used as-is (#124373)
4e5299
4e5299
* Thu Mar 11 2004 Nalin Dahyabhai <nalin@redhat.com> 4.05-1
4e5299
- update to 4.05
4e5299
4e5299
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Thu Aug  7 2003 Elliot Lee <sopwith@redhat.com> 4.04-6
4e5299
- Fix libtool
4e5299
4e5299
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Fri Mar 21 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-4
4e5299
- fix xinetd configuration samples
4e5299
4e5299
* Mon Feb 10 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-3
4e5299
- rebuild
4e5299
4e5299
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
4e5299
- rebuilt
4e5299
4e5299
* Wed Jan 15 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-1
4e5299
- update to 4.04
4e5299
4e5299
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 4.03-1
4e5299
- use pkgconfig for information about openssl, if available
4e5299
4e5299
* Fri Jan  3 2003 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 4.03
4e5299
4e5299
* Mon Oct 21 2002 Nalin Dahyabhai <nalin@redhat.com> 4.02-1
4e5299
- update to 4.02
4e5299
4e5299
* Fri Oct  4 2002 Nalin Dahyabhai <nalin@redhat.com> 4.00-1
4e5299
- don't create a dummy cert
4e5299
4e5299
* Wed Sep 25 2002 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 4.00
4e5299
- remove textutils and fileutils as buildreqs, add automake/autoconf
4e5299
4e5299
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
4e5299
- automated rebuild
4e5299
4e5299
* Sun May 26 2002 Tim Powers <timp@redhat.com>
4e5299
- automated rebuild
4e5299
4e5299
* Fri May 17 2002 Nalin Dahyabhai <nalin@redhat.com> 3.22-2
4e5299
- rebuild in new environment
4e5299
4e5299
* Wed Jan  2 2002 Nalin Dahyabhai <nalin@redhat.com> 3.22-1
4e5299
- update to 3.22, correcting a format-string vulnerability
4e5299
4e5299
* Wed Oct 31 2001 Nalin Dahyabhai <nalin@redhat.com> 3.21a-1
4e5299
- update to 3.21a
4e5299
4e5299
* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com> 3.20-1
4e5299
- log using LOG_AUTHPRIV facility by default (#47289)
4e5299
- make permissions on stunnel binary 0755
4e5299
- implicitly trust certificates in %%{_datadir}/ssl/trusted (#24034)
4e5299
4e5299
* Fri Aug 10 2001 Nalin Dahyabhai <nalin@redhat.com> 3.19-1
4e5299
- update to 3.19 to avoid problems with stunnel being multithreaded, but
4e5299
  tcp wrappers not being thrad-safe
4e5299
4e5299
* Mon Jul 30 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.17
4e5299
4e5299
* Mon Jul 23 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.16
4e5299
4e5299
* Mon Jul 16 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.15
4e5299
- enable tcp-wrappers support
4e5299
4e5299
* Tue May 29 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- remove explicit requirement on openssl (specific version isn't enough,
4e5299
  we have to depend on shared library version anyway)
4e5299
4e5299
* Fri Apr 27 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.14
4e5299
4e5299
* Mon Mar 26 2001 Preston Brown <pbrown@redhat.com>
4e5299
- depend on make (#33148)
4e5299
4e5299
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- rebuild in new environment
4e5299
4e5299
* Tue Feb  6 2001 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.13 to get pthread, OOB, 64-bit fixes
4e5299
- don't need sdf any more
4e5299
4e5299
* Thu Dec 28 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- pull in sdf to build the man page (#22892)
4e5299
4e5299
* Fri Dec 22 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.11
4e5299
- chuck the SIGHUP patch (went upstream)
4e5299
- chuck parts of the 64-bit clean patch (went upstream)
4e5299
4e5299
* Thu Dec 21 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.10
4e5299
- more 64-bit clean changes, hopefully the last bunch
4e5299
4e5299
* Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- change piddir from the default /var/stunnel to /var/run
4e5299
- clean out pid file on SIGHUP
4e5299
4e5299
* Fri Dec 15 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- update to 3.9 to get a security fix
4e5299
4e5299
* Wed Oct 25 2000 Matt Wilson <msw@redhat.com>
4e5299
- change all unsigned longs to u_int32_t when dealing with network
4e5299
  addresses
4e5299
4e5299
* Fri Aug 18 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- make stunnel.pem also be (missingok)
4e5299
4e5299
* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- move to Applications/Internet group
4e5299
- clean up %%post script
4e5299
- make stunnel.pem %%ghost %%config(noreplace)
4e5299
- provide a sample file for use with xinetd
4e5299
4e5299
* Thu Jun  8 2000 Nalin Dahyabhai <nalin@redhat.com>
4e5299
- FHS compliance fixes
4e5299
- modify defaults
4e5299
4e5299
* Tue Mar 14 2000 Florian La Roche <Florian.LaRoche@redhat.com>
4e5299
- update to 3.8
4e5299
- do not create certificate if one already exists
4e5299
4e5299
* Mon Feb 21 2000 Florian La Roche <Florian.LaRoche@redhat.com>
4e5299
- update to 3.7
4e5299
- add patch to find /usr/share/ssl
4e5299
- change some perms
4e5299
4e5299
* Sat Oct 30 1999 Bernhard Rosenkraenzer <bero@redhat.com>
4e5299
- Modify spec file to match Red Hat standards
4e5299
4e5299
* Fri Aug 12 1999 Damien Miller <damien@ibs.com.au>
4e5299
- Updated to 3.4a
4e5299
- Patched for OpenSSL 0.9.4
4e5299
- Cleaned up files section
4e5299
4e5299
* Sun Jul 11 1999 Damien Miller <dmiller@ilogic.com.au>
4e5299
- Updated to 3.3
4e5299
4e5299
* Sat Nov 28 1998 Damien Miller <dmiller@ilogic.com.au>
4e5299
- Initial RPMification