File: bb_release

package info (click to toggle)
busybox 1%3A1.37.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,928 kB
  • sloc: ansic: 190,183; sh: 10,440; cpp: 1,428; makefile: 1,006; asm: 798; yacc: 570; lex: 355; perl: 334; python: 112; awk: 29
file content (23 lines) | stat: -rwxr-xr-x 835 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

# Create signed release tarballs and signature files from current svn.
# Since you don't have my gpg key, this doesn't do you much good,
# but if I get hit by a bus the next maintainer might find this useful.
# Run this in an empty directory.  The VERSION= line can get confused
# otherwise.

#svn co svn://busybox.net/trunk/busybox
cd busybox || { echo "cd busybox failed"; exit 1; }
chmod -Rc u+w,a+rX,go-w .
make release || { echo "make release failed"; exit 1; }
cd ..

VERSION=`ls busybox-*.tar.gz | sed 's/busybox-\(.*\)\.tar\.gz/\1/'`

zcat busybox-$VERSION.tar.gz | bzip2 > busybox-$VERSION.tar.bz2

for releasefile in busybox-$VERSION.tar.gz busybox-$VERSION.tar.bz2; do
	test -f $releasefile || { echo "no $releasefile"; exit 1; }
	gpg --detach-sign $releasefile
	sha256sum $releasefile > $releasefile.sha256
done