passagemath-gap-pkg-curlinterface 10.6.28__cp310-cp310-macosx_14_0_arm64.whl → 10.6.29__cp310-cp310-macosx_14_0_arm64.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.
- gap/pkg/curlinterface/CHANGES +6 -0
- gap/pkg/curlinterface/PackageInfo.g +5 -5
- gap/pkg/curlinterface/bin/{aarch64-apple-darwin23-default64-kv9 → aarch64-apple-darwin23-default64-kv10}/curl.so +0 -0
- gap/pkg/curlinterface/gap/curl.gd +2 -2
- gap/pkg/curlinterface/tst/basic.tst +3 -3
- gap/pkg/curlinterface/tst/errors.tst +1 -1
- {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.29.dist-info}/METADATA +2 -2
- {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.29.dist-info}/METADATA.bak +3 -3
- passagemath_gap_pkg_curlinterface-10.6.29.dist-info/RECORD +22 -0
- sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so +0 -0
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/RECORD +0 -22
- {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.29.dist-info}/WHEEL +0 -0
- {passagemath_gap_pkg_curlinterface-10.6.28.dist-info → passagemath_gap_pkg_curlinterface-10.6.29.dist-info}/top_level.txt +0 -0
gap/pkg/curlinterface/CHANGES
CHANGED
|
@@ -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.
|
|
14
|
-
Date := "
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
return
|
|
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,
|
|
Binary file
|
|
@@ -75,7 +75,7 @@ DeclareGlobalFunction("DownloadURL");
|
|
|
75
75
|
#! <Ref Func="CurlRequest"/>.
|
|
76
76
|
#!
|
|
77
77
|
#! @BeginExample
|
|
78
|
-
#! gap> r := PostToURL("
|
|
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("
|
|
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("
|
|
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("
|
|
173
|
+
gap> r := DownloadURL("httpbun.com/get", rec(verbose := true));;
|
|
174
174
|
gap> r.success;
|
|
175
175
|
true
|
|
176
|
-
gap> PositionSublist(r.result, "
|
|
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("
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
32
|
-
Requires-Dist: passagemath-environment~=10.6.
|
|
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
|
|
@@ -0,0 +1,22 @@
|
|
|
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=BY2G-e9pCnwWPELNk7GCw-k-0y7AcCiRrhf_nAfhQVk,136
|
|
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
|
+
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/aarch64-apple-darwin23-default64-kv10/curl.so,sha256=ZoNdT_FcQachbUfGA1idpuU2SJc3vp4inoUqeFLCMNg,52776
|
|
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
|
+
sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
|
|
21
|
+
sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
|
|
22
|
+
sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so,sha256=iSZ_N3ypaD5dRwkz41Pfg6XWIDDIXSIvP1lzJh7P03U,54344
|
|
Binary file
|
|
@@ -1,22 +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=BY2G-e9pCnwWPELNk7GCw-k-0y7AcCiRrhf_nAfhQVk,136
|
|
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/aarch64-apple-darwin23-default64-kv9/curl.so,sha256=XetGizOujkU1R6dGRwfFd3hwT59mnQRM9VIkNaDTeCA,52776
|
|
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
|
-
sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
|
|
21
|
-
sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
|
|
22
|
-
sage/libs/gap_pkg_curlinterface.cpython-310-darwin.so,sha256=CZd6ED2jd5GRMb8-acVOU1QStvVwEZ7GBVZgjIlkM0U,54344
|
|
File without changes
|