Vendor courier stack and add inflate/SHA-1 foundations#310
Draft
SeanTAllen wants to merge 3 commits intomainfrom
Draft
Vendor courier stack and add inflate/SHA-1 foundations#310SeanTAllen wants to merge 3 commits intomainfrom
SeanTAllen wants to merge 3 commits intomainfrom
Conversation
Infrastructure for Pure Pony Git (Phase 1). Vendors ssl, lori, and courier into corral/_vendor/. Adds pure Pony DEFLATE decompression (corral/git/inflate/) and a SHA-1 wrapper (corral/git/sha1/). Updates build system to require ssl= parameter and CI to install LibreSSL. Design: #309
Use unquoted string variable for ponyArgs (matching ponyup's pattern) so PowerShell word-splits the flags into separate arguments for ponyc.
PowerShell doesn't word-split string variables for native commands. Use an array so each flag is a separate argument to ponyc.
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.
Infrastructure for Pure Pony Git (Phase 1). Vendors ssl, lori, and courier into
corral/_vendor/. Adds pure Pony DEFLATE decompression (corral/git/inflate/) and a SHA-1 wrapper (corral/git/sha1/). Updates build system to requiressl=parameter and CI to install LibreSSL.Vendored packages (90 files, no test files): ssl 2.0.1, lori 0.12.0, courier 0.1.3. Pinned commits in
corral/_vendor/VERSIONS.New packages:
corral/git/inflate/-- RFC 1951 DEFLATE decompression with RFC 1950 zlib framing (stored, fixed Huffman, dynamic Huffman blocks), Adler-32 checksum verificationcorral/git/sha1/-- SHA-1 wrapper over ssl/crypto, provides both raw bytes and hex string formsBuild system:
ssl=parameter required for all targets exceptclean. Values:3.0.x,1.1.x,libressl. CI standardizes onssl=libressl.CI: All workflows updated -- Linux jobs use
standard-builder-with-libressl-4.2.0Docker images, macOS jobs install LibreSSL via Homebrew, Windows jobs download LibreSSL via new.ci-scripts/windows-install-libressl.ps1.Design: #309