summaryrefslogtreecommitdiff
path: root/man/1/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-06-07 22:19:10 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-06-07 22:19:10 +0200
commit8cfb41bc6e5f71086a6faab181c038ae223036a1 (patch)
tree2cd4cce0f5b2c7929976855e9481f5a936fac358 /man/1/pkg
parent61328cb12aa7795bb625c32c583be53046d7edb4 (diff)
added manual for pkg.conf
Diffstat (limited to 'man/1/pkg')
-rw-r--r--man/1/pkg91
1 files changed, 91 insertions, 0 deletions
diff --git a/man/1/pkg b/man/1/pkg
new file mode 100644
index 0000000..8c976f1
--- /dev/null
+++ b/man/1/pkg
@@ -0,0 +1,91 @@
+=pod
+
+=head1 NAME
+
+pkg - Package maintenance utility
+
+=head1 SYNOPSIS
+
+B<pkg> I<action> [ I<arguments> ]
+
+=head1 DESCRIPTION
+
+B<pkg> is the basic script for maintaining packages
+
+I<action> may be one of:
+
+=over
+
+=item B<add>, B<install> I<package>
+
+fetch given I<package> from the package_root and install it
+
+=item B<changelog> I<package>
+
+Show I<package>'s changelog (if available)
+
+=item B<changeroot> I<source>
+
+Change the default source on all packages to I<source>
+
+Example: `changeroot ssh://kraftwerk/var/packages_root` will change
+the source of core to 'ssh://kraftwerk/var/packages_root/core'
+
+=item B<delete>, B<remove> I<package>
+
+Remove I<package> from the local packages tree
+Note: This does not yet remove the symlinks
+
+=item B<info> I<package>
+
+Show information on I<package>, like dependencies, version, etc
+
+=item B<list>
+
+List all installed packages
+
+=item B<list-all>
+
+List all available (both installed and not installed packages
+
+Hint: `diff <(pkg list) <(pkg list-all)` will show all packages
+that are currently not installed
+
+=item B<log> I<package>
+
+Show commit history for package
+
+=item B<status> [ I<package> ]
+
+
+Check for local changes to the I<package>'s files.
+If no arguments is given, checks all installed packages
+
+=item B<update> [ I<package> ]
+
+retrieve and install newest available version of I<package>.
+If no argument is given, updates all installed packages
+
+=back
+
+=head1 FILES
+
+=over
+
+=item F<~/.pkg.conf>
+
+Contains configuration vars
+
+=back
+
+=head1 AUTHOR
+
+Daniel Friesel <derf@derf.homelinux.org>
+
+=head1 SEE ALSO
+
+L<pkg.conf>(5)
+
+=cut
+
+vim:ft=pod