Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/openrc/
Date: Fri, 15 Oct 2021 19:11:14
Message-Id: 1634325045.7f32115fa551baa780ad98ec73588a9b608b0785.williamh@gentoo
1 commit: 7f32115fa551baa780ad98ec73588a9b608b0785
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 15 19:09:37 2021 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 15 19:10:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f32115f
7
8 sys-apps/openrc: 0.44.7 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 sys-apps/openrc/Manifest | 1 +
14 sys-apps/openrc/openrc-0.44.7.ebuild | 164 +++++++++++++++++++++++++++++++++++
15 2 files changed, 165 insertions(+)
16
17 diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
18 index ffc9626b758..42561abe6c7 100644
19 --- a/sys-apps/openrc/Manifest
20 +++ b/sys-apps/openrc/Manifest
21 @@ -1,3 +1,4 @@
22 DIST openrc-0.43.5.tar.gz 242146 BLAKE2B 993d3895588e8f1383049006834f944faaae0f889d3afcae5bff697db9f26383712f18aba52ce07d835f1d2bbe8ef19ef116ad60141d1eb0650767430d1d9967 SHA512 680c1549a8a37eb3a719f3e026888d045d26c98357d6e6eaf09069a23a001272deaca8cac4a9b8fd79f489c4cfb4fe2c7b5d481d1469798a8f5ec470d0cadbe3
23 DIST openrc-0.44.5.tar.gz 253815 BLAKE2B e0d1ed26a18f59a226a44b3cf041c9b8017fbbe304aa5986d8e5ada17530594ac1a8099bf392ee6cd41c6668ce69a51ee1776817745b568e182bfbeac3a01799 SHA512 95b9399168522ead967a9f1de8ddce3826de997ff0e1acd56b342dc41cf18ea527598ea316e0e377916582a4f6a109a12233bd302e72ae93b3f1bcb81bfe7a4a
24 DIST openrc-0.44.6.tar.gz 253905 BLAKE2B 3a1b337fde50e54fa6d7cabf4f1103889dbda8b04dd98c1ef19ec6ed778a4a1006afb8c9bcc6944b12219f2a2adf2f4dd5afe6243b7a69c23d5effed77cb4224 SHA512 203e48781d5c6d1c0839439823f0f26d2fcd44cd03512379993df684693098080cf7253cffaafca76032551146c36c6fff7bc0d7c848725dc2bccf7519da6d3a
25 +DIST openrc-0.44.7.tar.gz 255444 BLAKE2B 8058e1fd8fcce46f53e73b56ec8da5eec9ba0807d657aef4ece2d49056c02a451c41155df96b167ff157863a85d77eb63796715b5191dd1c6c631c8f859d3090 SHA512 c6b3e2e30615d97a5185320a140ced881bc59ba31ea8dff5d80440396166af237826de6ffc7836ec141e305c92176cd9cc3dabff7e42ac0d80e5238513fefdb7
26
27 diff --git a/sys-apps/openrc/openrc-0.44.7.ebuild b/sys-apps/openrc/openrc-0.44.7.ebuild
28 new file mode 100644
29 index 00000000000..8edadaf9e4e
30 --- /dev/null
31 +++ b/sys-apps/openrc/openrc-0.44.7.ebuild
32 @@ -0,0 +1,164 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit flag-o-matic meson pam toolchain-funcs
39 +
40 +DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
41 +HOMEPAGE="https://github.com/openrc/openrc/"
42 +
43 +if [[ ${PV} =~ ^9{4,}$ ]]; then
44 + EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git"
45 + inherit git-r3
46 +else
47 + SRC_URI="https://github.com/OpenRC/openrc/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
49 +fi
50 +
51 +LICENSE="BSD-2"
52 +SLOT="0"
53 +IUSE="audit bash debug ncurses pam newnet +netifrc selinux sysv-utils unicode"
54 +
55 +COMMON_DEPEND="
56 + ncurses? ( sys-libs/ncurses:0= )
57 + pam? ( sys-libs/pam )
58 + audit? ( sys-process/audit )
59 + sys-process/psmisc
60 + !<sys-process/procps-3.3.9-r2
61 + selinux? (
62 + sys-apps/policycoreutils
63 + >=sys-libs/libselinux-2.6
64 + )
65 + !<sys-apps/baselayout-2.1-r1
66 + !<sys-fs/udev-init-scripts-27"
67 +DEPEND="${COMMON_DEPEND}
68 + virtual/os-headers
69 + ncurses? ( virtual/pkgconfig )"
70 +RDEPEND="${COMMON_DEPEND}
71 + bash? ( app-shells/bash )
72 + !prefix? (
73 + sysv-utils? (
74 + !sys-apps/systemd[sysv-utils(-)]
75 + !sys-apps/sysvinit
76 + )
77 + !sysv-utils? ( >=sys-apps/sysvinit-2.86-r6[selinux?] )
78 + virtual/tmpfiles
79 + )
80 + selinux? (
81 + >=sec-policy/selinux-base-policy-2.20170204-r4
82 + >=sec-policy/selinux-openrc-2.20170204-r4
83 + )
84 + !<app-shells/gentoo-bashcomp-20180302
85 + !<app-shells/gentoo-zsh-completions-20180228
86 +"
87 +
88 +PDEPEND="netifrc? ( net-misc/netifrc )"
89 +
90 +src_configure() {
91 + local emesonargs=(
92 + $(meson_feature audit)
93 + "-Dbranding=\"Gentoo Linux\""
94 + $(meson_use newnet)
95 + -Dos=Linux
96 + $(meson_use pam)
97 + $(meson_feature selinux)
98 + -Dshell=$(usex bash /bin/bash /bin/sh)
99 + $(meson_use sysv-utils sysvinit)
100 + -Dtermcap=$(usev ncurses)
101 + )
102 + # export DEBUG=$(usev debug)
103 + meson_src_configure
104 +}
105 +
106 +# set_config <file> <option name> <yes value> <no value> test
107 +# a value of "#" will just comment out the option
108 +set_config() {
109 + local file="${ED}/$1" var=$2 val com
110 + eval "${@:5}" && val=$3 || val=$4
111 + [[ ${val} == "#" ]] && com="#" && val='\2'
112 + sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ ]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
113 +}
114 +
115 +set_config_yes_no() {
116 + set_config "$1" "$2" YES NO "${@:3}"
117 +}
118 +
119 +src_install() {
120 + meson_install
121 +
122 + keepdir /lib/rc/tmp
123 +
124 + # Setup unicode defaults for silly unicode users
125 + set_config_yes_no /etc/rc.conf unicode use unicode
126 +
127 + # Cater to the norm
128 + set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use amd64 ')'
129 +
130 + # On HPPA, do not run consolefont by default (bug #222889)
131 + if use hppa; then
132 + rm -f "${ED}"/etc/runlevels/boot/consolefont
133 + fi
134 +
135 + # Support for logfile rotation
136 + insinto /etc/logrotate.d
137 + newins "${FILESDIR}"/openrc.logrotate openrc
138 +
139 + if use pam; then
140 + # install gentoo pam.d files
141 + newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
142 + newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
143 + fi
144 +
145 + # install documentation
146 + dodoc ChangeLog *.md
147 +}
148 +
149 +pkg_preinst() {
150 + # avoid default thrashing in conf.d files when possible #295406
151 + if [[ -e "${EROOT}"/etc/conf.d/hostname ]] ; then
152 + (
153 + unset hostname HOSTNAME
154 + source "${EROOT}"/etc/conf.d/hostname
155 + : ${hostname:=${HOSTNAME}}
156 + [[ -n ${hostname} ]] && set_config /etc/conf.d/hostname hostname "${hostname}"
157 + )
158 + fi
159 +
160 + # set default interactive shell to sulogin if it exists
161 + set_config /etc/rc.conf rc_shell /sbin/sulogin "#" test -e /sbin/sulogin
162 + return 0
163 +}
164 +
165 +pkg_postinst() {
166 + if use hppa; then
167 + elog "Setting the console font does not work on all HPPA consoles."
168 + elog "You can still enable it by running:"
169 + elog "# rc-update add consolefont boot"
170 + fi
171 +
172 + # Added for 0.35.
173 + if [[ ! -h "${EROOT}"/lib ]]; then
174 + if [[ -d "${EROOT}/$(get_libdir)"/rc ]]; then
175 + cp -RPp "${EROOT}/$(get_libdir)/rc" "${EROOT}"/lib
176 + fi
177 + fi
178 +
179 + if ! use newnet && ! use netifrc; then
180 + ewarn "You have emerged OpenRc without network support. This"
181 + ewarn "means you need to SET UP a network manager such as"
182 + ewarn " net-misc/netifrc, net-misc/dhcpcd, net-misc/connman,"
183 + ewarn " net-misc/NetworkManager, or net-vpn/badvpn."
184 + ewarn "Or, you have the option of emerging openrc with the newnet"
185 + ewarn "use flag and configuring /etc/conf.d/network and"
186 + ewarn "/etc/conf.d/staticroute if you only use static interfaces."
187 + ewarn
188 + fi
189 +
190 + if use newnet && [ ! -e "${EROOT}"/etc/runlevels/boot/network ]; then
191 + ewarn "Please add the network service to your boot runlevel"
192 + ewarn "as soon as possible. Not doing so could leave you with a system"
193 + ewarn "without networking."
194 + ewarn
195 + fi
196 +}