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-config/
Date: Sat, 29 Oct 2022 23:06:29
Message-Id: 1667084783.a4526fa185864c10c378bc2d824b878fa83e03e5.xgqt@gentoo
1 commit: a4526fa185864c10c378bc2d824b878fa83e03e5
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 29 22:53:05 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=a4526fa1
7
8 dev-scheme/guile-config: new package; add 0.5.1
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 dev-scheme/guile-config/Manifest | 1 +
13 dev-scheme/guile-config/guile-config-0.5.1.ebuild | 31 +++++++++++++++++++++++
14 dev-scheme/guile-config/metadata.xml | 22 ++++++++++++++++
15 3 files changed, 54 insertions(+)
16
17 diff --git a/dev-scheme/guile-config/Manifest b/dev-scheme/guile-config/Manifest
18 new file mode 100644
19 index 000000000000..3eed67e46419
20 --- /dev/null
21 +++ b/dev-scheme/guile-config/Manifest
22 @@ -0,0 +1 @@
23 +DIST guile-config-0.5.1.tar.bz2 54872 BLAKE2B 79c5995410d2af1b4f542eca925a8130cbbfe6c6d58606cdb58e4f3863714f1f7803b253f367b30da1614cc2f86a038760764043e72c50972fb74ad71b8f9f21 SHA512 5f7bc95a4c010e14b28f72f980c003caa0b08cca3b5e927dfeb0ad8e6a0751fc51c22e21dee5c0aa1531bc5c40ee26f95960d342647f23db3d54de12518a431a
24
25 diff --git a/dev-scheme/guile-config/guile-config-0.5.1.ebuild b/dev-scheme/guile-config/guile-config-0.5.1.ebuild
26 new file mode 100644
27 index 000000000000..45adef20bac6
28 --- /dev/null
29 +++ b/dev-scheme/guile-config/guile-config-0.5.1.ebuild
30 @@ -0,0 +1,31 @@
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 application configuration parsing library"
39 +HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-config/"
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=">=dev-scheme/guile-2.0.0:="
48 +DEPEND="${RDEPEND}"
49 +
50 +# guile generates ELF files without use of C or machine code
51 +# It's a portage's false positive. bug #677600
52 +QA_PREBUILT='*[.]go'
53 +
54 +src_prepare() {
55 + default
56 +
57 + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
58 + find "${S}" -name "*.scm" -exec touch {} + || die
59 +
60 + eautoreconf
61 +}
62
63 diff --git a/dev-scheme/guile-config/metadata.xml b/dev-scheme/guile-config/metadata.xml
64 new file mode 100644
65 index 000000000000..b8ab9e66b6af
66 --- /dev/null
67 +++ b/dev-scheme/guile-config/metadata.xml
68 @@ -0,0 +1,22 @@
69 +<?xml version="1.0" encoding="UTF-8"?>
70 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
71 +
72 +<pkgmetadata>
73 + <maintainer type="project">
74 + <email>scheme@g.o</email>
75 + <name>Gentoo Scheme Project</name>
76 + </maintainer>
77 + <longdescription>
78 + Guile Config is a library providing a declarative approach to application
79 + configuration specification. The library provides clean configuration
80 + declaration forms, and processors that take care of: configuration file
81 + creation; configuration file parsing; command-line parameter parsing using
82 + getopt-long; basic GNU command-line parameter generation (--help, --usage,
83 + --version); automatic output generation for the above command-line
84 + parameters.
85 + </longdescription>
86 + <upstream>
87 + <bugs-to>https://gitlab.com/a-sassmannshausen/guile-config/-/issues/</bugs-to>
88 + <remote-id type="gitlab">a-sassmannshausen/guile-config</remote-id>
89 + </upstream>
90 +</pkgmetadata>