feat(packaging): Add Chocolatey package scaffolding#41
Merged
Conversation
Add Chocolatey package structure for Windows distribution with: - newrelic-cli.nuspec: Package metadata with proper URLs to pass moderation rules (CPMR0041: projectUrl differs from projectSourceUrl) - chocolateyInstall.ps1: Install script using Install-ChocolateyZipPackage (CPMR0055) with checksum placeholders for build-time injection (CPMR0073) - chocolateyUninstall.ps1: Cleanup script for uninstallation - README.md: Documentation for maintainers The install script supports: - ARM64 and x64 Windows architectures - Explicit error for unsupported 32-bit Windows - Automatic shimming exclusion for LICENSE and README.md
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.
Summary
Add Chocolatey package structure for Windows distribution following best practices from the platform distribution guide.
Changes
Creates
packaging/chocolatey/with:newrelic-cli.nuspectools/chocolateyInstall.ps1tools/chocolateyUninstall.ps1README.mdChocolatey Moderation Compliance
#readmefragment to projectUrlInstall-ChocolateyZipPackageonlyCHECKSUM_AMD64_PLACEHOLDERandCHECKSUM_ARM64_PLACEHOLDERfor build-time injectionArchitecture Support
The install script detects:
windows_arm64.zipwindows_amd64.zipNotes
0.0.0in nuspec is a placeholder replaced at release time.ignorefiles to prevent Chocolatey from shimming LICENSE and README.mdCloses #36