Repository: eagle Updated Branches: refs/heads/master 563041733 -> c616c22c0
[MINOR][DOC] Add slack information in README * Add slack information in README Author: Hao Chen <[email protected]> Closes #886 from haoch/FixREADME. Project: http://git-wip-us.apache.org/repos/asf/eagle/repo Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/c616c22c Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/c616c22c Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/c616c22c Branch: refs/heads/master Commit: c616c22c0049a91b602bdb1d64963cae712081df Parents: 5630417 Author: Hao Chen <[email protected]> Authored: Fri Mar 17 08:58:09 2017 +0000 Committer: r7raul1984 <[email protected]> Committed: Fri Mar 17 08:58:09 2017 +0000 ---------------------------------------------------------------------- README.md | 15 ++++++++++----- eagle-dev/checkout-eagle-pr.py | 3 --- 2 files changed, 10 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/eagle/blob/c616c22c/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 435f5bc..7b541b5 100755 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ You can find the latest Eagle documentation on [https://eagle.apache.org](https: ## Downloads +* Development Version: [eagle-0.5-SNAPSHOT](https://github.com/apache/eagle/archive/master.zip) (Under development) * Latest Release * [eagle-0.4.0-incubating](http://eagle.apache.org/docs/download-latest.html) * Archived Releases @@ -44,19 +45,21 @@ You can find the latest Eagle documentation on [https://eagle.apache.org](https: ### Prerequisites -* [JDK 8](https://jdk8.java.net/): Java Development Tool `Version 1.8` +* [JDK 8](https://jdk8.java.net/): Java Environment `Version 1.8` * [Apache Maven](https://maven.apache.org/): Project management and comprehension tool `Version 3.x` -* [NPM](https://www.npmjs.com/): Javascript package management tool `Version 3.x` +* [NPM](https://www.npmjs.com/): Node package management tool `Version 3.x` ### Building Eagle -> Since version 0.5, Eagle is only tested on JDK 8. +> Since version 0.5, Eagle is only built on JDK 8. Eagle is built using [Apache Maven](https://maven.apache.org/). NPM should be installed (On MAC OS try "brew install node"). To build Eagle, run: mvn clean package -DskipTests -After successfully building, you will find eagle binary tarball under _eagle-server-assembly/target/_ +After successfully building, you will find eagle binary tarball at: + + eagle-assembly/target/eagle-${VERSION}-bin.tar.gz ### Testing Eagle @@ -77,8 +80,10 @@ After successfully building, you will find eagle binary tarball under _eagle-ser ## Getting Help -The fastest way to get response from eagle community is to send email to the mail list [[email protected]](mailto:[email protected]), +* **Mail**: The fastest way to get response from eagle community is to send email to the mail list [[email protected]](mailto:[email protected]), and remember to subscribe our mail list via [[email protected]](mailto:[email protected]) +* **Slack**: Join Eagle community on Slack via [https://apacheeagle.slack.com](https://apacheeagle.slack.com) +* **JIRA**: Report requirements, problems or bugs through apache jira system via [https://issues.apache.org/jira/browse/EAGLE](https://issues.apache.org/jira/browse/EAGLE) ## FAQ http://git-wip-us.apache.org/repos/asf/eagle/blob/c616c22c/eagle-dev/checkout-eagle-pr.py ---------------------------------------------------------------------- diff --git a/eagle-dev/checkout-eagle-pr.py b/eagle-dev/checkout-eagle-pr.py index 3c082d1..11b5010 100755 --- a/eagle-dev/checkout-eagle-pr.py +++ b/eagle-dev/checkout-eagle-pr.py @@ -116,12 +116,9 @@ def main(): check_init() - print("%s/branches" % GITHUB_API_BASE) branches = get_json("%s/branches" % GITHUB_API_BASE) - print(str(branches)) branch_names = filter(lambda x: x.startswith("branch-"), [x['name'] for x in branches]) # Assumes branch names can be sorted lexicographically - print(str(branch_names)) latest_branch = sorted(branch_names, reverse=True)[0] pr_num = raw_input("Which pull request would you like to checkout? (e.g. 34): ")
