public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-19 22:40 Chris Reffett (creffett)
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Reffett (creffett) @ 2013-10-19 22:40 UTC (permalink / raw
  To: gentoo-commits

creffett    13/10/19 22:40:44

  Modified:             ChangeLog
  Added:                vixie-cron-4.1-r14.ebuild
  Log:
  Security bump. Add backported patch wrt bug 308055.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 42618354)

Revision  Changes    Path
1.71                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	11 Oct 2013 08:21:17 -0000	1.70
+++ ChangeLog	19 Oct 2013 22:40:44 -0000	1.71
@@ -1,6 +1,12 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.70 2013/10/11 08:21:17 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.71 2013/10/19 22:40:44 creffett Exp $
+
+*vixie-cron-4.1-r14 (19 Oct 2013)
+
+  19 Oct 2013; Chris Reffett <creffett@gentoo.org>
+  +files/vixie-cron-4.1-crontabrace.patch, +vixie-cron-4.1-r14.ebuild:
+  Security bump. Add backported patch wrt bug 308055.
 
   11 Oct 2013; Sergey Popov <pinkbyte@gentoo.org> vixie-cron-4.1-r13.ebuild:
   Stable on x86, wrt bug #480122



1.1                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.1&content-type=text/plain

Index: vixie-cron-4.1-r14.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.1 2013/10/19 22:40:44 creffett Exp $

inherit cron toolchain-funcs pam eutils flag-o-matic user systemd

# no useful homepage, bug #65898
HOMEPAGE="ftp://ftp.isc.org/isc/cron/"
DESCRIPTION="Paul Vixie's cron daemon, a fully featured crond implementation"

SELINUX_PATCH="${P}-selinux-1.diff"
GENTOO_PATCH_REV="r4"

SRC_URI="mirror://gentoo/${P}.tar.bz2
	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"

LICENSE="ISC BSD-2 BSD"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="selinux pam debug"

DEPEND="selinux? ( sys-libs/libselinux )
	pam? ( virtual/pam )"

RDEPEND="selinux? ( sys-libs/libselinux )
	 pam? ( virtual/pam )"

#vixie-cron supports /etc/crontab
CRON_SYSTEM_CRONTAB="yes"

pkg_setup() {
	enewgroup crontab
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${WORKDIR}"/${P}-gentoo-${GENTOO_PATCH_REV}.patch
	epatch "${FILESDIR}"/crontab.5.diff
	epatch "${FILESDIR}"/${P}-commandline.patch
	epatch "${FILESDIR}"/${P}-basename.diff
	epatch "${FILESDIR}"/${P}-setuid_check.patch
	epatch "${FILESDIR}"/${P}-hardlink.patch
	epatch "${FILESDIR}"/${P}-crontabrace.patch
	use pam && epatch "${FILESDIR}"/${P}-pam.patch
	use selinux && epatch "${FILESDIR}"/${SELINUX_PATCH}
}

src_compile() {
	use debug && append-flags -DDEBUGGING

	sed -i -e "s:gcc \(-Wall.*\):$(tc-getCC) \1 ${CFLAGS}:" \
		-e "s:^\(LDFLAGS[ \t]\+=\).*:\1 ${LDFLAGS}:" Makefile \
		|| die "sed Makefile failed"

	emake || die "emake failed"
}

src_install() {
	docrondir -m 1730 -o root -g crontab
	docron
	docrontab -m 2755 -o root -g crontab

	# /etc stuff
	insinto /etc
	newins  "${FILESDIR}"/crontab-3.0.1-r4 crontab
	newins "${FILESDIR}"/${P}-cron.deny cron.deny

	keepdir /etc/cron.d
	newpamd "${FILESDIR}"/pamd.compatible cron
	newinitd "${FILESDIR}"/vixie-cron.rc7 vixie-cron

	# doc stuff
	doman crontab.1 crontab.5 cron.8
	dodoc "${FILESDIR}"/crontab
	dodoc CHANGES CONVERSION FEATURES MAIL README THANKS

	systemd_dounit "${FILESDIR}/${PN}.service"
}

pkg_preinst() {
	has_version "<${CATEGORY}/${PN}-4.1-r10"
	fix_spool_dir_perms=$?
}

pkg_postinst() {
	if [[ -f ${ROOT}/etc/init.d/vcron ]]
	then
		ewarn "Please run:"
		ewarn "rc-update del vcron"
		ewarn "rc-update add vixie-cron default"
	fi

	# bug 71326
	if [[ -u ${ROOT}/etc/pam.d/cron ]] ; then
		echo
		ewarn "Warning: previous ebuilds didn't reset permissions prior"
		ewarn "to installing crontab, resulting in /etc/pam.d/cron being"
		ewarn "installed with the SUID and executable bits set."
		ewarn
		ewarn "Run the following as root to set the proper permissions:"
		ewarn "   chmod 0644 /etc/pam.d/cron"
		echo
	fi

	# bug 164466
	if [[ $fix_spool_dir_perms = 0 ]] ; then
		echo
		ewarn "Previous ebuilds didn't correctly set permissions on"
		ewarn "the crontabs spool directory. Proper permissions are"
		ewarn "now being set on ${ROOT}var/spool/cron/crontabs/"
		ewarn "Look at this directory if you have a specific configuration"
		ewarn "that needs special ownerships or permissions."
		echo
		chmod 1730 "${ROOT}/var/spool/cron/crontabs" || die "chmod failed"
		chgrp -R crontab "${ROOT}/var/spool/cron/crontabs" || die "chgrp failed"
		cd "${ROOT}/var/spool/cron/crontabs/"
		for cronfile in * ; do
			[[ ! -f $cronfile ]] || chown "$cronfile:crontab" "$cronfile" \
		    || ewarn "chown failed on $cronfile, you probably have an orphan file."
		done
	fi

	cron_pkg_postinst
}





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-20 17:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 17:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 17:32:16

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #308055
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.1&r2=1.2

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vixie-cron-4.1-r14.ebuild	19 Oct 2013 22:40:44 -0000	1.1
+++ vixie-cron-4.1-r14.ebuild	20 Oct 2013 17:32:15 -0000	1.2
@@ -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.1 2013/10/19 22:40:44 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.2 2013/10/20 17:32:15 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.72                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	19 Oct 2013 22:40:44 -0000	1.71
+++ ChangeLog	20 Oct 2013 17:32:15 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.71 2013/10/19 22:40:44 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.72 2013/10/20 17:32:15 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for amd64, wrt bug #308055
 
 *vixie-cron-4.1-r14 (19 Oct 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-20 17:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 17:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 17:32:24

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #308055
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.2&r2=1.3

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vixie-cron-4.1-r14.ebuild	20 Oct 2013 17:32:15 -0000	1.2
+++ vixie-cron-4.1-r14.ebuild	20 Oct 2013 17:32:24 -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.2 2013/10/20 17:32:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.3 2013/10/20 17:32:24 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.73                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	20 Oct 2013 17:32:15 -0000	1.72
+++ ChangeLog	20 Oct 2013 17:32:24 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.72 2013/10/20 17:32:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.73 2013/10/20 17:32:24 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for x86, wrt bug #308055
 
   20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
   Stable for amd64, wrt bug #308055





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-22  8:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-22  8:58 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/22 08:58:31

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #308055
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.4&r2=1.5

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vixie-cron-4.1-r14.ebuild	21 Oct 2013 13:16:04 -0000	1.4
+++ vixie-cron-4.1-r14.ebuild	22 Oct 2013 08:58:31 -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.4 2013/10/21 13:16:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.5 2013/10/22 08:58:31 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.75                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	21 Oct 2013 13:16:04 -0000	1.74
+++ ChangeLog	22 Oct 2013 08:58:31 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.74 2013/10/21 13:16:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.75 2013/10/22 08:58:31 ago Exp $
+
+  22 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for ppc, wrt bug #308055
 
   21 Oct 2013; Jeroen Roovers <jer@gentoo.org> vixie-cron-4.1-r14.ebuild:
   Stable for HPPA (bug #308055).





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-23 17:40 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-23 17:40 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/23 17:40:41

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #308055
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.5&r2=1.6

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vixie-cron-4.1-r14.ebuild	22 Oct 2013 08:58:31 -0000	1.5
+++ vixie-cron-4.1-r14.ebuild	23 Oct 2013 17:40:41 -0000	1.6
@@ -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.5 2013/10/22 08:58:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.6 2013/10/23 17:40:41 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.76                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	22 Oct 2013 08:58:31 -0000	1.75
+++ ChangeLog	23 Oct 2013 17:40:41 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.75 2013/10/22 08:58:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.76 2013/10/23 17:40:41 ago Exp $
+
+  23 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for ppc64, wrt bug #308055
 
   22 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
   Stable for ppc, wrt bug #308055





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-24  6:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-24  6:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/24 06:10:57

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #308055
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.6&r2=1.7

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vixie-cron-4.1-r14.ebuild	23 Oct 2013 17:40:41 -0000	1.6
+++ vixie-cron-4.1-r14.ebuild	24 Oct 2013 06:10:57 -0000	1.7
@@ -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.6 2013/10/23 17:40:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.7 2013/10/24 06:10:57 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.77                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	23 Oct 2013 17:40:41 -0000	1.76
+++ ChangeLog	24 Oct 2013 06:10:57 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.76 2013/10/23 17:40:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.77 2013/10/24 06:10:57 ago Exp $
+
+  24 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for alpha, wrt bug #308055
 
   23 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
   Stable for ppc64, wrt bug #308055





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2013-10-24  6:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-24  6:11 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/24 06:11:22

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #308055
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.7&r2=1.8

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vixie-cron-4.1-r14.ebuild	24 Oct 2013 06:10:57 -0000	1.7
+++ vixie-cron-4.1-r14.ebuild	24 Oct 2013 06:11:22 -0000	1.8
@@ -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/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.7 2013/10/24 06:10:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.8 2013/10/24 06:11:22 ago Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.78                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	24 Oct 2013 06:10:57 -0000	1.77
+++ ChangeLog	24 Oct 2013 06:11:22 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.77 2013/10/24 06:10:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.78 2013/10/24 06:11:22 ago Exp $
+
+  24 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Stable for ia64, wrt bug #308055
 
   24 Oct 2013; Agostino Sarubbo <ago@gentoo.org> vixie-cron-4.1-r14.ebuild:
   Stable for alpha, wrt bug #308055





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

* [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog
@ 2014-02-01 23:23 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-01 23:23 UTC (permalink / raw
  To: gentoo-commits

vapier      14/02/01 23:23:20

  Modified:             vixie-cron-4.1-r14.ebuild ChangeLog
  Log:
  Mark arm64/m68k/s390/sh stable.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.11                 sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild?r1=1.10&r2=1.11

Index: vixie-cron-4.1-r14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- vixie-cron-4.1-r14.ebuild	7 Nov 2013 11:42:59 -0000	1.10
+++ vixie-cron-4.1-r14.ebuild	1 Feb 2014 23:23:20 -0000	1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.10 2013/11/07 11:42:59 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/vixie-cron-4.1-r14.ebuild,v 1.11 2014/02/01 23:23:20 vapier Exp $
 
 inherit cron toolchain-funcs pam eutils flag-o-matic user systemd
 
@@ -15,7 +15,7 @@
 	mirror://gentoo/${P}-gentoo-${GENTOO_PATCH_REV}.patch.bz2"
 
 LICENSE="ISC BSD-2 BSD"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux pam debug"
 
 DEPEND="selinux? ( sys-libs/libselinux )



1.81                 sys-process/vixie-cron/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/vixie-cron/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	7 Nov 2013 11:42:59 -0000	1.80
+++ ChangeLog	1 Feb 2014 23:23:20 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/vixie-cron
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.80 2013/11/07 11:42:59 polynomial-c Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/ChangeLog,v 1.81 2014/02/01 23:23:20 vapier Exp $
+
+  01 Feb 2014; Mike Frysinger <vapier@gentoo.org> vixie-cron-4.1-r14.ebuild:
+  Mark arm64/m68k/s390/sh stable.
 
   07 Nov 2013; Lars Wendler <polynomial-c@gentoo.org>
   -vixie-cron-4.1-r10.ebuild, -vixie-cron-4.1-r12.ebuild,





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

end of thread, other threads:[~2014-02-01 23:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-19 22:40 [gentoo-commits] gentoo-x86 commit in sys-process/vixie-cron: vixie-cron-4.1-r14.ebuild ChangeLog Chris Reffett (creffett)
  -- strict thread matches above, loose matches on Subject: below --
2013-10-20 17:32 Agostino Sarubbo (ago)
2013-10-20 17:32 Agostino Sarubbo (ago)
2013-10-22  8:58 Agostino Sarubbo (ago)
2013-10-23 17:40 Agostino Sarubbo (ago)
2013-10-24  6:10 Agostino Sarubbo (ago)
2013-10-24  6:11 Agostino Sarubbo (ago)
2014-02-01 23:23 Mike Frysinger (vapier)

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