Blame SPECS/stunnel.spec

270793
# Do not generate provides for private libraries
270793
%global __provides_exclude_from ^%{_libdir}/stunnel/.*$
270793
270793
%if 0%{?fedora} > 27 || 0%{?rhel} > 7
270793
%bcond_with libwrap
270793
%else
270793
%bcond_without libwrap
270793
%endif
270793
270793
Summary: A TLS-encrypting socket wrapper
270793
Name: stunnel
270793
Version: 5.48
270793
Release: 5%{?dist}
270793
License: GPLv2
270793
Group: Applications/Internet
270793
URL: http://www.stunnel.org/
270793
Source0: https://www.stunnel.org/downloads/stunnel-%{version}.tar.gz
270793
Source1: https://www.stunnel.org/downloads/stunnel-%{version}.tar.gz.asc
270793
Source2: Certificate-Creation
270793
Source3: sfinger.xinetd
270793
Source4: stunnel-sfinger.conf
270793
Source5: pop3-redirect.xinetd
270793
Source6: stunnel-pop3s-client.conf
270793
Source7: stunnel@.service
270793
Patch0: stunnel-5.40-authpriv.patch
270793
Patch1: stunnel-5.40-systemd-service.patch
270793
Patch3: stunnel-5.46-system-ciphers.patch
270793
Patch4: stunnel-5.48-coverity.patch
270793
# util-linux is needed for rename
270793
BuildRequires: gcc
270793
BuildRequires: openssl-devel, pkgconfig, util-linux
270793
BuildRequires: autoconf automake libtool
270793
%if %{with libwrap}
270793
Buildrequires: tcp_wrappers-devel
270793
%endif
270793
BuildRequires: /usr/bin/pod2man
270793
BuildRequires: /usr/bin/pod2html
270793
# build test requirements
270793
BuildRequires: /usr/bin/nc, /usr/bin/lsof, /usr/bin/ps
270793
BuildRequires: systemd
270793
%{?systemd_requires}
270793
270793
%description
270793
Stunnel is a socket wrapper which can provide TLS/SSL
270793
(Transport Layer Security/Secure Sockets Layer) support
270793
to ordinary applications. For example, it can be used in
270793
conjunction with imapd to create a TLS secure IMAP server.
270793
270793
%prep
270793
%setup -q
270793
%patch0 -p1 -b .authpriv
270793
%patch1 -p1 -b .systemd-service
270793
%patch3 -p1 -b .system-ciphers
270793
%patch4 -p1 -b .coverity
270793
270793
# Fix the configure script output for FIPS mode and stack protector flag
270793
sed -i '/yes).*result: no/,+1{s/result: no/result: yes/;s/as_echo "no"/as_echo "yes"/};s/-fstack-protector/-fstack-protector-strong/' configure
270793
270793
# Fix a testcase with system-ciphers support
270793
sed -i '/client = yes/a \\  ciphers = PSK' tests/recipes/014_PSK_secrets
270793
270793
%build
270793
#autoreconf -v
270793
CFLAGS="$RPM_OPT_FLAGS -fPIC"; export CFLAGS
270793
if pkg-config openssl ; then
270793
	CFLAGS="$CFLAGS `pkg-config --cflags openssl`";
270793
	LDFLAGS="`pkg-config --libs-only-L openssl`"; export LDFLAGS
270793
fi
270793
%configure --enable-fips --enable-ipv6 --with-ssl=%{_prefix} \
270793
%if %{with libwrap}
270793
--enable-libwrap \
270793
%else
270793
--disable-libwrap \
270793
%endif
270793
	CPPFLAGS="-UPIDFILE -DPIDFILE='\"%{_localstatedir}/run/stunnel.pid\"'"
270793
make V=1 LDADD="-pie -Wl,-z,defs,-z,relro,-z,now"
270793
270793
%install
270793
make install DESTDIR=%{buildroot}
270793
# Move the translated man pages to the right subdirectories, and strip off the
270793
# language suffixes.
270793
#for lang in fr pl ; do
270793
for lang in pl ; do
270793
	mkdir -p %{buildroot}/%{_mandir}/${lang}/man8
270793
	mv %{buildroot}/%{_mandir}/man8/*.${lang}.8* %{buildroot}/%{_mandir}/${lang}/man8/
270793
	rename ".${lang}" "" %{buildroot}/%{_mandir}/${lang}/man8/*
270793
done
270793
mkdir srpm-docs
270793
cp %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} srpm-docs
270793
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
270793
mkdir -p %{buildroot}%{_unitdir}
270793
cp %{buildroot}%{_datadir}/doc/stunnel/examples/%{name}.service %{buildroot}%{_unitdir}/%{name}.service
270793
cp %{SOURCE7} %{buildroot}%{_unitdir}/%{name}@.service
270793
%endif
270793
270793
%check
270793
# For unknown reason the 042_inetd test fails in Brew. The failure is not reproducible
270793
# in Fedora or normal RHEL-8 install.
270793
rm tests/recipes/042_inetd
270793
# We override the security policy as it is too strict for the tests.
270793
OPENSSL_SYSTEM_CIPHERS_OVERRIDE=xyz_nonexistent_file
270793
export OPENSSL_SYSTEM_CIPHERS_OVERRIDE
270793
OPENSSL_CONF=
270793
export OPENSSL_CONF
270793
make test
270793
270793
%files
270793
%{!?_licensedir:%global license %%doc}
270793
%doc AUTHORS BUGS ChangeLog CREDITS PORTS README TODO
270793
%doc tools/stunnel.conf-sample
270793
%doc srpm-docs/*
270793
%license COPY*
270793
%lang(en) %doc doc/en/*
270793
%lang(pl) %doc doc/pl/*
270793
%{_bindir}/stunnel
270793
%exclude %{_bindir}/stunnel3
270793
%exclude %{_datadir}/doc/stunnel
270793
%{_libdir}/stunnel
270793
%exclude %{_libdir}/stunnel/libstunnel.la
270793
%{_mandir}/man8/stunnel.8*
270793
%lang(pl) %{_mandir}/pl/man8/stunnel.8*
270793
%dir %{_sysconfdir}/%{name}
270793
%exclude %{_sysconfdir}/stunnel/*
270793
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
270793
%{_unitdir}/%{name}*.service
270793
%endif
270793
270793
%post
270793
/sbin/ldconfig
270793
%systemd_post %{name}.service
270793
270793
%preun
270793
%systemd_preun %{name}.service
270793
270793
%postun
270793
/sbin/ldconfig
270793
%systemd_postun_with_restart %{name}.service
270793
270793
%changelog
270793
* Tue Sep  4 2018 Tomáš Mráz <tmraz@redhat.com> - 5.48-5
270793
- Fix -fstack-protector-strong build flag application
270793
- Fix bugs from Coverity scan
270793
270793
* Fri Aug  3 2018 Tomáš Mráz <tmraz@redhat.com> - 5.48-3
270793
- Override system crypto policy for build tests
270793
270793
* Tue Jul 31 2018 Tomáš Mráz <tmraz@redhat.com> - 5.48-2
270793
- Drop 042_inetd test which fails in the build environment
270793
270793
* Tue Jul 24 2018 Tomáš Mráz <tmraz@redhat.com> - 5.48-1
270793
- New upstream release 5.48
270793
270793
* Thu May 31 2018 Tomáš Mráz <tmraz@redhat.com> - 5.46-1
270793
- New upstream release 5.46
270793
270793
* Fri Mar  2 2018 Tomáš Mráz <tmraz@redhat.com> - 5.44-5
270793
- Fix bind to localhost (patch backport by Christian Kujau) (#1542361)
270793
270793
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.44-4
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
270793
270793
* Thu Jan 25 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.44-3
270793
- Fix systemd executions/requirements
270793
270793
* Mon Jan 15 2018 Tomáš Mráz <tmraz@redhat.com> - 5.44-2
270793
- Make the disablement of libwrap conditional
270793
270793
* Thu Jan 11 2018 Tomáš Mráz <tmraz@redhat.com> - 5.44-1
270793
- New upstream release 5.44
270793
- Disable libwrap support (#1518789)
270793
270793
* Tue Aug 22 2017 Tomáš Mráz <tmraz@redhat.com> - 5.42-1
270793
- New upstream release 5.42
270793
- Use the system cipher list by default (#1483967)
270793
270793
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.41-3
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
270793
270793
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.41-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
270793
270793
* Mon Apr 17 2017 Neal Gompa <ngompa@datto.com> - 5.41-1
270793
- New upstream release 5.41
270793
270793
* Mon Mar 20 2017 Neal Gompa <ngompa@datto.com> - 5.40-1
270793
- New upstream release 5.40
270793
- Properly mark license files
270793
- Rebase patches
270793
- Eliminate unnecessary Provides
270793
- Small spec cleanups and fixes
270793
270793
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.35-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
270793
270793
* Thu Jul 21 2016 Tomáš Mráz <tmraz@redhat.com> - 5.35-1
270793
- New upstream release 5.35 with fix for bug #1358810
270793
270793
* Wed Jul 13 2016 Tomáš Mráz <tmraz@redhat.com> - 5.34-1
270793
- New upstream release 5.34
270793
270793
* Wed Feb  3 2016 Tomáš Mráz <tmraz@redhat.com> - 5.30-1
270793
- New upstream release 5.30
270793
- Add generic stunnel@.service provided by Štefan Gurský (#1195742)
270793
270793
* Mon Jun 22 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.18-1
270793
- New upstream release 5.18.
270793
- Finally deleted the patch stunnel-5-sample.patch as upstream
270793
  has merged those changes.
270793
- Fixes patches as per new code changes.
270793
- Fixed systemd service file related changes.
270793
270793
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.17-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
270793
270793
* Mon Jun 8 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.17-1
270793
- New upstream release 5.17.
270793
270793
* Fri May 22 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.16-1
270793
- New upstream release 5.16.
270793
270793
* Mon Apr 27 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.15-1
270793
- New upstream release 5.15.
270793
- 1155977: Fixed upstream too so removed the associated patch
270793
- Updates other patches too.
270793
270793
* Mon Mar 30 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.14-1
270793
- New upstream release 5.14.
270793
270793
* Sun Mar 29 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.13-1
270793
- New upstream release 5.13.
270793
270793
* Sat Mar 28 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.12-1
270793
- New upstream release 5.12.
270793
270793
* Fri Mar 27 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.11-1
270793
- New upstream release 5.11.
270793
270793
* Wed Jan 28 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.10-1
270793
- New upstream release 5.10.
270793
270793
* Thu Jan 8 2015 Avesh Agarwal <avagarwa@redhat.com> - 5.09-1
270793
- 1163349: New upstream release 5.09.
270793
270793
* Thu Dec 11 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.08-1
270793
- 1163349: New upstream release 5.08
270793
270793
* Sun Nov 23 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.08b6-1
270793
- 1163349: New upstream beta release 5.08b6
270793
- Fixed incorrect reporting of fips status in configure.ac
270793
  at compile time, requires autoconf automake at buildtime
270793
- Fixed default OpenSSL directory issue by using with-ssl
270793
- Updates local patches
270793
- 1155977: Fixes man page issues
270793
270793
* Tue Nov 04 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.07-1
270793
- New upstream release 5.07
270793
270793
* Fri Oct 17 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.06-1
270793
- New upstream release 5.06
270793
- Addresses Poodle security issue
270793
270793
* Wed Oct 8 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.05b5-1
270793
- rhbz #1144393: New upstream beta release
270793
- systemd socket activation support
270793
270793
* Fri Sep 26 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.04-2
270793
- Fixes packaging issues mentioned in rhbz#226439
270793
270793
* Mon Sep 22 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.04-1
270793
- New upstream realease 5.04
270793
- Updates local patches so that they apply cleanly to
270793
  avoud hunk errors
270793
270793
* Thu Aug 28 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.03-1
270793
- New upstream realease 5.03
270793
270793
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.02-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
270793
270793
* Mon Jul 14 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.02-1
270793
- rhbz#1108818: New upstream realease 5.02
270793
- Updated local patches
270793
- The rhbz#530950 is tested and seems to work. STRLEN has
270793
  been no longer allocated statically since 4.36 version.
270793
  So it is possible that this bz might have got fixed
270793
  around 4.36 release.
270793
- Fixes rpmlint errors
270793
270793
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.01-3
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
270793
270793
* Mon Apr 28 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.01-2
270793
- Integration with systemd.
270793
- Spec file clean up
270793
- Patched stunnel systemd unit file to have dependency on
270793
  network.target.
270793
- rhbz#455815: Packaged systemd service file
270793
- rhbz#782535: Fixed private tmp issue.
270793
- rhbz#995831: Fixed wrong encoding of french man page.
270793
270793
* Thu Apr 17 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.01-1
270793
- New upstream realease 5.01
270793
- Supports OpenSSL DLLs 1.0.1g.
270793
- Fixes to take care of OpenSSL,s TLS heartbeat
270793
  read overrun (CVE-2014-0160).
270793
270793
* Fri Mar 7 2014 Avesh Agarwal <avagarwa@redhat.com> - 5.00-1
270793
- New upstream realease 5.00
270793
- Updated local patches.
270793
- Fix for CVE-2014-0016
270793
- Fixed changelog date errors
270793
- Fixes rhbz #1006819
270793
270793
* Mon Aug 5 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.56-3
270793
- Ftp mirrors for NA does not work, so changing source code
270793
  URLs to the correct ones.
270793
270793
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.56-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
270793
270793
* Mon Apr 1 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.56-1
270793
- New upstream realease 4.56.
270793
- Updated local patches.
270793
- Fixed upstream URL in spec file.
270793
- Sourced URL of sha256 hash file in spec file.
270793
270793
* Tue Mar 26 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.55-2
270793
- Resolves: 927841 
270793
270793
* Mon Mar 4 2013 Avesh Agarwal <avagarwa@redhat.com> - 4.55-1
270793
- New upstream realease 4.55
270793
- Updated local patches
270793
- enabled fips mode
270793
- Fixed for pod2man as it build-requires perl-podlators
270793
270793
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.54-3
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
270793
270793
* Mon Dec 10 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.54-2
270793
- 884183: support for full relro.
270793
270793
* Tue Oct 16 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.54-1
270793
- New upstream realease 4.54
270793
- Updated local patches
270793
270793
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.53-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
270793
270793
* Mon May 14 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.53-1
270793
- New upstream realease 4.53
270793
- Updated local patches
270793
270793
* Tue Mar 6 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.52-1
270793
- New upstream realease 4.52
270793
- Updated local patches
270793
270793
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.50-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
270793
270793
* Tue Jan 3 2012 Avesh Agarwal <avagarwa@redhat.com> - 4.50-1
270793
- New upstream realease 4.50
270793
- Updated local patches
270793
270793
* Tue Sep 20 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.44-1
270793
- New upstream realease 4.44
270793
- Updated local patches
270793
270793
* Fri Aug 19 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.42-1
270793
- New upstream realease 4.42
270793
- Updated local patches
270793
- Fixes #732069
270793
270793
* Mon Aug 1 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.41-1
270793
- New upstream realease 4.41
270793
- Updated local patches to match the new release
270793
270793
* Tue Jun 28 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.37-1
270793
- New upstream realease 4.37
270793
- Updated local patches to match the new release
270793
270793
* Mon Apr 4 2011 Avesh Agarwal <avagarwa@redhat.com> - 4.35-1
270793
- New upstream realease 4.35
270793
- Updated authpriv and sample patches to match the new release
270793
270793
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.34-2
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
270793
270793
* Mon Oct 4 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.34-1
270793
- New upstream realease 4.34
270793
- Updated authpriv and sample patches to match the new release
270793
270793
* Wed Apr 7 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.33-1
270793
- New upstream realease 4.33
270793
- Updated authpriv and sample patches to match the new release
270793
- Addresses bz 580117 (inted mode support issue)
270793
270793
* Mon Mar 29 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.32-1
270793
- New upstream realease 4.32
270793
- Updated authpriv and sample patches to match the new release
270793
270793
* Tue Feb 16 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.31-1
270793
- New upstream realease 4.31
270793
- Updated authpriv and sample patches to match the new release
270793
270793
* Tue Jan 26 2010 Avesh Agarwal <avagarwa@redhat.com> - 4.30-1
270793
- New upstream realease 4.30
270793
- Updated authpriv and sample patches for the new release
270793
270793
* Wed Dec 09 2009 Avesh Agarwal <avagarwa@redhat.com> - 4.29-1
270793
- New upstream realease 4.29
270793
- Updated authpriv and sample patches for the new release
270793
- Modified spec file to include dist tag
270793
270793
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 4.27-5
270793
- rebuilt with new openssl
270793
270793
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.27-4
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
270793
270793
* Sun May  3 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-3
270793
- Fix the previous patch.
270793
270793
* Wed Apr 29 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-2
270793
- Avoid aliasing undefined by ISO C
270793
270793
* Thu Apr 16 2009 Miloslav Trmač <mitr@redhat.com> - 4.27-1
270793
- Update to stunnel-4.27.
270793
270793
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.26-3
270793
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
270793
270793
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 4.26-2
270793
- disable openssl upstream fips mode
270793
270793
* Mon Sep 22 2008 Miloslav Trmač <mitr@redhat.com> - 4.26-1
270793
- Update to stunnel-4.26.
270793
270793
* Sun Jun  8 2008 Miloslav Trmač <mitr@redhat.com> - 4.25-2
270793
- Use a clearer error message if the service name is unknown in "accept"
270793
  Resolves: #450344
270793
270793
* Mon Jun  2 2008 Miloslav Trmač <mitr@redhat.com> - 4.25-1
270793
- Update to stunnel-4.25
270793
270793
* Tue May 20 2008 Miloslav Trmač <mitr@redhat.com> - 4.24-2
270793
- Drop stunnel3
270793
  Resolves: #442842
270793
270793
* Mon May 19 2008 Miloslav Trmač <mitr@redhat.com> - 4.24-1
270793
- Update to stunnel-4.24
270793
270793
* Fri Mar 28 2008 Miloslav Trmač <mitr@redhat.com> - 4.22-1
270793
- Update to stunnel-4.22
270793
270793
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 4.20-6
270793
- Autorebuild for GCC 4.3
270793
270793
* Tue Dec  4 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-5
270793
- Rebuild with openssl-0.9.8g
270793
270793
* Tue Oct 16 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-4
270793
- Revert the port to NSS, wait for NSS-based stunnel 5.x instead
270793
  Resolves: #301971
270793
- Mark localized man pages with %%lang (patch by Ville Skyttä)
270793
  Resolves: #322281
270793
270793
* Tue Aug 28 2007 Miloslav Trmač <mitr@redhat.com> - 4.20-3.nss
270793
- Port to NSS
270793
270793
* Mon Dec  4 2006 Miloslav Trmac <mitr@redhat.com> - 4.20-2
270793
- Update BuildRequires for the separate tcp_wrappers-devel package
270793
270793
* Thu Nov 30 2006 Miloslav Trmac <mitr@redhat.com> - 4.20-1
270793
- Update to stunnel-4.20
270793
270793
* Sat Nov 11 2006 Miloslav Trmac <mitr@redhat.com> - 4.19-1
270793
- Update to stunnel-4.19
270793
270793
* Wed Oct 25 2006 Miloslav Trmac <mitr@redhat.com> - 4.18-1
270793
- Update to stunnel-4.18
270793
- Remove unused stunnel.cnf from the src.rpm
270793
- Fix some rpmlint warnings
270793
270793
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 4.15-2
270793
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
270793
  (#203001)
270793
270793
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.15-1.1
270793
- rebuild
270793
270793
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 4.15-1
270793
- Update to stunnel-4.15
270793
270793
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.14-3.2
270793
- bump again for double-long bug on ppc(64)
270793
270793
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.14-3.1
270793
- rebuilt for new gcc4.1 snapshot and glibc changes
270793
270793
* Tue Jan 31 2006 Miloslav Trmac <mitr@redhat.com> - 4.14-3
270793
- Use pthread threading to fix crash on x86_64 (#179236)
270793
270793
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
270793
- rebuilt
270793
270793
* Wed Nov  9 2005 Miloslav Trmac <mitr@redhat.com> - 4.14-2
270793
- Rebuild with newer openssl
270793
270793
* Thu Nov  3 2005 Miloslav Trmac <mitr@redhat.com> - 4.14-1
270793
- Update to stunnel-4.14
270793
- Override changed default pid file location, keep it in %%{_localstatedir}/run
270793
270793
* Sat Oct 22 2005 Miloslav Trmac <mitr@redhat.com> - 4.13-1
270793
- Update to stunnel-4.13
270793
270793
* Fri Sep 30 2005 Miloslav Trmac <mitr@redhat.com> - 4.12-1
270793
- Update to stunnel-4.12
270793
270793
* Thu Sep 22 2005 Miloslav Trmac <mitr@redhat.com> - 4.11-2
270793
- Enable IPv6 (#169050, patch by Peter Bieringer)
270793
- Don't ship another copy of man pages in HTML
270793
270793
* Tue Jul 12 2005 Miloslav Trmac <mitr@redhat.com> - 4.11-1
270793
- Update to stunnel-4.11
270793
- Fix int/size_t mismatches in stack_info ()
270793
- Update Certificate-Creation for /etc/pki
270793
270793
* Wed Jun  1 2005 Miloslav Trmac <mitr@redhat.com> - 4.10-2
270793
- Fix inetd mode
270793
- Remove unnecessary Requires: and BuildRequires:
270793
- Clean up the spec file
270793
270793
* Tue Apr 26 2005 Nalin Dahyabhai <nalin@redhat.com> 4.10-1
270793
- update to 4.10
270793
270793
* Tue Apr 26 2005 Nalin Dahyabhai <nalin@redhat.com> 4.08-2
270793
- add buildprereqs on libtool, util-linux; change textutils/fileutils dep to
270793
  coreutils (#133961)
270793
270793
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 4.08-1
270793
- update to 4.08
270793
- build stunnel as a PIE binary
270793
270793
* Mon Nov 22 2004 Miloslav Trmac <mitr@redhat.com> - 4.05-4
270793
- Convert man pages to UTF-8
270793
270793
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
270793
- rebuilt
270793
270793
* Thu May 27 2004 Nalin Dahyabhai <nalin@redhat.com> 4.05-2
270793
- move the sample configuration to %%doc, it shouldn't be used as-is (#124373)
270793
270793
* Thu Mar 11 2004 Nalin Dahyabhai <nalin@redhat.com> 4.05-1
270793
- update to 4.05
270793
270793
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
270793
- rebuilt
270793
270793
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
270793
- rebuilt
270793
270793
* Thu Aug  7 2003 Elliot Lee <sopwith@redhat.com> 4.04-6
270793
- Fix libtool
270793
270793
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
270793
- rebuilt
270793
270793
* Fri Mar 21 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-4
270793
- fix xinetd configuration samples
270793
270793
* Mon Feb 10 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-3
270793
- rebuild
270793
270793
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
270793
- rebuilt
270793
270793
* Wed Jan 15 2003 Nalin Dahyabhai <nalin@redhat.com> 4.04-1
270793
- update to 4.04
270793
270793
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 4.03-1
270793
- use pkgconfig for information about openssl, if available
270793
270793
* Fri Jan  3 2003 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 4.03
270793
270793
* Mon Oct 21 2002 Nalin Dahyabhai <nalin@redhat.com> 4.02-1
270793
- update to 4.02
270793
270793
* Fri Oct  4 2002 Nalin Dahyabhai <nalin@redhat.com> 4.00-1
270793
- don't create a dummy cert
270793
270793
* Wed Sep 25 2002 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 4.00
270793
- remove textutils and fileutils as buildreqs, add automake/autoconf
270793
270793
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
270793
- automated rebuild
270793
270793
* Sun May 26 2002 Tim Powers <timp@redhat.com>
270793
- automated rebuild
270793
270793
* Fri May 17 2002 Nalin Dahyabhai <nalin@redhat.com> 3.22-2
270793
- rebuild in new environment
270793
270793
* Wed Jan  2 2002 Nalin Dahyabhai <nalin@redhat.com> 3.22-1
270793
- update to 3.22, correcting a format-string vulnerability
270793
270793
* Wed Oct 31 2001 Nalin Dahyabhai <nalin@redhat.com> 3.21a-1
270793
- update to 3.21a
270793
270793
* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com> 3.20-1
270793
- log using LOG_AUTHPRIV facility by default (#47289)
270793
- make permissions on stunnel binary 0755
270793
- implicitly trust certificates in %%{_datadir}/ssl/trusted (#24034)
270793
270793
* Fri Aug 10 2001 Nalin Dahyabhai <nalin@redhat.com> 3.19-1
270793
- update to 3.19 to avoid problems with stunnel being multithreaded, but
270793
  tcp wrappers not being thrad-safe
270793
270793
* Mon Jul 30 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.17
270793
270793
* Mon Jul 23 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.16
270793
270793
* Mon Jul 16 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.15
270793
- enable tcp-wrappers support
270793
270793
* Tue May 29 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- remove explicit requirement on openssl (specific version isn't enough,
270793
  we have to depend on shared library version anyway)
270793
270793
* Fri Apr 27 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.14
270793
270793
* Mon Mar 26 2001 Preston Brown <pbrown@redhat.com>
270793
- depend on make (#33148)
270793
270793
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- rebuild in new environment
270793
270793
* Tue Feb  6 2001 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.13 to get pthread, OOB, 64-bit fixes
270793
- don't need sdf any more
270793
270793
* Thu Dec 28 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- pull in sdf to build the man page (#22892)
270793
270793
* Fri Dec 22 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.11
270793
- chuck the SIGHUP patch (went upstream)
270793
- chuck parts of the 64-bit clean patch (went upstream)
270793
270793
* Thu Dec 21 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.10
270793
- more 64-bit clean changes, hopefully the last bunch
270793
270793
* Wed Dec 20 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- change piddir from the default /var/stunnel to /var/run
270793
- clean out pid file on SIGHUP
270793
270793
* Fri Dec 15 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- update to 3.9 to get a security fix
270793
270793
* Wed Oct 25 2000 Matt Wilson <msw@redhat.com>
270793
- change all unsigned longs to u_int32_t when dealing with network
270793
  addresses
270793
270793
* Fri Aug 18 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- make stunnel.pem also be (missingok)
270793
270793
* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- move to Applications/Internet group
270793
- clean up %%post script
270793
- make stunnel.pem %%ghost %%config(noreplace)
270793
- provide a sample file for use with xinetd
270793
270793
* Thu Jun  8 2000 Nalin Dahyabhai <nalin@redhat.com>
270793
- FHS compliance fixes
270793
- modify defaults
270793
270793
* Tue Mar 14 2000 Florian La Roche <Florian.LaRoche@redhat.com>
270793
- update to 3.8
270793
- do not create certificate if one already exists
270793
270793
* Mon Feb 21 2000 Florian La Roche <Florian.LaRoche@redhat.com>
270793
- update to 3.7
270793
- add patch to find /usr/share/ssl
270793
- change some perms
270793
270793
* Sat Oct 30 1999 Bernhard Rosenkraenzer <bero@redhat.com>
270793
- Modify spec file to match Red Hat standards
270793
270793
* Thu Aug 12 1999 Damien Miller <damien@ibs.com.au>
270793
- Updated to 3.4a
270793
- Patched for OpenSSL 0.9.4
270793
- Cleaned up files section
270793
270793
* Sun Jul 11 1999 Damien Miller <dmiller@ilogic.com.au>
270793
- Updated to 3.3
270793
270793
* Sat Nov 28 1998 Damien Miller <dmiller@ilogic.com.au>
270793
- Initial RPMification