UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

60 lines 2.28 kB
/** * **hwloc** - Portable abstraction of the hierarchical topology of modern architectures * * @domain `open-mpi.org/hwloc` * @programs `hwloc-annotate`, `hwloc-bind`, `hwloc-calc`, `hwloc-compress-dir`, `hwloc-diff`, ... (+5 more) * @version `2.12.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install +open-mpi.org/hwloc -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openmpiorghwloc * console.log(pkg.name) // "hwloc" * console.log(pkg.description) // "Portable abstraction of the hierarchical topolo..." * console.log(pkg.programs) // ["hwloc-annotate", "hwloc-bind", ...] * console.log(pkg.versions[0]) // "2.12.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/open-mpi-org/hwloc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openmpiorghwlocPackage: { /** * The display name of this package. */ name: 'hwloc'; /** * The canonical domain name for this package. */ domain: 'open-mpi.org/hwloc'; /** * Brief description of what this package does. */ description: 'Portable abstraction of the hierarchical topology of modern architectures'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/open-mpi.org/hwloc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +open-mpi.org/hwloc -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hwloc-annotate', 'hwloc-bind', 'hwloc-calc', 'hwloc-compress-dir', 'hwloc-diff', 'hwloc-distrib', 'hwloc-info', 'hwloc-patch', 'hwloc-ps', 'lstopo-no-graphics']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.12.1', '2.12.0', '2.11.2', '2.11.1', '2.11.0', '2.10.0', '2.9.3', '2.9.2', '2.9.1']; aliases: readonly [] }; export type OpenmpiorghwlocPackage = typeof openmpiorghwlocPackage