X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=ppa_release.sh;h=08dec4d46283de9fe48218d652df543dc362f899;hb=b50706b7dad2b3c1ecec5946fadb78c5581c0544;hp=0d972b5ff6aae11d5d7be30fac4570b616f2bc78;hpb=a90c361004a14241b01d56a02a60a36bdf6d802c;p=torbrowser-launcher.git diff --git a/ppa_release.sh b/ppa_release.sh index 0d972b5..08dec4d 100755 --- a/ppa_release.sh +++ b/ppa_release.sh @@ -1,15 +1,29 @@ #!/bin/sh # This script pushes updates to my Ubuntu PPA: https://launchpad.net/~micahflee/+archive/ppa -# If you want to use it, you'll need your own ~/.dput.cf and ssh key. # More info: https://help.launchpad.net/Packaging/PPA/Uploading +# +# If you want to use it, you'll need your own ~/.dput.cf. Here's mine: +# +# [ppa] +# fqdn = ppa.launchpad.net +# method = ftp +# incoming = ~micahflee/ubuntu/ppa/ +# login = anonymous +# allow_unsigned_uploads = 0 VERSION=`cat share/torbrowser-launcher/version` +# Make a source pacakge rm -rf deb_dist python setup.py --command-packages=stdeb.command sdist_dsc + +# Sign it cd deb_dist/torbrowser-launcher-$VERSION dpkg-buildpackage -S +#dpkg-buildpackage -S -pqubes-gpg-client-wrapper -k927F419D7EC82C2F149C1BD1403C2657CD994F73 cd .. -dput ppa:micahflee/ppa torbrowser-launcher_$VERSION-1_source.changes + +# Push it to the ppa +dput ppa torbrowser-launcher_$VERSION-1_source.changes cd ..