diff options
author | Yegor Kozlov <yegor@apache.org> | 2009-11-24 09:10:49 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2009-11-24 09:10:49 +0000 |
commit | 03443502f5a8b8df7bcdc41cfc7480199c3eb4f2 (patch) | |
tree | 71e6d79de52174ddb4b01bd326c09bedf201c636 /maven/multisign.sh | |
parent | b7aa4bea9a9c5f30a611ccfcb40a999b649ed9ff (diff) | |
download | poi-03443502f5a8b8df7bcdc41cfc7480199c3eb4f2.tar.gz poi-03443502f5a8b8df7bcdc41cfc7480199c3eb4f2.zip |
more cleanup of build.xml, improved release procedure, added a script to create .md5 and .asc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@883629 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven/multisign.sh')
-rwxr-xr-x | maven/multisign.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/maven/multisign.sh b/maven/multisign.sh new file mode 100755 index 0000000000..02403628b4 --- /dev/null +++ b/maven/multisign.sh @@ -0,0 +1,31 @@ +#! /bin/sh +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# create md5 checksums and gpg signatures + +stty -echo +echo "enter your GPG passphrase" +read passphrase +stty echo + +for i in *; do + echo Signing $i + echo $passphrase | gpg --passphrase-fd 0 --output $i.asc --detach-sig --armor $i + gpg --verify $i.asc $i + echo Hashing $i + openssl md5 < $i > $i.md5 +done |