Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-hall/
Date: Sat, 29 Oct 2022 23:06:29
Message-Id: 1667084783.025d31daf7b0823d68b1e033dc1067ff9f83a65c.xgqt@gentoo
1 commit: 025d31daf7b0823d68b1e033dc1067ff9f83a65c
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 29 22:59:03 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 29 23:06:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=025d31da
7
8 dev-scheme/guile-hall: new package; add 0.4.1
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 dev-scheme/guile-hall/Manifest | 1 +
13 dev-scheme/guile-hall/guile-hall-0.4.1.ebuild | 34 +++++++++++++++++++++++++++
14 dev-scheme/guile-hall/metadata.xml | 19 +++++++++++++++
15 3 files changed, 54 insertions(+)
16
17 diff --git a/dev-scheme/guile-hall/Manifest b/dev-scheme/guile-hall/Manifest
18 new file mode 100644
19 index 000000000000..1218810edb91
20 --- /dev/null
21 +++ b/dev-scheme/guile-hall/Manifest
22 @@ -0,0 +1 @@
23 +DIST guile-hall-0.4.1.tar.bz2 52701 BLAKE2B 0e6e8f680d1b6e76116c44bd2322d2f2e1e167bae857277d528cffa13079aff6a4dc796fce52c3f46baa737824f711e827b6940d7a30e4c21890154c032db24e SHA512 a7c150cab6df7e181a9eabe8ace8b32c3e70529ee4b2fcd63f34fa193ce64695e6da7a25aafe5bb0c068696e2d5dd0698ad9d62ac559ec350dca7eda5444d10d
24
25 diff --git a/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild
26 new file mode 100644
27 index 000000000000..e1b97e505f3d
28 --- /dev/null
29 +++ b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit autotools
37 +
38 +DESCRIPTION="Guile tooling to create and publish projects"
39 +HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-hall/"
40 +SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +RESTRICT="strip"
46 +
47 +RDEPEND="
48 + >=dev-scheme/guile-2.0.0:=
49 + dev-scheme/guile-config
50 +"
51 +DEPEND="${RDEPEND}"
52 +
53 +# guile generates ELF files without use of C or machine code
54 +# It's a portage's false positive. bug #677600
55 +QA_PREBUILT='*[.]go'
56 +
57 +src_prepare() {
58 + default
59 +
60 + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
61 + find "${S}" -name "*.scm" -exec touch {} + || die
62 +
63 + eautoreconf
64 +}
65
66 diff --git a/dev-scheme/guile-hall/metadata.xml b/dev-scheme/guile-hall/metadata.xml
67 new file mode 100644
68 index 000000000000..8e2e942bff64
69 --- /dev/null
70 +++ b/dev-scheme/guile-hall/metadata.xml
71 @@ -0,0 +1,19 @@
72 +<?xml version="1.0" encoding="UTF-8"?>
73 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
74 +
75 +<pkgmetadata>
76 + <maintainer type="project">
77 + <email>scheme@g.o</email>
78 + <name>Gentoo Scheme Project</name>
79 + </maintainer>
80 + <longdescription>
81 + Hall is a command-line application and a set of Guile libraries that allow
82 + you to quickly create and publish Guile projects. It allows you to
83 + transparently support the GNU build system, manage a project hierarchy and
84 + provides tight coupling to Guix.
85 + </longdescription>
86 + <upstream>
87 + <bugs-to>https://gitlab.com/a-sassmannshausen/guile-hall/-/issues/</bugs-to>
88 + <remote-id type="gitlab">a-sassmannshausen/guile-hall</remote-id>
89 + </upstream>
90 +</pkgmetadata>