diff options
| author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-02-01 09:08:06 +0100 |
|---|---|---|
| committer | Viorel Munteanu <ceamac@gentoo.org> | 2023-02-24 14:44:11 +0200 |
| commit | ffe9568a0531d71f77a8f9159c662c7da4ea996b (patch) | |
| tree | 55133cb643c5330341ea179146dfe701f3cf480f /dev-lang/elixir/elixir-1.14.3.ebuild | |
| parent | c58c233b124bfa11e2d4e8c39f888072627053c0 (diff) | |
| download | gentoo-ffe9568a0531d71f77a8f9159c662c7da4ea996b.tar.gz gentoo-ffe9568a0531d71f77a8f9159c662c7da4ea996b.tar.bz2 gentoo-ffe9568a0531d71f77a8f9159c662c7da4ea996b.zip | |
dev-lang/elixir: add 1.14.3
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/29371
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'dev-lang/elixir/elixir-1.14.3.ebuild')
| -rw-r--r-- | dev-lang/elixir/elixir-1.14.3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-lang/elixir/elixir-1.14.3.ebuild b/dev-lang/elixir/elixir-1.14.3.ebuild new file mode 100644 index 000000000000..faea8a68f900 --- /dev/null +++ b/dev-lang/elixir/elixir-1.14.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Elixir programming language" +HOMEPAGE="https://elixir-lang.org" +SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 ErlPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~riscv ~sparc ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +DEPEND=" + >=dev-lang/erlang-23:0=[ssl] +" +# 'mix' tool collides with sci-biology/phylip, bug #537514 +RDEPEND="${DEPEND} + !!sci-biology/phylip +" +DEPEND+=" + test? ( dev-vcs/git ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-1.9.1-disable-network-tests.patch + "${FILESDIR}"/${PN}-1.10.3-no-Q.patch + "${FILESDIR}"/${PN}-1.10.3-epmd-daemon.patch + "${FILESDIR}"/${PN}-1.14.1-make44-parallel-build.patch +) + +src_install() { + emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" install + dodoc README.md CHANGELOG.md CODE_OF_CONDUCT.md +} |
