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 813DF1382C5 for ; Sun, 11 Apr 2021 01:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C59C2E0848; Sun, 11 Apr 2021 01:09:27 +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 A4D46E0848 for ; Sun, 11 Apr 2021 01:09:27 +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 31DAD33FE60 for ; Sun, 11 Apr 2021 01:09:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B22E04D2 for ; Sun, 11 Apr 2021 01:09:24 +0000 (UTC) From: "Steve Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steve Arnold" Message-ID: <1618103313.57a79f77b3ba9751622666956c52a558ec72de51.nerdboy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ntpsec/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild net-misc/ntpsec/ntpsec-1.2.0.ebuild X-VCS-Directories: net-misc/ntpsec/ X-VCS-Committer: nerdboy X-VCS-Committer-Name: Steve Arnold X-VCS-Revision: 57a79f77b3ba9751622666956c52a558ec72de51 X-VCS-Branch: master Date: Sun, 11 Apr 2021 01:09:24 +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: ec70411a-82bd-49d1-9d03-fc653e80626c X-Archives-Hash: d7a1e577a493b1f48bf190f080ee34a8 commit: 57a79f77b3ba9751622666956c52a558ec72de51 Author: Steve Arnold gentoo org> AuthorDate: Sun Apr 11 01:08:33 2021 +0000 Commit: Steve Arnold gentoo org> CommitDate: Sun Apr 11 01:08:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a79f77 net-misc/ntpsec: switch to distutils-r1, fix shebangs Should also fix bug 779880 Closes: https://bugs.gentoo.org/778011 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Steve Arnold gentoo.org> net-misc/ntpsec/{ntpsec-1.2.0.ebuild => ntpsec-1.2.0-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-misc/ntpsec/ntpsec-1.2.0.ebuild b/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild similarity index 96% rename from net-misc/ntpsec/ntpsec-1.2.0.ebuild rename to net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild index a5193f99590..640727916e0 100644 --- a/net-misc/ntpsec/ntpsec-1.2.0.ebuild +++ b/net-misc/ntpsec/ntpsec-1.2.0-r1.ebuild @@ -3,10 +3,11 @@ EAPI=6 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE='threads(+)' +DISTUTILS_USE_SETUPTOOLS=no -inherit flag-o-matic python-r1 waf-utils systemd +inherit distutils-r1 flag-o-matic waf-utils systemd if [[ ${PV} == *9999* ]]; then inherit git-r3 @@ -72,6 +73,7 @@ src_prepare() { fi # remove extra default pool servers sed -i '/use-pool/s/^/#/' "${S}"/etc/ntp.d/default.conf + python_copy_sources } @@ -122,6 +124,7 @@ src_compile() { src_install() { python_install() { waf-utils_src_install + python_fix_shebang "${ED}" } python_foreach_impl run_in_build_dir python_install python_foreach_impl python_optimize