Received: by mail.netbsd.org (Postfix, from userid 605) id 8144684E72; Tue, 10 Aug 2021 11:18:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA60884D65 for ; Tue, 10 Aug 2021 11:18:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id v5rq5zyF8WP4 for ; Tue, 10 Aug 2021 11:18:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2C00984CE3 for ; Tue, 10 Aug 2021 11:18:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 255B2FA97; Tue, 10 Aug 2021 11:18:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162859433846650" MIME-Version: 1.0 Date: Tue, 10 Aug 2021 11:18:58 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/elixir To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210810111858.255B2FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162859433846650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Aug 10 11:18:58 UTC 2021 Modified Files: pkgsrc/lang/elixir: Makefile distinfo Log Message: elixir: update to 1.12.2 1. Bug fixes Elixir [Kernel] Ensure deprecated macros emit warnings Mix [mix deps] Ensure unconstrained rebar deps generate valid mix specifications 2. Enhancements Elixir [elixirc] Change the output of --profile time to make it easier to detect outliers [Application] Do not add compile time deps on args to Application.compile_env/2 and Application.compile_env!/2 [Enum] Optimize Enum.into/3 and Map.new/2 Mix [mix compile] Compile most recently changed files first [mix compile, mix run, mix test] Speed up the time taken to load dependencies. This should make the usage of Mix inside projects quite more responsive To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/lang/elixir/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/elixir/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162859433846650 Content-Disposition: inline Content-Length: 1863 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/elixir/Makefile diff -u pkgsrc/lang/elixir/Makefile:1.25 pkgsrc/lang/elixir/Makefile:1.26 --- pkgsrc/lang/elixir/Makefile:1.25 Sat Jun 12 09:25:24 2021 +++ pkgsrc/lang/elixir/Makefile Tue Aug 10 11:18:57 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2021/06/12 09:25:24 nia Exp $ +# $NetBSD: Makefile,v 1.26 2021/08/10 11:18:57 nia Exp $ -DISTNAME= elixir-1.12.1 +DISTNAME= elixir-1.12.2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=elixir-lang/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -18,6 +18,8 @@ USE_TOOLS+= gmake:run BUILD_TARGET= compile TEST_TARGET= test +MAKE_ENV+= LC_ALL="en_US.UTF-8" + MAKE_FLAGS+= MAN_PREFIX=${PREFIX}/${PKGMANDIR} REPLACE_INTERPRETER+= elixir Index: pkgsrc/lang/elixir/distinfo diff -u pkgsrc/lang/elixir/distinfo:1.21 pkgsrc/lang/elixir/distinfo:1.22 --- pkgsrc/lang/elixir/distinfo:1.21 Sat Jun 12 09:25:24 2021 +++ pkgsrc/lang/elixir/distinfo Tue Aug 10 11:18:57 2021 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.21 2021/06/12 09:25:24 nia Exp $ +$NetBSD: distinfo,v 1.22 2021/08/10 11:18:57 nia Exp $ -SHA1 (elixir-1.12.1.tar.gz) = 3a789a3c53b90db16d6b7428132276bf489f0e00 -RMD160 (elixir-1.12.1.tar.gz) = 79b89bdd965e29e4715e37efa63ae1187b7a0d73 -SHA512 (elixir-1.12.1.tar.gz) = ecea8a95d05e85431c324c7e15fdd08639a52fa6031fb8ec671825debecd892d2258b3914fdd8417728be1a18202d211eeb19869797ad0fd022c6ec91cd05880 -Size (elixir-1.12.1.tar.gz) = 2458060 bytes +SHA1 (elixir-1.12.2.tar.gz) = b525e7357b939156915580de0a5db8162a123ede +RMD160 (elixir-1.12.2.tar.gz) = d86cdb5ca7249d2efbcc2e71c7c78c732ebb9878 +SHA512 (elixir-1.12.2.tar.gz) = 4c19a6a0310606b3016b3699079dc5f667e348c86c92e7e998cbecbacd283f5f4ccdd3d83b757725ba637a39729e9d82673b596feee72e831d575630e2f3111a +Size (elixir-1.12.2.tar.gz) = 2460047 bytes SHA1 (patch-Makefile) = 00a68538bae40effba33fc3bc5019fdbf38a91f3 --_----------=_162859433846650--