Skip to content

Commit

Permalink
Merge branch 'development' into dev-ci-hlcmsvc
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Oct 15, 2024
2 parents cf4e751 + 94bde7d commit 426e9af
Show file tree
Hide file tree
Showing 73 changed files with 10,684 additions and 8,527 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,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 @@ -478,7 +477,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 @@ -535,7 +534,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
11 changes: 11 additions & 0 deletions extra/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2024-08-07 4.3.6

Bugfixes:

display : do not define "display" for json rpc diagnostics (#11746)
cpp : null check interfaces (#11743)
hl : ignore WANT_READ/WANT_WRITE errors when the socket is known to be blocking (#11655)
hl : fix weird compiler error (#11690)
jvm : fix --java out -D jvm deprecation warning (#11739)
macro : Context.reportError should not abort build macros (#11741)

2024-07-18 4.3.5

General improvements:
Expand Down
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
1 change: 0 additions & 1 deletion extra/github-actions/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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 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 426e9af

Please sign in to comment.