Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTP id 5ACFF78104D for ; Wed, 13 Nov 2019 21:33:14 +0000 (UTC) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 79A096C86F for ; Thu, 14 Nov 2019 00:33:14 +0300 (MSK) From: alpine-mips-patches Date: Wed, 13 Nov 2019 20:14:14 +0000 Subject: [PATCH] main/procps: fix wrong version in libprocps.pc To: alpine-aports@lists.alpinelinux.org Message-Id: <20191113213314.79A096C86F@mx12.valuehost.ru> --- 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