Author: ks156
Date: 2009-03-18 09:59:26 +0100 (Wed, 18 Mar 2009)
New Revision: 4114
Added:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/firmware_installer.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/generic_install.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/misc_installer.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/sound_installer.sh
Removed:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/firmware_installer.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/generic_install.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/misc_installer.sh
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/sound_installer.sh
Log:
* Moved the installers into a sub directory
Deleted:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/firmware_installer.sh
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/firmware_installer.sh
2009-03-18 08:58:21 UTC (rev 4113)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/firmware_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -1,83 +0,0 @@
-#!/bin/bash
-#===============================================================================
-#
-# FILE: install.sh
-#
-# USAGE: ./install.sh
-#
-# DESCRIPTION:
-#
-# OPTIONS: ---
-# REQUIREMENTS: ---
-# BUGS: ---
-# NOTES: ---
-# AUTHOR: Paul Rathgeb (), [email protected]
-# COMPANY:
-# VERSION: 1.0
-# CREATED: 03/09/2009 11:12:41 AM CET
-# REVISION: ---
-#===============================================================================
-mkdir $1
-
-# Create the install file
-echo "#!/bin/bash
-[ -d \$1 ] && [[ -d \$1/uninstall ]] && /bin/bash \$1/uninstall.sh \$1
-[ -d \$1 ] || mkdir -p \$1
-cp -r $1/* \$1
-[ -d \$2/bin ] || mkdir -p \$2/bin
-cp tuxup \$2/bin/tuxup
-chmod +x \$2/bin/tuxup
-cp dfu-programmer \$2/bin/dfu-programmer
-chmod +x \$2/bin/dfu-programmer" >> $1/install.sh
-
-# Export the firmwares
-REPO=http://svn.tuxisalive.com/firmware/hex/tags/0.9.1
-svn export -q $REPO $1/$1
-
-cd $1/$1
-
-# Create the uninstaller
-echo "" > uninstall.sh
-str=""
-for file in `find . -type f`; do
- str="$str
- rm \$1/$file"
-done
-echo "#!/bin/bash
-$str
-find \$1 -type d > flist
-tac flist | while read line; do
- if [ ! \"\$(ls -A \$line)\" ]; then
- rm -r \$line
- fi
-done
-rm flist" >> uninstall.sh
-
-cd - >/dev/null
-
-# Pack dfu-programmer
-wget \
-http://kent.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-0.5.1.tar.gz
-O /tmp/dfu.tar.gz
-tar -xvf /tmp/dfu.tar.gz -C /tmp/
-cd /tmp/dfu*
-./configure; make
-pwd=`pwd`
-cd -
-cp $pwd/src/dfu-programmer $1
-rm -rf /tmp/dfu*
-
-# Pack tuxup
-svn export -q \
-http://svn.tuxisalive.com/firmware/tuxup/unix/trunk tuxup
-cd tuxup
-make
-cp tuxup ../$1
-cd -
-rm -r tuxup
-
-# Create tarball
-rev=`svn info $REPO |grep "Last Changed Rev"`
-rev=${rev##* }
-tar -czf $1.tar.gz $1
-mv $1.tar.gz $1-$rev.tar.gz
-rm -r $1
Deleted:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/generic_install.sh
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/generic_install.sh
2009-03-18 08:58:21 UTC (rev 4113)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/generic_install.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -1,55 +0,0 @@
-#!/bin/bash
-#===============================================================================
-#
-# FILE: install.sh
-#
-# USAGE: ./install.sh
-#
-# DESCRIPTION:
-#
-# OPTIONS: ---
-# REQUIREMENTS: ---
-# BUGS: ---
-# NOTES: ---
-# AUTHOR: Paul Rathgeb (), [email protected]
-# COMPANY:
-# VERSION: 1.0
-# CREATED: 03/09/2009 11:12:41 AM CET
-# REVISION: ---
-#===============================================================================
-mkdir $2
-echo "#!/bin/bash" >> $2/install.sh
-echo '[ -d $1 ] && [[ -d $1/uninstall ]] && /bin/bash $1/uninstall.sh $1' >>
$2/install.sh
-echo '[ -d $1 ] || mkdir -p $1' >> $2/install.sh
-cmd="cp -r $2/* "' $1'
-echo "$cmd" >> $2/install.sh
-svn export -q $1 $2/$2
-cd $2/$2
-echo "#!/bin/bash" > uninstall.sh
-echo "" >> uninstall.sh
-echo '# Remove previously installed files' >> uninstall.sh
-for file in `find . -type f`; do
- echo 'rm $1/'"$file" >> uninstall.sh
-done
-echo "" >> uninstall.sh
-echo "# Find python compiled files " >> uninstall.sh
-echo 'for file in `find $1 -iname "*.pyc"`; do' >> uninstall.sh
-echo ' rm $1/$file' >> uninstall.sh
-echo 'done' >> uninstall.sh
-echo "" >> uninstall.sh
-echo '# Check for empty dirs' >> uninstall.sh
-echo 'find $1 -type d > flist' >> uninstall.sh
-echo 'tac flist |' >> uninstall.sh
-echo 'while read line; do' >> uninstall.sh
-echo ' if [ ! "$(ls -A $line)" ]; then' >> uninstall.sh
-echo ' rm -r $line' >> uninstall.sh
-echo ' fi' >> uninstall.sh
-echo 'done' >> uninstall.sh
-echo 'rm flist' >> uninstall.sh
-echo "" >> uninstall.sh
-echo "# Remove the root directory if it's empty" >> uninstall.sh
-cd - >/dev/null
-rev=`svn info $1 |grep "Last Changed Rev"`
-rev=${rev##* }
-tar -czf $2-$rev.tar.gz $2
-rm -r $2
Deleted:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/misc_installer.sh
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/misc_installer.sh
2009-03-18 08:58:21 UTC (rev 4113)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/misc_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -1,37 +0,0 @@
-#!/bin/bash
-#===============================================================================
-#
-# FILE: install.sh
-#
-# USAGE: ./install.sh
-#
-# DESCRIPTION:
-#
-# OPTIONS: ---
-# REQUIREMENTS: ---
-# BUGS: ---
-# NOTES: ---
-# AUTHOR: Paul Rathgeb (), [email protected]
-# COMPANY:
-# VERSION: 1.0
-# CREATED: 03/09/2009 11:12:41 AM CET
-# REVISION: ---
-#===============================================================================
-mkdir $1
-
-# Create the install file
-echo "#!/bin/bash
-[ -d \$2/bin ] || mkdir -p \$2/bin
-
-echo \"#!/bin/bash\" > \$2/bin/tux_control_center
-echo java -jar \
-\$2/share/tuxdroid/resources/control_center/controlcenter.jar \\\$* \
->> \$2/bin/tux_control_center
-
-chmod +x \$2/bin/tux_control_center" >> $1/install.sh
-
-chmod +x *
-
-tar -czf $1.tar.gz $1
-mv $1.tar.gz $1-0.0.1.tar.gz
-rm -r $1
Copied:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/firmware_installer.sh
(from rev 4108,
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/firmware_installer.sh)
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/firmware_installer.sh
(rev 0)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/firmware_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -0,0 +1,83 @@
+#!/bin/bash
+#===============================================================================
+#
+# FILE: install.sh
+#
+# USAGE: ./install.sh
+#
+# DESCRIPTION:
+#
+# OPTIONS: ---
+# REQUIREMENTS: ---
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Paul Rathgeb (), [email protected]
+# COMPANY:
+# VERSION: 1.0
+# CREATED: 03/09/2009 11:12:41 AM CET
+# REVISION: ---
+#===============================================================================
+mkdir $1
+
+# Create the install file
+echo "#!/bin/bash
+[ -d \$1 ] && [[ -d \$1/uninstall ]] && /bin/bash \$1/uninstall.sh \$1
+[ -d \$1 ] || mkdir -p \$1
+cp -r $1/* \$1
+[ -d \$2/bin ] || mkdir -p \$2/bin
+cp tuxup \$2/bin/tuxup
+chmod +x \$2/bin/tuxup
+cp dfu-programmer \$2/bin/dfu-programmer
+chmod +x \$2/bin/dfu-programmer" >> $1/install.sh
+
+# Export the firmwares
+REPO=http://svn.tuxisalive.com/firmware/hex/tags/0.9.1
+svn export -q $REPO $1/$1
+
+cd $1/$1
+
+# Create the uninstaller
+echo "" > uninstall.sh
+str=""
+for file in `find . -type f`; do
+ str="$str
+ rm \$1/$file"
+done
+echo "#!/bin/bash
+$str
+find \$1 -type d > flist
+tac flist | while read line; do
+ if [ ! \"\$(ls -A \$line)\" ]; then
+ rm -r \$line
+ fi
+done
+rm flist" >> uninstall.sh
+
+cd - >/dev/null
+
+# Pack dfu-programmer
+wget \
+http://kent.dl.sourceforge.net/sourceforge/dfu-programmer/dfu-programmer-0.5.1.tar.gz
-O /tmp/dfu.tar.gz
+tar -xvf /tmp/dfu.tar.gz -C /tmp/
+cd /tmp/dfu*
+./configure; make
+pwd=`pwd`
+cd -
+cp $pwd/src/dfu-programmer $1
+rm -rf /tmp/dfu*
+
+# Pack tuxup
+svn export -q \
+http://svn.tuxisalive.com/firmware/tuxup/unix/trunk tuxup
+cd tuxup
+make
+cp tuxup ../$1
+cd -
+rm -r tuxup
+
+# Create tarball
+rev=`svn info $REPO |grep "Last Changed Rev"`
+rev=${rev##* }
+tar -czf $1.tar.gz $1
+mv $1.tar.gz $1-$rev.tar.gz
+rm -r $1
Property changes on:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/firmware_installer.sh
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/x-sh
Name: svn:keywords
+ Id
Name: svn:mergeinfo
+
Name: svn:eol-style
+ native
Copied:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/generic_install.sh
(from rev 4108,
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/generic_install.sh)
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/generic_install.sh
(rev 0)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/generic_install.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -0,0 +1,55 @@
+#!/bin/bash
+#===============================================================================
+#
+# FILE: install.sh
+#
+# USAGE: ./install.sh
+#
+# DESCRIPTION:
+#
+# OPTIONS: ---
+# REQUIREMENTS: ---
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Paul Rathgeb (), [email protected]
+# COMPANY:
+# VERSION: 1.0
+# CREATED: 03/09/2009 11:12:41 AM CET
+# REVISION: ---
+#===============================================================================
+mkdir $2
+echo "#!/bin/bash" >> $2/install.sh
+echo '[ -d $1 ] && [[ -d $1/uninstall ]] && /bin/bash $1/uninstall.sh $1' >>
$2/install.sh
+echo '[ -d $1 ] || mkdir -p $1' >> $2/install.sh
+cmd="cp -r $2/* "' $1'
+echo "$cmd" >> $2/install.sh
+svn export -q $1 $2/$2
+cd $2/$2
+echo "#!/bin/bash" > uninstall.sh
+echo "" >> uninstall.sh
+echo '# Remove previously installed files' >> uninstall.sh
+for file in `find . -type f`; do
+ echo 'rm $1/'"$file" >> uninstall.sh
+done
+echo "" >> uninstall.sh
+echo "# Find python compiled files " >> uninstall.sh
+echo 'for file in `find $1 -iname "*.pyc"`; do' >> uninstall.sh
+echo ' rm $1/$file' >> uninstall.sh
+echo 'done' >> uninstall.sh
+echo "" >> uninstall.sh
+echo '# Check for empty dirs' >> uninstall.sh
+echo 'find $1 -type d > flist' >> uninstall.sh
+echo 'tac flist |' >> uninstall.sh
+echo 'while read line; do' >> uninstall.sh
+echo ' if [ ! "$(ls -A $line)" ]; then' >> uninstall.sh
+echo ' rm -r $line' >> uninstall.sh
+echo ' fi' >> uninstall.sh
+echo 'done' >> uninstall.sh
+echo 'rm flist' >> uninstall.sh
+echo "" >> uninstall.sh
+echo "# Remove the root directory if it's empty" >> uninstall.sh
+cd - >/dev/null
+rev=`svn info $1 |grep "Last Changed Rev"`
+rev=${rev##* }
+tar -czf $2-$rev.tar.gz $2
+rm -r $2
Property changes on:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/generic_install.sh
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/x-sh
Name: svn:keywords
+ Id
Name: svn:mergeinfo
+
Name: svn:eol-style
+ native
Copied:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/misc_installer.sh
(from rev 4108,
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/misc_installer.sh)
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/misc_installer.sh
(rev 0)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/misc_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -0,0 +1,37 @@
+#!/bin/bash
+#===============================================================================
+#
+# FILE: install.sh
+#
+# USAGE: ./install.sh
+#
+# DESCRIPTION:
+#
+# OPTIONS: ---
+# REQUIREMENTS: ---
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Paul Rathgeb (), [email protected]
+# COMPANY:
+# VERSION: 1.0
+# CREATED: 03/09/2009 11:12:41 AM CET
+# REVISION: ---
+#===============================================================================
+mkdir $1
+
+# Create the install file
+echo "#!/bin/bash
+[ -d \$2/bin ] || mkdir -p \$2/bin
+
+echo \"#!/bin/bash\" > \$2/bin/tux_control_center
+echo java -jar \
+\$2/share/tuxdroid/resources/control_center/controlcenter.jar \\\$* \
+>> \$2/bin/tux_control_center
+
+chmod +x \$2/bin/tux_control_center" >> $1/install.sh
+
+chmod +x *
+
+tar -czf $1.tar.gz $1
+mv $1.tar.gz $1-0.0.1.tar.gz
+rm -r $1
Property changes on:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/misc_installer.sh
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/x-sh
Name: svn:keywords
+ Id
Name: svn:mergeinfo
+
Name: svn:eol-style
+ native
Copied:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/sound_installer.sh
(from rev 4108,
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/sound_installer.sh)
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/sound_installer.sh
(rev 0)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/sound_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -0,0 +1,58 @@
+#!/bin/bash
+#===============================================================================
+#
+# FILE: install.sh
+#
+# USAGE: ./install.sh
+#
+# DESCRIPTION:
+#
+# OPTIONS: ---
+# REQUIREMENTS: ---
+# BUGS: ---
+# NOTES: ---
+# AUTHOR: Paul Rathgeb (), [email protected]
+# COMPANY:
+# VERSION: 1.0
+# CREATED: 03/09/2009 11:12:41 AM CET
+# REVISION: ---
+#===============================================================================
+mkdir $1
+
+# Create the install file
+echo "#!/bin/bash
+[ -d \$1 ] && [[ -d \$1/uninstall ]] && /bin/bash \$1/uninstall.sh \$1
+[ -d \$1 ] || mkdir -p \$1
+cp -r $1/* \$1" >> $1/install.sh
+
+# Export the sounds
+REPO=http://svn.tuxisalive.com/software_suite_v1/software/tuxgi/trunk/sounds/
+svn export -q $REPO $1/$1
+
+cd $1/$1
+chmod +x *
+
+# Create the uninstaller
+echo "" > uninstall.sh
+str=""
+for file in `find . -type f`; do
+ str="$str
+ rm \$1/$file"
+done
+echo "#!/bin/bash
+$str
+find \$1 -type d > flist
+tac flist | while read line; do
+ if [ ! \"\$(ls -A \$line)\" ]; then
+ rm -r \$line
+ fi
+done
+rm flist" >> uninstall.sh
+
+cd - >/dev/null
+# Create tarball
+rev=`svn info $REPO |grep "Last Changed Rev"`
+rev=${rev##* }
+tar -czf $1.tar.gz $1
+mv $1.tar.gz $1-$rev.tar.gz
+rm -r $1
Property changes on:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/single_installers/sound_installer.sh
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ text/x-sh
Name: svn:keywords
+ Id
Name: svn:mergeinfo
+
Name: svn:eol-style
+ native
Deleted:
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/sound_installer.sh
===================================================================
---
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/sound_installer.sh
2009-03-18 08:58:21 UTC (rev 4113)
+++
software_suite_v2/tuxware/installers/unix/branches/refactoring/installers/sound_installer.sh
2009-03-18 08:59:26 UTC (rev 4114)
@@ -1,58 +0,0 @@
-#!/bin/bash
-#===============================================================================
-#
-# FILE: install.sh
-#
-# USAGE: ./install.sh
-#
-# DESCRIPTION:
-#
-# OPTIONS: ---
-# REQUIREMENTS: ---
-# BUGS: ---
-# NOTES: ---
-# AUTHOR: Paul Rathgeb (), [email protected]
-# COMPANY:
-# VERSION: 1.0
-# CREATED: 03/09/2009 11:12:41 AM CET
-# REVISION: ---
-#===============================================================================
-mkdir $1
-
-# Create the install file
-echo "#!/bin/bash
-[ -d \$1 ] && [[ -d \$1/uninstall ]] && /bin/bash \$1/uninstall.sh \$1
-[ -d \$1 ] || mkdir -p \$1
-cp -r $1/* \$1" >> $1/install.sh
-
-# Export the sounds
-REPO=http://svn.tuxisalive.com/software_suite_v1/software/tuxgi/trunk/sounds/
-svn export -q $REPO $1/$1
-
-cd $1/$1
-chmod +x *
-
-# Create the uninstaller
-echo "" > uninstall.sh
-str=""
-for file in `find . -type f`; do
- str="$str
- rm \$1/$file"
-done
-echo "#!/bin/bash
-$str
-find \$1 -type d > flist
-tac flist | while read line; do
- if [ ! \"\$(ls -A \$line)\" ]; then
- rm -r \$line
- fi
-done
-rm flist" >> uninstall.sh
-
-cd - >/dev/null
-# Create tarball
-rev=`svn info $REPO |grep "Last Changed Rev"`
-rev=${rev##* }
-tar -czf $1.tar.gz $1
-mv $1.tar.gz $1-$rev.tar.gz
-rm -r $1
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn