X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 26B1F5C667C for ; Mon, 3 Dec 2018 10:54:13 +0000 (GMT) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 332494C4A6 for ; Mon, 3 Dec 2018 13:54:11 +0300 (MSK) From: alpine-mips-patches Date: Mon, 3 Dec 2018 10:26:31 +0000 Subject: [alpine-aports] [PATCH] community/pdsh: fix build without git installed To: alpine-aports@lists.alpinelinux.org Message-Id: <20181203105411.332494C4A6@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Insert package version with sed instead of relying on 'git describe'. --- community/pdsh/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/pdsh/APKBUILD b/community/pdsh/APKBUILD index 8f89dcdb4b..eeb4f2f28a 100644 --- a/community/pdsh/APKBUILD +++ b/community/pdsh/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jakub Jirutka pkgname=pdsh pkgver=2.33 -pkgrel=0 +pkgrel=1 pkgdesc="A high performance, parallel remote shell utility" url="https://github.com/chaos/pdsh" arch="all" @@ -20,6 +20,7 @@ prepare() { default_prepare cd "$builddir" + sed -i "s|m4_esyscmd(\[git describe .*\])|[$pkgver]|" configure.ac ./bootstrap } -- 2.19.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---