diff options
author | Hanno <hanno@gentoo.org> | 2019-10-02 16:53:50 +0200 |
---|---|---|
committer | Hanno <hanno@gentoo.org> | 2019-10-02 16:53:50 +0200 |
commit | 36ff2540085181b0af158026084b861f38f40492 (patch) | |
tree | 2d864a299f86e6908a50626dfd3d2d13eb5a2388 /dev-erlang | |
parent | www-client/opera-beta: Old (diff) | |
download | gentoo-36ff2540085181b0af158026084b861f38f40492.tar.gz gentoo-36ff2540085181b0af158026084b861f38f40492.tar.bz2 gentoo-36ff2540085181b0af158026084b861f38f40492.zip |
dev-erlang/yconf: Initial commit.
Dependency of new ejabberd.
Ebuild from vampik's overlay.
Signed-off-by: Hanno Boeck <hanno@gentoo.org>
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Diffstat (limited to 'dev-erlang')
-rw-r--r-- | dev-erlang/yconf/Manifest | 1 | ||||
-rw-r--r-- | dev-erlang/yconf/metadata.xml | 10 | ||||
-rw-r--r-- | dev-erlang/yconf/yconf-1.0.1.ebuild | 21 |
3 files changed, 32 insertions, 0 deletions
diff --git a/dev-erlang/yconf/Manifest b/dev-erlang/yconf/Manifest new file mode 100644 index 000000000000..63b6506e1f71 --- /dev/null +++ b/dev-erlang/yconf/Manifest @@ -0,0 +1 @@ +DIST yconf-1.0.1.tar.gz 221704 BLAKE2B eec5ad6467af253c62523ebe431a7e117b5e76d1a0273792c5af4ac522ab10b3796910f11591a16e056ff368877c047d0ad9e47f63096a86de7a5d3ee9636ddf SHA512 c0b1a6e9534ee7d78963bd19df3f89622a719e2b5cc9c6299f4d39f08b5c8b8923f8697d57bd315e6cc0b41863adef2a8141f9d4e7d58bb0ade57c86f2835c1e diff --git a/dev-erlang/yconf/metadata.xml b/dev-erlang/yconf/metadata.xml new file mode 100644 index 000000000000..aaa5b90cf47e --- /dev/null +++ b/dev-erlang/yconf/metadata.xml @@ -0,0 +1,10 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>hanno@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="github">processone/yconf</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-erlang/yconf/yconf-1.0.1.ebuild b/dev-erlang/yconf/yconf-1.0.1.ebuild new file mode 100644 index 000000000000..e4efd25c0e0e --- /dev/null +++ b/dev-erlang/yconf/yconf-1.0.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit rebar + +DESCRIPTION="YAML configuration processor" +HOMEPAGE="https://github.com/processone/yconf" +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +DEPEND=">=dev-lang/erlang-17.1 + >=dev-erlang/fast_yaml-1.0.20" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md ) |