summaryrefslogtreecommitdiff
path: root/scripts/updateipks
authorkergoth <kergoth>2002-09-08 19:06:25 (UTC)
committer kergoth <kergoth>2002-09-08 19:06:25 (UTC)
commitcbc8b23c13fab644fd5477a18691222c752ea40f (patch) (unidiff)
treeb239a68cfeb7dc51087938b172c29c03353dd878 /scripts/updateipks
parentb7810f11be4f38de91d51f62c11ae1ae9db3754b (diff)
downloadopie-cbc8b23c13fab644fd5477a18691222c752ea40f.zip
opie-cbc8b23c13fab644fd5477a18691222c752ea40f.tar.gz
opie-cbc8b23c13fab644fd5477a18691222c752ea40f.tar.bz2
Added -force option to force a update of packages.
Diffstat (limited to 'scripts/updateipks') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/updateipks32
1 files changed, 25 insertions, 7 deletions
diff --git a/scripts/updateipks b/scripts/updateipks
index 83d945b..1c9c9b8 100755
--- a/scripts/updateipks
+++ b/scripts/updateipks
@@ -1,24 +1,36 @@
1#!/bin/sh 1#!/bin/sh
2 2
3while [ $# -ne 0 ]
4do
3case "$1" in 5case "$1" in
4-oz) 6-oz)
5 RHOST=openzaurus.sf.net 7 RHOST=openzaurus.sf.net
6 RDIR=/home/groups/o/op/openzaurus/htdocs/feeds/3.0 8 RDIR=/home/groups/o/op/openzaurus/htdocs/feeds/3.0
7 INDEXER="~/ipkg-make-index ." 9 INDEXER="~/ipkg-make-index ."
8 shift 10 ;;
11-oz-test)
12 RHOST=openzaurus.sf.net
13 RDIR=/home/groups/o/op/openzaurus/htdocs/feeds/3.0/test
14 INDEXER="~/ipkg-make-index ."
9 ;; 15 ;;
10-hh.org) 16-hh.org)
11 RHOST=opie.handhelds.org 17 RHOST=opie.handhelds.org
12 RDIR=/home/opie/website/html/feed/ipaq 18 RDIR=/home/opie/website/html/feed/ipaq
13 INDEXER="/home/opie/ipkg-make-index ." 19 INDEXER="/home/opie/ipkg-make-index ."
14 shift
15 ;; 20 ;;
16-qpe) 21-qpe)
17 RHOST=qpe.sf.net 22 RHOST=qpe.sf.net
18 RDIR=/home/groups/q/qp/qpe/htdocs/packages/ipaq/unstable 23 RDIR=/home/groups/q/qp/qpe/htdocs/packages/ipaq/unstable
19 shift 24 ;;
25-force)
26 FORCE=1
27 ;;
28*)
29 MKIPKSOPTS="$MKIPKSOPTS $1"
20 ;; 30 ;;
21esac 31esac
32shift
33done
22 34
23if [ -z "$RHOST" -o -z "$RDIR" ] 35if [ -z "$RHOST" -o -z "$RDIR" ]
24then 36then
@@ -30,17 +42,23 @@ fi
30 42
31NEW="" 43NEW=""
32rm -f *.ipk 44rm -f *.ipk
45
33ssh $RHOST -C "cd $RDIR; ls *.ipk" >currentipks & 46ssh $RHOST -C "cd $RDIR; ls *.ipk" >currentipks &
34./mkipks "$@"
35wait # for ssh 47wait # for ssh
48./mkipks $MKIPKSOPTS
36 49
37for i in *.ipk 50for i in *.ipk
38do 51do
39 if grep -q $i currentipks 52 if [ -z "$FORCE" ]
40 then 53 then
41 rm $i 54 if grep -q $i currentipks
55 then
56 rm $i
57 else
58 NEW="$NEW $i";
59 fi
42 else 60 else
43 NEW="$NEW $i"; 61 NEW="$NEW $i";
44 fi 62 fi
45done 63done
46 64