From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1500224-garchives=archives.gentoo.org@lists.gentoo.org> 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 62C3D15864F for <garchives@archives.gentoo.org>; Sat, 25 Mar 2023 03:37:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0603E07AE; Sat, 25 Mar 2023 03:37:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 79EB4E07AE for <gentoo-commits@lists.gentoo.org>; Sat, 25 Mar 2023 03:37:13 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CA2834103C for <gentoo-commits@lists.gentoo.org>; Sat, 25 Mar 2023 03:37:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B97F17 for <gentoo-commits@lists.gentoo.org>; Sat, 25 Mar 2023 03:37:11 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1679715397.ee5bc024800ba1423a4e0332a9c0aae987879894.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udisks/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udisks/udisks-2.9.4-r1.ebuild X-VCS-Directories: sys-fs/udisks/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ee5bc024800ba1423a4e0332a9c0aae987879894 X-VCS-Branch: master Date: Sat, 25 Mar 2023 03:37:11 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d95afce4-f71a-4dd2-ac81-485b83f5a096 X-Archives-Hash: 443350da6b12114f5e6c7252b4b5575e commit: ee5bc024800ba1423a4e0332a9c0aae987879894 Author: Bart Oldeman <bart.oldeman <AT> calculquebec <DOT> ca> AuthorDate: Wed Mar 22 11:50:12 2023 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sat Mar 25 03:36:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee5bc024 sys-fs/udisks: Fix install in prefix configure needs ``` --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d --with-udevdir="$EPREFIX$(get_udevdir)" ``` or else we get ``` * QA Notice: the following files are outside of the prefix: * /lib * /lib/udev * /lib/udev/rules.d * /lib/udev/rules.d/80-udisks2.rules * /usr * /usr/lib * /usr/lib/tmpfiles.d * /usr/lib/tmpfiles.d/udisks2.conf * ERROR: sys-fs/udisks-2.9.4-r1::gentoo failed: * Aborting due to QA concerns: there are files installed outside the prefix ``` Signed-off-by: Bart Oldeman <bart.oldeman <AT> calculquebec.ca> Closes: https://github.com/gentoo/gentoo/pull/30299 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> sys-fs/udisks/udisks-2.9.4-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-fs/udisks/udisks-2.9.4-r1.ebuild b/sys-fs/udisks/udisks-2.9.4-r1.ebuild index 76a1cf24989a..2d8d5e0ce7dc 100644 --- a/sys-fs/udisks/udisks-2.9.4-r1.ebuild +++ b/sys-fs/udisks/udisks-2.9.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -97,8 +97,8 @@ src_configure() { --with-html-dir="${EPREFIX}"/usr/share/gtk-doc/html --with-modprobedir="${EPREFIX}"/lib/modprobe.d --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" - --with-tmpfilesdir="/usr/lib/tmpfiles.d" - --with-udevdir="$(get_udevdir)" + --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d + --with-udevdir="${EPREFIX}$(get_udevdir)" $(use_enable acl) $(use_enable daemon) $(use_enable debug)