Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sntpd/, net-misc/sntpd/files/
Date: Tue, 25 Aug 2020 10:36:34
Message-Id: 1598351773.366bbe685243e1053ef1226ef819c4eb5d2df132.conikost@gentoo
1 commit: 366bbe685243e1053ef1226ef819c4eb5d2df132
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 25 10:35:17 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 25 10:36:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366bbe68
7
8 net-misc/sntpd: drop old version
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-misc/sntpd/files/sntpd.initd | 13 -------------
14 net-misc/sntpd/sntpd-3.0.ebuild | 33 ---------------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/net-misc/sntpd/files/sntpd.initd b/net-misc/sntpd/files/sntpd.initd
18 deleted file mode 100644
19 index 2e4c0652c94..00000000000
20 --- a/net-misc/sntpd/files/sntpd.initd
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -#!/sbin/openrc-run
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -name="sntpd"
28 -pidfile="/run/sntpd.pid"
29 -
30 -command="/usr/sbin/sntpd"
31 -command_args="${SNTPD_OPTS}"
32 -
33 -depend() {
34 - use net dns logger
35 -}
36
37 diff --git a/net-misc/sntpd/sntpd-3.0.ebuild b/net-misc/sntpd/sntpd-3.0.ebuild
38 deleted file mode 100644
39 index 4b7079d372b..00000000000
40 --- a/net-misc/sntpd/sntpd-3.0.ebuild
41 +++ /dev/null
42 @@ -1,33 +0,0 @@
43 -# Copyright 1999-2020 Gentoo Authors
44 -# Distributed under the terms of the GNU General Public License v2
45 -
46 -EAPI=7
47 -
48 -DESCRIPTION="A NTP (RFC-1305 and RFC-4330) client and server for unix-alike systems"
49 -HOMEPAGE="https://github.com/troglobit/sntpd"
50 -SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.gz"
51 -
52 -LICENSE="GPL-2"
53 -SLOT="0"
54 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
55 -IUSE="adjtimex systemd"
56 -
57 -RDEPEND="systemd? ( sys-apps/systemd )"
58 -DEPEND="${RDEPEND}"
59 -
60 -src_configure() {
61 - local myeconfargs=(
62 - $(use_with adjtimex)
63 - $(use_with systemd systemd $(systemd_get_systemunitdir))
64 - --with-ntpclient
65 - )
66 -
67 - econf "${myeconfargs[@]}"
68 -}
69 -
70 -src_install() {
71 - default
72 -
73 - newinitd "${FILESDIR}"/sntpd.initd sntpd
74 - newconfd "${FILESDIR}"/sntpd.confd sntpd
75 -}