public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups
@ 2024-05-11  3:18 Bryan Gardiner
  2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page Bryan Gardiner
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bryan Gardiner @ 2024-05-11  3:18 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Bryan Gardiner

Just fixes for a couple of small documentation issues I found.

Bryan Gardiner (2):
  depgraph.py: Fix the URL for the changed-deps wiki page
  ebuild.5: Escape carats which are special to groff

 lib/_emerge/depgraph.py | 2 +-
 man/ebuild.5            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.43.2



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page
  2024-05-11  3:18 [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Bryan Gardiner
@ 2024-05-11  3:18 ` Bryan Gardiner
  2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 2/2] ebuild.5: Escape carats which are special to groff Bryan Gardiner
  2024-05-13  5:43 ` [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Sam James
  2 siblings, 0 replies; 4+ messages in thread
From: Bryan Gardiner @ 2024-05-11  3:18 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Bryan Gardiner

Signed-off-by: Bryan Gardiner <bog@khumba.net>
---
 lib/_emerge/depgraph.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 6853ec491..9673d85f8 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -1181,7 +1181,7 @@ class depgraph:
                     "NOTE: Refer to the following page for more information about dependency",
                     "      change(s) without revision bump:",
                     "",
-                    "          https://wiki.gentoo.org/wiki/Project:Portage/Changed_Deps",
+                    "          https://wiki.gentoo.org/wiki/Project:Portage/Changed_dependencies",
                     "",
                     "      In order to suppress reports about dependency changes, add",
                     "      --changed-deps-report=n to the EMERGE_DEFAULT_OPTS variable in",
-- 
2.43.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-portage-dev] [PATCH 2/2] ebuild.5: Escape carats which are special to groff
  2024-05-11  3:18 [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Bryan Gardiner
  2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page Bryan Gardiner
@ 2024-05-11  3:18 ` Bryan Gardiner
  2024-05-13  5:43 ` [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Sam James
  2 siblings, 0 replies; 4+ messages in thread
From: Bryan Gardiner @ 2024-05-11  3:18 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Bryan Gardiner

Raw carats are converted to circumflex characters which are not
searchable, so they need to be escaped.  See groff_char(7).

Signed-off-by: Bryan Gardiner <bog@khumba.net>
---
 man/ebuild.5 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man/ebuild.5 b/man/ebuild.5
index a32ba4828..36d65eb18 100644
--- a/man/ebuild.5
+++ b/man/ebuild.5
@@ -734,7 +734,7 @@ If flag1 enabled then flag2 enabled	flag1? ( flag2 )
 If flag1 disabled then flag2 enabled	!flag1? ( flag2 )
 If flag1 disabled then flag2 disabled	!flag1? ( !flag2 )
 Must enable any one or more (inclusive or)	|| ( flag1 flag2 flag3 )
-Must enable exactly one but not more (exclusive or)	^^ ( flag1 flag2 flag3 )
+Must enable exactly one but not more (exclusive or)	\(ha\(ha ( flag1 flag2 flag3 )
 May enable at most one (EAPI 5 or later)	?? ( flag1 flag2 flag3 )
 .TE
 .TP
-- 
2.43.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups
  2024-05-11  3:18 [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Bryan Gardiner
  2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page Bryan Gardiner
  2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 2/2] ebuild.5: Escape carats which are special to groff Bryan Gardiner
@ 2024-05-13  5:43 ` Sam James
  2 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2024-05-13  5:43 UTC (permalink / raw
  To: Bryan Gardiner; +Cc: gentoo-portage-dev

Bryan Gardiner <bog@khumba.net> writes:

> Just fixes for a couple of small documentation issues I found.

Applied - thanks!

>
> Bryan Gardiner (2):
>   depgraph.py: Fix the URL for the changed-deps wiki page
>   ebuild.5: Escape carats which are special to groff
>
>  lib/_emerge/depgraph.py | 2 +-
>  man/ebuild.5            | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-13  5:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-11  3:18 [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Bryan Gardiner
2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page Bryan Gardiner
2024-05-11  3:18 ` [gentoo-portage-dev] [PATCH 2/2] ebuild.5: Escape carats which are special to groff Bryan Gardiner
2024-05-13  5:43 ` [gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox