ports/opt (3.6): [notify] dovecot: update to 2.3.15
commit e40f39e5c9c24ea5838993f89edc0b710316a2df Author: Juergen Daubert <jue@jue.li> Date: Mon Jun 21 15:58:11 2021 +0200 [notify] dovecot: update to 2.3.15 includes security fixes, see https://dovecot.org/pipermail/dovecot-news/2021-June/000457.html diff --git a/dovecot/.footprint b/dovecot/.footprint index a20de8c81..071bb9568 100644 --- a/dovecot/.footprint +++ b/dovecot/.footprint @@ -103,6 +103,7 @@ drwxr-xr-x root/root usr/include/dovecot/ -rw-r--r-- root/root usr/include/dovecot/config-request.h -rw-r--r-- root/root usr/include/dovecot/config.h -rw-r--r-- root/root usr/include/dovecot/connection.h +-rw-r--r-- root/root usr/include/dovecot/cpu-limit.h -rw-r--r-- root/root usr/include/dovecot/crc32.h -rw-r--r-- root/root usr/include/dovecot/data-stack.h -rw-r--r-- root/root usr/include/dovecot/db-checkpassword.h diff --git a/dovecot/.signature b/dovecot/.signature index d83e59449..bf967a607 100644 --- a/dovecot/.signature +++ b/dovecot/.signature @@ -1,7 +1,7 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/XLSWc2ZwHcl4XbhIAKANEntpWoFc0ubNISA+rIwY+A/xmWqN2K54fhfgbBNSzwNkMQa051D3ENWdV+2MVUHRQM= -SHA256 (Pkgfile) = ea8414e9a3ebad2c5b2200655b9d2dca87b31d73cc0755f54188e62ee29fdd94 -SHA256 (.footprint) = e610a5e03e6e24e9ba027fee6f6155533fd20241dc10527c7552cd4c3039cbc9 -SHA256 (dovecot-2.3.14.tar.gz) = c8b3d7f3af1e558a3ff0f970309d4013a4d3ce136f8c02a53a3b05f345b9a34a +RWSE3ohX2g5d/eD66eNtdTVS3D/CdLIa6okIGcD3oKxkykvxwwlkYawJNVzPrVDQ8wz4UdWgjFXpIhWdnz+hjLyKOCnFzFO1nAo= +SHA256 (Pkgfile) = 2848d2a41d1b51ec296afe106e1622907574c628291c82d1255d43740ccb024a +SHA256 (.footprint) = 4601863f37bff047c1a64d892b7597d0297fafcee1bd013b028730a6405b41cb +SHA256 (dovecot-2.3.15.tar.gz) = 21bbdd5d45957a99133de8b7e71813ecb73d9476c89dfc63479e9102b3553590 SHA256 (dovecot.rc) = 188af70cdcbb012eedd44bc0bbe6ef11567e7a788ecc57ffb106b934a87de286 SHA256 (dovecot.pam) = 9aa8bd8871560e4e3c255ca3e8ed9c99d6b29620e375155ef6c4118b5b7da4af diff --git a/dovecot/Pkgfile b/dovecot/Pkgfile index 99fc4e6e9..d3063193c 100644 --- a/dovecot/Pkgfile +++ b/dovecot/Pkgfile @@ -1,49 +1,49 @@ # Description: IMAP and POP3 server with ssl/ipv6 support, written with security primarily in mind -# URL: https://dovecot.org -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: zlib bzip2 xz openssl libcap linux-pam +# URL: https://dovecot.org +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: zlib bzip2 xz openssl libcap linux-pam name=dovecot -version=2.3.14 +version=2.3.15 release=1 source=(https://dovecot.org/releases/2.3/$name-$version.tar.gz - dovecot.rc dovecot.pam) + dovecot.rc dovecot.pam) -build () { - cd $name-$version +build() { + cd $name-$version - ./configure --prefix=/usr \ - --libexecdir=/usr/lib \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-moduledir=/usr/lib/dovecot/modules \ - --with-pam \ - --with-ssl=openssl + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-moduledir=/usr/lib/dovecot/modules \ + --with-pam \ + --with-ssl=openssl - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - cp -r $PKG/usr/share/doc/dovecot/example-config/* $PKG/etc/dovecot + cp -r $PKG/usr/share/doc/dovecot/example-config/* $PKG/etc/dovecot - # RC script - install -D -m 755 $SRC/dovecot.rc $PKG/etc/rc.d/dovecot + # RC script + install -D -m 755 $SRC/dovecot.rc $PKG/etc/rc.d/dovecot - # PAM - install -D -m 644 $SRC/dovecot.pam $PKG/etc/pam.d/dovecot + # PAM + install -D -m 644 $SRC/dovecot.pam $PKG/etc/pam.d/dovecot - # SSL - install -d $PKG/etc/ssl/{certs,private} - touch $PKG/etc/ssl/certs/dovecot.pem - touch $PKG/etc/ssl/private/dovecot.pem - chmod 0600 $PKG/etc/ssl/{certs/dovecot.pem,private/dovecot.pem} + # SSL + install -d $PKG/etc/ssl/{certs,private} + touch $PKG/etc/ssl/certs/dovecot.pem + touch $PKG/etc/ssl/private/dovecot.pem + chmod 0600 $PKG/etc/ssl/{certs/dovecot.pem,private/dovecot.pem} - # directories - install -d -m 0750 $PKG/var/lib/dovecot - install -d -m 0755 $PKG/var/run/dovecot - install -d -m 0750 -o root -g dovecot $PKG/var/run/dovecot/login - - # cleanup - rm -r $PKG/usr/share/doc - rm $PKG/etc/dovecot/README + # directories + install -d -m 0750 $PKG/var/lib/dovecot + install -d -m 0755 $PKG/var/run/dovecot + install -d -m 0750 -o root -g dovecot $PKG/var/run/dovecot/login + # cleanup + rm -r $PKG/usr/share/doc + rm $PKG/etc/dovecot/README }
participants (1)
-
crux@crux.nu