[arch-commits] Commit in fcron/repos (14 files)

Sébastien Luttringer seblu at nymeria.archlinux.org
Tue May 21 19:34:28 UTC 2013


    Date: Tuesday, May 21, 2013 @ 21:34:28
  Author: seblu
Revision: 91396

archrelease: copy trunk to community-i686, community-x86_64

Added:
  fcron/repos/community-i686/PKGBUILD
    (from rev 91395, fcron/trunk/PKGBUILD)
  fcron/repos/community-i686/systab
    (from rev 91395, fcron/trunk/systab)
  fcron/repos/community-i686/systab.orig
    (from rev 91395, fcron/trunk/systab.orig)
  fcron/repos/community-x86_64/PKGBUILD
    (from rev 91395, fcron/trunk/PKGBUILD)
  fcron/repos/community-x86_64/systab
    (from rev 91395, fcron/trunk/systab)
  fcron/repos/community-x86_64/systab.orig
    (from rev 91395, fcron/trunk/systab.orig)
Deleted:
  fcron/repos/community-i686/PKGBUILD
  fcron/repos/community-i686/run-cron
  fcron/repos/community-i686/systab
  fcron/repos/community-i686/systab.orig
  fcron/repos/community-x86_64/PKGBUILD
  fcron/repos/community-x86_64/run-cron
  fcron/repos/community-x86_64/systab
  fcron/repos/community-x86_64/systab.orig

------------------------------+
 /PKGBUILD                    |  168 +++++++++++++++++++++++++++++++++++++++++
 /systab.orig                 |    8 +
 community-i686/PKGBUILD      |   89 ---------------------
 community-i686/run-cron      |   14 ---
 community-i686/systab.orig   |    4 
 community-x86_64/PKGBUILD    |   89 ---------------------
 community-x86_64/run-cron    |   14 ---
 community-x86_64/systab.orig |    4 
 8 files changed, 176 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-i686/PKGBUILD	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,89 +0,0 @@
-# $Id$
-# Contributor: Giorgio Lando <lando at imap dot cc>
-# Contributor: Sergej Pupykin
-# Contributor: Thomas Bächler
-# Contributor: Sébastien Luttringer
-# Maintainer: Thorsten Töpper <atsutane-tu at freethoughts.de>
-
-pkgname=fcron
-pkgver=3.1.2
-pkgrel=5
-pkgdesc='Feature-rich cron implementation'
-arch=(i686 x86_64)
-url='http://fcron.free.fr'
-license=('GPL')
-depends=('pam')
-makedepends=('smtp-server' 'vi')
-optdepends=('smtp-server: to receive mails from cron jobs'
-            'vi: default editor for fcrontab')
-provides=('cron')
-conflicts=('dcron')
-backup=('etc/fcron/fcron.conf'
-        'etc/fcron/fcron.allow'
-        'etc/fcron/fcron.deny'
-        'var/spool/fcron/systab'
-        'var/spool/fcron/systab.orig')
-options=('emptydirs' '!makeflags')
-source=("http://fcron.free.fr/archives/$pkgname-$pkgver.src.tar.gz"
-        'systab'
-        'systab.orig'
-        'run-cron')
-md5sums=('36bf213e15f3a480f2274f8e46cced0a'
-         '55be3e80fb2545608feae6f2e0eebece'
-         '5384c607d842ca3d5cbb612ac1dceb15'
-         '524eba827447a6b7ef7515eedf305698')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-              --sbindir=/usr/bin \
-              --sysconfdir=/etc/fcron \
-              --with-answer-all=no \
-              --with-boot-install=no \
-              --with-username=root \
-              --with-groupname=root \
-              --datarootdir=/usr/share \
-              --datadir=/usr/share \
-              --with-docdir=/usr/share/doc \
-              --localstatedir=/var \
-              --with-systemdsystemunitdir=/usr/lib/systemd/system \
-              --with-piddir=/run \
-              --with-editor=/usr/bin/vi \
-              --with-sendmail=/usr/sbin/sendmail
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir/" install
-  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcron.pam" "$pkgdir/etc/pam.d/fcron"
-
-  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcrontab.pam" "$pkgdir/etc/pam.d/fcrontab"
-  # Install default fcrontab so that fcron can completely replace dcron
-
-  install -D -m640 "$srcdir/systab" "$pkgdir/var/spool/fcron/systab"
-  # In order to preserve the systab crontab in any case it is better to have
-  # it in non-binary form too
-  install -D -m640 "$srcdir/systab.orig" "$pkgdir/var/spool/fcron/systab.orig"
-
-  # Add cron.* directories
-  install -d -m755 "$pkgdir/etc/cron.daily"
-  install -d -m755 "$pkgdir/etc/cron.hourly"
-  install -d -m755 "$pkgdir/etc/cron.monthly"
-  install -d -m755 "$pkgdir/etc/cron.weekly"
-
-  # Install run-cron script to make fcron run without dcron
-  install -D -m755 "$srcdir/run-cron" "$pkgdir/usr/bin/run-cron"
-
-  # avoid conflict with filesystem>=2012.06
-  rmdir "$pkgdir"/{var/,}run
-
-  # avoid conflict with libbsd - #31259
-  rm "$pkgdir/usr/share/man/man3/bitstring.3" \
-    "$pkgdir/usr/share/man/fr/man3/bitstring.3"
-  rmdir --ignore-fail-on-non-empty "$pkgdir/usr/share/man/man3" \
-    "$pkgdir/usr/share/man/fr/man3"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fcron/repos/community-i686/PKGBUILD (from rev 91395, fcron/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-05-21 19:34:28 UTC (rev 91396)
@@ -0,0 +1,84 @@
+# $Id$
+# Contributor: Giorgio Lando <lando at imap dot cc>
+# Contributor: Sergej Pupykin
+# Contributor: Thomas Bächler
+# Contributor: Sébastien Luttringer
+# Maintainer: Thorsten Töpper <atsutane-tu at freethoughts.de>
+
+pkgname=fcron
+pkgver=3.1.2
+pkgrel=6
+pkgdesc='Feature-rich cron implementation'
+arch=(i686 x86_64)
+url='http://fcron.free.fr'
+license=('GPL')
+depends=('pam' 'run-parts')
+makedepends=('smtp-forwarder' 'vi')
+optdepends=('smtp-forwarder: to send mails from cron jobs'
+            'vi: default editor for fcrontab')
+provides=('cron')
+conflicts=('dcron')
+backup=('etc/fcron/fcron.conf'
+        'etc/fcron/fcron.allow'
+        'etc/fcron/fcron.deny'
+        'var/spool/fcron/systab'
+        'var/spool/fcron/systab.orig')
+options=('emptydirs' '!makeflags')
+source=("http://fcron.free.fr/archives/$pkgname-$pkgver.src.tar.gz"
+        'systab'
+        'systab.orig')
+md5sums=('36bf213e15f3a480f2274f8e46cced0a'
+         '5f321747d86686f351ada7dce5774803'
+         'afecbfd98caa49e8e4aa239fa1b19255')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+              --sbindir=/usr/bin \
+              --sysconfdir=/etc/fcron \
+              --with-answer-all=no \
+              --with-boot-install=no \
+              --with-username=root \
+              --with-groupname=root \
+              --datarootdir=/usr/share \
+              --datadir=/usr/share \
+              --with-docdir=/usr/share/doc \
+              --localstatedir=/var \
+              --with-systemdsystemunitdir=/usr/lib/systemd/system \
+              --with-piddir=/run \
+              --with-editor=/usr/bin/vi \
+              --with-sendmail=/usr/sbin/sendmail
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir/" install
+  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcron.pam" "$pkgdir/etc/pam.d/fcron"
+
+  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcrontab.pam" "$pkgdir/etc/pam.d/fcrontab"
+  # Install default fcrontab so that fcron can completely replace dcron
+
+  install -D -m640 "$srcdir/systab" "$pkgdir/var/spool/fcron/systab"
+  # In order to preserve the systab crontab in any case it is better to have
+  # it in non-binary form too
+  install -D -m640 "$srcdir/systab.orig" "$pkgdir/var/spool/fcron/systab.orig"
+
+  # Add cron.* directories
+  install -d -m755 "$pkgdir/etc/cron.daily"
+  install -d -m755 "$pkgdir/etc/cron.hourly"
+  install -d -m755 "$pkgdir/etc/cron.monthly"
+  install -d -m755 "$pkgdir/etc/cron.weekly"
+
+  # avoid conflict with filesystem>=2012.06
+  rmdir "$pkgdir"/{var/,}run
+
+  # avoid conflict with libbsd - #31259
+  rm "$pkgdir/usr/share/man/man3/bitstring.3" \
+    "$pkgdir/usr/share/man/fr/man3/bitstring.3"
+  rmdir --ignore-fail-on-non-empty "$pkgdir/usr/share/man/man3" \
+    "$pkgdir/usr/share/man/fr/man3"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/run-cron
===================================================================
--- community-i686/run-cron	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-i686/run-cron	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-
-if [[ -z "$1" ]]; then
-   echo "Usage: $0 crondir"
-   exit 1
-fi
-
-for cron in "$1"/* ; do
-  if [[ -x "$cron" ]]; then
-     "$cron"
-  fi
-done
-unset cron

Deleted: community-i686/systab
===================================================================
(Binary files differ)

Copied: fcron/repos/community-i686/systab (from rev 91395, fcron/trunk/systab)
===================================================================
(Binary files differ)

Deleted: community-i686/systab.orig
===================================================================
--- community-i686/systab.orig	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-i686/systab.orig	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,4 +0,0 @@
-&bootrun 01 * * * *  /usr/bin/run-cron /etc/cron.hourly
-&bootrun 02 00 * * * /usr/bin/run-cron /etc/cron.daily
-&bootrun 22 00 * * 0 /usr/bin/run-cron /etc/cron.weekly
-&bootrun 42 00 1 * * /usr/bin/run-cron /etc/cron.monthly

Copied: fcron/repos/community-i686/systab.orig (from rev 91395, fcron/trunk/systab.orig)
===================================================================
--- community-i686/systab.orig	                        (rev 0)
+++ community-i686/systab.orig	2013-05-21 19:34:28 UTC (rev 91396)
@@ -0,0 +1,4 @@
+&bootrun 01 * * * *  /usr/bin/run-parts /etc/cron.hourly
+&bootrun 02 00 * * * /usr/bin/run-parts /etc/cron.daily
+&bootrun 22 00 * * 0 /usr/bin/run-parts /etc/cron.weekly
+&bootrun 42 00 1 * * /usr/bin/run-parts /etc/cron.monthly

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-x86_64/PKGBUILD	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,89 +0,0 @@
-# $Id$
-# Contributor: Giorgio Lando <lando at imap dot cc>
-# Contributor: Sergej Pupykin
-# Contributor: Thomas Bächler
-# Contributor: Sébastien Luttringer
-# Maintainer: Thorsten Töpper <atsutane-tu at freethoughts.de>
-
-pkgname=fcron
-pkgver=3.1.2
-pkgrel=5
-pkgdesc='Feature-rich cron implementation'
-arch=(i686 x86_64)
-url='http://fcron.free.fr'
-license=('GPL')
-depends=('pam')
-makedepends=('smtp-server' 'vi')
-optdepends=('smtp-server: to receive mails from cron jobs'
-            'vi: default editor for fcrontab')
-provides=('cron')
-conflicts=('dcron')
-backup=('etc/fcron/fcron.conf'
-        'etc/fcron/fcron.allow'
-        'etc/fcron/fcron.deny'
-        'var/spool/fcron/systab'
-        'var/spool/fcron/systab.orig')
-options=('emptydirs' '!makeflags')
-source=("http://fcron.free.fr/archives/$pkgname-$pkgver.src.tar.gz"
-        'systab'
-        'systab.orig'
-        'run-cron')
-md5sums=('36bf213e15f3a480f2274f8e46cced0a'
-         '55be3e80fb2545608feae6f2e0eebece'
-         '5384c607d842ca3d5cbb612ac1dceb15'
-         '524eba827447a6b7ef7515eedf305698')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-              --sbindir=/usr/bin \
-              --sysconfdir=/etc/fcron \
-              --with-answer-all=no \
-              --with-boot-install=no \
-              --with-username=root \
-              --with-groupname=root \
-              --datarootdir=/usr/share \
-              --datadir=/usr/share \
-              --with-docdir=/usr/share/doc \
-              --localstatedir=/var \
-              --with-systemdsystemunitdir=/usr/lib/systemd/system \
-              --with-piddir=/run \
-              --with-editor=/usr/bin/vi \
-              --with-sendmail=/usr/sbin/sendmail
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir/" install
-  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcron.pam" "$pkgdir/etc/pam.d/fcron"
-
-  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcrontab.pam" "$pkgdir/etc/pam.d/fcrontab"
-  # Install default fcrontab so that fcron can completely replace dcron
-
-  install -D -m640 "$srcdir/systab" "$pkgdir/var/spool/fcron/systab"
-  # In order to preserve the systab crontab in any case it is better to have
-  # it in non-binary form too
-  install -D -m640 "$srcdir/systab.orig" "$pkgdir/var/spool/fcron/systab.orig"
-
-  # Add cron.* directories
-  install -d -m755 "$pkgdir/etc/cron.daily"
-  install -d -m755 "$pkgdir/etc/cron.hourly"
-  install -d -m755 "$pkgdir/etc/cron.monthly"
-  install -d -m755 "$pkgdir/etc/cron.weekly"
-
-  # Install run-cron script to make fcron run without dcron
-  install -D -m755 "$srcdir/run-cron" "$pkgdir/usr/bin/run-cron"
-
-  # avoid conflict with filesystem>=2012.06
-  rmdir "$pkgdir"/{var/,}run
-
-  # avoid conflict with libbsd - #31259
-  rm "$pkgdir/usr/share/man/man3/bitstring.3" \
-    "$pkgdir/usr/share/man/fr/man3/bitstring.3"
-  rmdir --ignore-fail-on-non-empty "$pkgdir/usr/share/man/man3" \
-    "$pkgdir/usr/share/man/fr/man3"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fcron/repos/community-x86_64/PKGBUILD (from rev 91395, fcron/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-05-21 19:34:28 UTC (rev 91396)
@@ -0,0 +1,84 @@
+# $Id$
+# Contributor: Giorgio Lando <lando at imap dot cc>
+# Contributor: Sergej Pupykin
+# Contributor: Thomas Bächler
+# Contributor: Sébastien Luttringer
+# Maintainer: Thorsten Töpper <atsutane-tu at freethoughts.de>
+
+pkgname=fcron
+pkgver=3.1.2
+pkgrel=6
+pkgdesc='Feature-rich cron implementation'
+arch=(i686 x86_64)
+url='http://fcron.free.fr'
+license=('GPL')
+depends=('pam' 'run-parts')
+makedepends=('smtp-forwarder' 'vi')
+optdepends=('smtp-forwarder: to send mails from cron jobs'
+            'vi: default editor for fcrontab')
+provides=('cron')
+conflicts=('dcron')
+backup=('etc/fcron/fcron.conf'
+        'etc/fcron/fcron.allow'
+        'etc/fcron/fcron.deny'
+        'var/spool/fcron/systab'
+        'var/spool/fcron/systab.orig')
+options=('emptydirs' '!makeflags')
+source=("http://fcron.free.fr/archives/$pkgname-$pkgver.src.tar.gz"
+        'systab'
+        'systab.orig')
+md5sums=('36bf213e15f3a480f2274f8e46cced0a'
+         '5f321747d86686f351ada7dce5774803'
+         'afecbfd98caa49e8e4aa239fa1b19255')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+              --sbindir=/usr/bin \
+              --sysconfdir=/etc/fcron \
+              --with-answer-all=no \
+              --with-boot-install=no \
+              --with-username=root \
+              --with-groupname=root \
+              --datarootdir=/usr/share \
+              --datadir=/usr/share \
+              --with-docdir=/usr/share/doc \
+              --localstatedir=/var \
+              --with-systemdsystemunitdir=/usr/lib/systemd/system \
+              --with-piddir=/run \
+              --with-editor=/usr/bin/vi \
+              --with-sendmail=/usr/sbin/sendmail
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir/" install
+  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcron.pam" "$pkgdir/etc/pam.d/fcron"
+
+  install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcrontab.pam" "$pkgdir/etc/pam.d/fcrontab"
+  # Install default fcrontab so that fcron can completely replace dcron
+
+  install -D -m640 "$srcdir/systab" "$pkgdir/var/spool/fcron/systab"
+  # In order to preserve the systab crontab in any case it is better to have
+  # it in non-binary form too
+  install -D -m640 "$srcdir/systab.orig" "$pkgdir/var/spool/fcron/systab.orig"
+
+  # Add cron.* directories
+  install -d -m755 "$pkgdir/etc/cron.daily"
+  install -d -m755 "$pkgdir/etc/cron.hourly"
+  install -d -m755 "$pkgdir/etc/cron.monthly"
+  install -d -m755 "$pkgdir/etc/cron.weekly"
+
+  # avoid conflict with filesystem>=2012.06
+  rmdir "$pkgdir"/{var/,}run
+
+  # avoid conflict with libbsd - #31259
+  rm "$pkgdir/usr/share/man/man3/bitstring.3" \
+    "$pkgdir/usr/share/man/fr/man3/bitstring.3"
+  rmdir --ignore-fail-on-non-empty "$pkgdir/usr/share/man/man3" \
+    "$pkgdir/usr/share/man/fr/man3"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/run-cron
===================================================================
--- community-x86_64/run-cron	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-x86_64/run-cron	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-
-if [[ -z "$1" ]]; then
-   echo "Usage: $0 crondir"
-   exit 1
-fi
-
-for cron in "$1"/* ; do
-  if [[ -x "$cron" ]]; then
-     "$cron"
-  fi
-done
-unset cron

Deleted: community-x86_64/systab
===================================================================
(Binary files differ)

Copied: fcron/repos/community-x86_64/systab (from rev 91395, fcron/trunk/systab)
===================================================================
(Binary files differ)

Deleted: community-x86_64/systab.orig
===================================================================
--- community-x86_64/systab.orig	2013-05-21 19:34:17 UTC (rev 91395)
+++ community-x86_64/systab.orig	2013-05-21 19:34:28 UTC (rev 91396)
@@ -1,4 +0,0 @@
-&bootrun 01 * * * *  /usr/bin/run-cron /etc/cron.hourly
-&bootrun 02 00 * * * /usr/bin/run-cron /etc/cron.daily
-&bootrun 22 00 * * 0 /usr/bin/run-cron /etc/cron.weekly
-&bootrun 42 00 1 * * /usr/bin/run-cron /etc/cron.monthly

Copied: fcron/repos/community-x86_64/systab.orig (from rev 91395, fcron/trunk/systab.orig)
===================================================================
--- community-x86_64/systab.orig	                        (rev 0)
+++ community-x86_64/systab.orig	2013-05-21 19:34:28 UTC (rev 91396)
@@ -0,0 +1,4 @@
+&bootrun 01 * * * *  /usr/bin/run-parts /etc/cron.hourly
+&bootrun 02 00 * * * /usr/bin/run-parts /etc/cron.daily
+&bootrun 22 00 * * 0 /usr/bin/run-parts /etc/cron.weekly
+&bootrun 42 00 1 * * /usr/bin/run-parts /etc/cron.monthly




More information about the arch-commits mailing list