Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openntpd/
Date: Thu, 22 Feb 2018 04:46:00
Message-Id: 1519274661.9fc86d04cbc2ed118323f0de9456e0bcba122b5a.junghans@gentoo
1 commit: 9fc86d04cbc2ed118323f0de9456e0bcba122b5a
2 Author: Paul B. Henson <henson <AT> acm <DOT> org>
3 AuthorDate: Thu Feb 22 04:43:32 2018 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 04:44:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc86d04
7
8 net-misc/openntpd: version bump
9
10 Closes: https://github.com/gentoo/gentoo/pull/7251
11 Closes: https://bugs.gentoo.org/show_bug.cgi?id=644892
12 Package-Manager: Portage-2.3.19, Repoman-2.3.6
13
14 net-misc/openntpd/Manifest | 2 +-
15 net-misc/openntpd/{openntpd-6.2_p1.ebuild => openntpd-6.2_p3.ebuild} | 5 ++++-
16 2 files changed, 5 insertions(+), 2 deletions(-)
17
18 diff --git a/net-misc/openntpd/Manifest b/net-misc/openntpd/Manifest
19 index 792ef593f5d..ecb8e0eb947 100644
20 --- a/net-misc/openntpd/Manifest
21 +++ b/net-misc/openntpd/Manifest
22 @@ -1,2 +1,2 @@
23 DIST openntpd-6.0p1.tar.gz 432696 BLAKE2B 331214c5a77adf99974a665a157255857b295f49409721d8530fdd2eb6c00e458a2e6395105a527a4a8603e65efb33e16f752c70222e9f7697f8c871d51cffda SHA512 a71c516dbe7596cbcb3a385112a59a82185b7e3d93a52eda695cea5a0a599ba7fbf58daa81da55d608255cb6950398123fa7d71663604a4c3bcbee949711296d
24 -DIST openntpd-6.2p1.tar.gz 437376 BLAKE2B a574740179957ff4969affdefafb3ae5e79305bf740424122714424944f4cfc1ea9e6816974cfd95a0fd7b9a1806106d1e6fbb8af9aa9e6230de39f437ba49b0 SHA512 99ad2c8e42de159b1122fe30385eff2f6311202b8526828dacd52db6ec36ce14785131b0576ac5b08d3ed9cadffc142c9146e395da29409b3227c4a77187d31e
25 +DIST openntpd-6.2p3.tar.gz 447586 BLAKE2B f81db876c01572f06b8fc24aabe8954b15287496e8c39c1ae81231ef01676fbe8c69c5cf517279e45510b6b1b5f4c5d0d09d7ce5fc220c7bf36763cf67623519 SHA512 56a04bfd8b161b365607673ac80086ff53ae943938fa49bf52edbc541432eca30730a46a4af581fe26ce3bbceb144cb25982a38959b7a3f9304c727fe60f9f50
26
27 diff --git a/net-misc/openntpd/openntpd-6.2_p1.ebuild b/net-misc/openntpd/openntpd-6.2_p3.ebuild
28 similarity index 94%
29 rename from net-misc/openntpd/openntpd-6.2_p1.ebuild
30 rename to net-misc/openntpd/openntpd-6.2_p3.ebuild
31 index ccf131fee0d..8dc5264ee15 100644
32 --- a/net-misc/openntpd/openntpd-6.2_p1.ebuild
33 +++ b/net-misc/openntpd/openntpd-6.2_p3.ebuild
34 @@ -1,4 +1,4 @@
35 -# Copyright 1999-2017 Gentoo Foundation
36 +# Copyright 1999-2018 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38
39 EAPI=6
40 @@ -56,6 +56,9 @@ src_prepare() {
41 # fix default config to use gentoo pool
42 sed -i 's:servers pool.ntp.org:#servers pool.ntp.org:' ntpd.conf || die
43 printf "\n# Choose servers announced from Gentoo NTP Pool\nservers 0.gentoo.pool.ntp.org\nservers 1.gentoo.pool.ntp.org\nservers 2.gentoo.pool.ntp.org\nservers 3.gentoo.pool.ntp.org\n" >> ntpd.conf || die
44 +
45 + # disable constraint config if libressl not enabled
46 + use libressl || sed -ie 's/^constraints/#constraints/g' ntpd.conf || die
47 }
48
49 src_configure() {