Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rdate/
Date: Sat, 27 Jun 2020 23:13:34
Message-Id: 1593299601.be74e137ab03a494b7de76d9f7e1e3e182a1e7d5.dilfridge@gentoo
1 commit: be74e137ab03a494b7de76d9f7e1e3e182a1e7d5
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 27 23:12:47 2020 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 23:13:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be74e137
7
8 net-misc/rdate: Version bump
9
10 Bug: https://bugs.gentoo.org/709416
11 Package-Manager: Portage-2.3.87, Repoman-2.3.20
12 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
13
14 net-misc/rdate/Manifest | 1 +
15 net-misc/rdate/rdate-1.10.ebuild | 33 +++++++++++++++++++++++++++++++++
16 2 files changed, 34 insertions(+)
17
18 diff --git a/net-misc/rdate/Manifest b/net-misc/rdate/Manifest
19 index 44b2fcc82ba..412fbf81d9c 100644
20 --- a/net-misc/rdate/Manifest
21 +++ b/net-misc/rdate/Manifest
22 @@ -1 +1,2 @@
23 +DIST rdate-1.10.tar.gz 19159 BLAKE2B 71c858b5eb10b07a2974fcb463a91808fc59582dfce786dc936370b3fc2122bfe72cc32cb3635a1e77ec663fd44712852ab85d8ba46702d1e222ec63ad46f3bb SHA512 7a7647102b5663218fff6c1364b83250a199a0169adf40db87a49709aa24c3b1fae5acf01732d5432fcb2883d29a24b2ae38cf5333ff75075e5d7a6fd90e7146
24 DIST rdate-1.4.tar.gz 11500 BLAKE2B 705324648f30685135d3ba3936b05a82bc6a027d3d1c407950cb7631858f6d9dba34f97f065482988caf4a68addc3ba122fe475cfd1684c526f5224113657ac3 SHA512 ea9d62af3aa58fb7bb2bdce257cc23758f103ac056e4d6a8b44be0e41c44dff49e78bdb03789e3bf2957e74997c2f1c0376fdc659b4f39d89e43ef139a51f996
25
26 diff --git a/net-misc/rdate/rdate-1.10.ebuild b/net-misc/rdate/rdate-1.10.ebuild
27 new file mode 100644
28 index 00000000000..56ca14a4561
29 --- /dev/null
30 +++ b/net-misc/rdate/rdate-1.10.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools
38 +
39 +MY_P=openrdate
40 +
41 +DESCRIPTION="Use TCP or UDP to retrieve the current time of another machine"
42 +HOMEPAGE="https://github.com/resurrecting-open-source-projects/openrdate"
43 +SRC_URI="https://github.com/resurrecting-open-source-projects/${MY_P}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD-4"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
48 +IUSE=""
49 +
50 +DEPEND="dev-libs/libbsd"
51 +RDEPEND=${DEPEND}
52 +
53 +S=${WORKDIR}/${MY_P}-${PV}
54 +
55 +src_prepare() {
56 + default
57 + eautoreconf
58 +}
59 +
60 +src_install() {
61 + default
62 + newinitd "${FILESDIR}"/rdate-initd-1.4-r3 rdate
63 + newconfd "${FILESDIR}"/rdate-confd rdate
64 +}