passagemath-gap-pkg-curlinterface 10.6.28__cp311-cp311-macosx_13_0_x86_64.whl → 10.6.29__cp311-cp311-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-gap-pkg-curlinterface might be problematic. Click here for more details.

@@ -1,5 +1,11 @@
1
1
  This file describes changes in the curlInterface package.
2
2
 
3
+ 2.4.2 (2025-06-20)
4
+ - Various janitorial changes
5
+
6
+ 2.4.1 (2025-06-06)
7
+ - Replace `www.httpbin.org` by `httpbun.com` to fix test suite failures
8
+
3
9
  2.4.0 (2024-08-31)
4
10
  - Require GAP >= 4.12
5
11
  - Add 'maxTime' argument
@@ -10,8 +10,8 @@ SetPackageInfo( rec(
10
10
 
11
11
  PackageName := "curlInterface",
12
12
  Subtitle := "Simple Web Access",
13
- Version := "2.4.0",
14
- Date := "31/08/2024", # dd/mm/yyyy format
13
+ Version := "2.4.2",
14
+ Date := "20/06/2025", # dd/mm/yyyy format
15
15
  License := "GPL-2.0-or-later",
16
16
 
17
17
  Persons := [
@@ -113,9 +113,9 @@ Dependencies := rec(
113
113
  AvailabilityTest := function()
114
114
  if not IsKernelExtensionAvailable("curlinterface", "curl") then
115
115
  LogPackageLoadingMessage(PACKAGE_WARNING,
116
- ["the kernel module is not compiled, ",
117
- "the package cannot be loaded."]);
118
- return fail;
116
+ ["the kernel module is not compiled, ",
117
+ "the package cannot be loaded."]);
118
+ return false;
119
119
  fi;
120
120
  return true;
121
121
  end,
@@ -75,7 +75,7 @@ DeclareGlobalFunction("DownloadURL");
75
75
  #! <Ref Func="CurlRequest"/>.
76
76
  #!
77
77
  #! @BeginExample
78
- #! gap> r := PostToURL("www.httpbin.org/post", "animal=tiger");;
78
+ #! gap> r := PostToURL("httpbun.com/post", "animal=tiger");;
79
79
  #! gap> r.success;
80
80
  #! true
81
81
  #! gap> r.result{[51..100]};
@@ -160,7 +160,7 @@ DeclareGlobalFunction("DeleteURL");
160
160
  #! > "",
161
161
  #! > rec(verifyCert := false));
162
162
  #! rec( result := "", success := true )
163
- #! gap> r := CurlRequest("www.httpbin.org/post", "POST", "animal=tiger");;
163
+ #! gap> r := CurlRequest("httpbun.com/post", "POST", "animal=tiger");;
164
164
  #! gap> r.success;
165
165
  #! true
166
166
  #! gap> r.result{[51..100]};
@@ -163,17 +163,17 @@ gap> PositionSublist(r.result, "405 ") <> fail;
163
163
  true
164
164
  gap> PositionSublist(r.result, "tiger") <> fail;
165
165
  false
166
- gap> r := DeleteURL("www.httpbun.com/delete");;
166
+ gap> r := DeleteURL("httpbun.com/delete");;
167
167
  gap> r.success;
168
168
  true
169
169
  gap> PositionSublist(r.result, "405 ") <> fail;
170
170
  false
171
171
 
172
172
  # Check verbose requests don't break anything (we can't catch the output here)
173
- gap> r := DownloadURL("http://www.httpbun.com/get", rec(verbose := true));;
173
+ gap> r := DownloadURL("httpbun.com/get", rec(verbose := true));;
174
174
  gap> r.success;
175
175
  true
176
- gap> PositionSublist(r.result, "httpbin") <> fail;
176
+ gap> PositionSublist(r.result, "httpbun") <> fail;
177
177
  true
178
178
 
179
179
  #gap> PositionSublist(r.result, "404 ") <> fail;
@@ -25,7 +25,7 @@ gap> CurlRequest("www.google.com", 637, "hello", rec(verifyCert := true));
25
25
  Error, CurlRequest: <type> must be a string
26
26
 
27
27
  # post_string not a string
28
- gap> PostToURL("httpbin.org/post", 17);
28
+ gap> PostToURL("httpbun.com/post", 17);
29
29
  Error, CurlRequest: <out_string> must be a string
30
30
 
31
31
  # invalid verifyCert
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-gap-pkg-curlinterface
3
- Version: 10.6.28
3
+ Version: 10.6.29
4
4
  Summary: passagemath: Computational Group Theory with GAP: curlinterface package
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -28,7 +28,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
28
28
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
29
  Requires-Python: <3.14,>=3.10
30
30
  Description-Content-Type: text/x-rst
31
- Requires-Dist: passagemath-environment~=10.6.28.0
31
+ Requires-Dist: passagemath-environment~=10.6.29.0
32
32
 
33
33
  =========================================================================
34
34
  passagemath: Computational Group Theory with GAP: curlinterface package
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-gap-pkg-curlinterface
3
- Version: 10.6.28
3
+ Version: 10.6.29
4
4
  Summary: passagemath: Computational Group Theory with GAP: curlinterface package
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -28,8 +28,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
28
28
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
29
  Requires-Python: <3.14,>=3.10
30
30
  Description-Content-Type: text/x-rst
31
- Requires-Dist: passagemath-conf~=10.6.28.0; sys_platform != "win32"
32
- Requires-Dist: passagemath-environment~=10.6.28.0
31
+ Requires-Dist: passagemath-conf~=10.6.29.0; sys_platform != "win32"
32
+ Requires-Dist: passagemath-environment~=10.6.29.0
33
33
 
34
34
  =========================================================================
35
35
  passagemath: Computational Group Theory with GAP: curlinterface package
@@ -1,21 +1,21 @@
1
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/RECORD,,
2
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/METADATA.bak,sha256=Ft_nL6DTtoAm30MopXX6VZcVAWRt721vFXMm6DkrTG4,4378
3
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/WHEEL,sha256=RyxoEM-DdYra2rgZTpxdiJkmjbwgUQ_Obk5UCeDLiEQ,137
4
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
5
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/METADATA,sha256=IoMB3E6Okgv4XZNK411CqEc0-tS5yi9Ec_Kgq8g7vCQ,4310
6
- gap/pkg/curlinterface/PackageInfo.g,sha256=568l1Uvrvk-LVuWHIYN8ZjbEKVSSQYufdKu5Msgl84c,4508
1
+ passagemath_gap_pkg_curlinterface-10.6.29.dist-info/RECORD,,
2
+ passagemath_gap_pkg_curlinterface-10.6.29.dist-info/METADATA.bak,sha256=AgSdeoiBYx2zkWbRGsVzfVmgHBLF44YsAkrVFn9sjLE,4378
3
+ passagemath_gap_pkg_curlinterface-10.6.29.dist-info/WHEEL,sha256=RyxoEM-DdYra2rgZTpxdiJkmjbwgUQ_Obk5UCeDLiEQ,137
4
+ passagemath_gap_pkg_curlinterface-10.6.29.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
5
+ passagemath_gap_pkg_curlinterface-10.6.29.dist-info/METADATA,sha256=dn2-UGC2O3o9uzPm2h0oRR6DgzMp2zylSp5SaxlaFiE,4310
6
+ gap/pkg/curlinterface/PackageInfo.g,sha256=Uh5aI1haRklbJDVrQnlP1YyglSf-VYVu7AWvJf8IMR0,4511
7
7
  gap/pkg/curlinterface/LICENSE,sha256=VRwctJcTevkdFOB_2CLwTO6xZgpa4q5WB8Nk37URrD4,694
8
- gap/pkg/curlinterface/CHANGES,sha256=LC0Kz9j99LT3rpaEg2GjwliZ98fbLsPsqAgmw8ZbI-g,2060
8
+ gap/pkg/curlinterface/CHANGES,sha256=yPhvjpPKycHVul5iO11kvoZl1PPgcAJWA-l9usJaPWE,2205
9
9
  gap/pkg/curlinterface/README.md,sha256=-tadAHmIiZNuiJHTMPNF8zCwQ1zZBuEQsuhw1h_WDsE,525
10
10
  gap/pkg/curlinterface/makedoc.g,sha256=2tOCws9ytHYFry2Yj8bJJVkRcknj8gBgxnhp48M1lVA,273
11
11
  gap/pkg/curlinterface/GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
12
12
  gap/pkg/curlinterface/init.g,sha256=eZ3QUSqkuWKFGNBS2Nio5qN7pU_GqJT8ii1czN9oaxQ,407
13
13
  gap/pkg/curlinterface/read.g,sha256=JGx8DVBqskodzYSPG3c0niOOyxdWjrbeJlxCchVH9Fw,137
14
- gap/pkg/curlinterface/bin/x86_64-apple-darwin22-default64-kv9/curl.so,sha256=ONlKBVQeVA0d9jS1UeXSRS_8qL9A1Y1FnI6JN3kvrAk,70928
14
+ gap/pkg/curlinterface/bin/x86_64-apple-darwin22-default64-kv10/curl.so,sha256=4f6XyD_OvbwUhpi-R8VCGFJkIMUJDOCRirY6QDdRd8M,70928
15
15
  gap/pkg/curlinterface/gap/curl.gi,sha256=RJXzcceHI684T06cy2HwLeviUKZ25aLAcZJArV6EneQ,2203
16
- gap/pkg/curlinterface/gap/curl.gd,sha256=Q5QJAY_D8tJ-YSea9qnUoqpUNX-67ObS3TNzLEpgH7E,6408
17
- gap/pkg/curlinterface/tst/basic.tst,sha256=gVfCdwShEd2EtxSSvf-AdE-qdJ0P6s5QpOhr1NbIZ54,5355
18
- gap/pkg/curlinterface/tst/errors.tst,sha256=wTmXZCHO87Cp-aM1ijRrhSACtE2z3h_BEcBaxhOEJLI,2135
16
+ gap/pkg/curlinterface/gap/curl.gd,sha256=oTSY6vk8BWu_9aSse8a-7fm-TldwG2iypa0Lv6uXZFI,6400
17
+ gap/pkg/curlinterface/tst/basic.tst,sha256=XQiWpkE2iu5eYUB8llTkVG2zVCBeJf9pfY_kHo2PfWY,5340
18
+ gap/pkg/curlinterface/tst/errors.tst,sha256=IgxqKmgfmXtIGAP3l8jYKLuBsoCdoIS-fwmpFTR7MsU,2135
19
19
  gap/pkg/curlinterface/tst/testall.g,sha256=rVaYZCGhp98fqv3lwac9sr1P0EvJpYWzviuAc1txzWQ,326
20
20
  passagemath_gap_pkg_curlinterface.dylibs/libngtcp2_crypto_ossl.0.dylib,sha256=a2TjMcMipVOdxlb88qPHBOzzVVHkzWaM-V3kIe9jfwU,82272
21
21
  passagemath_gap_pkg_curlinterface.dylibs/libssl.3.dylib,sha256=TvxwUjBXC0CI8tGWgK2m3SCNUy12ZaXcoqdxIUwtuTA,914720
@@ -30,5 +30,5 @@ passagemath_gap_pkg_curlinterface.dylibs/librtmp.1.dylib,sha256=3A9vjwRwT4aw8BDT
30
30
  passagemath_gap_pkg_curlinterface.dylibs/libnghttp3.9.3.0.dylib,sha256=MWs2I4wwZXGVS7qRf7P2zjkjxlu3M5W_Olo-oxHHjnQ,216640
31
31
  passagemath_gap_pkg_curlinterface.dylibs/libzstd.1.5.7.dylib,sha256=fEx8f3j5nGeuS4jTMFgO7RfsVTPtp6dDfYO0solKB9I,786992
32
32
  sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
33
- sage/libs/gap_pkg_curlinterface.cpython-311-darwin.so,sha256=Edc9mEZQs5cvEBlGI8wsmPCSJOBkfIMOrgFAJOfALbw,53800
33
+ sage/libs/gap_pkg_curlinterface.cpython-311-darwin.so,sha256=SSXulJiaQIQNgJaz-Ho4BqwP9pca3zEAOTDF-B3piHY,53800
34
34
  sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60