rename xbps-packages to void-packages

This commit is contained in:
Enno Boland
2014-09-26 14:24:06 +02:00
parent 09bf6646d1
commit 2fe65dccec
6 changed files with 15 additions and 13 deletions

View File

@ -187,8 +187,8 @@ show_usage(const char *prog)
" -h,--help Show this helpful help-message for help.\n"
" -C,--config=FILENAME Set (or override) the `xbps.conf' (which may\n"
" have automatically been detected).\n"
" -D,--distdir=DIRECTORY Set (or override) the path to xbps-packages\n"
" (defaults to ~/xbps-packages).\n"
" -D,--distdir=DIRECTORY Set (or override) the path to void-packages\n"
" (defaults to ~/void-packages).\n"
" -d,--debug Enable debug output to stderr.\n"
" -i,--installed Check for outdated packages in rootdir, rather\n"
" than in the XBPS repositories.\n"
@ -650,10 +650,10 @@ main(int argc, char **argv)
}
}
/*
* If --distdir not set default to ~/xbps-packages.
* If --distdir not set default to ~/void-packages.
*/
if (rcv.distdir == NULL) {
distdir = xbps_xasprintf("%s/xbps-packages", getenv("HOME"));
distdir = xbps_xasprintf("%s/void-packages", getenv("HOME"));
rcv_set_distdir(&rcv, distdir);
free(distdir);
}

View File

@ -14,12 +14,12 @@ The
utility checks for outdated packages in a target root directory or in
all registered repositories by comparing the package versions against
the source package versions available in a
.Nm xbps-packages
.Nm void-packages
tree. By default and unless the
.Fl i, Fl -installed
option is not set, it will compare package versions in repositories against
the
.Nm xbps-packages
.Nm void-packages
tree. The
.Ar FILES
argument sets extra packages to process with the outdated ones (only processed if missing).
@ -28,8 +28,8 @@ argument sets extra packages to process with the outdated ones (only processed i
.It Fl C, Fl -config Ar file
Specifies a full path to the XBPS configuration file.
.It Fl D, Fl -distdir Ar dir
Specifies a full path to the xbps-packages repository. By default set to
.Nm ~/xbps-packages .
Specifies a full path to the void-packages repository. By default set to
.Nm ~/void-packages .
.It Fl d, Fl -debug
Enables extra debugging shown to stderr.
.It Fl h, Fl -help
@ -42,7 +42,7 @@ Repository to be added to the top of the list. This option can be specified mult
Specifies a full path for the target root directory.
.It Fl s, Fl -show-missing
Shows missing binary packages comparing against the
.Nm xbps-packages
.Nm void-packages
tree.
.It Fl V, Fl -version
Shows the XBPS version.