bb_release 818 B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. # Create signed release tarballs and signature files from current svn.
  3. # Since you don't have my gpg key, this doesn't do you much good,
  4. # but if I get hit by a bus the next maintainer might find this useful.
  5. # Run this in an empty directory. The VERSION= line can get confused
  6. # otherwise.
  7. #svn co svn://busybox.net/trunk/busybox
  8. cd busybox || { echo "cd busybox failed"; exit 1; }
  9. make release || { echo "make release failed"; exit 1; }
  10. cd ..
  11. VERSION=`ls busybox-*.tar.gz | sed 's/busybox-\(.*\)\.tar\.gz/\1/'`
  12. zcat busybox-$VERSION.tar.gz | bzip2 > busybox-$VERSION.tar.bz2
  13. for releasefile in busybox-$VERSION.tar.gz busybox-$VERSION.tar.bz2; do
  14. test -f $releasefile || { echo "no $releasefile"; exit 1; }
  15. gpg --detach-sign $releasefile
  16. sha256sum $releasefile > $releasefile.sha256
  17. done