chilkat 11.0.0-arm-linux → 11.4.0-arm-linux

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae2b30f8a49cf936f2e4a7fb21645bf77801072f406b56f59a26c470c7b37586
4
- data.tar.gz: 7959156adc970a4013f9cb950d3525221d3fe11835935e7526a7d7d29a4603cb
3
+ metadata.gz: 6e990a6b4fdf443c2e0b84d648cf13ec0952d29ecb154abe483bec61b4e1d7ff
4
+ data.tar.gz: 6d54c85d142c6c5f4b67c57662020a23f002a28a134f5980e912495ad91a07e8
5
5
  SHA512:
6
- metadata.gz: 259bee4d715e964eded4e82a376da24a4f7930dd937ba1c6ca355a4f678af71dfe29a4547d42b1e96f6868db746f359ecb7a65db244850556c7ba0e836ae122e
7
- data.tar.gz: 5d0a13df3f81af956d9c7d77455187efe6bda90c3438f0e596b542ad143ee276b72d58f7f980f346fbd5cd62cf493afd6f42152f53f19c1a83eece3e0f36c5e0
6
+ metadata.gz: 4cc386b60155a09482ecc041394c85ea0ae0cab908c6212023938682197b21a8b5dab7ffacf02bc790abea0d5c47f94b95d22ab57fed5a8306e2c19a768d0823
7
+ data.tar.gz: 6bd90ee44d3eb36a65b6e29560d6be4a9ac2ee0bc025d832f811629a220c1bf1e1cf0cc3f37394977ae7f91eebef4a9edf34a734914b1147c758077d10e4b074
@@ -0,0 +1,115 @@
1
+ Third-Party Notices
2
+
3
+ - PCRE2
4
+ - QuickJS
5
+
6
+ -----------------------------------------------------------------------------------------------------
7
+ QuickJS License & Attribution
8
+
9
+ This software includes portions of the QuickJS JavaScript engine.
10
+ Copyright (c) 2017-2024 Fabrice Bellard
11
+ Licensed under the MIT License (see below)
12
+
13
+ About Chilkat Js
14
+
15
+ The Chilkat Js JavaScript engine was originally derived from the open-source QuickJS project. QuickJS
16
+ provided an excellent lightweight JavaScript interpreter that served as a strong starting point.
17
+ However, the Chilkat Js engine has since undergone extensive modifications and architectural changes
18
+ to meet Chilkat’s internal development standards and architectural requirements.
19
+ It is closed-source and independently maintained by Chilkat, and it does not track or merge future
20
+ changes from the upstream QuickJS repository.
21
+
22
+ The MIT License (MIT)
23
+ Copyright (c) 2017-2024 Fabrice Bellard
24
+ Copyright (c) 2017-2024 Charlie Gordon
25
+ Copyright (c) 2023-2025 Ben Noordhuis
26
+ Copyright (c) 2023-2025 Saúl Ibarra Corretgé
27
+
28
+ Permission is hereby granted, free of charge, to any person obtaining a copy
29
+ of this software and associated documentation files (the "Software"), to deal
30
+ in the Software without restriction, including without limitation the rights
31
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
32
+ copies of the Software, and to permit persons to whom the Software is
33
+ furnished to do so, subject to the following conditions:
34
+ The above copyright notice and this permission notice shall be included in
35
+ all copies or substantial portions of the Software.
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
40
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
43
+ THE SOFTWARE.
44
+
45
+ -----------------------------------------------------------------------------------------------------
46
+
47
+ PCRE2 License & Attribution
48
+
49
+ PCRE2 is a library of functions to support regular expressions whose syntax and
50
+ semantics are as close as possible to those of the Perl 5 language.
51
+
52
+ Releases 10.00 and above of PCRE2 are distributed under the terms of the "BSD" licence, as specified below,
53
+ with one exemption for certain binary redistributions. The documentation for PCRE2, supplied in the "doc" directory,
54
+ is distributed under the same terms as the software itself. The data in the testdata directory is not copyrighted
55
+ and is in the public domain.
56
+
57
+ The basic library functions are written in C and are freestanding. Also included in the distribution is a just-in-time
58
+ compiler that can be used to optimize pattern matching. This is an optional feature that can be omitted when the
59
+ library is built. The just-in-time compiler is separately licensed under the "2-clause BSD" licence.
60
+
61
+ COPYRIGHT
62
+
63
+ The basic library functions:
64
+
65
+ Written by: Philip Hazel
66
+ Email local part: Philip.Hazel
67
+ Email domain: gmail.com
68
+
69
+ Retired from University of Cambridge Computing Service,Cambridge, England.
70
+ Copyright (c) 1997-2007 University of Cambridge
71
+ Copyright (c) 2007-2024 Philip Hazel
72
+ All rights reserved.
73
+
74
+ PCRE2 Just-In-Time compilation support
75
+
76
+ Written by: Zoltan Herczeg
77
+ Email local part: hzmester
78
+ Email domain: freemail.hu
79
+
80
+ Copyright (c) 2010-2024 Zoltan Herczeg
81
+ All rights reserved.
82
+
83
+ Stack-less Just-In-Time compiler
84
+
85
+ Written by: Zoltan Herczeg
86
+ Email local part: hzmester
87
+ Email domain: freemail.hu
88
+
89
+ Copyright (c) 2009-2024 Zoltan Herczeg
90
+ All rights reserved.
91
+
92
+ THE "BSD" LICENCE
93
+
94
+ Redistribution and use in source and binary forms, with or without modification, are permittedprovided that the following conditions are met:
95
+
96
+ - Redistributions of source code must retain the above copyright notices, this list of
97
+ conditions and the following disclaimer.
98
+
99
+ - Redistributions in binary form must reproduce the above copyright notices, this list of
100
+ conditions and the following disclaimer in the documentation and/or other materialsprovided with the distribution.
101
+
102
+ - Neither the name of the University of Cambridge nor the names of any contributors
103
+ may be used to endorse or promote products derived from this software without
104
+ specific prior written permission.
105
+
106
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
107
+ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED...
108
+
109
+ EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES
110
+
111
+ The second condition in the BSD licence (covering binary redistributions) does not apply all
112
+ the way down a chain of software. If binary package A includes PCRE2, it must respect the
113
+ condition, but if package B is software that includes package A, the condition is not imposed
114
+ on package B unless it uses PCRE2 independently.
115
+
data/lib/chilkat.so CHANGED
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chilkat
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.0.0
4
+ version: 11.4.0
5
5
  platform: arm-linux
6
6
  authors:
7
7
  - Chilkat Software, Inc.
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-05-06 00:00:00.000000000 Z
10
+ date: 2026-03-30 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: Chilkat Library for Ruby - FTP, SSH, SFTP, PDF, SMTP, POP3, IMAP, SSL,
13
13
  TLS, HTTP, RSA, Encryption, Zip, Compression, XML, ...
@@ -17,6 +17,7 @@ extensions: []
17
17
  extra_rdoc_files: []
18
18
  files:
19
19
  - README.txt
20
+ - THIRD-PARTY-NOTICES.txt
20
21
  - demo.rb
21
22
  - lib/chilkat.so
22
23
  - license.pdf