2015-03-03 16:41:28 +05:30
|
|
|
.Dd March 3, 2014
|
2014-09-30 15:06:08 +05:30
|
|
|
.Dt XBPS-PKGDB 8
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh NAME
|
|
|
|
.Nm xbps-pkgdb
|
2013-02-20 15:05:55 +05:30
|
|
|
.Nd XBPS utility to report/fix issues and modify the package database (pkgdb)
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh SYNOPSYS
|
|
|
|
.Nm xbps-pkgdb
|
|
|
|
.Op OPTIONS
|
|
|
|
.Op PKGNAME...
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
2013-02-20 15:05:55 +05:30
|
|
|
utility can check/fix issues and modify the package database (pkgdb).
|
|
|
|
It's able to check for missing dependencies, modified files and symlinks,
|
2013-03-05 08:38:42 +05:30
|
|
|
and more errors that have been fixed in newer versions of xbps. A mode to update
|
|
|
|
the format to the latest version is also available.
|
2013-02-20 21:02:53 +05:30
|
|
|
This is the list of things that
|
|
|
|
.Nm
|
|
|
|
currently does:
|
|
|
|
.Bl -tag -width -x
|
|
|
|
.It Sy METADATA CHECK
|
|
|
|
Checks that package metadata files have not been modified by comparing original
|
|
|
|
hash that is recorded when package is installed against current one.
|
|
|
|
.It Sy FILES CHECK
|
|
|
|
Checks that all files belonging to a package have not been modified and are
|
|
|
|
not missing.
|
2015-02-22 23:15:47 +05:30
|
|
|
For regular files, its modification time and the SHA256 hash are
|
|
|
|
compared and checked if they differ.
|
|
|
|
For symbolic links the target file is checked that it has not been modified.
|
2013-02-20 21:02:53 +05:30
|
|
|
.It Sy DEPENDENCIES CHECK
|
|
|
|
Checks that all required dependencies for a package are resolved.
|
|
|
|
.It Sy OBSOLETE METADATA CHECK
|
|
|
|
Checks that the package database does not contain obsolete data from previous
|
|
|
|
XBPS versions and removes them if found.
|
2013-03-05 08:38:42 +05:30
|
|
|
.It Sy FORMAT CONVERSION
|
|
|
|
Updates the pkgdb format to the latest version.
|
2014-08-23 12:56:02 +05:30
|
|
|
.El
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh OPTIONS
|
2012-11-06 15:03:29 +05:30
|
|
|
.Bl -tag -width -x
|
2012-11-06 14:24:43 +05:30
|
|
|
.It Fl a, Fl -all
|
|
|
|
Process all registered packages, regardless of its state.
|
2014-11-06 14:28:04 +05:30
|
|
|
.It Fl C, Fl -config Ar dir
|
|
|
|
Specifies a path to the XBPS configuration directory.
|
|
|
|
If the first character is not '\/' then it's a relative path of
|
|
|
|
.Ar rootdir .
|
2012-11-06 14:24:43 +05:30
|
|
|
.It Fl d, Fl -debug
|
|
|
|
Enables extra debugging shown to stderr.
|
|
|
|
.It Fl h, Fl -help
|
|
|
|
Show the help usage.
|
2015-03-03 16:41:28 +05:30
|
|
|
.It Fl m, Fl -mode Ar auto|manual|hold|unhold|repolock|repounlock
|
2013-02-20 15:05:55 +05:30
|
|
|
Switches
|
|
|
|
.Ar PKGNAME
|
2015-03-03 16:41:28 +05:30
|
|
|
to the specified mode: automatic or manual installation mode, or to (un)set the on hold mode,
|
|
|
|
and repository locked mode.
|
2013-08-12 18:16:54 +05:30
|
|
|
A package that was installed as dependency will be in
|
|
|
|
.Sy automatic
|
|
|
|
mode, otherwise will be set to
|
|
|
|
.Sy manual .
|
|
|
|
A package in
|
|
|
|
.Sy hold
|
|
|
|
mode won't be updated in full system upgrades. The list of packages in this mode can be
|
|
|
|
seen with
|
|
|
|
.Xr xbps-query 8 .
|
2015-03-03 16:41:28 +05:30
|
|
|
A package in
|
|
|
|
.Sy repolock
|
|
|
|
mode will only accept updates that are available in the same repository that was used
|
|
|
|
for installing.
|
2012-11-06 14:24:43 +05:30
|
|
|
.It Fl r, Fl -rootdir Ar dir
|
|
|
|
Specifies a full path for the target root directory.
|
2013-03-05 08:38:42 +05:30
|
|
|
.It Fl u, Fl -update
|
|
|
|
Updates the pkgdb format to the latest version making the necessary conversions
|
|
|
|
automatically. Usually this is needed only in rare circumstances.
|
2012-11-06 14:24:43 +05:30
|
|
|
.It Fl v, Fl -verbose
|
|
|
|
Enables verbose messages.
|
|
|
|
.It Fl V, Fl -version
|
|
|
|
Shows the XBPS version.
|
2014-08-23 12:56:02 +05:30
|
|
|
.El
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh FILES
|
2014-09-11 15:51:33 +05:30
|
|
|
.Bl -tag -width /var/db/xbps/.<pkgname>-files.plist
|
2014-11-06 14:28:04 +05:30
|
|
|
.It Ar /etc/xbps.d
|
|
|
|
Default configuration directory.
|
2014-12-15 13:54:55 +05:30
|
|
|
.It Ar /usr/share/xbps.d
|
|
|
|
Default system configuration directory.
|
2014-09-11 15:51:33 +05:30
|
|
|
.It Ar /var/db/xbps/.<pkgname>-files.plist
|
|
|
|
Package files metadata.
|
|
|
|
.It Ar /var/db/xbps/pkgdb-0.38.plist
|
|
|
|
Default package database (0.38 format). Keeps track of installed packages and properties.
|
2013-03-05 08:38:42 +05:30
|
|
|
.It Ar /var/cache/xbps
|
|
|
|
Default cache directory to store downloaded binary packages.
|
2014-08-23 12:56:02 +05:30
|
|
|
.El
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh SEE ALSO
|
2014-12-09 16:11:35 +05:30
|
|
|
.Xr xbps.d 5 ,
|
2014-04-07 15:52:55 +05:30
|
|
|
.Xr xbps-checkvers 8 ,
|
2012-11-06 14:24:43 +05:30
|
|
|
.Xr xbps-create 8 ,
|
|
|
|
.Xr xbps-dgraph 8 ,
|
|
|
|
.Xr xbps-install 8 ,
|
|
|
|
.Xr xbps-query 8 ,
|
|
|
|
.Xr xbps-reconfigure 8 ,
|
|
|
|
.Xr xbps-remove 8 ,
|
2014-04-21 14:28:09 +05:30
|
|
|
.Xr xbps-rindex 8 ,
|
|
|
|
.Xr xbps-uchroot 8
|
2012-11-06 14:24:43 +05:30
|
|
|
.Sh AUTHORS
|
|
|
|
.An Juan Romero Pardines <xtraeme@gmail.com>
|
|
|
|
.Sh BUGS
|
|
|
|
Probably, but I try to make this not happen. Use it under your own
|
|
|
|
responsability and enjoy your life.
|
|
|
|
.Pp
|
2013-12-17 20:08:56 +05:30
|
|
|
Report bugs in https://github.com/voidlinux/xbps/issues
|