X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id B8215DC0FF2 for ; Wed, 23 Dec 2015 06:44:44 +0000 (UTC) Received: from mail-lf0-f48.google.com (mail-lf0-f48.google.com [209.85.215.48]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 3F827DC00E1 for ; Wed, 23 Dec 2015 06:44:43 +0000 (UTC) Received: by mail-lf0-f48.google.com with SMTP id z124so136762407lfa.3 for ; Tue, 22 Dec 2015 22:44:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=ar/rmSNxdPL6P0OodeonArgSsDAUq7BI7ZgCPvxZkOM=; b=PLbLXoNLY7Gy9JJX9hBvDHwNW2E/ggO0HVSLpiKI8d3c1/tij7aoBX/0o658PODiuE 5r08/aH2J2mgUWJTumIsT1lXfbX5FD5exiLJLEdXeXLBSSduuOjGdc3dJ+AjDLyzDWWj CaMsbNPLjb845U8LsnIvdgqpvQuZcKdD4hJuUMMLRTj4gKZfeKjCWR+52uNdwAS9b0M6 KQRA/ZLdzif/lUDDmI9yXAuJPuMKApiw/BqYuB5AGJW5bYOzo1Yfe6Xa/3JEhiJlX8uq LDFEvhtbzK5pX0UjNo2MFjPORrnKeODQOuvUgQZCj4kJRgl1TzHCTSmarTo9GSrDdJui fExg== X-Received: by 10.25.143.14 with SMTP id r14mr9876217lfd.71.1450853081997; Tue, 22 Dec 2015 22:44:41 -0800 (PST) Received: from vostro ([2001:1bc8:101:f402:21a:9fff:fe0c:4022]) by smtp.gmail.com with ESMTPSA id 99sm2103909lfp.30.2015.12.22.22.44.41 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Dec 2015 22:44:41 -0800 (PST) Sender: =?UTF-8?Q?Timo_Ter=C3=A4s?= Date: Wed, 23 Dec 2015 08:44:39 +0200 From: Timo Teras To: Valery Kartel Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] main/dovecot: Bugfix upgrade to 2.2.21 Message-ID: <20151223084439.31553c35@vostro> In-Reply-To: <1450824685-24620-1-git-send-email-valery.kartel@gmail.com> References: <1450824685-24620-1-git-send-email-valery.kartel@gmail.com> X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Hi, On Wed, 23 Dec 2015 00:51:25 +0200 Valery Kartel wrote: > It's a re-commit of http://patchwork.alpinelinux.org/patch/1232/ > which is accepted but somehow not applied in git --- Sorry. I was marking done patches that were applied, but not recognized as such in patchworks. This may have been accidentally set by me. Sorry, and thank you for the resubmission. > main/dovecot/APKBUILD | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/main/dovecot/APKBUILD b/main/dovecot/APKBUILD > index 16356b2..693da6e 100644 > --- a/main/dovecot/APKBUILD > +++ b/main/dovecot/APKBUILD > @@ -3,8 +3,8 @@ > # Contributor: Michael Mason > # Maintainer: Natanael Copa > pkgname=dovecot > -pkgver=2.2.20 > -pkgrel=1 > +pkgver=2.2.21 > +pkgrel=0 > pkgdesc="IMAP and POP3 server" > url="http://www.dovecot.org/" > arch="all" Could you please merge this with the follow-up changes you sent as separate patch? This would not even compile as-is since the checksum updates are in the next patch. And regarding those: On Wed, 23 Dec 2015 00:53:20 +0200 Valery Kartel wrote: > --- > main/dovecot/APKBUILD | 29 +++++++++++++++-------------- > 1 file changed, 15 insertions(+), 14 deletions(-) > > diff --git a/main/dovecot/APKBUILD b/main/dovecot/APKBUILD > index 693da6e..6da5264 100644 > --- a/main/dovecot/APKBUILD > +++ b/main/dovecot/APKBUILD > @@ -103,55 +103,56 @@ dev() { > default_dev > mv "$pkgdir"/usr/lib/dovecot/dovecot-config \ > "$subpkgdir"/usr/lib/dovecot/ > + _mv $(cd "$pkgdir" && find usr -name *.la) > } This sounds ok. > pgsql() { > pkgdesc="postgresql driver for dovecot" > depends="$pkgname-sql" > - _mv $(cd "$pkgdir" && find usr -name '*_pgsql*') > + _mv $(cd "$pkgdir" && find usr -name *_pgsql*) > } I don't think you can remove the quotation there. They are required to prevent shell expansion so that 'find' will be able to do the wildcard matching. Same applies for all the following hunks. > mysql() { > pkgdesc="mysql driver for dovecot" > depends="$pkgname-sql" > - _mv $(cd "$pkgdir" && find usr -name '*_mysql*') > + _mv $(cd "$pkgdir" && find usr -name *_mysql*) > } > > sqlite() { > pkgdesc="sqlite driver for dovecot" > depends="$pkgname-sql" > - _mv $(cd "$pkgdir" && find usr -name '*_sqlite*') > + _mv $(cd "$pkgdir" && find usr -name *_sqlite*) > } > > gssapi() { > pkgdesc="GSSAPI auth plugin for dovecot" > depends="$pkgname" > - _mv $(cd "$pkgdir" && find usr -name '*_gssapi*') > + _mv $(cd "$pkgdir" && find usr -name *_gssapi*) > } > > ldap() { > pkgdesc="LDAP auth plugin for dovecot" > depends="$pkgname" > - _mv $(cd "$pkgdir" && find usr -name '*_ldap*') > - _mv $(cd "$pkgdir" && find etc/dovecot -name '*-ldap.conf*') > + _mv $(cd "$pkgdir" && find usr -name *_ldap*) > + _mv $(cd "$pkgdir" && find etc/dovecot -name *-ldap.conf*) > } > > sql() { > pkgdesc="SQL plugin for dovecot" > depends="$pkgname" > - _mv $(cd "$pkgdir" && find usr -name '*-sql.*') > - _mv $(cd "$pkgdir" && find etc/dovecot -name '*-sql.conf*') > + _mv $(cd "$pkgdir" && find usr -name *-sql.*) > + _mv $(cd "$pkgdir" && find etc/dovecot -name *-sql.conf*) > } --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---