/** * **pinentry** - Passphrase entry dialog utilizing the Assuan protocol * * @domain `gnupg.org/pinentry` * @programs `pinentry`, `pinentry-tty` * @version `1.3.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnupg.org/pinentry` * @homepage https://www.gnupg.org/related_software/pinentry/ * @dependencies `gnupg.org/libassuan`, `gnupg.org/libgpg-error` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnupgorgpinentry * console.log(pkg.name) // "pinentry" * console.log(pkg.description) // "Passphrase entry dialog utilizing the Assuan pr..." * console.log(pkg.programs) // ["pinentry", "pinentry-tty"] * console.log(pkg.versions[0]) // "1.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnupg-org/pinentry.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnupgorgpinentryPackage: { /** * The display name of this package. */ name: 'pinentry'; /** * The canonical domain name for this package. */ domain: 'gnupg.org/pinentry'; /** * Brief description of what this package does. */ description: 'Passphrase entry dialog utilizing the Assuan protocol'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/pinentry/package.yml'; homepageUrl: 'https://www.gnupg.org/related_software/pinentry/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnupg.org/pinentry'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnupg.org/pinentry -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnupg.org/pinentry'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pinentry', 'pinentry-tty']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnupg.org/libassuan', 'gnupg.org/libgpg-error']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.2', '1.3.1', '1.3.0', '1.2.1']; aliases: readonly [] }; export type GnupgorgpinentryPackage = typeof gnupgorgpinentryPackage