chore(apple): pin MPVKit 1.0.8

AV1 perf: NEON dav1d (upstream prebuilt shipped C-only) + fused
software-frame upload in the avfoundation VO (patch 0009).
This commit is contained in:
edde746
2026-07-03 08:51:19 +02:00
parent 7972743a2f
commit 8fa91fe444
10 changed files with 19 additions and 19 deletions
+4 -4
View File
@@ -42,18 +42,18 @@ end
# Swift Package: MPVKit.
pkg_url = 'https://github.com/edde746/MPVKit'
pkg_revision = '1fc33029bc0317583866c62811dc0ab2aa2415b6'
pkg_version = '1.0.8'
existing_pkg = project.root_object.package_references.find do |p|
p.repositoryURL == pkg_url rescue false
end
if existing_pkg
existing_pkg.requirement = { 'kind' => 'revision', 'revision' => pkg_revision }
puts "[set ] MPVKit SPM package revision"
existing_pkg.requirement = { 'kind' => 'exactVersion', 'version' => pkg_version }
puts "[set ] MPVKit SPM package version"
else
pkg = project.new(Xcodeproj::Project::Object::XCRemoteSwiftPackageReference)
pkg.repositoryURL = pkg_url
pkg.requirement = { 'kind' => 'revision', 'revision' => pkg_revision }
pkg.requirement = { 'kind' => 'exactVersion', 'version' => pkg_version }
project.root_object.package_references << pkg
product = project.new(Xcodeproj::Project::Object::XCSwiftPackageProductDependency)