Skip to content

Commit bfdc6ff

Browse files
committed
Address review comments #33
* Replace references to scancode-toolkit repo with links to the skeleton repo * Remove --python option from configure.bat Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent 6ab9c10 commit bfdc6ff

11 files changed

+13
-18
lines changed

configure.bat

-5
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,6 @@ if not "%1" == "" (
7777
if "%1" EQU "--init" (
7878
set "NO_INDEX= "
7979
)
80-
if "%1" EQU "--python" (
81-
echo "The --python option is now DEPRECATED. Use the PYTHON_EXECUTABLE environment"
82-
echo "variable instead. Run configure --help for details."
83-
exit /b 0
84-
)
8580
shift
8681
goto again
8782
)

etc/scripts/bootstrap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111

@@ -84,7 +84,7 @@ def bootstrap(
8484
OS(s) defaulting to all supported combinations. Create or fetch .ABOUT and
8585
.LICENSE files.
8686
87-
Optionally ignore version specifiers and use the ``--latest-version``
87+
Optionally ignore version specifiers and use the ``--latest-version``
8888
of everything.
8989
9090
Sources and wheels are fetched with attempts first from PyPI, then our remote repository.
@@ -172,7 +172,7 @@ def bootstrap(
172172
(PypiPackage(name, version), envt)
173173
for name, version, envt in name_version_envt_to_build
174174
]
175-
175+
176176
print(f'==> BUILDING #{len(packages_and_envts_to_build)} MISSING WHEELS')
177177

178178
package_envts_not_built, wheel_filenames_built = utils_thirdparty.build_missing_wheels(

etc/scripts/build_wheels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import click

etc/scripts/check_thirdparty.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import click

etc/scripts/fetch_requirements.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import itertools
@@ -108,7 +108,7 @@ def fetch_requirements(
108108
envs = (utils_thirdparty.Environment.from_pyver_and_os(pyv, os) for pyv, os in envs)
109109

110110
for env, reqf in itertools.product(envs, requirements_files):
111-
111+
112112
for package, error in utils_thirdparty.fetch_wheels(
113113
environment=env,
114114
requirements_file=reqf,

etc/scripts/fix_thirdparty.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import click

etc/scripts/gen_requirements.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import click

etc/scripts/gen_requirements_dev.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import click

etc/scripts/utils_dejacode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import io

etc/scripts/utils_requirements.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
import subprocess

etc/scripts/utils_thirdparty.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ScanCode is a trademark of nexB Inc.
66
# SPDX-License-Identifier: Apache-2.0
77
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
8-
# See https://github.com/nexB/scancode-toolkit for support or download.
8+
# See https://github.com/nexB/skeleton for support or download.
99
# See https://aboutcode.org for more information about nexB OSS projects.
1010
#
1111
from collections import defaultdict

0 commit comments

Comments
 (0)