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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BD6E139000 for ; Fri, 30 Jul 2021 22:55:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C708E08FF; Fri, 30 Jul 2021 22:55:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F586E08FF for ; Fri, 30 Jul 2021 22:55:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 906B8343713 for ; Fri, 30 Jul 2021 22:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6C00850 for ; Fri, 30 Jul 2021 22:55:17 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1627685709.bad74a8955e70af8219064ebf180c53d32a858d0.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/xpra/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/xpra/xpra-4.2.1.ebuild x11-wm/xpra/xpra-4.2.ebuild X-VCS-Directories: x11-wm/xpra/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bad74a8955e70af8219064ebf180c53d32a858d0 X-VCS-Branch: master Date: Fri, 30 Jul 2021 22:55:17 +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: 8846d203-cff4-4b18-862b-454f822ccfd0 X-Archives-Hash: 6553bd4b23cd895b8e2704f4959c93f7 commit: bad74a8955e70af8219064ebf180c53d32a858d0 Author: David Seifert gentoo org> AuthorDate: Fri Jul 30 22:55:09 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Jul 30 22:55:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad74a89 x11-wm/xpra: consistent tmpfiles_process arguments Closes: https://github.com/gentoo/gentoo/pull/21839 Signed-off-by: David Seifert gentoo.org> x11-wm/xpra/xpra-4.2.1.ebuild | 11 +++++------ x11-wm/xpra/xpra-4.2.ebuild | 11 +++++------ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/x11-wm/xpra/xpra-4.2.1.ebuild b/x11-wm/xpra/xpra-4.2.1.ebuild index 1f8dc0a75fa..3cf2a6ed02a 100644 --- a/x11-wm/xpra/xpra-4.2.1.ebuild +++ b/x11-wm/xpra/xpra-4.2.1.ebuild @@ -98,12 +98,6 @@ PATCHES=( "${FILESDIR}"/${PN}-4.2-suid-warning.patch ) -pkg_postinst() { - tmpfiles_process /usr/lib/tmpfiles.d/xpra.conf - - xdg_pkg_postinst -} - python_prepare_all() { hprefixify -w '/os.path/' setup.py hprefixify tmpfiles.d/xpra.conf xpra/server/server_util.py \ @@ -168,3 +162,8 @@ python_install_all() { dodir "${dir%/*}" mv -vnT "${ED}"/usr/lib/udev "${ED}${dir}" || die } + +pkg_postinst() { + tmpfiles_process xpra.conf + xdg_pkg_postinst +} diff --git a/x11-wm/xpra/xpra-4.2.ebuild b/x11-wm/xpra/xpra-4.2.ebuild index f79d0e144a0..6e18d37932b 100644 --- a/x11-wm/xpra/xpra-4.2.ebuild +++ b/x11-wm/xpra/xpra-4.2.ebuild @@ -98,12 +98,6 @@ PATCHES=( "${FILESDIR}"/${PN}-4.2-suid-warning.patch ) -pkg_postinst() { - tmpfiles_process /usr/lib/tmpfiles.d/xpra.conf - - xdg_pkg_postinst -} - python_prepare_all() { hprefixify -w '/os.path/' setup.py hprefixify tmpfiles.d/xpra.conf xpra/server/server_util.py \ @@ -168,3 +162,8 @@ python_install_all() { dodir "${dir%/*}" mv -vnT "${ED}"/usr/lib/udev "${ED}${dir}" || die } + +pkg_postinst() { + tmpfiles_process xpra.conf + xdg_pkg_postinst +}