Skip to content

Commit

Permalink
Merge branch 'development' into haxelib-hxcpp
Browse files Browse the repository at this point in the history
  • Loading branch information
tobil4sk committed Nov 23, 2024
2 parents a502318 + 13ebeff commit 4077036
Show file tree
Hide file tree
Showing 264 changed files with 11,862 additions and 10,563 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,6 @@ jobs:
OPAMYES: 1
MACOSX_DEPLOYMENT_TARGET: 10.13
OCAML_VERSION: 5.1.1
CTYPES: 0.21.1
steps:
- uses: actions/checkout@main
with:
Expand All @@ -472,7 +471,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.opam/
key: ${{ matrix.os }}-${{ hashFiles('./haxe.opam', './libs/') }}
key: ${{ matrix.os }}-${{ hashFiles('./haxe.opam', './libs/') }}-1

- name: Install Neko from S3
run: |
Expand Down Expand Up @@ -502,6 +501,8 @@ jobs:
run: |
set -ex
brew update
brew uninstall --force pkg-config
brew install pkgconf --overwrite
brew bundle --file=tests/Brewfile --no-upgrade
cpanm IPC::System::Simple
cpanm String::ShellQuote
Expand Down Expand Up @@ -529,7 +530,6 @@ jobs:
opam switch create ${{env.OCAML_VERSION}}
eval $(opam env)
opam env
opam pin add ctypes ${{env.CTYPES}} --yes
opam pin add haxe . --no-action
opam install haxe --deps-only --assume-depexts
opam list
Expand Down
5 changes: 4 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"label": "make: haxe",
"type": "shell",
"command": "make ADD_REVISION=1 -s -j haxe",
"osx": {
"command": "eval $(opam env) && make ADD_REVISION=1 -s -j haxe",
},
"windows": {
"command": "make ADD_REVISION=1 -f Makefile.win -s -j haxe"
},
Expand Down Expand Up @@ -48,4 +51,4 @@
"problemMatcher": []
}
]
}
}
26 changes: 23 additions & 3 deletions extra/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
Haxe Licenses
-------------

For details about Haxe Licenses, please read http://haxe.org/foundation/open-source.html
The Haxe toolkit is Free and Open-Source software that uses several licenses.

The Haxe Standard Library MIT License :
The Haxe compiler is licensed under the GNU GPL v2+ license (SPDX: GPL-2.0-or-later).

The compiler is built around the Haxe source code base.

If a file does not have a license header or does not fall under one of the exceptions listed below,
it should be assumed to be licensed under the GNU GPL v2+ license with the standard copyright notice:
Copyright (C) 2005-2024 Haxe Foundation.

- The Haxe Standard Library is licensed under the MIT License, which is reproduced below.
It is located in the `std/` directory, and the MIT license applies to this part of Haxe.

- Haxe contains third-party source code, some of which is located in the `libs/` directory.
Each third-party module includes its own license.
For integration with Haxe, these modules may contain Haxe-related files such as a "dune" file
or other files for integration with Haxe or OCaml.
These files are licensed under the Haxe Compiler license (GNU GPL v2+).

For a summary of Haxe licenses, please read [http://haxe.org/foundation/open-source.html](http://haxe.org/foundation/open-source.html).


The Haxe Standard Library MIT License:
--------------------------

Copyright (C)2005-2016 Haxe Foundation
Expand All @@ -26,7 +46,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

The Haxe compiler GPL License :
The Haxe compiler GPL License:
-------------------------------

GNU GENERAL PUBLIC LICENSE
Expand Down
3 changes: 2 additions & 1 deletion extra/github-actions/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
run: |
set -ex
brew update
brew uninstall --force pkg-config
brew install pkgconf --overwrite
brew bundle --file=tests/Brewfile --no-upgrade
cpanm IPC::System::Simple
cpanm String::ShellQuote
Expand Down Expand Up @@ -34,7 +36,6 @@
opam switch create ${{env.OCAML_VERSION}}
eval $(opam env)
opam env
opam pin add ctypes ${{env.CTYPES}} --yes
opam pin add haxe . --no-action
opam install haxe --deps-only --assume-depexts
opam list
Expand Down
3 changes: 1 addition & 2 deletions extra/github-actions/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ jobs:
OPAMYES: 1
MACOSX_DEPLOYMENT_TARGET: 10.13
OCAML_VERSION: 5.1.1
CTYPES: 0.21.1
steps:
- uses: actions/checkout@main
with:
Expand All @@ -326,7 +325,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.opam/
key: ${{ matrix.os }}-${{ hashFiles('./haxe.opam', './libs/') }}
key: ${{ matrix.os }}-${{ hashFiles('./haxe.opam', './libs/') }}-1

@import install-neko-unix.yml
@import build-mac.yml
Expand Down
2 changes: 1 addition & 1 deletion extra/haxelib_src
2 changes: 1 addition & 1 deletion haxe.opam
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ depends: [
"conf-libpcre2-8"
"conf-zlib"
"conf-neko"
"luv" {= "0.5.12"}
"luv" {>= "0.5.13"}
"ipaddr"
"terminal_size"
]
Loading

0 comments on commit 4077036

Please sign in to comment.