This is an automated email from the ASF dual-hosted git repository.

vinayakumarb pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/hadoop-thirdparty.git

commit 3df5b6cc0393e5543d6fb07b8283ef78435bc555
Author: Vinayakumar B <vinayakum...@apache.org>
AuthorDate: Sat Feb 29 01:32:14 2020 +0530

    HADOOP-16919. Handle release packaging issues (#7)
---
 dev-support/bin/create-release                     |  4 ++-
 .../resources/assemblies/hadoop-thirdparty-src.xml |  2 +-
 src/site/markdown/index.md.vm                      | 29 +++++++++++++++++++++-
 3 files changed, 32 insertions(+), 3 deletions(-)

diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 75b80a1..7859081 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -576,10 +576,12 @@ function signartifacts
 
   big_console_header "Signing the release"
 
-  for i in ${ARTIFACTS_DIR}/*; do
+  run cd "${ARTIFACTS_DIR}"
+  for i in *; do
     ${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
     sha512sum --tag "${i}" > "${i}.sha512"
   done
+  run cd "${BASEDIR}"
 
   if [[ "${ASFRELEASE}" = true ]]; then
     echo "Fetching the Apache Hadoop KEYS file..."
diff --git a/src/main/resources/assemblies/hadoop-thirdparty-src.xml 
b/src/main/resources/assemblies/hadoop-thirdparty-src.xml
index ec3aceb..6faeff0 100644
--- a/src/main/resources/assemblies/hadoop-thirdparty-src.xml
+++ b/src/main/resources/assemblies/hadoop-thirdparty-src.xml
@@ -55,7 +55,7 @@
         <exclude>**/*.log</exclude>
         <exclude>**/build/**</exclude>
         <exclude>**/file:/**</exclude>
-        <exclude>**/SecurityAuth.audit*</exclude>
+        <exclude>patchprocess/**</exclude>
       </excludes>
     </fileSet>
   </fileSets>
diff --git a/src/site/markdown/index.md.vm b/src/site/markdown/index.md.vm
index f7acb74..280b1c6 100644
--- a/src/site/markdown/index.md.vm
+++ b/src/site/markdown/index.md.vm
@@ -43,4 +43,31 @@ This page provides an overview of the major changes.
 Protobuf-java
 -------------
 Google Protobuf's 3.7.1 jar is available as 
*org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_7* artifact.
-*com.google.protobuf* package is shaded as 
*org.apache.hadoop.thirdparty.protobuf*.
+
+Following are relocations under *hadoop-shaded-protobuf_3_7* artifact:
+
+|Original package | Shaded package |
+|---|---|
+|com.google.protobuf|org.apache.hadoop.thirdparty.protobuf|
+
+
+io.jaegertracing:jaeger-client
+------------------------------
+jaeger-client: 0.34.2 jar is available as 
*org.apache.hadoop.thirdparty:hadoop-shaded-jaeger* artifact.
+
+Following are relocations under *hadoop-shaded-jaeger* artifact:
+
+|Original package | Shaded package |
+|---|---|
+|com.google.gson | 
org.apache.hadoop.thirdparty.io.jaegertracing.com.google.gson|
+|io.jaegertracing.thriftjava|org.apache.hadoop.thirdparty.io.jaegertracing.thriftjava|
+|io.jaegertracing.crossdock|org.apache.hadoop.thirdparty.io.jaegertracing.crossdock|
+|io.jaegertracing.thrift|org.apache.hadoop.thirdparty.io.jaegertracing.thrift|
+|io.jaegertracing.agent|org.apache.hadoop.thirdparty.io.jaegertracing.agent|
+|org.apache.thrift|org.apache.hadoop.thirdparty.io.jaegertracing.apache.thrift|
+|com.twitter.zipkin|org.apache.hadoop.thirdparty.io.jaegertracing.com.twitter.zipkin|
+|okhttp3|org.apache.hadoop.thirdparty.io.jaegertracing.okhttp3|
+|kotlin|org.apache.hadoop.thirdparty.io.jaegertracing.kotlin|
+|org.intellij|org.apache.hadoop.thirdparty.io.jaegertracing.org.intellij|
+|org.jetbrains|org.apache.hadoop.thirdparty.io.jaegertracing.org.jetbrains|
+|okio|org.apache.hadoop.thirdparty.io.jaegertracing.okio|
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to