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 C758E15800F for ; Sat, 21 Jan 2023 06:10:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 042F4E0828; Sat, 21 Jan 2023 06:10:07 +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 CF3E0E0828 for ; Sat, 21 Jan 2023 06:10:06 +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 D0186340C7F for ; Sat, 21 Jan 2023 06:10:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 507777FC for ; Sat, 21 Jan 2023 06:10:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1674281394.eca068b0dfe29c06a40d38846884cbdd3ba25663.sam@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-r1.ebuild X-VCS-Directories: net-misc/ptpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eca068b0dfe29c06a40d38846884cbdd3ba25663 X-VCS-Branch: master Date: Sat, 21 Jan 2023 06:10:03 +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: e6c5b67f-90f4-4487-924b-5c01c42ee332 X-Archives-Hash: 433dc7ac44c1e32ff8b99cedb398c5ab commit: eca068b0dfe29c06a40d38846884cbdd3ba25663 Author: Sam James gentoo org> AuthorDate: Sat Jan 21 05:54:58 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 21 06:09:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca068b0 net-misc/ptpd: drop 2.3.1-r1 Signed-off-by: Sam James gentoo.org> net-misc/ptpd/ptpd-2.3.1-r1.ebuild | 59 -------------------------------------- 1 file changed, 59 deletions(-) diff --git a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild deleted file mode 100644 index 9c358e02c8f6..000000000000 --- a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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" -KEYWORDS="~amd64 ~arm ~x86" - -LICENSE="BSD" -SLOT="0" -IUSE="debug experimental ntp +pcap snmp slave-only +statistics" -RDEPEND=" - pcap? ( net-libs/libpcap ) - snmp? ( net-analyzer/net-snmp )" -DEPEND="${RDEPEND}" -RDEPEND="${RDEPEND} - ntp? ( net-misc/ntp )" - -S=${WORKDIR}/ptpd-${P} - -src_prepare() { - eapply_user - sed -i -e 's/U64/struct counter64/' src/dep/snmp.c || die "sed failed" - eautoreconf -} - -src_configure() { - append-flags -fno-strict-aliasing - econf \ - --enable-daemon \ - $(use_enable snmp) \ - $(use_enable experimental experimental-options) \ - $(use_enable statistics) \ - $(use_enable debug runtime-debug) \ - $(use_enable pcap) \ - $(use_enable slave-only) -} - -src_install() { - emake install DESTDIR="${D}" - - insinto /etc - newins "src/ptpd2.conf.minimal" ptpd2.conf - - newinitd "${FILESDIR}/ptpd2.rc" ptpd2 - newconfd "${FILESDIR}/ptpd2.confd" ptpd2 - - systemd_dounit "${FILESDIR}/ptpd2.service" -} - -pkg_postinst() { - elog "Do not forget to setup correct network interface." - elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs." -}