[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-22 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=104714=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104714
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 22/May/18 17:33
Start Date: 22/May/18 17:33
Worklog Time Spent: 10m 
  Work Description: pabloem closed pull request #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/sdks/python/build.gradle b/sdks/python/build.gradle
index 0eea94d92fb..ff7e6dd0491 100644
--- a/sdks/python/build.gradle
+++ b/sdks/python/build.gradle
@@ -201,7 +201,7 @@ task postCommitVRTests(dependsOn: 'installGcpTest') {
   doLast {
 exec {
   executable 'sh'
-  args '-c', ". ${envdir}/bin/activate && ./run_postcommit.sh IT"
+  args '-c', ". ${envdir}/bin/activate && ./scripts/run_postcommit.sh IT"
 }
   }
 }
@@ -210,7 +210,7 @@ task validatesRunnerTests(dependsOn: 'installGcpTest') {
   doLast {
 exec {
   executable 'sh'
-  args '-c', ". ${envdir}/bin/activate && ./run_postcommit.sh 
ValidatesRunner"
+  args '-c', ". ${envdir}/bin/activate && ./scripts/run_postcommit.sh 
ValidatesRunner"
 }
   }
 }
diff --git a/sdks/python/generate_pydoc.sh 
b/sdks/python/scripts/generate_pydoc.sh
similarity index 95%
rename from sdks/python/generate_pydoc.sh
rename to sdks/python/scripts/generate_pydoc.sh
index 68b7006a1b6..dfb87a13f11 100755
--- a/sdks/python/generate_pydoc.sh
+++ b/sdks/python/scripts/generate_pydoc.sh
@@ -22,6 +22,17 @@
 #
 # The exit-code of the script indicates success or a failure.
 
+# Check that the script is running in a known directory.
+if [[ $PWD != *sdks/python* ]]; then
+  echo 'Unable to locate Apache Beam Python SDK root directory'
+  exit 1
+fi
+
+# Go to the Apache Beam Python SDK root
+if [[ "*sdks/python" != $PWD ]]; then
+  cd $(pwd | sed 's/sdks\/python.*/sdks\/python/')
+fi
+
 # Quit on any errors
 set -e
 
diff --git a/sdks/python/run_mini_py3lint.sh 
b/sdks/python/scripts/run_mini_py3lint.sh
similarity index 82%
rename from sdks/python/run_mini_py3lint.sh
rename to sdks/python/scripts/run_mini_py3lint.sh
index 0fd9ef7f507..63e71771d73 100755
--- a/sdks/python/run_mini_py3lint.sh
+++ b/sdks/python/scripts/run_mini_py3lint.sh
@@ -22,6 +22,17 @@
 #
 # The exit-code of the script indicates success or a failure.
 
+# Check that the script is running in a known directory.
+if [[ $PWD != *sdks/python* ]]; then
+  echo 'Unable to locate Apache Beam Python SDK root directory'
+  exit 1
+fi
+
+# Go to the Apache Beam Python SDK root
+if [[ "*sdks/python" != $PWD ]]; then
+  cd $(pwd | sed 's/sdks\/python.*/sdks\/python/')
+fi
+
 set -o errexit
 set -o pipefail
 
diff --git a/sdks/python/run_postcommit.sh 
b/sdks/python/scripts/run_postcommit.sh
similarity index 85%
rename from sdks/python/run_postcommit.sh
rename to sdks/python/scripts/run_postcommit.sh
index afcdb3be6b2..d6e31aaccff 100755
--- a/sdks/python/run_postcommit.sh
+++ b/sdks/python/scripts/run_postcommit.sh
@@ -23,8 +23,19 @@
 # PROJECT  -> Project name to use for service jobs.
 #
 
+# Check that the script is running in a known directory.
+if [[ $PWD != *sdks/python* ]]; then
+  echo 'Unable to locate Apache Beam Python SDK root directory'
+  exit 1
+fi
+
+# Go to the Apache Beam Python SDK root
+if [[ "*sdks/python" != $PWD ]]; then
+  cd $(pwd | sed 's/sdks\/python.*/sdks\/python/')
+fi
+
 if [ -z "$1" ]; then
-  printf "Usage: \n$> ./run_postcommit.sh  [gcp_location] 
[gcp_project]"
+  printf "Usage: \n$> ./scripts/run_postcommit.sh  [gcp_location] 
[gcp_project]"
   printf "\n\ttest_type: ValidatesRunner or IT"
   printf "\n\tgcp_location: A gs:// path to stage artifacts and output results"
   printf "\n\tgcp_project: A GCP project to run Dataflow pipelines\n"
diff --git a/sdks/python/run_pylint.sh b/sdks/python/scripts/run_pylint.sh
similarity index 92%
rename from sdks/python/run_pylint.sh
rename to sdks/python/scripts/run_pylint.sh
index 4e7dc9d8218..17f6aa706c1 100755
--- a/sdks/python/run_pylint.sh
+++ b/sdks/python/scripts/run_pylint.sh
@@ -23,6 +23,17 @@
 #
 # The exit-code of the script indicates success or a failure.
 
+# Check that the script is running in a known directory.
+if [[ $PWD != *sdks/python* ]]; then
+  echo 'Unable to locate Apache Beam Python SDK root directory'
+  exit 1
+fi
+
+# Go to the Apache Beam Python SDK root
+if [[ "*sdks/python" != $PWD ]]; then
+  cd $(pwd | sed 's/sdks\/python.*/sdks\/python/')
+fi
+
 set -o errexit
 set -o pipefail
 
diff --git 

[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-22 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=104713=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104713
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 22/May/18 17:31
Start Date: 22/May/18 17:31
Worklog Time Spent: 10m 
  Work Description: tvalentyn commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-391075573
 
 
   LGTM


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 104713)
Time Spent: 2h 10m  (was: 2h)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 2h 10m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-21 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=104273=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104273
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 21/May/18 21:06
Start Date: 21/May/18 21:06
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390782724
 
 
   I've added code in all scripts to check and switch their current directory. 
PTAL.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 104273)
Time Spent: 1h 50m  (was: 1h 40m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1h 50m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-21 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=104274=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104274
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 21/May/18 21:06
Start Date: 21/May/18 21:06
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390782779
 
 
   Run Python PostCommit


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 104274)
Time Spent: 2h  (was: 1h 50m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 2h
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-21 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=104129=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104129
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 21/May/18 17:09
Start Date: 21/May/18 17:09
Worklog Time Spent: 10m 
  Work Description: charlesccychen commented on issue #5400: [BEAM-1755] 
Add a directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390718884
 
 
   It seems like with this change, you would still need to run scripts with the 
current directory as `sdks/python` and do `scripts/[...].sh`.  In particular, 
if you run the script in the `sdks/python/scripts` directory directly, it looks 
like many of the scripts just won't work, and this isn't documented, since it 
looks like the scripts depend on the current working directory.  Is it possible 
to fix this so that it works both ways?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 104129)
Time Spent: 1h 40m  (was: 1.5h)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-18 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103554=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103554
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 18/May/18 21:01
Start Date: 18/May/18 21:01
Worklog Time Spent: 10m 
  Work Description: tvalentyn commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390331106
 
 
   And, thanks for the ping, I missed the previous update.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103554)
Time Spent: 1.5h  (was: 1h 20m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-18 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103552=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103552
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 18/May/18 20:57
Start Date: 18/May/18 20:57
Worklog Time Spent: 10m 
  Work Description: tvalentyn commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390330284
 
 
   Giving folders meaningful names could be more mnemonic as it to the purpose 
of the content in the folder, but I don't have a strong opinion on this; in 
fact I have a scripts folder on my dev box that serves a similar purpose. Your 
call.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103552)
Time Spent: 1h 20m  (was: 1h 10m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-18 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103549=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103549
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 18/May/18 20:40
Start Date: 18/May/18 20:40
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390326146
 
 
   @tvalentyn


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103549)
Time Spent: 1h 10m  (was: 1h)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103123=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103123
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 21:24
Start Date: 17/May/18 21:24
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390016843
 
 
   I think it makes sense to have all of them in a single place, so new ones 
will not be reimplemented. WDYT?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103123)
Time Spent: 1h  (was: 50m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103104=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103104
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 20:45
Start Date: 17/May/18 20:45
Worklog Time Spent: 10m 
  Work Description: tvalentyn commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390005416
 
 
   Makes sense to me; you could also call the folder `testing` instead of 
`scripts`, although `generate_pydoc.sh` would have to stay or go into a 
different place.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103104)
Time Spent: 50m  (was: 40m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103103=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103103
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 20:44
Start Date: 17/May/18 20:44
Worklog Time Spent: 10m 
  Work Description: tvalentyn commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-390005416
 
 
   Makes sense to me; you could also call the folder `testing` instead of 
scripts, although generate_pydoc.sh would have to stay or go into a different 
place.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103103)
Time Spent: 40m  (was: 0.5h)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103093=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103093
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 20:20
Start Date: 17/May/18 20:20
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-389997813
 
 
   Run Python PostCommit


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103093)
Time Spent: 0.5h  (was: 20m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103050=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103050
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 18:39
Start Date: 17/May/18 18:39
Worklog Time Spent: 10m 
  Work Description: pabloem commented on issue #5400: [BEAM-1755] Add a 
directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400#issuecomment-389967352
 
 
   Run Python PostCommit


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103050)
Time Spent: 20m  (was: 10m)

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Work logged] (BEAM-1755) Python-SDK: Move build specific scripts to a dedicated folder

2018-05-17 Thread ASF GitHub Bot (JIRA)

 [ 
https://issues.apache.org/jira/browse/BEAM-1755?focusedWorklogId=103049=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-103049
 ]

ASF GitHub Bot logged work on BEAM-1755:


Author: ASF GitHub Bot
Created on: 17/May/18 18:38
Start Date: 17/May/18 18:38
Worklog Time Spent: 10m 
  Work Description: pabloem opened a new pull request #5400: [BEAM-1755] 
Add a directory with build-specific scripts to clear up the Python SDK dir
URL: https://github.com/apache/beam/pull/5400
 
 
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 103049)
Time Spent: 10m
Remaining Estimate: 0h

> Python-SDK: Move build specific scripts to a dedicated folder
> -
>
> Key: BEAM-1755
> URL: https://issues.apache.org/jira/browse/BEAM-1755
> Project: Beam
>  Issue Type: Improvement
>  Components: sdk-py-core
>Reporter: Tibor Kiss
>Assignee: Pablo Estrada
>Priority: Minor
>  Labels: newbie, starter
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> There are numerous build related files (run_*.sh, generate_pydoc.sh and most 
> recently findSupportedPython.groovy) are located now in Python-SDK's root.
> We should create a dedicated {{build_utils}} directory and relocate the 
> scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)