From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-settings-daemon/
Date: Tue, 19 Mar 2024 08:23:03 +0000 (UTC) [thread overview]
Message-ID: <1710836580.4a9a0d6e61e3b9c5a0d4fb8a584e7b8ed09e41a6.juippis@gentoo> (raw)
commit: 4a9a0d6e61e3b9c5a0d4fb8a584e7b8ed09e41a6
Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Feb 11 22:14:17 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Mar 19 08:23:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a9a0d6e
mate-base/mate-settings-daemon: add 1.27.1
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mate-base/mate-settings-daemon/Manifest | 1 +
.../mate-settings-daemon-1.27.1.ebuild | 75 ++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/mate-base/mate-settings-daemon/Manifest b/mate-base/mate-settings-daemon/Manifest
index f4ddcb87056d..810982dcabe7 100644
--- a/mate-base/mate-settings-daemon/Manifest
+++ b/mate-base/mate-settings-daemon/Manifest
@@ -1,2 +1,3 @@
DIST mate-settings-daemon-1.26.1.tar.xz 1112728 BLAKE2B b711a597a923b1960a71c0d387d4221e2e5746920e85581a87799e65866f0433cb3069709d9ac6860cba389241f2503318a639f0445a5a9e5cec0d2f82ac362b SHA512 5073794620635d0dea10f89ade3a398f2fd75404fab04c2a81caf397b88ad6898742836dd56e55a33dd04853dcee5bf79e8cd9f0c2a41578e3671138d5b28748
DIST mate-settings-daemon-1.27.0.tar.xz 1106268 BLAKE2B e5fc1616a7dbcf1bb9318f66f1c1bc35371a6117d16edda149a24f85a5fd0239434ba101589c0546e4bf727be844eeec910e1743198a54a0e44c50aafbf3f94c SHA512 09438bce6dbc485d42c9f41f85f130935b9f930e003e80d355e3222b592ea57a0a72cdf985f63999f6d9abcf2446bb9bcc17c2d700f3b2a3e59b0b117a45bd07
+DIST mate-settings-daemon-1.27.1.tar.xz 1047980 BLAKE2B db89593b0d76764471a70b11b5606277be8ae67168e8b3a9276f7dd1d9f54b9748da0748773f6f0dded3c19c35b6ba6455bfe5fe8bce5878369b095809098398 SHA512 4f286c66f52d468b9beca4026daba486e259ae45a86f4292c20b11ef0ec97ecdb280c55565904c20798053a304f5acdebe79e3ca12fc30598854bfd68be6b296
diff --git a/mate-base/mate-settings-daemon/mate-settings-daemon-1.27.1.ebuild b/mate-base/mate-settings-daemon/mate-settings-daemon-1.27.1.ebuild
new file mode 100644
index 000000000000..861cc4343e61
--- /dev/null
+++ b/mate-base/mate-settings-daemon/mate-settings-daemon-1.27.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+MINOR=$(($(ver_cut 2) % 2))
+if [[ ${MINOR} -eq 0 ]]; then
+ KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+fi
+
+DESCRIPTION="MATE Settings Daemon"
+LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
+SLOT="0"
+
+IUSE="X accessibility debug libnotify policykit pulseaudio rfkill smartcard +sound"
+
+REQUIRED_USE="pulseaudio? ( sound )"
+
+COMMON_DEPEND=">=dev-util/gdbus-codegen-2.76.4
+ >=dev-libs/glib-2.50:2
+ >=gnome-base/dconf-0.13.4
+ >=mate-base/libmatekbd-1.17.0
+ >=mate-base/mate-desktop-1.25.0
+ media-libs/fontconfig:1.0
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
+ >=x11-libs/gtk+-3.22:3
+ x11-libs/libX11
+ x11-libs/libXi
+ x11-libs/libXext
+ >=x11-libs/libxklavier-5.2
+ accessibility? ( >=app-accessibility/at-spi2-core-2.36.0 )
+ libnotify? ( >=x11-libs/libnotify-0.7:0 )
+ policykit? (
+ >=sys-apps/dbus-1.10.0
+ >=sys-auth/polkit-0.97
+ )
+ pulseaudio? (
+ >=media-libs/libmatemixer-1.10[pulseaudio]
+ media-libs/libpulse
+ )
+ smartcard? ( >=dev-libs/nss-3.11.2 )
+ sound? (
+ >=media-libs/libmatemixer-1.10
+ media-libs/libcanberra[gtk3]
+ virtual/libintl
+ )
+"
+BDEPEND="
+ >=sys-devel/gettext-0.19.8
+ virtual/pkgconfig
+"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+ x11-base/xorg-proto
+"
+
+src_configure() {
+ mate_src_configure \
+ $(use_with X x) \
+ $(use_with libnotify) \
+ $(use_with sound libcanberra) \
+ $(use_with sound libmatemixer) \
+ $(use_enable debug) \
+ $(use_enable policykit polkit) \
+ $(use_enable pulseaudio pulse) \
+ $(use_enable rfkill) \
+ $(use_enable smartcard smartcard-support)
+}
next reply other threads:[~2024-03-19 8:23 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-19 8:23 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-04 18:39 [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-settings-daemon/ Andreas Sturmlechner
2024-10-06 7:17 Sam James
2024-09-17 17:50 Andreas Sturmlechner
2024-07-08 21:33 Pacho Ramos
2024-03-19 8:23 Joonas Niilola
2023-12-22 6:46 Sam James
2023-10-09 18:57 Sam James
2023-10-09 18:00 Sam James
2023-06-10 22:56 Andreas Sturmlechner
2022-12-21 10:00 Andreas Sturmlechner
2022-06-28 6:08 Sam James
2022-06-28 2:03 WANG Xuerui
2022-01-09 15:48 Andreas Sturmlechner
2021-12-10 20:10 Jakov Smolić
2021-12-10 11:35 Jakov Smolić
2021-06-30 22:43 Adam Feldman
2020-09-25 21:29 Adam Feldman
2020-09-02 6:02 Adam Feldman
2019-05-12 21:04 Göktürk Yüksek
2019-04-14 21:24 Mikle Kolyada
2019-04-14 16:24 Mikle Kolyada
2019-04-14 15:27 Mikle Kolyada
2018-10-06 20:24 Mart Raudsepp
2018-09-09 23:53 Thomas Deutschmann
2018-02-11 15:03 Ettore Di Giacinto
2018-01-14 17:18 Ettore Di Giacinto
2016-08-06 2:12 NP Hardass
2016-03-26 2:37 NP Hardass
2016-03-15 17:53 Agostino Sarubbo
2016-03-06 8:09 Mikle Kolyada
2016-01-26 20:09 NP Hardass
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1710836580.4a9a0d6e61e3b9c5a0d4fb8a584e7b8ed09e41a6.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox