summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@archlinux.org>2019-03-12 22:40:38 +0100
committerLevente Polyak <anthraxx@archlinux.org>2021-01-26 20:39:06 +0100
commit360a7611a8df0b0e52f7d1b2fb58059fc997dc5e (patch)
treec341fed27db9d77913a4e184d513f4e671a9a141
parentd507db94906769aa73ef97157fba543f2a2d7d61 (diff)
downloaddevtools32-360a7611a8df0b0e52f7d1b2fb58059fc997dc5e.tar.xz
doc: add devtools.7 man page
Signed-off-by: Jelle van der Waa <jelle@vdwaa.nl>
-rw-r--r--.gitignore1
-rw-r--r--Makefile3
-rw-r--r--doc/devtools.7.asciidoc46
3 files changed, 49 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 1e620da..b26fc93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,4 @@ crossrepomove
arch-nspawn
sogrep
doc/*.1
+doc/*.7
diff --git a/Makefile b/Makefile
index 6adcee5..47bb510 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,8 @@ MANS = \
doc/makerepropkg.1 \
doc/mkarchroot.1 \
doc/find-libdeps.1 \
- doc/find-libprovides.1
+ doc/find-libprovides.1 \
+ doc/devtools.7
all: $(BINPROGS) bash_completion zsh_completion man
diff --git a/doc/devtools.7.asciidoc b/doc/devtools.7.asciidoc
new file mode 100644
index 0000000..1b77f4e
--- /dev/null
+++ b/doc/devtools.7.asciidoc
@@ -0,0 +1,46 @@
+devtools(7)
+===========
+
+Name
+----
+devtools - Developer tools for the Arch Linux distribution
+
+Description
+-----------
+
+Devtools contains tools for package maintenance in Arch Linux. The toolset
+varies from tools for building packages in a clean chroot ('mkarchroot',...),
+packaging related tools for sonames ('sogrep', 'lddd') and tools for
+repository management such as ('archco', 'extra2community')
+
+Programs
+--------
+The list below gives a short overview; see the respective documentation
+for details.
+
+linkman:checkpkg[1]
+ Compare the current build pakcage with the repository version
+
+linkman:find-libdeps[1]
+ Find soname dependencies for a package
+
+linkman:find-libprovides[1]
+ Find soname's which are provided by a package
+
+linkman:lddd[1]
+ Find broken library links on your system
+
+linkman:makerepropkg[1]
+ Rebuild a package to see if it is reproducible
+
+linkman:mkarchroot[1]
+ Creates an arch chroot in a specified location with a specified set of
+ packages
+
+linkman:offload-build[1]
+ Build a PKGBUILD on a remote server using makechrootpkg
+
+linkman:sogrep[1]
+ Find packages using a linked to a given shared library
+
+include::footer.asciidoc[]