dev-erlang/protobuffs: Add new package
authorAmadeusz Żołnowski <aidecoe@gentoo.org>
Mon, 6 Jun 2016 22:18:43 +0000 (23:18 +0100)
committerAmadeusz Żołnowski <aidecoe@gentoo.org>
Tue, 7 Jun 2016 22:20:46 +0000 (23:20 +0100)
It is debundled from net-im/ejabberd-16.04 and therefore inherits
keywords from ejabberd: ~amd64, ~arm, ~ppc and ~x86. ~ia64 and ~sparc
are not inherited because other dependency is missing these keywords and
there's no chance it can get them any time soon.

Package-Manager: portage-2.3.0_rc1

dev-erlang/protobuffs/Manifest [new file with mode: 0644]
dev-erlang/protobuffs/metadata.xml [new file with mode: 0644]
dev-erlang/protobuffs/protobuffs-0.8.2.ebuild [new file with mode: 0644]

diff --git a/dev-erlang/protobuffs/Manifest b/dev-erlang/protobuffs/Manifest
new file mode 100644 (file)
index 0000000..7375676
--- /dev/null
@@ -0,0 +1 @@
+DIST protobuffs-0.8.2.tar.gz 132660 SHA256 82e196d6d9b95e2df1f420f2d39ca54f6eba92e65ca5aa6119f8310822e6b4d3 SHA512 56e9f8d41c500769724adadf025e3915e2b1ab6b68f1664080a49e783facf3d79b5ec20eb8664db9babeea21fc0637c88b1e4a121ca810247e32831a79171b11 WHIRLPOOL 368524db4587446e75d71b340c2369775c6b9ee5742aef60ee1da41a506c9b72ce4f9ff2fc3ad17d399f4d959415ca013562b6d12da9f68a9ac38516a8a34805
diff --git a/dev-erlang/protobuffs/metadata.xml b/dev-erlang/protobuffs/metadata.xml
new file mode 100644 (file)
index 0000000..674f5ad
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>aidecoe@gentoo.org</email>
+               <name>Amadeusz Żołnowski</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-erlang/protobuffs/protobuffs-0.8.2.ebuild b/dev-erlang/protobuffs/protobuffs-0.8.2.ebuild
new file mode 100644 (file)
index 0000000..38065c8
--- /dev/null
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit rebar
+
+MY_PN="erlang_protobuffs"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Google's Protocol Buffers for Erlang"
+HOMEPAGE="https://github.com/basho/erlang_protobuffs"
+SRC_URI="https://github.com/basho/${MY_PN}/archive/${PV}.tar.gz
+       -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="test"
+
+CDEPEND=">=dev-lang/erlang-17.1"
+DEPEND="${CDEPEND}
+       test? (
+               >=dev-erlang/meck-0.8.2
+               >=dev-erlang/proper-1.1
+       )"
+RDEPEND="${CDEPEND}"
+
+DOCS=( AUTHORS  ChangeLog  README.markdown )
+
+S="${WORKDIR}/${MY_P}"
+
+src_test() {
+       ./scripts/generate_emakefile.escript || die
+       erebar ct
+       # FIXME: 1 test fails, reported upstream:
+       # FIXME: https://github.com/basho/erlang_protobuffs/issues/100
+       # FIXME: erebar eunit
+}