From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 80640138334 for ; Fri, 5 Jul 2019 20:17:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BE4AE08C8; Fri, 5 Jul 2019 20:17:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62F11E08C8 for ; Fri, 5 Jul 2019 20:17:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 47C863471BA for ; Fri, 5 Jul 2019 20:17:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBFCC6D5 for ; Fri, 5 Jul 2019 20:17:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1562357820.85f00aa1698d24bef393b6dfeb3c5a5c8b1a26d9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/omake/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/omake/omake-0.10.2.ebuild dev-util/omake/omake-0.10.3.ebuild dev-util/omake/omake-0.9.8.6.0_rc1.ebuild X-VCS-Directories: dev-util/omake/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 85f00aa1698d24bef393b6dfeb3c5a5c8b1a26d9 X-VCS-Branch: master Date: Fri, 5 Jul 2019 20:17:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b9db5a9a-237f-4096-857a-27bd11e00cdc X-Archives-Hash: f595d323be68af62cdf2121c73d9f073 commit: 85f00aa1698d24bef393b6dfeb3c5a5c8b1a26d9 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 14 08:08:48 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 5 20:17:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f00aa1 dev-util/omake: Replace STRIP_MASK with RESTRICT=strip Closes: https://bugs.gentoo.org/651452 Signed-off-by: Michał Górny gentoo.org> dev-util/omake/omake-0.10.2.ebuild | 5 +++-- dev-util/omake/omake-0.10.3.ebuild | 5 +++-- dev-util/omake/omake-0.9.8.6.0_rc1.ebuild | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/dev-util/omake/omake-0.10.2.ebuild b/dev-util/omake/omake-0.10.2.ebuild index 46e34cdb6a5..d8f2abbc56c 100644 --- a/dev-util/omake/omake-0.10.2.ebuild +++ b/dev-util/omake/omake-0.10.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,6 +20,8 @@ DEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?] readline? ( >=sys-libs/readline-4.3:0= )" RDEPEND="${DEPEND}" +RESTRICT="!ocamlopt? ( strip )" + src_prepare() { epatch \ "${FILESDIR}/${P}-cflags.patch" @@ -45,5 +47,4 @@ src_install() { dodoc doc/ps/omake-doc.{pdf,ps} doc/txt/omake-doc.txt dohtml -r doc/html/* fi - use ocamlopt || export STRIP_MASK="*/bin/*" } diff --git a/dev-util/omake/omake-0.10.3.ebuild b/dev-util/omake/omake-0.10.3.ebuild index 019e3e3775e..430979c1cfb 100644 --- a/dev-util/omake/omake-0.10.3.ebuild +++ b/dev-util/omake/omake-0.10.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,6 +20,8 @@ DEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?] readline? ( >=sys-libs/readline-4.3:0= )" RDEPEND="${DEPEND}" +RESTRICT="!ocamlopt? ( strip )" + src_prepare() { epatch \ "${FILESDIR}/${PN}-0.10.2-cflags.patch" @@ -45,5 +47,4 @@ src_install() { dodoc doc/ps/omake-doc.{pdf,ps} doc/txt/omake-doc.txt dohtml -r doc/html/* fi - use ocamlopt || export STRIP_MASK="*/bin/*" } diff --git a/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild b/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild index daa7fd04918..2ca918e00a1 100644 --- a/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild +++ b/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -21,6 +21,8 @@ DEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?] readline? ( >=sys-libs/readline-4.3:0= )" RDEPEND="${DEPEND}" +RESTRICT="!ocamlopt? ( strip )" + S=${WORKDIR}/${PN}-${MY_PV%-*} use_boolean() { @@ -77,5 +79,4 @@ src_install() { dodoc doc/ps/omake-doc.{pdf,ps} doc/txt/omake-doc.txt dohtml -r doc/html/* fi - use ocamlopt || export STRIP_MASK="*/bin/*" }