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 7C124158099 for ; Tue, 21 Nov 2023 09:27:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F2822BC035; Tue, 21 Nov 2023 09:27:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 424A52BC032 for ; Tue, 21 Nov 2023 09:27:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03F6E335D7B for ; Tue, 21 Nov 2023 09:27:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BCF013A8 for ; Tue, 21 Nov 2023 09:27:19 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1700558647.d2e231809dee9c98c65b7662e8df42b8d2d73ec0.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ptpd/ptpd-2.3.1-r2.ebuild X-VCS-Directories: net-misc/ptpd/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d2e231809dee9c98c65b7662e8df42b8d2d73ec0 X-VCS-Branch: master Date: Tue, 21 Nov 2023 09:27:19 +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: 0370d0de-943b-4ff1-a425-d0b38b83c0bc X-Archives-Hash: 4e13b814d51b2a0b4a7630a157d0b329 commit: d2e231809dee9c98c65b7662e8df42b8d2d73ec0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Nov 1 19:19:34 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Nov 21 09:24:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e23180 net-misc/ptpd: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ulrich Müller gentoo.org> net-misc/ptpd/ptpd-2.3.1-r2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild index 96dae3022e0d..6b5600180760 100644 --- a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild +++ b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools flag-o-matic systemd DESCRIPTION="Precision Time Protocol daemon" HOMEPAGE="https://github.com/ptpd/ptpd" SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz" +S="${WORKDIR}/ptpd-${P}" KEYWORDS="~amd64 ~arm ~x86" LICENSE="BSD" @@ -25,11 +26,8 @@ PATCHES=( "${FILESDIR}"/${PN}-2.3.1-fix-snmp.patch ) -S=${WORKDIR}/ptpd-${P} - src_prepare() { default - eautoreconf } @@ -61,5 +59,5 @@ src_install() { pkg_postinst() { elog "Do not forget to setup correct network interface." - elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs." + elog "Change the config file ${EROOT}/etc/ptpd2.conf to suit your needs." }