diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-01-23 04:19:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-01-23 04:19:55 +0000 |
commit | 0acee9d8f008ed2bb7affbf12a7a95338c5e3790 (patch) | |
tree | 7728bf439d4a414c2781a0d885b102cc5a616938 /sys-apps/cronbase | |
parent | Changed sparc keyword back to ~sparc as bug 12866 has yet to be resolved. (diff) | |
download | gentoo-2-0acee9d8f008ed2bb7affbf12a7a95338c5e3790.tar.gz gentoo-2-0acee9d8f008ed2bb7affbf12a7a95338c5e3790.tar.bz2 gentoo-2-0acee9d8f008ed2bb7affbf12a7a95338c5e3790.zip |
removed duplicate keepdir def #14394
Diffstat (limited to 'sys-apps/cronbase')
-rw-r--r-- | sys-apps/cronbase/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/cronbase/cronbase-0.2.1-r1.ebuild | 17 | ||||
-rw-r--r-- | sys-apps/cronbase/cronbase-0.2.1.ebuild | 19 |
3 files changed, 14 insertions, 30 deletions
diff --git a/sys-apps/cronbase/ChangeLog b/sys-apps/cronbase/ChangeLog index e948d60ecf1c..37b4eb739c4f 100644 --- a/sys-apps/cronbase/ChangeLog +++ b/sys-apps/cronbase/ChangeLog @@ -1,11 +1,14 @@ # ChangeLog for sys-apps/cronbase # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/ChangeLog,v 1.11 2003/01/19 17:53:45 tuxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/ChangeLog,v 1.12 2003/01/23 04:19:55 vapier Exp $ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords *cronbase-0.2.1-r1 (13 Nov 2002) + 22 Jan 2003; Mike Frysinger <vapier@gentoo.org> : + Removed duplicate keepdir func definition + 19 Jan 2003; Jan Seidel <tuxus@gentoo.org> : Added mips to keywords @@ -13,6 +16,9 @@ *cronbase-0.2.1 (27 Jun 2002) + 22 Jan 2003; Mike Frysinger <vapier@gentoo.org> : + Removed duplicate keepdir func definition + 14 Jul 2002; phoen][x <phoenix@gentoo.org> cronbase-0.2.1.ebuild : Added KEYWORDS, SLOT. diff --git a/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild b/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild index 6cd9f161d7f8..f5dfc86102a5 100644 --- a/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild +++ b/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild @@ -1,25 +1,15 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild,v 1.4 2003/01/19 17:53:45 tuxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/cronbase-0.2.1-r1.ebuild,v 1.5 2003/01/23 04:19:55 vapier Exp $ DESCRIPTION="The is the base for all cron ebuilds." HOMEPAGE="http://www.gentoo.org/" + KEYWORDS="x86 ppc sparc alpha mips" SLOT="0" LICENSE="GPL-2" -#adds ".keep" files so that dirs aren't auto-cleaned -keepdir() { - dodir $* - local x - for x in $* - do - touch ${D}/${x}/.keep - done -} - -src_install () { - +src_install() { exeinto /usr/sbin doexe ${FILESDIR}/run-crons @@ -33,5 +23,4 @@ src_install () { diropts -m0750; keepdir /var/spool/cron/lastrun dodoc ${FILESDIR}/README - } diff --git a/sys-apps/cronbase/cronbase-0.2.1.ebuild b/sys-apps/cronbase/cronbase-0.2.1.ebuild index fe757f9795c0..f7f292cdf8fe 100644 --- a/sys-apps/cronbase/cronbase-0.2.1.ebuild +++ b/sys-apps/cronbase/cronbase-0.2.1.ebuild @@ -1,25 +1,15 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/cronbase-0.2.1.ebuild,v 1.9 2002/12/15 10:44:21 bjb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cronbase/cronbase-0.2.1.ebuild,v 1.10 2003/01/23 04:19:55 vapier Exp $ -DESCRIPTION="The is the base for all cron ebuilds." +DESCRIPTION="The is the base for all cron ebuilds" HOMEPAGE="http://www.gentoo.org/" + KEYWORDS="x86 ppc sparc alpha" SLOT="0" LICENSE="GPL-2" -#adds ".keep" files so that dirs aren't auto-cleaned -keepdir() { - dodir $* - local x - for x in $* - do - touch ${D}/${x}/.keep - done -} - -src_install () { - +src_install() { exeinto /usr/sbin doexe ${FILESDIR}/run-crons @@ -33,5 +23,4 @@ src_install () { diropts -m0750; keepdir /var/spool/cron/lastrun dodoc ${FILESDIR}/README - } |