ref: Add -v23.metadata, which dumps metadata for the binary.

The metadata package is a map from string ids to string values,
and provides a mechanism to set the ldflags on the go toolchain
to get metadata linked into your binary during build time.  It
also provides utilities to insert more metadata in package init
functions, and to convert into XML and base64.

Every binary built with the metadata package will now
automatically get a flag -v23.metadata, which dumps the metadata
for the program binary in XML.

The format looks like this:

<metadata>
<md id="build.Manifest"><![CDATA[
<manifest label="">
<imports></imports>
<projects>
<project exclude="false" name="release.go.v23"...
...
</projects>
<tools></tools>
</manifest>
]]></md>
<md id="build.Platform">amd64unknown-linux-unknown</md>
<md id="build.Pristine">false</md>
<md id="build.Time">2015-05-04T08:40:22Z</md>
<md id="build.User">Todd Wang</md>
<md id="go.Arch">amd64</md>
<md id="go.OS">linux</md>
<md id="go.Version">go1.4.1</md>
<md id="v23.RPCEndpointVersion">5</md>
<md id="v23.RPCVersionMax">10</md>
<md id="v23.RPCVersionMin">9</md>
</metadata>

This addresses one part of vanadium/issues#407

MultiPart: 3/3

Change-Id: I33b45fb9d3d79c4aaa92b1ab3af8d0c6a65d736c
diff --git a/cmd/gclogs/doc.go b/cmd/gclogs/doc.go
index adffadf..95cbf6c 100644
--- a/cmd/gclogs/doc.go
+++ b/cmd/gclogs/doc.go
@@ -51,6 +51,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.permissions.file=map[]
diff --git a/cmd/mounttable/doc.go b/cmd/mounttable/doc.go
index 562e14d..7763255 100644
--- a/cmd/mounttable/doc.go
+++ b/cmd/mounttable/doc.go
@@ -40,6 +40,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.proxy=
    object name of proxy service to use to export services across network
    boundaries
diff --git a/cmd/namespace/doc.go b/cmd/namespace/doc.go
index 2f82af3..b6e2957 100644
--- a/cmd/namespace/doc.go
+++ b/cmd/namespace/doc.go
@@ -48,6 +48,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.proxy=
    object name of proxy service to use to export services across network
    boundaries
diff --git a/cmd/principal/doc.go b/cmd/principal/doc.go
index 5ef91ab..ae4f429 100644
--- a/cmd/principal/doc.go
+++ b/cmd/principal/doc.go
@@ -49,6 +49,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.permissions.file=map[]
diff --git a/cmd/uniqueid/doc.go b/cmd/uniqueid/doc.go
index 9ad2e59..ce5859d 100644
--- a/cmd/uniqueid/doc.go
+++ b/cmd/uniqueid/doc.go
@@ -36,6 +36,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.permissions.file=map[]
diff --git a/cmd/vdl/doc.go b/cmd/vdl/doc.go
index e977881..4130b33 100644
--- a/cmd/vdl/doc.go
+++ b/cmd/vdl/doc.go
@@ -37,6 +37,10 @@
  -vdl.config=vdl.config
    Basename of the optional per-package config file.
 
+The global flags are:
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
+
 Vdl generate
 
 Generate compiles packages and their transitive dependencies, and generates code
diff --git a/cmd/vom/doc.go b/cmd/vom/doc.go
index 4bdba37..09aebc3 100644
--- a/cmd/vom/doc.go
+++ b/cmd/vom/doc.go
@@ -35,6 +35,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.permissions.file=map[]
diff --git a/cmd/vomtestgen/doc.go b/cmd/vomtestgen/doc.go
index 1d9e7af..08a4f97 100644
--- a/cmd/vomtestgen/doc.go
+++ b/cmd/vomtestgen/doc.go
@@ -52,6 +52,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.permissions.file=map[]
diff --git a/cmd/vrpc/doc.go b/cmd/vrpc/doc.go
index aeaa638..0311b7a 100644
--- a/cmd/vrpc/doc.go
+++ b/cmd/vrpc/doc.go
@@ -40,6 +40,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.proxy=
    object name of proxy service to use to export services across network
    boundaries
diff --git a/cmd/vrun/doc.go b/cmd/vrun/doc.go
index aebe0ba..52398a5 100644
--- a/cmd/vrun/doc.go
+++ b/cmd/vrun/doc.go
@@ -40,6 +40,8 @@
    directory to use for storing security credentials
  -v23.i18n-catalogue=
    18n catalogue files to load, comma separated
+ -v23.metadata=<just specify -v23.metadata to activate>
+   Displays metadata for the program and exits.
  -v23.namespace.root=[/(dev.v.io/role/vprod/service/mounttabled)@ns.dev.v.io:8101]
    local namespace root; can be repeated to provided multiple roots
  -v23.proxy=