From 7bce0ea5e2fd589888f9303b8e3f1f3fe90f9746 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 10:54:54 +0100 Subject: [PATCH 01/13] Extra line --- webapp_create_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_create_post.py b/webapp_create_post.py index 97b1d0aa0..186435aeb 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -727,7 +727,7 @@ def html_new_post(css_cache: {}, media_instance: bool, translate: {}, '' + \ translate['Location'] + '' - date_and_location += '

\n' + \ + date_and_location += '

\n' + \ edit_text_field(location_label_with_link, 'location', '', 'https://www.openstreetmap.org/#map=') + '

\n' date_and_location += end_edit_section() From c61f7e3e6d8bb7c26bba58f83f8fe78322d4e713 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 11:01:41 +0100 Subject: [PATCH 02/13] Map emoji --- webapp_create_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_create_post.py b/webapp_create_post.py index 186435aeb..31502b17e 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -725,7 +725,7 @@ def html_new_post(css_cache: {}, media_instance: bool, translate: {}, str(maps_zoom) + ',normal' location_label_with_link = \ '' + \ + 'rel="nofollow noopener noreferrer" target="_blank">🗺️ ' + \ translate['Location'] + '' date_and_location += '

\n' + \ edit_text_field(location_label_with_link, 'location', '', From bf08f64d870178d4d36ecbea91a73fff304e730a Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 11:42:58 +0100 Subject: [PATCH 03/13] Show more entries at once --- webapp_moderation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_moderation.py b/webapp_moderation.py index 8924f8249..5db54848b 100644 --- a/webapp_moderation.py +++ b/webapp_moderation.py @@ -405,7 +405,7 @@ def html_moderation_info(css_cache: {}, translate: {}, translate[msg_str1] info_form += \ ' \n' info_form += '\n' info_shown = True From 33ba88b10b8ed2b1747090024b03130d3374d07d Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 11:46:27 +0100 Subject: [PATCH 04/13] Show blocks as a sorted list --- webapp_moderation.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webapp_moderation.py b/webapp_moderation.py index 5db54848b..1af0f315a 100644 --- a/webapp_moderation.py +++ b/webapp_moderation.py @@ -395,7 +395,11 @@ def html_moderation_info(css_cache: {}, translate: {}, blocking_filename = base_dir + '/accounts/blocking.txt' if os.path.isfile(blocking_filename): with open(blocking_filename, 'r') as fp_block: - blocked_str = fp_block.read() + blocked_lines = fp_block.readlines().sort() + blocked_str = '' + for line in blocked_lines: + line = line.replace('\n', '').replace('\r', '').strip() + blocked_str += line + '\n' info_form += '

\n' info_form += \ '
' + \ From fd7781d6230eb39572991a2308554c9aa3b3c6e3 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 11:49:34 +0100 Subject: [PATCH 05/13] Handle empty lines --- webapp_moderation.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webapp_moderation.py b/webapp_moderation.py index 1af0f315a..f30357d2f 100644 --- a/webapp_moderation.py +++ b/webapp_moderation.py @@ -395,11 +395,15 @@ def html_moderation_info(css_cache: {}, translate: {}, blocking_filename = base_dir + '/accounts/blocking.txt' if os.path.isfile(blocking_filename): with open(blocking_filename, 'r') as fp_block: - blocked_lines = fp_block.readlines().sort() + blocked_lines = fp_block.readlines() blocked_str = '' - for line in blocked_lines: - line = line.replace('\n', '').replace('\r', '').strip() - blocked_str += line + '\n' + if blocked_lines: + blocked_lines.sort() + for line in blocked_lines: + if not line: + continue + line = line.replace('\n', '').replace('\r', '').strip() + blocked_str += line + '\n' info_form += '
\n' info_form += \ '
' + \ From e9a0b6b151ef6c89fe12485c4afdbc31a3dab1a4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 13:15:02 +0100 Subject: [PATCH 06/13] Parsing google maps location links --- maps.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/maps.py b/maps.py index a7f224110..6adf67643 100644 --- a/maps.py +++ b/maps.py @@ -46,17 +46,24 @@ def _geocoords_from_osm_link(url: str, osm_domain: str) -> (int, float, float): def _geocoords_from_gmaps_link(url: str) -> (int, float, float): """Returns geocoordinates from a Gmaps link """ - if '/maps/@' not in url: + if '/maps/' not in url: + return None, None, None + coords_str = url.split('/maps', 1)[1] + if '/@' not in coords_str: return None, None, None - coords_str = url.split('/maps/@')[1] + coords_str = coords_str.split('/@', 1)[1] + if 'z' not in coords_str: + return None, None, None + coords_str = coords_str.split('z', 1)[0] + if ',' not in coords_str: return None, None, None coords = coords_str.split(',') if len(coords) != 3: return None, None, None - zoom = coords[2].replace('z', '') + zoom = coords[2] if not zoom.isdigit(): return None, None, None latitude = coords[0] From c7b6705e7dfcbffe1b46a81bbcfb881c65140f4e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 15:32:40 +0100 Subject: [PATCH 07/13] Extra emoji --- emoji/default_emoji.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/emoji/default_emoji.json b/emoji/default_emoji.json index fce082c54..73ed02edf 100644 --- a/emoji/default_emoji.json +++ b/emoji/default_emoji.json @@ -451,8 +451,8 @@ "warning": "26A0", "wastebasket": "1F5D1", "watch": "231A", - "waveman": "1F64B-1F3FE-200D-2642-FE0F", - "wavewoman": "1F64B-1F3FE-200D-2640-FE0F", + "waveman": "1F64B", + "wavewoman": "1F64B", "wavydash": "3030", "wheelchairsymbol": "267F", "wheelchair": "1F9BD", @@ -2824,5 +2824,6 @@ "vegananarchism": "vegananarchism", "wiphala_bolivia": "wiphala_bolivia", "yayblob": "yayblob", - "notankies": "notankies" + "notankies": "notankies", + "highfive": "1F64B" } From 5b4a7c7eb51c521cec1eb924082e1688cc3996b2 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 17:21:43 +0100 Subject: [PATCH 08/13] Software bill of materials --- Makefile | 2 + README.md | 9 + sbom.json | 6226 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 6237 insertions(+) create mode 100644 sbom.json diff --git a/Makefile b/Makefile index aef581e76..a9f079a02 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,8 @@ VERSION=1.1.0 all: debug: +sbom: + scanoss-py scan . > sbom.json source: rm -f *.*~ *~ rm -f ontology/*~ diff --git a/README.md b/README.md index 566cee0ab..30edd49eb 100644 --- a/README.md +++ b/README.md @@ -311,3 +311,12 @@ To run the network tests. These simulate instances exchanging messages. ``` bash python3 epicyon.py --testsnetwork ``` + +## Software Bill of Materials + +To update the software bill of materials: + +``` bash +sudo pip3 install scanoss +make sbom +``` diff --git a/sbom.json b/sbom.json new file mode 100644 index 000000000..b41c0342a --- /dev/null +++ b/sbom.json @@ -0,0 +1,6226 @@ +{ + "#availability.py#": [ + { + "component": "epicyon", + "file": "availability.py", + "file_hash": "13f5d4ef74fdaeb84e2409e893ffe70b", + "file_url": "https://osskb.org/api/file_contents/13f5d4ef74fdaeb84e2409e893ffe70b", + "id": "snippet", + "latest": "73da0240", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-162", + "matched": "99%", + "oss_lines": "1-162", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8b42a73327006efc9bf12015d3c9ae1a", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "Dockerfile": [ + { + "component": "epicyon", + "file": "Dockerfile", + "file_hash": "3419d2a831e8a39857bdc13e6aaa420f", + "file_url": "https://osskb.org/api/file_contents/3419d2a831e8a39857bdc13e6aaa420f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-08-02", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "3419d2a831e8a39857bdc13e6aaa420f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "bb6a249e703a2febece4fc3180193394", + "vendor": "bashrc2", + "version": "b30d256f" + } + ], + "acceptreject.py": [ + { + "component": "epicyon", + "file": "acceptreject.py", + "file_hash": "aaeb9154c3448526835d148416103bda", + "file_url": "https://osskb.org/api/file_contents/aaeb9154c3448526835d148416103bda", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-236", + "matched": "99%", + "oss_lines": "1-236", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "934e77e796b213195eed3006af5359ea", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "announce.py": [ + { + "component": "epicyon", + "file": "announce.py", + "file_hash": "29a0e6b611f53673c07c804a95d4e932", + "file_url": "https://osskb.org/api/file_contents/29a0e6b611f53673c07c804a95d4e932", + "id": "snippet", + "latest": "a8f17d37", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-43,54-303,300-447", + "matched": "97%", + "oss_lines": "1-43,191-440,360-507", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-10-06", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "be1a3f3bea6eb361464fa603acd3ba90", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "0d85cee797d7f057363a7b1f23eadb05", + "vendor": "bashrc2", + "version": "a8f17d37" + } + ], + "auth.py": [ + { + "component": "epicyon", + "file": "auth.py", + "file_hash": "71c0c0f078f156dadfbf6cd70be6739f", + "file_url": "https://osskb.org/api/file_contents/71c0c0f078f156dadfbf6cd70be6739f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "71c0c0f078f156dadfbf6cd70be6739f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "availability.py": [ + { + "component": "epicyon", + "file": "availability.py", + "file_hash": "f77f327a4dfefb1124ee2ccb233062fc", + "file_url": "https://osskb.org/api/file_contents/f77f327a4dfefb1124ee2ccb233062fc", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f77f327a4dfefb1124ee2ccb233062fc", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "blocking.py": [ + { + "component": "epicyon", + "file": "blocking.py", + "file_hash": "747a8734f107fc26e4d059f707aa4f80", + "file_url": "https://osskb.org/api/file_contents/747a8734f107fc26e4d059f707aa4f80", + "id": "snippet", + "latest": "823b4c33", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-1027,1033-1089", + "matched": "99%", + "oss_lines": "73-1099,1024-1080", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1d5f89c08b61db10d857e1cc03768624", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "blog.py": [ + { + "component": "epicyon", + "file": "blog.py", + "file_hash": "43b7102f61bdf3b3bdc16bc584b7ec27", + "file_url": "https://osskb.org/api/file_contents/43b7102f61bdf3b3bdc16bc584b7ec27", + "id": "snippet", + "latest": "5926b174", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-145,157-491,507-649,647-800,809-959", + "matched": "96%", + "oss_lines": "1-145,422-756,554-696,643-796,764-914", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-09-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "adb7d3c1b6757a1077831953f9e318dc", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "93451a04990f28bd8b8b3e5193b1ae66", + "vendor": "bashrc2", + "version": "5926b174" + } + ], + "bookmarks.py": [ + { + "component": "epicyon", + "file": "bookmarks.py", + "file_hash": "134208359eb0b5481735c9b12ae69ee0", + "file_url": "https://osskb.org/api/file_contents/134208359eb0b5481735c9b12ae69ee0", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "134208359eb0b5481735c9b12ae69ee0", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "briar.py": [ + { + "component": "epicyon", + "file": "epicyon-1.2.0/briar.py", + "file_hash": "4d5891e35df520f423aed232f128b80f", + "file_url": "https://osskb.org/api/file_contents/4d5891e35df520f423aed232f128b80f", + "id": "snippet", + "latest": "1.3.0", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-31,47-108", + "matched": "70%", + "oss_lines": "1-31,35-96", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-03", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "48d9d804c08dc42a31270e6857743af1", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "b2989ed1f7d5477a031318db2e9c6cad", + "vendor": "Bob Mottram", + "version": "1.2.0" + } + ], + "cache.py": [ + { + "component": "epicyon", + "file": "cache.py", + "file_hash": "de4079e45ac908765197ae07ba6f1be8", + "file_url": "https://osskb.org/api/file_contents/de4079e45ac908765197ae07ba6f1be8", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-197", + "matched": "99%", + "oss_lines": "1-197", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "3a7634a15d775e09731796b3dc2b400e", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "categories.py": [ + { + "component": "epicyon", + "file": "categories.py", + "file_hash": "397479da44f175aa3de2650b8154b10b", + "file_url": "https://osskb.org/api/file_contents/397479da44f175aa3de2650b8154b10b", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-215", + "matched": "99%", + "oss_lines": "8-222", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e9e5e1ccfb4bf768630002ccc32028b2", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "city.py": [ + { + "component": "epicyon", + "file": "city.py", + "file_hash": "474fe1162d09011f14ebe0f31ae0f5f6", + "file_url": "https://osskb.org/api/file_contents/474fe1162d09011f14ebe0f31ae0f5f6", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "474fe1162d09011f14ebe0f31ae0f5f6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "content.py": [ + { + "component": "epicyon", + "file": "content.py", + "file_hash": "748367f1a2ea87997f408038b3a36c16", + "file_url": "https://osskb.org/api/file_contents/748367f1a2ea87997f408038b3a36c16", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-73,75-681,676-1276,1279-1701", + "matched": "98%", + "oss_lines": "1-73,56-662,774-1374,1607-2029", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "62ce6381eed5a152a16e59882c621f0e", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "context.py": [ + { + "component": "epicyon", + "file": "context.py", + "file_hash": "9dcd68667fbcc274ceca47ad563de33c", + "file_url": "https://osskb.org/api/file_contents/9dcd68667fbcc274ceca47ad563de33c", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "9dcd68667fbcc274ceca47ad563de33c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "conversation.py": [ + { + "component": "epicyon", + "file": "conversation.py", + "file_hash": "9b5a5889b5da1acf2b6d43b9668fa1a1", + "file_url": "https://osskb.org/api/file_contents/9b5a5889b5da1acf2b6d43b9668fa1a1", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "9b5a5889b5da1acf2b6d43b9668fa1a1", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "crawlers.py": [ + { + "component": "epicyon", + "file": "crawlers.py", + "file_hash": "0b562dad6aa2cc4481049c6d7b59d229", + "file_url": "https://osskb.org/api/file_contents/0b562dad6aa2cc4481049c6d7b59d229", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0b562dad6aa2cc4481049c6d7b59d229", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "cwlists/russianstate.json~": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "cwlists/satire.json~": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "cwtch.py": [ + { + "component": "epicyon", + "file": "cwtch.py", + "file_hash": "1d600a6795b47fb32a2198a4cb9e7bd9", + "file_url": "https://osskb.org/api/file_contents/1d600a6795b47fb32a2198a4cb9e7bd9", + "id": "snippet", + "latest": "e2cc26b4", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-41,58-95", + "matched": "66%", + "oss_lines": "4-44,49-86", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-10-06", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "7447fd0a3c2c283fbbf64114ecb51d91", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "0d85cee797d7f057363a7b1f23eadb05", + "vendor": "bashrc2", + "version": "a8f17d37" + } + ], + "daemon.py": [ + { + "component": "epicyon", + "file": "daemon.py", + "file_hash": "bb7fe659899e73d77530a477e66c5bbf", + "file_url": "https://osskb.org/api/file_contents/bb7fe659899e73d77530a477e66c5bbf", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "name": "CC-BY-4.0", + "source": "scancode", + "url": "https://spdx.org/licenses/CC-BY-4.0.html" + } + ], + "lines": "3944-8129", + "matched": "51%", + "oss_lines": "7891-12076", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f8b260a8083e1dee2df94d48e61e20e2", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "delete.py": [ + { + "component": "epicyon", + "file": "delete.py", + "file_hash": "428540ca5ac23f4bea6a406c096cbfe9", + "file_url": "https://osskb.org/api/file_contents/428540ca5ac23f4bea6a406c096cbfe9", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-205", + "matched": "99%", + "oss_lines": "1-205", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "12463bfc447735b9c90af51a37dabda6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "deploy/i2p": [ + { + "component": "epicyon", + "file": "i2p", + "file_hash": "71e960e24865311eca148df6e1a336ab", + "file_url": "https://osskb.org/api/file_contents/71e960e24865311eca148df6e1a336ab", + "id": "snippet", + "latest": "823b4c33", + "licenses": [], + "lines": "1-226,240-443", + "matched": "96%", + "oss_lines": "8-233,331-534", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-12-07", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "638ac84256412a03da95fdb9f722fbf1", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "94b082430bca99a22921d59469996687", + "vendor": "bashrc2", + "version": "e2cc26b4" + } + ], + "deploy/onion": [ + { + "component": "epicyon", + "file": "onion", + "file_hash": "f18e29bc2ef532b79f9e3c864901dcd5", + "file_url": "https://osskb.org/api/file_contents/f18e29bc2ef532b79f9e3c864901dcd5", + "id": "snippet", + "latest": "823b4c33", + "licenses": [], + "lines": "1-147,160-327", + "matched": "95%", + "oss_lines": "1-147,139-306", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-12-07", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8a099b16f7ab77859111b22fa004ac6e", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "94b082430bca99a22921d59469996687", + "vendor": "bashrc2", + "version": "e2cc26b4" + } + ], + "desktop_client.py": [ + { + "component": "epicyon", + "file": "desktop_client.py", + "file_hash": "4474caca306c5d0f933869e764f48149", + "file_url": "https://osskb.org/api/file_contents/4474caca306c5d0f933869e764f48149", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "name": "CC-BY-4.0", + "source": "scancode", + "url": "https://spdx.org/licenses/CC-BY-4.0.html" + } + ], + "lines": "1-482,472-1489,1485-1834,1831-2371,2361-2582", + "matched": "99%", + "oss_lines": "1-482,815-1832,1587-1936,2124-2664,2380-2601", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "388f0f10b2b01b110d414fb559ad00b6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "devices.py": [ + { + "component": "epicyon", + "file": "devices.py", + "file_hash": "d72220164a89e393b6b32e504c9fa3f7", + "file_url": "https://osskb.org/api/file_contents/d72220164a89e393b6b32e504c9fa3f7", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "d72220164a89e393b6b32e504c9fa3f7", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "donate.py": [ + { + "component": "epicyon", + "file": "donate.py", + "file_hash": "a8a42f5053f6cb3fb25f57939a3ac6fa", + "file_url": "https://osskb.org/api/file_contents/a8a42f5053f6cb3fb25f57939a3ac6fa", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "15-71,75-120,151-202", + "matched": "75%", + "oss_lines": "12-68,58-103,120-171", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "570308c0946c0a7984064359d5417b49", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "enigma.py": [ + { + "component": "epicyon", + "file": "enigma.py", + "file_hash": "02bfb4560a933d22e867ad9f417ecf3b", + "file_url": "https://osskb.org/api/file_contents/02bfb4560a933d22e867ad9f417ecf3b", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-30,39-78", + "matched": "69%", + "oss_lines": "1-30,29-68", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "28028dc040fdd816005d105ef2ca0c94", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "epicyon.py": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_ActivityPub.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_ActivityPub_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_ActivityPub_Security.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Commandline-Interface_ActivityPub.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Commandline-Interface_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Core_Accessibility.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Core_Security.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Timeline_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Timeline_Security.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Web-Interface-Columns_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Web-Interface_Accessibility.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "epicyon_groups_Web-Interface_Core.dot": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "feeds.py": [ + { + "component": "epicyon", + "file": "feeds.py", + "file_hash": "0d5464b44c5876a18b4ba2d2689ba5ba", + "file_url": "https://osskb.org/api/file_contents/0d5464b44c5876a18b4ba2d2689ba5ba", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-24", + "matched": "95%", + "oss_lines": "1-24", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "823fd5a41d7164bb412fcd1d58ce08b7", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "filters.py": [ + { + "component": "epicyon", + "file": "filters.py", + "file_hash": "71fa9f0850ebbe02f6bcf4dc184e2b02", + "file_url": "https://osskb.org/api/file_contents/71fa9f0850ebbe02f6bcf4dc184e2b02", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-187", + "matched": "99%", + "oss_lines": "1-187", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "4cff4a2899d6f9617c31a9c8b721553f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "fitnessFunctions.py": [ + { + "component": "epicyon", + "file": "fitnessFunctions.py", + "file_hash": "3d770518ba9569df318a90de97ae0d24", + "file_url": "https://osskb.org/api/file_contents/3d770518ba9569df318a90de97ae0d24", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "3d770518ba9569df318a90de97ae0d24", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "follow.py": [ + { + "component": "epicyon", + "file": "follow.py", + "file_hash": "0afce0368b3adea2a14689d6b271ce78", + "file_url": "https://osskb.org/api/file_contents/0afce0368b3adea2a14689d6b271ce78", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-571,560-1256,1246-1463", + "matched": "99%", + "oss_lines": "1-571,1310-2006,1382-1599", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "32667bd2a86bff179ad9221d99090c26", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "followingCalendar.py": [ + { + "component": "epicyon", + "file": "followingCalendar.py", + "file_hash": "e1fba69c04e631d8f9fd318082df2b1c", + "file_url": "https://osskb.org/api/file_contents/e1fba69c04e631d8f9fd318082df2b1c", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e1fba69c04e631d8f9fd318082df2b1c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "fonts/Absortile-Bold.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Absortile-Bold.woff2", + "file_hash": "4c0163853081cc1827a076049d455a45", + "file_url": "https://osskb.org/api/file_contents/4c0163853081cc1827a076049d455a45", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "4c0163853081cc1827a076049d455a45", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Absortile.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Absortile.woff2", + "file_hash": "9a92c1da40d84279786aebce19bf4d73", + "file_url": "https://osskb.org/api/file_contents/9a92c1da40d84279786aebce19bf4d73", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "9a92c1da40d84279786aebce19bf4d73", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Barlow-Regular.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Barlow-Regular.woff2", + "file_hash": "d4e390ca5271e41457c93416465e5c11", + "file_url": "https://osskb.org/api/file_contents/d4e390ca5271e41457c93416465e5c11", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "d4e390ca5271e41457c93416465e5c11", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/CheGuevaraTextSans-Regular.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/CheGuevaraTextSans-Regular.woff2", + "file_hash": "2583e5c40e2d52b66131d70d1963d9eb", + "file_url": "https://osskb.org/api/file_contents/2583e5c40e2d52b66131d70d1963d9eb", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "2583e5c40e2d52b66131d70d1963d9eb", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Domestic_Manners.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Domestic_Manners.woff2", + "file_hash": "56b1fdf21bdf2c5764c068a1aae2c8c1", + "file_url": "https://osskb.org/api/file_contents/56b1fdf21bdf2c5764c068a1aae2c8c1", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "56b1fdf21bdf2c5764c068a1aae2c8c1", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Edition.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Edition.woff2", + "file_hash": "bada67e06962cfb3d9e0d3dfd2a9f0d2", + "file_url": "https://osskb.org/api/file_contents/bada67e06962cfb3d9e0d3dfd2a9f0d2", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "bada67e06962cfb3d9e0d3dfd2a9f0d2", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/GeneralFailureRegular.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/GeneralFailureRegular.woff2", + "file_hash": "f8c752c7833003b4d9faf72fa658af1c", + "file_url": "https://osskb.org/api/file_contents/f8c752c7833003b4d9faf72fa658af1c", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f8c752c7833003b4d9faf72fa658af1c", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/JetBrainsMono-Regular.woff2": [ + { + "component": "ethanloo", + "file": "JetBrainsMono-Regular.woff2", + "file_hash": "21ba2c11275a07ccf3890fbeab585525", + "file_url": "https://osskb.org/api/file_contents/21ba2c11275a07ccf3890fbeab585525", + "id": "file", + "latest": "V0.3", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:github/ethanluu/ethanloo" + ], + "release_date": "2020-12-14", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "21ba2c11275a07ccf3890fbeab585525", + "status": "pending", + "url": "https://github.com/EthanLuu/ethanloo", + "url_hash": "feda6523e854d65e9a03a22f25517d0a", + "vendor": "EthanLuu", + "version": "V0.2" + } + ], + "fonts/LcdSolid.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/LcdSolid.woff2", + "file_hash": "da0a1dfc4d3cbefb8497057be56ce996", + "file_url": "https://osskb.org/api/file_contents/da0a1dfc4d3cbefb8497057be56ce996", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "da0a1dfc4d3cbefb8497057be56ce996", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/LinBiolinum_Kah.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/LinBiolinum_Kah.woff2", + "file_hash": "01b89f02b20f7c413b17a0192899b7a0", + "file_url": "https://osskb.org/api/file_contents/01b89f02b20f7c413b17a0192899b7a0", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "01b89f02b20f7c413b17a0192899b7a0", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/LinBiolinum_RBah.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/LinBiolinum_RBah.woff2", + "file_hash": "875565d51b7c18d9d3dbe53089999e82", + "file_url": "https://osskb.org/api/file_contents/875565d51b7c18d9d3dbe53089999e82", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "875565d51b7c18d9d3dbe53089999e82", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/LinBiolinum_RIah.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/LinBiolinum_RIah.woff2", + "file_hash": "a420a3a7da4275e5e4a66e0cfdb0be62", + "file_url": "https://osskb.org/api/file_contents/a420a3a7da4275e5e4a66e0cfdb0be62", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "a420a3a7da4275e5e4a66e0cfdb0be62", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/LinBiolinum_Rah.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/LinBiolinum_Rah.woff2", + "file_hash": "f598322f1d3a3b63199e7430fe3a1d6f", + "file_url": "https://osskb.org/api/file_contents/f598322f1d3a3b63199e7430fe3a1d6f", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f598322f1d3a3b63199e7430fe3a1d6f", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/MarginaliaRegular.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/MarginaliaRegular.woff2", + "file_hash": "1027b41ecb961e6d0be30804717e6c09", + "file_url": "https://osskb.org/api/file_contents/1027b41ecb961e6d0be30804717e6c09", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1027b41ecb961e6d0be30804717e6c09", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Octavius.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Octavius.woff2", + "file_hash": "1800187921633317111a294385a41a21", + "file_url": "https://osskb.org/api/file_contents/1800187921633317111a294385a41a21", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1800187921633317111a294385a41a21", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/OpenDyslexic-Italic.woff2": [ + { + "component": "DyslexicProjekt", + "file": "fonts/OpenDyslexic-Italic.woff2", + "file_hash": "7415ea4fda98c0d93be0f5a959e4e3fa", + "file_url": "https://osskb.org/api/file_contents/7415ea4fda98c0d93be0f5a959e4e3fa", + "id": "file", + "latest": "1.0.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:github/snaildos/dyslexicprojekt" + ], + "release_date": "2021-03-12", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "7415ea4fda98c0d93be0f5a959e4e3fa", + "status": "pending", + "url": "https://github.com/snaildos/DyslexicProjekt", + "url_hash": "4af89d3b774cab7936f9c170de655bfb", + "vendor": "snaildos", + "version": "1.0.0" + } + ], + "fonts/OpenDyslexic-Regular.woff2": [ + { + "component": "DyslexicProjekt", + "file": "fonts/OpenDyslexic-Regular.woff2", + "file_hash": "209dda5cb26799aa32208505e357980c", + "file_url": "https://osskb.org/api/file_contents/209dda5cb26799aa32208505e357980c", + "id": "file", + "latest": "1.0.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:github/snaildos/dyslexicprojekt" + ], + "release_date": "2021-03-12", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "209dda5cb26799aa32208505e357980c", + "status": "pending", + "url": "https://github.com/snaildos/DyslexicProjekt", + "url_hash": "4af89d3b774cab7936f9c170de655bfb", + "vendor": "snaildos", + "version": "1.0.0" + } + ], + "fonts/RailModel.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/RailModel.woff2", + "file_hash": "0c318a51403bc9dbab393a9fda3cc393", + "file_url": "https://osskb.org/api/file_contents/0c318a51403bc9dbab393a9fda3cc393", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0c318a51403bc9dbab393a9fda3cc393", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/SubZER0.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/SubZER0.woff2", + "file_hash": "46ba0ed85f5cf65550eecaacc0b9c826", + "file_url": "https://osskb.org/api/file_contents/46ba0ed85f5cf65550eecaacc0b9c826", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "46ba0ed85f5cf65550eecaacc0b9c826", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/SundownerRegular.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/SundownerRegular.woff2", + "file_hash": "266d6a89189dde9bddc97463999e6f3d", + "file_url": "https://osskb.org/api/file_contents/266d6a89189dde9bddc97463999e6f3d", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "266d6a89189dde9bddc97463999e6f3d", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/Warenhaus-Standard.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/Warenhaus-Standard.woff2", + "file_hash": "2a8dcf7d7f96e256058554eb45e7176b", + "file_url": "https://osskb.org/api/file_contents/2a8dcf7d7f96e256058554eb45e7176b", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "2a8dcf7d7f96e256058554eb45e7176b", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/bgrove.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/bgrove.woff2", + "file_hash": "437332c39cab732e72bd8a3e7cf37ed6", + "file_url": "https://osskb.org/api/file_contents/437332c39cab732e72bd8a3e7cf37ed6", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "437332c39cab732e72bd8a3e7cf37ed6", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/bgroveb.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/bgroveb.woff2", + "file_hash": "e1dae2a0e779c2aeae6be77bb79d5a37", + "file_url": "https://osskb.org/api/file_contents/e1dae2a0e779c2aeae6be77bb79d5a37", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e1dae2a0e779c2aeae6be77bb79d5a37", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/solidaric-italic.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/solidaric-italic.woff2", + "file_hash": "8473a6a7a4cad17cfcaa3981b6c89e7b", + "file_url": "https://osskb.org/api/file_contents/8473a6a7a4cad17cfcaa3981b6c89e7b", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8473a6a7a4cad17cfcaa3981b6c89e7b", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "fonts/solidaric.woff2": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/fonts/solidaric.woff2", + "file_hash": "e235adf86e30635cc4aed4ab836af4d3", + "file_url": "https://osskb.org/api/file_contents/e235adf86e30635cc4aed4ab836af4d3", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e235adf86e30635cc4aed4ab836af4d3", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "gemini/EN/features.gmi": [ + { + "component": "epicyon", + "file": "gemini/EN/features.gmi", + "file_hash": "b0ac8709499298dfecaad21597ae0c21", + "file_url": "https://osskb.org/api/file_contents/b0ac8709499298dfecaad21597ae0c21", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "b0ac8709499298dfecaad21597ae0c21", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "gemini/EN/index.gmi": [ + { + "component": "epicyon", + "file": "gemini/EN/index.gmi", + "file_hash": "817ae877e5c1f6137faf0b3b8ae5c5b4", + "file_url": "https://osskb.org/api/file_contents/817ae877e5c1f6137faf0b3b8ae5c5b4", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-12-07", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "817ae877e5c1f6137faf0b3b8ae5c5b4", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "94b082430bca99a22921d59469996687", + "vendor": "bashrc2", + "version": "e2cc26b4" + } + ], + "gemini/EN/install.gmi": [ + { + "component": "epicyon", + "file": "gemini/EN/install.gmi", + "file_hash": "2c949ac6fc2ee79c88f3f023cc643fac", + "file_url": "https://osskb.org/api/file_contents/2c949ac6fc2ee79c88f3f023cc643fac", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [], + "lines": "1-61,64-182", + "matched": "97%", + "oss_lines": "1-61,55-173", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-12-07", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "ff6deb409ca8fd68dcf3cdce18fc1a79", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "94b082430bca99a22921d59469996687", + "vendor": "bashrc2", + "version": "e2cc26b4" + } + ], + "gemini/EN/upgrade.gmi": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "git.py": [ + { + "component": "epicyon", + "file": "git.py", + "file_hash": "1cabaac65f7cf456816901e8dbe34032", + "file_url": "https://osskb.org/api/file_contents/1cabaac65f7cf456816901e8dbe34032", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1cabaac65f7cf456816901e8dbe34032", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "happening.py": [ + { + "component": "epicyon", + "file": "happening.py", + "file_hash": "931c105042e63d3eb00b031c95b106e4", + "file_url": "https://osskb.org/api/file_contents/931c105042e63d3eb00b031c95b106e4", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-1370", + "matched": "99%", + "oss_lines": "1-1370", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "55703ff8cd1901a27e5a721a404fd677", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "httpsig.py": [ + { + "component": "epicyon", + "file": "httpsig.py", + "file_hash": "7a74a2505491180b05245a789cfc469a", + "file_url": "https://osskb.org/api/file_contents/7a74a2505491180b05245a789cfc469a", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-555", + "matched": "99%", + "oss_lines": "1-555", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f8bbd74b4c7ebc896b26e995a68f6df6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "i2pdomain": [ + { + "component": "epicyon", + "file": "i2pdomain", + "file_hash": "3c7be88c964d95b6bfdfced820c2f324", + "file_url": "https://osskb.org/api/file_contents/3c7be88c964d95b6bfdfced820c2f324", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-10-06", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "3c7be88c964d95b6bfdfced820c2f324", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "0d85cee797d7f057363a7b1f23eadb05", + "vendor": "bashrc2", + "version": "a8f17d37" + } + ], + "inbox.py": [ + { + "component": "epicyon", + "file": "inbox.py", + "file_hash": "41a79d5f2137dc93aa425197e2117d3c", + "file_url": "https://osskb.org/api/file_contents/41a79d5f2137dc93aa425197e2117d3c", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1822-2695,2698-4249,4242-5493", + "matched": "66%", + "oss_lines": "1592-2465,3184-4735,5367-6618", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "74e000c403d286bde4c085effae27b97", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "install-desktop-client": [ + { + "component": "epicyon", + "file": "install-desktop-client", + "file_hash": "94f3bc203a5228f4432654c913b977de", + "file_url": "https://osskb.org/api/file_contents/94f3bc203a5228f4432654c913b977de", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "94f3bc203a5228f4432654c913b977de", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "languages.py": [ + { + "component": "epicyon", + "file": "languages.py", + "file_hash": "94363fbd997722f188a9323887c57186", + "file_url": "https://osskb.org/api/file_contents/94363fbd997722f188a9323887c57186", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-70,85-326", + "matched": "95%", + "oss_lines": "1-70,81-322", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "fdd44c4322a06f240fd2ec7ee207e95a", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "like.py": [ + { + "component": "epicyon", + "file": "like.py", + "file_hash": "114ef7bd44c000cbaae5485d77d89601", + "file_url": "https://osskb.org/api/file_contents/114ef7bd44c000cbaae5485d77d89601", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-488", + "matched": "99%", + "oss_lines": "1-488", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "154b18b5ed0d479d2a59a63ce9421498", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "linked_data_sig.py": [ + { + "component": "epicyon", + "file": "linked_data_sig.py", + "file_hash": "bc9534c4fa6a6f92899a8f480d8f7d77", + "file_url": "https://osskb.org/api/file_contents/bc9534c4fa6a6f92899a8f480d8f7d77", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-117", + "matched": "99%", + "oss_lines": "2-118", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1de363afddfa48768de8a748cb25c494", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "manualapprove.py": [ + { + "component": "epicyon", + "file": "manualapprove.py", + "file_hash": "0c9a1016a1b9f54a3a57f5dcbd50181f", + "file_url": "https://osskb.org/api/file_contents/0c9a1016a1b9f54a3a57f5dcbd50181f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0c9a1016a1b9f54a3a57f5dcbd50181f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "maps.py": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "markdown.py": [ + { + "component": "epicyon", + "file": "markdown.py", + "file_hash": "56a74108a1624e4629ab117b6c757702", + "file_url": "https://osskb.org/api/file_contents/56a74108a1624e4629ab117b6c757702", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "56a74108a1624e4629ab117b6c757702", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "mastoapiv1.py": [ + { + "component": "epicyon", + "file": "mastoapiv1.py", + "file_hash": "608ca22ae0d7e4bf391a8f18298257c7", + "file_url": "https://osskb.org/api/file_contents/608ca22ae0d7e4bf391a8f18298257c7", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "608ca22ae0d7e4bf391a8f18298257c7", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "matrix.py": [ + { + "component": "epicyon", + "file": "epicyon-1.2.0/matrix.py", + "file_hash": "fbcead20a1795b2648b821bedf063e7e", + "file_url": "https://osskb.org/api/file_contents/fbcead20a1795b2648b821bedf063e7e", + "id": "snippet", + "latest": "1.3.0", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "45-86", + "matched": "36%", + "oss_lines": "34-75", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-03", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e76b3f17cef82ec751907fc15f8c07b6", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "b2989ed1f7d5477a031318db2e9c6cad", + "vendor": "Bob Mottram", + "version": "1.2.0" + } + ], + "media.py": [ + { + "component": "epicyon", + "file": "media.py", + "file_hash": "0d6c414089e5385d4e9180b40759edf9", + "file_url": "https://osskb.org/api/file_contents/0d6c414089e5385d4e9180b40759edf9", + "id": "snippet", + "latest": "5926b174", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-39,251-283,287-360,395-465,463-650,655-685", + "matched": "62%", + "oss_lines": "6-44,29-61,46-119,110-180,241-428,349-379", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-09-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8486d7dbdfcc6d010f4eb967efeab7a7", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "93451a04990f28bd8b8b3e5193b1ae66", + "vendor": "bashrc2", + "version": "5926b174" + } + ], + "metadata.py": [ + { + "component": "epicyon", + "file": "metadata.py", + "file_hash": "66add210473f1626bee275774f9c8362", + "file_url": "https://osskb.org/api/file_contents/66add210473f1626bee275774f9c8362", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-230", + "matched": "99%", + "oss_lines": "1-230", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8db06163f9846e214cfb3b4fab631bf2", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "migrate.py": [ + { + "component": "epicyon", + "file": "migrate.py", + "file_hash": "32ec643a5bf1aa1e55a06c857e338704", + "file_url": "https://osskb.org/api/file_contents/32ec643a5bf1aa1e55a06c857e338704", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "32ec643a5bf1aa1e55a06c857e338704", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "newsdaemon.py": [ + { + "component": "epicyon", + "file": "newsdaemon.py", + "file_hash": "a9a90ab8b6ef09e12f026810d4bb3713", + "file_url": "https://osskb.org/api/file_contents/a9a90ab8b6ef09e12f026810d4bb3713", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-898", + "matched": "99%", + "oss_lines": "63-960", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "b4c141030598408e8d83a0224f5206ce", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "newswire.py": [ + { + "component": "epicyon", + "file": "newswire.py", + "file_hash": "077413078f14bf4775c42d722e5431c4", + "file_url": "https://osskb.org/api/file_contents/077413078f14bf4775c42d722e5431c4", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-1638", + "matched": "99%", + "oss_lines": "687-2324", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "a733213c65d94f1e75931a5e195083aa", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "notifyOnPost.py": [ + { + "component": "epicyon", + "file": "notifyOnPost.py", + "file_hash": "f17027f2f38bc48e10ab010e4d79efa6", + "file_url": "https://osskb.org/api/file_contents/f17027f2f38bc48e10ab010e4d79efa6", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f17027f2f38bc48e10ab010e4d79efa6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "ontology/DFC/DFC_BusinessOntology.owl": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_BusinessOntology.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_FullModel.owl": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_FullModel.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_ProductGlossary.owl": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_ProductGlossary.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_TechnicalOntology.owl": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/DFC/DFC_TechnicalOntology.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/publication.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "ontology/units.rdf": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "outbox.py": [ + { + "component": "epicyon", + "file": "outbox.py", + "file_hash": "0c9b19bef4bd72ffc58f7fa5db352ccc", + "file_url": "https://osskb.org/api/file_contents/0c9b19bef4bd72ffc58f7fa5db352ccc", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-144,166-703", + "matched": "96%", + "oss_lines": "1-144,561-1098", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8a3d5845237006aad0e8e4d2c5ae155c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "person.py": [ + { + "component": "epicyon", + "file": "person.py", + "file_hash": "08ccd458cad20e7e4e225cd44f051fcd", + "file_url": "https://osskb.org/api/file_contents/08ccd458cad20e7e4e225cd44f051fcd", + "id": "snippet", + "latest": "823b4c33", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-592,601-889,909-1587,1593-1756,1752-1824", + "matched": "97%", + "oss_lines": "38-629,577-865,981-1659,1523-1686,1717-1789", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0a1f21272b71015941be3182d7ec61ce", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "petnames.py": [ + { + "component": "epicyon", + "file": "petnames.py", + "file_hash": "ff09c1d892b51e9afa4dedbfd2e526eb", + "file_url": "https://osskb.org/api/file_contents/ff09c1d892b51e9afa4dedbfd2e526eb", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "ff09c1d892b51e9afa4dedbfd2e526eb", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "pgp.py": [ + { + "component": "epicyon", + "file": "pgp.py", + "file_hash": "124fc0e48d7006fde0669186507aa378", + "file_url": "https://osskb.org/api/file_contents/124fc0e48d7006fde0669186507aa378", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-40,75-109,303-828", + "matched": "72%", + "oss_lines": "1-40,59-93,454-979", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "9259e7339cb375f1080f347269239e29", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "posts.py": [ + { + "component": "epicyon", + "file": "posts.py", + "file_hash": "18fd4ca5d23b0f1e43bad4d8b8b9c7d9", + "file_url": "https://osskb.org/api/file_contents/18fd4ca5d23b0f1e43bad4d8b8b9c7d9", + "id": "snippet", + "latest": "823b4c33", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "3844-4124,4161-4963,4970-5617,5619-5670", + "matched": "31%", + "oss_lines": "3469-3749,3941-4743,4688-5335,5349-5400", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "6dbfa796f779081f1ca430bd6639a29c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "pyjsonld.py": [ + { + "component": "epicyon", + "file": "pyjsonld.py", + "file_hash": "bb5a4fcd9af8a6946c017dade5a0b22c", + "file_url": "https://osskb.org/api/file_contents/bb5a4fcd9af8a6946c017dade5a0b22c", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/BSD-3-Clause.txt", + "copyleft": "no", + "name": "BSD-3-Clause", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "no", + "source": "scancode", + "url": "https://spdx.org/licenses/BSD-3-Clause.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "bb5a4fcd9af8a6946c017dade5a0b22c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "qrcode.py": [ + { + "component": "epicyon", + "file": "qrcode.py", + "file_hash": "e87076f836731c3338152518d56ff8b0", + "file_url": "https://osskb.org/api/file_contents/e87076f836731c3338152518d56ff8b0", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e87076f836731c3338152518d56ff8b0", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "question.py": [ + { + "component": "epicyon", + "file": "question.py", + "file_hash": "ff6fd721954b9df15ce24f29f8be2aa2", + "file_url": "https://osskb.org/api/file_contents/ff6fd721954b9df15ce24f29f8be2aa2", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "ff6fd721954b9df15ce24f29f8be2aa2", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "reaction.py": [ + { + "component": "epicyon", + "file": "reaction.py", + "file_hash": "1cabd9e2fbb0ae463729aeaf4747e316", + "file_url": "https://osskb.org/api/file_contents/1cabd9e2fbb0ae463729aeaf4747e316", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-458,487-647", + "matched": "95%", + "oss_lines": "1-458,356-516", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e26349ff3d80e2ab921d77df51509023", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "roles.py": [ + { + "component": "epicyon", + "file": "roles.py", + "file_hash": "2146a44f85455d4427cd8b123c0a73a4", + "file_url": "https://osskb.org/api/file_contents/2146a44f85455d4427cd8b123c0a73a4", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "2146a44f85455d4427cd8b123c0a73a4", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "schedule.py": [ + { + "component": "epicyon", + "file": "schedule.py", + "file_hash": "d26fe2f883e7f8d30c04f58b259eca78", + "file_url": "https://osskb.org/api/file_contents/d26fe2f883e7f8d30c04f58b259eca78", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "d26fe2f883e7f8d30c04f58b259eca78", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "scripts/architecture": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/benchmarks": [ + { + "component": "epicyon", + "file": "scripts/benchmarks", + "file_hash": "31c72aa9598ff7d00cff6f434541aad6", + "file_url": "https://osskb.org/api/file_contents/31c72aa9598ff7d00cff6f434541aad6", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "31c72aa9598ff7d00cff6f434541aad6", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "scripts/blocked": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/checkupdate": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/clearnewswire": [ + { + "component": "epicyon", + "file": "scripts/clearnewswire", + "file_hash": "795389f777c891257a22ec233f907537", + "file_url": "https://osskb.org/api/file_contents/795389f777c891257a22ec233f907537", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "795389f777c891257a22ec233f907537", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "scripts/commit_words": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/devrepo": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/epicyon-notification": [ + { + "component": "epicyon", + "file": "scripts/epicyon-notification", + "file_hash": "1901dea4c4b6465f8d6eea64d178b95d", + "file_url": "https://osskb.org/api/file_contents/1901dea4c4b6465f8d6eea64d178b95d", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "file_header", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-12-07", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1901dea4c4b6465f8d6eea64d178b95d", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "94b082430bca99a22921d59469996687", + "vendor": "bashrc2", + "version": "e2cc26b4" + } + ], + "scripts/errors": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/exceptions": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/keyfailures": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/missing_arguments": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/rejects": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/sending": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/threads": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "scripts/unauthorized": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "security_audit": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "session.py": [ + { + "component": "epicyon", + "file": "session.py", + "file_hash": "5df5227c0da0a73cd759a293937b6297", + "file_url": "https://osskb.org/api/file_contents/5df5227c0da0a73cd759a293937b6297", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-91,84-858", + "matched": "99%", + "oss_lines": "2-92,357-1131", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "a50fa57a9c1d6412868ec5397ae4bd24", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "setup.py": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "shares.py": [ + { + "component": "epicyon", + "file": "shares.py", + "file_hash": "02a01e3e2dcb3a11eb33b1e1f5aa18b6", + "file_url": "https://osskb.org/api/file_contents/02a01e3e2dcb3a11eb33b1e1f5aa18b6", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-1867", + "matched": "99%", + "oss_lines": "1-1867", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "b749354adca1798d1d27b750f5a96293", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "siteactive.py": [ + { + "component": "epicyon", + "file": "siteactive.py", + "file_hash": "e187dac3a40cd0ddac4a3467a30f7733", + "file_url": "https://osskb.org/api/file_contents/e187dac3a40cd0ddac4a3467a30f7733", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e187dac3a40cd0ddac4a3467a30f7733", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "skills.py": [ + { + "component": "epicyon", + "file": "skills.py", + "file_hash": "fa1df9b1f52aadbe8b8360aaac2a2015", + "file_url": "https://osskb.org/api/file_contents/fa1df9b1f52aadbe8b8360aaac2a2015", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "fa1df9b1f52aadbe8b8360aaac2a2015", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "socnet.py": [ + { + "component": "epicyon", + "file": "socnet.py", + "file_hash": "c713fff04a5b851e048f4a68d15a59d4", + "file_url": "https://osskb.org/api/file_contents/c713fff04a5b851e048f4a68d15a59d4", + "id": "snippet", + "latest": "e2cc26b4", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-81", + "matched": "98%", + "oss_lines": "1-81", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-10-06", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "d6c101b6e19c232b3227975cc7767b25", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "0d85cee797d7f057363a7b1f23eadb05", + "vendor": "bashrc2", + "version": "a8f17d37" + } + ], + "speaker.py": [ + { + "component": "epicyon", + "file": "speaker.py", + "file_hash": "2e6b6c5c1da85b82cbcdb9e1905a7074", + "file_url": "https://osskb.org/api/file_contents/2e6b6c5c1da85b82cbcdb9e1905a7074", + "id": "snippet", + "latest": "823b4c33", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "name": "GPL-1.0-or-later", + "source": "scancode", + "url": "https://spdx.org/licenses/GPL-1.0-or-later.html" + } + ], + "lines": "1-315,307-592", + "matched": "99%", + "oss_lines": "1-315,364-649", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "197fde67852fde8a822dfd557c9f77b4", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "ssb.py": [ + { + "component": "epicyon", + "file": "epicyon-1.2.0/ssb.py", + "file_hash": "0bb020ca8e542230c2a1b0f328098cc0", + "file_url": "https://osskb.org/api/file_contents/0bb020ca8e542230c2a1b0f328098cc0", + "id": "snippet", + "latest": "1.3.0", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "30-83", + "matched": "44%", + "oss_lines": "37-90", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-03", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "c66a22547cb6f59ee2bf22164113a5e3", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "b2989ed1f7d5477a031318db2e9c6cad", + "vendor": "Bob Mottram", + "version": "1.2.0" + } + ], + "static_analysis": [ + { + "component": "epicyon", + "file": "static_analysis", + "file_hash": "80d10a9c527842eb43c9a4f03f21c5bd", + "file_url": "https://osskb.org/api/file_contents/80d10a9c527842eb43c9a4f03f21c5bd", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "80d10a9c527842eb43c9a4f03f21c5bd", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "tests.py": [ + { + "component": "epicyon", + "file": "tests.py", + "file_hash": "13c2e793129fe9a4bca6fa342295a749", + "file_url": "https://osskb.org/api/file_contents/13c2e793129fe9a4bca6fa342295a749", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "name": "CC-BY-4.0", + "source": "scancode", + "url": "https://spdx.org/licenses/CC-BY-4.0.html" + } + ], + "lines": "3615-4002,4039-4220,4251-4676,4665-7220,7244-7350", + "matched": "49%", + "oss_lines": "3620-4007,3977-4158,4349-4774,6816-9371,7088-7194", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "52bc872cd48a07735b47898a097e11e0", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "theme.py": [ + { + "component": "epicyon", + "file": "theme.py", + "file_hash": "0fba5046b7c089c1e07f89215e6bb458", + "file_url": "https://osskb.org/api/file_contents/0fba5046b7c089c1e07f89215e6bb458", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0fba5046b7c089c1e07f89215e6bb458", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "theme/default/icons/favicon.webp": [ + { + "component": "epicyon", + "file": "epicyon-1.3.0/theme/default/icons/favicon.webp", + "file_hash": "b379fc9dc0c612e41c96717a260680ad", + "file_url": "https://osskb.org/api/file_contents/b379fc9dc0c612e41c96717a260680ad", + "id": "file", + "latest": "1.3.0", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "b379fc9dc0c612e41c96717a260680ad", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "6ee49c475b365d32ae77f9f7f90c23ad", + "vendor": "Bob Mottram", + "version": "1.3.0" + } + ], + "theme/default/sounds/calendar.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/calendar.ogg", + "file_hash": "bfc6cbf834c515ebf6cd82d9d5e7de6f", + "file_url": "https://osskb.org/api/file_contents/bfc6cbf834c515ebf6cd82d9d5e7de6f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "bfc6cbf834c515ebf6cd82d9d5e7de6f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/default/sounds/dm.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/dm.ogg", + "file_hash": "e6981c6d43024081b9fec13235a48f37", + "file_url": "https://osskb.org/api/file_contents/e6981c6d43024081b9fec13235a48f37", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e6981c6d43024081b9fec13235a48f37", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/default/sounds/follow.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/follow.ogg", + "file_hash": "fb73dd63647efe22b9b0d673fb16c19c", + "file_url": "https://osskb.org/api/file_contents/fb73dd63647efe22b9b0d673fb16c19c", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "fb73dd63647efe22b9b0d673fb16c19c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/default/sounds/like.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/like.ogg", + "file_hash": "0208bcf4859109b4559a7f78ccfc0a85", + "file_url": "https://osskb.org/api/file_contents/0208bcf4859109b4559a7f78ccfc0a85", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0208bcf4859109b4559a7f78ccfc0a85", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/default/sounds/reply.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/dm.ogg", + "file_hash": "e6981c6d43024081b9fec13235a48f37", + "file_url": "https://osskb.org/api/file_contents/e6981c6d43024081b9fec13235a48f37", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e6981c6d43024081b9fec13235a48f37", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/default/sounds/share.ogg": [ + { + "component": "epicyon", + "file": "theme/default/sounds/calendar.ogg", + "file_hash": "bfc6cbf834c515ebf6cd82d9d5e7de6f", + "file_url": "https://osskb.org/api/file_contents/bfc6cbf834c515ebf6cd82d9d5e7de6f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "bfc6cbf834c515ebf6cd82d9d5e7de6f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "theme/indymediaclassic/is_news_instance": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "theme/indymediamodern/is_news_instance": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "theme/pixel/icons/favicon.webp": [ + { + "component": "epicyon", + "file": "theme/pixel/icons/favicon.webp", + "file_hash": "01d2f26634dac1a31eee852a1a301e44", + "file_url": "https://osskb.org/api/file_contents/01d2f26634dac1a31eee852a1a301e44", + "id": "file", + "latest": "42b3ac8e", + "licenses": [], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "01d2f26634dac1a31eee852a1a301e44", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "threads.py": [ + { + "component": "epicyon", + "file": "threads.py", + "file_hash": "69a7cc5607372a36c587ee18d7e3b89f", + "file_url": "https://osskb.org/api/file_contents/69a7cc5607372a36c587ee18d7e3b89f", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "69a7cc5607372a36c587ee18d7e3b89f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "tox.py": [ + { + "component": "epicyon", + "file": "epicyon-1.2.0/tox.py", + "file_hash": "5bbf25fe3fd04f964ca4a46de766f4e4", + "file_url": "https://osskb.org/api/file_contents/5bbf25fe3fd04f964ca4a46de766f4e4", + "id": "snippet", + "latest": "1.3.0", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "32-86", + "matched": "42%", + "oss_lines": "38-92", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-03", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "2bffa60a7fd35219165e36f2386f97ff", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "b2989ed1f7d5477a031318db2e9c6cad", + "vendor": "Bob Mottram", + "version": "1.2.0" + } + ], + "unittest_decoy.kml": [ + { + "id": "none", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + } + } + ], + "utils.py": [ + { + "component": "epicyon", + "file": "utils.py", + "file_hash": "0b5afff8e888985f506f5f9eb4af28cd", + "file_url": "https://osskb.org/api/file_contents/0b5afff8e888985f506f5f9eb4af28cd", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1154-1773,1782-2163,2164-3179,3207-3701", + "matched": "67%", + "oss_lines": "1116-1735,1917-2298,2756-3771,3548-4042", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "243481dfced43c249cd07e9ffcb67675", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "video.py": [ + { + "component": "epicyon", + "file": "video.py", + "file_hash": "23e435038b01aea1b45b26c3027f9be5", + "file_url": "https://osskb.org/api/file_contents/23e435038b01aea1b45b26c3027f9be5", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "23e435038b01aea1b45b26c3027f9be5", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_about.py": [ + { + "component": "epicyon", + "file": "webapp_about.py", + "file_hash": "5436a38c811e423849a3f4904619642d", + "file_url": "https://osskb.org/api/file_contents/5436a38c811e423849a3f4904619642d", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "5436a38c811e423849a3f4904619642d", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_accesskeys.py": [ + { + "component": "epicyon", + "file": "webapp_accesskeys.py", + "file_hash": "b99306cf3dae266b81cd8c82667efc3a", + "file_url": "https://osskb.org/api/file_contents/b99306cf3dae266b81cd8c82667efc3a", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-75,82-133", + "matched": "93%", + "oss_lines": "1-75,64-115", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "4326e70724138b09333db07339209114", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_calendar.py": [ + { + "component": "epicyon", + "file": "webapp_calendar.py", + "file_hash": "b75c2c31907425ae62e3688ada0c69d6", + "file_url": "https://osskb.org/api/file_contents/b75c2c31907425ae62e3688ada0c69d6", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-81,70-142,164-462,495-546,550-609", + "matched": "91%", + "oss_lines": "1-81,102-174,136-434,412-463,454-513", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "ec73b6584038715b277ce5368575a0ea", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_column_left.py": [ + { + "component": "epicyon", + "file": "webapp_column_left.py", + "file_hash": "0e70013858f080acd1fdc6b3bc5ebb8b", + "file_url": "https://osskb.org/api/file_contents/0e70013858f080acd1fdc6b3bc5ebb8b", + "id": "snippet", + "latest": "73da0240", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "102-176,175-236,241-292,323-472,462-546", + "matched": "76%", + "oss_lines": "46-120,145-206,172-223,280-429,406-490", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-05-31", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "c8abde6ab4bc9ce717865f699d98e637", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", + "vendor": "bashrc2", + "version": "1d3ff5f6" + } + ], + "webapp_column_right.py": [ + { + "component": "epicyon", + "file": "epicyon-1.2.0/webapp_column_right.py", + "file_hash": "203b53cee383ed5192f9771746e3af4b", + "file_url": "https://osskb.org/api/file_contents/203b53cee383ed5192f9771746e3af4b", + "id": "snippet", + "latest": "1.2.0", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "7-114,111-178,190-258,283-597,590-749", + "matched": "95%", + "oss_lines": "55-162,113-180,166-234,512-826,568-727", + "purl": [ + "pkg:pypi/epicyon" + ], + "release_date": "2021-02-03", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "e77daaae947efee6df3173bdc1d1a132", + "status": "pending", + "url": "https://pypi.org/project/epicyon", + "url_hash": "b2989ed1f7d5477a031318db2e9c6cad", + "vendor": "Bob Mottram", + "version": "1.2.0" + } + ], + "webapp_confirm.py": [ + { + "component": "epicyon", + "file": "webapp_confirm.py", + "file_hash": "adbe765dca20db5b9a93116262ac7060", + "file_url": "https://osskb.org/api/file_contents/adbe765dca20db5b9a93116262ac7060", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "adbe765dca20db5b9a93116262ac7060", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_create_post.py": [ + { + "component": "epicyon", + "file": "webapp_create_post.py", + "file_hash": "384c11c9a695172a0c08bfc69a2427d2", + "file_url": "https://osskb.org/api/file_contents/384c11c9a695172a0c08bfc69a2427d2", + "id": "snippet", + "latest": "5341e5a2", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "35-128,118-254,247-653,729-950", + "matched": "89%", + "oss_lines": "28-121,179-315,363-769,634-855", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-01-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "a6bee87e3e7dece994179dee3eeb2a3d", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ca44d1cdde2cbb8c7a74c235b23e9816", + "vendor": "bashrc2", + "version": "5341e5a2" + } + ], + "webapp_frontscreen.py": [ + { + "component": "epicyon", + "file": "webapp_frontscreen.py", + "file_hash": "cedcdef56dc961e0337b45d9057fecd3", + "file_url": "https://osskb.org/api/file_contents/cedcdef56dc961e0337b45d9057fecd3", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-222", + "matched": "99%", + "oss_lines": "1-222", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "8ff6b0eb9e07f68dbb5c9d0047ebb99d", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_hashtagswarm.py": [ + { + "component": "epicyon", + "file": "webapp_hashtagswarm.py", + "file_hash": "7d2e9531ed88c635697aec7285280f23", + "file_url": "https://osskb.org/api/file_contents/7d2e9531ed88c635697aec7285280f23", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "7d2e9531ed88c635697aec7285280f23", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_headerbuttons.py": [ + { + "component": "epicyon", + "file": "webapp_headerbuttons.py", + "file_hash": "977e9e244418379e5382205a1c6212bd", + "file_url": "https://osskb.org/api/file_contents/977e9e244418379e5382205a1c6212bd", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-69,95-170,171-292,289-394", + "matched": "93%", + "oss_lines": "1-69,81-156,204-325,271-376", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "868c5671bcb0ccc9abb61f42d6ad8c0f", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_likers.py": [ + { + "component": "epicyon", + "file": "webapp_likers.py", + "file_hash": "2c1e45e70b3e97df205f174b6fb2b3e9", + "file_url": "https://osskb.org/api/file_contents/2c1e45e70b3e97df205f174b6fb2b3e9", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-165", + "matched": "99%", + "oss_lines": "1-165", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0576967ab9a6f34aceaa20824d943f02", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_login.py": [ + { + "component": "epicyon", + "file": "webapp_login.py", + "file_hash": "18e4ab0792cd6138ae0b6748aa79f7bb", + "file_url": "https://osskb.org/api/file_contents/18e4ab0792cd6138ae0b6748aa79f7bb", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "18e4ab0792cd6138ae0b6748aa79f7bb", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_media.py": [ + { + "component": "epicyon", + "file": "webapp_media.py", + "file_hash": "3a1bbf187ff903f23a0375c577a5657f", + "file_url": "https://osskb.org/api/file_contents/3a1bbf187ff903f23a0375c577a5657f", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-126,139-242,246-341", + "matched": "94%", + "oss_lines": "45-170,148-251,243-338", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "1c42417747635311d34d771ac513cc5e", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_minimalbutton.py": [ + { + "component": "epicyon", + "file": "webapp_minimalbutton.py", + "file_hash": "47b1a8f4693d7240ee5181c36288a698", + "file_url": "https://osskb.org/api/file_contents/47b1a8f4693d7240ee5181c36288a698", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "47b1a8f4693d7240ee5181c36288a698", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_moderation.py": [ + { + "component": "epicyon", + "file": "webapp_moderation.py", + "file_hash": "8f2d30016f0cd414680db26ebb59fe12", + "file_url": "https://osskb.org/api/file_contents/8f2d30016f0cd414680db26ebb59fe12", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-441", + "matched": "99%", + "oss_lines": "397-837", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "45c01244c989bfd3fd97e9ff5552ac1b", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_person_options.py": [ + { + "component": "epicyon", + "file": "webapp_person_options.py", + "file_hash": "056899fe75adfec30061c25d33ea1dc2", + "file_url": "https://osskb.org/api/file_contents/056899fe75adfec30061c25d33ea1dc2", + "id": "snippet", + "latest": "5926b174", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "8-41,70-144,193-242,237-466", + "matched": "82%", + "oss_lines": "8-41,64-138,144-193,222-451", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-09-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "6bf5d49a7f539903541747b76e69c389", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "93451a04990f28bd8b8b3e5193b1ae66", + "vendor": "bashrc2", + "version": "5926b174" + } + ], + "webapp_podcast.py": [ + { + "component": "epicyon", + "file": "webapp_podcast.py", + "file_hash": "4a11a8277cbcd133733c138b9e38969b", + "file_url": "https://osskb.org/api/file_contents/4a11a8277cbcd133733c138b9e38969b", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-460", + "matched": "99%", + "oss_lines": "121-580", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "7067765cd556209247363ddb62e03f0d", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_post.py": [ + { + "component": "epicyon", + "file": "webapp_post.py", + "file_hash": "7cc61ad8d4b2eaea596e1b6b72631a48", + "file_url": "https://osskb.org/api/file_contents/7cc61ad8d4b2eaea596e1b6b72631a48", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1329-1486,1557-1765,1755-2184,2178-2271,2294-2682", + "matched": "47%", + "oss_lines": "1315-1472,1476-1684,1823-2252,2035-2128,1044-1432", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "c590fab62720907801e0af31aba906a1", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_profile.py": [ + { + "component": "epicyon", + "file": "webapp_profile.py", + "file_hash": "64ace2dd69d0388ed227091d1d007c47", + "file_url": "https://osskb.org/api/file_contents/64ace2dd69d0388ed227091d1d007c47", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + }, + { + "name": "CC-BY-4.0", + "source": "scancode", + "url": "https://spdx.org/licenses/CC-BY-4.0.html" + } + ], + "lines": "573-709,699-937,937-1058,1078-2186,2179-2540", + "matched": "77%", + "oss_lines": "561-697,808-1046,954-1075,1233-2341,2241-2602", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "58d2f5384d4a393ee64c478b4a25438c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_question.py": [ + { + "component": "epicyon", + "file": "webapp_question.py", + "file_hash": "84fa8b55bb9ecfb2cf3a1912bc1ab061", + "file_url": "https://osskb.org/api/file_contents/84fa8b55bb9ecfb2cf3a1912bc1ab061", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-105", + "matched": "99%", + "oss_lines": "3-107", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "d2ffbee3e8bb6f829c7d58758a1d2363", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_search.py": [ + { + "component": "epicyon", + "file": "webapp_search.py", + "file_hash": "3798b5984f516fc518d9e1a67d3f10e2", + "file_url": "https://osskb.org/api/file_contents/3798b5984f516fc518d9e1a67d3f10e2", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-448,438-533,526-1026", + "matched": "99%", + "oss_lines": "1-448,475-570,823-1323", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0a390ce564ed7f07ed9dd4cd6c916be1", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_suspended.py": [ + { + "component": "epicyon", + "file": "webapp_suspended.py", + "file_hash": "f925e1d87508da69d4c1501d7c5c0654", + "file_url": "https://osskb.org/api/file_contents/f925e1d87508da69d4c1501d7c5c0654", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f925e1d87508da69d4c1501d7c5c0654", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_theme_designer.py": [ + { + "component": "epicyon", + "file": "webapp_theme_designer.py", + "file_hash": "d3232662cfbefdcc26f6ae52819fd741", + "file_url": "https://osskb.org/api/file_contents/d3232662cfbefdcc26f6ae52819fd741", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-373", + "matched": "93%", + "oss_lines": "218-590", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "80608102666c47e89cbc9f8e56dc9c2a", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_timeline.py": [ + { + "component": "epicyon", + "file": "webapp_timeline.py", + "file_hash": "223668a3703fd58fcff3f442f24855a6", + "file_url": "https://osskb.org/api/file_contents/223668a3703fd58fcff3f442f24855a6", + "id": "snippet", + "latest": "47edfad9", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-423,458-702,694-1835", + "matched": "98%", + "oss_lines": "1-423,1546-1790,1552-2693", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-04-05", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "be44021b64286861260592d20e520323", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "ef9c7a524f13773771c91cbe9c5d3dd9", + "vendor": "bashrc2", + "version": "47edfad9" + } + ], + "webapp_tos.py": [ + { + "component": "epicyon", + "file": "webapp_tos.py", + "file_hash": "6c0803d8dc12129842e84caae94ea423", + "file_url": "https://osskb.org/api/file_contents/6c0803d8dc12129842e84caae94ea423", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-56", + "matched": "98%", + "oss_lines": "1-56", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "cfccf0c6a5315b297f76f66573a2c6b7", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_utils.py": [ + { + "component": "epicyon", + "file": "webapp_utils.py", + "file_hash": "1d8ba4e82e0a03760698a1bced872101", + "file_url": "https://osskb.org/api/file_contents/1d8ba4e82e0a03760698a1bced872101", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-only.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-only", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-only.html" + }, + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-187,193-228,234-800,808-1136,1152-1429,1430-1773", + "matched": "97%", + "oss_lines": "1-187,187-222,219-785,1081-1409,1114-1391,1387-1730", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-05-04", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "437525dbf371fc77a7bf4e6af1ea2994", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "26a51a1798a2817daaf5aa7276ca4a3b", + "vendor": "bashrc2", + "version": "42b3ac8e" + } + ], + "webapp_welcome.py": [ + { + "component": "epicyon", + "file": "webapp_welcome.py", + "file_hash": "a212c01b2d92c692484c6e6787c30f87", + "file_url": "https://osskb.org/api/file_contents/a212c01b2d92c692484c6e6787c30f87", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "a212c01b2d92c692484c6e6787c30f87", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webapp_welcome_final.py": [ + { + "component": "epicyon", + "file": "webapp_welcome_final.py", + "file_hash": "16f69e948cb5d6cc5d2706d0c85db8a7", + "file_url": "https://osskb.org/api/file_contents/16f69e948cb5d6cc5d2706d0c85db8a7", + "id": "snippet", + "latest": "5926b174", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-80", + "matched": "98%", + "oss_lines": "1-80", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-08-02", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "ad8bc4f2576903155f00763ed610005c", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "bb6a249e703a2febece4fc3180193394", + "vendor": "bashrc2", + "version": "b30d256f" + } + ], + "webapp_welcome_profile.py": [ + { + "component": "epicyon", + "file": "webapp_welcome_profile.py", + "file_hash": "c853a926d597bf1d7f8182b4b087f535", + "file_url": "https://osskb.org/api/file_contents/c853a926d597bf1d7f8182b4b087f535", + "id": "file", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "all", + "matched": "100%", + "oss_lines": "all", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.05.17", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "c853a926d597bf1d7f8182b4b087f535", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ], + "webfinger.py": [ + { + "component": "epicyon", + "file": "webfinger.py", + "file_hash": "02fc25dddc54f672e098c90b9994e325", + "file_url": "https://osskb.org/api/file_contents/02fc25dddc54f672e098c90b9994e325", + "id": "snippet", + "latest": "a8f17d37", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "8-91,129-179,197-312,385-516", + "matched": "73%", + "oss_lines": "7-90,111-161,234-349,354-485", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2021-10-06", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "0bde5322bfce46071d3d04a399d1edf8", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "0d85cee797d7f057363a7b1f23eadb05", + "vendor": "bashrc2", + "version": "a8f17d37" + } + ], + "xmpp.py": [ + { + "component": "epicyon", + "file": "xmpp.py", + "file_hash": "16246f81670fa34c86db04bdb3fd749c", + "file_url": "https://osskb.org/api/file_contents/16246f81670fa34c86db04bdb3fd749c", + "id": "snippet", + "latest": "42b3ac8e", + "licenses": [ + { + "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", + "copyleft": "yes", + "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", + "name": "AGPL-3.0-or-later", + "osadl_updated": "2022-05-13 08:48", + "patent_hints": "yes", + "source": "scancode", + "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" + } + ], + "lines": "1-87", + "matched": "76%", + "oss_lines": "1-87", + "purl": [ + "pkg:gitlab/bashrc2/epicyon" + ], + "release_date": "2022-02-08", + "server": { + "kb_version": { + "daily": "22.06.05", + "monthly": "22.05" + }, + "version": "4.5.2" + }, + "source_hash": "f99232bd58fb3a4ab6effd1169207063", + "status": "pending", + "url": "https://gitlab.com/bashrc2/epicyon", + "url_hash": "d0c0ff44e466c2b609148ba01790dc81", + "vendor": "bashrc2", + "version": "823b4c33" + } + ] +} From 072c56bd369587139ccb28851d12da18298ed7ba Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 17:23:27 +0100 Subject: [PATCH 09/13] Software bill of materials --- sbom.json | 298 +++++++++++++----------------------------------------- 1 file changed, 71 insertions(+), 227 deletions(-) diff --git a/sbom.json b/sbom.json index b41c0342a..13d4c3b4c 100644 --- a/sbom.json +++ b/sbom.json @@ -28,7 +28,7 @@ "release_date": "2021-05-31", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -185,7 +185,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -227,7 +227,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -269,7 +269,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -437,7 +437,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -521,7 +521,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -605,7 +605,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -689,7 +689,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -755,7 +755,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -802,7 +802,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -995,7 +995,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1037,7 +1037,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -1079,7 +1079,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1104,162 +1104,6 @@ } } ], - "epicyon_groups_ActivityPub.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_ActivityPub_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_ActivityPub_Security.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Commandline-Interface_ActivityPub.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Commandline-Interface_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.05.17", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Core_Accessibility.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Core_Security.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Timeline_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.05.17", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Timeline_Security.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Web-Interface-Columns_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Web-Interface_Accessibility.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], - "epicyon_groups_Web-Interface_Core.dot": [ - { - "id": "none", - "server": { - "kb_version": { - "daily": "22.06.05", - "monthly": "22.05" - }, - "version": "4.5.2" - } - } - ], "feeds.py": [ { "component": "epicyon", @@ -1289,7 +1133,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -1331,7 +1175,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -1373,7 +1217,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2390,7 +2234,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2516,7 +2360,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2558,7 +2402,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2589,7 +2433,7 @@ "release_date": "2021-05-31", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2631,7 +2475,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2673,7 +2517,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2715,7 +2559,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2775,7 +2619,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2853,7 +2697,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2895,7 +2739,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2937,7 +2781,7 @@ "release_date": "2021-09-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2979,7 +2823,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3105,7 +2949,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3147,7 +2991,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3309,7 +3153,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3393,7 +3237,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3435,7 +3279,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3518,7 +3362,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3560,7 +3404,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3644,7 +3488,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3686,7 +3530,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3728,7 +3572,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4016,7 +3860,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4052,7 +3896,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4070,7 +3914,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4190,7 +4034,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4279,7 +4123,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4352,7 +4196,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4399,7 +4243,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4441,7 +4285,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4797,7 +4641,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4815,7 +4659,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4851,7 +4695,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4893,7 +4737,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4977,7 +4821,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5019,7 +4863,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5103,7 +4947,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5145,7 +4989,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5187,7 +5031,7 @@ "release_date": "2022-01-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5229,7 +5073,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5271,7 +5115,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5313,7 +5157,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5355,7 +5199,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5397,7 +5241,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5439,7 +5283,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5481,7 +5325,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5523,7 +5367,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5607,7 +5451,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5696,7 +5540,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5780,7 +5624,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5822,7 +5666,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5948,7 +5792,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -6000,7 +5844,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -6084,7 +5928,7 @@ "release_date": "2021-08-02", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -6126,7 +5970,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" From 9086e7a2d63824fa011427211e3c88c2a7067a27 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 17:29:13 +0100 Subject: [PATCH 10/13] Clean temporary files --- Makefile | 1 + sbom.json | 192 +++++++++++++++++++++--------------------------------- 2 files changed, 76 insertions(+), 117 deletions(-) diff --git a/Makefile b/Makefile index a9f079a02..6ad5a24db 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ source: rm -f ../${APP}*.deb ../${APP}*.changes ../${APP}*.asc ../${APP}*.dsc cd .. && mv ${APP} ${APP}-${VERSION} && tar -zcvf ${APP}_${VERSION}.orig.tar.gz ${APP}-${VERSION}/ && mv ${APP}-${VERSION} ${APP} clean: + rm -f \#* rm -f *.*~ *~ *.dot rm -f orgs/*~ rm -f ontology/*~ diff --git a/sbom.json b/sbom.json index 13d4c3b4c..8acb25d0f 100644 --- a/sbom.json +++ b/sbom.json @@ -1,46 +1,4 @@ { - "#availability.py#": [ - { - "component": "epicyon", - "file": "availability.py", - "file_hash": "13f5d4ef74fdaeb84e2409e893ffe70b", - "file_url": "https://osskb.org/api/file_contents/13f5d4ef74fdaeb84e2409e893ffe70b", - "id": "snippet", - "latest": "73da0240", - "licenses": [ - { - "checklist_url": "https://www.osadl.org/fileadmin/checklists/unreflicenses/AGPL-3.0-or-later.txt", - "copyleft": "yes", - "incompatible_with": "Apache-1.0, Apache-1.1, BSD-4-Clause, BSD-4-Clause-UC, FTL, IJG, OpenSSL, Python-2.0, zlib-acknowledgement, XFree86-1.1", - "name": "AGPL-3.0-or-later", - "osadl_updated": "2022-05-13 08:48", - "patent_hints": "yes", - "source": "scancode", - "url": "https://spdx.org/licenses/AGPL-3.0-or-later.html" - } - ], - "lines": "1-162", - "matched": "99%", - "oss_lines": "1-162", - "purl": [ - "pkg:gitlab/bashrc2/epicyon" - ], - "release_date": "2021-05-31", - "server": { - "kb_version": { - "daily": "22.05.17", - "monthly": "22.05" - }, - "version": "4.5.2" - }, - "source_hash": "8b42a73327006efc9bf12015d3c9ae1a", - "status": "pending", - "url": "https://gitlab.com/bashrc2/epicyon", - "url_hash": "398b52b3f1d7e94bb7c21a73d50d4735", - "vendor": "bashrc2", - "version": "1d3ff5f6" - } - ], "Dockerfile": [ { "component": "epicyon", @@ -101,7 +59,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -143,7 +101,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -185,7 +143,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -227,7 +185,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -269,7 +227,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -311,7 +269,7 @@ "release_date": "2021-09-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -353,7 +311,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -395,7 +353,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -437,7 +395,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -521,7 +479,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -563,7 +521,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -605,7 +563,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -647,7 +605,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -689,7 +647,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -755,7 +713,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -802,7 +760,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -995,7 +953,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -1037,7 +995,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1079,7 +1037,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -1133,7 +1091,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1175,7 +1133,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1217,7 +1175,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -1259,7 +1217,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2234,7 +2192,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2276,7 +2234,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2360,7 +2318,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2433,7 +2391,7 @@ "release_date": "2021-05-31", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2517,7 +2475,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2559,7 +2517,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2619,7 +2577,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2697,7 +2655,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2739,7 +2697,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2781,7 +2739,7 @@ "release_date": "2021-09-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2865,7 +2823,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -2949,7 +2907,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -2991,7 +2949,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3153,7 +3111,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3237,7 +3195,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3279,7 +3237,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3362,7 +3320,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3404,7 +3362,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3488,7 +3446,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -3860,7 +3818,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3896,7 +3854,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3914,7 +3872,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -3950,7 +3908,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4034,7 +3992,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4076,7 +4034,7 @@ "release_date": "2021-10-06", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4123,7 +4081,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4243,7 +4201,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4285,7 +4243,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4641,7 +4599,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4659,7 +4617,7 @@ "id": "none", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4737,7 +4695,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4821,7 +4779,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4863,7 +4821,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4905,7 +4863,7 @@ "release_date": "2021-05-31", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -4947,7 +4905,7 @@ "release_date": "2021-02-03", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -4989,7 +4947,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5031,7 +4989,7 @@ "release_date": "2022-01-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5115,7 +5073,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5157,7 +5115,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5199,7 +5157,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5241,7 +5199,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5283,7 +5241,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5367,7 +5325,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5409,7 +5367,7 @@ "release_date": "2021-09-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5493,7 +5451,7 @@ "release_date": "2022-04-05", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5540,7 +5498,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5582,7 +5540,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -5666,7 +5624,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5792,7 +5750,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5844,7 +5802,7 @@ "release_date": "2022-05-04", "server": { "kb_version": { - "daily": "22.05.17", + "daily": "22.06.05", "monthly": "22.05" }, "version": "4.5.2" @@ -5970,7 +5928,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" @@ -6054,7 +6012,7 @@ "release_date": "2022-02-08", "server": { "kb_version": { - "daily": "22.06.05", + "daily": "22.05.17", "monthly": "22.05" }, "version": "4.5.2" From c60c6f18a12fb7a44b0b0544b0e0c3400ca2f0c6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 17:31:51 +0100 Subject: [PATCH 11/13] Clean cwlists --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 6ad5a24db..6b3fdf735 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ clean: rm -f theme/indymediaclassic/welcome/*~ rm -f theme/indymediamodern/welcome/*~ rm -f website/EN/*~ + rm -f cwlists/*~ rm -f gemini/EN/*~ rm -f scripts/*~ rm -f deploy/*~ From 4f7c9fdb8c8105579c394c5ba0b937196dadcdcf Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 17:32:29 +0100 Subject: [PATCH 12/13] Clean before sbom --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 30edd49eb..1d3adf407 100644 --- a/README.md +++ b/README.md @@ -318,5 +318,6 @@ To update the software bill of materials: ``` bash sudo pip3 install scanoss +make clean make sbom ``` From 695e98a6babe24294db799f39dd166a23a234b9b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Jun 2022 20:04:15 +0100 Subject: [PATCH 13/13] Save rather than publish --- webapp_theme_designer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_theme_designer.py b/webapp_theme_designer.py index 8ba236699..f8e507445 100644 --- a/webapp_theme_designer.py +++ b/webapp_theme_designer.py @@ -221,7 +221,7 @@ def html_theme_designer(css_cache: {}, base_dir: str, translate['Reset'] + '\n' + \ ' \n \n' + translate['Save'] + '\n \n' contrast_warning = '' if theme_json.get('main-bg-color'):