blob: 180ad8f2e978ebf5e3a899d8c7966e8d56fbd1aa [file] [log] [blame]
Denis Vlasenko0dc490b2008-03-21 09:56:19 +00001#!/bin/sh
2
3# Create signed release tarballs and signature files from current svn.
4# Since you don't have my gpg key, this doesn't do you much good,
5# but if I get hit by a bus the next maintainer might find this useful.
6# Run this in an empty directory. The VERSION= line can get confused
7# otherwise.
8
9#svn co svn://busybox.net/trunk/busybox
10cd busybox || { echo "cd busybox failed"; exit 1; }
Denys Vlasenko9daa8772021-01-01 13:34:25 +010011chmod -Rc u+w,a+rX,go-w .
Denis Vlasenko0dc490b2008-03-21 09:56:19 +000012make release || { echo "make release failed"; exit 1; }
13cd ..
14
15VERSION=`ls busybox-*.tar.gz | sed 's/busybox-\(.*\)\.tar\.gz/\1/'`
16
17zcat busybox-$VERSION.tar.gz | bzip2 > busybox-$VERSION.tar.bz2
18
Eli Schwartz6fb8bd72018-06-05 12:48:53 -040019for releasefile in busybox-$VERSION.tar.gz busybox-$VERSION.tar.bz2; do
Denys Vlasenkoed2af2e2022-01-04 14:32:41 +010020 test -f $releasefile || { echo "no $releasefile"; exit 1; }
21 gpg --detach-sign $releasefile
22 sha256sum $releasefile > $releasefile.sha256
Eli Schwartz6fb8bd72018-06-05 12:48:53 -040023done