Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge branch 'maint' into patch-3
- Loading branch information
Showing
4,216 changed files
with
668,388 additions
and
423,013 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Create a report to help us improve | ||
| title: '' | ||
| labels: bug | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| **Describe the bug** | ||
| A clear and concise description of what the bug is. | ||
|
|
||
| **To Reproduce** | ||
| Steps to reproduce the behavior. | ||
|
|
||
| **Expected behavior** | ||
| A clear and concise description of what you expected to happen. | ||
|
|
||
| **Affected versions** | ||
| The OTP versions that are affected by this bug. | ||
|
|
||
| **Additional context** | ||
| Add any other context about the problem here. If you wish to attach Erlang code you can either write it directly in the post using [code tags](https://guides.github.com/features/mastering-markdown/), create a [gist](https://gist.github.com), or attach it as a zip file to this post. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Suggest an idea for this project | ||
| title: '' | ||
| labels: enhancement | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| **Is your feature request related to a problem? Please describe.** | ||
| A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
| **Describe the solution you'd like** | ||
| A clear and concise description of what you want to happen. | ||
|
|
||
| **Describe alternatives you've considered** | ||
| A clear and concise description of any alternative solutions or features you've considered. | ||
|
|
||
| **Additional context** | ||
| Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -x | ||
|
|
||
| case "$1" in | ||
| *i386-debian-base) | ||
| BASE="i386/debian" | ||
| BASE_TYPE=debian-base | ||
| ;; | ||
| *debian-base) | ||
| BASE="debian" | ||
| BASE_TYPE=debian-base | ||
| ;; | ||
| *ubuntu-base) | ||
| BASE="ubuntu" | ||
| BASE_TYPE=ubuntu-base | ||
| ;; | ||
| esac | ||
| echo "::set-output name=BASE::${BASE}" | ||
| echo "::set-output name=BASE_TYPE::${BASE_TYPE}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/sh | ||
|
|
||
| DIR=${1} | ||
| TAG=${2} | ||
| VSN=${TAG#OTP-} | ||
|
|
||
| mkdir ${DIR} | ||
| tar -xzf otp_src.tar.gz | ||
| mv otp otp_src_${VSN} | ||
| tar -czf ${DIR}/otp_src_${VSN}.tar.gz otp_src_${VSN} | ||
| mv otp_doc_man.tar.gz ${DIR}/otp_doc_man_${VSN}.tar.gz | ||
| mv otp_doc_html.tar.gz ${DIR}/otp_doc_html_${VSN}.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| #!/bin/sh | ||
|
|
||
| ## We create a tar ball that has generated configure | ||
| ## (old versions might not have these included) | ||
| ## This is used later by build-otp-tar to create | ||
| ## the pre-built tar ball | ||
|
|
||
| if [ -f ./configure ]; then | ||
| git archive --prefix otp/ -o otp_src.tar.gz HEAD | ||
| else | ||
| ERL_TOP=`pwd` | ||
| ./otp_build autoconf | ||
| find . -name aclocal.m4 | xargs git add -f | ||
| find . -name configure | xargs git add -f | ||
| find . -name config.h.in | xargs git add -f | ||
| find . -name config.guess | xargs git add -f | ||
| find . -name config.sub | xargs git add -f | ||
| find . -name install-sh | xargs git add -f | ||
| if ! git config user.name; then | ||
| git config user.email "you@example.com" | ||
| git config user.name "Your Name" | ||
| fi | ||
| git commit --no-verify -m 'Add generated configure files' | ||
| git archive --prefix otp/ -o otp_src.tar.gz HEAD | ||
| git reset --hard HEAD~1 | ||
| fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| #!/bin/sh | ||
|
|
||
| docker run -v $PWD/:/github otp "make release docs release_docs && make release_docs DOC_TARGETS='man html pdf' RELEASE_ROOT=/github/docs" | ||
| sudo chown -R `whoami` docs | ||
| cd docs | ||
| tar czf ../otp_doc_man.tar.gz man | ||
| rm -rf man | ||
| tar czf ../otp_doc_html.tar.gz * |
Oops, something went wrong.