public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/chrony: ChangeLog chrony-1.27-r1.ebuild
@ 2013-04-08 11:11 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-04-08 11:11 UTC (permalink / raw
  To: gentoo-commits

jer         13/04/08 11:11:09

  Modified:             ChangeLog
  Added:                chrony-1.27-r1.ebuild
  Log:
  Add systemd support (bug #464948 by Enrico Tagliavini).
  
  (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.93                 net-misc/chrony/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	4 Feb 2013 12:27:46 -0000	1.92
+++ ChangeLog	8 Apr 2013 11:11:09 -0000	1.93
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/chrony
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.92 2013/02/04 12:27:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.93 2013/04/08 11:11:09 jer Exp $
+
+*chrony-1.27-r1 (08 Apr 2013)
+
+  08 Apr 2013; Jeroen Roovers <jer@gentoo.org> +files/50-chrony.list,
+  +chrony-1.27-r1.ebuild, +files/chronyd.service:
+  Add systemd support (bug #464948 by Enrico Tagliavini).
 
 *chrony-1.27 (04 Feb 2013)
 



1.1                  net-misc/chrony/chrony-1.27-r1.ebuild

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

Index: chrony-1.27-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v 1.1 2013/04/08 11:11:09 jer Exp $

EAPI=5
inherit eutils systemd toolchain-funcs

DESCRIPTION="NTP client and server programs"
HOMEPAGE="http://chrony.tuxfamily.org/"
SRC_URI="http://download.tuxfamily.org/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~sparc ~x86"
IUSE="caps ipv6 +readline +rtc"

DEPEND="
	caps? ( sys-libs/libcap )
	readline? ( >=sys-libs/readline-4.1-r4 )
"
RDEPEND="${REPEND}"

DOCS=( examples/chrony.{conf,keys}.example )

src_prepare() {
	sed -i \
		-e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \
		examples/* chrony*.{1,5,8} faq.txt chrony.texi || die
	sed -i \
		-e 's:/var/run:/run:g' \
		conf.c chrony.texi chrony.txt \
		examples/chrony.conf.example || die
}

src_configure() {
	tc-export CC

	# not an autotools generated script
	./configure \
		$( use caps		 || echo --disable-linuxcaps ) \
		$( use ipv6		 || echo --disable-ipv6 ) \
		$( use readline	 || echo --disable-readline ) \
		$( use rtc		 || echo --disable-rtc ) \
		${EXTRA_ECONF} \
		--docdir=/usr/share/doc/${PF} \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--prefix=/usr \
		--sysconfdir=/etc/chrony \
		--without-nss \
		--without-tomcrypt \
		|| die
}

src_compile() {
	emake all docs
}

src_install() {
	default
	rm "${D}"/usr/share/doc/${PF}/COPYING || die
	doinfo chrony.info*

	newinitd "${FILESDIR}"/chronyd.init chronyd
	newconfd "${FILESDIR}"/chronyd.conf chronyd

	keepdir /var/{lib,log}/chrony /etc/chrony

	insinto /etc/logrotate.d
	newins "${FILESDIR}"/chrony.logrotate chrony

	# systemd stuff
	systemd_dounit "${FILESDIR}"/chronyd.service
	insinto $(systemd_get_utildir)/ntp-units.d/
	doins "${FILESDIR}"/50-chrony.list
}





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

* [gentoo-commits] gentoo-x86 commit in net-misc/chrony: ChangeLog chrony-1.27-r1.ebuild
@ 2013-05-20 10:52 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 4+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-05-20 10:52 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/05/20 10:52:17

  Modified:             ChangeLog chrony-1.27-r1.ebuild
  Log:
  Stable for amd64 wrt bug #470560
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.98                 net-misc/chrony/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	20 May 2013 08:20:48 -0000	1.97
+++ ChangeLog	20 May 2013 10:52:17 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/chrony
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.97 2013/05/20 08:20:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.98 2013/05/20 10:52:17 nimiux Exp $
+
+  20 May 2013; Chema Alonso <nimiux@gentoo.org> chrony-1.27-r1.ebuild:
+  Stable for amd64 wrt bug #470560
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> chrony-1.27-r1.ebuild:
   Stable for x86, wrt bug #470560



1.3                  net-misc/chrony/chrony-1.27-r1.ebuild

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

Index: chrony-1.27-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- chrony-1.27-r1.ebuild	20 May 2013 08:20:48 -0000	1.2
+++ chrony-1.27-r1.ebuild	20 May 2013 10:52:17 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v 1.2 2013/05/20 08:20:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v 1.3 2013/05/20 10:52:17 nimiux Exp $
 
 EAPI=5
 inherit eutils systemd toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc ~sparc x86"
 IUSE="caps ipv6 +readline +rtc"
 
 DEPEND="





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

* [gentoo-commits] gentoo-x86 commit in net-misc/chrony: ChangeLog chrony-1.27-r1.ebuild
@ 2013-05-20 23:01 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-05-20 23:01 UTC (permalink / raw
  To: gentoo-commits

jer         13/05/20 23:01:40

  Modified:             ChangeLog chrony-1.27-r1.ebuild
  Log:
  Stable for HPPA (bug #470560).
  
  (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.100                net-misc/chrony/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	20 May 2013 12:41:50 -0000	1.99
+++ ChangeLog	20 May 2013 23:01:40 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/chrony
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.99 2013/05/20 12:41:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.100 2013/05/20 23:01:40 jer Exp $
+
+  20 May 2013; Jeroen Roovers <jer@gentoo.org> chrony-1.27-r1.ebuild:
+  Stable for HPPA (bug #470560).
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> chrony-1.27-r1.ebuild:
   Stable for ppc, wrt bug #470560



1.5                  net-misc/chrony/chrony-1.27-r1.ebuild

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

Index: chrony-1.27-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- chrony-1.27-r1.ebuild	20 May 2013 12:41:50 -0000	1.4
+++ chrony-1.27-r1.ebuild	20 May 2013 23:01:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v 1.4 2013/05/20 12:41:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.27-r1.ebuild,v 1.5 2013/05/20 23:01:40 jer Exp $
 
 EAPI=5
 inherit eutils systemd toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ppc ~sparc x86"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ~sparc x86"
 IUSE="caps ipv6 +readline +rtc"
 
 DEPEND="





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

* [gentoo-commits] gentoo-x86 commit in net-misc/chrony: ChangeLog chrony-1.27-r1.ebuild
@ 2013-08-28 12:25 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-08-28 12:25 UTC (permalink / raw
  To: gentoo-commits

jer         13/08/28 12:25:07

  Modified:             ChangeLog
  Removed:              chrony-1.27-r1.ebuild
  Log:
  Old.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.113                net-misc/chrony/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	28 Aug 2013 12:10:16 -0000	1.112
+++ ChangeLog	28 Aug 2013 12:25:07 -0000	1.113
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/chrony
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.112 2013/08/28 12:10:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/ChangeLog,v 1.113 2013/08/28 12:25:07 jer Exp $
+
+  28 Aug 2013; Jeroen Roovers <jer@gentoo.org> -chrony-1.27-r1.ebuild,
+  -files/chronyd.rc:
+  Old.
 
   28 Aug 2013; Agostino Sarubbo <ago@gentoo.org> chrony-1.29.ebuild:
   Stable for sparc, wrt bug #480364





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

end of thread, other threads:[~2013-08-28 12:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 23:01 [gentoo-commits] gentoo-x86 commit in net-misc/chrony: ChangeLog chrony-1.27-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-28 12:25 Jeroen Roovers (jer)
2013-05-20 10:52 JosA MarAa Alonso (nimiux)
2013-04-08 11:11 Jeroen Roovers (jer)

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