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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 97ABF15808B for ; Sun, 6 Mar 2022 13:36:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8374FE08F1; Sun, 6 Mar 2022 13:36:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66BC3E08F1 for ; Sun, 6 Mar 2022 13:36:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 168BC343280 for ; Sun, 6 Mar 2022 13:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73BEB2EB for ; Sun, 6 Mar 2022 13:36:34 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1646573644.60500ef80f4bfc1040288739af9c7115c822138c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/haxe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/haxe/haxe-4.2.4-r2.ebuild dev-lang/haxe/haxe-4.2.4-r3.ebuild X-VCS-Directories: dev-lang/haxe/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 60500ef80f4bfc1040288739af9c7115c822138c X-VCS-Branch: master Date: Sun, 6 Mar 2022 13:36:34 +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: aa14b2e7-d76f-4fd7-b164-cbc95dd1b33f X-Archives-Hash: b12d4c89bec443be7e74092ebbc70b2e commit: 60500ef80f4bfc1040288739af9c7115c822138c Author: Maciej Barć gentoo org> AuthorDate: Sun Mar 6 13:34:04 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Mar 6 13:34:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60500ef8 dev-lang/haxe: fix build Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> .../haxe/{haxe-4.2.4-r2.ebuild => haxe-4.2.4-r3.ebuild} | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/dev-lang/haxe/haxe-4.2.4-r2.ebuild b/dev-lang/haxe/haxe-4.2.4-r3.ebuild similarity index 86% rename from dev-lang/haxe/haxe-4.2.4-r2.ebuild rename to dev-lang/haxe/haxe-4.2.4-r3.ebuild index 6a8441c77ab2..e9961fd90005 100644 --- a/dev-lang/haxe/haxe-4.2.4-r2.ebuild +++ b/dev-lang/haxe/haxe-4.2.4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,7 +6,7 @@ EAPI=8 DESCRIPTION="Multi-target universal programming language" HOMEPAGE="https://haxe.org/" -if [[ "${PV}" == *9999* ]]; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/HaxeFoundation/haxe.git" else @@ -56,18 +56,11 @@ src_configure() { } src_compile() { - local mymakeargs=( - BRANCH="" - COMMIT_DATE="" - COMMIT_SHA="" - OCAMLOPT=${OCAMLOPT} - INSTALL_DIR=/usr - ) - emake -j1 + emake -j1 BRANCH="" COMMIT_DATE="" COMMIT_SHA="" \ + OCAMLOPT="${OCAMLOPT}" INSTALL_DIR=/usr } src_install() { emake DESTDIR="${D}" INSTALL_DIR=/usr install - dodoc *.md }