summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2012-11-25 13:47:34 +0400
committerVlad Glagolev2012-11-25 13:47:34 +0400
commit5fb50568c4d2360767ee888a76161b051aab59f8 (patch)
tree94615ea16025d930a60b1f1339f367bde593b754
parentb1a114c4d8aa91509f26e1f7eac101e7866911c7 (diff)
cronie: => 1.4.9
-rwxr-xr-xutils/cronie/CONFIGURE6
-rwxr-xr-xutils/cronie/DEPENDS6
-rwxr-xr-xutils/cronie/DETAILS4
-rw-r--r--utils/cronie/HISTORY6
-rwxr-xr-xutils/cronie/INSTALL4
5 files changed, 19 insertions, 7 deletions
diff --git a/utils/cronie/CONFIGURE b/utils/cronie/CONFIGURE
index da7ffa202e..b95f832975 100755
--- a/utils/cronie/CONFIGURE
+++ b/utils/cronie/CONFIGURE
@@ -1,6 +1,10 @@
config_query_option CRONIE_OPTS "Enable inotify support?" n \
"--with-inotify" \
- "--without-inotify"
+ "--without-inotify" &&
+
+config_query_option CRONIE_OPTS "Enable system crontab support?" n \
+ "--with-syscrontab" \
+ "--without-syscrontab" &&
config_query_option CRONIE_OPTS "Enable Anacron support?" n \
"--enable-anacron" \
diff --git a/utils/cronie/DEPENDS b/utils/cronie/DEPENDS
index 9c22c0f816..36da2a7669 100755
--- a/utils/cronie/DEPENDS
+++ b/utils/cronie/DEPENDS
@@ -1,6 +1,6 @@
-optional_depends MAIL-TRANSPORT-AGENT \
- "" "" \
- "for sending reports" &&
+suggest_depends MAIL-TRANSPORT-AGENT \
+ "" "" \
+ "for sending reports" &&
optional_depends linux-pam \
"--with-pam" \
diff --git a/utils/cronie/DETAILS b/utils/cronie/DETAILS
index 0ed0eb8f66..cbe7337652 100755
--- a/utils/cronie/DETAILS
+++ b/utils/cronie/DETAILS
@@ -1,9 +1,9 @@
SPELL=cronie
- VERSION=1.4.8
+ VERSION=1.4.9
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=https://fedorahosted.org/releases/c/r/$SPELL/$SOURCE
SOURCE_HINTS="no-check-certificate"
- SOURCE_HASH=sha512:e2fd54910ffc233c24f3a0e6dce3b845b74b36c42cfd7cbae614201bc8f024a04b7c12dc82b43cd4a8f1dbf49c2dc96a5e0539ef58a936f11dc13c2269564eeb
+ SOURCE_HASH=sha512:932684fb982e273f63828ec71397f4bfa27c6a0559a63d797fcc38f53ec0fcdeb6708c542f9ec952a54e1218ae6cf3aa7c3a7e5c485bb08ce77e2a6549cc46b7
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE=https://fedorahosted.org/cronie/
LICENSE[0]=ISC
diff --git a/utils/cronie/HISTORY b/utils/cronie/HISTORY
index c560d4f5e6..c1eecda9ac 100644
--- a/utils/cronie/HISTORY
+++ b/utils/cronie/HISTORY
@@ -1,3 +1,9 @@
+2012-11-25 Vlad Glagolev <stealth@sourcemage.org>
+ * DETAILS: updated spell to 1.4.9
+ * CONFIGURE: added option for syscrontab support
+ * INSTALL: /etc/crontab is optional
+ * DEPENDS: optional -> suggest for MTA
+
2011-07-02 Vlad Glagolev <stealth@sourcemage.org>
* DETAILS: updated spell to 1.4.8
diff --git a/utils/cronie/INSTALL b/utils/cronie/INSTALL
index 8a38600bbc..ab2a472a4c 100755
--- a/utils/cronie/INSTALL
+++ b/utils/cronie/INSTALL
@@ -11,4 +11,6 @@ fi &&
install -vm 755 -d "$INSTALL_ROOT/etc/cron.d" &&
install -vm 770 -o daemon -g crontab -d "$INSTALL_ROOT/var/spool/cron" &&
-install_config_file "$SPELL_DIRECTORY/crontab" "$INSTALL_ROOT/etc/crontab"
+if list_find "$CRONIE_OPTS" "--with-syscrontab"; then
+ install_config_file "$SPELL_DIRECTORY/crontab" "$INSTALL_ROOT/etc/crontab"
+fi