Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] PERFORCE change 76927 by Eric Sandall for review

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Perforce Review Daemon <p4review AT smee.org>
  • To: "Andraž " ruskie " Levstik" <ruskie AT mages.ath.cx>, "Andrew Stitt" <a AT t.armory.com>, "Arjan Bouter" <abouter AT gmail.com>, "Arwed von Merkatz" <v.merkatz AT gmx.net>, "SM-Commit Daemon" <sm-commit AT lists.ibiblio.org>, "David Kowis" <dkowis+smgl-p4 AT shlrm.org>, "duane_malcolm" <d.malcolm AT auckland.ac.nz>, "Eric Sandall" <eric AT sandall.us>, "Ethan Grammatikidis" <eekee AT eekee.is-a-geek.org>, "Gareth Clay" <gareth AT caffeinefuelled.co.uk>, "George J. Sherwood" <george AT beernabeer.com>, "Jason Flatt" <jflatt AT sourcemage.org>, "Jeremy Blosser" <jblosser AT sourcemage.org>, "Juuso Alasuutari" <iuso AT sourcemage.org>, "Ladislav Hagara" <ladislav.hagara AT unob.cz>, "Maurizio Boriani" <baux AT member.fsf.org>, "Pieter Lenaerts" <e-type AT sourcemage.org>, "Pol Vinogradov" <vin.public AT gmail.com>, "Robin Cook" <rcook AT wyrms.net>, "Unet" <unet AT sourcemage.org>, "vladimir_marek" <vlmarek AT volny.cz>
  • Subject: [SM-Commit] PERFORCE change 76927 by Eric Sandall for review
  • Date: Tue, 28 Mar 2006 19:20:02 +0100 (BST)

Change 76927 by eric_sandall@sandalle-moby on 2006/03/28 19:15:48

* DETAILS: Added PATCHLEVEL so people get the boinc init script
(if they
haven't already) and so people with the current init script get
the fixed
version (also so wxgtk-no-unicode gets marked as optional ;)).
* DEPENDS: Made wxgtk-no-unicode optional (again...)
Added missing '&&' after first if/fi
* init.d/boinc: Fixed missing quote
BOINC_PRAMS -> BOINC_PARMS
Removed unecessary '-r' in rm for PIDFILE
Removed quotes around the `su - boinc -c ...` command

Affected files ...

... //sgl/grimoires/test/science/boinc/DEPENDS#6 integrate
... //sgl/grimoires/test/science/boinc/HISTORY#9 integrate
... //sgl/grimoires/test/science/boinc/init.d/boinc#3 integrate

Differences ...

==== //sgl/grimoires/test/science/boinc/DEPENDS#6 (xtext) ====

@@ -2,10 +2,15 @@
depends automake &&
depends g++ &&
depends curl &&
+
if [[ $BOINC_PARTS == both || $BOINC_PARTS == client ]]
then
- depends wxgtk-no-unicode '--with-wx-config=wx-config'
-fi
+ optional_depends wxgtk-no-unicode \
+ '--with-wx-config=wx-config' \
+ '' \
+ 'for wxGTK-based GUI'
+fi &&
+
if [[ $BOINC_PARTS == both || $BOINC_PARTS == server ]]
then
depends mysql 'MYSQL_CONFIG=mysql_config'

==== //sgl/grimoires/test/science/boinc/HISTORY#9 (text) ====

@@ -1,3 +1,14 @@
+2006-03-28 Eric Sandall <eric AT sandall.us>
+ * DETAILS: Added PATCHLEVEL so people get the boinc init script (if
they
+ haven't already) and so people with the current init script get the
fixed
+ version (also so wxgtk-no-unicode gets marked as optional ;)).
+ * DEPENDS: Made wxgtk-no-unicode optional (again...)
+ Added missing '&&' after first if/fi
+ * init.d/boinc: Fixed missing quote
+ BOINC_PRAMS -> BOINC_PARMS
+ Removed unecessary '-r' in rm for PIDFILE
+ Removed quotes around the `su - boinc -c ...` command
+
2006-03-26 David Brown <dmlb2000 AT gmail.com>
* PRE_BUILD: added patch for loss of presision when type casting a
void
pointer to an int
@@ -19,9 +30,9 @@
* FINAL: fixed ending &&

2006-03-25 Robin Cook <rcook AT wyrms.net>
- * BUILD: added create_account
- * init.d: added to start on boot up
- * FINAL: added for message
+ * BUILD: added create_account
+ * init.d: added to start on boot up
+ * FINAL: added for message

2006-03-25 Eric Sandall <eric AT sandall.us>
* DEPENDS: Make wxgtk-no-unicode dependency optional

==== //sgl/grimoires/test/science/boinc/init.d/boinc#3 (xtext) ====

@@ -29,17 +29,17 @@
chown boinc:boinc ${BOINC_HOME}
echo "Starting $NAME..."
cd ${BOINC_HOME}
- su - ${BOINC_USER} -c "cd ${BOINC_HOME}; exec ${PROGRAM} ${ARGS}
-attach_project ${BOINC_URL} ${BOINC_KEY} ${BOINC_PRAMS} >> ${BOINC_LOG}
2>>${$BOINC_ERROR} &
+ su - ${BOINC_USER} -c cd ${BOINC_HOME}; exec ${PROGRAM} ${ARGS}
-attach_project ${BOINC_URL} ${BOINC_KEY} ${BOINC_PARMS} >> ${BOINC_LOG}
2>>${$BOINC_ERROR} &
else
echo "Starting $NAME..."
cd ${BOINC_HOME}
- su - ${BOINC_USER} -c "cd ${BOINC_HOME}; exec ${PROGRAM} ${ARGS}
${BOINC_PRAMS} >> ${BOINC_LOG} 2>>${BOINC_ERROR}" &
+ su - ${BOINC_USER} -c cd ${BOINC_HOME}; exec ${PROGRAM} ${ARGS}
${BOINC_PARMS} >> ${BOINC_LOG} 2>>${BOINC_ERROR} &
fi
}

function stop() {
echo "Stopping $NAME..."
killall -HUP ${PROGRAM}
- rm -rf ${PIDFILE}
+ rm -f ${PIDFILE}
}




  • [SM-Commit] PERFORCE change 76927 by Eric Sandall for review, Perforce Review Daemon, 03/28/2006

Archive powered by MHonArc 2.6.24.

Top of Page