ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.62 kB
TypeScript
/**
* **sip** - Tool to create Python bindings for C and C++ libraries
*
* @domain `riverbankcomputing.com/sip`
* @programs `sip-install`, `sip-build`, `sip-distinfo`, `sip-module`, `sip-sdist`, ... (+1 more)
* @version `6.8.3` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +riverbankcomputing.com/sip -- $SHELL -i`
* @name `sip`
* @dependencies `python.org~3.11`, `llvm.org<17 # needs gcc to sip-install`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sip
* // Or access via domain
* const samePkg = pantry.riverbankcomputingcomsip
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sip"
* console.log(pkg.description) // "Tool to create Python bindings for C and C++ li..."
* console.log(pkg.programs) // ["sip-install", "sip-build", ...]
* console.log(pkg.versions[0]) // "6.8.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/riverbankcomputing-com/sip.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sipPackage: {
/**
* The display name of this package.
*/
name: 'sip';
/**
* The canonical domain name for this package.
*/
domain: 'riverbankcomputing.com/sip';
/**
* Brief description of what this package does.
*/
description: 'Tool to create Python bindings for C and C++ libraries';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/riverbankcomputing.com/sip/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +riverbankcomputing.com/sip -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sip-install', 'sip-build', 'sip-distinfo', 'sip-module', 'sip-sdist', 'sip-wheel'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.11', 'llvm.org<17 # needs gcc to sip-install'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.8.3', '6.8.2', '6.8.1', '6.8.0', '6.7.11', '6.7.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type SipPackage = typeof sipPackage