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 420D4158094 for ; Sat, 16 Jul 2022 13:06:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26A66E0964; Sat, 16 Jul 2022 13:06:55 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E7D9E0964 for ; Sat, 16 Jul 2022 13:06:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B075F3410D1 for ; Sat, 16 Jul 2022 13:06:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C566553B for ; Sat, 16 Jul 2022 13:06:51 +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: <1657976743.96aca306fff2632ae1c41f010f6a9d69e587120c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/chibi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/chibi/chibi-9999.ebuild X-VCS-Directories: dev-scheme/chibi/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 96aca306fff2632ae1c41f010f6a9d69e587120c X-VCS-Branch: master Date: Sat, 16 Jul 2022 13:06:51 +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: bbc9ebeb-b665-4d13-bc89-4b09e7ea76b8 X-Archives-Hash: 38666571e3491251cca96208327fb1fc commit: 96aca306fff2632ae1c41f010f6a9d69e587120c Author: Maciej Barć gentoo org> AuthorDate: Sat Jul 16 13:05:43 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Jul 16 13:05:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96aca306 dev-scheme/chibi: sync the live version Signed-off-by: Maciej Barć gentoo.org> dev-scheme/chibi/chibi-9999.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/dev-scheme/chibi/chibi-9999.ebuild b/dev-scheme/chibi/chibi-9999.ebuild index 189f61eb059f..3860b98dfaa5 100644 --- a/dev-scheme/chibi/chibi-9999.ebuild +++ b/dev-scheme/chibi/chibi-9999.ebuild @@ -1,20 +1,25 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +MY_PN=${PN}-scheme +MY_PV=${PV} # May be tagged incorrectly, see bug #858245 +MY_P=${MY_PN}-${MY_PV} + inherit toolchain-funcs DESCRIPTION="Minimal Scheme implementation for use as an extension language" HOMEPAGE="http://synthcode.com/scheme/chibi/" -if [[ "${PV}" == *9999* ]]; then +if [[ ${PV} == *9999* ]] ; then inherit git-r3 - EGIT_REPO_URI="https://github.com/ashinn/${PN}-scheme.git" + EGIT_REPO_URI="https://github.com/ashinn/${MY_PN}.git" else - SRC_URI="https://github.com/ashinn/${PN}-scheme/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/ashinn/${MY_PN}/archive/${MY_PV}.tar.gz + -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-scheme-${PV}" + S="${WORKDIR}"/${MY_P} fi LICENSE="BSD" @@ -27,12 +32,12 @@ src_configure() { export LIBDIR="${EPREFIX}/usr/$(get_libdir)" export SOLIBDIR="${EPREFIX}/usr/$(get_libdir)" - # if ldconfig (stored in LDCONFIG variable) exists it is ran + # If "ldconfig" exists it is ran, overwrite it with "LDCONFIG" variable. export LDCONFIG="0" } src_install() { default - dosym chibi-scheme /usr/bin/chibi + dosym ${MY_PN} /usr/bin/${PN} }