fosslight-source 2.2.9__tar.gz → 2.2.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fosslight_source-2.2.9/src/fosslight_source.egg-info → fosslight_source-2.2.10}/PKG-INFO +1 -1
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/setup.py +1 -1
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/cli.py +3 -3
- {fosslight_source-2.2.9 → fosslight_source-2.2.10/src/fosslight_source.egg-info}/PKG-INFO +1 -1
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/LICENSE +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/MANIFEST.in +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/README.md +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/requirements.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/setup.cfg +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/__init__.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_help.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_license_matched.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_parsing_scancode_file_item.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_parsing_scanoss_file.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_scan_item.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_manifest_extractor.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_scancode.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_scanoss.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_spdx_extractor.py +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/SOURCES.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/dependency_links.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/entry_points.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/requires.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/top_level.txt +0 -0
- {fosslight_source-2.2.9 → fosslight_source-2.2.10}/tests/test_tox.py +0 -0
|
@@ -14,7 +14,7 @@ with open('requirements.txt', 'r', 'utf-8') as f:
|
|
|
14
14
|
if __name__ == "__main__":
|
|
15
15
|
setup(
|
|
16
16
|
name='fosslight_source',
|
|
17
|
-
version='2.2.
|
|
17
|
+
version='2.2.10',
|
|
18
18
|
package_dir={"": "src"},
|
|
19
19
|
packages=find_packages(where='src'),
|
|
20
20
|
description='FOSSLight Source Scanner',
|
|
@@ -206,14 +206,14 @@ def create_report_file(
|
|
|
206
206
|
if api_limit_exceed:
|
|
207
207
|
scan_item.set_cover_comment("SCANOSS skipped (API limits)")
|
|
208
208
|
|
|
209
|
-
run_kb = True if selected_scanner in ['kb'
|
|
209
|
+
run_kb = True if selected_scanner in ['kb'] else False
|
|
210
210
|
if run_kb:
|
|
211
211
|
scan_item.set_cover_comment("KB Enabled" if check_kb_server_reachable() else "KB Unreachable")
|
|
212
212
|
display_mode = selected_scanner
|
|
213
213
|
if selected_scanner == "kb":
|
|
214
214
|
display_mode += ", scancode"
|
|
215
215
|
elif selected_scanner == "all":
|
|
216
|
-
display_mode = "
|
|
216
|
+
display_mode = "scancode, scanoss"
|
|
217
217
|
scan_item.set_cover_comment(f"Mode : {display_mode}")
|
|
218
218
|
|
|
219
219
|
if merged_result:
|
|
@@ -412,7 +412,7 @@ def run_scanners(
|
|
|
412
412
|
write_json_file)
|
|
413
413
|
|
|
414
414
|
if selected_scanner in SCANNER_TYPE:
|
|
415
|
-
run_kb = True if selected_scanner in ['kb'
|
|
415
|
+
run_kb = True if selected_scanner in ['kb'] else False
|
|
416
416
|
spdx_downloads, manifest_licenses = metadata_collector(path_to_scan, excluded_files)
|
|
417
417
|
merged_result = merge_results(scancode_result, scanoss_result, spdx_downloads,
|
|
418
418
|
path_to_scan, run_kb, manifest_licenses)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/_parsing_scanoss_file.py
RENAMED
|
File without changes
|
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_manifest_extractor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source/run_spdx_extractor.py
RENAMED
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/requires.txt
RENAMED
|
File without changes
|
{fosslight_source-2.2.9 → fosslight_source-2.2.10}/src/fosslight_source.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|