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 1E0D4158086 for ; Fri, 26 Nov 2021 14:58:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43182E03EC; Fri, 26 Nov 2021 14:58:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 284CBE03EC for ; Fri, 26 Nov 2021 14:58:07 +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 1678C34310E for ; Fri, 26 Nov 2021 14:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA5161C6 for ; Fri, 26 Nov 2021 14:58:03 +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: <1637938681.e644651658ed11259be6c9a47454d4bb33b7be82.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/arc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/arc/Manifest dev-lang/arc/arc-3.2.ebuild dev-lang/arc/metadata.xml X-VCS-Directories: dev-lang/arc/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: e644651658ed11259be6c9a47454d4bb33b7be82 X-VCS-Branch: master Date: Fri, 26 Nov 2021 14:58:03 +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: 9a02690f-ba2d-4230-bdfb-f43c419c6450 X-Archives-Hash: 289d2cef1e305bc9b44f8e53899bb5c6 commit: e644651658ed11259be6c9a47454d4bb33b7be82 Author: Maciej Barć gentoo org> AuthorDate: Fri Nov 26 14:57:50 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Nov 26 14:58:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6446516 dev-lang/arc: new package; add version 3.2 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> dev-lang/arc/Manifest | 1 + dev-lang/arc/arc-3.2.ebuild | 36 ++++++++++++++++++++++++++++++++++++ dev-lang/arc/metadata.xml | 18 ++++++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/dev-lang/arc/Manifest b/dev-lang/arc/Manifest new file mode 100644 index 000000000000..a76b4454e806 --- /dev/null +++ b/dev-lang/arc/Manifest @@ -0,0 +1 @@ +DIST arc-3.2.tar 276480 BLAKE2B a25695e4b90160d03e534bc7dcff194e922b8463ed9984523ee89fca7d6423e7f0f296118fa3f6046d988e6047e87dc609a56869e19d09435403320b5882f2b8 SHA512 f79cdb9b591582683e18afce24da935e8ab04ba837c5d19ae971bf9ec4abc038e6aeb712f36ffd1111e8d9fbb7a09889425294a15d546e9e6226b296294cc2a1 diff --git a/dev-lang/arc/arc-3.2.ebuild b/dev-lang/arc/arc-3.2.ebuild new file mode 100644 index 000000000000..01145fff6bd4 --- /dev/null +++ b/dev-lang/arc/arc-3.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit wrapper + +DESCRIPTION="New dialect of Lisp, works well for web applications" +HOMEPAGE="http://www.arclanguage.org/" +SRC_URI="http://www.arclanguage.org/${PN}${PV}.tar -> ${P}.tar" +S="${WORKDIR}/${PN}${PV}" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-scheme/racket:=" +DEPEND="${RDEPEND}" + +src_compile() { + # byte-compile some racket modules + local mod + for mod in ac brackets ; do + raco make --vv ./${mod}.scm + done +} + +src_install() { + dodoc copyright how-to-run-news + rm copyright how-to-run-news || die + + insinto /usr/share/${PN} + doins -r * + + make_wrapper ${PN} "racket --load ./as.scm" /usr/share/${PN} +} diff --git a/dev-lang/arc/metadata.xml b/dev-lang/arc/metadata.xml new file mode 100644 index 000000000000..aafaf2458aea --- /dev/null +++ b/dev-lang/arc/metadata.xml @@ -0,0 +1,18 @@ + + + + + + scheme@gentoo.org + Gentoo Scheme Project + + + Arc is designed for exploratory programming: the kind where you + decide what to write by writing it. A good medium for exploratory + programming is one that makes programs brief and malleable, + so that's what we've aimed for. This is a medium for sketching + software. + Arc is unfinished. It's missing things you'd need to solve some + types of problems. But it works well for basic web apps. + +