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 76438158003 for ; Fri, 28 Jan 2022 20:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EC3C2BC003; Fri, 28 Jan 2022 20:59:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 811C12BC003 for ; Fri, 28 Jan 2022 20:59:13 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CF80343290 for ; Fri, 28 Jan 2022 20:59:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D04DA29 for ; Fri, 28 Jan 2022 20:59:10 +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: <1643403548.a36244ed3e7c2a462a0adf878203ae4a6fa2fd73.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/gambit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/gambit/gambit-4.8.8-r2.ebuild X-VCS-Directories: dev-scheme/gambit/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: a36244ed3e7c2a462a0adf878203ae4a6fa2fd73 X-VCS-Branch: master Date: Fri, 28 Jan 2022 20:59:10 +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: bbb486c9-541f-4db5-99d4-ee583d96c995 X-Archives-Hash: d80979c9c0540058d8fcec30d042886b commit: a36244ed3e7c2a462a0adf878203ae4a6fa2fd73 Author: Maciej Barć gentoo org> AuthorDate: Fri Jan 28 20:45:53 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Jan 28 20:59:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a36244ed dev-scheme/gambit: drop 4.8.8-r1 4.8.8-r1 & 4.8.8-r2 are the same, except r1 has different formatting of DEPEND and unstable KEYWORDS Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> dev-scheme/gambit/gambit-4.8.8-r2.ebuild | 63 -------------------------------- 1 file changed, 63 deletions(-) diff --git a/dev-scheme/gambit/gambit-4.8.8-r2.ebuild b/dev-scheme/gambit/gambit-4.8.8-r2.ebuild deleted file mode 100644 index acb5d61f3959..000000000000 --- a/dev-scheme/gambit/gambit-4.8.8-r2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit elisp-common - -MY_PV="${PV//./_}" -MY_P="${PN}-v${MY_PV}" - -DESCRIPTION="Gambit-C is a native Scheme to C compiler and interpreter" -HOMEPAGE="http://www.iro.umontreal.ca/~gambit/" -SRC_URI="http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v${PV%.*}/source/${MY_P}.tgz" - -LICENSE="|| ( Apache-2.0 LGPL-2.1 )" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" - -RDEPEND="ssl? ( - dev-libs/openssl:0= - )" -DEPEND=" - ${RDEPEND} - emacs? ( >=app-editors/emacs-23.1:* ) -" - -SITEFILE="50gambit-gentoo.el" - -S="${WORKDIR}/${MY_P}" #-devel - -IUSE="emacs ssl static" - -src_configure() { - econf \ - $(use_enable !static shared) \ - $(use_enable ssl openssl) \ - --enable-gnu-gcc-specific-options \ - --enable-gnu-gcc-no-strict-aliasing \ - --enable-single-host \ - --disable-absolute-shared-libs \ - --enable-type-checking -} - -src_compile() { - emake bootstrap - - if use emacs; then - elisp-compile misc/*.el || die - fi -} - -src_install() { - emake DESTDIR="${D}" install - keepdir /usr/share/"${MY_PN}" -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -}