You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2008/09/23 18:12:49 UTC

svn commit: r698217 - in /ant/ivy/ivyde/trunk: signArtifacts.sh verifyArtifacts.sh

Author: hibou
Date: Tue Sep 23 09:12:46 2008
New Revision: 698217

URL: http://svn.apache.org/viewvc?rev=698217&view=rev
Log:
The updatesite and the Ivy feature is not build here anymore

Modified:
    ant/ivy/ivyde/trunk/signArtifacts.sh
    ant/ivy/ivyde/trunk/verifyArtifacts.sh

Modified: ant/ivy/ivyde/trunk/signArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/signArtifacts.sh?rev=698217&r1=698216&r2=698217&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/signArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/signArtifacts.sh Tue Sep 23 09:12:46 2008
@@ -19,10 +19,5 @@
 
 read -s -p "Key passphrase: " passphrase
 
-for i in dist/updatesite/features/org.apache.ivy*.jar; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-for i in dist/updatesite/plugins/org.apache.ivy*.jar;  do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-for i in dist/updatesite/plugins/org.apache.ivy*.jar.pack.gz;  do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
 for i in dist/apache-ivyde-sources-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-for i in dist/org.apache.ivy.feature-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
 for i in dist/org.apache.ivyde.feature-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-gpg --passphrase "$passphrase" --output dist/updatesite/digest.zip.asc --detach-sig --armor dist/updatesite/digest.zip

Modified: ant/ivy/ivyde/trunk/verifyArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/verifyArtifacts.sh?rev=698217&r1=698216&r2=698217&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/verifyArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/verifyArtifacts.sh Tue Sep 23 09:12:46 2008
@@ -17,10 +17,5 @@
 #   specific language governing permissions and limitations
 #   under the License.
 
-for i in dist/updatesite/features/org.apache.ivy*.jar; do gpg --verify $i.asc; done
-for i in dist/updatesite/plugins/org.apache.ivy*.jar;  do gpg --verify $i.asc; done
-for i in dist/updatesite/plugins/org.apache.ivy*.jar.pack.gz;  do gpg --verify $i.asc; done
 for i in dist/apache-ivyde-sources-*.zip; do gpg --verify $i.asc; done
-for i in dist/org.apache.ivy.feature-*.zip; do gpg --verify $i.asc; done
 for i in dist/org.apache.ivyde.feature-*.zip; do gpg --verify $i.asc; done
-gpg --verify dist/updatesite/digest.zip.asc