summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>2024-05-21 02:51:19 +0200
committerJoonas Niilola <juippis@gentoo.org>2024-07-03 15:53:31 +0300
commit65eba44560b22a377f50340d6e19a992e8cca9cd (patch)
tree1ff1a7ae70d2b8b457e603975085545f281fe03d
parentc33dd683e6f316b91375b2f8b7780bf15fe7e1ed (diff)
downloadgentoo-65eba44560b22a377f50340d6e19a992e8cca9cd.tar.gz
gentoo-65eba44560b22a377f50340d6e19a992e8cca9cd.tar.bz2
gentoo-65eba44560b22a377f50340d6e19a992e8cca9cd.zip
dev-lang/elixir: add 1.15.8
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me> Closes: https://github.com/gentoo/gentoo/pull/36755 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r--dev-lang/elixir/elixir-1.15.8.ebuild39
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-lang/elixir/elixir-1.15.8.ebuild b/dev-lang/elixir/elixir-1.15.8.ebuild
new file mode 100644
index 000000000000..13e7b7258b53
--- /dev/null
+++ b/dev-lang/elixir/elixir-1.15.8.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 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 )"
+
+# https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp
+DEPEND="
+ >=dev-lang/erlang-24:0=[ssl]
+ <dev-lang/erlang-27
+"
+# '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
+}