Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id A49587818F7 for ; Sat, 16 Nov 2019 20:37:49 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id E42C24400D7; Sat, 16 Nov 2019 21:37:48 +0100 (CET) Date: Sat, 16 Nov 2019 21:37:48 +0100 From: Kevin Daudt To: alpine-mips-patches Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [PATCH] main/bash: fix wrong version in bash.pc Message-ID: <20191116203748.GC456781@alpha> References: <20191113213314.4CC756C86B@mx12.valuehost.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191113213314.4CC756C86B@mx12.valuehost.ru> User-Agent: Mutt/1.12.2 (2019-09-21) On Wed, Nov 13, 2019 at 08:14:14PM +0000, alpine-mips-patches wrote: > --- > main/bash/APKBUILD | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/main/bash/APKBUILD b/main/bash/APKBUILD > index 6cba929678..fafd574d82 100644 > --- a/main/bash/APKBUILD > +++ b/main/bash/APKBUILD > @@ -6,7 +6,7 @@ pkgver=5.0.11 > _patchlevel=${pkgver##*.} > _myver=${pkgver%.*} > _patchbase=${_myver/./} > -pkgrel=0 > +pkgrel=1 > pkgdesc="The GNU Bourne Again shell" > url="https://www.gnu.org/software/bash/bash.html" > arch="all" > @@ -55,6 +55,9 @@ prepare() { > done > > default_prepare > + > + # preventively set Version to please 'apk version --check' > + sed -i "s/@PACKAGE_VERSION@/$pkgver/" "$builddir"/support/bash.pc.in > } > > build() { > -- > 2.23.0 > This has been pushed. Thanks