mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Fix URLs in the repository after organization switch (#2955)
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai@inf.u-szeged.hu
This commit is contained in:
parent
ef5dd5c698
commit
04d5d56a68
@ -111,7 +111,7 @@ matrix:
|
||||
- name: "SonarQube"
|
||||
addons:
|
||||
sonarcloud:
|
||||
organization: "pando-project"
|
||||
organization: "jerryscript-project"
|
||||
script: tools/check-sonarqube.sh
|
||||
cache:
|
||||
directories:
|
||||
|
||||
@ -47,7 +47,7 @@ You should use your real name and email address in the format below:
|
||||
|
||||
"JerryScript-DCO-1.0-Signed-off-by:" this is a developer's certification that he or she has the right to submit the patch for inclusion into the project. It is an agreement to the JerryScript [Developer's Certificate of Origin](DCO.md). **Code without a proper signoff cannot be merged into the mainline.**
|
||||
|
||||
### 4. Open a GitHub [pull request](https://github.com/pando-project/jerryscript/pulls)
|
||||
### 4. Open a GitHub [pull request](https://github.com/jerryscript-project/jerryscript/pulls)
|
||||
|
||||
You can find instructions about opening a pull request [here](https://help.github.com/articles/creating-a-pull-request).
|
||||
|
||||
|
||||
16
README.md
16
README.md
@ -1,11 +1,11 @@
|
||||

|
||||

|
||||
# JerryScript: JavaScript engine for the Internet of Things
|
||||
[](LICENSE)
|
||||
[](https://travis-ci.org/pando-project/jerryscript)
|
||||
[](https://travis-ci.org/jerryscript-project/jerryscript)
|
||||
[](https://ci.appveyor.com/project/jerryscript-project/jerryscript/branch/master)
|
||||
[](https://scan.coverity.com/projects/jerryscript-project)
|
||||
[](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fjerryscript-project%2Fjerryscript?ref=badge_shield)
|
||||
[](https://sonarcloud.io/dashboard?id=pando-project_jerryscript)
|
||||
[](https://sonarcloud.io/dashboard?id=jerryscript-project_jerryscript)
|
||||
[](https://kiwiirc.com/client/irc.freenode.net/#jerryscript)
|
||||
|
||||
JerryScript is a lightweight JavaScript engine for resource-constrained devices such as microcontrollers. It can run on devices with less than 64 KB of RAM and less than 200 KB of flash memory.
|
||||
@ -18,15 +18,15 @@ Key characteristics of JerryScript:
|
||||
* Snapshot support for precompiling JavaScript source code to byte code
|
||||
* Mature C API, easy to embed in applications
|
||||
|
||||
Additional information can be found on our [project page](http://jerryscript.net) and [Wiki](https://github.com/pando-project/jerryscript/wiki).
|
||||
Additional information can be found on our [project page](http://jerryscript.net) and [Wiki](https://github.com/jerryscript-project/jerryscript/wiki).
|
||||
|
||||
Memory usage and Binary footprint are measured at [here](https://pando-tests.github.io/jerryscript-test-results) with real target daily.
|
||||
Memory usage and Binary footprint are measured at [here](https://jerryscript-project.github.io/jerryscript-test-results) with real target daily.
|
||||
|
||||
The following table shows the latest results on the devices:
|
||||
|
||||
| STM32F4-Discovery | [](https://pando-tests.github.io/jerryscript-test-results/?view=stm32f4dis) |
|
||||
| STM32F4-Discovery | [](https://jerryscript-project.github.io/jerryscript-test-results/?view=stm32f4dis) |
|
||||
| :---: | :---: |
|
||||
| **Raspberry Pi 2** | [](https://pando-tests.github.io/jerryscript-test-results/?view=rpi2) |
|
||||
| **Raspberry Pi 2** | [](https://jerryscript-project.github.io/jerryscript-test-results/?view=rpi2) |
|
||||
|
||||
IRC channel: #jerryscript on [freenode](https://freenode.net)
|
||||
Mailing list: jerryscript-dev@groups.io, you can subscribe [here](https://groups.io/g/jerryscript-dev) and access the mailing list archive [here](https://groups.io/g/jerryscript-dev/topics).
|
||||
@ -34,7 +34,7 @@ Mailing list: jerryscript-dev@groups.io, you can subscribe [here](https://groups
|
||||
## Quick Start
|
||||
### Getting the sources
|
||||
```bash
|
||||
git clone https://github.com/pando-project/jerryscript.git
|
||||
git clone https://github.com/jerryscript-project/jerryscript.git
|
||||
cd jerryscript
|
||||
```
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ python tools/build.py --cmake-param=CMAKE_PARAM
|
||||
python tools/build.py --profile=es5.1|es2015-subset|minimal
|
||||
```
|
||||
|
||||
See also the related [README.md](https://github.com/pando-project/jerryscript/blob/master/jerry-core/profiles/README.md).
|
||||
See also the related [README.md](https://github.com/jerryscript-project/jerryscript/blob/master/jerry-core/profiles/README.md).
|
||||
|
||||
**Use (compiler-default, external) libc**
|
||||
|
||||
|
||||
@ -584,4 +584,4 @@ main (void)
|
||||
|
||||
## Further steps
|
||||
|
||||
For further API description, please visit [API Reference page](https://pando-project.github.io/jerryscript/api-reference/) on [JerryScript home page](https://pando-project.github.io/jerryscript/).
|
||||
For further API description, please visit [API Reference page](https://jerryscript-project.github.io/jerryscript/api-reference/) on [JerryScript home page](https://jerryscript-project.github.io/jerryscript/).
|
||||
|
||||
@ -4,7 +4,7 @@ includedir=${prefix}/include
|
||||
|
||||
Name: libjerry-core
|
||||
Description: JerryScript: lightweight JavaScript engine (core engine library)
|
||||
URL: https://github.com/pando-project/jerryscript
|
||||
URL: https://github.com/jerryscript-project/jerryscript
|
||||
Version: 1.0
|
||||
Requires.private: @JERRY_CORE_PKGCONFIG_REQUIRES@ # NOTE: libjerry-port-default* is not added as a required package
|
||||
Libs: -L${libdir} -ljerry-core
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Available JerryScript debugger tools
|
||||
|
||||
- JerryScript console debugger client ( jerry_client.py )
|
||||
- IoT.js Code ( https://github.com/pando-project/iotjscode )
|
||||
- JerryScript debugger Chrome webtool ( https://github.com/pando-project/jerryscript-debugger-ts )
|
||||
- IoT.js Code ( https://github.com/jerryscript-project/iotjscode )
|
||||
- JerryScript debugger Chrome webtool ( https://github.com/jerryscript-project/jerryscript-debugger-ts )
|
||||
|
||||
@ -4,7 +4,7 @@ includedir=${prefix}/include
|
||||
|
||||
Name: libjerry-ext
|
||||
Description: JerryScript: lightweight JavaScript engine (extensions library)
|
||||
URL: https://github.com/pando-project/jerryscript
|
||||
URL: https://github.com/jerryscript-project/jerryscript
|
||||
Version: 1.0
|
||||
Requires.private: libjerry-core
|
||||
Libs: -L${libdir} -ljerry-ext
|
||||
|
||||
@ -4,7 +4,7 @@ includedir=${prefix}/include/jerry-libm
|
||||
|
||||
Name: libjerry-libm
|
||||
Description: JerryScript: lightweight JavaScript engine (minimal math library)
|
||||
URL: https://github.com/pando-project/jerryscript
|
||||
URL: https://github.com/jerryscript-project/jerryscript
|
||||
Version: 1.0
|
||||
Libs: -L${libdir} -ljerry-libm
|
||||
Cflags: -I${includedir}
|
||||
|
||||
@ -4,7 +4,7 @@ includedir=${prefix}/include
|
||||
|
||||
Name: libjerry-port-default-minimal
|
||||
Description: JerryScript: lightweight JavaScript engine (default minimal port library)
|
||||
URL: https://github.com/pando-project/jerryscript
|
||||
URL: https://github.com/jerryscript-project/jerryscript
|
||||
Version: 1.0
|
||||
Conflicts: libjerry-port-default
|
||||
Libs: -L${libdir} -ljerry-port-default-minimal
|
||||
|
||||
@ -4,7 +4,7 @@ includedir=${prefix}/include
|
||||
|
||||
Name: libjerry-port-default
|
||||
Description: JerryScript: lightweight JavaScript engine (default port library)
|
||||
URL: https://github.com/pando-project/jerryscript
|
||||
URL: https://github.com/jerryscript-project/jerryscript
|
||||
Version: 1.0
|
||||
Conflicts: libjerry-port-default-minimal
|
||||
Libs: -L${libdir} -ljerry-port-default
|
||||
|
||||
@ -13,6 +13,6 @@
|
||||
# limitations under the License.
|
||||
|
||||
sonar.projectName=JerryScript
|
||||
sonar.projectKey=pando-project_jerryscript
|
||||
sonar.projectKey=jerryscript-project_jerryscript
|
||||
sonar.sources=jerry-core,jerry-ext,jerry-main,jerry-port
|
||||
sonar.cfamily.build-wrapper-output=bw-output
|
||||
|
||||
@ -13,7 +13,7 @@ Clone the necessary projects into a `jerry-nuttx` directory. The last tested wor
|
||||
# Create a base folder for all the projects.
|
||||
mkdir jerry-nuttx && cd jerry-nuttx
|
||||
|
||||
git clone https://github.com/pando-project/jerryscript.git
|
||||
git clone https://github.com/jerryscript-project/jerryscript.git
|
||||
git clone https://bitbucket.org/nuttx/nuttx.git -b nuttx-7.28
|
||||
git clone https://bitbucket.org/nuttx/apps.git -b nuttx-7.28
|
||||
git clone https://github.com/texane/stlink.git -b v1.5.1
|
||||
|
||||
@ -12,7 +12,7 @@ If you are in a hurry, run the following commands:
|
||||
$ sudo apt-add-repository -y "ppa:team-gcc-arm-embedded/ppa"
|
||||
$ sudo apt-get update
|
||||
$ sudo apt-get install gcc-arm-embedded genromfs
|
||||
$ git clone https://github.com/pando-project/jerryscript.git
|
||||
$ git clone https://github.com/jerryscript-project/jerryscript.git
|
||||
$ cd jerryscript
|
||||
$ make -f targets/tizenrt-artik053/Makefile.travis install
|
||||
$ make -f targets/tizenrt-artik053/Makefile.travis script
|
||||
@ -40,7 +40,7 @@ $ export PATH=<Your Toolchain PATH>:$PATH
|
||||
```
|
||||
$ mkdir jerry-tizenrt
|
||||
$ cd jerry-tizenrt
|
||||
$ git clone https://github.com/pando-project/jerryscript.git
|
||||
$ git clone https://github.com/jerryscript-project/jerryscript.git
|
||||
$ git clone https://github.com/Samsung/TizenRT.git -b 2.0_Public_M2
|
||||
```
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
if [[ "${TRAVIS_REPO_SLUG}" == "pando-project/jerryscript"
|
||||
if [[ "${TRAVIS_REPO_SLUG}" == "jerryscript-project/jerryscript"
|
||||
&& ${TRAVIS_BRANCH} == "master"
|
||||
&& ${TRAVIS_EVENT_TYPE} == "push" ]]
|
||||
then
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user