Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/yconf/
Date: Wed, 02 Oct 2019 14:54:05
Message-Id: 1570028030.36ff2540085181b0af158026084b861f38f40492.hanno@gentoo
1 commit: 36ff2540085181b0af158026084b861f38f40492
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 14:53:50 2019 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 14:53:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ff2540
7
8 dev-erlang/yconf: Initial commit.
9
10 Dependency of new ejabberd.
11 Ebuild from vampik's overlay.
12
13 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
14 Package-Manager: Portage-2.3.76, Repoman-2.3.17
15
16 dev-erlang/yconf/Manifest | 1 +
17 dev-erlang/yconf/metadata.xml | 10 ++++++++++
18 dev-erlang/yconf/yconf-1.0.1.ebuild | 21 +++++++++++++++++++++
19 3 files changed, 32 insertions(+)
20
21 diff --git a/dev-erlang/yconf/Manifest b/dev-erlang/yconf/Manifest
22 new file mode 100644
23 index 00000000000..63b6506e1f7
24 --- /dev/null
25 +++ b/dev-erlang/yconf/Manifest
26 @@ -0,0 +1 @@
27 +DIST yconf-1.0.1.tar.gz 221704 BLAKE2B eec5ad6467af253c62523ebe431a7e117b5e76d1a0273792c5af4ac522ab10b3796910f11591a16e056ff368877c047d0ad9e47f63096a86de7a5d3ee9636ddf SHA512 c0b1a6e9534ee7d78963bd19df3f89622a719e2b5cc9c6299f4d39f08b5c8b8923f8697d57bd315e6cc0b41863adef2a8141f9d4e7d58bb0ade57c86f2835c1e
28
29 diff --git a/dev-erlang/yconf/metadata.xml b/dev-erlang/yconf/metadata.xml
30 new file mode 100644
31 index 00000000000..aaa5b90cf47
32 --- /dev/null
33 +++ b/dev-erlang/yconf/metadata.xml
34 @@ -0,0 +1,10 @@
35 +<?xml version='1.0' encoding='UTF-8'?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>hanno@g.o</email>
40 + </maintainer>
41 + <upstream>
42 + <remote-id type="github">processone/yconf</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/dev-erlang/yconf/yconf-1.0.1.ebuild b/dev-erlang/yconf/yconf-1.0.1.ebuild
47 new file mode 100644
48 index 00000000000..e4efd25c0e0
49 --- /dev/null
50 +++ b/dev-erlang/yconf/yconf-1.0.1.ebuild
51 @@ -0,0 +1,21 @@
52 +# Copyright 1999-2019 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +inherit rebar
58 +
59 +DESCRIPTION="YAML configuration processor"
60 +HOMEPAGE="https://github.com/processone/yconf"
61 +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz
62 + -> ${P}.tar.gz"
63 +
64 +LICENSE="Apache-2.0"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
67 +
68 +DEPEND=">=dev-lang/erlang-17.1
69 + >=dev-erlang/fast_yaml-1.0.20"
70 +RDEPEND="${DEPEND}"
71 +
72 +DOCS=( CHANGELOG.md )