You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by ti...@apache.org on 2013/03/26 06:05:55 UTC

svn commit: r1460975 - in /incubator/vxquery/branches/vxquery_0_2_staging/build: ./ build-release-artifacts.sh

Author: tillw
Date: Tue Mar 26 05:05:54 2013
New Revision: 1460975

URL: http://svn.apache.org/r1460975
Log:
shell script to build stuff

Added:
    incubator/vxquery/branches/vxquery_0_2_staging/build/
    incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh   (with props)

Added: incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh?rev=1460975&view=auto
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh (added)
+++ incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh Tue Mar 26 05:05:54 2013
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+mvn assembly:assembly
+
+export ARCHIVE=apache-vxquery-0.2-incubating-src.zip
+gpg2 --armor --output ${ARCHIVE}.asc --detach-sig target/${ARCHIVE}
+cat target/${ARCHIVE} | openssl dgst -sha1 | sed -e's/(stdin)= //' > ${ARCHIVE}.sha1
+cat target/${ARCHIVE} | openssl dgst -md5 | sed -e's/(stdin)= //' > ${ARCHIVE}.md5
+
+#mvn site site:deploy

Propchange: incubator/vxquery/branches/vxquery_0_2_staging/build/build-release-artifacts.sh
------------------------------------------------------------------------------
    svn:executable = *