b2ddd385a7
v1.11.3 1. Enhancements Elixir [Macro] Add Macro.unique_var/2 and Macro.generate_unique_arguments/2 2. Bug fixes Elixir [Code] Do not raise when checking for operator ambiguity when :static_atoms_encoder is set in Code.string_to_quoted [Kernel] Emit undefined function warnings from with [Kernel] Do not fail type checking when literals are used in guards [Module] Do not warn for attributes used in @after_compile [Record] Make sure nested record names do not clobber each other ExUnit [ExUnit.Assertions] Do not crash if there are macros and module attributes on the left side of ++ IEx [IEx.Helpers] Do not use Unicode chars if ANSI is disabled Mix [mix deps.compile] Fix compatibility with rebar v3.14 [mix release] Do not use private ram_file:compress/1 [mix xref] Do not crash when retrieving calls for modules in memory
31 lines
812 B
Makefile
31 lines
812 B
Makefile
# $NetBSD: Makefile,v 1.23 2021/01/15 12:10:33 adam Exp $
|
|
|
|
DISTNAME= elixir-1.11.3
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=elixir-lang/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://elixir-lang.org/
|
|
COMMENT= Functional, meta-programming aware language built on top of Erlang VM
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= erlang>=21.0:../../lang/erlang
|
|
|
|
UNLIMIT_RESOURCES= datasize virtualsize
|
|
|
|
USE_TOOLS+= gmake:run
|
|
BUILD_TARGET= compile
|
|
TEST_TARGET= test
|
|
|
|
MAKE_FLAGS+= MAN_PREFIX=${PREFIX}/${PKGMANDIR}
|
|
|
|
REPLACE_INTERPRETER+= elixir
|
|
REPLACE.elixir.old= .*elixir
|
|
REPLACE.elixir.new= ${TOOLS_PLATFORM.env:Q} ${PREFIX}/bin/elixir
|
|
REPLACE_FILES.elixir= bin/mix
|
|
|
|
CHECK_INTERPRETER_SKIP+= bin/mix
|
|
CHECK_INTERPRETER_SKIP+= lib/elixir/bin/mix
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|