Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (400dc703c3848b490b0ad4e695874eba9a8791f1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Lubomir Blaha <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (400dc703c3848b490b0ad4e695874eba9a8791f1)
  • Date: Thu, 31 Jan 2008 13:38:11 -0600

GIT changes to master grimoire by Lubomir Blaha <tritol AT trilogic.cz>:

science/boinc/BUILD | 2 +-
science/boinc/CONFIGURE | 2 +-
science/boinc/CONFLICTS | 1 +
science/boinc/DEPENDS | 18 +++++++++---------
science/boinc/DETAILS | 10 ++++++----
science/boinc/HISTORY | 7 +++++++
science/boinc/INSTALL | 4 ++--
science/boinc/init.d/boinc | 2 +-
8 files changed, 28 insertions(+), 18 deletions(-)

New commits:
commit 400dc703c3848b490b0ad4e695874eba9a8791f1
Author: Lubomir Blaha <tritol AT trilogic.cz>
Commit: Lubomir Blaha <tritol AT trilogic.cz>

boinc: changed cvs to subversion, changed dependency wxgtk-no-unicode to
wxgtk.

diff --git a/science/boinc/BUILD b/science/boinc/BUILD
index 4a685af..b77c3bb 100755
--- a/science/boinc/BUILD
+++ b/science/boinc/BUILD
@@ -16,6 +16,6 @@ case "${SMGL_COMPAT_ARCH[0]}" in
;;
esac &&

-OPTS="$OPTS --with-gnu-ld --program-suffix=-cvs -C"
+OPTS="$OPTS --with-gnu-ld --program-suffix=-svn -C --enable-unicode"

default_build
diff --git a/science/boinc/CONFIGURE b/science/boinc/CONFIGURE
index 973c5aa..8f42ae8 100755
--- a/science/boinc/CONFIGURE
+++ b/science/boinc/CONFIGURE
@@ -1,4 +1,4 @@
config_query_list BOINC_PARTS "Which part of boinc would you like to build?"
\
both client server
&&

-config_query BOINC_SETUID "Install boinc_client-cvs setuid/setgid so it
always runs as the boinc user?" y
+config_query BOINC_SETUID "Install boinc_client-svn setuid/setgid so it
always runs as the boinc user?" y
diff --git a/science/boinc/CONFLICTS b/science/boinc/CONFLICTS
new file mode 100755
index 0000000..c8dbfb2
--- /dev/null
+++ b/science/boinc/CONFLICTS
@@ -0,0 +1 @@
+conflicts boinc y
diff --git a/science/boinc/DEPENDS b/science/boinc/DEPENDS
index f05527c..462f162 100755
--- a/science/boinc/DEPENDS
+++ b/science/boinc/DEPENDS
@@ -1,15 +1,15 @@
-depends cvs &&
-depends autoconf &&
-depends automake &&
-depends curl &&
-depends g++ &&
-depends openssl &&
-depends psmisc &&
-depends zlib &&
+depends subversion &&
+depends autoconf &&
+depends automake &&
+depends curl &&
+depends g++ &&
+depends openssl &&
+depends psmisc &&
+depends zlib &&

if [[ $BOINC_PARTS == both || $BOINC_PARTS == client ]]
then
- optional_depends wxgtk-no-unicode \
+ optional_depends wxgtk \
'--with-wx-config=wx-config' \
'' \
'for wxGTK-based GUI'
diff --git a/science/boinc/DETAILS b/science/boinc/DETAILS
index e07d5a0..8e3d991 100755
--- a/science/boinc/DETAILS
+++ b/science/boinc/DETAILS
@@ -2,13 +2,15 @@
if [ "$BOINC_UPDATE_DAILY" == "y" ]
then
VERSION=$(date +%Y%m%d)
+ BRANCH=trunk/boinc
else
- VERSION=cvs
+ VERSION=5_10
+ BRANCH=branches/boinc_core_release_$VERSION
fi
- SOURCE=$SPELL-cvs.tar.bz2
+ SOURCE=$SPELL-svn.tar.bz2
FORCE_DOWNLOAD=on
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-cvs
-
SOURCE_URL[0]=cvs://:pserver:anonymous:@alien.ssl.berkeley.edu:/home/cvs/cvsroot:boinc:stable
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn://boinc.berkeley.edu/svn/$BRANCH:$SPELL
SOURCE_IGNORE=volatile
LICENSE[0]=GPL
PATCHLEVEL=2
diff --git a/science/boinc/HISTORY b/science/boinc/HISTORY
index 1717e5b..6355971 100644
--- a/science/boinc/HISTORY
+++ b/science/boinc/HISTORY
@@ -1,3 +1,10 @@
+2008-01-18 Lubomir Blaha <tritol AT trilogic.cz>
+ * BUILD: cvs->svn, wxgtk-no-unicode->wxgtk (option --enable-unicode)
+ * CONFIGURE, INSTALL, init.d/boinc: cvs->svn
+ * DEPENDS: cvs->subversion, wxgtk-no-unicode->wxgtk
+ * DETAILS: cvs->svn, better handling for releases
+ * CONFLICTS: defined conflict with itself (needed for upgrade from
version 5.4.x)
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/science/boinc/INSTALL b/science/boinc/INSTALL
index 797ddc0..6f5654e 100755
--- a/science/boinc/INSTALL
+++ b/science/boinc/INSTALL
@@ -1,6 +1,6 @@
default_install &&

if [ "$BOINC_SETUID" == "y" ]; then
- chown boinc:boinc $INSTALL_ROOT/usr/bin/boinc_client-cvs &&
- chmod ug+s $INSTALL_ROOT/usr/bin/boinc_client-cvs
+ chown boinc:boinc $INSTALL_ROOT/usr/bin/boinc_client-svn &&
+ chmod ug+s $INSTALL_ROOT/usr/bin/boinc_client-svn
fi
diff --git a/science/boinc/init.d/boinc b/science/boinc/init.d/boinc
index 744f91c..cc522d5 100755
--- a/science/boinc/init.d/boinc
+++ b/science/boinc/init.d/boinc
@@ -3,7 +3,7 @@
. /etc/sysconfig/boinc

PIDFILE="/var/run/boinc.pid"
-PROGRAM="/usr/bin/boinc_client-cvs"
+PROGRAM="/usr/bin/boinc_client-svn"
ARGS="-dir ${BOINC_HOME}"
RUNLEVEL=3
NEEDS="+network +remote_fs"



  • [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (400dc703c3848b490b0ad4e695874eba9a8791f1), Lubomir Blaha, 01/31/2008

Archive powered by MHonArc 2.6.24.

Top of Page