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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A4D11382C5 for ; Sun, 6 Jun 2021 08:14:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1EE6E08A8; Sun, 6 Jun 2021 08:14:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98497E08A8 for ; Sun, 6 Jun 2021 08:14:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D8D9340C54 for ; Sun, 6 Jun 2021 08:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 863A97A7 for ; Sun, 6 Jun 2021 08:14:30 +0000 (UTC) From: "Jian Lin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jian Lin" Message-ID: <1622899918.1c090b0a1916933e2a1e52b9ae54e7d265b5582f.jian@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lisp/arc/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lisp/arc/Manifest dev-lisp/arc/arc-3.2.ebuild dev-lisp/arc/metadata.xml X-VCS-Directories: dev-lisp/arc/ X-VCS-Committer: jian X-VCS-Committer-Name: Jian Lin X-VCS-Revision: 1c090b0a1916933e2a1e52b9ae54e7d265b5582f X-VCS-Branch: master Date: Sun, 6 Jun 2021 08:14:30 +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: 88bee2a9-3e00-41ae-b353-5b2ee2ade8eb X-Archives-Hash: 74de87dcdac641dafef21cca9c4c5270 commit: 1c090b0a1916933e2a1e52b9ae54e7d265b5582f Author: Maciej Barć riseup net> AuthorDate: Sat Jun 5 13:31:58 2021 +0000 Commit: Jian Lin outlook com> CommitDate: Sat Jun 5 13:31:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c090b0a dev-lisp/arc: add version 3.2 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Maciej Barć riseup.net> dev-lisp/arc/Manifest | 1 + dev-lisp/arc/arc-3.2.ebuild | 32 ++++++++++++++++++++++++++++++++ dev-lisp/arc/metadata.xml | 17 +++++++++++++++++ 3 files changed, 50 insertions(+) diff --git a/dev-lisp/arc/Manifest b/dev-lisp/arc/Manifest new file mode 100644 index 000000000..a76b4454e --- /dev/null +++ b/dev-lisp/arc/Manifest @@ -0,0 +1 @@ +DIST arc-3.2.tar 276480 BLAKE2B a25695e4b90160d03e534bc7dcff194e922b8463ed9984523ee89fca7d6423e7f0f296118fa3f6046d988e6047e87dc609a56869e19d09435403320b5882f2b8 SHA512 f79cdb9b591582683e18afce24da935e8ab04ba837c5d19ae971bf9ec4abc038e6aeb712f36ffd1111e8d9fbb7a09889425294a15d546e9e6226b296294cc2a1 diff --git a/dev-lisp/arc/arc-3.2.ebuild b/dev-lisp/arc/arc-3.2.ebuild new file mode 100644 index 000000000..cf39b3457 --- /dev/null +++ b/dev-lisp/arc/arc-3.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit wrapper + +DESCRIPTION="New dialect of Lisp, works well for basic web apps" +HOMEPAGE="http://www.arclanguage.org/" +SRC_URI="http://www.arclanguage.org/${PN}${PV}.tar -> ${P}.tar" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-scheme/racket" + +S="${WORKDIR}/${PN}${PV}" + +src_compile() { + : +} + +src_install() { + dodoc "copyright" "how-to-run-news" + rm "copyright" "how-to-run-news" || die + + insinto "/usr/share/arc" + doins -r * + + make_wrapper "${PN}" "racket -f ./as.scm" "/usr/share/arc" +} diff --git a/dev-lisp/arc/metadata.xml b/dev-lisp/arc/metadata.xml new file mode 100644 index 000000000..adac8fa34 --- /dev/null +++ b/dev-lisp/arc/metadata.xml @@ -0,0 +1,17 @@ + + + + + xgqt@riseup.net + Maciej Barć + + + 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. + +