sm-grimoire AT lists.ibiblio.org
Subject: Discussion of Spells and Grimoire items
List archive
[SM-Grimoire] Fwd: PERFORCE change 10068 for review - PROVIDES change for all GURU's!
- From: "Eric Schabell M.Sc." <eschabell AT sourcemage.org>
- To: sm-grimoire AT lists.ibiblio.org
- Subject: [SM-Grimoire] Fwd: PERFORCE change 10068 for review - PROVIDES change for all GURU's!
- Date: Wed, 5 Mar 2003 08:33:47 +0000
Howdy all,
Note the change taking place below, read history file for details.
/*
* Eric Schabell M.Sc.
* web: http://www.schabell.com
* SourceMage: http://www.sourcemage.org
* Shopping: http://www.cafeshops.com/cp/store.aspx?s=sourcemage.0
* irc.openprojects.net (#sourcemage)
* nick -> erics
*/
Change 10068 by christopher_brien@cbrien-orthanc on 2003/03/04 21:44:27
* Bug #2716: The PROVIDES file can now be upper-cased. Support for
lower-case provides files will be removed. This is to increase
consistency.
Affected files ...
.. //sgl/devel/sorcery/ChangeLog#23 edit
.. //sgl/devel/sorcery/usr/sbin/gaze#5 edit
.. //sgl/devel/sorcery/var/lib/sorcery/modules/libsorcery#3 edit
Differences ...
==== //sgl/devel/sorcery/ChangeLog#23 (text) ====
5a6,8
> * Bug #2716: The PROVIDES file can now be upper-cased. Support for
> lower-case provides files will be removed. This is to increase
> consistency.
==== //sgl/devel/sorcery/usr/sbin/gaze#5 (xtext) ====
592,593c592,593
< if [ -f $SPELL/provides ] &&
< grep -q -i "$1" $SPELL/provides
---
> if [ -f $SPELL/PROVIDES ] &&
> grep -q -i "$1" $SPELL/PROVIDES
594a595,600
> else
> # FIXME: Remove lowercase provides in a few days.
> if [ -f $SPELL/provides ] &&
> grep -q -i "$1" $SPELL/provides
> then echo "$( basename $SPELL )"
> fi
==== //sgl/devel/sorcery/var/lib/sorcery/modules/libsorcery#3 (xtext) ====
1629c1629,1631
< for PROVIDER in $( find $GRIMOIRENAME -follow -name provides
); do
---
> # FIXME: Remove lowercase "provides" in a few days.
> for PROVIDER in $( find $GRIMOIRENAME -follow -name provides \
> -or name PROVIDES); do
----- End forwarded message -----
>From shivaken AT jcom.home.ne.jp Wed Mar 5 06:14:25 2003
Return-Path: <shivaken AT jcom.home.ne.jp>
Delivered-To: sm-grimoire AT lists.ibiblio.org
Received: from femail21.im.home.ne.jp (femail21.im.home.ne.jp
[203.165.11.236])
by happyhouse.metalab.unc.edu (Postfix) with ESMTP id C49BE20043
for <sm-grimoire AT lists.ibiblio.org>;
Wed, 5 Mar 2003 06:14:24 -0500 (EST)
Received: by femail21.im.home.ne.jp with ESMTP
<20030305111550.FCQM1074.femail21.im.home.ne.jp AT smtp202.mf.home.ne.jp>;
Wed, 5 Mar 2003 20:15:50 +0900
Received: from 192.168.1.21 (61-22-130-253.home.ne.jp [61.22.130.253])
by smtp202.mf.home.ne.jp (s23030400) with ESMTP id h25BFmNE006170;
Wed, 5 Mar 2003 20:15:49 +0900 (JST)
From: shivaken <shivaken AT jcom.home.ne.jp>
To: Dufflebunk <dufflebunk AT dufflebunk.homeip.net>,
Craig Dyke <grail AT enterprize.net.au>
Subject: Re: [SM-Grimoire] cast -kill
Date: Wed, 5 Mar 2003 20:29:07 +0000
User-Agent: KMail/1.5
References: <004201c2dbf0$48761f50$0100a8c0@a1100>
<1046830688.6831.110.camel AT dufflebunk.homeip.net>
In-Reply-To: <1046830688.6831.110.camel AT dufflebunk.homeip.net>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-2022-jp"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200303052029.07259.shivaken AT jcom.home.ne.jp>
cc: Grimoire <sm-grimoire AT lists.ibiblio.org>
X-BeenThere: sm-grimoire AT lists.ibiblio.org
X-Mailman-Version: 2.1.1
Precedence: list
List-Id: Discussion of Spells and Grimoire items
<sm-grimoire.lists.ibiblio.org>
List-Unsubscribe: <http://lists.ibiblio.org/mailman/listinfo/sm-grimoire>,
<mailto:sm-grimoire-request AT lists.ibiblio.org?subject=unsubscribe>
List-Archive: <https://lists.ibiblio.org/sympa/arc/sm-grimoire>
List-Post: <mailto:sm-grimoire AT lists.ibiblio.org>
List-Help: <mailto:sympa AT lists.ibiblio.org?subject=HELP>
List-Subscribe: <http://lists.ibiblio.org/mailman/listinfo/sm-grimoire>,
<mailto:sm-grimoire-request AT lists.ibiblio.org?subject=subscribe>
X-List-Received-Date: Wed, 05 Mar 2003 11:14:26 -0000
Hi.
I prefer using trap.
like...
-------------------------------------------------------
#!/bin/sh
finalize() {
rm /tmp/xxxxxx
kill something
exit 1
}
main() {
trap finalize 1 2 3 15
execute something like cast...
}
--------------------------------------------------------
In this way, you don't have to do anything, after Crtl C.
-- shivaken
On Wednesday 05 March 2003 02:18, Dufflebunk wrote:
> Not a bad idea... if the PIDs were kept track of at all. I find that a
> 'pkill cast summon wget' works nicely.
>
> On Mon, 2003-02-24 at 05:34, Craig Dyke wrote:
> > Not sure if this a valid arguement or not but lately I have found it
> > necessary to
> > start a cast and then end it with Ctrl C. As most of you would be aware
> > this only
> > terminates the interface and not the wgets and so on that were fired off
> > due to
> > original request.
> >
> > I was wondering if it were possible to have a 'cast -kill <spell>' option
> > which could
> > be run in an alternate window to either kill spell listed or all casting
> > if no spell?
> >
> > Just thought it might save some downtime.
> >
> > Craig
> >
> >
> >
> > _______________________________________________
> > SM-Grimoire mailing list
> > SM-Grimoire AT lists.ibiblio.org
> > http://lists.ibiblio.org/mailman/listinfo/sm-grimoire
>
> _______________________________________________
> SM-Grimoire mailing list
> SM-Grimoire AT lists.ibiblio.org
> http://lists.ibiblio.org/mailman/listinfo/sm-grimoire
- [SM-Grimoire] Fwd: PERFORCE change 10068 for review - PROVIDES change for all GURU's!, Eric Schabell M.Sc., 03/05/2003
Archive powered by MHonArc 2.6.24.