Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 590C184D35 for ; Fri, 7 Jul 2023 13:40:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bsDA_VpsxG_1 for ; Fri, 7 Jul 2023 13:40:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B351A84CFE for ; Fri, 7 Jul 2023 13:40:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AACABFBDB; Fri, 7 Jul 2023 13:40:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688737242208710" MIME-Version: 1.0 Date: Fri, 7 Jul 2023 13:40:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/elixir To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230707134042.AACABFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688737242208710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jul 7 13:40:42 UTC 2023 Modified Files: pkgsrc/lang/elixir: Makefile distinfo Log Message: elixir: updated to 1.15.2 v1.15.2 Bug fixes IEx [IEx] Fix CLI being unable to boot on Windows v1.15.1 1. Enhancements [Code] Code.string_to_quoted/2 honors :static_atoms_encoder for multi-letter sigils 2. Bug fixes ExUnit [ExUnit.CaptureLog] Fix race condition on concurrent capture_log [ExUnit.CaptureLog] Respect options passed to nested capture_log calls [ExUnit.Doctest] Properly compile doctests without results terminated by fences [ExUnit.Doctest] Allow variables defined in doctests to be used in expectation IEx [IEx] Ensure pry works on Erlang/OTP 25 and earlier while IEx is booting [IEx] Code.Fragment.surround_context considers surround context around spaces and parens Logger [Logger] Do not assume Logger has been loaded at compile-time [Logger.Formatter] Properly handle :function as metadata Mix [mix compile] Ensure the current project is available on the code path after its Elixir sources are compiled [mix compile] Guarantee yecc/leex are available when emitting warnings from previous runs [mix compile] Fix bug where an external resource was deleted after its mtime was successfully retrieved [mix compile] Track removed modules and exports across local deps [mix deps] Fix an issue where dependencies could not be started in an umbrella projects [mix release] Properly handle optional dependencies when there is a conflict in the application start mode [mix release] Remove --werl from release scripts on Erlang/OTP 26 To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/lang/elixir/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/lang/elixir/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688737242208710 Content-Disposition: inline Content-Length: 1572 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.35 pkgsrc/lang/elixir/Makefile:1.36 --- pkgsrc/lang/elixir/Makefile:1.35 Sun Jul 2 08:09:37 2023 +++ pkgsrc/lang/elixir/Makefile Fri Jul 7 13:40:42 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.35 2023/07/02 08:09:37 wiz Exp $ +# $NetBSD: Makefile,v 1.36 2023/07/07 13:40:42 adam Exp $ -DISTNAME= elixir-1.15.0 +DISTNAME= elixir-1.15.2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=elixir-lang/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/lang/elixir/distinfo diff -u pkgsrc/lang/elixir/distinfo:1.30 pkgsrc/lang/elixir/distinfo:1.31 --- pkgsrc/lang/elixir/distinfo:1.30 Sun Jul 2 08:09:37 2023 +++ pkgsrc/lang/elixir/distinfo Fri Jul 7 13:40:42 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.30 2023/07/02 08:09:37 wiz Exp $ +$NetBSD: distinfo,v 1.31 2023/07/07 13:40:42 adam Exp $ -BLAKE2s (elixir-1.15.0.tar.gz) = 0aa1d42c064da87390272ccb20832691cdb5c2b15b8e48cc357c1324630d8ff2 -SHA512 (elixir-1.15.0.tar.gz) = 89af6b66fb06d3e2b847ec1e2667b17a78e9501a53397b2edffa530ac6933fb55f7654526bd76abb360c72cd11b023458cd26f36849b43efc91bd737ece7ee31 -Size (elixir-1.15.0.tar.gz) = 3144933 bytes +BLAKE2s (elixir-1.15.2.tar.gz) = aee301eb34b8d23df5dcd64a15f2b7b69618e9c7f5ae338fb032ac4dbfba5d90 +SHA512 (elixir-1.15.2.tar.gz) = 5fdd3048960fc015c78fc09f87e0fbf097af345be340fe9a23e556e8bb4340f9aaec2c5044fde2850da3787780e468dc728c7c704512c4176443af8f53426467 +Size (elixir-1.15.2.tar.gz) = 3146107 bytes SHA1 (patch-Makefile) = 9b7a1aeef4367b7315fd7a91c53ff533aeaa0aff --_----------=_1688737242208710--