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
+1 -1
View File
@@ -793,7 +793,7 @@
repositoryURL = "https://github.com/edde746/MPVKit";
requirement = {
kind = exactVersion;
version = 1.0.7;
version = 1.0.8;
};
};
/* End XCRemoteSwiftPackageReference section */
@@ -40,8 +40,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
},
{
@@ -40,8 +40,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
},
{
+1 -1
View File
@@ -883,7 +883,7 @@
repositoryURL = "https://github.com/edde746/MPVKit";
requirement = {
kind = exactVersion;
version = 1.0.7;
version = 1.0.8;
};
};
/* End XCRemoteSwiftPackageReference section */
@@ -13,8 +13,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
},
{
@@ -13,8 +13,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
},
{
+1 -1
View File
@@ -939,7 +939,7 @@
repositoryURL = "https://github.com/edde746/MPVKit";
requirement = {
kind = exactVersion;
version = 1.0.7;
version = 1.0.8;
};
};
/* End XCRemoteSwiftPackageReference section */
@@ -6,8 +6,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
}
],
@@ -6,8 +6,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit",
"state" : {
"revision" : "b3c0e0900235ba8e4cd86ed962817e1a38b284be",
"version" : "1.0.7"
"revision" : "722e781c0d44e72e30260727eaf329f9e2965bba",
"version" : "1.0.8"
}
}
],
+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)