summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEli Schwartz via arch-projects <arch-projects@archlinux.org>2019-06-04 12:11:20 -0400
committerLevente Polyak <anthraxx@archlinux.org>2019-06-12 23:42:10 +0200
commit774774961025b79d84a466f75c651ce17c946928 (patch)
treeea512eff5072e6a12da4c75a2ace15e3e867c4a3 /doc
parent25b4ef279925a964b0de0ed8675d75e1532bf577 (diff)
downloaddevtools32-774774961025b79d84a466f75c651ce17c946928.tar.xz
doc: add manpage for the new offload-build tool
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/offload-build.1.asciidoc52
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/offload-build.1.asciidoc b/doc/offload-build.1.asciidoc
new file mode 100644
index 0000000..3633faa
--- /dev/null
+++ b/doc/offload-build.1.asciidoc
@@ -0,0 +1,52 @@
+offload-build(1)
+================
+
+Name
+----
+offload-build - Build a PKGBUILD on a remote server using makechrootpkg
+
+Synopsis
+--------
+offload-build [OPTIONS] -- [ARCHBUILD_OPTIONS]
+
+Description
+-----------
+
+Build a PKGBUILD on a remote server using makechrootpkg. Requires a remote user
+that can run archbuild in a non-interactive manner, e.g. must be able to
+elevate permissions using passwordless sudo.
+
+Options
+-------
+
+*-r, --repo* <reponame>::
+ Build against a specific repository. The default is `extra`, to build packages using
+ the stable repositories via extra-x86_64-build.
+
+*-a, --arch* <architecture>::
+ Build against a specific architecture. The default is `x86_64`, the only
+ architecture officially supported by Arch Linux.
+
+*-s, --server* <hostname>::
+ Offload to a specific build server. The default is dragon.archlinux.org
+ which is used as part of the build toolchain for the official Arch Linux
+ repos.
+
+*-h, --help*::
+ Show a help text.
+
+Passing options to archbuild
+----------------------------
+
+Options after a delimiting -- are passed on to archbuild on the remote.
+archbuild in turn supports passing arguments on to makechrootpkg, which in turn
+supports passing options to makepkg. Since each uses -- to delimit options that
+are forwarded, make sure to escape them properly:
+
+ `offload-build offload-args -- archbuild-args -- makechrootpkg-args -- makepkg-args`
+
+Example: To use a second `testing-x86_64-build` instance with another copydir:
+
+ `offload-build -r testing -- -- -l <chroot_copy>`
+
+include::footer.asciidoc[]