passagemath-gap-pkg-curlinterface 10.6.28__cp310-cp310-musllinux_1_2_aarch64.whl → 10.6.30__cp310-cp310-musllinux_1_2_aarch64.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.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,25 @@
1
+ gap/pkg/curlinterface/CHANGES,sha256=yPhvjpPKycHVul5iO11kvoZl1PPgcAJWA-l9usJaPWE,2205
2
+ gap/pkg/curlinterface/GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
3
+ gap/pkg/curlinterface/LICENSE,sha256=VRwctJcTevkdFOB_2CLwTO6xZgpa4q5WB8Nk37URrD4,694
4
+ gap/pkg/curlinterface/PackageInfo.g,sha256=Uh5aI1haRklbJDVrQnlP1YyglSf-VYVu7AWvJf8IMR0,4511
5
+ gap/pkg/curlinterface/README.md,sha256=-tadAHmIiZNuiJHTMPNF8zCwQ1zZBuEQsuhw1h_WDsE,525
6
+ gap/pkg/curlinterface/init.g,sha256=eZ3QUSqkuWKFGNBS2Nio5qN7pU_GqJT8ii1czN9oaxQ,407
7
+ gap/pkg/curlinterface/makedoc.g,sha256=2tOCws9ytHYFry2Yj8bJJVkRcknj8gBgxnhp48M1lVA,273
8
+ gap/pkg/curlinterface/read.g,sha256=JGx8DVBqskodzYSPG3c0niOOyxdWjrbeJlxCchVH9Fw,137
9
+ gap/pkg/curlinterface/bin/aarch64-unknown-linux-musl-default64-kv10/curl.so,sha256=0CwkNo7A6Zkbv9UWpEPKqvcAZfbEjiZ_IhvnWzrWGgg,199937
10
+ gap/pkg/curlinterface/gap/curl.gd,sha256=oTSY6vk8BWu_9aSse8a-7fm-TldwG2iypa0Lv6uXZFI,6400
11
+ gap/pkg/curlinterface/gap/curl.gi,sha256=RJXzcceHI684T06cy2HwLeviUKZ25aLAcZJArV6EneQ,2203
12
+ gap/pkg/curlinterface/tst/basic.tst,sha256=XQiWpkE2iu5eYUB8llTkVG2zVCBeJf9pfY_kHo2PfWY,5340
13
+ gap/pkg/curlinterface/tst/errors.tst,sha256=IgxqKmgfmXtIGAP3l8jYKLuBsoCdoIS-fwmpFTR7MsU,2135
14
+ gap/pkg/curlinterface/tst/testall.g,sha256=rVaYZCGhp98fqv3lwac9sr1P0EvJpYWzviuAc1txzWQ,326
15
+ passagemath_gap_pkg_curlinterface.libs/libcrypto-1bf101fc.so.3,sha256=0K0wD7sV1KhzWSEcSw0Ti9OAd_rxB9TqnkEA527kP50,16895513
16
+ passagemath_gap_pkg_curlinterface.libs/libcurl-f5e8cdc8.so.4.8.0,sha256=H8CrtyyIlTaYjSNoL5FvOgfn0W9ZLrzfP2kZSsEz_DQ,4531657
17
+ passagemath_gap_pkg_curlinterface.libs/libssl-13a8d04e.so.3,sha256=scWuWjnZlvU5MdHkDzf4d3dTAGyfYbBcGgca86jdl_I,4548113
18
+ sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
19
+ sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
20
+ sage/libs/gap_pkg_curlinterface.cpython-310-aarch64-linux-gnu.so,sha256=NDPz8p1vPALlAgeONLhss6QaxoosTkhiGj_BlNal2ag,102912
21
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/METADATA,sha256=o233GeADIF5COqaun3_zVsQ7F_P8e9xGRvnLWLUpRZo,4310
22
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/METADATA.bak,sha256=9DpMP8I-QnHYsW0UFgKmW-jRZspZtj0rjzumkP1BDf4,4378
23
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/WHEEL,sha256=qvx19vD_zYvGQFVzkH0wrT4tVIal9wOVogYGQfy9ymw,113
24
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
25
+ passagemath_gap_pkg_curlinterface-10.6.30.dist-info/RECORD,,
@@ -1,25 +0,0 @@
1
- gap/pkg/curlinterface/CHANGES,sha256=LC0Kz9j99LT3rpaEg2GjwliZ98fbLsPsqAgmw8ZbI-g,2060
2
- gap/pkg/curlinterface/GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
3
- gap/pkg/curlinterface/LICENSE,sha256=VRwctJcTevkdFOB_2CLwTO6xZgpa4q5WB8Nk37URrD4,694
4
- gap/pkg/curlinterface/PackageInfo.g,sha256=568l1Uvrvk-LVuWHIYN8ZjbEKVSSQYufdKu5Msgl84c,4508
5
- gap/pkg/curlinterface/README.md,sha256=-tadAHmIiZNuiJHTMPNF8zCwQ1zZBuEQsuhw1h_WDsE,525
6
- gap/pkg/curlinterface/init.g,sha256=eZ3QUSqkuWKFGNBS2Nio5qN7pU_GqJT8ii1czN9oaxQ,407
7
- gap/pkg/curlinterface/makedoc.g,sha256=2tOCws9ytHYFry2Yj8bJJVkRcknj8gBgxnhp48M1lVA,273
8
- gap/pkg/curlinterface/read.g,sha256=JGx8DVBqskodzYSPG3c0niOOyxdWjrbeJlxCchVH9Fw,137
9
- gap/pkg/curlinterface/bin/aarch64-unknown-linux-musl-default64-kv9/curl.so,sha256=drl1aTxQuqJPxb-fXIARoS8B44L4-JxW1x8uN7Uxim4,199937
10
- gap/pkg/curlinterface/gap/curl.gd,sha256=Q5QJAY_D8tJ-YSea9qnUoqpUNX-67ObS3TNzLEpgH7E,6408
11
- gap/pkg/curlinterface/gap/curl.gi,sha256=RJXzcceHI684T06cy2HwLeviUKZ25aLAcZJArV6EneQ,2203
12
- gap/pkg/curlinterface/tst/basic.tst,sha256=gVfCdwShEd2EtxSSvf-AdE-qdJ0P6s5QpOhr1NbIZ54,5355
13
- gap/pkg/curlinterface/tst/errors.tst,sha256=wTmXZCHO87Cp-aM1ijRrhSACtE2z3h_BEcBaxhOEJLI,2135
14
- gap/pkg/curlinterface/tst/testall.g,sha256=rVaYZCGhp98fqv3lwac9sr1P0EvJpYWzviuAc1txzWQ,326
15
- passagemath_gap_pkg_curlinterface.libs/libcrypto-10045284.so.3,sha256=40d5DnEPbYeZLkkWXqDwX8GM39nTuneqXomXNIPiaYg,4748889
16
- passagemath_gap_pkg_curlinterface.libs/libcurl-c2e0cf05.so.4.8.0,sha256=rsCfDf4nRyShZ7kCdvfXCrrCHNsveGP_ORV28mYRJBE,4531657
17
- passagemath_gap_pkg_curlinterface.libs/libssl-21c8c9d8.so.3,sha256=jmVkwtQH_FZB6mPpJ3tqpPgvwhvv3FashlFumPiDriQ,1009609
18
- sage/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
19
- sage/libs/all__sagemath_gap_pkg_curlinterface.py,sha256=XTnrsbjtgi4zoj2zms6XNF04Zjw25N8gHICn8f4kIoU,60
20
- sage/libs/gap_pkg_curlinterface.cpython-310-aarch64-linux-gnu.so,sha256=NDPz8p1vPALlAgeONLhss6QaxoosTkhiGj_BlNal2ag,102912
21
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/METADATA,sha256=IoMB3E6Okgv4XZNK411CqEc0-tS5yi9Ec_Kgq8g7vCQ,4310
22
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/METADATA.bak,sha256=Ft_nL6DTtoAm30MopXX6VZcVAWRt721vFXMm6DkrTG4,4378
23
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/WHEEL,sha256=qvx19vD_zYvGQFVzkH0wrT4tVIal9wOVogYGQfy9ymw,113
24
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
25
- passagemath_gap_pkg_curlinterface-10.6.28.dist-info/RECORD,,