X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail.viktorstanchev.com (mail.viktorstanchev.com [107.170.156.235]) by lists.alpinelinux.org (Postfix) with ESMTP id 053575C40C4 for ; Mon, 30 May 2016 05:16:30 +0000 (GMT) Received: from [192.168.0.102] (184-23-0-20.dsl.static.fusionbroadband.com [184.23.0.20]) by mail.viktorstanchev.com (Postfix) with ESMTPSA id D35F3400E5 for ; Mon, 30 May 2016 05:16:29 +0000 (UTC) To: alpine-aports@lists.alpinelinux.org From: Viktor Stanchev Subject: [alpine-aports] testing/pigeonhole: new aport Message-ID: Date: Sun, 29 May 2016 22:17:51 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1F29A21F0D3F71B3216BDFBC" This is a multi-part message in MIME format. --------------1F29A21F0D3F71B3216BDFBC Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, This is my first alpine package. I'm building a mail server using docker containers and I wanted to use alpine as my base image, so I need this package to do email filtering. This is not the latest version of pigeonhole, but it's the latest that compiles against the current version of dovecot (2.2.20-r1). Once dovecot is updated, we can probably also update this package. Let me know if I need to change anything. - Viktor --------------1F29A21F0D3F71B3216BDFBC Content-Type: text/x-patch; name="0001-testing-pigeonhole-new-aport.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-testing-pigeonhole-new-aport.patch" =46rom adfaacb9e8a1d5292c62bc18ba14caf347a2d35d Mon Sep 17 00:00:00 2001 From: Viktor Stanchev Date: Sun, 29 May 2016 22:07:30 -0700 Subject: [PATCH] testing/pigeonhole: new aport http://pigeonhole.dovecot.org/ Sieve implementation for Dovecot --- testing/pigeonhole/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/pigeonhole/APKBUILD diff --git a/testing/pigeonhole/APKBUILD b/testing/pigeonhole/APKBUILD new file mode 100644 index 0000000..9c7b84a --- /dev/null +++ b/testing/pigeonhole/APKBUILD @@ -0,0 +1,30 @@ +# Maintainer: Viktor Stanchev +pkgname=3Dpigeonhole +pkgver=3D0.4.12 +pkgrel=3D1 +pkgdesc=3D"Sieve implementation for Dovecot" +url=3D"http://pigeonhole.dovecot.org/" +arch=3D"all" +license=3D"LGPL" +depends=3D"dovecot" +depends_dev=3D"dovecot-dev" +makedepends=3D"${depends_dev} autoconf libtool make openssl-dev bash" +subpackages=3D"$pkgname-dev $pkgname-doc" +source=3D"http://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonh= ole-${pkgver}.tar.gz" + +_builddir=3D"$srcdir"/dovecot-2.2-pigeonhole-${pkgver} + +build() { + cd "$_builddir" + ./configure --prefix=3D/usr --with-dovecot=3D/usr/lib/dovecot || ret= urn 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR=3D"$pkgdir" install || return 1 +} + +md5sums=3D"eb96e65be62c71f987a3b5ad2d782b7b dovecot-2.2-pigeonhole-0.4.= 12.tar.gz" +sha256sums=3D"98a2fd79b0d9effd08c0caf04d483b1caa5e4503dae811e6d436948557= bfb702 dovecot-2.2-pigeonhole-0.4.12.tar.gz" +sha512sums=3D"68b2bcc8bd2a8c039ff116a441ff8795917b280f89ad60819638d59030= 10611bbd5966567d0d33ae305f9ae4db9f6756b2a72ccd8305124cfe846d64bbdd08c5 d= ovecot-2.2-pigeonhole-0.4.12.tar.gz" --=20 2.8.3 --------------1F29A21F0D3F71B3216BDFBC-- --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---