From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 704DD158083 for ; Mon, 23 Sep 2024 06:49:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AA2BE2ADC; Mon, 23 Sep 2024 06:49:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64E7EE2ADA for ; Mon, 23 Sep 2024 06:49:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69306343473 for ; Mon, 23 Sep 2024 06:49:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCD9197F for ; Mon, 23 Sep 2024 06:49:24 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1727074046.0acccf502267e74b578035511adaf2d53e1eaf67.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/autorandr/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/autorandr/autorandr-1.15-r1.ebuild x11-misc/autorandr/autorandr-9999.ebuild X-VCS-Directories: x11-misc/autorandr/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 0acccf502267e74b578035511adaf2d53e1eaf67 X-VCS-Branch: master Date: Mon, 23 Sep 2024 06:49:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d479a928-02f8-41a3-9113-e990cc5f35b3 X-Archives-Hash: 00f1c28330335ee16c3ef2e73cede553 commit: 0acccf502267e74b578035511adaf2d53e1eaf67 Author: Florian Schmaus gentoo org> AuthorDate: Mon Sep 23 06:42:56 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Sep 23 06:47:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0acccf50 x11-misc/autorandr: fix non-systemd udev rule, enable python 3.13 Thanks to wolfwood for digging into the root cause and suggesting the used fix. Closes: https://bugs.gentoo.org/912692 Signed-off-by: Florian Schmaus gentoo.org> .../autorandr/{autorandr-9999.ebuild => autorandr-1.15-r1.ebuild} | 4 ++-- x11-misc/autorandr/autorandr-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-misc/autorandr/autorandr-9999.ebuild b/x11-misc/autorandr/autorandr-1.15-r1.ebuild similarity index 92% copy from x11-misc/autorandr/autorandr-9999.ebuild copy to x11-misc/autorandr/autorandr-1.15-r1.ebuild index 0011c189d5ca..73aa409173d5 100644 --- a/x11-misc/autorandr/autorandr-9999.ebuild +++ b/x11-misc/autorandr/autorandr-1.15-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit bash-completion-r1 distutils-r1 systemd udev @@ -58,7 +58,7 @@ src_install() { emake DESTDIR="${D}" \ BASH_COMPLETIONS_DIR="$(get_bashcompdir)" \ - SYSTEMD_UNIT_DIR="$(systemd_get_systemunitdir)" \ + SYSTEMD_UNIT_DIR=$(usex systemd "$(systemd_get_systemunitdir)" "") \ UDEV_RULES_DIR="$(get_udevdir)"/rules.d \ $(printf "install_%s " "${targets[@]}") } diff --git a/x11-misc/autorandr/autorandr-9999.ebuild b/x11-misc/autorandr/autorandr-9999.ebuild index 0011c189d5ca..73aa409173d5 100644 --- a/x11-misc/autorandr/autorandr-9999.ebuild +++ b/x11-misc/autorandr/autorandr-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit bash-completion-r1 distutils-r1 systemd udev @@ -58,7 +58,7 @@ src_install() { emake DESTDIR="${D}" \ BASH_COMPLETIONS_DIR="$(get_bashcompdir)" \ - SYSTEMD_UNIT_DIR="$(systemd_get_systemunitdir)" \ + SYSTEMD_UNIT_DIR=$(usex systemd "$(systemd_get_systemunitdir)" "") \ UDEV_RULES_DIR="$(get_udevdir)"/rules.d \ $(printf "install_%s " "${targets[@]}") }