OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Michael van Elst
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-web, openpkg-src Date: 04-Dec-2002 15:31:37
Branch: HEAD Handle: 2002120414313601
Added files:
openpkg-src/inn inn-watch.patch
Modified files:
openpkg-src/inn inn.spec
openpkg-web news.txt
Log:
workaround for BSD /bin/sh deficiencies
Summary:
Revision Changes Path
1.1 +17 -0 openpkg-src/inn/inn-watch.patch
1.49 +3 -1 openpkg-src/inn/inn.spec
1.2188 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
Index: openpkg-src/inn/inn-watch.patch
============================================================
$ cvs update -p -r1.1 inn-watch.patch
--- inn-2.3.3/scripts/innwatch.in.dist Wed Dec 4 15:02:05 2002
+++ inn-2.3.3/scripts/innwatch.in Wed Dec 4 15:05:21 2002
@@ -126,7 +126,12 @@
NEXTSLEEP=1
HASEXITED=false
-while { sleep ${NEXTSLEEP} & wait; } ; : ; do
+SLEEPTINY=1
+while { sleep ${SLEEPTINY} & wait; } ; : ; do
+ NEXTSLEEP=`expr ${NEXTSLEEP} - ${SLEEPTINY}`
+ if [ $NEXTSLEEP -gt 0 ]; then
+ continue;
+ fi
NEXTSLEEP=${INNWATCHSLEEPTIME}
## If news.daily is running, idle: we don't want to change the
Index: openpkg-src/inn/inn.spec
============================================================
$ cvs diff -u -r1.48 -r1.49 inn.spec
--- openpkg-src/inn/inn.spec 12 Nov 2002 13:31:09 -0000 1.48
+++ openpkg-src/inn/inn.spec 4 Dec 2002 14:31:37 -0000 1.49
@@ -37,7 +37,7 @@
Group: News
License: ISC
Version: %{V_inn}
-Release: 20021112
+Release: 20021204
# list of sources
Source0: ftp://ftp.isc.org/isc/inn/inn-%{V_inn}.tar.gz
@@ -45,6 +45,7 @@
Source2: rc.inn
Source3: fsl.inn
Patch0: inn-db4.patch
+Patch1: inn-watch.patch
# build information
Prefix: %{l_prefix}
@@ -63,6 +64,7 @@
%setup0 -q -c
%setup1 -q -T -D -a 1
%patch0 -p0
+ %patch1 -p0
%build
# build inn
Index: openpkg-web/news.txt
============================================================
$ cvs diff -u -r1.2187 -r1.2188 news.txt
--- openpkg-web/news.txt 4 Dec 2002 10:41:17 -0000 1.2187
+++ openpkg-web/news.txt 4 Dec 2002 14:31:36 -0000 1.2188
@@ -1,3 +1,4 @@
+04-Dec-2002: Upgraded package: P<inn-2.3.3-20021204>
04-Dec-2002: Upgraded package: P<openpkg-20021204-20021204>
04-Dec-2002: Upgraded package: P<cfengine-2.0.5pre2-20021204>
04-Dec-2002: Upgraded package: P<samhain-1.6.3-20021204>
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]