forked from pool/courier-imap
Accepting request 946900 from home:adkorte:branches:server:mail
- update to 5.1.7 * Fix linking failure on some Linux distributions. - update to 5.1.6 * Fix linking failure on some Linux distributions. - update to 5.1.5 * Fix minor memory leaks. If valgrind is installed, "make check" will run it to check for memory leaks. * Convert to PCRE2. * libcouriertls: use ALARM to kill couriertls if the server process terminates but openssl hangs trying to shut down the socket. OBS-URL: https://build.opensuse.org/request/show/946900 OBS-URL: https://build.opensuse.org/package/show/server:mail/courier-imap?expand=0&rev=110
This commit is contained in:
parent
1d82829ae6
commit
76e6a7cb1b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e6f30f0fadd4fce2e55c12181ba84334bd5fbc4d45f09419070a50d219da0167
|
|
||||||
size 3363196
|
|
Binary file not shown.
3
courier-imap-5.1.7.tar.bz2
Normal file
3
courier-imap-5.1.7.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bf37754425993d7b15b2e72b0af6061e41d320bc598c9c62e086d650f71152df
|
||||||
|
size 3364221
|
BIN
courier-imap-5.1.7.tar.bz2.sig
Normal file
BIN
courier-imap-5.1.7.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 17 07:29:18 UTC 2022 - Arjen de Korte <suse+build@de-korte.org>
|
||||||
|
|
||||||
|
- update to 5.1.7
|
||||||
|
* Fix linking failure on some Linux distributions.
|
||||||
|
|
||||||
|
- update to 5.1.6
|
||||||
|
* Fix linking failure on some Linux distributions.
|
||||||
|
|
||||||
|
- update to 5.1.5
|
||||||
|
* Fix minor memory leaks. If valgrind is installed, "make check" will
|
||||||
|
run it to check for memory leaks.
|
||||||
|
* Convert to PCRE2.
|
||||||
|
* libcouriertls: use ALARM to kill couriertls if the server process
|
||||||
|
terminates but openssl hangs trying to shut down the socket.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 2 09:16:44 UTC 2021 - Arjen de Korte <suse+build@de-korte.org>
|
Mon Aug 2 09:16:44 UTC 2021 - Arjen de Korte <suse+build@de-korte.org>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package courier-imap
|
# spec file for package courier-imap
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,8 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%bcond_with valgrind
|
||||||
|
|
||||||
Name: courier-imap
|
Name: courier-imap
|
||||||
Version: 5.1.4
|
Version: 5.1.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An IMAP and POP3 Server for Maildir MTAs
|
Summary: An IMAP and POP3 Server for Maildir MTAs
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@ -48,13 +50,15 @@ BuildRequires: gcc-c++
|
|||||||
BuildRequires: gdbm-devel
|
BuildRequires: gdbm-devel
|
||||||
BuildRequires: libstdc++-devel
|
BuildRequires: libstdc++-devel
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
# openssl itself for /usr/bin/openssl configure check
|
BuildRequires: pcre2-devel
|
||||||
BuildRequires: postfix
|
|
||||||
BuildRequires: procps
|
BuildRequires: procps
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRequires: pkgconfig(libidn)
|
BuildRequires: pkgconfig(libidn)
|
||||||
BuildRequires: pkgconfig(openssl)
|
BuildRequires: pkgconfig(openssl)
|
||||||
BuildRequires: pkgconfig(systemd)
|
BuildRequires: pkgconfig(systemd)
|
||||||
|
%if %{with valgrind}
|
||||||
|
BuildRequires: valgrind
|
||||||
|
%endif
|
||||||
Requires: courier-authlib >= 0.71
|
Requires: courier-authlib >= 0.71
|
||||||
Requires: gdbm
|
Requires: gdbm
|
||||||
Requires: openssl
|
Requires: openssl
|
||||||
@ -113,7 +117,10 @@ mv libs/maildir/README.maildirquota{.txt,}
|
|||||||
--with-authdaemonvar=%{_rundir}/courier-authlib \
|
--with-authdaemonvar=%{_rundir}/courier-authlib \
|
||||||
--with-certdb=%{_sysconfdir}/ssl/certs \
|
--with-certdb=%{_sysconfdir}/ssl/certs \
|
||||||
--with-certsdir=%{_sysconfdir}/ssl/private \
|
--with-certsdir=%{_sysconfdir}/ssl/private \
|
||||||
|
%if %{without valgrind}
|
||||||
--enable-workarounds-for-imap-client-bugs
|
--enable-workarounds-for-imap-client-bugs
|
||||||
|
%endif
|
||||||
|
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -149,6 +156,11 @@ EOF
|
|||||||
# SSL state cache directory
|
# SSL state cache directory
|
||||||
install -d %{buildroot}%{_localstatedir}/cache/%{name}/
|
install -d %{buildroot}%{_localstatedir}/cache/%{name}/
|
||||||
|
|
||||||
|
%if %{with valgrind}
|
||||||
|
%check
|
||||||
|
make check
|
||||||
|
%endif
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
%service_add_pre courier-imap-gencert.service courier-imap-ssl.service courier-imap.service
|
%service_add_pre courier-imap-gencert.service courier-imap-ssl.service courier-imap.service
|
||||||
%service_add_pre courier-pop-gencert.service courier-pop-ssl.service courier-pop.service
|
%service_add_pre courier-pop-gencert.service courier-pop-ssl.service courier-pop.service
|
||||||
|
Loading…
Reference in New Issue
Block a user