Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-04-06 13:16:44 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-04-06 13:16:44 (GMT)
commitfaeb35347f0d3ea78ad6fc1a20df23043fc3a602 (patch)
treeee55af09a6b401959c98415f84a08277126d8c7b /tools
parent94f36e8b7d19d7b2ac4357d1b45098b085bd66bf (diff)
Remove obsolete stuff, get rid of the tools dir.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build-snapshot.sh13
-rwxr-xr-xtools/hex-colors-to-dict18
-rwxr-xr-xtools/nicks-to-list18
-rw-r--r--tools/xinitrc7
4 files changed, 0 insertions, 56 deletions
diff --git a/tools/build-snapshot.sh b/tools/build-snapshot.sh
deleted file mode 100755
index 7d3bd11..0000000
--- a/tools/build-snapshot.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-VERSION=0.63
-DATE=`date +%Y%m%d`
-RELEASE=2.72
-TARBALL=sugar-$VERSION-$RELEASE.${DATE}git.tar.bz2
-
-rm sugar-$VERSION.tar.bz2
-
-XUL_SDK=/home/marco/sugar-jhbuild/build/lib/xulrunner-1.9a4pre-dev
-DISTCHECK_CONFIGURE_FLAGS="--with-libxul-sdk=$XUL_SDK" make distcheck
-
-mv sugar-$VERSION.tar.bz2 $TARBALL
-scp $TARBALL mpg@devserv.devel.redhat.com:~
-rm $TARBALL
diff --git a/tools/hex-colors-to-dict b/tools/hex-colors-to-dict
deleted file mode 100755
index 12138b1..0000000
--- a/tools/hex-colors-to-dict
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-
-import sys
-
-result = 'colors = [\n'
-
-hex_file = open(sys.argv[1], 'r')
-
-for line in hex_file.readlines():
- [ stroke, fill ] = line.split()
- result += '[\'#%s\', \'#%s\'], \\\n' % (fill, stroke)
-
-result += ']'
-
-hex_file.close()
-
-print result
-
diff --git a/tools/nicks-to-list b/tools/nicks-to-list
deleted file mode 100755
index b140b4c..0000000
--- a/tools/nicks-to-list
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-
-import sys
-
-result = '_nick_names = [\n'
-
-nicks_file = open(sys.argv[1], 'r')
-
-for line in nicks_file.readlines():
- name = line.strip()
- result += '\'%s\', ' % (name)
-
-result += ']'
-
-nicks_file.close()
-
-print result
-
diff --git a/tools/xinitrc b/tools/xinitrc
deleted file mode 100644
index 98eca6c..0000000
--- a/tools/xinitrc
+++ /dev/null
@@ -1,7 +0,0 @@
-PREFIX=/usr
-
-KBD_CONF=$PREFIX/share/sugar/kbdconfig
-DBUS_CONF=$PREFIX/share/sugar/dbus-installed.conf
-
-matchbox-window-manager -kbdconfig $KBD_CONF -use_titlebar no -theme olpc &
-exec dbus-launch --exit-with-session --config-file $DBUS_CONF sugar-shell