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 62EA01382C5 for ; Fri, 2 Apr 2021 07:25:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A75AE092F; Fri, 2 Apr 2021 07:25:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2F584E0934 for ; Fri, 2 Apr 2021 07:25:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 F300633BE33 for ; Fri, 2 Apr 2021 07:25:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53B77636 for ; Fri, 2 Apr 2021 07:25:13 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1617348037.6c71f0cce20b1ba654b8ab81515231ce5796b24d.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/kpathsea/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild X-VCS-Directories: dev-libs/kpathsea/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 6c71f0cce20b1ba654b8ab81515231ce5796b24d X-VCS-Branch: master Date: Fri, 2 Apr 2021 07:25:13 +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: 8234ae60-f912-4f4d-a742-9d9d3ee2591d X-Archives-Hash: 7fb677cc63ca5eddb5dd9e56d43cfbdb commit: 6c71f0cce20b1ba654b8ab81515231ce5796b24d Author: Mikle Kolyada gentoo org> AuthorDate: Fri Apr 2 07:19:48 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Apr 2 07:20:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c71f0cc dev-libs/kpathsea: Use tmpfiles for runtime dirs Closes: https://bugs.gentoo.org/605364 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild b/dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild index e2fd405ab8c..365d871b16e 100644 --- a/dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild +++ b/dev-libs/kpathsea/kpathsea-6.3.2_p20200406.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit texlive-common libtool prefix +inherit texlive-common libtool prefix tmpfiles TEXMFD_VERSION="10" @@ -68,8 +68,7 @@ src_install() { # The default configuration expects it to be world writable, bug #266680 # People can still change it with texconfig though. - dodir /var/cache/fonts - fperms 1777 /var/cache/fonts + dotmpfiles "${FILESDIR}"/kpathsea.conf # Take care of fmtutil.cnf and texmf.cnf dodir /etc/texmf/{fmtutil.d,texmf.d} @@ -98,6 +97,8 @@ src_install() { } pkg_postinst() { + tmpfiles_process "${FILESDIR}"/kpathsea.conf + etexmf-update }