Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0da2e01

Browse filesBrowse files
authored
gyp: update gyp to v0.8.1 (#2355)
PR-URL: #2355 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Christian Clauss <cclauss@me.com>
1 parent 0093ec8 commit 0da2e01
Copy full SHA for 0da2e01
Expand file treeCollapse file tree

23 files changed

+31
-24
lines changed

‎gyp/.github/workflows/node-gyp.yml

Copy file name to clipboardExpand all lines: gyp/.github/workflows/node-gyp.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
repository: nodejs/node-gyp
2121
path: node-gyp
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v2
2323
with:
2424
node-version: 14.x
2525
- uses: actions/setup-python@v2

‎gyp/.github/workflows/release-please.yml

Copy file name to clipboardExpand all lines: gyp/.github/workflows/release-please.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release-please:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: GoogleCloudPlatform/release-please-action@v2.5.6
11+
- uses: GoogleCloudPlatform/release-please-action@v2
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414
release-type: python

‎gyp/CHANGELOG.md

Copy file name to clipboardExpand all lines: gyp/CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### [0.8.1](https://www.github.com/nodejs/gyp-next/compare/v0.8.0...v0.8.1) (2021-02-18)
4+
5+
6+
### Bug Fixes
7+
8+
* update shebang lines from python to python3 ([#94](https://www.github.com/nodejs/gyp-next/issues/94)) ([a1b0d41](https://www.github.com/nodejs/gyp-next/commit/a1b0d4171a8049a4ab7a614202063dec332f2df4))
9+
310
## [0.8.0](https://www.github.com/nodejs/gyp-next/compare/v0.7.0...v0.8.0) (2021-01-15)
411

512

‎gyp/gyp_main.py

Copy file name to clipboardExpand all lines: gyp/gyp_main.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2009 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/MSVSSettings.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/MSVSSettings.py
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@
2222
_msvs_validators = {}
2323
_msbuild_validators = {}
2424

25+
2526
# A dictionary of settings converters. The key is the tool name, the value is
2627
# a dictionary mapping setting names to conversion functions.
2728
_msvs_to_msbuild_converters = {}
2829

30+
2931
# Tool name mapping from MSVS to MSBuild.
3032
_msbuild_name_of_tool = {}
3133

‎gyp/pylib/gyp/MSVSSettings_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/MSVSSettings_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/__init__.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/common_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/common_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/easy_xml_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/easy_xml_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2011 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/flock_tool.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/flock_tool.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright (c) 2011 Google Inc. All rights reserved.
33
# Use of this source code is governed by a BSD-style license that can be
44
# found in the LICENSE file.

‎gyp/pylib/gyp/generator/android.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/generator/android.py
+1-3Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,9 +486,7 @@ def WriteCopies(self, copies, extra_outputs):
486486
self.LocalPathify(os.path.join(copy["destination"], filename))
487487
)
488488

489-
self.WriteLn(
490-
f"{output}: {path} $(GYP_TARGET_DEPENDENCIES) | $(ACP)"
491-
)
489+
self.WriteLn(f"{output}: {path} $(GYP_TARGET_DEPENDENCIES) | $(ACP)")
492490
self.WriteLn("\t@echo Copying: $@")
493491
self.WriteLn("\t$(hide) mkdir -p $(dir $@)")
494492
self.WriteLn("\t$(hide) $(ACP) -rpf $< $@")

‎gyp/pylib/gyp/generator/msvs_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/generator/msvs_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright (c) 2012 Google Inc. All rights reserved.
33
# Use of this source code is governed by a BSD-style license that can be
44
# found in the LICENSE file.

‎gyp/pylib/gyp/generator/ninja_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/generator/ninja_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/generator/xcode_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/generator/xcode_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2013 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/input_test.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/input_test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright 2013 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/pylib/gyp/mac_tool.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/mac_tool.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright (c) 2012 Google Inc. All rights reserved.
33
# Use of this source code is governed by a BSD-style license that can be
44
# found in the LICENSE file.

‎gyp/pylib/gyp/win_tool.py

Copy file name to clipboardExpand all lines: gyp/pylib/gyp/win_tool.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/setup.py

Copy file name to clipboardExpand all lines: gyp/setup.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2009 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="gyp-next",
18-
version="0.8.0",
18+
version="0.8.1",
1919
description="A fork of the GYP build system for use in the Node.js projects",
2020
long_description=long_description,
2121
long_description_content_type="text/markdown",

‎gyp/test_gyp.py

Copy file name to clipboardExpand all lines: gyp/test_gyp.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright (c) 2012 Google Inc. All rights reserved.
33
# Use of this source code is governed by a BSD-style license that can be
44
# found in the LICENSE file.

‎gyp/tools/graphviz.py

Copy file name to clipboardExpand all lines: gyp/tools/graphviz.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2011 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/tools/pretty_gyp.py

Copy file name to clipboardExpand all lines: gyp/tools/pretty_gyp.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/tools/pretty_sln.py

Copy file name to clipboardExpand all lines: gyp/tools/pretty_sln.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

‎gyp/tools/pretty_vcproj.py

Copy file name to clipboardExpand all lines: gyp/tools/pretty_vcproj.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright (c) 2012 Google Inc. All rights reserved.
44
# Use of this source code is governed by a BSD-style license that can be

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.