Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bash/
Date: Sun, 31 Jul 2022 16:55:55
Message-Id: 1659286501.c2204cc82792abe8ba280740fb441d440ceb5055.floppym@gentoo
1 commit: c2204cc82792abe8ba280740fb441d440ceb5055
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 30 22:39:16 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 16:55:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2204cc8
7
8 app-shells/bash: rename builtins.1 to bash_builtins.1
9
10 This seems to be the intended name based on doc/Makefile.in.
11
12 This also fixes a rendering issue when the man pages are viewed with
13 mandoc.
14
15 Closes: https://github.com/gentoo/gentoo/pull/26669
16 Closes: https://github.com/gentoo/gentoo/pull/26673
17 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
18
19 app-shells/bash/{bash-5.1_p16.ebuild => bash-5.1_p16-r1.ebuild} | 6 +++++-
20 app-shells/bash/{bash-5.2_rc2.ebuild => bash-5.2_rc2-r1.ebuild} | 6 +++++-
21 app-shells/bash/bash-9999.ebuild | 6 +++++-
22 3 files changed, 15 insertions(+), 3 deletions(-)
23
24 diff --git a/app-shells/bash/bash-5.1_p16.ebuild b/app-shells/bash/bash-5.1_p16-r1.ebuild
25 similarity index 97%
26 rename from app-shells/bash/bash-5.1_p16.ebuild
27 rename to app-shells/bash/bash-5.1_p16-r1.ebuild
28 index 43292ec1f762..e7efd65fd661 100644
29 --- a/app-shells/bash/bash-5.1_p16.ebuild
30 +++ b/app-shells/bash/bash-5.1_p16-r1.ebuild
31 @@ -270,7 +270,11 @@ src_install() {
32 done
33 fi
34
35 - doman doc/*.1
36 + # Install bash_builtins.1 and rbash.1
37 + emake -C doc DESTDIR="${D}" install_builtins
38 + sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
39 + doman "${T}"/rbash.1
40 +
41 newdoc CWRU/changelog ChangeLog
42 dosym bash.info /usr/share/info/bashref.info
43 }
44
45 diff --git a/app-shells/bash/bash-5.2_rc2.ebuild b/app-shells/bash/bash-5.2_rc2-r1.ebuild
46 similarity index 98%
47 rename from app-shells/bash/bash-5.2_rc2.ebuild
48 rename to app-shells/bash/bash-5.2_rc2-r1.ebuild
49 index 4effa61a8843..3fa9e5592430 100644
50 --- a/app-shells/bash/bash-5.2_rc2.ebuild
51 +++ b/app-shells/bash/bash-5.2_rc2-r1.ebuild
52 @@ -294,7 +294,11 @@ src_install() {
53 done
54 fi
55
56 - doman doc/*.1
57 + # Install bash_builtins.1 and rbash.1
58 + emake -C doc DESTDIR="${D}" install_builtins
59 + sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
60 + doman "${T}"/rbash.1
61 +
62 newdoc CWRU/changelog ChangeLog
63 dosym bash.info /usr/share/info/bashref.info
64 }
65
66 diff --git a/app-shells/bash/bash-9999.ebuild b/app-shells/bash/bash-9999.ebuild
67 index 6e82b8f94a03..065cb2bc6dee 100644
68 --- a/app-shells/bash/bash-9999.ebuild
69 +++ b/app-shells/bash/bash-9999.ebuild
70 @@ -294,7 +294,11 @@ src_install() {
71 done
72 fi
73
74 - doman doc/*.1
75 + # Install bash_builtins.1 and rbash.1
76 + emake -C doc DESTDIR="${D}" install_builtins
77 + sed 's:bash\.1:man1/&:' doc/rbash.1 > "${T}"/rbash.1 || die
78 + doman "${T}"/rbash.1
79 +
80 newdoc CWRU/changelog ChangeLog
81 dosym bash.info /usr/share/info/bashref.info
82 }