[arch-commits] Commit in dovecot/repos/community-x86_64 (10 files)

2019-02-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, February 5, 2019 @ 18:53:25
  Author: demize
Revision: 429659

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 429658, dovecot/trunk/PKGBUILD)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 429658, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 429658, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 429658, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch
(from rev 429658, dovecot/trunk/fix-mysql-double-free.patch)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch

-+
 PKGBUILD|  234 +-
 dovecot.ld.so.conf  |2 
 dovecot.sysusersd   |4 
 dovecot.tmpfilesd   |2 
 fix-mysql-double-free.patch |   72 ++--
 5 files changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-05 18:53:18 UTC (rev 429658)
+++ PKGBUILD2019-02-05 18:53:25 UTC (rev 429659)
@@ -1,117 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.4
-pkgrel=3
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="https://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'mariadb-libs' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-
-provides=('imap-server' 'pop3-server')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf'
-'fix-mysql-double-free.patch')
-
-sha256sums=('d91b76eff8df6185c1799f1b279f780105bdeeea27e3286b42f4cab18efbef05'
-'SKIP'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858'
-'a97bd93b07c96e03d3c7540c8cd6c2d465a12728f31d9164ea4546e257e8a203')
-
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644 "${srcdir}/dovecot.tmpfilesd" \
-"${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf"
-  install -d -m755 "${pkgdir}/etc/dovecot/conf.d"
-  rm -f "${pkgdir}/etc/dovecot/README"
-
-  # install mkcert helper script
-  install -m 755  doc/mkcert.sh "${pkgdir}/usr/lib/dovecot/mkcert.sh"
-
-  # add dovecot libdir
-  install -Dm644 "${srcdir}/dovecot.ld.so.conf" 

[arch-commits] Commit in dovecot/repos/community-x86_64 (10 files)

2019-01-23 Thread Thore Bödecker via arch-commits
Date: Wednesday, January 23, 2019 @ 09:35:05
  Author: foxxx0
Revision: 427230

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 427229, dovecot/trunk/PKGBUILD)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 427229, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 427229, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 427229, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/community-x86_64/fix-mysql-double-free.patch
(from rev 427229, dovecot/trunk/fix-mysql-double-free.patch)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
  dovecot/repos/community-x86_64/include-crypt-h.patch

-+
 PKGBUILD|  232 +-
 dovecot.ld.so.conf  |2 
 dovecot.sysusersd   |4 
 dovecot.tmpfilesd   |2 
 fix-mysql-double-free.patch |   36 ++
 include-crypt-h.patch   |   11 -
 6 files changed, 157 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-23 09:34:59 UTC (rev 427229)
+++ PKGBUILD2019-01-23 09:35:05 UTC (rev 427230)
@@ -1,115 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.4
-pkgrel=2
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="https://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'mariadb-libs' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-
-provides=('imap-server' 'pop3-server')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf')
-
-sha256sums=('d91b76eff8df6185c1799f1b279f780105bdeeea27e3286b42f4cab18efbef05'
-'SKIP'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858')
-
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644 "${srcdir}/dovecot.tmpfilesd" \
-"${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf"
-  install -d -m755 "${pkgdir}/etc/dovecot/conf.d"
-  rm -f "${pkgdir}/etc/dovecot/README"
-
-  # install mkcert helper script
-  install -m 755  doc/mkcert.sh "${pkgdir}/usr/lib/dovecot/mkcert.sh"
-
-  # add dovecot libdir
-  install -Dm644 "${srcdir}/dovecot.ld.so.conf" 
"${pkgdir}/etc/ld.so.conf.d/dovecot.conf"
-}

Copied: dovecot/repos/community-x86_64/PKGBUILD (from rev 427229, 

[arch-commits] Commit in dovecot/repos/community-x86_64 (10 files)

2018-11-24 Thread Thore Bödecker via arch-commits
Date: Saturday, November 24, 2018 @ 09:52:14
  Author: foxxx0
Revision: 409610

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 409609, dovecot/trunk/PKGBUILD)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 409609, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 409609, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 409609, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/community-x86_64/include-crypt-h.patch
(from rev 409609, dovecot/trunk/include-crypt-h.patch)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
  dovecot/repos/community-x86_64/include-crypt-h.patch

---+
 PKGBUILD  |  232 +++-
 dovecot.ld.so.conf|2 
 dovecot.sysusersd |4 
 dovecot.tmpfilesd |2 
 include-crypt-h.patch |   22 ++--
 5 files changed, 130 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-24 09:52:03 UTC (rev 409609)
+++ PKGBUILD2018-11-24 09:52:14 UTC (rev 409610)
@@ -1,117 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.3
-pkgrel=2
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="https://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'libmariadbclient' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-
-provides=('imap-server' 'pop3-server')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'include-crypt-h.patch'
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf')
-
-sha256sums=('15af27ee25258afb4ad9581f8df681be998b763597086bbae54ca7d77a066d8e'
-'SKIP'
-'b504276359664b6a9d9a2a923c6bee55b659cd0aeb1261fb92b897744a22ef27'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'0b0625b1e66ca6a95d506fd00d6a68e70620c8ea28606e2528953ffb1806b08e'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858')
-
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644 "${srcdir}/dovecot.tmpfilesd" \
-"${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf"
-  install -d -m755 "${pkgdir}/etc/dovecot/conf.d"
-  rm -f "${pkgdir}/etc/dovecot/README"
-
-  # install mkcert helper script
-  install -m 755  doc/mkcert.sh "${pkgdir}/usr/lib/dovecot/mkcert.sh"
-
-  # add dovecot libdir
-  install -Dm644 "${srcdir}/dovecot.ld.so.conf" 
"${pkgdir}/etc/ld.so.conf.d/dovecot.conf"
-}

Copied: dovecot/repos/community-x86_64/PKGBUILD 

[arch-commits] Commit in dovecot/repos/community-x86_64 (10 files)

2018-06-11 Thread Thore Bödecker via arch-commits
Date: Monday, June 11, 2018 @ 12:03:40
  Author: foxxx0
Revision: 342339

archrelease: copy trunk to community-x86_64

Added:
  dovecot/repos/community-x86_64/PKGBUILD
(from rev 342338, dovecot/trunk/PKGBUILD)
  
dovecot/repos/community-x86_64/dovecot-0003-dsync-Revert-to-tmp-if-home-does-not-exist.patch
(from rev 342338, 
dovecot/trunk/dovecot-0003-dsync-Revert-to-tmp-if-home-does-not-exist.patch)
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
(from rev 342338, dovecot/trunk/dovecot.ld.so.conf)
  dovecot/repos/community-x86_64/dovecot.sysusersd
(from rev 342338, dovecot/trunk/dovecot.sysusersd)
  dovecot/repos/community-x86_64/dovecot.tmpfilesd
(from rev 342338, dovecot/trunk/dovecot.tmpfilesd)
Deleted:
  dovecot/repos/community-x86_64/PKGBUILD
  
dovecot/repos/community-x86_64/dovecot-0003-dsync-Revert-to-tmp-if-home-does-not-exist.patch
  dovecot/repos/community-x86_64/dovecot.ld.so.conf
  dovecot/repos/community-x86_64/dovecot.sysusersd
  dovecot/repos/community-x86_64/dovecot.tmpfilesd

---+
 PKGBUILD  |  236 +-
 dovecot-0003-dsync-Revert-to-tmp-if-home-does-not-exist.patch |   88 +--
 dovecot.ld.so.conf|2 
 dovecot.sysusersd |4 
 dovecot.tmpfilesd |2 
 5 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-11 12:03:32 UTC (rev 342338)
+++ PKGBUILD2018-06-11 12:03:40 UTC (rev 342339)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Maintainer: Thore Bödecker 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-# --->>> remember to rebuild/bump pigeonhole in one step <<<---
-
-pkgname=dovecot
-pkgver=2.3.1
-pkgrel=2
-
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-url="http://dovecot.org/;
-arch=('x86_64')
-license=("LGPL")
-
-depends=('krb5' 'openssl' 'sqlite' 'libmariadbclient' 'libsodium'
- 'postgresql-libs' 'bzip2' 'lz4' 'expat' 'curl' 'pam')
-makedepends=('libcap' 'libldap' 'clucene' 'libsodium')
-optdepends=('libldap: ldap plugin'
-'xz: imap zlib  plugin'
-'clucene: alternative FTS indexer')
-
-provides=('imap-server' 'pop3-server')
-
-source=("https://dovecot.org/releases/2.3/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'dovecot.sysusersd'
-'dovecot.tmpfilesd'
-'dovecot.ld.so.conf'
-# needs "proper" fix according to upstream. might be fixed in 2.3.2
-'dovecot-0003-dsync-Revert-to-tmp-if-home-does-not-exist.patch')
-
-sha256sums=('0883821b97fd02a084a84b9469a681f7e6edc56541d854b5419d98891c51fb93'
-'SKIP'
-'c5e3a8ffe23e5deb4f7893d9877d972347c2ee45c4ebf713de85c537e47cfcaf'
-'bb7620be7fc0217d77fcac940441c2abbd9efc6ef660153288d09ba412e27e06'
-'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858'
-'95c33d502936cd108a50001e1dbb0b6f885f8b9bfe2e53eaecc6c5ecf8a973d2')
-validpgpkeys=(
-  'E643F0BDFDCD04D9FFCB6279C948525140558AC9' # Timo Sirainen 
-  '2BE74AAB3EE754DFB9C80D3318A348AEED409DA1' # Dovecot Community Edition
-)
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -l -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # fix path in helper script
-  sed -i 
's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG-
 /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib \
---with-moduledir=/usr/lib/dovecot/modules \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---disable-static \
---with-nss \
---with-pam \
---with-mysql \
---with-pgsql \
---with-sqlite \
---with-ssl=openssl \
---with-ssldir=/etc/ssl \
---with-gssapi \
---with-ldap=plugin \
---with-zlib \
---with-bzlib \
---with-lzma \
---with-lz4 \
---with-libcap \
---with-solr \
---with-lucene \
---with-sodium \
---with-docs
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  # system user/group dovenull - 74
-  # system user/group dovecot  - 76
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "${srcdir}/dovecot.sysusersd" \
-"${pkgdir}/usr/lib/sysusers.d/dovecot.conf"
-  install -Dm644