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 AA542158020 for ; Sat, 29 Oct 2022 23:06:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71850E08FA; Sat, 29 Oct 2022 23:06:28 +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 55371E08FA for ; Sat, 29 Oct 2022 23:06:28 +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 38763340C9C for ; Sat, 29 Oct 2022 23:06:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F60C692 for ; Sat, 29 Oct 2022 23:06:25 +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: <1667084783.025d31daf7b0823d68b1e033dc1067ff9f83a65c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-hall/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile-hall/Manifest dev-scheme/guile-hall/guile-hall-0.4.1.ebuild dev-scheme/guile-hall/metadata.xml X-VCS-Directories: dev-scheme/guile-hall/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 025d31daf7b0823d68b1e033dc1067ff9f83a65c X-VCS-Branch: master Date: Sat, 29 Oct 2022 23:06:25 +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: 1d9047c9-0086-4b06-8b34-07455f679d62 X-Archives-Hash: 88678890ca914518af7b34690a344a51 commit: 025d31daf7b0823d68b1e033dc1067ff9f83a65c Author: Maciej Barć gentoo org> AuthorDate: Sat Oct 29 22:59:03 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Oct 29 23:06:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=025d31da dev-scheme/guile-hall: new package; add 0.4.1 Signed-off-by: Maciej Barć gentoo.org> dev-scheme/guile-hall/Manifest | 1 + dev-scheme/guile-hall/guile-hall-0.4.1.ebuild | 34 +++++++++++++++++++++++++++ dev-scheme/guile-hall/metadata.xml | 19 +++++++++++++++ 3 files changed, 54 insertions(+) diff --git a/dev-scheme/guile-hall/Manifest b/dev-scheme/guile-hall/Manifest new file mode 100644 index 000000000000..1218810edb91 --- /dev/null +++ b/dev-scheme/guile-hall/Manifest @@ -0,0 +1 @@ +DIST guile-hall-0.4.1.tar.bz2 52701 BLAKE2B 0e6e8f680d1b6e76116c44bd2322d2f2e1e167bae857277d528cffa13079aff6a4dc796fce52c3f46baa737824f711e827b6940d7a30e4c21890154c032db24e SHA512 a7c150cab6df7e181a9eabe8ace8b32c3e70529ee4b2fcd63f34fa193ce64695e6da7a25aafe5bb0c068696e2d5dd0698ad9d62ac559ec350dca7eda5444d10d diff --git a/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild new file mode 100644 index 000000000000..e1b97e505f3d --- /dev/null +++ b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Guile tooling to create and publish projects" +HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-hall/" +SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" + +RDEPEND=" + >=dev-scheme/guile-2.0.0:= + dev-scheme/guile-config +" +DEPEND="${RDEPEND}" + +# guile generates ELF files without use of C or machine code +# It's a portage's false positive. bug #677600 +QA_PREBUILT='*[.]go' + +src_prepare() { + default + + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 + find "${S}" -name "*.scm" -exec touch {} + || die + + eautoreconf +} diff --git a/dev-scheme/guile-hall/metadata.xml b/dev-scheme/guile-hall/metadata.xml new file mode 100644 index 000000000000..8e2e942bff64 --- /dev/null +++ b/dev-scheme/guile-hall/metadata.xml @@ -0,0 +1,19 @@ + + + + + + scheme@gentoo.org + Gentoo Scheme Project + + + Hall is a command-line application and a set of Guile libraries that allow + you to quickly create and publish Guile projects. It allows you to + transparently support the GNU build system, manage a project hierarchy and + provides tight coupling to Guix. + + + https://gitlab.com/a-sassmannshausen/guile-hall/-/issues/ + a-sassmannshausen/guile-hall + +