Add cpanfile for non-core dependencies#90
Open
tomjn wants to merge 1 commit into
Open
Conversation
Machine-readable manifest of the non-core Perl modules described in INSTALL.md, enabling 'cpanm --installdeps .'. FFI::Platypus is required on non-Windows (the Win32::* set on Windows); IO::Socket::SSL and DBD::SQLite are recommended (TLS / engine install / map downloads, and multi-instance mode respectively). Core modules are intentionally omitted, and INSTALL.md remains authoritative for the preferred system-package install method.
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.
What
Adds a
cpanfiledeclaring the non-core Perl modules currently described only inprose in
INSTALL.md:FFI::Platypus(required, non-Windows) /Win32,Win32::API,Win32::TieRegistry(Windows), gated on$^OIO::Socket::SSL(recommended)DBD::SQLite(recommended, multi-instance mode)Why
Makes the dependencies machine-readable, enabling
cpanm --installdeps .and useby CI. Core modules are intentionally omitted, and
INSTALL.mdremainsauthoritative for the preferred system-package install method (the cpanfile
comments point back to it).
Purely additive; no runtime code is touched. Validated that the file evaluates
cleanly and declares the expected modules.