4 # vim: expandtab sw=4 ts=4 sts=4:
6 # 2005-09-13, lem9@users.sourceforge.net
7 # - no longer create a config.default.php from config.inc.php
9 # 2005-06-12, lem9@users.sourceforge.net
10 # - cvs server name changed to cvs, because cvs1 no longer works from
11 # shell.sourceforge.net
13 # 2003-08-23, nijel@users.sourceforge.net:
14 # - support for creating snapshots outside sourceforge:
15 # * cvs server name can be read from environment variable cvsserver
16 # * do not change to directories as used on sourceforge if $2 is local
18 # 2003-08-13, nijel@users.sourceforge.net:
19 # - config.default -> config.default.php
21 # 2004-08-09, lem9@users.sourceforge.net:
22 # - remember to create a new bug tracking group
24 # 2004-06-07 rabus@users.sourceforge.net
25 # - create backup config file
27 # 2004-04-29, lem9@users.sourceforge.net:
28 # - keep only the previous cvs directory created
30 # 2004-04-16, lem9@users.sourceforge.net:
31 # - daily snapshot when called with first parameter "snapshot"
32 # - remove directory used for the checkout
34 # 2003-11-18, nijel@users.sourceforge.net:
35 # - switch php3 -> php
37 # 2003-10-10, nijel@users.sourceforge.net:
38 # - cvsserver set on just one place to ease testing
39 # - echoes md5 sums to include on download page
41 # 2003-06-22, robbat2@users.sourceforge.net:
42 # - Moved to using updatedocs.sh for updating documentation
43 # - Make tarring faster by re-arranging ops
45 # 2003-01-17, rabus@users.sourceforge.net:
46 # - Changed the CVS hostname to cvs1 because cvs1.sourceforge.net is now blocked
47 # for the SF shell servers, too. Note: The script now works on the SF shell
50 # 2002-11-22, rabus@users.sourceforge.net:
51 # - changed the CVS server dns to cvs1.sourceforge.net
52 # (cvs.phpmyadmin.sourceforge.net does not work at the SF shell anymore).
54 # 2002-10-03, rabus@users.sourceforge.net:
55 # - more detailed instructions
57 # 2002-09-08, robbat2@users.sourceforge.net:
58 # - Tweaked final instruction list
60 # 2002-06-17, lem9@users.sourceforge.net:
61 # - I option to tar for bzip2 is deprecated, use j
63 # 2002-27-04, loic@phpmyadmin.net:
64 # - added the cvs branch feature
66 # 2001-08-08, swix@users.sourceforge.net:
68 # - added release todo list
71 KITS
="all-languages-utf-8-only all-languages english"
72 COMPRESSIONS
="zip-7z tbz tgz 7z"
77 echo " create-release.sh <version> [from_branch]"
78 echo " create-release.sh snapshot [sf]"
79 echo " (no spaces allowed!)"
82 echo " create-release.sh 2.9.0-rc1 branches/QA_2_9"
83 echo " create-release.sh 2.9.0 tags/RELEASE_2_9_0"
89 if [ "$1" = "snapshot" ] ; then
91 date_snapshot
=`date +%Y%m%d-%H%M%S`
94 if [ "$#" -ge 2 ] ; then
100 Please ensure you have:
101 1. incremented rc count or version in subversion :
102 - in libraries/Config.class.php PMA_Config::__constructor() the line
103 " \$this->set( 'PMA_VERSION', '$1' ); "
104 - in Documentation.html the 2 lines
105 " <title>phpMyAdmin $1 - Documentation</title> "
106 " <h1>phpMyAdmin $1 Documentation</h1> "
107 - in translators.html
109 2. synchronized the language files:
112 and checked all language files are valid (use
113 the "./scripts/check_lang.php" script to do it).
119 if [ "$do_release" != 'y' ]; then
124 if [ "$mode" = "snapshot" -a "$2" = "sf" ] ; then
126 cd /home
/groups
/p
/ph
/phpmyadmin
/htdocs
128 # Keep one previous version of the cvs directory
129 if [ -e svn-prev
] ; then
139 echo "Exporting repository from subversion"
141 svn
export -q https
://phpmyadmin.svn.sourceforge.net
/svnroot
/phpmyadmin
/$branch/phpMyAdmin
143 if [ $?
-ne 0 ] ; then
144 echo "Subversion checkout failed, bailing out"
148 # Cleanup release dir
149 LC_ALL
=C
date -u > phpMyAdmin
/RELEASE-DATE-
${target}
151 # Building Documentation.txt
152 LC_ALL
=C w3m
-dump phpMyAdmin
/Documentation.html
> phpMyAdmin
/Documentation.txt
155 mv phpMyAdmin phpMyAdmin-
$target
158 for kit
in $KITS ; do
160 name
=phpMyAdmin-
$target-$kit
161 cp -r phpMyAdmin-
$target $name
163 # Cleanup translations
164 cd phpMyAdmin-
$target-$kit
165 scripts
/lang-cleanup.sh
$kit
168 # Prepare distributions
169 for comp
in $COMPRESSIONS ; do
172 echo "Creating $name.tar"
173 tar cf
$name.
tar $name
174 if [ $comp = tbz
] ; then
175 echo "Creating $name.tar.bz2"
178 if [ $comp = tgz
] ; then
179 echo "Creating $name.tar.gz"
180 gzip -9c $name.
tar > $name.
tar.gz
185 echo "Creating $name.zip"
186 zip -q -9 -r $name.
zip $name
189 echo "Creating $name.zip"
190 7za a
-bd -tzip $name.
zip $name > /dev
/null
193 echo "Creating $name.7z"
194 7za a
-bd $name.7z
$name > /dev
/null
197 echo "WARNING: ignoring compression '$comp', not known!"
202 # Remove directory with current dist set
207 rm -rf phpMyAdmin-
${target}
209 if [ "$mode" != "snapshot" ]
219 ls -la *.gz
*.
zip *.bz2
*.7z
225 md5sum *.
{gz
,zip,bz2
,7z
} |
sed "s/\([^ ]*\)[ ]*\([^ ]*\)/md5sum['\2'] = '\1'/"
228 echo "Add these to website/data/md5.py in SVN"
235 1. tag the subversion tree with the new revision number for a plain release
236 or a release candidate:
237 version 2.7.0 gets two tags: RELEASE_2_7_0 and STABLE
238 version 2.7.1-rc1 gets RELEASE_2_7_1RC1 and TESTING
240 2. upload the files to SF (procedure explained on the sf.net Admin/File Releases page)
241 3. add files to SF files page (cut and paste changelog since last release)
242 4. add SF news item to phpMyAdmin project
244 - add MD5s to website/data/md5.py in SVN
245 6. announce release on freshmeat (http://freshmeat.net/projects/phpmyadmin/)
246 7. send a short mail (with list of major changes) to
247 phpmyadmin-devel@lists.sourceforge.net
248 phpmyadmin-news@lists.sourceforge.net
249 phpmyadmin-users@lists.sourceforge.net
251 Don't forget to update the Description section in the announcement,
252 based on Documentation.html.
254 8. increment rc count or version in subversion :
255 - in libraries/Config.class.php PMA_Config::__constructor() the line
256 " $this->set( 'PMA_VERSION', '2.7.1-dev' ); "
257 - in Documentation.html the 2 lines
258 " <title>phpMyAdmin 2.2.2-rc1 - Documentation</title> "
259 " <h1>phpMyAdmin 2.2.2-rc1 Documentation</h1> "
260 - in translators.html
262 9. add a group for bug tracking this new version, at
263 https://sourceforge.net/tracker/admin/index.php?group_id=23067&atid=377408&add_group=1
271 # Removed due to not needed thanks to clever scripting by Robbat2
272 # 9. update the demo subdirectory:
273 # - in htdocs, cvs update phpMyAdmin
274 # - and don't forget to give write rights for the updated scripts to the