Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pacoball(8) [debian man page]

PACOBALL(8)							      System							       PACOBALL(8)

NAME
pacoball - Binary package support for paco(8). SYNOPSIS
pacoball [-bgftv] [-d DIR] [-1..9] [-a|<packages>] pacoball -e [-ltv] [-C DIR] <pacoballs> DESCRIPTION
By default, pacoball may be given one or more package names as arguments, and for each of those packages it creates a binary tarball (.tar.bz2 or .tar.gz) containing all the currently installed files. For this to work the input packages have to be registered in the paco database. Leading slashes ('/') are stripped from the paths of the files in the tarballs. With option -e, pacoball admits one or more previously created tarballs ("pacoballs") as arguments, and installs them into the system, optionally logging the installation with paco. Mandatory arguments to long options are mandatory for short options too. GENERAL OPTIONS
-t, --test Test compressed file integrity. -h, --help Show usage information and exit. -v, --verbose Verbose output. -V, --version Display version information and exit. PACKAGE CREATION OPTIONS
-a, --all Create a pacoball for each package logged in the paco database. -d, --directory=DIR Create the pacoballs in directory DIR (default is '.'). -b, --bzip2 Compress with bzip2 (this is the default). -g, --gzip Compress with gzip. -# Set the compression level (speed/quality balance). '#' is a number between 1 (faster compression) and 9 (best compression). --fast An alias for -1. --best An alias for -9. -f, --force Force overwrite of existing output files. PACKAGE EXTRACTION OPTIONS
-e, --extract Extract (install) the given <pacoballs>, in directory '/' by default. -l, --log Log the file extraction with paco(8), retrieving the appropiate package name from the name of the pacoball. -C, --root=DIR Extract the files into directory DIR (as the -C option in tar). FILES
/etc/pacorc - paco configuration file /var/log/paco - default paco log directory WEB SITE
The latest version of pacoball should be always available at: http://paco.sourceforge.net COPYRIGHT
Copyright (C) 2004-2009 David Rosal <davidrr@sourceforge.net> This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. SEE ALSO
paco(8), pacorc(5), superpaco(8), rpm2paco(8) paco-2.0.9 28 June 2010 PACOBALL(8)

Check Out this Related Man Page

GO-CLEAN(1)						      General Commands Manual						       GO-CLEAN(1)

NAME
go - tool for managing Go source code SYNOPSIS
go clean [-i] [-r] [-n] [-x] [ packages ] DESCRIPTION
Clean removes object files from package source directories. The go command builds most objects in a temporary directory, so go clean is mainly concerned with object files left by other tools or by manual invocations of go build. Specifically, clean removes the following files from each of the source directories corresponding to the import paths: _obj/ old object directory, left from Makefiles _test/ old test directory, left from Makefiles _testmain.go old gotest file, left from Makefiles test.out old test log, left from Makefiles build.out old test log, left from Makefiles *.[568ao] object files, left from Makefiles DIR(.exe) from go build DIR.test(.exe) from go test -c MAINFILE(.exe) from go build MAINFILE.go In the list, DIR represents the final path element of the directory, and MAINFILE is the base name of any Go source file in the directory that is not included when building the package. OPTIONS
-i The -i flag causes clean to remove the corresponding installed archive or binary (what 'go install' would create). -n The -n flag causes clean to print the remove commands it would execute, but not run them. -r The -r flag causes clean to be applied recursively to all the dependencies of the packages named by the import paths. -x The -x flag causes clean to print remove commands as it executes them. For more about specifying packages, see go-packages(7). AUTHOR
This manual page was written by Michael Stapelberg <stapelberg@debian.org>, for the Debian project (and may be used by others). 2012-05-13 GO-CLEAN(1)
Man Page