passagemath-gap-pkg-curlinterface 10.6.28__cp310-cp310-macosx_13_0_x86_64.whl → 10.6.30__cp310-cp310-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.

Files changed (27) hide show
  1. gap/pkg/curlinterface/CHANGES +6 -0
  2. gap/pkg/curlinterface/PackageInfo.g +5 -5
  3. gap/pkg/curlinterface/bin/x86_64-apple-darwin24-default64-kv10/curl.so +0 -0
  4. gap/pkg/curlinterface/gap/curl.gd +2 -2
  5. gap/pkg/curlinterface/tst/basic.tst +3 -3
  6. gap/pkg/curlinterface/tst/errors.tst +1 -1
  7. {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.30.dist-info}/METADATA +2 -2
  8. {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.30.dist-info}/METADATA.bak +3 -3
  9. passagemath_gap_pkg_curlinterface-10.6.30.dist-info/RECORD +26 -0
  10. passagemath_gap_pkg_curlinterface.dylibs/libcrypto.3.dylib +0 -0
  11. passagemath_gap_pkg_curlinterface.dylibs/libcurl.4.dylib +0 -0
  12. passagemath_gap_pkg_curlinterface.dylibs/libssl.3.dylib +0 -0
  13. passagemath_gap_pkg_curlinterface.dylibs/libz.1.3.1.dylib +0 -0
  14. sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so +0 -0
  15. gap/pkg/curlinterface/bin/x86_64-apple-darwin22-default64-kv9/curl.so +0 -0
  16. passagemath_gap_pkg_curlinterface-10.6.28.dist-info/RECORD +0 -34
  17. passagemath_gap_pkg_curlinterface.dylibs/libbrotlicommon.1.1.0.dylib +0 -0
  18. passagemath_gap_pkg_curlinterface.dylibs/libbrotlidec.1.1.0.dylib +0 -0
  19. passagemath_gap_pkg_curlinterface.dylibs/libnghttp2.14.dylib +0 -0
  20. passagemath_gap_pkg_curlinterface.dylibs/libnghttp3.9.3.0.dylib +0 -0
  21. passagemath_gap_pkg_curlinterface.dylibs/libngtcp2.16.dylib +0 -0
  22. passagemath_gap_pkg_curlinterface.dylibs/libngtcp2_crypto_ossl.0.dylib +0 -0
  23. passagemath_gap_pkg_curlinterface.dylibs/librtmp.1.dylib +0 -0
  24. passagemath_gap_pkg_curlinterface.dylibs/libssh2.1.dylib +0 -0
  25. passagemath_gap_pkg_curlinterface.dylibs/libzstd.1.5.7.dylib +0 -0
  26. {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.30.dist-info}/WHEEL +0 -0
  27. {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.30.dist-info}/top_level.txt +0 -0
@@ -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.30
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.30.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.30
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.30.0; sys_platform != "win32"
32
+ Requires-Dist: passagemath-environment~=10.6.30.0
33
33
 
34
34
  =========================================================================
35
35
  passagemath: Computational Group Theory with GAP: curlinterface package
@@ -0,0 +1,26 @@
1
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/RECORD,,
2
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/METADATA.bak,sha256=9DpMP8I-QnHYsW0UFgKmW-jRZspZtj0rjzumkP1BDf4,4378
3
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/WHEEL,sha256=RpI2f7qWECrFv3jwk06i6A13TXjBn5AxATfaWklqEPg,137
4
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
5
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/METADATA,sha256=o233GeADIF5COqaun3_zVsQ7F_P8e9xGRvnLWLUpRZo,4310
6
+ gap/pkg/curlinterface/PackageInfo.g,sha256=Uh5aI1haRklbJDVrQnlP1YyglSf-VYVu7AWvJf8IMR0,4511
7
+ gap/pkg/curlinterface/LICENSE,sha256=VRwctJcTevkdFOB_2CLwTO6xZgpa4q5WB8Nk37URrD4,694
8
+ gap/pkg/curlinterface/CHANGES,sha256=yPhvjpPKycHVul5iO11kvoZl1PPgcAJWA-l9usJaPWE,2205
9
+ gap/pkg/curlinterface/README.md,sha256=-tadAHmIiZNuiJHTMPNF8zCwQ1zZBuEQsuhw1h_WDsE,525
10
+ gap/pkg/curlinterface/makedoc.g,sha256=2tOCws9ytHYFry2Yj8bJJVkRcknj8gBgxnhp48M1lVA,273
11
+ gap/pkg/curlinterface/GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
12
+ gap/pkg/curlinterface/init.g,sha256=eZ3QUSqkuWKFGNBS2Nio5qN7pU_GqJT8ii1czN9oaxQ,407
13
+ gap/pkg/curlinterface/read.g,sha256=JGx8DVBqskodzYSPG3c0niOOyxdWjrbeJlxCchVH9Fw,137
14
+ gap/pkg/curlinterface/bin/x86_64-apple-darwin24-default64-kv10/curl.so,sha256=TRjSY4CUkTxNcwebq0wReQa2BPGtE9EfOQJmfM8G344,37904
15
+ gap/pkg/curlinterface/gap/curl.gi,sha256=RJXzcceHI684T06cy2HwLeviUKZ25aLAcZJArV6EneQ,2203
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
+ gap/pkg/curlinterface/tst/testall.g,sha256=rVaYZCGhp98fqv3lwac9sr1P0EvJpYWzviuAc1txzWQ,326
20
+ passagemath_gap_pkg_curlinterface.dylibs/libssl.3.dylib,sha256=_3ekTYq8PoXgrZ6O94lrjcJiEFkCVAVbnQYyu2XHz1k,1112192
21
+ passagemath_gap_pkg_curlinterface.dylibs/libcrypto.3.dylib,sha256=T-PZ0CUwB5qRWlmf2SA4oHJ_oRyAwRPZnMarPxjfPiw,6007408
22
+ passagemath_gap_pkg_curlinterface.dylibs/libz.1.3.1.dylib,sha256=CQ2_V0IDFZ3-cODBk8-l5sw6wLppiGKgMF682OMfCNg,128928
23
+ passagemath_gap_pkg_curlinterface.dylibs/libcurl.4.dylib,sha256=sI4-YC4yHt7w9EuliNL5au64IO-W08NSD6f55MdDtD0,891456
24
+ sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
25
+ sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
26
+ sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so,sha256=rTmBOA04T2kl_dxX4c2uv5Ru4-0RHEgurS806ig5t2w,21368
@@ -1,34 +0,0 @@
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=RpI2f7qWECrFv3jwk06i6A13TXjBn5AxATfaWklqEPg,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
7
- gap/pkg/curlinterface/LICENSE,sha256=VRwctJcTevkdFOB_2CLwTO6xZgpa4q5WB8Nk37URrD4,694
8
- gap/pkg/curlinterface/CHANGES,sha256=LC0Kz9j99LT3rpaEg2GjwliZ98fbLsPsqAgmw8ZbI-g,2060
9
- gap/pkg/curlinterface/README.md,sha256=-tadAHmIiZNuiJHTMPNF8zCwQ1zZBuEQsuhw1h_WDsE,525
10
- gap/pkg/curlinterface/makedoc.g,sha256=2tOCws9ytHYFry2Yj8bJJVkRcknj8gBgxnhp48M1lVA,273
11
- gap/pkg/curlinterface/GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
12
- gap/pkg/curlinterface/init.g,sha256=eZ3QUSqkuWKFGNBS2Nio5qN7pU_GqJT8ii1czN9oaxQ,407
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
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
19
- gap/pkg/curlinterface/tst/testall.g,sha256=rVaYZCGhp98fqv3lwac9sr1P0EvJpYWzviuAc1txzWQ,326
20
- passagemath_gap_pkg_curlinterface.dylibs/libngtcp2_crypto_ossl.0.dylib,sha256=a2TjMcMipVOdxlb88qPHBOzzVVHkzWaM-V3kIe9jfwU,82272
21
- passagemath_gap_pkg_curlinterface.dylibs/libssl.3.dylib,sha256=TvxwUjBXC0CI8tGWgK2m3SCNUy12ZaXcoqdxIUwtuTA,914720
22
- passagemath_gap_pkg_curlinterface.dylibs/libngtcp2.16.dylib,sha256=QFiSzWNsFSM8N-JtHEVIWvmUIINAMrBQXJwsGFB4LqA,346512
23
- passagemath_gap_pkg_curlinterface.dylibs/libssh2.1.dylib,sha256=UVimXGb5_ePkt2_ju6p7BZzyI0-vnRSQYZt5QTi48wQ,301408
24
- passagemath_gap_pkg_curlinterface.dylibs/libbrotlidec.1.1.0.dylib,sha256=WVord5wC4VrBg7Id4SMV-ysxMbrZY_xlP9NWDjMVD5A,88112
25
- passagemath_gap_pkg_curlinterface.dylibs/libcrypto.3.dylib,sha256=w1YLG6mkxl0lS3zp20ySx74KbW0rPWLtrUMgdr1mJXw,5149472
26
- passagemath_gap_pkg_curlinterface.dylibs/libbrotlicommon.1.1.0.dylib,sha256=XA-bWQuZg7R1QBKmBrUCkR67r9LOJ9pVi_PDBg-ZWto,168128
27
- passagemath_gap_pkg_curlinterface.dylibs/libnghttp2.14.dylib,sha256=6fU8tylfBZ5ap9XMocTqN6HrSYnRVuv-ECNzmgWEY80,202096
28
- passagemath_gap_pkg_curlinterface.dylibs/libcurl.4.dylib,sha256=CfL-lkZACLXKHTL34pZOYrNGeyOm_Xj6J2jYvnv0bs8,881600
29
- passagemath_gap_pkg_curlinterface.dylibs/librtmp.1.dylib,sha256=3A9vjwRwT4aw8BDT8P0_LzyBIn934N1aHQiKYg1CfVc,150736
30
- passagemath_gap_pkg_curlinterface.dylibs/libnghttp3.9.3.0.dylib,sha256=MWs2I4wwZXGVS7qRf7P2zjkjxlu3M5W_Olo-oxHHjnQ,216640
31
- passagemath_gap_pkg_curlinterface.dylibs/libzstd.1.5.7.dylib,sha256=fEx8f3j5nGeuS4jTMFgO7RfsVTPtp6dDfYO0solKB9I,786992
32
- sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
33
- sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
34
- sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so,sha256=ZAL74S129Agx4sjAGznxYguZ2wf2cZstyOqFbLNWz0s,53960