Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"registries": [
{
"kind": "git",
"repository": "https://github.com/alandtse/vcpkg",
"baseline": "0793c0ffb30cccd574f7804ac367d028c39b72ec",
"reference": "eastl-3.27.01",
"packages": ["eastl", "eabase"]
}
]
}
Comment on lines +1 to +11

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

microsoft vcpkg pull request 49228 eastl status

💡 Result:

Do you mean the GitHub pull request microsoft/vcpkg#49228 that updates the eastl port? If so I can look it up — confirm and I’ll fetch the current status.


🏁 Script executed:

#!/bin/bash
# Verify the custom registry configuration exists and is accessible

# Check if the fork repository is reachable
echo "=== Checking fork repository ==="
git ls-remote https://github.com/alandtse/vcpkg HEAD 2>&1 | head -5

# Check if the baseline commit exists
echo -e "\n=== Checking baseline commit 0793c0ffb30cccd574f7804ac367d028c39b72ec ==="
git ls-remote https://github.com/alandtse/vcpkg 0793c0ffb30cccd574f7804ac367d028c39b72ec

# Check if the reference branch eastl-3.27.01 exists
echo -e "\n=== Checking reference branch eastl-3.27.01 ==="
git ls-remote --heads https://github.com/alandtse/vcpkg eastl-3.27.01

# Also check tags in case it's a tag instead of a branch
echo -e "\n=== Checking if eastl-3.27.01 is a tag ==="
git ls-remote --tags https://github.com/alandtse/vcpkg eastl-3.27.01

Repository: doodlum/skyrim-community-shaders

Length of output: 388


🌐 Web query:

site:github.com microsoft/vcpkg pull 49228

💡 Result:

I searched microsoft/vcpkg but couldn't find a pull request numbered 49228. The repository's PR index and main repo are here for you to check directly: [1][2].

Sources:
[1] microsoft/vcpkg — Pull requests list.
[2] microsoft/vcpkg — repository home.


🏁 Script executed:

#!/bin/bash
# Get more details about what's in the fork
echo "=== Recent commits in fork ==="
git ls-remote https://github.com/alandtse/vcpkg refs/heads/eastl-3.27.01

echo -e "\n=== Checking main branch of fork ==="
git ls-remote https://github.com/alandtse/vcpkg main master

Repository: doodlum/skyrim-community-shaders

Length of output: 269


Fix invalid baseline commit in vcpkg registry configuration.

The baseline commit 0793c0ffb30cccd574f7804ac367d028c39b72ec does not exist in the fork repository, which will cause the registry to fail. While the reference branch eastl-3.27.01 exists in the fork, the baseline must point to a valid commit for vcpkg to resolve packages from this registry.

Before merging, either:

  1. Update the baseline to a valid commit from the fork repository, or
  2. Remove this custom registry configuration

Additionally, the upstream PR reference (microsoft/vcpkg#49228) could not be located and should be verified.

🤖 Prompt for AI Agents
In @vcpkg-configuration.json around lines 1 - 11, The vcpkg registry block in
vcpkg-configuration.json contains an invalid baseline commit
("0793c0ffb30cccd574f7804ac367d028c39b72ec") for the git registry pointing at
"https://github.com/alandtse/vcpkg" which will break package resolution; either
replace the "baseline" value with a real commit SHA from that fork that includes
the "eastl-3.27.01" reference branch, or remove the entire registry object (the
entry with "kind": "git", "repository", "baseline", "reference", "packages") so
vcpkg falls back to default registries; also verify or update the upstream PR
reference (microsoft/vcpkg#49228) mentioned in your change notes to ensure it
exists and corresponds to the chosen baseline/reference.

8 changes: 8 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@
"name": "bshoshany-thread-pool",
"version": "3.5.0"
},
{
"name": "eabase",
"version": "2025-08-03"
},
{
"name": "eastl",
"version": "3.27.01"
},
{
"name": "imgui",
"version": "1.90"
Expand Down