From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/razercfg/
Date: Sat, 15 Feb 2025 18:49:27 +0000 (UTC) [thread overview]
Message-ID: <1739645331.ace3dbbfdaafbf53d7e5c0e838f9b19c6d13e4af.arthurzam@gentoo> (raw)
commit: ace3dbbfdaafbf53d7e5c0e838f9b19c6d13e4af
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 15 18:48:51 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 15 18:48:51 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace3dbbf
sys-apps/razercfg: add 0.43, enable py3.1{1,2,3}, cleanup
Closes: https://bugs.gentoo.org/847499
Closes: https://bugs.gentoo.org/897262
Closes: https://bugs.gentoo.org/929820
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-apps/razercfg/Manifest | 1 +
sys-apps/razercfg/razercfg-0.43.ebuild | 93 ++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+)
diff --git a/sys-apps/razercfg/Manifest b/sys-apps/razercfg/Manifest
index 5699716bb14e..ae921fc5375c 100644
--- a/sys-apps/razercfg/Manifest
+++ b/sys-apps/razercfg/Manifest
@@ -1 +1,2 @@
DIST razercfg-0.42.tar.xz 103300 BLAKE2B 83f9432edf4deda78514dd1e2a65e04981d3646c543ebf3b74060f5d6ee5f9c3ddec5b0c544c11c9968c790172ae2bd4d4503adaf1428ca31337fdcd33d8545c SHA512 3856f4133b620fb639a46a5bb02fe8e6c47ae3928a04fe9d1bbef2792a44fdd4f5dff2efa43a1e43d75312025d3c65c626e331e723092e4e0b8d6622657fb197
+DIST razercfg-0.43.tar.xz 99096 BLAKE2B d51b175cd4efbe377322d0a4f31fdd992c1d23bd647d17746c620892d4dab7917969df98eca2f35856fbb58dc3e139526e8381cbc52200d10de8803b354e7ab0 SHA512 0d852c86846f14a5da64350e8c0de5288fc9ad6dbbaf4e35b8aea4c9e11eb43269240bc13deac3a49940557846c0e6d73ebefbc26dddc11a47bcc12a3691aca7
diff --git a/sys-apps/razercfg/razercfg-0.43.ebuild b/sys-apps/razercfg/razercfg-0.43.ebuild
new file mode 100644
index 000000000000..d541939ffcdc
--- /dev/null
+++ b/sys-apps/razercfg/razercfg-0.43.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit cmake python-single-r1 systemd tmpfiles udev xdg
+
+DESCRIPTION="Utility for advanced configuration of Razer mice"
+HOMEPAGE="https://bues.ch/cms/hacking/razercfg.html https://github.com/mbuesch/razer"
+SRC_URI="https://bues.ch/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gui"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+ virtual/libusb:1
+"
+RDEPEND="${DEPEND}
+ virtual/udev
+ gui? (
+ $(python_gen_cond_dep '
+ dev-python/pyqt5[${PYTHON_USEDEP}]
+ ')
+ )
+"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Don't clobber toolchain defaults
+ sed -i -e '/-D_FORTIFY_SOURCE=2/d' scripts/cmake.global || die
+
+ sed -i CMakeLists.txt \
+ -e "s@/etc/udev/rules.d@$(get_udevdir)@" \
+ -e "s@/usr/lib/systemd/system@$(systemd_get_systemunitdir)@" || die
+
+ sed -i librazer/CMakeLists.txt \
+ -e '/ldconfig/{N;d}' \
+ -e "s:DESTINATION lib:DESTINATION $(get_libdir):" \
+ || die
+
+ sed -i ui/razercfg.desktop.template \
+ -e '/^Categories=/s/=.*$/=Qt;Settings/' \
+ || die
+
+ export RAZERCFG_PKG_BUILD=1
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DPYTHON="${PYTHON}"
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+
+ python_optimize
+
+ newinitd "${FILESDIR}"/razerd.init.d-r2 razerd
+ dodoc README.* HACKING.* razer.conf
+
+ if ! use gui; then
+ rm "${D}"/usr/bin/qrazercfg{,-applet} || die
+ rm -r "${D}"/usr/share/{applications,icons} || die
+ fi
+
+ # sys-power/pm-utils is deprecated, so we delete related files
+ # (they contain a hook for resume from suspend)
+ # TODO: test resume from suspend
+ rm -r "${D}/etc/pm" || die
+}
+
+pkg_postinst() {
+ udevadm control --reload-rules
+ udevadm trigger --subsystem-match=usb
+
+ xdg_pkg_postinst
+
+ tmpfiles_process razerd.conf
+
+ if [[ -e "${ROOT}/usr/bin/pyrazer.pyc" ]]; then
+ eerror "A stale ${ROOT}/usr/bin/pyrazer.pyc exists and will prevent"
+ eerror "the Python frontends from working until removed manually."
+ fi
+}
next reply other threads:[~2025-02-15 18:49 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-15 18:49 Arthur Zamarin [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-14 9:00 [gentoo-commits] repo/gentoo:master commit in: sys-apps/razercfg/ Arthur Zamarin
2023-10-04 19:37 Sam James
2023-05-04 4:18 Viorel Munteanu
2022-05-26 1:14 Sam James
2021-09-03 1:53 Sam James
2021-05-23 16:34 Michał Górny
2021-01-01 1:56 Michał Górny
2020-07-24 8:28 Joonas Niilola
2020-07-24 8:28 Joonas Niilola
2020-07-24 8:28 Joonas Niilola
2020-02-09 16:42 Michał Górny
2018-03-22 14:57 Andreas Sturmlechner
2017-10-16 3:34 David Seifert
2017-05-06 20:25 Michael Orlitzky
2017-05-06 20:25 Michael Orlitzky
2017-04-20 16:41 David Seifert
2017-03-24 15:14 Wolfram Schlich
2016-07-07 19:48 Austin English
2016-06-11 20:39 Pacho Ramos
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=1739645331.ace3dbbfdaafbf53d7e5c0e838f9b19c6d13e4af.arthurzam@gentoo \
--to=arthurzam@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