You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/07/17 16:39:30 UTC

svn commit: r1362514 - in /incubator/flex/trunk: build/ frameworks/projects/advancedgrids/bundles/en_US/ frameworks/projects/airframework/bundles/en_US/ frameworks/projects/airspark/bundles/en_US/ frameworks/projects/charts/bundles/en_US/ frameworks/pr...

Author: cframpton
Date: Tue Jul 17 14:39:29 2012
New Revision: 1362514

URL: http://svn.apache.org/viewvc?rev=1362514&view=rev
Log:
These should have gone with rev 1362513.  Add build scripts.  Set ignore property for all the generated packages.dita files.

Added:
    incubator/flex/trunk/build/sign_and_hash.sh   (with props)
Modified:
    incubator/flex/trunk/frameworks/projects/advancedgrids/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/airframework/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/airspark/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/charts/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/framework/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/mobilecomponents/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/mx/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/rpc/bundles/en_US/   (props changed)
    incubator/flex/trunk/frameworks/projects/spark/bundles/en_US/   (props changed)

Added: incubator/flex/trunk/build/sign_and_hash.sh
URL: http://svn.apache.org/viewvc/incubator/flex/trunk/build/sign_and_hash.sh?rev=1362514&view=auto
==============================================================================
--- incubator/flex/trunk/build/sign_and_hash.sh (added)
+++ incubator/flex/trunk/build/sign_and_hash.sh Tue Jul 17 14:39:29 2012
@@ -0,0 +1,57 @@
+#!/bin/sh
+#------------------------------------------------------------------------------
+#   Copyright 2004 The Apache Software Foundation
+#
+#   Licensed 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.
+#------------------------------------------------------------------------------
+# $Id$
+#
+# Creates detached ascii signatures and md5 hashes for each of the files in the
+# current directory.
+#
+# Also verifies the signatures.
+#
+# For each file in the current directory, two new files are created:
+#
+#   <name>.asc -- ascii-armored detached PGP digital signature
+#   <name>.md5 -- md5 hash (checksum)
+#
+# where <name> is the name of the file, not including file path.  
+# 
+# For example, foo-1.0-src.tar.gz in the current directory will result in 
+# foo-1.0-src.tar.gz.asc and foo-1.0-src.tar.gz.md5 added to the current 
+# directory. 
+#
+# Deletes any .asc or .md5 files in the current directory before processing
+# and does NOT recurse subdirectories.
+#
+# Assumes that you have a pgp id and keypair set up and prompts for the 
+# passphrase for each signature created.
+#
+# usage:
+#     sign_and_hash.sh
+#
+# requires:
+#    gpg
+#    md5sum
+#------------------------------------------------------------------------------
+`rm -f *.asc`
+`rm -f *.md5`
+for file in *; do
+    if [ -f "$file" ]; then
+        #md5sum -b $file > ${file}.md5
+        md5 -q $file > ${file}.md5
+        gpg --armor --output ${file}.asc --detach-sig $file
+        gpg --verify ${file}.asc $file
+    fi
+done

Propchange: incubator/flex/trunk/build/sign_and_hash.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/flex/trunk/build/sign_and_hash.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/flex/trunk/build/sign_and_hash.sh
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: incubator/flex/trunk/frameworks/projects/advancedgrids/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/airframework/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/airspark/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/charts/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/framework/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/mobilecomponents/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/mx/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/rpc/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita

Propchange: incubator/flex/trunk/frameworks/projects/spark/bundles/en_US/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jul 17 14:39:29 2012
@@ -0,0 +1 @@
+packages.dita