Received: by mail.netbsd.org (Postfix, from userid 605) id 8039784F43; Wed, 21 Feb 2024 10:29:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708511386; bh=VmBW89iHQClzYPONHQhj5QPYFH4FM9vZcrxlg9DJeuU=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=jUayYgcm0Px0JfFrSgG3NuuV3V9oqEo4WTlNVk095SuTWlwtdBtBbsT7Ym0rhNBS3 PUm9DXVHx/CfMjClbahy8XRo5+B8nxfKl885YPEP7hk48723meE8XZH+lUaQfwtBzA f3kygOju9r3vbGvIRLnPzqT27dN2vlSkC/DwsiPU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 72B7584F16 for ; Wed, 21 Feb 2024 10:29:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id lCsRVvevPF05 for ; Wed, 21 Feb 2024 10:29:44 +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 D964484EEE for ; Wed, 21 Feb 2024 10:29:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708511384; bh=VmBW89iHQClzYPONHQhj5QPYFH4FM9vZcrxlg9DJeuU=; h=Date:From:Subject:To:Reply-To; b=I8EmvqBfU7L8RzO0lingpQzPqtHVpRHC8k7f7GenAu7dE4s1sfXo0YnG7bwejYsF1 +8xKdQxvvOX6AAVyBMy8uhXx/5OBYY3RSISrAsmKhZSgVcxRpZ9zUrSo95KPHoB2IS A9sW7DD7Smm+mXrLFTeEKixfn4pIqIyioRBrUtPU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBCB1F9F4; Wed, 21 Feb 2024 10:29:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1708511384144480" MIME-Version: 1.0 Date: Wed, 21 Feb 2024 10:29:44 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/elixir To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240221102944.CBCB1F9F4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1708511384144480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Feb 21 10:29:44 UTC 2024 Modified Files: pkgsrc/lang/elixir: Makefile distinfo Log Message: elixir: update to 1.16.1. Bug fixes Elixir [Code] Fix Code.quoted_to_algebra/2 for operator with :do key as operand [Kernel.ParallelCompiler] Do not crash parallel compiler when it receives diagnostics from additional code evaluation [Kernel.ParallelCompiler] Always log errors at the end of compilation [String] Fix String.capitalize/1 with a single codepoint IEx [IEx] Fix autocompletion of function signatures on Erlang/OTP 26 [IEx] Do not assume $HOME is set Mix [mix deps.compile] Handle compilation of rebar3 dependencies when rebar3 is on a path with spaces on Unix [mix test] Properly resolve relative paths when running tests from individual files [mix test] Properly resolve Windows paths when running tests from individual files To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/lang/elixir/Makefile cvs rdiff -u -r1.34 -r1.35 pkgsrc/lang/elixir/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1708511384144480 Content-Disposition: inline Content-Length: 1570 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.39 pkgsrc/lang/elixir/Makefile:1.40 --- pkgsrc/lang/elixir/Makefile:1.39 Sun Dec 31 21:47:16 2023 +++ pkgsrc/lang/elixir/Makefile Wed Feb 21 10:29:44 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2023/12/31 21:47:16 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2024/02/21 10:29:44 wiz Exp $ -DISTNAME= elixir-1.16.0 +DISTNAME= elixir-1.16.1 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.34 pkgsrc/lang/elixir/distinfo:1.35 --- pkgsrc/lang/elixir/distinfo:1.34 Sun Dec 31 21:47:16 2023 +++ pkgsrc/lang/elixir/distinfo Wed Feb 21 10:29:44 2024 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.34 2023/12/31 21:47:16 wiz Exp $ +$NetBSD: distinfo,v 1.35 2024/02/21 10:29:44 wiz Exp $ -BLAKE2s (elixir-1.16.0.tar.gz) = 436ddcf98cba87b20ccf0cbf11284126a8321c470f5be95b6ed2a1e1ef408d60 -SHA512 (elixir-1.16.0.tar.gz) = b1685d4a6745c08becab02f46a4767189781fd95f0eaa16d78a93e83a1750c5832c509e536c30e635ab62840aae5498052d7ab10a51242161f632405ca99f9cf -Size (elixir-1.16.0.tar.gz) = 3351329 bytes +BLAKE2s (elixir-1.16.1.tar.gz) = b46f29dd9d584d00db76fa5db026663120e54cc1350916e77c67dcc6ef87ffda +SHA512 (elixir-1.16.1.tar.gz) = 2663c04ab3abe577884535e681989610131be0f4f0e55997956b9d4cb87c1a3c0cfd3bf453cf61dbc66f3aa20cdf46bc683df1bfe9292771b5445c164e5197ce +Size (elixir-1.16.1.tar.gz) = 3353282 bytes SHA1 (patch-Makefile) = 9b7a1aeef4367b7315fd7a91c53ff533aeaa0aff --_----------=_1708511384144480--