diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-10-30 00:59:03 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-10-30 01:06:23 +0200 |
commit | 025d31daf7b0823d68b1e033dc1067ff9f83a65c (patch) | |
tree | 0fb3c20190d30f721336f9d6e0f33581538a1eb5 /dev-scheme/guile-hall | |
parent | dev-scheme/guile-config: new package; add 0.5.1 (diff) | |
download | gentoo-025d31daf7b0823d68b1e033dc1067ff9f83a65c.tar.gz gentoo-025d31daf7b0823d68b1e033dc1067ff9f83a65c.tar.bz2 gentoo-025d31daf7b0823d68b1e033dc1067ff9f83a65c.zip |
dev-scheme/guile-hall: new package; add 0.4.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme/guile-hall')
-rw-r--r-- | dev-scheme/guile-hall/Manifest | 1 | ||||
-rw-r--r-- | dev-scheme/guile-hall/guile-hall-0.4.1.ebuild | 34 | ||||
-rw-r--r-- | dev-scheme/guile-hall/metadata.xml | 19 |
3 files changed, 54 insertions, 0 deletions
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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>scheme@gentoo.org</email> + <name>Gentoo Scheme Project</name> + </maintainer> + <longdescription> + 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. + </longdescription> + <upstream> + <bugs-to>https://gitlab.com/a-sassmannshausen/guile-hall/-/issues/</bugs-to> + <remote-id type="gitlab">a-sassmannshausen/guile-hall</remote-id> + </upstream> +</pkgmetadata> |