public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Krzysztof Pawlik (nelchael)" <nelchael@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: ChangeLog openntpd-3.9_p1-r4.ebuild
Date: Sat, 13 Aug 2011 15:38:32 +0000 (UTC)	[thread overview]
Message-ID: <20110813153832.3599320051@flycatcher.gentoo.org> (raw)

nelchael    11/08/13 15:38:32

  Modified:             ChangeLog
  Added:                openntpd-3.9_p1-r4.ebuild
  Log:
  Revision bump to fix bug #241002 (OpenRC related improvements) and bug #363051 (hardcoded ntp directory in init.d script).
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.52                 net-misc/openntpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	30 Jul 2011 15:49:34 -0000	1.51
+++ ChangeLog	13 Aug 2011 15:38:31 -0000	1.52
@@ -1,6 +1,16 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.51 2011/07/30 15:49:34 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.52 2011/08/13 15:38:31 nelchael Exp $
+
+*openntpd-3.9_p1-r4 (13 Aug 2011)
+
+  13 Aug 2011; Krzysztof Pawlik <nelchael@gentoo.org>
+  +files/openntpd.conf.d-3.9_p1-r4, +files/openntpd.init.d-3.9_p1-r4,
+  +openntpd-3.9_p1-r4.ebuild,
+  -files/openntpd-3.9p1_reconnect_on_sendto_EINVAL.diff,
+  -files/openntpd.conf.d, -files/openntpd.rc:
+  Revision bump to fix bug #241002 (OpenRC related improvements) and bug
+  #363051 (hardcoded ntp directory in init.d script).
 
   30 Jul 2011; Krzysztof Pawlik <nelchael@gentoo.org> metadata.xml:
   Add myself as maintainer.



1.1                  net-misc/openntpd/openntpd-3.9_p1-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild?rev=1.1&content-type=text/plain

Index: openntpd-3.9_p1-r4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild,v 1.1 2011/08/13 15:38:31 nelchael Exp $

EAPI="2"

inherit eutils autotools

MY_P=${P/_/}
DEB_VER="8"
DESCRIPTION="Lightweight NTP server ported from OpenBSD"
HOMEPAGE="http://www.openntpd.org/"
SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz
	mirror://debian/pool/main/o/openntpd/${MY_P/-/_}+debian-${DEB_VER}.debian.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="ssl selinux"

RDEPEND="ssl? ( dev-libs/openssl )
	selinux? ( sec-policy/selinux-ntp )
	!<=net-misc/ntp-4.2.0-r2
	!net-misc/ntp[-openntpd]"
DEPEND="${RDEPEND}"

S=${WORKDIR}/${MY_P}

pkg_setup() {
	enewgroup ntp 123
	enewuser ntp 123 -1 /var/lib/openntpd/chroot ntp

	# make sure user has correct HOME when flipping between
	# the standard ntp pkg and this one
	usermod -d /var/lib/openntpd/chroot ntp
}

src_prepare() {
	sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die

	epatch "${WORKDIR}"/debian/patches/*.patch
	sed -i 's:debian:gentoo:g' ntpd.conf || die
	eautoreconf # deb patchset touches .ac files and such
}

src_configure() {
	econf \
		--disable-strip \
		--with-adjtimex \
		$(use_with !ssl builtin-arc4random)
}

src_install() {
	emake install DESTDIR="${D}" || die
	dodoc ChangeLog CREDITS README

	newinitd "${FILESDIR}/openntpd.init.d-${PVR}" ntpd
	newconfd "${FILESDIR}/openntpd.conf.d-${PVR}" ntpd
}






             reply	other threads:[~2011-08-13 15:38 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-13 15:38 Krzysztof Pawlik (nelchael) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-08-25 14:38 [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: ChangeLog openntpd-3.9_p1-r4.ebuild Krzysztof Pawlik (nelchael)
2012-12-16 19:50 Agostino Sarubbo (ago)
2012-12-19 16:15 Jeroen Roovers (jer)
2012-12-23 18:10 Markus Meier (maekke)
2013-01-01 18:50 Raul Porcel (armin76)
2013-09-07 22:24 Christoph Junghans (ottxor)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110813153832.3599320051@flycatcher.gentoo.org \
    --to=nelchael@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox