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 A5BEA158043 for ; Sun, 14 Apr 2024 16:04:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E90E9E29F4; Sun, 14 Apr 2024 16:04:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A87E4E29F4 for ; Sun, 14 Apr 2024 16:04:41 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F038634133B for ; Sun, 14 Apr 2024 16:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DB411620 for ; Sun, 14 Apr 2024 16:04:39 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713110558.b45d8bedc653828a0f72654a83fa7441b03622b9.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gprolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gprolog/gprolog-1.5.0-r1.ebuild dev-lang/gprolog/gprolog-1.5.0.ebuild X-VCS-Directories: dev-lang/gprolog/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b45d8bedc653828a0f72654a83fa7441b03622b9 X-VCS-Branch: master Date: Sun, 14 Apr 2024 16:04:39 +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: 41319117-50f6-47f7-83c0-f4565ea5d2c5 X-Archives-Hash: dbd87ed86430b5c527e171e7cc5014d4 commit: b45d8bedc653828a0f72654a83fa7441b03622b9 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Mar 26 18:58:33 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Apr 14 16:02:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b45d8bed dev-lang/gprolog: EAPI8 bump, minor improvements Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/35933 Signed-off-by: Arthur Zamarin gentoo.org> ...prolog-1.5.0.ebuild => gprolog-1.5.0-r1.ebuild} | 30 ++++++++++++---------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/dev-lang/gprolog/gprolog-1.5.0.ebuild b/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild similarity index 70% rename from dev-lang/gprolog/gprolog-1.5.0.ebuild rename to dev-lang/gprolog/gprolog-1.5.0-r1.ebuild index e5959b8c30f4..29233aa9547b 100644 --- a/dev-lang/gprolog/gprolog-1.5.0.ebuild +++ b/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools flag-o-matic toolchain-funcs -DESCRIPTION="A native Prolog compiler with constraint solving over finite domains (FD)" +DESCRIPTION="Native Prolog compiler with constraint solving over finite domains (FD)" HOMEPAGE="http://www.gprolog.org/" SRC_URI="http://www.gprolog.org/${P}.tar.gz" S="${WORKDIR}"/${P} @@ -25,12 +25,12 @@ PATCHES=( src_prepare() { default - cd "${S}"/src + cd "${S}"/src || die eautoconf } src_configure() { - CFLAGS_MACHINE="`get-flag -march` `get-flag -mcpu` `get-flag -mtune`" + CFLAGS_MACHINE="$(get-flag -march) $(get-flag -mcpu) $(get-flag -mtune)" use debug && append-flags -DDEBUG @@ -52,16 +52,18 @@ src_configure() { fi cd "${S}"/src || die - econf \ - AS="${AS}" \ - CFLAGS_MACHINE="${CFLAGS_MACHINE}" \ - --with-c-flags="${CFLAGS}" \ - --with-install-dir="${EPREFIX}"/usr/$(get_libdir)/${P} \ - --with-links-dir="${EPREFIX}"/usr/bin \ - --enable-regs=${gprolog_use_regs} \ - $(use_with doc doc-dir "${EPREFIX}"/usr/share/doc/${PF}) \ - $(use_with doc html-dir "${EPREFIX}"/usr/share/doc/${PF}/html) \ + local myeconfargs=( + AS="${AS}" + CFLAGS_MACHINE="${CFLAGS_MACHINE}" + --with-c-flags="${CFLAGS}" + --with-install-dir="${EPREFIX}"/usr/$(get_libdir)/${P} + --with-links-dir="${EPREFIX}"/usr/bin + --enable-regs=${gprolog_use_regs} + $(use_with doc doc-dir "${EPREFIX}"/usr/share/doc/${PF}) + $(use_with doc html-dir "${EPREFIX}"/usr/share/doc/${PF}/html) $(use_with examples examples-dir "${EPREFIX}"/usr/share/doc/${PF}/examples) + ) + econf "${myeconfargs[@]}" } src_compile() {