2020-04-20 22:20:11 +05:30
|
|
|
.Dd April 20, 2020
|
2015-10-28 14:07:09 +05:30
|
|
|
.Dt XBPS-FBULK 1
|
2023-02-09 13:17:50 +05:30
|
|
|
.Os
|
2015-10-28 14:07:09 +05:30
|
|
|
.Sh NAME
|
|
|
|
.Nm xbps-fbulk
|
|
|
|
.Nd XBPS utility to perform a fast bulk build of void-packages
|
2015-10-30 11:15:26 +05:30
|
|
|
.Sh SYNOPSIS
|
2023-02-09 13:17:50 +05:30
|
|
|
.Nm
|
2015-10-28 14:07:09 +05:30
|
|
|
.Op OPTIONS
|
|
|
|
.Ar /path/to/void-packages
|
2020-04-20 22:20:11 +05:30
|
|
|
.Op pkgN pkg+N ...
|
2015-10-28 14:07:09 +05:30
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility iterates all srcpkg directories in the
|
|
|
|
.Xr void-packages
|
|
|
|
repository or processes the
|
|
|
|
.Xr pkgN
|
|
|
|
arguments, and then runs
|
2020-04-14 18:28:49 +05:30
|
|
|
.Ar 'xbps-src show-build-deps'
|
2015-10-28 14:07:09 +05:30
|
|
|
to build a dependency tree on the fly.
|
|
|
|
.Pp
|
2020-04-20 22:20:11 +05:30
|
|
|
As the dependency tree is built, terminal dependencies are built
|
2015-10-28 14:07:09 +05:30
|
|
|
and packaged on the fly.
|
|
|
|
.Pp
|
2020-04-20 22:20:11 +05:30
|
|
|
As these builds complete, additional dependencies may be satisfied and be
|
2015-10-28 14:07:09 +05:30
|
|
|
added to the build order. Ultimately the entire tree is built.
|
|
|
|
.Pp
|
|
|
|
Only one attempt is made to build any given package, no matter how many
|
|
|
|
other packages depend on it.
|
2020-04-20 22:20:11 +05:30
|
|
|
.Pp
|
|
|
|
When using
|
|
|
|
.Ar system mode
|
|
|
|
only installed packages that are in manual mode (see
|
|
|
|
.Xr xbps-pkgdb 1)
|
|
|
|
will be processed.
|
|
|
|
This is useful to keep up a running system up-to-date.
|
2015-10-28 14:07:09 +05:30
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width -x
|
2020-04-20 22:20:11 +05:30
|
|
|
.It Fl j, Fl -jobs Ar X
|
2015-10-28 14:07:09 +05:30
|
|
|
Set number of parallel builds running at the same time. By default set to 1.
|
2020-04-20 22:20:11 +05:30
|
|
|
.It Fl l, Fl -logdir Ar logdir
|
2020-04-14 18:28:49 +05:30
|
|
|
Set the log directory. By default set to `fbulk-log.<pid>`.
|
2015-10-28 14:07:09 +05:30
|
|
|
.It Fl d, Fl -debug
|
|
|
|
Enables extra debugging shown to stderr.
|
2020-04-20 22:20:11 +05:30
|
|
|
.It Fl s, Fl -system
|
|
|
|
System build mode. If set, only packages that were installed manually
|
|
|
|
in your system will be processed.
|
2015-10-28 14:07:09 +05:30
|
|
|
.It Fl h, Fl -help
|
2015-10-30 11:15:26 +05:30
|
|
|
Show the help message.
|
2015-10-28 14:07:09 +05:30
|
|
|
.It Fl v, Fl -verbose
|
|
|
|
Enables verbose messages.
|
|
|
|
.It Fl V, Fl -version
|
2015-10-30 11:15:26 +05:30
|
|
|
Show the version information.
|
2015-10-28 14:07:09 +05:30
|
|
|
.El
|
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width logdir/skipped
|
|
|
|
.It Ar logdir/run
|
|
|
|
Packages that are being built.
|
|
|
|
.It Ar logdir/good
|
|
|
|
Packages that were built successfully.
|
|
|
|
.It Ar logdir/bad
|
|
|
|
Packages that failed to build.
|
|
|
|
.It Ar logdir/skipped
|
|
|
|
Packages that were not built because they had to be skipped (unsupported architecture, broken or restricted).
|
|
|
|
.It Ar logdir/deps
|
2020-04-20 22:20:11 +05:30
|
|
|
Packages that were not built due to failed or missing dependencies.
|
2015-10-28 14:07:09 +05:30
|
|
|
.El
|
|
|
|
.Sh NOTES
|
|
|
|
The
|
|
|
|
.Ar masterdir
|
|
|
|
in the
|
|
|
|
.Ar void-packages
|
|
|
|
repository must be fully populated for chroot operations, and some options
|
|
|
|
need to be set in
|
|
|
|
.Ar etc/conf
|
|
|
|
to make
|
|
|
|
.Nm
|
|
|
|
work correctly:
|
|
|
|
.Bl -tag -width XBPS_CHROOT_CMD=uchroot
|
|
|
|
.It Ar XBPS_CHROOT_CMD=uchroot
|
|
|
|
The
|
|
|
|
.Xr xbps-uchroot 1
|
|
|
|
utility is required because
|
|
|
|
.Nm
|
|
|
|
builds packages in temporary masterdirs that are mounted with
|
|
|
|
.Ar overlayfs .
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
Make sure the user running
|
|
|
|
.Nm
|
|
|
|
has rights to execute
|
|
|
|
.Xr xbps-uchroot 1
|
|
|
|
and the kernel supports the overlay filesystem, introduced in 4.0.
|
|
|
|
.Pp
|
|
|
|
.Sh SEE ALSO
|
2023-02-09 13:17:50 +05:30
|
|
|
.Xr xbps-alternatives 1 ,
|
2015-10-28 14:07:09 +05:30
|
|
|
.Xr xbps-checkvers 1 ,
|
|
|
|
.Xr xbps-create 1 ,
|
|
|
|
.Xr xbps-dgraph 1 ,
|
xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page:
XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1)
NAME
xbps-digest - XBPS utility to generate message digests
SYNOPSIS
xbps-digest [OPTIONS] [FILE] [FILE+N]
DESCRIPTION
The xbps-digest utility generates message digests for specified FILE or
stdin if unset.
OPTIONS
-m, --mode mode
Sets the message digest mode. Supported: sha256. If unset, defaults
to sha256.
-h, --help
Show the help message.
-V, --version
Show the version information.
SEE ALSO
xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1),
xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1),
xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1),
xbps-uunshare(1)
AUTHORS
Juan Romero Pardines <xtraeme@gmail.com>
BUGS
Probably, but I try to make this not happen. Use it under your own
responsibility and enjoy your life.
Report bugs at https://github.com/void-linux/xbps/issues
June 12, 2019
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-12 18:04:58 +05:30
|
|
|
.Xr xbps-digest 1 ,
|
2019-06-12 21:27:03 +05:30
|
|
|
.Xr xbps-fetch 1 ,
|
2015-10-28 14:07:09 +05:30
|
|
|
.Xr xbps-install 1 ,
|
|
|
|
.Xr xbps-pkgdb 1 ,
|
|
|
|
.Xr xbps-query 1 ,
|
|
|
|
.Xr xbps-reconfigure 1 ,
|
|
|
|
.Xr xbps-remove 1 ,
|
|
|
|
.Xr xbps-rindex 1 ,
|
|
|
|
.Xr xbps-uchroot 1 ,
|
|
|
|
.Xr xbps-uunshare 1 ,
|
|
|
|
.Xr xbps.d 5
|
|
|
|
.Sh AUTHORS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility was originally written by
|
2023-02-09 13:17:50 +05:30
|
|
|
.An Matthew Dillon Aq Mt dillon@backplane.com
|
2015-10-28 14:07:09 +05:30
|
|
|
for the
|
|
|
|
.Ar DragonFlyBSD project.
|
|
|
|
.Pp
|
2023-02-09 13:17:50 +05:30
|
|
|
.An Juan Romero Pardines Aq Mt xtraeme@gmail.com
|
2015-10-28 14:07:09 +05:30
|
|
|
adapted it for xbps and added some new features.
|
|
|
|
.Sh BUGS
|
|
|
|
Probably, but I try to make this not happen. Use it under your own
|
2015-10-28 14:32:29 +05:30
|
|
|
responsibility and enjoy your life.
|
2015-10-28 14:07:09 +05:30
|
|
|
.Pp
|
2023-02-09 13:17:50 +05:30
|
|
|
Report bugs at
|
|
|
|
.Lk https://github.com/void-linux/xbps/issues
|