From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1205576-garchives=archives.gentoo.org@lists.gentoo.org> 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 7AA82138359 for <garchives@archives.gentoo.org>; Sun, 13 Sep 2020 07:11:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7622E0826; Sun, 13 Sep 2020 07:11:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 8F152E0826 for <gentoo-commits@lists.gentoo.org>; Sun, 13 Sep 2020 07:11:31 +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 63D78340CB8 for <gentoo-commits@lists.gentoo.org>; Sun, 13 Sep 2020 07:11:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6BCD33F for <gentoo-commits@lists.gentoo.org>; Sun, 13 Sep 2020 07:11:28 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1599981082.1cb68c129d2f67d3529fce146d30de8972952f13.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/clockspeed/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/clockspeed/clockspeed-0.62-r6.ebuild X-VCS-Directories: net-misc/clockspeed/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1cb68c129d2f67d3529fce146d30de8972952f13 X-VCS-Branch: master Date: Sun, 13 Sep 2020 07:11:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 12122b75-a0c8-4ee1-a6d3-23a5b25ea6d8 X-Archives-Hash: c050e6124d2bfaacb17bffbd6f50fc16 commit: 1cb68c129d2f67d3529fce146d30de8972952f13 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Sep 13 07:11:22 2020 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Sep 13 07:11:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb68c12 net-misc/clockspeed: cleanup old EAPI 4 ebuild Closes: https://bugs.gentoo.org/740932 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James <sam <AT> gentoo.org> net-misc/clockspeed/clockspeed-0.62-r6.ebuild | 46 --------------------------- 1 file changed, 46 deletions(-) diff --git a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild b/net-misc/clockspeed/clockspeed-0.62-r6.ebuild deleted file mode 100644 index 52a57b35b42..00000000000 --- a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="A simple Network Time Protocol (NTP) client" -HOMEPAGE="http://cr.yp.to/clockspeed.html" - -# this is the trailing part of the name for the latest leapseconds file. -LEAPSECONDS_DATE="20081114" - -SRC_URI="http://cr.yp.to/clockspeed/${P}.tar.gz - https://dev.gentoo.org/~pacho/maintainer-needed/leapsecs.dat."$LEAPSECONDS_DATE"" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="amd64 ~mips x86" -IUSE="static selinux" -RESTRICT="mirror bindist test" - -DEPEND="sys-apps/groff" -RDEPEND="selinux? ( sec-policy/selinux-clockspeed ) - net-dns/djbdns" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.patch -} - -src_configure() { - echo "$(tc-getCC) ${CFLAGS} ${ASFLAGS}" > conf-cc - use static && append-ldflags -static - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld -} - -src_install() { - dobin clockspeed clockadd clockview sntpclock taiclock taiclockd - dosbin "${FILESDIR}"/ntpclockset - - doman *.1 - dodoc BLURB CHANGES INSTALL README THANKS TODO - - insinto /var/lib/clockspeed - newins "${DISTDIR}"/leapsecs.dat."$LEAPSECONDS_DATE" leapsecs.dat -}