summaryrefslogtreecommitdiff
path: root/man/1/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-07 13:10:07 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-07 13:10:07 +0200
commitbed8857b779b9896f6a3b54336feddb41c0a5b5a (patch)
tree2fc8a1708042a9e5db52af80b1fc7c455a77bc0c /man/1/pkg
parentb37e001d893f8cd1b2efed154095f47593643b04 (diff)
pkg: Recommend to postfix manuals in man/ with .pod
Diffstat (limited to 'man/1/pkg')
-rw-r--r--man/1/pkg168
1 files changed, 0 insertions, 168 deletions
diff --git a/man/1/pkg b/man/1/pkg
deleted file mode 100644
index 830fd3e..0000000
--- a/man/1/pkg
+++ /dev/null
@@ -1,168 +0,0 @@
-=pod
-
-=head1 NAME
-
-pkg - distributed dotfile and script manager
-
-=head1 SYNOPSIS
-
-B<pkg> [I<options>] 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> I<package>
-
-fetch given I<package> from the package_root and install it
-
-=item B<remove> I<package>
-
-Remove I<package> from the local packages tree
-
-=item B<eval> I<expression>
-
-Evauluate I<expression>. See pkg(7)
-
-=item B<info> I<package>
-
-Show information on I<package>, like dependencies, version, etc
-
-=item B<list> [I<filter>]
-
-List packages depending on I<filter>:
-
-=over
-
-=item * B<all>
-
-show all packages
-
-=item * B<local>
-
-show currently installed packages (default)
-
-=item * B<not-installed>
-
-show remote packages which are not installed
-
-=back
-
-=item B<log> I<package>
-
-Show commit history for package
-
-=item B<push> [ I<package> ]
-
-push new local versions to PKG_ROOT.
-If no argument is given, pushes all installed packages
-
-=item B<refresh> [ I<package> ]
-
-Check prereqs and update symlinks of I<package>.
-If no argument is given, refreshs all installed packages
-
-=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> [ B<local>|B<remote> ]
-
-Update local/remote package list (both if no argument is given)
-
-=item B<pull> [ I<package> ]
-
-retrieve and install newest available version of I<package>.
-If no argument is given, updates all installed packages
-
-=back
-
-=head2 SHORT ACTIONS
-
-Instead of the I<action>s described above, you may also use their short
-forms:
-
- short long form
- ----- ---------
- a add
- e eval
- f pull (think "fetch")
- i info
- l log
- ls list
- p push
- r refresh
- rm remove
- s status
- u update
-
-=head1 OPTIONS
-
-Options marked as [boolean] may be negated
-by prepending a 'no', like '--no-auto-update'.
-
-Options always override the configuration file.
-Also, every option refers to a configuration parameter,
-so please see pkg.conf(5) for more information.
-
-=head1 FILES
-
-=over
-
-=item F<~/.pkg.conf>
-
-Contains configuration vars
-
-=back
-
-=head1 EXAMPLES
-
-=over
-
-=item * B<pkg remote-update; pkg upgrade>
-
-Get new stuff from the packages_root.
-Note: If you haven't disabled AUTOUPDATE, B<pkg upgrade> will suffice here
-
-=item * B<pkg local-update; pkg push>
-
-Push local changes to the packages_root.
-Note: If you haven't disabled AUTOUPDATE, B<pkg push> will suffice here
-
-=item * B<pkg refresh pkg>
-
-'Fake-Upgrade'. Execute the appropiate commands as if the pkg package had been
-upgraded (useful when you change something but don't want to commit/push yet)
-
-=back
-
-=head1 AUTHOR
-
-Daniel Friesel E<lt>derf@derf.homelinux.orgE<gt>
-
-=head1 CREDITS
-
-=over
-
-=item * Lars Stoltenow (penma)
-
-for pointing out various bugs and design mistakes
-
-=item * Maximilian GaE<szlig> (mxey)
-
-many ideas and suggestions
-
-=back
-
-=head1 SEE ALSO
-
-L<pkg.conf>(5), pkg(7)
-
-=cut
-
-vim:ft=pod