view contrib/hg-package @ 736:1de6cbdcc619

Add some sanity checks
author Dongsheng Song <dongsheng.song@gmail.com>
date Mon, 16 Mar 2009 17:13:50 +0800
parents d1a6ed326f87
children 605af0a90e3e
line wrap: on
line source

#!/bin/sh

build_dir=`dirname "$0"`/../build
rev_id=`hg parents --template '{date|shortdate}' | sed 's/-//g'`

for l in en zh; do
  (
  if [ ! -d "${build_dir}/${l}" ] ; then
    continue
  fi

  cd ${build_dir}/${l};

  f='html'
  if [ -f "${f}/index.html" ] ; then
     d=hgbook-${l}-${f}
     rm -fr ${d} && cp -r ${f} ${d} && tar czf ../${d}-${rev_id}.tar.gz ${d}
  fi

  f='html-single'
  if [ -f "${f}/hgbook.html" ] ; then
     d=hgbook-${l}-${f}
     rm -fr ${d} && cp -r ${f} ${d} && tar czf ../${d}-${rev_id}.tar.gz ${d}
  fi

  if [ -f "pdf/hgbook.pdf" ] ; then
     cp pdf/hgbook.pdf ../hgbook-${l}-${rev_id}.pdf
     gzip -f9 ../hgbook-${l}-${rev_id}.pdf
  fi
  )
done

upload_pass=$1
upload_user=$2

if [ "${upload_user}x" == "x" ]; then
  upload_user="dongsheng.song"
fi

if [ "${upload_pass}x" != "x" ]; then
  (
  cd ${build_dir}
  curl -s -O http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py
  if [[ "0" != $? ]]; then
    exit 1
  fi

  for l in en zh; do
    if [ -f "hgbook-${l}-${rev_id}.pdf.gz" ] ; then
      python googlecode_upload.py -u "dongsheng.song" -w "$1" \
          -p "i18n-zh" -l "Type-Docs,hgbook" \
          -s "Distributed revision control with Mercurial - ${l} - pdf" \
          hgbook-${l}-${rev_id}.pdf.gz
    fi

    for f in html html-single; do
      if [ -f "hgbook-${l}-${rev_id}.pdf.gz" ] ; then
        python googlecode_upload.py -u "dongsheng.song" -w "$1" \
            -p "i18n-zh" -l "Type-Docs,hgbook" \
            -s "Distributed revision control with Mercurial - ${l} - ${f}" \
            hgbook-${l}-${f}-${rev_id}.tar.gz
      fi
    done
  done
  )
fi