[gentoo-portage-dev] [PATCH 1/2] depgraph.py: Fix the URL for the changed-deps wiki page

2024-05-10 Thread Bryan Gardiner
Signed-off-by: Bryan Gardiner 
---
 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




[gentoo-portage-dev] [PATCH 2/2] ebuild.5: Escape carats which are special to groff

2024-05-10 Thread 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 
---
 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




[gentoo-portage-dev] [PATCH 0/2] Minor documentation fixups

2024-05-10 Thread 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




Re: [gentoo-dev] [PATCH] vdr-plugin-2.eclass: make qa warning conditional

2024-05-10 Thread Martin Dummer


Am 09.05.24 um 15:08 schrieb Sam James:

It sounds like maybe you want to turn these into log messages (einfo -
https://devmanual.gentoo.org/ebuild-writing/messages/index.html), and
drop the "QA notice" prefix.


I changed https://github.com/gentoo/gentoo/pull/36504 accordingly and
added the "Closes:" tags. Can you please review?