p4ruby 2024.1.2627586 → 2024.1.2660526
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 +4 -4
- data/ext/P4/extconf.rb +9 -2
- data/lib/P4/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec78dcd3702a8849815da6e8ee382776122f21b51a25e7427e59fe567a7afa51
|
4
|
+
data.tar.gz: 29439e65b7f638f946a3fedc599087e660deb51c4da7cef2e7a3a6ede7197dfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2ce845c448aaf2c2dc797e3f8bfa7dfcfb4b74f291fb9979dd95262758118c98e7712016bf50e05645861a0c1936af14f0ec2a60c9dc9109c110ed8abc280ea
|
7
|
+
data.tar.gz: 2d57c79a4fc4324743b71cfebd45ca4795d7ca6375fc1cd1b6e10c619f9bc6c6acbf9559169b5e528f58704ece0f3ee1581ee15ba7a4526dc6ad23a936015a52
|
data/ext/P4/extconf.rb
CHANGED
@@ -488,8 +488,15 @@ def filename
|
|
488
488
|
filename = 'p4api-openssl3.zip'
|
489
489
|
end
|
490
490
|
end
|
491
|
-
elsif RbConfig::CONFIG['target_os'].downcase =~ /darwin19|darwin[2-9][0-9]/
|
492
|
-
|
491
|
+
elsif RbConfig::CONFIG['target_os'].downcase =~ /darwin19|darwin[2-9][0-9]/ || RbConfig::CONFIG['host_cpu'] =~ /aarch64|arm64/
|
492
|
+
if !openssl_number.to_s.empty?
|
493
|
+
case openssl_number.to_s
|
494
|
+
when /1.1/
|
495
|
+
filename = 'p4api-openssl1.1.1.tgz'
|
496
|
+
when /3.0/
|
497
|
+
filename = 'p4api-openssl3.tgz'
|
498
|
+
end
|
499
|
+
end
|
493
500
|
else
|
494
501
|
filename = 'p4api.tgz'
|
495
502
|
if !openssl_number.to_s.empty?
|
data/lib/P4/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: p4ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2024.1.
|
4
|
+
version: 2024.1.2660526
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Perforce Software, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby extensions to the C++ Perforce API.
|
14
14
|
email: support@perforce.com
|