Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/elixir/
Date: Thu, 15 Feb 2018 23:23:29
Message-Id: 1518736994.88aad581ffe6b94fa446a1768f71f85dab516171.slyfox@gentoo
1 commit: 88aad581ffe6b94fa446a1768f71f85dab516171
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 15 23:20:30 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 15 23:23:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88aad581
7
8 dev-lang/elixir: block against sci-biology/phylip, bug #537514
9
10 Reported-by: Toralf Förster
11 Bug: https://bugs.gentoo.org/537514
12 Package-Manager: Portage-2.3.24, Repoman-2.3.6
13
14 dev-lang/elixir/elixir-1.6.1-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
15 1 file changed, 32 insertions(+)
16
17 diff --git a/dev-lang/elixir/elixir-1.6.1-r1.ebuild b/dev-lang/elixir/elixir-1.6.1-r1.ebuild
18 new file mode 100644
19 index 00000000000..844bd80c891
20 --- /dev/null
21 +++ b/dev-lang/elixir/elixir-1.6.1-r1.ebuild
22 @@ -0,0 +1,32 @@
23 +# Copyright 1999-2018 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit multilib
29 +
30 +DESCRIPTION="Elixir programming language"
31 +HOMEPAGE="https://elixir-lang.org"
32 +SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="Apache-2.0 ErlPL-1.1"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
37 +IUSE=""
38 +
39 +DEPEND=">=dev-lang/erlang-18[ssl]"
40 +# 'mix' tool collides with sci-biology/phylip, bug #537514
41 +RDEPEND="${DEPEND}
42 + !!sci-biology/phylip
43 +"
44 +
45 +RESTRICT=test # needs debug symbols
46 +
47 +src_compile() {
48 + emake Q=""
49 +}
50 +
51 +src_install() {
52 + emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" install
53 + dodoc README.md CHANGELOG.md CODE_OF_CONDUCT.md
54 +}