Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 46BFD78187F for ; Sat, 16 Nov 2019 19:57:42 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id 1480D4400D7; Sat, 16 Nov 2019 20:57:41 +0100 (CET) Date: Sat, 16 Nov 2019 20:57:41 +0100 From: Kevin Daudt To: alpine-mips-patches Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [PATCH] main/procps: fix wrong version in libprocps.pc Message-ID: <20191116195741.GA456781@alpha> References: <20191113213314.79A096C86F@mx12.valuehost.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191113213314.79A096C86F@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/procps/APKBUILD | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/main/procps/APKBUILD b/main/procps/APKBUILD > index 616b7a1e02..0440389251 100644 > --- a/main/procps/APKBUILD > +++ b/main/procps/APKBUILD > @@ -1,7 +1,7 @@ > # Maintainer: Natanael Copa > pkgname=procps > pkgver=3.3.15 > -pkgrel=0 > +pkgrel=1 > pkgdesc="Utilities for monitoring your system and processes on your system" > url="https://gitlab.com/procps-ng/procps" > arch="all" > @@ -19,6 +19,12 @@ prepare() { > default_prepare > > cd "$builddir" > + # force misc/git-version-gen use the correct version (instead of UNKNOWN); > + # however only do it if the upstream tarball really misses it. > + if test ! -f .tarball_version ; then > + rm -f .version > + echo "$pkgver" > .tarball-version > + fi > ./autogen.sh > } > > -- > 2.23.0 > Thanks, this has been pushed. Kevin