Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/elogind/
Date: Sat, 30 Jun 2018 20:48:03
Message-Id: 1530391650.a354be889ae62fb1a037ceeeaa2370304b95edf5.asturm@gentoo
1 commit: a354be889ae62fb1a037ceeeaa2370304b95edf5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 30 19:07:01 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 30 20:47:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a354be88
7
8 sys-auth/elogind: 235.5 version bump
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 sys-auth/elogind/Manifest | 1 +
13 sys-auth/elogind/elogind-235.5.ebuild | 122 ++++++++++++++++++++++++++++++++++
14 2 files changed, 123 insertions(+)
15
16 diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
17 index 2000d7a9f85..2c37430f606 100644
18 --- a/sys-auth/elogind/Manifest
19 +++ b/sys-auth/elogind/Manifest
20 @@ -1,3 +1,4 @@
21 DIST elogind-235.2.tar.gz 975652 BLAKE2B c568b5eec89da14f55211cf4405d96b4bb1ea274d1237739a92c4f3585a6181a3e17dc7ed2af5161c649cae2149b3bd25f4212cf5a304383b254e39d7aa0b378 SHA512 6fa9194e8c21fa3d3caf6f9499f772dbfe38b9d40d8a0fe43ee32ad4b2acd672a78798d00694d1e0d6107625f4f3f06b71e0a5466ed4be446d670f9bcd961313
22 DIST elogind-235.4.tar.gz 1019339 BLAKE2B 728e6707f57f43acf9a40e127fe2e53389cbcba1c96b79f96b23dc7d2ffdc3c84efdd55905a22cbeae0442d9278fd1e9371904c2da8aa29c00f79b879522b2c6 SHA512 43a4a25219c234214b1541f17c4aec65847e62ebbeeb223c7890f6648a2ffadc8388e4c526ab49df9ff1f216160810c601c7609098b9b2955bc63142f684b16e
23 +DIST elogind-235.5.tar.gz 990321 BLAKE2B 03730f449e01ef74a92aa3313f59b93de3941425f95610e2d50dd6a0651682df5f2e245f9eeaeef5c5fd38300102fbccc980a55466ea12100e8904f126a5c44f SHA512 8f12c576f291fb9768e343e8257c74c62686f1a67b10170715b678e0431692cec7b6382102467dd2598a331c20d823d935128d5ff36f5b074dc02802ffec863c
24 DIST elogind-236.1.tar.gz 1050387 BLAKE2B d0d295210eb07374cae738f55b472d9410f68c9e7f318dd736b5fcb5c0409c3da144988d8042b1e3b103d34d7a02471b4e316a924c9b1640c605fc73972de3da SHA512 ab4989f4467ef001bb8b837035bee870beaf5ec5fa2389649bdcad2fe7bbf82691bfd3176cf9a3bf3b5c232c77210f431f2d38ebdbfd09f5a7868cd50e476c59
25
26 diff --git a/sys-auth/elogind/elogind-235.5.ebuild b/sys-auth/elogind/elogind-235.5.ebuild
27 new file mode 100644
28 index 00000000000..c2dbf0ad027
29 --- /dev/null
30 +++ b/sys-auth/elogind/elogind-235.5.ebuild
31 @@ -0,0 +1,122 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit linux-info meson pam udev xdg-utils
38 +
39 +DESCRIPTION="The systemd project's logind, extracted to a standalone package"
40 +HOMEPAGE="https://github.com/elogind/elogind"
41 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +IUSE="+acl debug doc +pam +policykit selinux"
47 +
48 +COMMON_DEPEND="
49 + sys-apps/util-linux
50 + sys-libs/libcap
51 + virtual/libudev:=
52 + acl? ( sys-apps/acl )
53 + pam? ( virtual/pam )
54 + selinux? ( sys-libs/libselinux )
55 +"
56 +DEPEND="${COMMON_DEPEND}
57 + app-text/docbook-xml-dtd:4.2
58 + app-text/docbook-xml-dtd:4.5
59 + app-text/docbook-xsl-stylesheets
60 + dev-util/gperf
61 + dev-util/intltool
62 + sys-devel/libtool
63 + virtual/pkgconfig
64 +"
65 +RDEPEND="${COMMON_DEPEND}
66 + !sys-apps/systemd
67 +"
68 +PDEPEND="
69 + sys-apps/dbus
70 + policykit? ( sys-auth/polkit )
71 +"
72 +
73 +PATCHES=(
74 + "${FILESDIR}/${PN}-235.2-docs.patch"
75 + "${FILESDIR}/${PN}-235.2-drop-logintest.patch" # bug 645156
76 +)
77 +
78 +pkg_setup() {
79 + local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SIGNALFD ~TIMERFD"
80 +
81 + if use kernel_linux; then
82 + linux-info_pkg_setup
83 + fi
84 +}
85 +
86 +src_prepare() {
87 + default
88 + xdg_environment_reset
89 +}
90 +
91 +src_configure() {
92 + local rccgroupmode="$(grep rc_cgroup_mode /etc/rc.conf | cut -d '"' -f 2)"
93 + local cgroupmode="legacy"
94 +
95 + if [[ "xhybrid" = "x${rccgroupmode}" ]] ; then
96 + cgroupmode="hybrid"
97 + elif [[ "xunified" = "x${rccgroupmode}" ]] ; then
98 + cgroupmode="unified"
99 + fi
100 +
101 + local emesonargs=(
102 + -Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
103 + -Dhtmldir="${EPREFIX}/usr/share/doc/${PF}/html"
104 + -Dpamlibdir=$(getpam_mod_dir)
105 + -Dudevrulesdir="$(get_udevdir)"/rules.d
106 + --libdir="${EPREFIX}"/usr/$(get_libdir)
107 + -Drootlibdir="${EPREFIX}"/$(get_libdir)
108 + -Drootlibexecdir="${EPREFIX}"/$(get_libdir)/elogind
109 + -Drootprefix="${EPREFIX}/"
110 + -Dbashcompletiondir="${EPREFIX}/usr/share/bash-completion/completions"
111 + -Dzshcompletiondir="${EPREFIX}/usr/share/zsh/site-functions"
112 + -Dman=auto
113 + -Dsmack=true
114 + -Dcgroup-controller=openrc
115 + -Ddefault-hierarchy=${cgroupmode}
116 + -Ddefault-kill-user-processes=false
117 + -Dacl=$(usex acl true false)
118 + -Ddebug=$(usex debug elogind false)
119 + --buildtype $(usex debug debug release)
120 + -Dhtml=$(usex doc auto false)
121 + -Dpam=$(usex pam true false)
122 + -Dselinux=$(usex selinux true false)
123 + )
124 +
125 + meson_src_configure
126 +}
127 +
128 +src_install() {
129 + DOCS+=( src/libelogind/sd-bus/GVARIANT-SERIALIZATION )
130 +
131 + meson_src_install
132 +
133 + newinitd "${FILESDIR}"/${PN}.init ${PN}
134 +
135 + sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.conf.in > ${PN}.conf || die
136 + newconfd ${PN}.conf ${PN}
137 +}
138 +
139 +pkg_postinst() {
140 + if [[ "$(rc-config list boot | grep elogind)" != "" ]]; then
141 + elog "elogind is currently started from boot runlevel."
142 + elif [[ "$(rc-config list default | grep elogind)" != "" ]]; then
143 + ewarn "elogind is currently started from default runlevel."
144 + ewarn "Please remove elogind from the default runlevel and"
145 + ewarn "add it to the boot runlevel by:"
146 + ewarn "# rc-update del elogind default"
147 + ewarn "# rc-update add elogind boot"
148 + else
149 + ewarn "elogind is currently not started from any runlevel."
150 + ewarn "You may add it to the boot runlevel by:"
151 + ewarn "# rc-update add elogind boot"
152 + fi
153 +}