Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gpt-query(8) [debian man page]

GPT-QUERY(8)						User Contributed Perl Documentation					      GPT-QUERY(8)

NAME
gpt-query - Queries an installation for packages SYNOPSIS
gpt-query [-name=Name -flavor=Flavor -pkgtype=Type --help -file=name -man -deps=run|sdk] [pkgname-flavor-pkgtype+] DESCRIPTION
gpt-query searches installed packages for matches to the query. Name is the name of the package. Flavor is the information about linking and compile options used on package. Type is the type of the package. ? will alow the use to access system help. The user may enter a value for any of the options. These options can be used in combination or not at all. The script will take the options being used and try to find all matching items. An alternate form is to use the pkgname-flavor-pkgtype tuples. Multiple of instances of these tuples can be used in a query. OPTIONS
-name=NAME Returns all of the packages matching NAME. -flavor=FLAVOR Returns all of the packages matching FLAVOR. -pkgtype=TYPE Returns all of the packages matching TYPE. -file=FILE Returns the package owning the FILE. FILE needs to be either an absolute path or referenced to $GLOBUS_LOCATION. -deps=run|sdk Returns the runtime or build dependencies of a package. -help Print a brief help message and exits. -man Prints the manual page and exits. -version Prints the version of GPT and exits. -what-bundles Prints a list of the installed bundles. -verify-bundle=BUNDLE Takes a bundle defintion and checks to see if it matches the installation. -bundle-packages=BUNDLE List the packages that belong to the desired bundle. -bundle BUNDLE 1 [BUNDLE 2] If two bundles are given, the bundles will be compared to one another for equality. If only one bundle is given, the bundle will be checked against the installation. This command works on tar bundles. EXAMPLES
gpt-query Returns a listing of all of the installed packages. gpt-query -name=foo Returns all flavors and package types with the name "foo". gpt-query foo Also returns all flavors and package types with the name "foo". gpt-query 'foo-*-*' A third way of typing the same query. Note the single quotes. gpt-query '*-noflavor-*' List all of the packages with a 'noflavor' build flavor. gpt-query -file=libexec/globus-build-env-gcc32.sh Returns "/libexec/globus-build-env-gcc32.sh is owned by globus_core-gcc32-rtl" gpt-query -file=$GLOBUS_LOCATION/libexec/globus-build-env-gcc32.sh Returns the same. gpt-query -file=globus-build-env-gcc32.sh Returns an error because the path is incorrect. OUTPUT
Here is an example output: gpt-query '*-noflavor-*' 4 packages were found in /home/mbletzin/work/install that matched your query: packages found that matched your query globus_core-noflavor-data ver: 2.1 cmp id: 2.1.0 globus_core_setup-noflavor-pgm ver: 2.0 cmp id: 2.0.0 globus_ssl_utils-noflavor-data ver: 2.1 cmp id: 2.1.0 kca_setup-noflavor-pgm ver: 3.0.2p1 cmp id: 1.0.0 For each package name, flavor, package type, version, and the compatibility identifier is return. The compatibility identifier is what is used to resolve dependencies. SEE ALSO
gpt-install(8) gpt-uninstall(8) gpt-verify(8) gpt-postinstall(8) AUTHOR
Michael Bletzinger <mbletzin.ncsa.uiuc.edu> and Eric Blau <eblau.ncsa.uiuc.edu> perl v5.14.2 2012-04-30 GPT-QUERY(8)

Check Out this Related Man Page

GPT-BUNDLE(8)						User Contributed Perl Documentation					     GPT-BUNDLE(8)

NAME
gpt-bundle - Creates binary or source bundles from an installation or a collection of source packages. SYNOPSIS
gpt-bundle [options] packages Options: -verbose Print copious output -help Print usage -man Print man page. -version Print GPT version. -srcdir=PATH Directory containing source packages -tmpdir=PATH Directory used to create binary packages -installdir=PATH Directory containing an installation -bn=NAME Name of the bundle -bv=MAJOR.MINOR Version of the bundle -bs=STABILITY Stability of the bundle contents -bl=VERSION Version Label of the bundle -native Create bundles of native pkgs (RPMs only). -all Bundle everything in the package directory.. -nodeps Don't include any dependent packages. -nosetups Don't include dependent setup packages. -template Outputs empty Bundle Def XML file. -bundledef=FILE Outputs XML file with command line values. -exclude=PACKAGE Don't include PACKAGE in bundle -config=FILE Use bundle options stored in FILE -xml=FILE XML bundle description file -output=FILE Name of the bundle file, -rpmprefix=PATH Absolute path encoded in the RPM. -buildnumber=NUMBER Build number used for pgm_static packages -rpmlicense=LABEL License Label added to the RPM header [packages] List of packages to be bundled DESCRIPTION
gpt-bundle Creates binary or source bundles from an installation or a collection of source packages. These bundles can then distributed be installed using gpt-install or gpt-build. A bundle consists of a collection of packages and a XML formatted description file. The script accepts a list of packages from the command line or from an inputed bundle description file. It expands this list to include all of the packages that the listed packages depend on. It then uses this expanded list to create a new bundle description file which is then added to the collection of packages to form a bundle. gpt-bundle assumes that all of the packages needed to create a source bundle are found in one subdirectory identified by the -srcdir switch. gpt-bundle assumes that all of the packages need to create a binary bundle are installed in a location identified by the -installdir flag or $GLOBUS_LOCATION. The list of packages that can be entered from the command line are of the form NAME-FLAVOR-PACKAGE_TYPE. The wildcard character '*' can also be used. OPTIONS
-srcdir=PATH Specifies where the directory containing your source packages is. If this is used, a source bundle will be created. Note that this flag is required to create source bundles. -installdir=PATH Specifies where the installation used for creating binary bundles is. $GLOBUS_LOCATION is the default. -xml=FILE Specifies the input bundle description file. A new file will be generated using the contents of this file and included in the bundle. -bundlename=NAME The name of the bundle. This name is stored in the bundle description file and used as part of the bundle filename if -output is not specified. -bundleversion=MAJOR.MINOR This is the bundle version number. It is stored in the bundle description file and used for bundle updates. It is also used for the bundle filename if -bundlelabel is not specified. -bundlelabel=VERSION This is the bundle version label. It is stored in the bundle description file as a string and so can accomodate any versioning scheme. The label is used in user queries, and as part of the bundle filename. -bundlestability=STABILITY This is the bundle version stability. It is a field that is used to indicate the stability of this version of the bundle. The field can have values of experimental, alpha, beta, or production. The default vaule is experimental. The field is stored in the bundle description file and used for user queries. -tmpdir=PATH Specifies the where the directory is that gpt-bundle should use to store generated binary packages. -all Tells gpt-bundle to bundle all of the packages in the source package directory or installation. -native Tells gpt-bundle to also bundle packages that are in the native format of the operating system. Presently this only works for RPMS on linux. gpt-bundle will output two bundle giving the native bundle a platform specific extension such as -rpm. -nodeps Tells gpt-bundle to only include the packages specified--do not check for or include dependencies. -nosetups Tells gpt-bundle to exclude any packages that are pulled in by a setup dependencies. Note that setup packages that are listed on the command line will still be added to the bundle.. -exclude=package1,package2,... This option excludes the listed packages from the created bundle. It can be specified multiple times with the final listing used being an aggregate of all the listed packages. This option can be abbreviated as '-exclude=package1,package2,...'. -output=FILE This is an alternative way to specify the bundle name. The output file is put in the directory from which gpt-bundle was invoked if no path was given, in a directory relative it if a relative path was given, or in the absolute location, if given. -template Creates an empty Bundle XML that can be modified and used to create a new bundle. -bundledef=FILE Creates an XML file with name equal to FILE.gpt-bundle.xml. This file will contain a GPT Bundle definition with values set to those passed in on the command line. -rpmprefix=<path_to_installation> This should be set to the path to your GLOBUS_LOCATION. GPT will use a value of "/usr/grid" if this option is not specified. -rpmlicense=<label> Provides an alternate copyright label for the rpms. The default is whatever GPT was configured with. -help Print a brief help message and exits. -buildnumber=<number> Build number used to version static packages. -man Prints the manual page and exits. -version Prints the version of GPT and exits. Bundle Definition File Overrides The -bundle* switches can be used to override content in the bundle definition file inputted by the -xml switch. The relationship between the switches and the bundle definition file contents is shown in the following table: I<Switch> I<Element> I<Attribute> -bundlename GPTBundleData Name -bundleversion BundleReleaseInfo Major, Minor -bundlelabel BundleReleaseInfo VersionLabel -bundlestability VersionStability Release Bundle Names and Versions gpt-bundle encourages a naming convention for bundle filenames. The convention can be overriden using the -output switch. The convention is as follows: NAME-VERSION-src_bundle.tar.gz for source bundles NAME-VERSION-ARCH-gpt.tar.gz for gpt binary bundles. ARCH is the platform ID. NAME-VERSION-ARCH-rpm.tar.gz for rpm binary bundles. NAME comes from the -bundlename switch. VERSION comes from the -bundlelabel switch. If this switch is not used then VERSION comes from the -bundleversion switch. Unless overrided by the switches previously mentioned, the values for can also be extracted from the bundle definition file inputted by the -xml switch. SEE ALSO
gpt-build(8) gpt-install(8) gpt-pkg(8) AUTHOR
Michael Bletzinger <mbletzin@ncsa.uiuc.edu>, Eric Blau <blau@mcs.anl.gov> and Patrick Duda <pduda@ncsa.uiuc.edu> perl v5.14.2 2012-04-30 GPT-BUNDLE(8)
Man Page