Skip to content

Commit 40d1d52

Browse files
authored
Avoid using shellcode env with pkgx (#1119)
1 parent c5344f5 commit 40d1d52

19 files changed

+59
-61
lines changed

Demo/Sources/ContentLists/ContentListViewModel.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class ContentListViewModel: ObservableObject, Refreshable {
1616
init() {
1717
$configuration
1818
.removeDuplicates()
19-
.compactMap { $0 }
19+
.compactMap(\.self)
2020
.map { [trigger] configuration in
2121
Self.publisher(for: configuration, trigger: trigger)
2222
}

Gemfile.lock

+22-22
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ GEM
1010
artifactory (3.0.17)
1111
atomos (0.1.3)
1212
aws-eventstream (1.3.0)
13-
aws-partitions (1.1014.0)
14-
aws-sdk-core (3.214.0)
13+
aws-partitions (1.1040.0)
14+
aws-sdk-core (3.216.0)
1515
aws-eventstream (~> 1, >= 1.3.0)
1616
aws-partitions (~> 1, >= 1.992.0)
1717
aws-sigv4 (~> 1.9)
1818
jmespath (~> 1, >= 1.6.1)
19-
aws-sdk-kms (1.96.0)
20-
aws-sdk-core (~> 3, >= 3.210.0)
19+
aws-sdk-kms (1.97.0)
20+
aws-sdk-core (~> 3, >= 3.216.0)
2121
aws-sigv4 (~> 1.5)
22-
aws-sdk-s3 (1.174.0)
23-
aws-sdk-core (~> 3, >= 3.210.0)
22+
aws-sdk-s3 (1.178.0)
23+
aws-sdk-core (~> 3, >= 3.216.0)
2424
aws-sdk-kms (~> 1)
2525
aws-sigv4 (~> 1.5)
26-
aws-sigv4 (1.10.1)
26+
aws-sigv4 (1.11.0)
2727
aws-eventstream (~> 1, >= 1.0.2)
2828
babosa (1.0.4)
2929
badge (0.13.0)
@@ -62,17 +62,17 @@ GEM
6262
faraday-em_synchrony (1.0.0)
6363
faraday-excon (1.1.0)
6464
faraday-httpclient (1.0.1)
65-
faraday-multipart (1.0.4)
66-
multipart-post (~> 2)
65+
faraday-multipart (1.1.0)
66+
multipart-post (~> 2.0)
6767
faraday-net_http (1.0.2)
6868
faraday-net_http_persistent (1.2.0)
6969
faraday-patron (1.0.0)
7070
faraday-rack (1.0.0)
7171
faraday-retry (1.0.3)
7272
faraday_middleware (1.2.1)
7373
faraday (~> 1.0)
74-
fastimage (2.3.1)
75-
fastlane (2.225.0)
74+
fastimage (2.4.0)
75+
fastlane (2.226.0)
7676
CFPropertyList (>= 2.3, < 4.0.0)
7777
addressable (>= 2.8, < 3.0.0)
7878
artifactory (~> 3.0)
@@ -112,7 +112,7 @@ GEM
112112
tty-spinner (>= 0.8.0, < 1.0.0)
113113
word_wrap (~> 1.0.0)
114114
xcodeproj (>= 1.13.0, < 2.0.0)
115-
xcpretty (~> 0.3.0)
115+
xcpretty (~> 0.4.0)
116116
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
117117
fastlane-plugin-badge (1.5.0)
118118
badge (~> 0.13.0)
@@ -157,12 +157,12 @@ GEM
157157
os (>= 0.9, < 2.0)
158158
signet (>= 0.16, < 2.a)
159159
highline (2.0.3)
160-
http-cookie (1.0.7)
160+
http-cookie (1.0.8)
161161
domain_name (~> 0.5)
162162
httpclient (2.8.3)
163163
jmespath (1.6.2)
164-
json (2.8.2)
165-
jwt (2.9.3)
164+
json (2.9.1)
165+
jwt (2.10.1)
166166
base64
167167
mini_magick (4.13.2)
168168
mini_mime (1.1.5)
@@ -173,18 +173,18 @@ GEM
173173
nkf (0.2.0)
174174
optparse (0.6.0)
175175
os (1.1.4)
176-
plist (3.7.1)
176+
plist (3.7.2)
177177
public_suffix (6.0.1)
178178
rake (13.2.1)
179179
representable (3.2.0)
180180
declarative (< 0.1.0)
181181
trailblazer-option (>= 0.1.1, < 0.2.0)
182182
uber (< 0.2.0)
183183
retriable (3.1.2)
184-
rexml (3.3.9)
185-
rouge (2.0.7)
184+
rexml (3.4.0)
185+
rouge (3.28.0)
186186
ruby2_keywords (0.0.5)
187-
rubyzip (2.3.2)
187+
rubyzip (2.4.1)
188188
security (0.1.5)
189189
signet (0.19.0)
190190
addressable (~> 2.8)
@@ -213,8 +213,8 @@ GEM
213213
colored2 (~> 3.1)
214214
nanaimo (~> 0.4.0)
215215
rexml (>= 3.3.6, < 4.0)
216-
xcpretty (0.3.0)
217-
rouge (~> 2.0.7)
216+
xcpretty (0.4.0)
217+
rouge (~> 3.28.0)
218218
xcpretty-travis-formatter (1.0.1)
219219
xcpretty (~> 0.2, >= 0.0.7)
220220

@@ -233,4 +233,4 @@ DEPENDENCIES
233233
fastlane-plugin-xcconfig
234234

235235
BUNDLED WITH
236-
2.5.23
236+
2.6.3

Scripts/private/archive-demo.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ function usage {
1111

1212
function install_tools {
1313
curl -Ssf https://pkgx.sh | sh &> /dev/null
14-
eval "$(pkgx --shellcode)"
15-
env +bundle
14+
set -a
15+
eval "$(pkgx +bundle)"
16+
set +a
1617
}
1718

1819
if [[ -z "$1" ]]; then

Scripts/private/deliver-demo.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ function usage {
1111

1212
function install_tools {
1313
curl -Ssf https://pkgx.sh | sh &> /dev/null
14-
eval "$(pkgx --shellcode)"
15-
env +bundle +magick +rsvg-convert
14+
set -a
15+
eval "$(pkgx +bundle +magick +rsvg-convert)"
16+
set +a
1617
}
1718

1819
while getopts p:c: OPT; do

Scripts/private/fix-quality.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ set -e
44

55
function install_tools {
66
curl -Ssf https://pkgx.sh | sh &> /dev/null
7-
eval "$(pkgx --shellcode)"
8-
env +swiftlint
7+
set -a
8+
eval "$(pkgx +swiftlint)"
9+
set +a
910
}
1011

1112
install_tools

Scripts/public/check-quality.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ function usage {
1212

1313
function install_tools {
1414
curl -Ssf https://pkgx.sh | sh &> /dev/null
15-
eval "$(pkgx --shellcode)"
16-
env +swiftlint +shellcheck +markdownlint
15+
set -a
16+
eval "$(pkgx +swiftlint +shellcheck +markdownlint)"
17+
set +a
1718
}
1819

1920
while getopts c OPT; do

Scripts/public/clean-imports.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
function install_tools {
44
curl -Ssf https://pkgx.sh | sh &> /dev/null
5-
eval "$(pkgx --shellcode)"
6-
env +swiftlint
5+
set -a
6+
eval "$(pkgx +swiftlint)"
7+
set +a
78
}
89

910
install_tools

Scripts/public/find-dead-code.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
function install_tools {
44
curl -Ssf https://pkgx.sh | sh &> /dev/null
5-
eval "$(pkgx --shellcode)"
6-
env +periphery
5+
set -a
6+
eval "$(pkgx +periphery)"
7+
set +a
78
}
89

910
install_tools

Scripts/public/test-streams.sh

+3-12
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,6 @@ function serve_test_streams {
1313

1414
kill_test_streams "$dest_dir"
1515

16-
if ! command -v python &> /dev/null; then
17-
echo "python could not be found"
18-
exit 1
19-
fi
20-
21-
if ! command -v ffmpeg &> /dev/null; then
22-
echo "ffmpeg could not be found"
23-
exit 1
24-
fi
25-
2616
mkdir -p "$dest_dir"
2717
cp -R "$JSON_DIR" "$dest_dir"
2818

@@ -136,8 +126,9 @@ function usage {
136126

137127
function install_tools {
138128
curl -Ssf https://pkgx.sh | sh &> /dev/null
139-
eval "$(pkgx --shellcode)"
140-
env +python +ffmpeg +packager
129+
set -a
130+
eval "$(pkgx +python +ffmpeg +packager)"
131+
set +a
141132
}
142133

143134
if [[ -z "$1" ]]; then

Scripts/public/test.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ function usage {
1111

1212
function install_tools {
1313
curl -Ssf https://pkgx.sh | sh &> /dev/null
14-
eval "$(pkgx --shellcode)"
15-
env +ruby +bundle +xcodes
14+
set -a
15+
eval "$(pkgx +ruby +bundle +xcodes)"
16+
set +a
1617
}
1718

1819
if [[ -z "$1" ]]; then

Sources/Circumspect/Expectations/ExpectAtLeastPublished.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public extension XCTestCase {
163163
file: file,
164164
line: line,
165165
while: executing
166-
).flatMap({ $0 }) else {
166+
).flatMap(\.self) else {
167167
XCTFail("Failed to publish enough values", file: file, line: line)
168168
return
169169
}

Sources/Core/Publisher.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public extension Publisher {
2525
/// ```
2626
func withPrevious() -> AnyPublisher<(previous: Output?, current: Output), Failure> {
2727
scan(Optional<(Output?, Output)>.none) { ($0?.1, $1) }
28-
.compactMap { $0 }
28+
.compactMap(\.self)
2929
.eraseToAnyPublisher()
3030
}
3131

Sources/Player/Extensions/AVMediaSelectionGroup.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension AVMediaSelectionGroup {
2323
}
2424
.merging(withOptions) { _, new in new }
2525
.values
26-
.flatMap { $0 }
26+
.flatMap(\.self)
2727
}
2828

2929
/// Returns media selection options where options without the provided characteristics are preferred.
@@ -42,7 +42,7 @@ extension AVMediaSelectionGroup {
4242
}
4343
.merging(withoutOptions) { _, new in new }
4444
.values
45-
.flatMap { $0 }
45+
.flatMap(\.self)
4646
}
4747

4848
static func sortedMediaSelectionOptions(from options: [AVMediaSelectionOption]) -> [AVMediaSelectionOption] {

Sources/Player/Publishers/AVAssetPublishers.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extension AVAsset {
1717
.map { characteristics, asset in
1818
Publishers.MergeMany(characteristics.compactMap { characteristic in
1919
asset.mediaSelectionGroupPublisher(for: characteristic)
20-
.compactMap { $0 }
20+
.compactMap(\.self)
2121
.map { [characteristic: $0] }
2222
.replaceError(with: [:])
2323
})

Sources/Player/Publishers/AVPlayerItemPublishers.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ extension AVPlayerItem {
148148

149149
private func timebaseUpdateNotificationPublisher() -> AnyPublisher<Bool, Never> {
150150
publisher(for: \.timebase)
151-
.compactMap { $0 }
151+
.compactMap(\.self)
152152
.map { _ in false }
153153
.eraseToAnyPublisher()
154154
}
@@ -218,7 +218,7 @@ extension AVPlayerItem {
218218

219219
func assetMetricEventPublisher() -> AnyPublisher<MetricEvent, Never> {
220220
publisher(for: \.isPlaybackLikelyToKeepUp)
221-
.first { $0 }
221+
.first(where: \.self)
222222
.measureDateInterval()
223223
.weakCapture(self)
224224
.map { dateInterval, item in

Sources/Player/Types/Chapter.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public struct Chapter: Equatable {
3737
.init(identifier: .commonIdentifierAssetIdentifier, value: identifier),
3838
.init(identifier: .commonIdentifierTitle, value: title),
3939
.init(identifier: .commonIdentifierArtwork, value: artworkImage.pngData())
40-
].compactMap { $0 },
40+
].compactMap(\.self),
4141
timeRange: timeRange
4242
)
4343
}

Sources/Player/Types/PlayerMetadata.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public struct PlayerMetadata: Equatable {
6565
.init(identifier: .commonIdentifierDescription, value: description),
6666
.init(identifier: .commonIdentifierArtwork, value: artworkData),
6767
.init(identifier: .quickTimeUserDataCreationDate, value: episodeDescription)
68-
].compactMap { $0 }
68+
].compactMap(\.self)
6969
}
7070

7171
var nowPlayingInfo: NowPlaying.Info {

Sources/Player/UserInterface/VisibilityTracker.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public final class VisibilityTracker: ObservableObject {
161161

162162
private func voiceOverUnhidePublisher() -> AnyPublisher<Bool, Never> {
163163
voiceOverStatusPublisher()
164-
.filter { $0 }
164+
.filter(\.self)
165165
.map { _ in false }
166166
.eraseToAnyPublisher()
167167
}

Tests/CircumspectTests/PublishersTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ final class PublisherTests: XCTestCase {
101101
func testCollectFirst() throws {
102102
let values = try waitForOutput(
103103
from: [1, 2, 3, 4, 5].publisher.collectFirst(3)
104-
).flatMap { $0 }
104+
).flatMap(\.self)
105105
expect(values).to(equal([1, 2, 3]))
106106
}
107107

108108
func testCollectNext() throws {
109109
let values = try waitForOutput(
110110
from: [1, 2, 3, 4, 5].publisher.collectNext(3)
111-
).flatMap { $0 }
111+
).flatMap(\.self)
112112
expect(values).to(equal([2, 3, 4]))
113113
}
114114
}

0 commit comments

Comments
 (0)