Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/upower/
Date: Mon, 30 May 2022 15:34:14
Message-Id: 1653924843.c51decc1e6fd60953cd8519a1315ef80d19d2383.mattst88@gentoo
1 commit: c51decc1e6fd60953cd8519a1315ef80d19d2383
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 15:30:35 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 15:34:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51decc1
7
8 sys-power/upower: Version bump to 0.99.18
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 sys-power/upower/Manifest | 1 +
13 sys-power/upower/upower-0.99.18.ebuild | 113 +++++++++++++++++++++++++++++++++
14 2 files changed, 114 insertions(+)
15
16 diff --git a/sys-power/upower/Manifest b/sys-power/upower/Manifest
17 index b3e8efae9a24..496b4baf99d5 100644
18 --- a/sys-power/upower/Manifest
19 +++ b/sys-power/upower/Manifest
20 @@ -1,2 +1,3 @@
21 DIST upower-0.99.12.tar.xz 423640 BLAKE2B 4c5c6357f0a2f8d721ebae9736912b1871a898c7ce65708626f9a9465cde87036ba6ab8050d97f5b9074d92e2700d8ed1e71b67f43cd6305eb4e89336f1b628f SHA512 9858a0e5f65271522cc5f36b0cd8722a5fb3effba37dbc5b22f08606701d4242ee54329d07460768004a24dc42705a84140ac6d9691afb7f09584b2e61fe3413
22 DIST upower-v0.99.17.tar.bz2 139108 BLAKE2B de48a8058752f3e2bcefe83fe049ae9181517276f6d2930c402089291d935ecbdc6f7759d811467c537801c422f5d32a02366f3e3d57bea9e73e311b13df046a SHA512 fcb2f344e82f04af85eee3a4ef42a4d119f7b55fd4e1c6bc2633845135bf524957b54c849bf6501d89cfbd285a7e1fbeecb8e846aa108e2b36d1550347150c04
23 +DIST upower-v0.99.18.tar.bz2 141140 BLAKE2B 2e6acfaf58f6e0031326c269ad58bfcdac84a25f952ef3169e6ee85889696c5c83d10aaf67b8244a2378150fd591ddbd3101d21d1e7534e5d7f2f69ee070a174 SHA512 f33a2ca35209d69fa7ddf614c6a390973c998c6473448acb00ca86114f7bfc05beb8f904010ed7b5a440209fe503e759682459893fdc9690c4b79d516e7f9de1
24
25 diff --git a/sys-power/upower/upower-0.99.18.ebuild b/sys-power/upower/upower-0.99.18.ebuild
26 new file mode 100644
27 index 000000000000..8f405f8489e8
28 --- /dev/null
29 +++ b/sys-power/upower/upower-0.99.18.ebuild
30 @@ -0,0 +1,113 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +inherit meson python-any-r1 systemd udev xdg-utils
38 +
39 +DESCRIPTION="D-Bus abstraction for enumerating power devices, querying history and statistics"
40 +HOMEPAGE="https://upower.freedesktop.org/"
41 +SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0/3" # based on SONAME of libupower-glib.so
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
46 +
47 +# gtk-doc files are not available as prebuilt in the tarball
48 +IUSE="doc +introspection ios selinux test"
49 +RESTRICT="!test? ( test )"
50 +
51 +DEPEND="
52 + >=dev-libs/glib-2.58:2
53 + sys-apps/dbus:=
54 + introspection? ( dev-libs/gobject-introspection:= )
55 + kernel_linux? (
56 + >=dev-libs/libgudev-236:=
57 + virtual/udev
58 + ios? (
59 + >=app-pda/libimobiledevice-1:=
60 + >=app-pda/libplist-2:=
61 + )
62 + )
63 +"
64 +RDEPEND="${DEPEND}
65 + selinux? ( sec-policy/selinux-devicekit )
66 +"
67 +BDEPEND="
68 + app-text/docbook-xsl-stylesheets
69 + dev-libs/libxslt
70 + dev-util/gdbus-codegen
71 + >=sys-devel/gettext-0.19.8
72 + virtual/pkgconfig
73 + doc? ( dev-util/gtk-doc )
74 + test? (
75 + $(python_gen_any_dep '
76 + dev-python/dbus-python[${PYTHON_USEDEP}]
77 + dev-python/python-dbusmock[${PYTHON_USEDEP}]
78 + ')
79 + dev-util/umockdev
80 + )
81 +"
82 +
83 +S="${WORKDIR}/${PN}-v${PV}"
84 +
85 +QA_MULTILIB_PATHS="usr/lib/${PN}/.*"
86 +
87 +python_check_deps() {
88 + python_has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]" &&
89 + python_has_version -b "dev-python/python-dbusmock[${PYTHON_USEDEP}]"
90 +}
91 +
92 +pkg_setup() {
93 + use test && python-any-r1_pkg_setup
94 +}
95 +
96 +src_prepare() {
97 + default
98 + xdg_environment_reset
99 +}
100 +
101 +src_configure() {
102 + local backend
103 +
104 + if use kernel_linux ; then
105 + backend=linux
106 + else
107 + backend=dummy
108 + fi
109 +
110 + local emesonargs=(
111 + --localstatedir "${EPREFIX}"/var
112 +
113 + -Dman=true
114 + $(meson_use doc gtk-doc)
115 + $(meson_feature introspection)
116 + -Dudevrulesdir="${EPREFIX}$(get_udevdir)/rules.d"
117 + -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)"
118 + -Dos_backend="${backend}"
119 + $(meson_feature ios idevice)
120 + )
121 + meson_src_configure
122 +}
123 +
124 +src_install() {
125 + meson_src_install
126 + keepdir /var/lib/upower #383091
127 +}
128 +
129 +pkg_postinst() {
130 + udev_reload
131 +
132 + if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 0.99.12; then
133 + elog "Support for Logitech Unifying Receiver battery state readout was"
134 + elog "removed in version 0.99.12, these devices have been directly"
135 + elog "supported by the Linux kernel since version >=3.2."
136 + elog
137 + elog "Support for CSR devices battery state was removed from udev rules"
138 + elog "in version 0.99.12. This concerns the following Logitech products"
139 + elog "from the mid 2000s:"
140 + elog "Mouse/Dual/Keyboard+Mouse Receiver, Freedom Optical, Elite Duo,"
141 + elog "MX700/MX1000, Optical TrackMan, Click! Mouse, Presenter."
142 + fi
143 +}