public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sergei Trofimovich" <slyfox@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/elixir/files/, dev-lang/elixir/
Date: Sun, 19 Apr 2020 08:01:32 +0000 (UTC)	[thread overview]
Message-ID: <1587283287.f56a7cff1fee108231c4540566ad1064c5f9fde4.slyfox@gentoo> (raw)

commit:     f56a7cff1fee108231c4540566ad1064c5f9fde4
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 19 07:58:56 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 08:01:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56a7cff

dev-lang/elixir: update tests for erlang-22.3

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-lang/elixir/elixir-1.10.2.ebuild               |  1 +
 .../files/elixir-1.10.2-test-regex-fix.patch       | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/dev-lang/elixir/elixir-1.10.2.ebuild b/dev-lang/elixir/elixir-1.10.2.ebuild
index 12dc7c530fe..6db35bebc3c 100644
--- a/dev-lang/elixir/elixir-1.10.2.ebuild
+++ b/dev-lang/elixir/elixir-1.10.2.ebuild
@@ -27,6 +27,7 @@ DEPEND+="
 
 PATCHES=(
 	"${FILESDIR}"/${PN}-1.9.1-disable-network-tests.patch
+	"${FILESDIR}"/${P}-test-regex-fix.patch # backport
 )
 
 src_compile() {

diff --git a/dev-lang/elixir/files/elixir-1.10.2-test-regex-fix.patch b/dev-lang/elixir/files/elixir-1.10.2-test-regex-fix.patch
new file mode 100644
index 00000000000..01b27a05027
--- /dev/null
+++ b/dev-lang/elixir/files/elixir-1.10.2-test-regex-fix.patch
@@ -0,0 +1,34 @@
+From 8491f0dc74f8bc89bb926b8130b45eaa5ba92c4b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Valim?= <jose.valim@dashbit.co>
+Date: Sat, 28 Mar 2020 10:49:16 +0100
+Subject: [PATCH] Fix improper regex use, closes #9914
+
+---
+ lib/elixir/test/elixir/regex_test.exs | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+--- a/lib/elixir/test/elixir/regex_test.exs
++++ b/lib/elixir/test/elixir/regex_test.exs
+@@ -91,8 +91,10 @@ defmodule RegexTest do
+     assert <<0xA0::utf8>> =~ ~r/[[:space:]]/u
+     assert <<0xA0::utf8>> =~ ~r/\s/u
+ 
++    # Erlang/OTP 23 raises badarg on invalid UTF-8.
++    # Earlier versions simply would not match.
++    assert catch_error(if <<?<, 255, ?>>> =~ ~r/<.>/u, do: flunk("failed"), else: raise("failed"))
+     assert <<?<, 255, ?>>> =~ ~r/<.>/
+-    refute <<?<, 255, ?>>> =~ ~r/<.>/u
+   end
+ 
+   test "ungreedy" do
+@@ -349,6 +351,6 @@ defmodule RegexTest do
+   end
+ 
+   defp matches_escaped?(string, match) do
+-    Regex.match?(~r/#{Regex.escape(string)}/simxu, match)
++    Regex.match?(~r/#{Regex.escape(string)}/simx, match)
+   end
+ end
+-- 
+2.26.1
+


             reply	other threads:[~2020-04-19  8:01 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-19  8:01 Sergei Trofimovich [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-11-16 18:05 [gentoo-commits] repo/gentoo:master commit in: dev-lang/elixir/files/, dev-lang/elixir/ Matthew Smith
2020-06-18 22:09 Sergei Trofimovich
2020-06-17  7:29 Sergei Trofimovich
2019-07-18 22:20 Sergei Trofimovich
2019-06-29  8:20 Sergei Trofimovich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1587283287.f56a7cff1fee108231c4540566ad1064c5f9fde4.slyfox@gentoo \
    --to=slyfox@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox