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 DD40D138359 for ; Sun, 6 Sep 2020 17:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34942E0958; Sun, 6 Sep 2020 17:35:35 +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 093D2E0959 for ; Sun, 6 Sep 2020 17:35:35 +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 3A3BD335D7C for ; Sun, 6 Sep 2020 17:35:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E121A2F2 for ; Sun, 6 Sep 2020 17:35:31 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1599413720.2af9e69f3462abfcf97679a24897b708f522059e.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/portage/portage-2.3.103-r1.ebuild sys-apps/portage/portage-2.3.99-r2.ebuild sys-apps/portage/portage-3.0.4-r1.ebuild sys-apps/portage/portage-3.0.5.ebuild sys-apps/portage/portage-9999.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2af9e69f3462abfcf97679a24897b708f522059e X-VCS-Branch: master Date: Sun, 6 Sep 2020 17:35:31 +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: 9a6c3905-f4ec-4c66-9503-ac87f9660e67 X-Archives-Hash: d8fc7339143ea54416ab0cba3b60c3ac commit: 2af9e69f3462abfcf97679a24897b708f522059e Author: Zac Medico gentoo org> AuthorDate: Sun Sep 6 17:16:26 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Sep 6 17:35:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af9e69f sys-apps/portage: Migrate to tmpfiles eclass The systemd_dotmpfilesd function is deprecated. Note that this effectively forces upgrade to >=sys-apps/openrc-0.23 for OpenRC users, since opentmpfiles blocks older versions of OpenRC (bug 643386). This should be acceptable, since the older OpenRC versions are nearly 4 years old now. Closes: https://bugs.gentoo.org/740600 Bug: https://bugs.gentoo.org/490676 Bug: https://bugs.gentoo.org/643386 Bug: https://bugs.gentoo.org/740638 Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Zac Medico gentoo.org> sys-apps/portage/portage-2.3.103-r1.ebuild | 4 ++-- sys-apps/portage/portage-2.3.99-r2.ebuild | 4 ++-- sys-apps/portage/portage-3.0.4-r1.ebuild | 4 ++-- sys-apps/portage/portage-3.0.5.ebuild | 4 ++-- sys-apps/portage/portage-9999.ebuild | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sys-apps/portage/portage-2.3.103-r1.ebuild b/sys-apps/portage/portage-2.3.103-r1.ebuild index f35ebfa2822..9645491a32c 100644 --- a/sys-apps/portage/portage-2.3.103-r1.ebuild +++ b/sys-apps/portage/portage-2.3.103-r1.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE='bzip2(+),threads(+)' -inherit distutils-r1 linux-info systemd prefix +inherit distutils-r1 linux-info tmpfiles prefix DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" @@ -213,7 +213,7 @@ python_install_all() { esetup.py "${targets[@]}" fi - systemd_dotmpfilesd "${FILESDIR}"/portage-ccache.conf + dotmpfiles "${FILESDIR}"/portage-ccache.conf # Due to distutils/python-exec limitations # these must be installed to /usr/bin. diff --git a/sys-apps/portage/portage-2.3.99-r2.ebuild b/sys-apps/portage/portage-2.3.99-r2.ebuild index 38f185f95eb..8be8d77ed5d 100644 --- a/sys-apps/portage/portage-2.3.99-r2.ebuild +++ b/sys-apps/portage/portage-2.3.99-r2.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy3 python3_6 python3_7 python3_8 ) PYTHON_REQ_USE='bzip2(+),threads(+)' -inherit distutils-r1 epatch linux-info systemd prefix +inherit distutils-r1 epatch linux-info tmpfiles prefix DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" @@ -218,7 +218,7 @@ python_install_all() { esetup.py "${targets[@]}" fi - systemd_dotmpfilesd "${FILESDIR}"/portage-ccache.conf + dotmpfiles "${FILESDIR}"/portage-ccache.conf # Due to distutils/python-exec limitations # these must be installed to /usr/bin. diff --git a/sys-apps/portage/portage-3.0.4-r1.ebuild b/sys-apps/portage/portage-3.0.4-r1.ebuild index 2cb5d1ea7a9..9d1c4aea699 100644 --- a/sys-apps/portage/portage-3.0.4-r1.ebuild +++ b/sys-apps/portage/portage-3.0.4-r1.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE='bzip2(+),threads(+)' -inherit distutils-r1 linux-info systemd prefix +inherit distutils-r1 linux-info tmpfiles prefix DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" @@ -217,7 +217,7 @@ python_install_all() { esetup.py "${targets[@]}" fi - systemd_dotmpfilesd "${FILESDIR}"/portage-ccache.conf + dotmpfiles "${FILESDIR}"/portage-ccache.conf # Due to distutils/python-exec limitations # these must be installed to /usr/bin. diff --git a/sys-apps/portage/portage-3.0.5.ebuild b/sys-apps/portage/portage-3.0.5.ebuild index 5578b8a560f..223bb29de2c 100644 --- a/sys-apps/portage/portage-3.0.5.ebuild +++ b/sys-apps/portage/portage-3.0.5.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE='bzip2(+),threads(+)' -inherit distutils-r1 linux-info systemd prefix +inherit distutils-r1 linux-info tmpfiles prefix DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" @@ -214,7 +214,7 @@ python_install_all() { esetup.py "${targets[@]}" fi - systemd_dotmpfilesd "${FILESDIR}"/portage-ccache.conf + dotmpfiles "${FILESDIR}"/portage-ccache.conf # Due to distutils/python-exec limitations # these must be installed to /usr/bin. diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild index 18b40afe288..6bd101cf192 100644 --- a/sys-apps/portage/portage-9999.ebuild +++ b/sys-apps/portage/portage-9999.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE='bzip2(+),threads(+)' -inherit distutils-r1 git-r3 linux-info systemd prefix +inherit distutils-r1 git-r3 linux-info tmpfiles prefix DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" @@ -207,7 +207,7 @@ python_install_all() { esetup.py "${targets[@]}" fi - systemd_dotmpfilesd "${FILESDIR}"/portage-ccache.conf + dotmpfiles "${FILESDIR}"/portage-ccache.conf # Due to distutils/python-exec limitations # they must be installed to /usr/bin.