summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/bootstrap34
-rw-r--r--doc/pkg123
2 files changed, 0 insertions, 157 deletions
diff --git a/doc/bootstrap b/doc/bootstrap
deleted file mode 100644
index 1b58727..0000000
--- a/doc/bootstrap
+++ /dev/null
@@ -1,34 +0,0 @@
-=pod
-
-=head1 NAME
-
-bootstrap - install the most essential utilities in $HOME.
-
-=head1 SYNOPSIS
-
-B<./bootstrap>
-
-=head1 DESCRIPTION
-
-bootstrap will, in this order, do the following:
-
-=over
-
-=item * create a basic directory structure
-
-=item * Check whether python is installed on the machine
-
-=item * Check whether mercurial is install on the machine.
-If not, receives a pre-build one via ssh/tar
-
-=item * Clone and then install the core repository
-
-=back
-
-=head1 AUTHOR
-
-Daniel Friesel <derf@derf.homelinux.org>
-
-=cut
-
-vim:ft=pod
diff --git a/doc/pkg b/doc/pkg
deleted file mode 100644
index 3c72578..0000000
--- a/doc/pkg
+++ /dev/null
@@ -1,123 +0,0 @@
-=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
-
-syntax: VAR='argument'.
-comments with "#" are supported
-
-=back
-
-=head2 VARIABLES
-
-=over
-
-=item PKG_ROOT
-
-the package root path.
-Default: ssh://derf.homelinux.org/var/packages_root
-
-=item PDIR
-
-path for the local package tree.
-Default: $HOME/packages
-
-WARNING: changing this will break everything. Don't do it.
-
-=item VCS_CMD
-
-Command to invoke the vcs.
-Default: hg
-
-=item VCS_OPTIONS
-
-global options to invoke VCS_CMD with.
-Default: --quiet
-
-=item CL_OPTIONS
-
-Options to invoke checklinks with.
-Default: -q
-
-=back
-
-=head1 AUTHOR
-
-Daniel Friesel <derf@derf.homelinux.org>
-
-=cut
-
-vim:ft=pod