You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/05/05 12:03:50 UTC

[tinkerpop] branch master updated (2b086a5 -> a31e8f4)

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

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from 2b086a5  TinkerPop 3.5.0 release
     new cfb7372  Allowed validation to pass image files in gremlint for the binary files check in the source distribution CTR
     new a31e8f4  Added filters to source distribution for some new __pycache__ directories that seem to have only risen out of 3.5.0 CTR

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/validate-distribution.sh | 1 +
 source-release.xml           | 1 +
 2 files changed, 2 insertions(+)

[tinkerpop] 02/02: Added filters to source distribution for some new __pycache__ directories that seem to have only risen out of 3.5.0 CTR

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit a31e8f402237de3491397d4f8bbd6a9761cd9068
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed May 5 06:36:27 2021 -0400

    Added filters to source distribution for some new __pycache__ directories that seem to have only risen out of 3.5.0 CTR
---
 source-release.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/source-release.xml b/source-release.xml
index 9e295f6..bd599ce 100644
--- a/source-release.xml
+++ b/source-release.xml
@@ -91,6 +91,7 @@
                 <exclude>gremlin-python/src/main/python/venv/**</exclude>
                 <exclude>gremlin-python/src/main/python/.pytest_cache/**</exclude>
                 <exclude>gremlin-python/src/main/python/.idea/**</exclude>
+                <exclude>gremlin-python/src/main/python/**/__pycache__/**</exclude>
                 <!-- on 3.4-dev/3.4.x python->jython -->
                 <exclude>gremlin-python/src/main/jython/**</exclude>
                 <exclude>gremlin-javascript/.glv</exclude>

[tinkerpop] 01/02: Allowed validation to pass image files in gremlint for the binary files check in the source distribution CTR

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit cfb7372e1a444d93c674fbe8dae69bce81fa441c
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed May 5 06:35:23 2021 -0400

    Allowed validation to pass image files in gremlint for the binary files check in the source distribution CTR
---
 bin/validate-distribution.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index f3c386b..bfd06ce 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -140,6 +140,7 @@ cd ${DIR_NAME}
 echo -n "* checking source files ... "
 find . -type f | xargs -n1 -I {} file {} --mime | grep 'charset=binary' | cut -f1 -d: |
   grep -Pv '^\./docs/(static|(site/home))/(img|images)/((icons|logos|policy|resources)/)?[^/]*\.(png|jpg|ico|pdf)$' |
+  grep -Pv '^\./docs/gremlint/(src|public)/[^/]*\.(png|jpg|ico)$' |
   grep -Pv '^./gremlin-dotnet/src/images/[^/]*\.(png|ico)$' |
   grep -Pv '^./gremlin-dotnet/.*\.snk$' |
   grep -Pv '^./gremlin-server/src/test/resources/[^/]*\.(p12|jks)$' |