Edit

kc3-lang/ftgl/ppa_upload.sh

Branch :

  • Show log

    Commit

  • Author : Richard Ulrich
    Date : 2012-11-03 21:35:32
    Hash : cf4d9957
    Message : reverted to manually specifying the version number

  • ppa_upload.sh
  • #!/bin/sh
    # build a debian sourcepackage and upload it to the launchpad ppa
    
    #:${VERSIONNBR:=$(parsechangelog | grep Version | sed -e "s/Version: //g" -e "s/\\~.*//g")}
    VERSIONNBR=2.1.3~rc5-10polyextr
    
    for DISTRIBUTION in precise quantal
    do
    	sed -i -e "s/oneiric/${DISTRIBUTION}/g" -e "s/precise/${DISTRIBUTION}/g" -e "s/quantal/${DISTRIBUTION}/g" debian/changelog
    	dpkg-buildpackage -rfakeroot -k${GPGKEY} -S
    	dput ppa:richi-paraeasy/ppa ../ftgl_${VERSIONNBR}~${DISTRIBUTION}_source.changes
    done