diff options
author | bes.internal <bes.internal@gmail.com> | 2017-08-21 10:53:46 +0300 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-07 19:35:41 +0200 |
commit | 79e0608ab44d4a0329b01a912366c831078ec479 (patch) | |
tree | 1d61886152149849091e429993be5dfa01ba7490 /net-misc | |
parent | x11-misc/xdg-utils: add missing dbus-related deps. (diff) | |
download | gentoo-79e0608ab44d4a0329b01a912366c831078ec479.tar.gz gentoo-79e0608ab44d4a0329b01a912366c831078ec479.tar.bz2 gentoo-79e0608ab44d4a0329b01a912366c831078ec479.zip |
net-misc/ntpclient: version bump to 2017.217.
A new release from the fork of the original author mainline has been released
on Github.
Closes: https://github.com/gentoo/gentoo/pull/5492
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ntpclient/Manifest | 1 | ||||
-rw-r--r-- | net-misc/ntpclient/ntpclient-2017.217.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/net-misc/ntpclient/Manifest b/net-misc/ntpclient/Manifest index 316fe307ee26..fb4d38ae07dc 100644 --- a/net-misc/ntpclient/Manifest +++ b/net-misc/ntpclient/Manifest @@ -1,2 +1,3 @@ DIST ntpclient-2015.365.tar.gz 31023 SHA256 95c3646919a9a2278fa384aa8e37117b250577ff8b09b8c93ba53e04e729b54b SHA512 ca3d7b8ac6cb0626ac1017e4baee2faa833aab4fb449881e890b686f785b2fe30ded77a0a831f40126ded71abae0f2a944227d530859222eabfffe03f89d8a80 WHIRLPOOL da96a96d9af031cfc62594d94192416be01d2bdfc96b26e9bb71dbd9ab1a89a78183e5bd8c22791eac75006375542892807fb44ff6f2c9c6602a1171e1dc4590 +DIST ntpclient-2017_217.tar.xz 108136 SHA256 6e0a7f4443cd4822f39b9cc3364485feb2540cf2929133592cf4172cf079f5df SHA512 a1dc7ef7b966bd49ffc2e63e2c850ba4eef76e5a313a00642074112e13adccf80a4a9211264850dda3052c948f85040e1a668846ddd0be9310c701df40282be0 WHIRLPOOL fc27cfd22fc4b686dc6396c50645e2228f2a32d4e701834a896abaf411ba7a6b1c7a6ac02da99f28e771d12663ddda713a5cb86704c2f9ee67a45e6460ec4bc3 DIST ntpclient_2010_365.tar.gz 30423 SHA256 9ad9b028385082fb804167f464e2db0a0b3d33780acd399327e64898b8fcfddd SHA512 74fd5e80dcf36c4e7aca6d97c5979b0dc4c51fed592279adfd04c0d329c117bfed819ee40d6400436c0d066f73ed3403e9fba8cb05846df55c991422ce434132 WHIRLPOOL 0eb27687cb9f90317e126be3830a9c812af216dd4be60a9d11bfcfcbf4fb16572de1bbbcf0207b47290e452172126bd2be38ab7ee49e097890bdcea6a63b259b diff --git a/net-misc/ntpclient/ntpclient-2017.217.ebuild b/net-misc/ntpclient/ntpclient-2017.217.ebuild new file mode 100644 index 000000000000..1b87f1f32d22 --- /dev/null +++ b/net-misc/ntpclient/ntpclient-2017.217.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="A NTP (RFC-1305) client for unix-alike computers" +HOMEPAGE="https://github.com/troglobit/ntpclient" +SRC_URI="https://github.com/troglobit/ntpclient/releases/download/2017_217/ntpclient-2017_217.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +src_unpack() { + default + mv "${WORKDIR}"/${PN}* ${P} || die +} + +src_install() { + dobin "src/${PN}" + dodoc README.md + dodoc "doc/HOWTO.md" "doc/rate.awk" "doc/rate2.awk" +} |