ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.52 kB
TypeScript
/**
* **openpmix.github.io** - Process Management Interface for HPC environments
*
* @domain `openpmix.github.io`
* @programs `palloc`, `pattrs`, `pctrl`, `pevent`, `plookup`, ... (+4 more)
* @version `6.0.0` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install openpmix.github.io`
* @dependencies `open-mpi.org/hwloc^2.10`, `libevent.org^2.1`, `zlib.net^1.3`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.openpmixgithubio
* console.log(pkg.name) // "openpmix.github.io"
* console.log(pkg.description) // "Process Management Interface for HPC environments"
* console.log(pkg.programs) // ["palloc", "pattrs", ...]
* console.log(pkg.versions[0]) // "6.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/openpmix-github-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const openpmixgithubioPackage: {
/**
* The display name of this package.
*/
name: 'openpmix.github.io';
/**
* The canonical domain name for this package.
*/
domain: 'openpmix.github.io';
/**
* Brief description of what this package does.
*/
description: 'Process Management Interface for HPC environments';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openpmix.github.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install openpmix.github.io';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['palloc', 'pattrs', 'pctrl', 'pevent', 'plookup', 'pmix_info', 'pmixcc', 'pps', 'pquery'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['open-mpi.org/hwloc^2.10', 'libevent.org^2.1', 'zlib.net^1.3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.0.0', '5.0.8', '5.0.7', '5.0.6', '5.0.5', '5.0.4', '5.0.3', '5.0.2', '5.0.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openpmix.github.io -- $SHELL -i';
launchpadInstallCommand: 'launchpad install openpmix.github.io'
};
export type OpenpmixgithubioPackage = typeof openpmixgithubioPackage