Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package elixir for openSUSE:Factory checked 
in at 2026-06-05 14:57:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/elixir (Old)
 and      /work/SRC/openSUSE:Factory/.elixir.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "elixir"

Fri Jun  5 14:57:49 2026 rev:47 rq:1357116 version:1.20.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/elixir/elixir.changes    2026-01-12 
10:31:36.066890244 +0100
+++ /work/SRC/openSUSE:Factory/.elixir.new.2375/elixir.changes  2026-06-05 
14:58:44.056420832 +0200
@@ -1,0 +2,8 @@
+Thu Jun  4 07:29:56 UTC 2026 - Alessio Biancalana <[email protected]>
+
+- Add 003-skip-tests-daemon-mode-source.patch:
+  * Skip some testsi (daemon-mode release, source tests) that are failing in 
the build env
+- Upgrade to Elixir 1.20.0:
+  * Changelog available at https://hexdocs.pm/elixir/1.20.0/changelog.html
+
+-------------------------------------------------------------------

Old:
----
  elixir-1.19.5-doc.zip
  elixir-1.19.5.tar.gz

New:
----
  003-skip-tests-daemon-mode-source.patch
  elixir-1.20.0-doc.zip
  elixir-1.20.0.tar.gz

----------(New B)----------
  New:
- Add 003-skip-tests-daemon-mode-source.patch:
  * Skip some testsi (daemon-mode release, source tests) that are failing in 
the build env
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ elixir.spec ++++++
--- /var/tmp/diff_new_pack.HZH8FT/_old  2026-06-05 14:58:47.040544244 +0200
+++ /var/tmp/diff_new_pack.HZH8FT/_new  2026-06-05 14:58:47.052544740 +0200
@@ -18,7 +18,7 @@
 
 %define elixirdir %{_prefix}/lib/elixir
 Name:           elixir
-Version:        1.19.5
+Version:        1.20.0
 Release:        0
 Summary:        Functional meta-programming aware language built atop Erlang
 License:        Apache-2.0
@@ -30,6 +30,7 @@
 Source100:      README.md
 Patch0:         001-skip-translator-supervisor-test.patch
 Patch1:         002-skip-tests-iex-helpers.patch
+Patch2:         003-skip-tests-daemon-mode-source.patch
 BuildRequires:  erlang >= 25
 BuildRequires:  erlang-dialyzer
 BuildRequires:  erlang-src

++++++ 003-skip-tests-daemon-mode-source.patch ++++++
diff --git a/lib/mix/test/mix/tasks/release_test.exs 
b/lib/mix/test/mix/tasks/release_test.exs
index 4148028..5a19bf5 100644
--- a/lib/mix/test/mix/tasks/release_test.exs
+++ b/lib/mix/test/mix/tasks/release_test.exs
@@ -716,7 +716,7 @@ test "runs eval and version commands" do
     end)
   end
 
-  @tag :unix
+  @tag :skip
   test "runs in daemon mode" do
     in_fixture("release_test", fn ->
       config = [releases: [permanent2: [include_erts: false, cookie: 
"abcdefghij"]]]
diff --git a/lib/mix/test/mix/tasks/source_test.exs 
b/lib/mix/test/mix/tasks/source_test.exs
index bfc66b1..97776cd 100644
--- a/lib/mix/test/mix/tasks/source_test.exs
+++ b/lib/mix/test/mix/tasks/source_test.exs
@@ -16,6 +16,7 @@ defp reset_editor(), do: System.put_env("ELIXIR_EDITOR", 
unquote(editor))
     defp reset_editor(), do: System.delete_env("ELIXIR_EDITOR")
   end
 
+  @tag :skip
   test "source MODULE", context do
     in_tmp(context.test, fn ->
       Mix.Tasks.Source.run(["Enum"])
@@ -24,7 +25,7 @@ test "source MODULE", context do
     end)
   end
 
-  @tag :require_ast
+  @tag :skip
   test "source MODULE.FUN", context do
     in_tmp(context.test, fn ->
       Mix.Tasks.Source.run(["Enum.map"])
@@ -33,7 +34,7 @@ test "source MODULE.FUN", context do
     end)
   end
 
-  @tag :require_ast
+  @tag :skip
   test "source MODULE.FUN/ARITY", context do
     in_tmp(context.test, fn ->
       Mix.Tasks.Source.run(["Enum.map/2"])
@@ -42,6 +43,7 @@ test "source MODULE.FUN/ARITY", context do
     end)
   end
 
+  @tag :skip
   test "source NESTED MODULE", context do
     in_tmp(context.test, fn ->
       Mix.Tasks.Source.run(["IO.ANSI"])
@@ -50,6 +52,7 @@ test "source NESTED MODULE", context do
     end)
   end
 
+  @tag :skip
   test "source Erlang MODULE", context do
     in_tmp(context.test, fn ->
       Mix.Tasks.Source.run([":math"])
@@ -58,18 +61,21 @@ test "source Erlang MODULE", context do
     end)
   end
 
+  @tag :skip
   test "source ERROR" do
     assert_raise Mix.Error, "Invalid expression: Foo.bar(~s[baz])", fn ->
       Mix.Tasks.Source.run(["Foo.bar(~s[baz])"])
     end
   end
 
+  @tag :skip
   test "source unavailable module" do
     assert_raise Mix.Error, ~r/Could not find source/, fn ->
       Mix.Tasks.Source.run(["DoesNotExist"])
     end
   end
 
+  @tag :skip
   test "source --open opens __FILE__ and __LINE__", context do
     System.put_env("ELIXIR_EDITOR", "echo __LINE__:__FILE__")
 
@@ -85,6 +91,7 @@ test "source --open opens __FILE__ and __LINE__", context do
     reset_editor()
   end
 
+  @tag :skip
   test "source --open without editor" do
     System.delete_env("ELIXIR_EDITOR")
     System.delete_env("EDITOR")
@@ -96,6 +103,7 @@ test "source --open without editor" do
     reset_editor()
   end
 
+  @tag :skip
   test "bad arguments" do
     message = ~r/Unexpected arguments/
 

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.HZH8FT/_old  2026-06-05 14:58:47.496563103 +0200
+++ /var/tmp/diff_new_pack.HZH8FT/_new  2026-06-05 14:58:47.524564261 +0200
@@ -1,6 +1,6 @@
-mtime: 1768047012
-commit: fea2558efa407bd98399d116b8a6e9c095b1680b39f3c99b4111394c886f0241
-url: https://src.opensuse.org/erlang/elixir.git
-revision: fea2558efa407bd98399d116b8a6e9c095b1680b39f3c99b4111394c886f0241
+mtime: 1780558328
+commit: 1df83241ccf5af42b9acba4f760cdcdb88630521d67cc62256e92853b2dfc7b8
+url: https://src.opensuse.org/erlang/elixir
+revision: 1df83241ccf5af42b9acba4f760cdcdb88630521d67cc62256e92853b2dfc7b8
 projectscmsync: https://src.opensuse.org/erlang/_ObsPrj.git
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-06-04 09:32:08.000000000 +0200
@@ -0,0 +1 @@
+.osc

++++++ elixir-1.19.5-doc.zip -> elixir-1.20.0-doc.zip ++++++
/work/SRC/openSUSE:Factory/elixir/elixir-1.19.5-doc.zip 
/work/SRC/openSUSE:Factory/.elixir.new.2375/elixir-1.20.0-doc.zip differ: char 
11, line 1

++++++ elixir-1.19.5.tar.gz -> elixir-1.20.0.tar.gz ++++++
++++ 54487 lines of diff (skipped)

Reply via email to