OSDN Git Service

Show utf-8 converted files only
[pukiwiki/pukiwiki_devel.git] / release_update.sh
1 #!/bin/sh
2 # $Id: release_update.sh,v 1.11 2005/03/21 14:08:50 henoheno Exp $
3 # $CVSKNIT_Id: release.sh,v 1.11 2004/05/28 14:26:24 henoheno Exp $
4 #  Release automation script for PukiWiki
5 #  ==========================================================
6    Copyright='(C) 2002-2004 minix-up project, All Rights Reserved'
7    Homepage='http://cvsknit.sourceforge.net/'
8    License='BSD Licnese, NO WARRANTY'
9 #
10
11 # Name and Usage --------------------------------------------
12 _name="` basename $0 `"
13
14 usage(){
15   warn "USAGE: $_name [options] VERSION_FROM VERSION_TO (VERSION = '1.4.3_rc1' like)"
16   warn "  Options:"
17   warn  "    -z|--zip    Create *.zip archive"
18   warn  "    --move-dist Move *.ini.php => *.ini-dist.php"
19   warn  "    --copy-dist Move, and Copy *.ini.php <= *.ini-dist.php"
20   return 1
21 }
22
23 # Common functions ------------------------------------------
24 warn(){  echo "$*" 1>&2 ; }
25 err() {  warn "Error: $*" ; exit 1 ; }
26
27 quote(){
28   test    $# -gt 0  && {  echo -n  "\"$1\"" ; shift ; }
29   while [ $# -gt 0 ] ; do echo -n " \"$1\"" ; shift ; done ; echo
30 }
31
32 trace(){
33   test "$__debug" || return 0  # (DEBUG)
34   _msg="$1" ; test $# -gt 0 && shift ; warn "  $_msg    : ` quote "$@" `"
35 }
36
37 check_versiontag(){
38   case "$1" in
39     [1-9].[0-9]              | [1-9].[0-9]                   ) tag="r$1" ;;
40     [1-9].[0-9]_rc[1-9]      | [1-9].[0-9]_rc[1-9]           ) tag="r$1" ;;
41     [1-9].[0-9].[0-9]        | [1-9].[0-9].[0-9][0-9]        ) tag="r$1" ;;
42     [1-9].[0-9].[0-9]_[a-z]* | [1-9].[0-9].[0-9][0-9]_[a-z]* ) tag="r$1" ;;
43     [1-9].[0-9].[0-9]_[1-9]  | [1-9].[0-9].[0-9][0-9]_[1-9]  ) tag="r$1" ;;
44     HEAD | r1_3_3_branch ) tag="$rel" ;;
45     '' ) usage ; return 1 ;;
46      * ) warn "Error: Invalid string: $1" ; usage ; return 1 ;;
47   esac
48   echo "$tag" | tr '.' '_'
49 }
50
51 chmod_pkg(){
52   ( cd "$1"
53     # ALL: Read only
54     find . -type d | while read line; do chmod 755 "$line"; done
55     find . -type f | while read line; do chmod 644 "$line"; done
56     # Add write permission for PukiWiki
57     chmod 777 attach backup cache counter diff trackback wiki* 2>/dev/null
58     chmod 666 wiki*/*.txt cache/*.dat cache/*.ref cache/*.rel  2>/dev/null
59   )
60 }
61
62 # Default variables -----------------------------------------
63
64 mod=pukiwiki
65 CVSROOT=":pserver:anonymous@cvs.sourceforge.jp:/cvsroot/$mod"
66
67 pkg_dir="$mod"
68
69 # Function verifying arguments ------------------------------
70
71 getopt(){ _arg=noarg
72   trace 'getopt()' "$@"  # (DEBUG)
73
74   case "$1" in
75   ''  )  echo 1 ;;
76   -[hH]|--help ) echo _help _exit ;;
77   --debug      ) echo _debug      ;;
78   -z|--zip     ) echo _zip        ;;
79   --copy-dist  ) echo _copy_dist  ;;
80   --move-dist  ) echo _move_dist  ;;
81   -d  ) echo _CVSROOT 2 ; _arg="$2" ;;
82   -*  ) warn "Error: Unknown option \"$1\"" ; return 1 ;;
83    *  ) echo OTHER ;;
84   esac
85
86   test 'x' != "x$_arg"
87 }
88
89 # Working start ---------------------------------------------
90
91 # Show arguments in one line (DEBUG)
92 case '--debug' in "$1"|"$3") false ;; * ) true ;; esac || {
93   test 'x--debug' = "x$1" && shift ; __debug=on ; trace 'Args  ' "$@"
94 }
95
96 # Parsing
97 while [ $# -gt 0 ] ; do
98   chs="` getopt "$@" `" || err "Syntax error with '$1'"
99   trace '$chs  ' "$chs"  # (DEBUG)
100
101   for ch in $chs ; do
102     case "$ch" in
103      [1-3]   ) shift $ch ;;
104      _exit   ) exit      ;;
105      _help   ) usage     ;;
106      _CVSROOT) CVSROOT="$2" ;;
107      _*      ) shift ; eval "_$ch"=on ;;
108       *      ) break 2   ;;
109     esac
110   done
111 done
112
113 # No argument
114 if [ $# -eq 0 ] ; then usage ; exit ; fi
115
116 # Argument check --------------------------------------------
117
118 rel_from="$1"
119 rel_to="$2"
120 if [ "x$rel_from" = "x$rel_to" ] ; then
121   warn "Error: VERSION_FROM and VERSION_TO is equivalent"
122   usage ; exit
123 fi
124
125 tag_from="` check_versiontag "$rel_from" `" || exit
126 tag_to="`   check_versiontag "$rel_to"   `" || exit
127
128 # -----------------------------------------------------------
129
130 # Checkout the module with VERSION_FROM
131 test ! -d "$pkg_dir" || err "There's already a directory: $pkg_dir"
132 echo cvs -z3 -d "$CVSROOT" co -r "$tag_from" -d "$pkg_dir" "$mod"
133      cvs -z3 -d "$CVSROOT" co -r "$tag_from" -d "$pkg_dir" "$mod"
134 test   -d "$pkg_dir" || err "There isn't a directory: $pkg_dir"
135
136 # Merge VERSION_FROM to VERSION_TO
137 ( cd "$pkg_dir"
138   echo cvs up -dP -j "$tag_from" -j "$tag_to"
139        cvs up -dP -j "$tag_from" -j "$tag_to"
140
141   # Cleanup backup files by cvs
142   find . -type f -name ".#*" | xargs rm -f
143 )
144
145 # Remove files those are not Added or Modified
146 echo -n "Remove files those are not Added or Modified ..."
147 ( cd "$pkg_dir"
148
149   find . -type f | grep -v /CVS/ | while read line ; do
150     result="` cvs -nq up "$line" 2>/dev/null | grep '^[AM] ' | cut -b 3- `"
151     test "x$result" != "x" || rm -f "$line"
152     echo -n "."
153   done
154   echo
155 )
156
157 # Remove CVS directories
158 echo "Remove CVS directories ..."
159 find "$pkg_dir" -type d -name "CVS" | xargs rm -Rf
160
161 # Remove '.cvsignore' if exists
162 echo find "$pkg_dir" -type f -name '.cvsignore' -delete
163      find "$pkg_dir" -type f -name '.cvsignore' -delete
164
165 # Remove emptied directories (twice)
166 find "$pkg_dir" -type d -empty | xargs rmdir
167 find "$pkg_dir" -type d -empty | xargs rmdir
168
169 # Move / Copy *.ini.php files
170 if [ 'x' != "x$__copy_dist$__move_dist" ] ; then
171 ( cd "$pkg_dir"
172
173   find . -type f -name "*.ini.php" | while read file; do
174     dist_file="` echo "$file" | sed 's/ini\.php$/ini-dist.php/' `"
175     mv -f "$file" "$dist_file"
176     test "$__copy_dist" && cp -f "$dist_file" "$file"
177   done
178 )
179 fi
180
181 # chmod
182 chmod_pkg "$pkg_dir"
183
184 if [ -z "$__zip" ]
185 then
186   # Tar
187   echo tar cf - "$pkg_dir" \| gzip -9 \> "update_$rel_to.tar.gz"
188        tar cf - "$pkg_dir"  | gzip -9  > "update_$rel_to.tar.gz"
189 else
190   # Zip
191   echo zip -r9 "update_$rel_to.zip" "$pkg_dir"
192        zip -r9 "update_$rel_to.zip" "$pkg_dir"
193 fi
194
195 #echo rm -Rf   "$pkg_dir"
196 #     rm -Rf   "$pkg_dir"
197