New package dependency: PerryTS.Perry version 0.5.178#364706
Merged
microsoft-github-policy-service[bot] merged 1 commit intomicrosoft:masterfrom Apr 24, 2026
Merged
Conversation
Collaborator
|
Validation Pipeline Run WinGetSvc-Validation-140-364706-20260424-1 |
stephengillie
approved these changes
Apr 24, 2026
a6596dc
into
microsoft:master
1 check passed
Collaborator
|
Publish pipeline succeeded for this Pull Request. Once you refresh your index, this change should be present. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add
LLVM.LLVMas aPackageDependenciesentry forPerryTS.Perryv0.5.178.Motivation
Perry is a native TypeScript compiler (https://github.com/PerryTS/perry) that shells out to
clangto turn its LLVM IR into native object files. Without LLVM on the system,perry compile hello.tsfails with aclang not founderror on every fresh Windows install.The Perry CLI already falls back to
C:\Program Files\LLVM\bin\clang.exeand MSVC's bundled clang, plusPERRY_LLVM_CLANGas an explicit override, so the dependency only needs to exist on PATH — it doesn't need to be a specific version.Effect
After this PR,
winget install PerryTS.Perrywill pullLLVM.LLVMfirst, and the fresh install will work end-to-end. Reported by a user at PerryTS/perry#176.Checklist
winget validate --manifest <path>?Notes
Adding the
Dependenciesblock to v0.5.178 (the current latest) rather than a new version becausewingetcreate update(used by Perry's release automation at PerryTS/perry/.github/workflows/release-packages.yml) uses the latest published manifest as its template and preserves fields it doesn't explicitly mutate — so future Perry releases automatically carry this dependency forward without additional winget-pkgs PRs.Microsoft Reviewers: Open in CodeFlow