Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gap-curlinterface for openSUSE:Factory checked in at 2025-06-10 09:04:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gap-curlinterface (Old) and /work/SRC/openSUSE:Factory/.gap-curlinterface.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gap-curlinterface" Tue Jun 10 09:04:29 2025 rev:4 rq:1283849 version:2.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gap-curlinterface/gap-curlinterface.changes 2025-02-28 17:40:21.627181765 +0100 +++ /work/SRC/openSUSE:Factory/.gap-curlinterface.new.19631/gap-curlinterface.changes 2025-06-10 09:07:58.738115952 +0200 @@ -1,0 +2,6 @@ +Sat Jun 7 11:09:39 UTC 2025 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 2.4.1 + * Fix test suite failures + +------------------------------------------------------------------- Old: ---- curlInterface-2.4.0.tar.gz New: ---- curlInterface-2.4.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gap-curlinterface.spec ++++++ --- /var/tmp/diff_new_pack.0LD4cP/_old 2025-06-10 09:07:59.566150180 +0200 +++ /var/tmp/diff_new_pack.0LD4cP/_new 2025-06-10 09:07:59.566150180 +0200 @@ -1,7 +1,7 @@ # # spec file for package gap-curlinterface # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: gap-curlinterface -Version: 2.4.0 +Version: 2.4.1 Release: 0 Summary: GAP: Web Access via curl License: GPL-2.0-or-later ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.0LD4cP/_old 2025-06-10 09:07:59.606151834 +0200 +++ /var/tmp/diff_new_pack.0LD4cP/_new 2025-06-10 09:07:59.606151834 +0200 @@ -1,5 +1,5 @@ -mtime: 1740697291 -commit: e37d809019fa4454df8e6d030545c40480d3777691c2ac911b07427a566815a8 +mtime: 1749295178 +commit: 54b9697d25602f20a7939000122355fd2ea4b4e7a3a012b5f8f3da1c74aca651 url: https://src.opensuse.org/jengelh/gap-curlinterface revision: master ++++++ build.specials.obscpio ++++++ ++++++ curlInterface-2.4.0.tar.gz -> curlInterface-2.4.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/CHANGES new/curlInterface-2.4.1/CHANGES --- old/curlInterface-2.4.0/CHANGES 2024-08-31 01:53:58.000000000 +0200 +++ new/curlInterface-2.4.1/CHANGES 2025-06-06 17:45:09.000000000 +0200 @@ -1,5 +1,8 @@ This file describes changes in the curlInterface package. +2.4.1 (2025-06-06) + - Replace `www.httpbin.org` by `httpbun.com` to fix test suite failures + 2.4.0 (2024-08-31) - Require GAP >= 4.12 - Add 'maxTime' argument diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/PackageInfo.g new/curlInterface-2.4.1/PackageInfo.g --- old/curlInterface-2.4.0/PackageInfo.g 2024-08-31 01:53:58.000000000 +0200 +++ new/curlInterface-2.4.1/PackageInfo.g 2025-06-06 17:45:09.000000000 +0200 @@ -10,8 +10,8 @@ PackageName := "curlInterface", Subtitle := "Simple Web Access", -Version := "2.4.0", -Date := "31/08/2024", # dd/mm/yyyy format +Version := "2.4.1", +Date := "06/06/2025", # dd/mm/yyyy format License := "GPL-2.0-or-later", Persons := [ @@ -113,9 +113,9 @@ AvailabilityTest := function() if not IsKernelExtensionAvailable("curlinterface", "curl") then LogPackageLoadingMessage(PACKAGE_WARNING, - ["the kernel module is not compiled, ", - "the package cannot be loaded."]); - return fail; + ["the kernel module is not compiled, ", + "the package cannot be loaded."]); + return false; fi; return true; end, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/_Chapter_Overview.xml new/curlInterface-2.4.1/doc/_Chapter_Overview.xml --- old/curlInterface-2.4.0/doc/_Chapter_Overview.xml 2024-08-31 01:54:17.000000000 +0200 +++ new/curlInterface-2.4.1/doc/_Chapter_Overview.xml 2025-06-06 17:45:29.000000000 +0200 @@ -102,7 +102,7 @@ <Ref Func="CurlRequest"/>. <P/> <Example><![CDATA[ -gap> r := PostToURL("www.httpbin.org/post", "animal=tiger");; +gap> r := PostToURL("httpbun.com/post", "animal=tiger");; gap> r.success; true gap> r.result{[51..100]}; @@ -225,7 +225,7 @@ > "", > rec(verifyCert := false)); rec( result := "", success := true ) -gap> r := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");; +gap> r := CurlRequest("httpbun.com/post", "POST", "animal=tiger");; gap> r.success; true gap> r.result{[51..100]}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap0.html new/curlInterface-2.4.1/doc/chap0.html --- old/curlInterface-2.4.0/doc/chap0.html 2024-08-31 01:54:21.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap0.html 2025-06-06 17:45:32.000000000 +0200 @@ -29,10 +29,10 @@ <h2>Simple Web Access</h2> <p> - 2.4.0</p> + 2.4.1</p> <p> - 31 August 2024 + 6 June 2025 </p> </div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap0.txt new/curlInterface-2.4.1/doc/chap0.txt --- old/curlInterface-2.4.0/doc/chap0.txt 2024-08-31 01:54:17.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap0.txt 2025-06-06 17:45:29.000000000 +0200 @@ -6,10 +6,10 @@ [1X Simple Web Access [101X - 2.4.0 + 2.4.1 - 31 August 2024 + 6 June 2025 Christopher Jefferson diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap0_mj.html new/curlInterface-2.4.1/doc/chap0_mj.html --- old/curlInterface-2.4.0/doc/chap0_mj.html 2024-08-31 01:54:21.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap0_mj.html 2025-06-06 17:45:32.000000000 +0200 @@ -32,10 +32,10 @@ <h2>Simple Web Access</h2> <p> - 2.4.0</p> + 2.4.1</p> <p> - 31 August 2024 + 6 June 2025 </p> </div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap1.html new/curlInterface-2.4.1/doc/chap1.html --- old/curlInterface-2.4.0/doc/chap1.html 2024-08-31 01:54:21.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap1.html 2025-06-06 17:45:32.000000000 +0200 @@ -124,7 +124,7 @@ <div class="example"><pre> -<span class="GAPprompt">gap></span> <span class="GAPinput">r := PostToURL("www.httpbin.org/post", "animal=tiger");;</span> +<span class="GAPprompt">gap></span> <span class="GAPinput">r := PostToURL("httpbun.com/post", "animal=tiger");;</span> <span class="GAPprompt">gap></span> <span class="GAPinput">r.success;</span> true <span class="GAPprompt">gap></span> <span class="GAPinput">r.result{[51..100]};</span> @@ -213,7 +213,7 @@ <span class="GAPprompt">></span> <span class="GAPinput"> "",</span> <span class="GAPprompt">></span> <span class="GAPinput"> rec(verifyCert := false));</span> rec( result := "", success := true ) -<span class="GAPprompt">gap></span> <span class="GAPinput">r := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");;</span> +<span class="GAPprompt">gap></span> <span class="GAPinput">r := CurlRequest("httpbun.com/post", "POST", "animal=tiger");;</span> <span class="GAPprompt">gap></span> <span class="GAPinput">r.success;</span> true <span class="GAPprompt">gap></span> <span class="GAPinput">r.result{[51..100]};</span> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap1.txt new/curlInterface-2.4.1/doc/chap1.txt --- old/curlInterface-2.4.0/doc/chap1.txt 2024-08-31 01:54:17.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap1.txt 2025-06-06 17:45:29.000000000 +0200 @@ -72,7 +72,7 @@ [3Xopts[103X, see [2XCurlRequest[102X ([14X1.2-4[114X).[133X [4X[32X Example [32X[104X - [4X[25Xgap>[125X [27Xr := PostToURL("www.httpbin.org/post", "animal=tiger");;[127X[104X + [4X[25Xgap>[125X [27Xr := PostToURL("httpbun.com/post", "animal=tiger");;[127X[104X [4X[25Xgap>[125X [27Xr.success;[127X[104X [4X[28Xtrue[128X[104X [4X[25Xgap>[125X [27Xr.result{[51..100]};[127X[104X @@ -160,7 +160,7 @@ [4X[25X>[125X [27X "",[127X[104X [4X[25X>[125X [27X rec(verifyCert := false));[127X[104X [4X[28Xrec( result := "", success := true )[128X[104X - [4X[25Xgap>[125X [27Xr := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");;[127X[104X + [4X[25Xgap>[125X [27Xr := CurlRequest("httpbun.com/post", "POST", "animal=tiger");;[127X[104X [4X[25Xgap>[125X [27Xr.success;[127X[104X [4X[28Xtrue[128X[104X [4X[25Xgap>[125X [27Xr.result{[51..100]};[127X[104X diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/chap1_mj.html new/curlInterface-2.4.1/doc/chap1_mj.html --- old/curlInterface-2.4.0/doc/chap1_mj.html 2024-08-31 01:54:21.000000000 +0200 +++ new/curlInterface-2.4.1/doc/chap1_mj.html 2025-06-06 17:45:32.000000000 +0200 @@ -127,7 +127,7 @@ <div class="example"><pre> -<span class="GAPprompt">gap></span> <span class="GAPinput">r := PostToURL("www.httpbin.org/post", "animal=tiger");;</span> +<span class="GAPprompt">gap></span> <span class="GAPinput">r := PostToURL("httpbun.com/post", "animal=tiger");;</span> <span class="GAPprompt">gap></span> <span class="GAPinput">r.success;</span> true <span class="GAPprompt">gap></span> <span class="GAPinput">r.result{[51..100]};</span> @@ -216,7 +216,7 @@ <span class="GAPprompt">></span> <span class="GAPinput"> "",</span> <span class="GAPprompt">></span> <span class="GAPinput"> rec(verifyCert := false));</span> rec( result := "", success := true ) -<span class="GAPprompt">gap></span> <span class="GAPinput">r := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");;</span> +<span class="GAPprompt">gap></span> <span class="GAPinput">r := CurlRequest("httpbun.com/post", "POST", "animal=tiger");;</span> <span class="GAPprompt">gap></span> <span class="GAPinput">r.success;</span> true <span class="GAPprompt">gap></span> <span class="GAPinput">r.result{[51..100]};</span> Binary files old/curlInterface-2.4.0/doc/manual.pdf and new/curlInterface-2.4.1/doc/manual.pdf differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/doc/title.xml new/curlInterface-2.4.1/doc/title.xml --- old/curlInterface-2.4.0/doc/title.xml 2024-08-31 01:54:17.000000000 +0200 +++ new/curlInterface-2.4.1/doc/title.xml 2025-06-06 17:45:29.000000000 +0200 @@ -9,7 +9,7 @@ Simple Web Access </Subtitle> <Version> - 2.4.0 + 2.4.1 </Version> <Author> Christopher Jefferson<Alt Only="LaTeX"><Br/></Alt> @@ -38,6 +38,6 @@ </Author> <Date> - 31 August 2024 + 6 June 2025 </Date> </TitlePage> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/gap/curl.gd new/curlInterface-2.4.1/gap/curl.gd --- old/curlInterface-2.4.0/gap/curl.gd 2024-08-31 01:53:58.000000000 +0200 +++ new/curlInterface-2.4.1/gap/curl.gd 2025-06-06 17:45:09.000000000 +0200 @@ -75,7 +75,7 @@ #! <Ref Func="CurlRequest"/>. #! #! @BeginExample -#! gap> r := PostToURL("www.httpbin.org/post", "animal=tiger");; +#! gap> r := PostToURL("httpbun.com/post", "animal=tiger");; #! gap> r.success; #! true #! gap> r.result{[51..100]}; @@ -160,7 +160,7 @@ #! > "", #! > rec(verifyCert := false)); #! rec( result := "", success := true ) -#! gap> r := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");; +#! gap> r := CurlRequest("httpbun.com/post", "POST", "animal=tiger");; #! gap> r.success; #! true #! gap> r.result{[51..100]}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/tst/basic.tst new/curlInterface-2.4.1/tst/basic.tst --- old/curlInterface-2.4.0/tst/basic.tst 2024-08-31 01:53:58.000000000 +0200 +++ new/curlInterface-2.4.1/tst/basic.tst 2025-06-06 17:45:09.000000000 +0200 @@ -163,17 +163,17 @@ true gap> PositionSublist(r.result, "tiger") <> fail; false -gap> r := DeleteURL("www.httpbun.com/delete");; +gap> r := DeleteURL("httpbun.com/delete");; gap> r.success; true gap> PositionSublist(r.result, "405 ") <> fail; false # Check verbose requests don't break anything (we can't catch the output here) -gap> r := DownloadURL("http://www.httpbun.com/get", rec(verbose := true));; +gap> r := DownloadURL("httpbun.com/get", rec(verbose := true));; gap> r.success; true -gap> PositionSublist(r.result, "httpbin") <> fail; +gap> PositionSublist(r.result, "httpbun") <> fail; true #gap> PositionSublist(r.result, "404 ") <> fail; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/curlInterface-2.4.0/tst/errors.tst new/curlInterface-2.4.1/tst/errors.tst --- old/curlInterface-2.4.0/tst/errors.tst 2024-08-31 01:53:58.000000000 +0200 +++ new/curlInterface-2.4.1/tst/errors.tst 2025-06-06 17:45:09.000000000 +0200 @@ -25,7 +25,7 @@ Error, CurlRequest: <type> must be a string # post_string not a string -gap> PostToURL("httpbin.org/post", 17); +gap> PostToURL("httpbun.com/post", 17); Error, CurlRequest: <out_string> must be a string # invalid verifyCert