aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Marchese <maffblaster@gentoo.org>2023-12-21 04:17:53 -0800
committerUlrich Müller <ulm@gentoo.org>2024-05-07 19:16:52 +0200
commitfb8f7e599d39a1f4f7b1250e8ae64a7feac742e7 (patch)
tree0271324d8aed1987cc6281fa0d6233aaa97b4b6e /general-concepts
parentebuild-writing/functions/src_prepare/eapply: fix typo (diff)
downloaddevmanual-fb8f7e599d39a1f4f7b1250e8ae64a7feac742e7.tar.gz
devmanual-fb8f7e599d39a1f4f7b1250e8ae64a7feac742e7.tar.bz2
devmanual-fb8f7e599d39a1f4f7b1250e8ae64a7feac742e7.zip
Sentence case devmanual
Signed-off-by: Matthew Marchese <maffblaster@gentoo.org> [Whitespace. Fix rebase artifact in ebuild-writing/functions/src_test.] Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'general-concepts')
-rw-r--r--general-concepts/autotools/text.xml28
-rw-r--r--general-concepts/config-protect/text.xml2
-rw-r--r--general-concepts/copyright-policy/text.xml2
-rw-r--r--general-concepts/dependencies/text.xml36
-rw-r--r--general-concepts/ebuild-revisions/text.xml2
-rw-r--r--general-concepts/emerge-and-ebuild/text.xml2
-rw-r--r--general-concepts/git-to-rsync/text.xml2
-rw-r--r--general-concepts/install-destinations/text.xml2
-rw-r--r--general-concepts/licenses/text.xml2
-rw-r--r--general-concepts/mailing-lists/text.xml2
-rw-r--r--general-concepts/manifest/text.xml4
-rw-r--r--general-concepts/mirrors/text.xml10
-rw-r--r--general-concepts/news/text.xml2
-rw-r--r--general-concepts/overlay/text.xml2
-rw-r--r--general-concepts/package-collisions/text.xml2
-rw-r--r--general-concepts/package-maintainers/text.xml2
-rw-r--r--general-concepts/portage-cache/text.xml4
-rw-r--r--general-concepts/projects/text.xml4
-rw-r--r--general-concepts/slotting/text.xml4
-rw-r--r--general-concepts/text.xml2
-rw-r--r--general-concepts/tree/text.xml4
-rw-r--r--general-concepts/use-flags/text.xml10
-rw-r--r--general-concepts/user-environment/text.xml6
23 files changed, 68 insertions, 68 deletions
diff --git a/general-concepts/autotools/text.xml b/general-concepts/autotools/text.xml
index 09162ff..02a3554 100644
--- a/general-concepts/autotools/text.xml
+++ b/general-concepts/autotools/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/autotools/">
<chapter>
-<title>The Basics of Autotools</title>
+<title>The basics of Autotools</title>
<body>
<todo>
@@ -33,7 +33,7 @@ when working with ebuilds:
</body>
<section>
-<title>Major Autotools Components</title>
+<title>Major Autotools components</title>
<body>
<p>
@@ -108,7 +108,7 @@ instead.
</section>
<section>
-<title>Simple Autotools Patching Example</title>
+<title>Simple Autotools patching example</title>
<body>
<p>
@@ -146,7 +146,7 @@ src_configure() {
</section>
<section>
-<title>The <c>configure.ac</c> File</title>
+<title>The <c>configure.ac</c> file</title>
<body>
<p>
@@ -159,7 +159,7 @@ These macros can check for packages and libraries, handle <c>--enable</c> and
</body>
<subsection>
-<title>Basic Format of <c>configure.ac</c></title>
+<title>Basic format of <c>configure.ac</c></title>
<body>
<p>
@@ -289,7 +289,7 @@ These are used to make the <c>./configure</c> script generate the relevant files
</subsection>
<subsection>
-<title>Enable and Disable Checks</title>
+<title>Enable and disable checks</title>
<body>
<p>
@@ -346,7 +346,7 @@ misunderstanding of the <c>AC_ARG_ENABLE</c> arguments is to blame.
</subsection>
<subsection>
-<title>With and Without Checks</title>
+<title>With and without checks</title>
<body>
<p>
@@ -371,7 +371,7 @@ and there are standard macros which include <c>with</c> options.
</subsection>
<subsection>
-<title>Automatic Checks</title>
+<title>Automatic checks</title>
<body>
<p>
@@ -390,7 +390,7 @@ whether or not to enable a feature. If you find a package which does this, you
</subsection>
<subsection>
-<title>Quoting Rules for <c>configure.ac</c></title>
+<title>Quoting rules for <c>configure.ac</c></title>
<body>
<p>
@@ -439,7 +439,7 @@ rather than leaving things unquoted.
</section>
<section>
-<title>The <c>Makefile.am</c> Files</title>
+<title>The <c>Makefile.am</c> files</title>
<body>
<p>
@@ -490,7 +490,7 @@ This is handled via the macro <c>AC_SUBST(VARNAME)</c> in <c>configure.ac</c>.
</body>
<subsection>
-<title>Makefile Variables</title>
+<title>Makefile variables</title>
<body>
<p>
@@ -527,7 +527,7 @@ Remember to manually run <c>autoconf</c> then <c>automake</c> if you do this.
</section>
<section>
-<title>The <c>config.h.in</c> File</title>
+<title>The <c>config.h.in</c> file</title>
<body>
<p>
@@ -541,7 +541,7 @@ version.
</section>
<section>
-<title><c>aclocal</c> and <c>m4</c> Files</title>
+<title><c>aclocal</c> and <c>m4</c> files</title>
<body>
<p>
@@ -646,7 +646,7 @@ know almost nothing about... Yay!
</section>
<section>
-<title>Further Autotools Reading</title>
+<title>Further autotools reading</title>
<body>
<p>
diff --git a/general-concepts/config-protect/text.xml b/general-concepts/config-protect/text.xml
index acbb89d..1d598a3 100644
--- a/general-concepts/config-protect/text.xml
+++ b/general-concepts/config-protect/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/config-protect/">
<chapter>
-<title>Configuration File Protection</title>
+<title>Configuration file protection</title>
<body>
<p>
diff --git a/general-concepts/copyright-policy/text.xml b/general-concepts/copyright-policy/text.xml
index c8d6865..5fb9d19 100644
--- a/general-concepts/copyright-policy/text.xml
+++ b/general-concepts/copyright-policy/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/copyright-policy/">
<chapter>
-<title>Copyright Policy</title>
+<title>Copyright policy</title>
<body>
<p>
diff --git a/general-concepts/dependencies/text.xml b/general-concepts/dependencies/text.xml
index 98a84d1..29998cd 100644
--- a/general-concepts/dependencies/text.xml
+++ b/general-concepts/dependencies/text.xml
@@ -68,7 +68,7 @@ distinctions still apply even if it isn't, strictly speaking, cross-compiling.
</subsection>
<subsection>
-<title>Build Dependencies</title>
+<title>Build dependencies</title>
<body>
<p>
@@ -94,7 +94,7 @@ In earlier EAPIs, all build dependencies are placed in <c>DEPEND</c>.
</subsection>
<subsection>
-<title>Runtime Dependencies</title>
+<title>Runtime dependencies</title>
<body>
<p>
@@ -118,7 +118,7 @@ Items which are in <c>RDEPEND</c> but not <c>DEPEND</c> could <e>in theory</e> b
</subsection>
<subsection>
-<title>Post Dependencies</title>
+<title>Post dependencies</title>
<body>
<p>
@@ -133,10 +133,10 @@ while in general case <c>RDEPEND</c> should be used instead.
</section>
<section>
-<title>Dependency Syntax</title>
+<title>Dependency syntax</title>
<subsection>
-<title>Basic Dependency Syntax</title>
+<title>Basic dependency syntax</title>
<body>
<p>
@@ -160,7 +160,7 @@ When specifying names, the category part should be treated as mandatory.
</subsection>
<subsection>
-<title>Version Dependencies</title>
+<title>Version dependencies</title>
<body>
<p>
@@ -178,7 +178,7 @@ This states that at least version 0.9.7d of <c>openssl</c> is required.
</body>
<subsubsection>
-<title>Version Specifiers</title>
+<title>Version specifiers</title>
<body>
<p>
@@ -223,7 +223,7 @@ Available version specifiers are:
</subsubsection>
<subsubsection>
-<title>Ranged Dependencies</title>
+<title>Ranged dependencies</title>
<body>
<p>
@@ -351,7 +351,7 @@ newer package that caused the issues.
</subsection>
<subsection>
-<title>SLOT Dependencies</title>
+<title>SLOT dependencies</title>
<body>
<p>
@@ -375,7 +375,7 @@ DEPEND="qt5? ( ~dev-qt/qtcore-5.15.2:5 )
</body>
<subsubsection>
-<title>Slot Operators</title>
+<title>Slot operators</title>
<body>
<p>
@@ -458,7 +458,7 @@ sub-slot changes of <c>wombat:0</c> should be ignored.
</subsection>
<subsection>
-<title>USE-Conditional Dependencies</title>
+<title>USE-conditional dependencies</title>
<body>
<p>
@@ -514,7 +514,7 @@ DEPEND="!build? (
</subsection>
<subsection>
-<title>Any of Many Dependencies</title>
+<title>Any of many dependencies</title>
<body>
<note>
@@ -541,7 +541,7 @@ DEPEND="baz? ( || ( app-misc/foo app-misc/bar ) )"
</body>
<subsubsection>
-<title>Any of Many Versus USE</title>
+<title>Any of many versus USE</title>
<body>
<p>
@@ -566,7 +566,7 @@ flag is not necessary if and only if all of the following hold:
</subsection>
<subsection>
-<title>Built with USE Dependencies</title>
+<title>Built with USE dependencies</title>
<body>
<p>
@@ -650,7 +650,7 @@ DEPEND="
</section>
<section>
-<title>Tips for Checking Dependencies</title>
+<title>Tips for checking dependencies</title>
<body>
<p>
@@ -710,7 +710,7 @@ package:
</section>
<section>
-<title>Implicit System Dependency</title>
+<title>Implicit system dependency</title>
<body>
<p>
@@ -738,7 +738,7 @@ tarball.
</section>
<section>
-<title>Test Dependencies</title>
+<title>Test dependencies</title>
<body>
<p>
@@ -776,7 +776,7 @@ DEPEND="test? ( dev-util/foo )"
</section>
<section>
-<title>Circular Dependencies</title>
+<title>Circular dependencies</title>
<body>
<p>
diff --git a/general-concepts/ebuild-revisions/text.xml b/general-concepts/ebuild-revisions/text.xml
index 8248a6e..d363516 100644
--- a/general-concepts/ebuild-revisions/text.xml
+++ b/general-concepts/ebuild-revisions/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/ebuild-revisions/">
<chapter>
-<title>Ebuild Revisions</title>
+<title>Ebuild revisions</title>
<body>
<p>
diff --git a/general-concepts/emerge-and-ebuild/text.xml b/general-concepts/emerge-and-ebuild/text.xml
index 19e1a84..87605a2 100644
--- a/general-concepts/emerge-and-ebuild/text.xml
+++ b/general-concepts/emerge-and-ebuild/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/emerge-and-ebuild/">
<chapter>
-<title>Emerge and Ebuild Relationships</title>
+<title>Emerge and ebuild relationships</title>
<body>
diff --git a/general-concepts/git-to-rsync/text.xml b/general-concepts/git-to-rsync/text.xml
index b8f7dce..455cf13 100644
--- a/general-concepts/git-to-rsync/text.xml
+++ b/general-concepts/git-to-rsync/text.xml
@@ -30,7 +30,7 @@
</ul>
<figure short="Git to RSYNC Propagation" link="diagram.png"
- caption="Diagram showing Git to RSYNC Propagation" />
+ caption="Diagram showing Git to RSYNC propagation" />
<p>
The <c>emerge-websync</c> snapshot is made daily from the staging box.
diff --git a/general-concepts/install-destinations/text.xml b/general-concepts/install-destinations/text.xml
index 5413ebc..57db917 100644
--- a/general-concepts/install-destinations/text.xml
+++ b/general-concepts/install-destinations/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/install-destinations/">
<chapter>
-<title>Install Destinations</title>
+<title>Install destinations</title>
<body>
diff --git a/general-concepts/licenses/text.xml b/general-concepts/licenses/text.xml
index 939b429..655175a 100644
--- a/general-concepts/licenses/text.xml
+++ b/general-concepts/licenses/text.xml
@@ -226,7 +226,7 @@ indicates <c>GPL-2+</c> license:
</section>
<section>
-<title>Adding New Licenses</title>
+<title>Adding new licenses</title>
<body>
<p>
diff --git a/general-concepts/mailing-lists/text.xml b/general-concepts/mailing-lists/text.xml
index 8787b13..f91d1cf 100644
--- a/general-concepts/mailing-lists/text.xml
+++ b/general-concepts/mailing-lists/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/mailing-lists/">
<chapter>
-<title>Mailing Lists</title>
+<title>Mailing lists</title>
<body>
<p>
diff --git a/general-concepts/manifest/text.xml b/general-concepts/manifest/text.xml
index bee1651..11ed7cb 100644
--- a/general-concepts/manifest/text.xml
+++ b/general-concepts/manifest/text.xml
@@ -4,7 +4,7 @@
<title>Manifest</title>
<section>
-<title>Generating the Manifest</title>
+<title>Generating the Manifest file</title>
<body>
<p>
In the tree, every package has a <c>Manifest</c> file. This file lives
@@ -41,7 +41,7 @@ action from developers.
</subsection>
<subsection>
-<title>Updating <c>Manifest</c> files</title>
+<title>Updating Manifest files</title>
<body>
<p>
diff --git a/general-concepts/mirrors/text.xml b/general-concepts/mirrors/text.xml
index f380d45..927a3a6 100644
--- a/general-concepts/mirrors/text.xml
+++ b/general-concepts/mirrors/text.xml
@@ -4,7 +4,7 @@
<title>Mirrors</title>
<section>
-<title>Automatic Mirroring</title>
+<title>Automatic mirroring</title>
<body>
<p>
@@ -22,7 +22,7 @@ rearranged, tidied out or having files modified.
</body>
<subsection>
-<title>Restricting Automatic Mirroring</title>
+<title>Restricting automatic mirroring</title>
<body>
<p>
Three <c>RESTRICT</c> keywords can be used to control the mirroring process.
@@ -50,7 +50,7 @@ This should only be used if a license requires it.
</subsection>
<subsection>
-<title>Replacing Automatically Mirrored Files</title>
+<title>Replacing automatically mirrored files</title>
<body>
<p>
On rare occasions you may need to replace a file that is already mirrored.
@@ -83,7 +83,7 @@ Infrastructure project's Distfile Mirroring System page</uri>.
<subsection>
-<title>Suitable Download Hosts</title>
+<title>Suitable download hosts</title>
<body>
<p>
If you have to host a source file (patch or tarball) yourself, as long as it
@@ -127,7 +127,7 @@ Not doing so can cause all kinds of problems with strict firewalls.
</section>
<section>
-<title>Mirroring Process</title>
+<title>Mirroring process</title>
<body>
<figure short="Mirroring Process" link="diagram.png"
diff --git a/general-concepts/news/text.xml b/general-concepts/news/text.xml
index 3ff5c32..88fb12b 100644
--- a/general-concepts/news/text.xml
+++ b/general-concepts/news/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/news/">
<chapter>
-<title>News Items</title>
+<title>News items</title>
<body>
<p>
diff --git a/general-concepts/overlay/text.xml b/general-concepts/overlay/text.xml
index 43d1607..77e7190 100644
--- a/general-concepts/overlay/text.xml
+++ b/general-concepts/overlay/text.xml
@@ -34,7 +34,7 @@ override existing entries.
</body>
<section>
-<title>Overlay and Eclasses</title>
+<title>Overlay and eclasses</title>
<body>
<p>
diff --git a/general-concepts/package-collisions/text.xml b/general-concepts/package-collisions/text.xml
index 66536ee..0b168b5 100644
--- a/general-concepts/package-collisions/text.xml
+++ b/general-concepts/package-collisions/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/package-collisions/">
<chapter>
-<title>Package Collisions</title>
+<title>Package collisions</title>
<body>
<p>
diff --git a/general-concepts/package-maintainers/text.xml b/general-concepts/package-maintainers/text.xml
index 6d37795..0773859 100644
--- a/general-concepts/package-maintainers/text.xml
+++ b/general-concepts/package-maintainers/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/package-maintainers/">
<chapter>
-<title>Package Maintainers</title>
+<title>Package maintainers</title>
<body>
<p>
diff --git a/general-concepts/portage-cache/text.xml b/general-concepts/portage-cache/text.xml
index 96fea32..2b40d26 100644
--- a/general-concepts/portage-cache/text.xml
+++ b/general-concepts/portage-cache/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/portage-cache/">
<chapter>
-<title>The Portage Cache</title>
+<title>The Portage cache</title>
<body>
<p>
@@ -54,7 +54,7 @@ fi
</body>
<section>
-<title>Conditional Inherits</title>
+<title>Conditional inherits</title>
<body>
<p>
Because eclasses modify various cached variables, conditional inheritance is not
diff --git a/general-concepts/projects/text.xml b/general-concepts/projects/text.xml
index 19188d4..203c364 100644
--- a/general-concepts/projects/text.xml
+++ b/general-concepts/projects/text.xml
@@ -30,7 +30,7 @@ api.gentoo.org</uri> or on the
</body>
<section>
-<title>Starting New Projects</title>
+<title>Starting new projects</title>
<body>
<p>
@@ -62,7 +62,7 @@ project with the same goals.
</section>
<section>
-<title>Joining and Leaving a Project</title>
+<title>Joining and leaving a project</title>
<body>
<p>
diff --git a/general-concepts/slotting/text.xml b/general-concepts/slotting/text.xml
index 9eabf08..a0fb1e1 100644
--- a/general-concepts/slotting/text.xml
+++ b/general-concepts/slotting/text.xml
@@ -46,7 +46,7 @@ To <c>DEPEND</c> upon a package in a specific slot, refer to
</body>
<section>
-<title>Sub-Slots</title>
+<title>Sub-slots</title>
<body>
<p>
@@ -217,7 +217,7 @@ to represent in some way ABI compatibility.
</section>
<section>
-<title>Slot Names</title>
+<title>Slot names</title>
<body>
<p>
diff --git a/general-concepts/text.xml b/general-concepts/text.xml
index c10d1fd..5f7f094 100644
--- a/general-concepts/text.xml
+++ b/general-concepts/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/">
<chapter>
-<title>General Concepts</title>
+<title>General concepts</title>
<body>
<p>
diff --git a/general-concepts/tree/text.xml b/general-concepts/tree/text.xml
index 9fb9cb9..e686b54 100644
--- a/general-concepts/tree/text.xml
+++ b/general-concepts/tree/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/tree/">
<chapter>
-<title>The Gentoo Repository</title>
+<title>The Gentoo repository</title>
<body>
<p>
@@ -80,7 +80,7 @@ The basic layout of the Gentoo repository is as follows:
</body>
<section>
-<title>What Belongs in the Tree?</title>
+<title>What belongs in the tree?</title>
<body>
<p>
diff --git a/general-concepts/use-flags/text.xml b/general-concepts/use-flags/text.xml
index 5caa430..6a32e61 100644
--- a/general-concepts/use-flags/text.xml
+++ b/general-concepts/use-flags/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/use-flags/">
<chapter>
-<title>USE Flags</title>
+<title>USE flags</title>
<body>
<p>
@@ -121,7 +121,7 @@ features at compile time (via pre-processor macros).
</section>
<section>
-<title><c>noblah</c> USE Flags</title>
+<title><c>noblah</c> USE flags</title>
<body>
<p>
Avoid <c>noblah</c> style <c>USE</c> flags. These break <c>use.mask</c> and
@@ -269,7 +269,7 @@ gentoo-dev mailing list.
</section>
<section>
-<title>USE Flag Descriptions</title>
+<title>USE flag descriptions</title>
<body>
<p>
All USE flags must be described in either <c>use.desc</c> in the
@@ -294,7 +294,7 @@ for the format, and remember to keep them sorted.
</section>
<section>
-<title>Conflicting USE Flags</title>
+<title>Conflicting USE flags</title>
<body>
<p>
Occasionally, ebuilds will have conflicting USE flags for functionality.
@@ -351,7 +351,7 @@ needs.
</section>
<section>
-<title>USE_EXPAND and ARCH USE Flags</title>
+<title>USE_EXPAND and ARCH USE flags</title>
<body>
<p>
diff --git a/general-concepts/user-environment/text.xml b/general-concepts/user-environment/text.xml
index b472ea5..5635a3f 100644
--- a/general-concepts/user-environment/text.xml
+++ b/general-concepts/user-environment/text.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<guide self="general-concepts/user-environment/">
<chapter>
-<title>User Environment</title>
+<title>User environment</title>
<body>
<p>
@@ -16,7 +16,7 @@ performed upon the environment.
</body>
<section>
-<title>Filtering Variables</title>
+<title>Filtering variables</title>
<body>
<p>
Certain variables will really really upset certain build systems. A good example
@@ -42,7 +42,7 @@ pkg_setup() {
</section>
<section>
-<title>Not Filtering Variables</title>
+<title>Not filtering variables</title>
<body>
<p>
On the other hand, it is extremely important that certain user preferences are