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 7DBFBF85A80 for ; Fri, 18 Jan 2019 12:51:17 +0000 (UTC) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 3CB02533F2 for ; Fri, 18 Jan 2019 15:51:13 +0300 (MSK) From: alpine-mips-patches Date: Wed, 18 Jan 2019 12:48:57 +0000 Subject: [alpine-aports] [PATCH] testing/ocaml-menhir: add missing runtime dependency To: alpine-aports@lists.alpinelinux.org Message-Id: <20190118125113.3CB02533F2@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: When installed with ocamlfind (which is the default and this aport follows it), menhir needs the tool at runtime as well to implement certain options. Otherwise 'menhir --suggest-menhirLib' fails: sh: ocamlfind: not found Also sync the arch= list with the ocaml aport. --- testing/ocaml-menhir/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/ocaml-menhir/APKBUILD b/testing/ocaml-menhir/APKBUILD index 2670c05811..eb90c087b6 100644 --- a/testing/ocaml-menhir/APKBUILD +++ b/testing/ocaml-menhir/APKBUILD @@ -4,11 +4,12 @@ pkgname=ocaml-menhir _pkgname=menhir # NOTE: Check supported version in Reason before upgrading! pkgver=20171013 -pkgrel=2 +pkgrel=3 pkgdesc="LR(1) parser generator for OCaml" url="http://gallium.inria.fr/~fpottier/menhir/" -arch="all !x86 !armhf !armv7 !s390x" # limited by ocaml aport +arch="aarch64 ppc64le x86_64" # limited by ocaml aport license="GPL-2.0-only" +depends="ocaml-findlib" makedepends="ocaml ocaml-findlib ocaml-ocamlbuild-dev ocamlbuild" options="!check" # no tests provided subpackages="$pkgname-dev $pkgname-doc" -- 2.20.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---