From 17a2b6d4ba48ac3ead9970cc317f714b9ed6161b Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 04:41:07 +0000 Subject: [PATCH 1/5] Initialize branch F-12 for crontabs --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From e6654f7b768b14495c6d2e16d96e5e7ee1b0264e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Mon, 12 Oct 2009 12:17:34 +0000 Subject: [PATCH 2/5] - rebuilt for review --- crontabs.spec | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/crontabs.spec b/crontabs.spec index b89989e..1d8398c 100644 --- a/crontabs.spec +++ b/crontabs.spec @@ -1,9 +1,10 @@ Summary: Root crontab files used to schedule the execution of programs Name: crontabs Version: 1.10 -Release: 31%{?dist} +Release: 32%{?dist} License: Public Domain and GPLv2 Group: System Environment/Base +# no URL - it's only a one script which is used by different packages Source0: crontab Source1: run-parts Source2: crontabs.4 @@ -21,14 +22,19 @@ are scheduled, it executes them. Crontabs handles a basic system function, so it should be installed on your system. +%prep +#empty +%build +#empty + %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/etc/cron.{hourly,daily,weekly,monthly} mkdir -p $RPM_BUILD_ROOT/usr/bin mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man4/ -install -m644 $RPM_SOURCE_DIR/crontab $RPM_BUILD_ROOT/etc/crontab -install -m755 $RPM_SOURCE_DIR/run-parts $RPM_BUILD_ROOT/usr/bin/run-parts -install -m644 $RPM_SOURCE_DIR/crontabs.4 $RPM_BUILD_ROOT/%{_mandir}/man4/ +install -m644 crontab $RPM_BUILD_ROOT/etc/crontab +install -m755 run-parts $RPM_BUILD_ROOT/usr/bin/run-parts +install -m644 crontabs.4 $RPM_BUILD_ROOT/%{_mandir}/man4/ %clean rm -rf $RPM_BUILD_ROOT @@ -44,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %dir /etc/cron.monthly %changelog +* Mon Oct 12 2009 Marcela Mašláňová 1.10-32 +- rebuilt for review + * Fri Jul 24 2009 Fedora Release Engineering - 1.10-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 8b069f10180efd701ce1165d4f6459e9637d52ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Mon, 12 Oct 2009 13:38:09 +0000 Subject: [PATCH 3/5] Fix typo. --- crontabs.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crontabs.spec b/crontabs.spec index 1d8398c..236d06a 100644 --- a/crontabs.spec +++ b/crontabs.spec @@ -32,9 +32,9 @@ rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/etc/cron.{hourly,daily,weekly,monthly} mkdir -p $RPM_BUILD_ROOT/usr/bin mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man4/ -install -m644 crontab $RPM_BUILD_ROOT/etc/crontab -install -m755 run-parts $RPM_BUILD_ROOT/usr/bin/run-parts -install -m644 crontabs.4 $RPM_BUILD_ROOT/%{_mandir}/man4/ +install -m644 %SOURCE0 $RPM_BUILD_ROOT/etc/crontab +install -m755 %SOURCE1 $RPM_BUILD_ROOT/usr/bin/run-parts +install -m644 %SOURCE2 $RPM_BUILD_ROOT/%{_mandir}/man4/ %clean rm -rf $RPM_BUILD_ROOT From 4854678e03074891cdfc03693186e09782155268 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:34:19 +0000 Subject: [PATCH 4/5] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 10e4626..ae96448 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: crontabs -# $Id: Makefile,v 1.1 2004/09/09 03:58:16 cvsdist Exp $ +# $Id: Makefile,v 1.2 2007/10/15 18:40:33 notting Exp $ NAME := crontabs SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From d2cecc442211e9e7e2fc18ff6499eea0b7eb6bd4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 12:19:34 +0000 Subject: [PATCH 5/5] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index ae96448..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: crontabs -# $Id: Makefile,v 1.2 2007/10/15 18:40:33 notting Exp $ -NAME := crontabs -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attempt a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12