diff options
| author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2025-05-22 02:24:49 +0200 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2025-05-22 22:47:22 +0100 |
| commit | 4160c9ddcbfb8c1c5fba7c07760168995325970c (patch) | |
| tree | d08b9a2303d1c5dfafa59e6679411e7b5da361ea /dev-lang/elixir/elixir-1.18.4.ebuild | |
| parent | e756e538510b45e12e1fc21890ff951c80d823b4 (diff) | |
| download | gentoo-4160c9ddcbfb8c1c5fba7c07760168995325970c.tar.gz gentoo-4160c9ddcbfb8c1c5fba7c07760168995325970c.tar.bz2 gentoo-4160c9ddcbfb8c1c5fba7c07760168995325970c.zip | |
dev-lang/elixir: add 1.18.4
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Part-of: https://github.com/gentoo/gentoo/pull/42197
Closes: https://github.com/gentoo/gentoo/pull/42197
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/elixir/elixir-1.18.4.ebuild')
| -rw-r--r-- | dev-lang/elixir/elixir-1.18.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-lang/elixir/elixir-1.18.4.ebuild b/dev-lang/elixir/elixir-1.18.4.ebuild new file mode 100644 index 000000000000..8044796cbc2c --- /dev/null +++ b/dev-lang/elixir/elixir-1.18.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 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 ~ppc ~riscv ~sparc ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +# https://hexdocs.pm/elixir/compatibility-and-deprecations.html#between-elixir-and-erlang-otp +DEPEND=" + >=dev-lang/erlang-25:0=[ssl] + <dev-lang/erlang-29 +" +# '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 +) + +src_install() { + emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" install + dodoc README.md CHANGELOG.md CODE_OF_CONDUCT.md +} |
