public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-04-16 19:49 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Junghans (ottxor) @ 2014-04-16 19:49 UTC (permalink / raw
  To: gentoo-commits

ottxor      14/04/16 19:49:02

  Modified:             ChangeLog
  Added:                openntpd-20080406-r8.ebuild
  Log:
  fixed setup of localtime in chroot (bug #506970)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C2000586)

Revision  Changes    Path
1.112                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog	6 Apr 2014 14:50:23 -0000	1.111
+++ ChangeLog	16 Apr 2014 19:49:02 -0000	1.112
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.111 2014/04/06 14:50:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.112 2014/04/16 19:49:02 ottxor Exp $
+
+*openntpd-20080406-r8 (16 Apr 2014)
+
+  16 Apr 2014; Christoph Junghans <ottxor@gentoo.org>
+  +openntpd-20080406-r8.ebuild:
+  fixed setup of localtime in chroot (bug #506970)
 
   06 Apr 2014; Mike Frysinger <vapier@gentoo.org> openntpd-20080406-r7.ebuild:
   Mark arm64/s390/sh stable.



1.1                  net-misc/openntpd/openntpd-20080406-r8.ebuild

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

Index: openntpd-20080406-r8.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.1 2014/04/16 19:49:02 ottxor Exp $

EAPI=5

inherit autotools eutils toolchain-funcs systemd user

MY_P="${P/-/_}p"
DEB_VER="6"
DESCRIPTION="Lightweight NTP server ported from OpenBSD"
HOMEPAGE="http://www.openntpd.org/"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}.orig.tar.gz
	mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}-${DEB_VER}.debian.tar.gz"

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~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}
	virtual/yacc"

S="${WORKDIR}/${MY_P/_/-}"

pkg_setup() {
	export NTP_HOME="${NTP_HOME:=/var/lib/openntpd/chroot}"
	enewgroup ntp
	enewuser ntp -1 -1 "${NTP_HOME}" ntp

	# make sure user has correct HOME as flipng between
	# the standard ntp pkg and this one was possible in
	# the past
	if [[ $(egethome ntp) != ${NTP_HOME} ]]; then
		ewarn "From this version on, the homedir of the ntp user cannot be changed"
		ewarn "dynamically after the installation. For homedir different from"
		ewarn "/var/lib/openntpd/chroot set NTP_HOME in your make.conf and re-emerge."
		esethome ntp "${NTP_HOME}"
	fi
}

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

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

src_configure() {
	econf \
		--disable-strip \
		$(use_with !ssl builtin-arc4random) \
		AR="$(type -p $(tc-getAR))"
}

src_install() {
	default
	rmdir "${ED}"/{var/empty,var}

	newinitd "${FILESDIR}/${PN}.init.d-${PV}-r6" ntpd
	newconfd "${FILESDIR}/${PN}.conf.d-${PV}-r6" ntpd

	systemd_newunit "${FILESDIR}/${PN}.service-${PV}-r3" ntpd.service
}

pkg_config() {
	einfo "Setting up chroot for ntp in ${NTP_HOME}"
	# remove localtime file from previous installations
	rm -f "${EROOT%/}${NTP_HOME}"/etc/localtime
	mkdir -p "${EROOT%/}${NTP_HOME}"/etc
	if ! ln "${EROOT%/}"/etc/localtime "${EROOT%/}${NTP_HOME}"/etc/localtime ; then
		cp "${EROOT%/}"/etc/localtime "${EROOT%/}${NTP_HOME}"/etc/localtime || die
		einfo "We could not create a hardlink from /etc/localtime to ${NTP_HOME}/etc/localtime,"
		einfo "so please run 'emerge --config =${CATEGORY}/${PF}' whenever you changed"
		einfo "your timezone."
	fi
	chown -R root:root "${EROOT%/}${NTP_HOME}" || die
}

pkg_postinst() {
	pkg_config

	[[ -f ${EROOT}var/log/ntpd.log ]] && \
		ewarn "There is an orphaned logfile '${EROOT}var/log/ntpd.log', please remove it!"

	# bug #226491, remove <=openntpd-20080406-r7 trash
	rm -f "${EROOT%/}${NTP_HOME}"etc/localtime
	rmdir "${EROOT%/}${NTP_HOME}"etc
}

pkg_postrm() {
	# remove localtime file from previous installations
	rm -f "${EROOT%/}${NTP_HOME}"/etc/localtime
}





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-04-29 20:39 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2014-04-29 20:39 UTC (permalink / raw
  To: gentoo-commits

jer         14/04/29 20:39:31

  Modified:             openntpd-20080406-r8.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #507846).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-misc/openntpd/openntpd-20080406-r8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?r1=1.1&r2=1.2

Index: openntpd-20080406-r8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openntpd-20080406-r8.ebuild	16 Apr 2014 19:49:02 -0000	1.1
+++ openntpd-20080406-r8.ebuild	29 Apr 2014 20:39:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.1 2014/04/16 19:49:02 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.2 2014/04/29 20:39:31 jer Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="ssl selinux"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.113                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	16 Apr 2014 19:49:02 -0000	1.112
+++ ChangeLog	29 Apr 2014 20:39:31 -0000	1.113
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.112 2014/04/16 19:49:02 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.113 2014/04/29 20:39:31 jer Exp $
+
+  29 Apr 2014; Jeroen Roovers <jer@gentoo.org> openntpd-20080406-r8.ebuild:
+  Stable for HPPA (bug #507846).
 
 *openntpd-20080406-r8 (16 Apr 2014)
 





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-06-22 14:21 Akinori Hattori (hattya)
  0 siblings, 0 replies; 6+ messages in thread
From: Akinori Hattori (hattya) @ 2014-06-22 14:21 UTC (permalink / raw
  To: gentoo-commits

hattya      14/06/22 14:21:17

  Modified:             openntpd-20080406-r8.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #507846
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.5                  net-misc/openntpd/openntpd-20080406-r8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?r1=1.4&r2=1.5

Index: openntpd-20080406-r8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openntpd-20080406-r8.ebuild	9 Jun 2014 10:43:05 -0000	1.4
+++ openntpd-20080406-r8.ebuild	22 Jun 2014 14:21:17 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.4 2014/06/09 10:43:05 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.5 2014/06/22 14:21:17 hattya Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="ssl selinux"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.116                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	9 Jun 2014 10:43:05 -0000	1.115
+++ ChangeLog	22 Jun 2014 14:21:17 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.115 2014/06/09 10:43:05 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.116 2014/06/22 14:21:17 hattya Exp $
+
+  22 Jun 2014; Akinori Hattori <hattya@gentoo.org> openntpd-20080406-r8.ebuild:
+  ia64 stable wrt bug #507846
 
   09 Jun 2014; Chema Alonso <nimiux@gentoo.org> openntpd-20080406-r8.ebuild:
   Stable for amd64 wrt bug #507846





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-07-13 10:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-13 10:00 UTC (permalink / raw
  To: gentoo-commits

ago         14/07/13 10:00:31

  Modified:             openntpd-20080406-r8.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #507846
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-misc/openntpd/openntpd-20080406-r8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?r1=1.6&r2=1.7

Index: openntpd-20080406-r8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openntpd-20080406-r8.ebuild	23 Jun 2014 11:00:41 -0000	1.6
+++ openntpd-20080406-r8.ebuild	13 Jul 2014 10:00:31 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.6 2014/06/23 11:00:41 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.7 2014/07/13 10:00:31 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="ssl selinux"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.118                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	23 Jun 2014 11:00:41 -0000	1.117
+++ ChangeLog	13 Jul 2014 10:00:31 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.117 2014/06/23 11:00:41 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.118 2014/07/13 10:00:31 ago Exp $
+
+  13 Jul 2014; Agostino Sarubbo <ago@gentoo.org> openntpd-20080406-r8.ebuild:
+  Stable for ppc, wrt bug #507846
 
   23 Jun 2014; Sergey Popov <pinkbyte@gentoo.org> openntpd-20080406-r8.ebuild:
   Stable on x86, wrt bug #507846





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-07-20  9:06 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-07-20  9:06 UTC (permalink / raw
  To: gentoo-commits

klausman    14/07/20 09:06:12

  Modified:             openntpd-20080406-r8.ebuild ChangeLog
  Log:
  Stable on alpha, bug #507846
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.8                  net-misc/openntpd/openntpd-20080406-r8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?r1=1.7&r2=1.8

Index: openntpd-20080406-r8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openntpd-20080406-r8.ebuild	13 Jul 2014 10:00:31 -0000	1.7
+++ openntpd-20080406-r8.ebuild	20 Jul 2014 09:06:12 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.7 2014/07/13 10:00:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.8 2014/07/20 09:06:12 klausman Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="ssl selinux"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.119                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	13 Jul 2014 10:00:31 -0000	1.118
+++ ChangeLog	20 Jul 2014 09:06:12 -0000	1.119
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.118 2014/07/13 10:00:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.119 2014/07/20 09:06:12 klausman Exp $
+
+  20 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
+  openntpd-20080406-r8.ebuild:
+  Stable on alpha, bug #507846
 
   13 Jul 2014; Agostino Sarubbo <ago@gentoo.org> openntpd-20080406-r8.ebuild:
   Stable for ppc, wrt bug #507846





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog
@ 2014-08-02 18:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-02 18:09 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/02 18:09:25

  Modified:             openntpd-20080406-r8.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #507846
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 net-misc/openntpd/openntpd-20080406-r8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild?r1=1.9&r2=1.10

Index: openntpd-20080406-r8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- openntpd-20080406-r8.ebuild	1 Aug 2014 11:27:43 -0000	1.9
+++ openntpd-20080406-r8.ebuild	2 Aug 2014 18:09:25 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.9 2014/08/01 11:27:43 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-20080406-r8.ebuild,v 1.10 2014/08/02 18:09:25 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
 IUSE="ssl selinux"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.121                net-misc/openntpd/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	1 Aug 2014 11:27:43 -0000	1.120
+++ ChangeLog	2 Aug 2014 18:09:25 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/openntpd
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.120 2014/08/01 11:27:43 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.121 2014/08/02 18:09:25 ago Exp $
+
+  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> openntpd-20080406-r8.ebuild:
+  Stable for ppc64, wrt bug #507846
 
   01 Aug 2014; Raúl Porcel <armin76@gentoo.org> openntpd-20080406-r8.ebuild:
   sparc stable wrt #507846





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-08-02 18:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16 19:49 [gentoo-commits] gentoo-x86 commit in net-misc/openntpd: openntpd-20080406-r8.ebuild ChangeLog Christoph Junghans (ottxor)
  -- strict thread matches above, loose matches on Subject: below --
2014-04-29 20:39 Jeroen Roovers (jer)
2014-06-22 14:21 Akinori Hattori (hattya)
2014-07-13 10:00 Agostino Sarubbo (ago)
2014-07-20  9:06 Tobias Klausmann (klausman)
2014-08-02 18:09 Agostino Sarubbo (ago)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox