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 50370158086 for ; Sun, 26 Dec 2021 00:24:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEA382BC050; Sun, 26 Dec 2021 00:24:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B88FD2BC050 for ; Sun, 26 Dec 2021 00:24:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DC6FC3430AC for ; Sun, 26 Dec 2021 00:24:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 983FB1BD for ; Sun, 26 Dec 2021 00:24:53 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1640478266.1f6533fd074c3d3626b441e739ecac22353e2e1f.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/colord/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/colord/colord-1.4.5-r2.ebuild x11-misc/colord/colord-1.4.5-r3.ebuild X-VCS-Directories: x11-misc/colord/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 1f6533fd074c3d3626b441e739ecac22353e2e1f X-VCS-Branch: master Date: Sun, 26 Dec 2021 00:24:53 +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: cbb33926-959f-4a05-8df7-b9fab93265ac X-Archives-Hash: a37255c9c7a79b61480a4bd8e0a467de commit: 1f6533fd074c3d3626b441e739ecac22353e2e1f Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Dec 21 20:15:45 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Dec 26 00:24:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6533fd x11-misc/colord: use tmpfiles.eclass QA: other QA Notice: package is installing tmpfiles without inheriting tmpfiles.eclass! Packages must inherit tmpfiles.eclass then call tmpfiles_process in pkg_postinst. Signed-off-by: Georgy Yakovlev gentoo.org> x11-misc/colord/{colord-1.4.5-r2.ebuild => colord-1.4.5-r3.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11-misc/colord/colord-1.4.5-r2.ebuild b/x11-misc/colord/colord-1.4.5-r3.ebuild similarity index 96% rename from x11-misc/colord/colord-1.4.5-r2.ebuild rename to x11-misc/colord/colord-1.4.5-r3.ebuild index 2b58d928279d..33836fa71439 100644 --- a/x11-misc/colord/colord-1.4.5-r2.ebuild +++ b/x11-misc/colord/colord-1.4.5-r3.ebuild @@ -4,7 +4,7 @@ EAPI=7 VALA_USE_DEPEND="vapigen" -inherit bash-completion-r1 meson-multilib vala +inherit bash-completion-r1 meson-multilib tmpfiles vala DESCRIPTION="System service to accurately color manage input and output devices" HOMEPAGE="https://www.freedesktop.org/software/colord/" @@ -118,3 +118,7 @@ multilib_src_install_all() { dodoc examples/*.c fi } + +pkg_postinst() { + tmpfiles_process colord.conf +}