mirror of
https://github.com/electron/node-gyp.git
synced 2025-08-15 12:58:19 +02:00
feat(gyp): update gyp to v0.9.1 (#2402)
This commit is contained in:
parent
14236709de
commit
814b1b0eda
10 changed files with 44 additions and 17 deletions
2
gyp/.github/workflows/release-please.yml
vendored
2
gyp/.github/workflows/release-please.yml
vendored
|
@ -1,7 +1,7 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
|
||||
name: release-please
|
||||
jobs:
|
||||
|
|
|
@ -1,5 +1,25 @@
|
|||
# Changelog
|
||||
|
||||
### [0.9.1](https://www.github.com/nodejs/gyp-next/compare/v0.9.0...v0.9.1) (2021-05-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* py lint ([3b6a8ee](https://www.github.com/nodejs/gyp-next/commit/3b6a8ee7a66193a8a6867eba9e1d2b70bdf04402))
|
||||
|
||||
## [0.9.0](https://www.github.com/nodejs/gyp-next/compare/v0.8.1...v0.9.0) (2021-05-13)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* use LDFLAGS_host for host toolset ([#98](https://www.github.com/nodejs/gyp-next/issues/98)) ([bea5c7b](https://www.github.com/nodejs/gyp-next/commit/bea5c7bd67d6ad32acbdce79767a5481c70675a2))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* msvs.py: remove overindentation ([#102](https://www.github.com/nodejs/gyp-next/issues/102)) ([3f83e99](https://www.github.com/nodejs/gyp-next/commit/3f83e99056d004d9579ceb786e06b624ddc36529))
|
||||
* update gyp.el to change case to cl-case ([#93](https://www.github.com/nodejs/gyp-next/issues/93)) ([13d5b66](https://www.github.com/nodejs/gyp-next/commit/13d5b66aab35985af9c2fb1174fdc6e1c1407ecc))
|
||||
|
||||
### [0.8.1](https://www.github.com/nodejs/gyp-next/compare/v0.8.0...v0.8.1) (2021-02-18)
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Code of Conduct
|
||||
|
||||
* [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md)
|
||||
* [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/master/Moderation-Policy.md)
|
||||
* [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md)
|
||||
* [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/HEAD/Moderation-Policy.md)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Code of Conduct
|
||||
|
||||
This project is bound to the [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md).
|
||||
This project is bound to the [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md).
|
||||
|
||||
<a id="developers-certificate-of-origin"></a>
|
||||
## Developer's Certificate of Origin 1.1
|
||||
|
|
|
@ -319,7 +319,7 @@ CFLAGS.host ?= $(CPPFLAGS_host) $(CFLAGS_host)
|
|||
CXX.host ?= %(CXX.host)s
|
||||
CXXFLAGS.host ?= $(CPPFLAGS_host) $(CXXFLAGS_host)
|
||||
LINK.host ?= %(LINK.host)s
|
||||
LDFLAGS.host ?=
|
||||
LDFLAGS.host ?= $(LDFLAGS_host)
|
||||
AR.host ?= %(AR.host)s
|
||||
|
||||
# Define a dir function that can handle spaces.
|
||||
|
|
|
@ -1417,7 +1417,11 @@ class NinjaWriter:
|
|||
is_executable = spec["type"] == "executable"
|
||||
# The ldflags config key is not used on mac or win. On those platforms
|
||||
# linker flags are set via xcode_settings and msvs_settings, respectively.
|
||||
env_ldflags = os.environ.get("LDFLAGS", "").split()
|
||||
if self.toolset == "target":
|
||||
env_ldflags = os.environ.get("LDFLAGS", "").split()
|
||||
elif self.toolset == "host":
|
||||
env_ldflags = os.environ.get("LDFLAGS_host", "").split()
|
||||
|
||||
if self.flavor == "mac":
|
||||
ldflags = self.xcode_settings.GetLdflags(
|
||||
config_name,
|
||||
|
|
|
@ -138,7 +138,9 @@ a project file is output.
|
|||
"""
|
||||
|
||||
import gyp.common
|
||||
from functools import cmp_to_key
|
||||
import hashlib
|
||||
from operator import attrgetter
|
||||
import posixpath
|
||||
import re
|
||||
import struct
|
||||
|
@ -423,6 +425,8 @@ class XCObject:
|
|||
"""
|
||||
|
||||
hash.update(struct.pack(">i", len(data)))
|
||||
if isinstance(data, str):
|
||||
data = data.encode("utf-8")
|
||||
hash.update(data)
|
||||
|
||||
if seed_hash is None:
|
||||
|
@ -1483,7 +1487,7 @@ class PBXGroup(XCHierarchicalElement):
|
|||
|
||||
def SortGroup(self):
|
||||
self._properties["children"] = sorted(
|
||||
self._properties["children"], cmp=lambda x, y: x.Compare(y)
|
||||
self._properties["children"], key=cmp_to_key(lambda x, y: x.Compare(y))
|
||||
)
|
||||
|
||||
# Recurse.
|
||||
|
@ -2891,7 +2895,7 @@ class PBXProject(XCContainerPortal):
|
|||
# according to their defined order.
|
||||
self._properties["mainGroup"]._properties["children"] = sorted(
|
||||
self._properties["mainGroup"]._properties["children"],
|
||||
cmp=lambda x, y: x.CompareRootGroup(y),
|
||||
key=cmp_to_key(lambda x, y: x.CompareRootGroup(y)),
|
||||
)
|
||||
|
||||
# Sort everything else by putting group before files, and going
|
||||
|
@ -2986,9 +2990,7 @@ class PBXProject(XCContainerPortal):
|
|||
# Xcode seems to sort this list case-insensitively
|
||||
self._properties["projectReferences"] = sorted(
|
||||
self._properties["projectReferences"],
|
||||
cmp=lambda x, y: cmp(
|
||||
x["ProjectRef"].Name().lower(), y["ProjectRef"].Name().lower()
|
||||
),
|
||||
key=lambda x: x["ProjectRef"].Name().lower
|
||||
)
|
||||
else:
|
||||
# The link already exists. Pull out the relevnt data.
|
||||
|
@ -3120,7 +3122,8 @@ class PBXProject(XCContainerPortal):
|
|||
product_group = ref_dict["ProductGroup"]
|
||||
product_group._properties["children"] = sorted(
|
||||
product_group._properties["children"],
|
||||
cmp=lambda x, y, rp=remote_products: CompareProducts(x, y, rp),
|
||||
key=cmp_to_key(
|
||||
lambda x, y, rp=remote_products: CompareProducts(x, y, rp)),
|
||||
)
|
||||
|
||||
|
||||
|
@ -3155,7 +3158,7 @@ class XCProjectFile(XCObject):
|
|||
else:
|
||||
self._XCPrint(file, 0, "{\n")
|
||||
for property, value in sorted(
|
||||
self._properties.items(), cmp=lambda x, y: cmp(x, y)
|
||||
self._properties.items()
|
||||
):
|
||||
if property == "objects":
|
||||
self._PrintObjects(file)
|
||||
|
@ -3183,7 +3186,7 @@ class XCProjectFile(XCObject):
|
|||
self._XCPrint(file, 0, "\n")
|
||||
self._XCPrint(file, 0, "/* Begin " + class_name + " section */\n")
|
||||
for object in sorted(
|
||||
objects_by_class[class_name], cmp=lambda x, y: cmp(x.id, y.id)
|
||||
objects_by_class[class_name], key=attrgetter("id")
|
||||
):
|
||||
object.Print(file)
|
||||
self._XCPrint(file, 0, "/* End " + class_name + " section */\n")
|
||||
|
|
|
@ -15,7 +15,7 @@ with open(path.join(here, "README.md")) as in_file:
|
|||
|
||||
setup(
|
||||
name="gyp-next",
|
||||
version="0.8.1",
|
||||
version="0.9.1",
|
||||
description="A fork of the GYP build system for use in the Node.js projects",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"For the purposes of face comparison, we're not interested in the
|
||||
differences between certain faces. For example, the difference between
|
||||
font-lock-comment-delimiter and font-lock-comment-face."
|
||||
(case face
|
||||
(cl-case face
|
||||
((font-lock-comment-delimiter-face) font-lock-comment-face)
|
||||
(t face)))
|
||||
|
||||
|
|
|
@ -213,7 +213,7 @@
|
|||
string-start)
|
||||
(setq string-start (gyp-parse-to limit))
|
||||
(if string-start
|
||||
(setq group (case (gyp-section-at-point)
|
||||
(setq group (cl-case (gyp-section-at-point)
|
||||
('dependencies 1)
|
||||
('variables 2)
|
||||
('conditions 2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue