sass-embedded 1.79.2-aarch64-linux-musl → 1.79.4-aarch64-linux-musl
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/exe/sass +1 -9
- data/ext/sass/cli.rb +7 -0
- data/ext/sass/dart-sass/src/sass.snapshot +0 -0
- data/lib/sass/compiler/connection.rb +1 -9
- data/lib/sass/compiler/host/protofier.rb +16 -55
- data/lib/sass/elf.rb +4 -4
- data/lib/sass/embedded/version.rb +1 -1
- data/lib/sass/value/color/channel.rb +79 -0
- data/lib/sass/value/color/conversions.rb +464 -0
- data/lib/sass/value/color/gamut_map_method/clip.rb +45 -0
- data/lib/sass/value/color/gamut_map_method/local_minde.rb +94 -0
- data/lib/sass/value/color/gamut_map_method.rb +45 -0
- data/lib/sass/value/color/interpolation_method.rb +51 -0
- data/lib/sass/value/color/space/a98_rgb.rb +57 -0
- data/lib/sass/value/color/space/display_p3.rb +57 -0
- data/lib/sass/value/color/space/hsl.rb +65 -0
- data/lib/sass/value/color/space/hwb.rb +70 -0
- data/lib/sass/value/color/space/lab.rb +77 -0
- data/lib/sass/value/color/space/lch.rb +53 -0
- data/lib/sass/value/color/space/lms.rb +129 -0
- data/lib/sass/value/color/space/oklab.rb +66 -0
- data/lib/sass/value/color/space/oklch.rb +54 -0
- data/lib/sass/value/color/space/prophoto_rgb.rb +59 -0
- data/lib/sass/value/color/space/rec2020.rb +69 -0
- data/lib/sass/value/color/space/rgb.rb +52 -0
- data/lib/sass/value/color/space/srgb.rb +141 -0
- data/lib/sass/value/color/space/srgb_linear.rb +72 -0
- data/lib/sass/value/color/space/utils.rb +86 -0
- data/lib/sass/value/color/space/xyz_d50.rb +100 -0
- data/lib/sass/value/color/space/xyz_d65.rb +57 -0
- data/lib/sass/value/color/space.rb +198 -0
- data/lib/sass/value/color.rb +537 -162
- data/lib/sass/value/fuzzy_math.rb +30 -3
- data/lib/sass/value/string.rb +1 -1
- metadata +29 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5a2c4de9e4064ebb5bc0120708a449f59583539adf956e4f5120c4db90c45d6
|
4
|
+
data.tar.gz: a38b117e4ebcf074f18584ccc72d6c1d8062afc20a14b80d1a1cad07716b7c1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86fa45dd0ba44717a976de03f745fef08a611cbf8a79d6a648b2988f3cf8f8e943b0f4b2bbc63e8a188ae398ed8d5cc2c6536d187e035c285f9826c7fce62deb
|
7
|
+
data.tar.gz: 2d6a827b67c80064a973af55e56131aabb7d857d9f40ac7cb5323cc7c9beed1a1727ce192047851a40fd6e06677ae5bdc0cfb32ea613106077c53bf7fe3b6389
|
data/exe/sass
CHANGED
@@ -6,15 +6,7 @@ require_relative '../ext/sass/cli'
|
|
6
6
|
module Sass
|
7
7
|
# The `sass` command line interface
|
8
8
|
module CLI
|
9
|
-
|
10
|
-
Kernel.exec(*COMMAND, *ARGV)
|
11
|
-
rescue Errno::ENOENT
|
12
|
-
require_relative '../lib/sass/elf'
|
13
|
-
|
14
|
-
raise if ELF::INTERPRETER.nil?
|
15
|
-
|
16
|
-
Kernel.exec(ELF::INTERPRETER, *COMMAND, *ARGV)
|
17
|
-
end
|
9
|
+
Kernel.exec(*COMMAND, *ARGV)
|
18
10
|
end
|
19
11
|
|
20
12
|
private_constant :CLI
|
data/ext/sass/cli.rb
CHANGED
@@ -1,8 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative '../../lib/sass/elf'
|
4
|
+
|
3
5
|
module Sass
|
4
6
|
module CLI
|
7
|
+
INTERPRETER = '/lib/ld-musl-aarch64.so.1'
|
8
|
+
|
5
9
|
COMMAND = [
|
10
|
+
*(ELF::INTERPRETER unless ELF::INTERPRETER.nil? ||
|
11
|
+
ELF::INTERPRETER == INTERPRETER ||
|
12
|
+
!ELF::INTERPRETER.end_with?(INTERPRETER)),
|
6
13
|
File.absolute_path('dart-sass/src/dart', __dir__).freeze,
|
7
14
|
File.absolute_path('dart-sass/src/sass.snapshot', __dir__).freeze
|
8
15
|
].freeze
|
Binary file
|
@@ -12,15 +12,7 @@ module Sass
|
|
12
12
|
class Connection
|
13
13
|
def initialize
|
14
14
|
@mutex = Mutex.new
|
15
|
-
@stdin, @stdout, @stderr, @wait_thread =
|
16
|
-
Open3.popen3(*CLI::COMMAND, '--embedded', chdir: __dir__)
|
17
|
-
rescue Errno::ENOENT
|
18
|
-
require_relative '../elf'
|
19
|
-
|
20
|
-
raise if ELF::INTERPRETER.nil?
|
21
|
-
|
22
|
-
Open3.popen3(ELF::INTERPRETER, *CLI::COMMAND, '--embedded', chdir: __dir__)
|
23
|
-
end
|
15
|
+
@stdin, @stdout, @stderr, @wait_thread = Open3.popen3(*CLI::COMMAND, '--embedded', chdir: __dir__)
|
24
16
|
|
25
17
|
@stdin.binmode
|
26
18
|
|
@@ -25,37 +25,15 @@ module Sass
|
|
25
25
|
number: Number.to_proto(obj)
|
26
26
|
)
|
27
27
|
when Sass::Value::Color
|
28
|
-
|
29
|
-
EmbeddedProtocol::Value.new(
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
space: 'rgb'
|
36
|
-
)
|
37
|
-
)
|
38
|
-
elsif obj.instance_eval { !defined?(@saturation) }
|
39
|
-
EmbeddedProtocol::Value.new(
|
40
|
-
color: EmbeddedProtocol::Value::Color.new(
|
41
|
-
channel1: obj.hue.to_f,
|
42
|
-
channel2: obj.whiteness.to_f,
|
43
|
-
channel3: obj.blackness.to_f,
|
44
|
-
alpha: obj.alpha.to_f,
|
45
|
-
space: 'hwb'
|
46
|
-
)
|
47
|
-
)
|
48
|
-
else
|
49
|
-
EmbeddedProtocol::Value.new(
|
50
|
-
color: EmbeddedProtocol::Value::Color.new(
|
51
|
-
channel1: obj.hue.to_f,
|
52
|
-
channel2: obj.saturation.to_f,
|
53
|
-
channel3: obj.lightness.to_f,
|
54
|
-
alpha: obj.alpha.to_f,
|
55
|
-
space: 'hsl'
|
56
|
-
)
|
28
|
+
EmbeddedProtocol::Value.new(
|
29
|
+
color: EmbeddedProtocol::Value::Color.new(
|
30
|
+
channel1: obj.send(:channel0_or_nil),
|
31
|
+
channel2: obj.send(:channel1_or_nil),
|
32
|
+
channel3: obj.send(:channel2_or_nil),
|
33
|
+
alpha: obj.send(:alpha_or_nil),
|
34
|
+
space: obj.space
|
57
35
|
)
|
58
|
-
|
36
|
+
)
|
59
37
|
when Sass::Value::ArgumentList
|
60
38
|
EmbeddedProtocol::Value.new(
|
61
39
|
argument_list: EmbeddedProtocol::Value::ArgumentList.new(
|
@@ -134,31 +112,14 @@ module Sass
|
|
134
112
|
when :number
|
135
113
|
Number.from_proto(obj)
|
136
114
|
when :color
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
when 'hsl'
|
146
|
-
Sass::Value::Color.new(
|
147
|
-
hue: obj.channel1,
|
148
|
-
saturation: obj.channel2,
|
149
|
-
lightness: obj.channel3,
|
150
|
-
alpha: obj.alpha
|
151
|
-
)
|
152
|
-
when 'hwb'
|
153
|
-
Sass::Value::Color.new(
|
154
|
-
hue: obj.channel1,
|
155
|
-
whiteness: obj.channel2,
|
156
|
-
blackness: obj.channel3,
|
157
|
-
alpha: obj.alpha
|
158
|
-
)
|
159
|
-
else
|
160
|
-
raise NotImplementedError, 'CSS Color Level 4 will be supported in a future release'
|
161
|
-
end
|
115
|
+
Sass::Value::Color.send(
|
116
|
+
:for_space,
|
117
|
+
obj.space,
|
118
|
+
obj.channel1,
|
119
|
+
obj.channel2,
|
120
|
+
obj.channel3,
|
121
|
+
obj.alpha
|
122
|
+
)
|
162
123
|
when :argument_list
|
163
124
|
Sass::Value::ArgumentList.new(
|
164
125
|
obj.contents.map do |element|
|
data/lib/sass/elf.rb
CHANGED
@@ -147,7 +147,7 @@ module Sass
|
|
147
147
|
elf_ehdr = :Elf64_Ehdr
|
148
148
|
elf_phdr = :Elf64_Phdr
|
149
149
|
else
|
150
|
-
raise
|
150
|
+
raise EncodingError
|
151
151
|
end
|
152
152
|
|
153
153
|
case @ehdr[:e_ident][EI_DATA]
|
@@ -156,7 +156,7 @@ module Sass
|
|
156
156
|
when ELFDATA2MSB
|
157
157
|
little_endian = false
|
158
158
|
else
|
159
|
-
raise
|
159
|
+
raise EncodingError
|
160
160
|
end
|
161
161
|
|
162
162
|
@ehdr.merge!(read(elf_ehdr, little_endian))
|
@@ -189,7 +189,7 @@ module Sass
|
|
189
189
|
|
190
190
|
@buffer.seek(phdr[:p_offset], IO::SEEK_SET)
|
191
191
|
interpreter = @buffer.read(phdr[:p_filesz])
|
192
|
-
raise
|
192
|
+
raise EncodingError unless interpreter.end_with?("\0")
|
193
193
|
|
194
194
|
interpreter.chomp!("\0")
|
195
195
|
end
|
@@ -215,7 +215,7 @@ module Sass
|
|
215
215
|
end
|
216
216
|
end
|
217
217
|
end
|
218
|
-
end
|
218
|
+
end.freeze
|
219
219
|
end
|
220
220
|
|
221
221
|
private_constant :ELF
|
@@ -0,0 +1,79 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Sass
|
4
|
+
module Value
|
5
|
+
class Color
|
6
|
+
# @see https://github.com/sass/dart-sass/blob/main/lib/src/value/color/channel.dart
|
7
|
+
class ColorChannel
|
8
|
+
# @return [::String]
|
9
|
+
attr_reader :name
|
10
|
+
|
11
|
+
# @return [::Boolean]
|
12
|
+
def polar_angle?
|
13
|
+
@polar_angle
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [::String, nil]
|
17
|
+
attr_reader :associated_unit
|
18
|
+
|
19
|
+
# @param name [::String]
|
20
|
+
# @param polar_angle [::Boolean]
|
21
|
+
# @param associated_unit [::String]
|
22
|
+
def initialize(name, polar_angle:, associated_unit: nil)
|
23
|
+
@name = name
|
24
|
+
@polar_angle = polar_angle
|
25
|
+
@associated_unit = associated_unit
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [::Boolean]
|
29
|
+
def analogous?(other)
|
30
|
+
case [name, other.name]
|
31
|
+
in ['red' | 'x', 'red' | 'x'] |
|
32
|
+
['green' | 'y', 'green' | 'y'] |
|
33
|
+
['blue' | 'z', 'blue' | 'z'] |
|
34
|
+
['chroma' | 'saturation', 'chroma' | 'saturation'] |
|
35
|
+
['lightness', 'lightness'] |
|
36
|
+
['hue', 'hue']
|
37
|
+
true
|
38
|
+
else
|
39
|
+
false
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
private_constant :ColorChannel
|
45
|
+
|
46
|
+
# @see https://github.com/sass/dart-sass/blob/main/lib/src/value/color/channel.dart
|
47
|
+
class LinearChannel < ColorChannel
|
48
|
+
# @return [Numeric]
|
49
|
+
attr_reader :min, :max
|
50
|
+
|
51
|
+
# @return [::Boolean]
|
52
|
+
attr_reader :requires_percent, :lower_clamped, :upper_clamped
|
53
|
+
|
54
|
+
# @param name [::String]
|
55
|
+
# @param min [Numeric]
|
56
|
+
# @param max [Numeric]
|
57
|
+
# @param requires_percent [::Boolean]
|
58
|
+
# @param lower_clamped [::Boolean]
|
59
|
+
# @param upper_clamped [::Boolean]
|
60
|
+
# @param conventionally_percent [::Boolean]
|
61
|
+
def initialize(name, min, max, requires_percent: false, lower_clamped: false, upper_clamped: false,
|
62
|
+
conventionally_percent: nil)
|
63
|
+
super(name,
|
64
|
+
polar_angle: false,
|
65
|
+
associated_unit: if conventionally_percent.nil? ? (min.zero? && max == 100) : conventionally_percent
|
66
|
+
'%'
|
67
|
+
end)
|
68
|
+
@min = min
|
69
|
+
@max = max
|
70
|
+
@requires_percent = requires_percent
|
71
|
+
@lower_clamped = lower_clamped
|
72
|
+
@upper_clamped = upper_clamped
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
private_constant :LinearChannel
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|