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 4A8E615808B for ; Fri, 16 Feb 2024 13:40:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 749832BC013; Fri, 16 Feb 2024 13:40:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 595BF2BC013 for ; Fri, 16 Feb 2024 13:40:24 +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 8DC2833BF39 for ; Fri, 16 Feb 2024 13:40:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F41D113DB for ; Fri, 16 Feb 2024 13:40:21 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1708090781.246c63d55b1fed5b17d04fc2faedd49f34e5da17.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/stklos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/stklos/stklos-2.00.ebuild X-VCS-Directories: dev-scheme/stklos/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 246c63d55b1fed5b17d04fc2faedd49f34e5da17 X-VCS-Branch: master Date: Fri, 16 Feb 2024 13:40:21 +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: c9c367b6-cabe-4184-b113-5565a9bf1a54 X-Archives-Hash: b9ef3c96c22a89914027fd60d2e18810 commit: 246c63d55b1fed5b17d04fc2faedd49f34e5da17 Author: Akinori Hattori gentoo org> AuthorDate: Fri Feb 16 13:39:41 2024 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Feb 16 13:39:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246c63d5 dev-scheme/stklos: drop old Signed-off-by: Akinori Hattori gentoo.org> dev-scheme/stklos/stklos-2.00.ebuild | 58 ------------------------------------ 1 file changed, 58 deletions(-) diff --git a/dev-scheme/stklos/stklos-2.00.ebuild b/dev-scheme/stklos/stklos-2.00.ebuild deleted file mode 100644 index 90fa3ef0c997..000000000000 --- a/dev-scheme/stklos/stklos-2.00.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -inherit autotools toolchain-funcs - -DESCRIPTION="Fast and light Scheme implementation" -HOMEPAGE="https://stklos.net/" -SRC_URI="https://${PN}.net/download/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="threads" - -RDEPEND="dev-libs/boehm-gc[threads?] - dev-libs/gmp:= - dev-libs/libffi:= - dev-libs/libpcre2:=" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) -DOCS=( AUTHORS ChangeLog NEWS.md PACKAGES-USED {PORTING-NOTES,README}.md SUPPORTED-SRFIS ) - -src_prepare() { - default - - if ! use threads; then - sed -i '/threads.adoc/d' doc/refman/${PN}.adoc - rm -f tests/srfis/2{16,30}.stk - fi - eautoreconf - export LD="$(tc-getCC)" - export STKLOS_CONFDIR="${T}"/.config/${PN} -} - -src_configure() { - econf \ - --enable-threads=$(usex threads pthreads none) \ - --without-provided-bignum \ - --without-provided-ffi \ - --without-provided-gc \ - --without-provided-regexp -} - -src_compile() { - emake -} - -src_test() { - emake -j1 check -} - -src_install() { - default - einstalldocs -}