Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/clockspeed/
Date: Sun, 13 Sep 2020 07:11:32
Message-Id: 1599981082.1cb68c129d2f67d3529fce146d30de8972952f13.sam@gentoo
1 commit: 1cb68c129d2f67d3529fce146d30de8972952f13
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 13 07:11:22 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 13 07:11:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb68c12
7
8 net-misc/clockspeed: cleanup old EAPI 4 ebuild
9
10 Closes: https://bugs.gentoo.org/740932
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-misc/clockspeed/clockspeed-0.62-r6.ebuild | 46 ---------------------------
15 1 file changed, 46 deletions(-)
16
17 diff --git a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild b/net-misc/clockspeed/clockspeed-0.62-r6.ebuild
18 deleted file mode 100644
19 index 52a57b35b42..00000000000
20 --- a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild
21 +++ /dev/null
22 @@ -1,46 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=4
27 -
28 -inherit eutils flag-o-matic toolchain-funcs
29 -
30 -DESCRIPTION="A simple Network Time Protocol (NTP) client"
31 -HOMEPAGE="http://cr.yp.to/clockspeed.html"
32 -
33 -# this is the trailing part of the name for the latest leapseconds file.
34 -LEAPSECONDS_DATE="20081114"
35 -
36 -SRC_URI="http://cr.yp.to/clockspeed/${P}.tar.gz
37 - https://dev.gentoo.org/~pacho/maintainer-needed/leapsecs.dat."$LEAPSECONDS_DATE""
38 -
39 -LICENSE="all-rights-reserved"
40 -SLOT="0"
41 -KEYWORDS="amd64 ~mips x86"
42 -IUSE="static selinux"
43 -RESTRICT="mirror bindist test"
44 -
45 -DEPEND="sys-apps/groff"
46 -RDEPEND="selinux? ( sec-policy/selinux-clockspeed )
47 - net-dns/djbdns"
48 -
49 -src_prepare() {
50 - epatch "${FILESDIR}"/${P}-gentoo.patch
51 -}
52 -
53 -src_configure() {
54 - echo "$(tc-getCC) ${CFLAGS} ${ASFLAGS}" > conf-cc
55 - use static && append-ldflags -static
56 - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
57 -}
58 -
59 -src_install() {
60 - dobin clockspeed clockadd clockview sntpclock taiclock taiclockd
61 - dosbin "${FILESDIR}"/ntpclockset
62 -
63 - doman *.1
64 - dodoc BLURB CHANGES INSTALL README THANKS TODO
65 -
66 - insinto /var/lib/clockspeed
67 - newins "${DISTDIR}"/leapsecs.dat."$LEAPSECONDS_DATE" leapsecs.dat
68 -}