Skip to content
Snippets Groups Projects
Commit 387bfdf9 authored by chrfranke's avatar chrfranke
Browse files

do_release: Replace generation of '*.asc' file by '*.md5' and '*.sha1'.

git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@2970 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 470e91f2
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,8 @@ NOTES FOR FUTURE RELEASES: see TODO file. ...@@ -43,6 +43,8 @@ NOTES FOR FUTURE RELEASES: see TODO file.
<DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE> <DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE>
[CF] do_release: Replace generation of '*.asc' by '*.md5' and '*.sha1'.
[MS] attribute updates: [MS] attribute updates:
- change attributes 202,204,205 to the meanings as found in wdidle3.exe - change attributes 202,204,205 to the meanings as found in wdidle3.exe
retain old entries as comments (possible Fujitsu use) retain old entries as comments (possible Fujitsu use)
......
...@@ -15,10 +15,6 @@ ...@@ -15,10 +15,6 @@
set -e set -e
# TODO
#KEYID=0x841ABAE8
KEYID=
inc_release() inc_release()
{ {
MINOR=`echo $VERSION | cut -d. -f2` MINOR=`echo $VERSION | cut -d. -f2`
...@@ -106,10 +102,14 @@ make distcheck || exit 1 ...@@ -106,10 +102,14 @@ make distcheck || exit 1
make maintainer-clean make maintainer-clean
cd .. cd ..
mv -f build/smartmontools-$VERSION.tar.gz smartmontools-$VERSIONRC.tar.gz TARFILE=smartmontools-$VERSIONRC.tar.gz
mv -f build/smartmontools-$VERSION.tar.gz $TARFILE
rm -rvf build rm -rvf build
md5sum $TARFILE > $TARFILE.md5
sha1sum $TARFILE > $TARFILE.sha1
# Increase release number # Increase release number
if [ -z "$RC" ]; then if [ -z "$RC" ]; then
inc_release inc_release
...@@ -119,8 +119,3 @@ if [ -z "$RC" ]; then ...@@ -119,8 +119,3 @@ if [ -z "$RC" ]; then
fi fi
fi fi
# Sign tarball
if [ "$KEYID" ]; then
gpg --default-key $KEYID --armor --detach-sign ./smartmontools-$VERSIONRC.tar.gz
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment