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