* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-01-02 0:09 Diego Petteno (flameeyes)
0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2013-01-02 0:09 UTC (permalink / raw
To: gentoo-commits
flameeyes 13/01/02 00:09:11
Modified: ChangeLog
Added: fcron-3.1.1.ebuild
Log:
Version bump; add a readline USE flag for the new optional dependency.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Revision Changes Path
1.100 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.99&r2=1.100
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog 23 Dec 2012 12:49:38 -0000 1.99
+++ ChangeLog 2 Jan 2013 00:09:11 -0000 1.100
@@ -1,6 +1,12 @@
# ChangeLog for sys-process/fcron
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.99 2012/12/23 12:49:38 flameeyes Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.100 2013/01/02 00:09:11 flameeyes Exp $
+
+*fcron-3.1.1 (02 Jan 2013)
+
+ 02 Jan 2013; Diego E. Pettenò <flameeyes@gentoo.org> +fcron-3.1.1.ebuild,
+ +files/fcron-3.1.1-noreadline.patch:
+ Version bump; add a readline USE flag for the new optional dependency.
*fcron-3.1.0 (23 Dec 2012)
1.1 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.1&content-type=text/plain
Index: fcron-3.1.1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.1 2013/01/02 00:09:11 flameeyes Exp $
EAPI=5
WANT_AUTOMAKE=none
inherit cron pam eutils flag-o-matic user autotools
MY_P=${P/_/-}
DESCRIPTION="A command scheduler with extended capabilities over cron and anacron"
HOMEPAGE="http://fcron.free.fr/"
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
pam? ( virtual/pam )
readline? ( sys-libs/readline )"
# see bug 282214 for the reason to depend on bash
RDEPEND="${DEPEND}
app-shells/bash
>=app-misc/editor-wrapper-3
pam? ( >=sys-auth/pambase-20100310 )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
enewgroup fcron
enewuser fcron -1 -1 -1 fcron
rootuser=$(egetent passwd 0 | cut -d ':' -f 1)
[[ ${rootuser} ]] || rootuser=root
rootgroup=$(egetent group 0 | cut -d ':' -f 1)
[[ ${rootgroup} ]] || rootgroup=root
}
src_prepare() {
# respect LDFLAGS
sed -i "s:\(@LIBS@\):\$(LDFLAGS) \1:" Makefile.in || die "sed failed"
sed -i -e 's:/etc/fcrontab:/etc/fcron/fcrontab:' script/check_system_crontabs.sh || die
epatch "${FILESDIR}"/${P}-noreadline.patch
eautoconf
}
src_configure() {
local myconf
# Don't try to pass --with-debug as it'll play with cflags as
# well, and run foreground which is a _very_ nasty idea for
# Gentoo.
use debug && append-flags -DDEBUG
# bindir is used just for calling fcronsighup
econf \
--with-cflags="${CFLAGS}" \
--bindir=/usr/libexec \
$(use_with pam) \
$(use_with selinux) \
$(use_with readline) \
--without-audit \
--sysconfdir=/etc/fcron \
--with-username=fcron \
--with-groupname=fcron \
--with-piddir=/var/run \
--with-spooldir=/var/spool/fcron \
--with-fifodir=/var/run \
--with-fcrondyn=yes \
--disable-checks \
--with-editor=/usr/libexec/editor \
--with-sendmail=/usr/sbin/sendmail \
--with-shell=/bin/sh \
--without-db2man --without-dsssl-dir \
--with-rootname=${rootuser} \
--with-rootgroup=${rootgroup}
}
src_compile() {
default
# bug #216460
sed -i \
-e 's:/usr/local/etc/fcron:/etc/fcron/fcron:g' \
-e 's:/usr/local/etc:/etc:g' \
-e 's:/usr/local/:/usr/:g' \
doc/*/*/*.{txt,1,5,8,html} \
|| die "unable to fix documentation references"
}
src_install() {
keepdir /var/spool/fcron
exeinto /usr/libexec
doexe fcron fcronsighup
dobin fcrondyn fcrontab
insinto /etc/fcron
doins files/fcron.{allow,deny,conf}
if use system-crontab; then
dosym fcrontab /usr/bin/crontab
exeinto /usr/libexec
newexe script/check_system_crontabs.sh check_system_crontabs
insinto /etc/fcron
newins "${FILESDIR}"/fcrontab.2 fcrontab
fowners ${rootuser}:fcron /etc/fcron/fcrontab
fperms 0640 /etc/fcron/fcrontab
insinto /etc
doins "${FILESDIR}"/crontab
fi
fowners fcron:fcron \
/var/spool/fcron \
/usr/bin/fcron{dyn,tab}
# fcronsighup needs to be suid root, because it sends a HUP to the
# running fcron daemon, but only has to be called by the fcron group
# anyway
fowners ${rootuser}:fcron \
/usr/libexec/fcronsighup \
/etc/fcron/fcron.{allow,deny,conf} \
/etc/fcron
fperms 6770 /var/spool/fcron
fperms 6775 /usr/bin/fcron{dyn,tab}
fperms 4710 /usr/libexec/fcronsighup
fperms 0750 /etc/fcron
fperms 0640 /etc/fcron/fcron.{allow,deny,conf}
pamd_mimic system-services fcron auth account session
cat > "${T}"/fcrontab.pam <<- EOF
# Don't ask for the user's password; fcrontab will only allow to
# change user if running as root.
auth sufficient pam_permit.so
# Still use the system-auth stack for account and session as the
# sysadmin might have set up stuff properly, and also avoids
# sidestepping limits (since fcrontab will run \$EDITOR).
account include system-auth
session include system-auth
EOF
newpamd "${T}"/fcrontab.pam fcrontab
newinitd "${FILESDIR}"/fcron.init.3 fcron
dodoc MANIFEST VERSION "${FILESDIR}"/crontab \
doc/en/txt/{readme,thanks,faq,todo,relnotes,changes}.txt
newdoc files/fcron.conf fcron.conf.sample
dohtml doc/en/HTML/*.html
doman doc/en/man/*.{1,5,8}
for lang in fr; do
use linguas_${lang} || continue
doman -i18n=${lang} doc/${lang}/man/*.{1,5,8} || die
docinto html/${lang}
dohtml doc/${lang}/HTML/*.html || die
done
}
pkg_postinst() {
elog "If it's the first time you install fcron make sure to execute"
elog " emerge --config ${CATEGORY}/${PN}"
elog "to configure the proper settings."
if ! use system-crontab; then
echo ""
ewarn "Remember that fcron will *not* use /etc/cron.d in this configuration"
echo ""
fi
}
pkg_config() {
if [[ $(fcrontab -l -u systab 2>/dev/null) ]]; then
eerror "We're not going to make any change to your systab as long as"
eerror "it contains data; please clear it before proceeding."
return 1
fi
if use system-crontab; then
elog "This is going to set up fcron to execute check_system_crontabs."
elog "In this configuration, you're no longer free to edit the systab"
elog "at your leisure, at it'll be rewritten the moment the crontabs"
elog "are modified."
/usr/libexec/check_system_crontabs -v -i -f
else
elog "This is going to set up fcron to set up a default systab that"
elog "executes /etc/cron.{hourly,daily,weekly,monthly}."
fcrontab -u systab - <<- EOF
0 * * * * rm -f /var/spool/cron/lastrun/cron.hourly
1 3 * * * rm -f /var/spool/cron/lastrun/cron.daily
15 4 * * 6 rm -f /var/spool/cron/lastrun/cron.weekly
30 5 1 * * rm -f /var/spool/cron/lastrun/cron.monthly
EOF
fi
}
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-01-24 22:09 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-24 22:09 UTC (permalink / raw
To: gentoo-commits
ago 13/01/24 22:09:07
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.2 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.1&r2=1.2
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fcron-3.1.1.ebuild 2 Jan 2013 00:09:11 -0000 1.1
+++ fcron-3.1.1.ebuild 24 Jan 2013 22:09:07 -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/fcron/fcron-3.1.1.ebuild,v 1.1 2013/01/02 00:09:11 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.2 2013/01/24 22:09:07 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.102 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.101&r2=1.102
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog 20 Jan 2013 13:10:30 -0000 1.101
+++ ChangeLog 24 Jan 2013 22:09:07 -0000 1.102
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.101 2013/01/20 13:10:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.102 2013/01/24 22:09:07 ago Exp $
+
+ 24 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for amd64, wrt bug #453246
20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.0.6-r1.ebuild:
Stable for arm, wrt bug #330727
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-01-24 22:11 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-24 22:11 UTC (permalink / raw
To: gentoo-commits
ago 13/01/24 22:11:17
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.3 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.2&r2=1.3
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fcron-3.1.1.ebuild 24 Jan 2013 22:09:07 -0000 1.2
+++ fcron-3.1.1.ebuild 24 Jan 2013 22:11: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/sys-process/fcron/fcron-3.1.1.ebuild,v 1.2 2013/01/24 22:09:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.3 2013/01/24 22:11:17 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.103 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.102&r2=1.103
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog 24 Jan 2013 22:09:07 -0000 1.102
+++ ChangeLog 24 Jan 2013 22:11:17 -0000 1.103
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.102 2013/01/24 22:09:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.103 2013/01/24 22:11:17 ago Exp $
+
+ 24 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for x86, wrt bug #453246
24 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
Stable for amd64, wrt bug #453246
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-01-26 11:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-26 11:55 UTC (permalink / raw
To: gentoo-commits
ago 13/01/26 11:55:00
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.4 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.3&r2=1.4
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fcron-3.1.1.ebuild 24 Jan 2013 22:11:17 -0000 1.3
+++ fcron-3.1.1.ebuild 26 Jan 2013 11:55:00 -0000 1.4
@@ -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/fcron/fcron-3.1.1.ebuild,v 1.3 2013/01/24 22:11:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.4 2013/01/26 11:55:00 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.104 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.103&r2=1.104
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 24 Jan 2013 22:11:17 -0000 1.103
+++ ChangeLog 26 Jan 2013 11:55:00 -0000 1.104
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.103 2013/01/24 22:11:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.104 2013/01/26 11:55:00 ago Exp $
+
+ 26 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for ppc, wrt bug #453246
24 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
Stable for x86, wrt bug #453246
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-01-29 11:37 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-29 11:37 UTC (permalink / raw
To: gentoo-commits
ago 13/01/29 11:37:26
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux ia64, unsigned Manifest commit)
Revision Changes Path
1.5 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.4&r2=1.5
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fcron-3.1.1.ebuild 26 Jan 2013 11:55:00 -0000 1.4
+++ fcron-3.1.1.ebuild 29 Jan 2013 11:37:26 -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/fcron/fcron-3.1.1.ebuild,v 1.4 2013/01/26 11:55:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.5 2013/01/29 11:37:26 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~hppa ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.105 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.104&r2=1.105
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 26 Jan 2013 11:55:00 -0000 1.104
+++ ChangeLog 29 Jan 2013 11:37:26 -0000 1.105
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.104 2013/01/26 11:55:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.105 2013/01/29 11:37:26 ago Exp $
+
+ 29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for ia64, wrt bug #453246
26 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
Stable for ppc, wrt bug #453246
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-02-03 19:41 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-03 19:41 UTC (permalink / raw
To: gentoo-commits
ago 13/02/03 19:41:32
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for arm, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.6 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.5&r2=1.6
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fcron-3.1.1.ebuild 29 Jan 2013 11:37:26 -0000 1.5
+++ fcron-3.1.1.ebuild 3 Feb 2013 19:41:32 -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/fcron/fcron-3.1.1.ebuild,v 1.5 2013/01/29 11:37:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.6 2013/02/03 19:41:32 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~hppa ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 arm ~hppa ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.106 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.105&r2=1.106
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 29 Jan 2013 11:37:26 -0000 1.105
+++ ChangeLog 3 Feb 2013 19:41:32 -0000 1.106
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.105 2013/01/29 11:37:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.106 2013/02/03 19:41:32 ago Exp $
+
+ 03 Feb 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for arm, wrt bug #453246
29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
Stable for ia64, wrt bug #453246
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog
@ 2013-02-06 19:49 Agostino Sarubbo (ago)
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-06 19:49 UTC (permalink / raw
To: gentoo-commits
ago 13/02/06 19:49:32
Modified: fcron-3.1.1.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #453246
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.7 sys-process/fcron/fcron-3.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild?r1=1.6&r2=1.7
Index: fcron-3.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fcron-3.1.1.ebuild 3 Feb 2013 19:41:32 -0000 1.6
+++ fcron-3.1.1.ebuild 6 Feb 2013 19:49:32 -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/fcron/fcron-3.1.1.ebuild,v 1.6 2013/02/03 19:41:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/fcron-3.1.1.ebuild,v 1.7 2013/02/06 19:49:32 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
SRC_URI="http://fcron.free.fr/archives/${MY_P}.src.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="amd64 arm ~hppa ia64 ~mips ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 arm ~hppa ia64 ~mips ppc sparc x86 ~x86-fbsd"
IUSE="debug pam selinux linguas_fr +system-crontab readline"
DEPEND="selinux? ( sys-libs/libselinux )
1.107 sys-process/fcron/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/fcron/ChangeLog?r1=1.106&r2=1.107
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 3 Feb 2013 19:41:32 -0000 1.106
+++ ChangeLog 6 Feb 2013 19:49:32 -0000 1.107
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/fcron
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.106 2013/02/03 19:41:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/ChangeLog,v 1.107 2013/02/06 19:49:32 ago Exp $
+
+ 06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
+ Stable for sparc, wrt bug #453246
03 Feb 2013; Agostino Sarubbo <ago@gentoo.org> fcron-3.1.1.ebuild:
Stable for arm, wrt bug #453246
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-02-06 19:49 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-26 11:55 [gentoo-commits] gentoo-x86 commit in sys-process/fcron: fcron-3.1.1.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-02-06 19:49 Agostino Sarubbo (ago)
2013-02-03 19:41 Agostino Sarubbo (ago)
2013-01-29 11:37 Agostino Sarubbo (ago)
2013-01-24 22:11 Agostino Sarubbo (ago)
2013-01-24 22:09 Agostino Sarubbo (ago)
2013-01-02 0:09 Diego Petteno (flameeyes)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox