UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 3.38 kB
/** * **git** - Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements. * * @domain `git-scm.org` * @programs `git`, `git-cvsserver`, `git-receive-pack`, `git-shell`, `git-upload-archive`, ... (+3 more) * @version `2.51.0` (31 versions available) * @versions From newest version to oldest. * * @install `launchpad install git` * @name `git` * @dependencies `zlib.net@1`, `gnu.org/gettext^0.21`, `curl.se>=5`, ... (+3 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.git * // Or access via domain * const samePkg = pantry.gitscmorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git" * console.log(pkg.description) // "Git Source Code Mirror - This is a publish-only..." * console.log(pkg.programs) // ["git", "git-cvsserver", ...] * console.log(pkg.versions[0]) // "2.51.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/git-scm-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitPackage: { /** * The display name of this package. */ name: 'git'; /** * The canonical domain name for this package. */ domain: 'git-scm.org'; /** * Brief description of what this package does. */ description: 'Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/git-scm.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install git'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git', 'git-cvsserver', 'git-receive-pack', 'git-shell', 'git-upload-archive', 'git-upload-pack', 'scalar', 'git-credential-osxkeychain']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net@1', 'gnu.org/gettext^0.21', 'curl.se>=5', 'curl.se/ca-certs', 'perl.org', 'libexpat.github.io~2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.51.0', '2.50.1', '2.50.0', '2.49.1', '2.49.0', '2.48.2', '2.48.0', '2.47.3', '2.47.1', '2.47.0', '2.46.4', '2.46.2', '2.46.1', '2.46.0', '2.45.4', '2.45.2', '2.45.0', '2.44.4', '2.44.0', '2.43.7', '2.43.3', '2.43.2', '2.43.1', '2.43.0', '2.42.1', '2.42.0', '2.41.0', '2.40.0', '2.39.1', '2.39.0', '2.38.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +git-scm.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install git' }; export type GitPackage = typeof gitPackage