smbcloud-auth 0.4.7-aarch64-linux → 0.4.8-aarch64-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 +4 -4
- data/README.md +1 -1
- data/Rakefile +18 -0
- data/lib/auth/auth.so +0 -0
- data/lib/auth/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: 352384617a927d8344c95734b285e5784cbf0c053670f1b63110b73d2711d6b8
|
|
4
|
+
data.tar.gz: 4e17c345b26edc92ccba54810904ba971d0d7512ff7b154eb638fbfb26474693
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58cc05e4ea16beadeb2aa702b347e07ec429035863c854480c9424a1b4683d0c7c8e4f88c01ab369f2fe0f5e385a2a57288f0ba1eb8fb563b0a007ada840de4c
|
|
7
|
+
data.tar.gz: 51770ab76aa3b69c69452abf8d6882400f69d9b88dbe01876b77a9ddf8491b436d3ec9b5be738541e788d353ebcc5e7255f83f73556d1add8e13ac5f563b5e46
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -11,4 +11,22 @@ RbSys::ExtensionTask.new('auth', GEMSPEC) do |ext|
|
|
|
11
11
|
ext.lib_dir = 'lib/auth'
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
# macOS: the rb_sys/rake-compiler build emits the bundle as an MH_DYLIB with an
|
|
15
|
+
# empty LC_ID_DYLIB install name (a plain `cargo build` does not). dyld on macOS
|
|
16
|
+
# 15+/Tahoe rejects that with "load command string extends beyond end of load
|
|
17
|
+
# command", so the gem fails to load. Stamp a valid install name onto every
|
|
18
|
+
# bundle the build produces by enhancing the bundle file tasks themselves (which
|
|
19
|
+
# is what `rake native gem` runs, not the top-level `compile`). install_name_tool
|
|
20
|
+
# re-signs ad-hoc, ships on the macOS gem-build runners, and works across archs
|
|
21
|
+
# (cross-built x86_64 bundles too). Idempotent.
|
|
22
|
+
if RbConfig::CONFIG['host_os'] =~ /darwin/
|
|
23
|
+
Rake::Task.tasks.each do |t|
|
|
24
|
+
next unless t.name.end_with?('auth.bundle')
|
|
25
|
+
|
|
26
|
+
t.enhance do
|
|
27
|
+
sh 'install_name_tool', '-id', '@rpath/auth.bundle', t.name if File.exist?(t.name)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
14
32
|
task default: :compile
|
data/lib/auth/auth.so
CHANGED
|
Binary file
|
data/lib/auth/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smbcloud-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.8
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Seto Elkahfi
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-07-10 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: json
|