├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── publish-docker.yml │ ├── pypi-release-minecode-pipeline.yml │ └── pypi-release.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.rst ├── Dockerfile ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.rst ├── apache-2.0.LICENSE ├── azure-pipelines.yml ├── cc-by-sa-4.0.LICENSE ├── clearcode ├── __init__.py ├── cdutils.py ├── load.py ├── management │ └── commands │ │ ├── clearload.py │ │ ├── clearsync.py │ │ └── store_scans.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200331_1052.py │ ├── 0003_cditem_uuid.py │ └── __init__.py ├── models.py ├── store_scans.py ├── sync.py └── tests │ ├── __init__.py │ ├── test_models.py │ └── test_sync.py ├── clearindex ├── __init__.py ├── harvest.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── run_clearindex.py └── utils.py ├── configure ├── docker-compose.common.yml ├── docker-compose.matchcodeio.yml ├── docker-compose.miners.yml ├── docker-compose.yml ├── docker_matchcodeio.env ├── docker_purldb.env ├── docs ├── Makefile ├── documents │ ├── ClearCode Introduction-June 2020.odp │ └── ClearCode Introduction-June 2020.pdf ├── make.bat └── source │ ├── _static │ └── theme_overrides.css │ ├── changelog.rst │ ├── conf.py │ ├── contributing.rst │ ├── funding.rst │ ├── getting-started │ ├── index.rst │ ├── install-with-scio.rst │ ├── install.rst │ ├── tasks.rst │ └── usage.rst │ ├── how-to-guides │ ├── deploy_to_devel.rst │ ├── images │ │ ├── d2d-images │ │ │ ├── 1b9cd82f-4c5c-452b-aad7-02cb738f9733.png │ │ │ ├── 1d080401-3512-478f-9dfd-99b94fca5f73.png │ │ │ ├── 1fc96ed7-8afc-4ce5-b8c1-ae0b785c1c4b.png │ │ │ ├── 38c59bb5-96c5-40ca-b229-95a63dc2c556.png │ │ │ ├── 43a5ff56-fb36-45c7-82bb-8b5256759eee.png │ │ │ ├── 4acd087e-0cd1-4361-a8ee-f7af7681c74e.png │ │ │ ├── 4d453ddb-3af3-4470-b6ae-d6251c731d99.png │ │ │ ├── 5878c8f3-85bd-4ba4-a350-0da093096480.png │ │ │ ├── 67014257-7a7d-403f-8798-75fb8bd23f88.png │ │ │ ├── 7c9b627d-4d74-4ddc-9e51-18b33b0d86b0.png │ │ │ ├── 8b852b04-5568-468d-87ce-2e556ac2fc5d.png │ │ │ ├── 9483bb93-8e7c-4244-9a78-f7ff40eb2874.png │ │ │ ├── 9d9df257-db0d-4d01-91e4-34643f38fa5a.png │ │ │ ├── b7451ce2-883e-45c6-ba49-0f061203d0df.png │ │ │ ├── c42ff037-4d05-4fd4-ba24-865609df78d7.png │ │ │ ├── cb66805c-56dd-4519-81d5-fe3f8ef84f7a.png │ │ │ ├── d28b0b83-3760-49d6-aa98-6f09826a42e6.png │ │ │ ├── d338434d-4e31-4bb9-b708-db952a03d634.png │ │ │ ├── da526ca9-6a8c-4883-951e-26e92597ce0d.png │ │ │ └── f6995025-ab75-40b7-9503-d1f8509e053f.png │ │ └── purl_watch_api_web.png │ ├── index.rst │ ├── installation.rst │ ├── matchcode.rst │ ├── purl_watch_how_to.rst │ └── symbols_and_strings.rst │ ├── index.rst │ ├── license.rst │ ├── matchcode │ ├── index.rst │ └── matchcode-pipeline.rst │ ├── purldb │ ├── index.rst │ ├── purl_watch.rst │ ├── rest_api.rst │ └── symbol_and_string_collection.rst │ └── testing.rst ├── etc ├── ci │ ├── azure-container-deb.yml │ ├── azure-container-rpm.yml │ ├── azure-posix.yml │ ├── azure-win.yml │ ├── install_sudo.sh │ ├── macports-ci │ ├── macports-ci.ABOUT │ └── mit.LICENSE ├── nginx │ ├── conf.d │ │ └── default.conf │ ├── examples │ │ └── ssl.conf │ └── matchcodeio-conf.d │ │ └── default.conf └── scripts │ ├── README.rst │ ├── check_thirdparty.py │ ├── clearcode-api-backup.py │ ├── clearcode-api-import.py │ ├── fetch_thirdparty.py │ ├── gen_pypi_simple.py │ ├── gen_pypi_simple.py.ABOUT │ ├── gen_pypi_simple.py.NOTICE │ ├── gen_requirements.py │ ├── gen_requirements_dev.py │ ├── requirements.txt │ ├── test_utils_pip_compatibility_tags.py │ ├── test_utils_pip_compatibility_tags.py.ABOUT │ ├── test_utils_pypi_supported_tags.py │ ├── test_utils_pypi_supported_tags.py.ABOUT │ ├── update_skeleton.py │ ├── utils_dejacode.py │ ├── utils_pip_compatibility_tags.py │ ├── utils_pip_compatibility_tags.py.ABOUT │ ├── utils_pypi_supported_tags.py │ ├── utils_pypi_supported_tags.py.ABOUT │ ├── utils_requirements.py │ ├── utils_thirdparty.py │ └── utils_thirdparty.py.ABOUT ├── manage_matchcode.py ├── manage_purldb.py ├── matchcode-toolkit └── README.rst ├── matchcode ├── __init__.py ├── api.py ├── match.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_approximatedirectorycontentindex_package_and_more.py │ ├── 0003_snippetindex.py │ ├── 0004_snippetindex_position_and_more.py │ ├── 0005_stemmedsnippetindex.py │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── test_match.py │ ├── test_models.py │ └── testfiles │ │ ├── api │ │ └── scan2_match_results.json │ │ ├── match │ │ ├── approximate-file-matching │ │ │ ├── approximate-match-model-test-results.json │ │ │ ├── approximate-match-test-results.json │ │ │ ├── approximate-match-test.json │ │ │ ├── index-2.js │ │ │ ├── index-modified.js │ │ │ ├── index-modified.js-expected.json │ │ │ ├── index.js │ │ │ ├── inflate-mod.c │ │ │ ├── inflate-mod2.c │ │ │ ├── inflate-mod3.c │ │ │ └── inflate.c │ │ ├── directory-matching │ │ │ ├── abbrev-1.0.3-i-expected.json │ │ │ ├── abbrev-1.0.3-i.json │ │ │ ├── abbrev-1.0.4-i-expected.json │ │ │ ├── abbrev-1.0.4-i.json │ │ │ ├── abbrev-1.0.5-i-expected.json │ │ │ ├── abbrev-1.0.5-i.json │ │ │ ├── abbrev-1.0.6-i-expected.json │ │ │ ├── abbrev-1.0.6-i.json │ │ │ ├── abbrev-1.0.7-i-expected.json │ │ │ ├── abbrev-1.0.7-i.json │ │ │ ├── abbrev-1.0.9-i-expected.json │ │ │ ├── abbrev-1.0.9-i.json │ │ │ ├── abbrev-1.1.0-i-expected.json │ │ │ ├── abbrev-1.1.0-i.json │ │ │ ├── abbrev-1.1.1-i-expected.json │ │ │ ├── abbrev-1.1.1-i.json │ │ │ ├── get-stdin-3.0.2-i-expected.json │ │ │ └── get-stdin-3.0.2-i.json │ │ ├── nested │ │ │ ├── nested-directory-content-match-expected.json │ │ │ ├── nested-directory-structure-match-expected.json │ │ │ ├── nested.json │ │ │ ├── plugin-request-2.4.1-ip.json │ │ │ ├── underscore-1.10.9-ip.json │ │ │ └── underscore.json │ │ ├── scan1.json │ │ └── scancodeio_abbot-0.12.3.json │ │ └── models │ │ ├── directory-matching │ │ ├── async-0.2.10.tgz-i.json │ │ ├── async-0.2.9-i-expected-content.json │ │ ├── async-0.2.9-i-expected-structure.json │ │ └── async-0.2.9-i.json │ │ ├── exact-file-matching-standalone-test-results.json │ │ ├── match-test-approximate-directory-content-results.json │ │ ├── match-test-approximate-directory-structure-results.json │ │ ├── match-test-exact-file-results.json │ │ ├── match-test-exact-package-results.json │ │ ├── match-test.json │ │ └── snippet-test-top-match-fingerprints.json └── utils.py ├── matchcode_pipeline ├── __init__.py ├── api.py ├── pipelines │ ├── __init__.py │ └── matching.py ├── pipes │ ├── __init__.py │ └── matching.py └── tests │ ├── __init__.py │ ├── data │ ├── d2d-javascript │ │ └── to │ │ │ ├── main.js │ │ │ └── main.js.map │ ├── d2d │ │ └── find_java_packages │ │ │ └── Foo.java │ ├── match-creation-api-results.json │ └── test-out.json │ ├── pipes │ ├── __init__.py │ └── test_matching.py │ └── test_api.py ├── matchcode_project ├── __init__.py ├── dbrouter.py ├── settings.py ├── urls.py └── wsgi.py ├── minecode ├── __init__.py ├── api.py ├── apps.py ├── collectors │ ├── __init__.py │ ├── alpine.py │ ├── alpm.py │ ├── bitbucket.py │ ├── cargo.py │ ├── composer.py │ ├── conan.py │ ├── conda.py │ ├── cpan.py │ ├── cran.py │ ├── debian.py │ ├── dockerhub.py │ ├── generic.py │ ├── github.py │ ├── gitlab.py │ ├── gnu.py │ ├── golang.py │ ├── hackage.py │ ├── hex.py │ ├── huggingface.py │ ├── luarocks.py │ ├── maven.py │ ├── npm.py │ ├── nuget.py │ ├── openssl.py │ ├── pub.py │ ├── pypi.py │ ├── rubygems.py │ └── swift.py ├── command.py ├── debutils.py ├── filter.py ├── indexing.py ├── ls.py ├── management │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── check_licenses.py │ │ ├── check_uri.py │ │ ├── create-scan-queue-worker-user.py │ │ ├── create-user.py │ │ ├── defederate_packages.py │ │ ├── dump_purls.py │ │ ├── federate_packages.py │ │ ├── get_maven_release_dates.py │ │ ├── get_status.py │ │ ├── import_queue.py │ │ ├── increase_scannableuri_priority.py │ │ ├── load_priority_queue.py │ │ ├── make_scannableuris.py │ │ ├── manage_scans.py │ │ ├── maven_crawler.py │ │ ├── priority_queue.py │ │ ├── remap.py │ │ ├── run_map.py │ │ ├── run_visit.py │ │ ├── seed.py │ │ └── update_maven_package_data.py │ └── user_creation.py ├── mappings │ ├── __init__.py │ ├── gcode_keywords.py │ ├── gcode_licenses.py │ ├── gcode_programming_languages.py │ ├── pypi_trove.py │ ├── sfnet_licenses.py │ └── sfnet_programming_languages.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160707_1249.py │ ├── 0003_auto_20160712_1223.py │ ├── 0004_auto_20160713_1731.py │ ├── 0005_resourceuri_metadata.py │ ├── 0006_remove_resourceuri_metadata.py │ ├── 0007_change_unique_constraints_on_resourceuri.py │ ├── 0008_change_default_sort_order_on_resourceuri.py │ ├── 0009_resourceuri_source_uri.py │ ├── 0010_resourceuri_mining_level.py │ ├── 0011_auto_20170807_0253.py │ ├── 0012_auto_20170807_0444.py │ ├── 0013_auto_20170807_0511.py │ ├── 0014_auto_20170807_0529.py │ ├── 0015_auto_20180607_0851.py │ ├── 0016_remove_resourceuri_sig.py │ ├── 0017_auto_20180619_2236.py │ ├── 0018_scannableuri_package_id.py │ ├── 0019_auto_20180716_1648.py │ ├── 0020_resourceuri_package_url.py │ ├── 0021_auto_20181026_1635.py │ ├── 0022_auto_20190307_2332.py │ ├── 0023_rename_minecode_r_is_visi_29fde2_idx_minecode_re_is_visi_51562c_idx_and_more.py │ ├── 0024_remove_resourceuri_minecode_re_is_visi_51562c_idx_and_more.py │ ├── 0025_populate_has_error_fields.py │ ├── 0026_set_is_visitable_for_maven_index_uris.py │ ├── 0027_replace_http_with_https_in_maven_uris.py │ ├── 0028_priorityresourceuri.py │ ├── 0029_priorityresourceuri_has_processing_error_and_more.py │ ├── 0030_scannableuri_rescan_alter_scannableuri_scan_status.py │ ├── 0031_importableuri.py │ ├── 0032_remove_scannableuri_minecode_sc_scan_st_d6a459_idx_and_more.py │ ├── 0033_scannableuri_populate_uuid.py │ ├── 0034_scannableuri_alter_uuid_field.py │ ├── 0035_create_scan_queue_workers_group.py │ ├── 0036_priorityresourceuri_addon_pipelines.py │ ├── 0037_processingerror.py │ └── __init__.py ├── miners │ ├── __init__.py │ ├── alpine.py │ ├── alpm.py │ ├── apache.py │ ├── bitbucket.py │ ├── bower.py │ ├── cargo.py │ ├── composer.py │ ├── conda.py │ ├── cpan.py │ ├── cran.py │ ├── debian.py │ ├── dockerhub.py │ ├── eclipse.py │ ├── fdroid.py │ ├── fedora.py │ ├── freebsd.py │ ├── freedesktop.py │ ├── github.py │ ├── gitlab.py │ ├── golang.py │ ├── googlecode.py │ ├── gstreamer.py │ ├── haxe.py │ ├── hex.py │ ├── java_stream.py │ ├── java_stream.py.ABOUT │ ├── java_stream.py.LICENSE │ ├── maven.py │ ├── npm.py │ ├── nuget.py │ ├── openssl.py │ ├── openwrt.py │ ├── packagist.py │ ├── pub.py │ ├── pypi.py │ ├── repodata.py │ ├── repodata_rpms.py │ ├── repomd.py │ ├── rubygems.py │ ├── sourceforge.py │ └── ubuntu.py ├── model_utils.py ├── models.py ├── msys2.py ├── permissions.py ├── route.py ├── rsync.py ├── saneyaml.py ├── seed.py ├── tasks.py ├── tests │ ├── __init__.py │ ├── collectors │ │ ├── __init__.py │ │ ├── test_alpine.py │ │ ├── test_alpm.py │ │ ├── test_bitbucket.py │ │ ├── test_cargo.py │ │ ├── test_composer.py │ │ ├── test_conan.py │ │ ├── test_conda.py │ │ ├── test_cpan.py │ │ ├── test_cran.py │ │ ├── test_generic.py │ │ ├── test_github.py │ │ ├── test_gitlab.py │ │ ├── test_gnu.py │ │ ├── test_golang.py │ │ ├── test_hackage.py │ │ ├── test_hex.py │ │ ├── test_huggingface.py │ │ ├── test_luarocks.py │ │ ├── test_maven.py │ │ ├── test_npm.py │ │ ├── test_nuget.py │ │ ├── test_pub.py │ │ ├── test_pypi.py │ │ ├── test_rubygems.py │ │ └── test_swift.py │ ├── miners │ │ ├── __init__.py │ │ ├── test_alpine.py │ │ ├── test_apache.py │ │ ├── test_bitbucket.py │ │ ├── test_bower.py │ │ ├── test_cargo.py │ │ ├── test_conda.py │ │ ├── test_cpan.py │ │ ├── test_cran.py │ │ ├── test_debian.py │ │ ├── test_dockerhub.py │ │ ├── test_eclipse.py │ │ ├── test_fdroid.py │ │ ├── test_freebsd.py │ │ ├── test_freedesktop.py │ │ ├── test_github.py │ │ ├── test_gitlab.py │ │ ├── test_golang.py │ │ ├── test_googlecode.py │ │ ├── test_gstreamer.py │ │ ├── test_haxe.py │ │ ├── test_maven.py │ │ ├── test_npm.py │ │ ├── test_nuget.py │ │ ├── test_openssl.py │ │ ├── test_openwrt.py │ │ ├── test_packagist.py │ │ ├── test_pypi.py │ │ ├── test_repodata.py │ │ ├── test_repodata_rpms.py │ │ ├── test_repomd_parser.py │ │ ├── test_rubygems.py │ │ └── test_sourceforge.py │ ├── test_api.py │ ├── test_command.py │ ├── test_filter.py │ ├── test_housekeeping.py │ ├── test_indexing.py │ ├── test_ls.py │ ├── test_migrations.py │ ├── test_model_utils.py │ ├── test_models.py │ ├── test_priority_queue.py │ ├── test_route.py │ ├── test_rsync.py │ ├── test_run_map.py │ ├── test_run_visit.py │ ├── test_seed.py │ ├── test_tasks.py │ ├── test_utils.py │ ├── test_version.py │ └── testfiles │ │ ├── alpine │ │ ├── mapper_perf_bash_completion_expected.json │ │ ├── mapper_postgresql16_contrib_expected.json │ │ ├── perf-bash-completion_latest-stable_main_x86_64 │ │ │ └── APKINDEX │ │ └── postgresql16-contrib_v3.14-community-armhf │ │ │ └── APKINDEX │ │ ├── alpm │ │ ├── bemenu-ncurses │ │ │ ├── .BUILDINFO │ │ │ └── .PKGINFO │ │ └── bemenu_ncurses_expected.json │ │ ├── apache │ │ ├── ant-dotnet.json │ │ ├── ant-dotnet_expected.json │ │ ├── apache-abdera-1.1.3-src.zip.md5 │ │ ├── apache-groovy-docs-2.4.6.zip.md5 │ │ ├── attic-mrunit.json │ │ ├── attic-mrunit_expected.json │ │ ├── felix.json │ │ ├── felix_expected.json │ │ ├── find-ls.gz │ │ ├── find-ls.gz_uris-expected.json │ │ ├── map-groovy_expected.json │ │ ├── map-turbine-webapp_expected.json │ │ ├── metamodel.json │ │ ├── metamodel_expected.json │ │ ├── podling_amaterasu.json │ │ ├── podling_amaterasu_expected.json │ │ ├── podlings.json │ │ ├── podlings_expected.json │ │ ├── podlings_expected_uris.json │ │ ├── projects.json │ │ ├── projects_expected.json │ │ └── projects_uris-expected.json │ │ ├── bitbucket │ │ ├── map │ │ │ ├── downloads.json │ │ │ ├── downloads_expected.json │ │ │ ├── downloads_many.json │ │ │ ├── downloads_many_expected.json │ │ │ ├── repository.json │ │ │ ├── repository_expected.json │ │ │ ├── tweakmsg.json │ │ │ └── tweakmsg_expected.json │ │ └── visit │ │ │ ├── index-repositories.json │ │ │ ├── index-repositories_expected_data.json │ │ │ ├── index-repositories_expected_uris.json │ │ │ ├── paginated_tags.json │ │ │ ├── paginated_tags_expected_data.json │ │ │ ├── paginated_tags_expected_uris.json │ │ │ ├── singlerepo.json │ │ │ ├── singlerepo_expected_data.json │ │ │ └── singlerepo_expected_uris.json │ │ ├── bower │ │ ├── 28msec_bower.json │ │ ├── example1_bower.json │ │ ├── expected_28msec_bower.json │ │ ├── expected_example1_bower.json │ │ ├── expected_mapper_example1_bower.json │ │ ├── packages.json │ │ └── packages_expected_uris.json │ │ ├── cargo │ │ ├── expected-sam-0.3.1.json │ │ ├── expected-sam.json │ │ └── sam.json │ │ ├── command │ │ ├── bar │ │ └── foo │ │ │ └── .gitignore │ │ ├── composer │ │ └── laravel-laravel.json │ │ ├── conan │ │ └── zlib │ │ │ ├── manifest.ABOUT │ │ │ ├── manifest.LICENSE │ │ │ └── manifest │ │ │ ├── conandata.yml │ │ │ ├── conanfile.py │ │ │ └── config.yml │ │ ├── conda │ │ ├── mapper_numpy_expected.json │ │ ├── mapper_sqlalchemy_expected.json │ │ ├── package_info_sqlalchemy.json │ │ └── repodata.json.bz2 │ │ ├── cpan │ │ ├── Acme-CPANAuthors-EU-2014051201.meta │ │ ├── Algorithm-Graphs-TransitiveClosure-2009110901.readme │ │ ├── Chris_Radcliff_Apache_PSP_1.00_search.cpan.org.html │ │ ├── Chris_Radcliff_search.cpan.org.html │ │ ├── Index_of_authors_id_L_LD_LDS.html │ │ ├── MIYAGAWA_author_release_search.json │ │ ├── Modules on CPAN alphabetically.html │ │ ├── Mojolicious-9.22.json │ │ ├── Mojolicious-Plugin-Nour-Config-0.09.readme │ │ ├── Net_ZooTool_search.cpan.org.html │ │ ├── Regexp-Common-2016010701.meta │ │ ├── expected_author_radcliff.json │ │ ├── expected_author_radcliff_Apache_PSP_1.00.json │ │ ├── expected_html_files.json │ │ ├── expected_html_modules.json │ │ ├── expected_json_cpanmapper.json │ │ ├── expected_json_readmefile_cpanmapper.json │ │ ├── expected_json_readmefile_cpanmapper2.json │ │ ├── expected_meta_cpan_api.json │ │ ├── expected_readme.json │ │ ├── expected_release_from_author_ABERNDT.json │ │ ├── expected_release_search.json │ │ ├── expected_release_search_author_MIYAGAWA.json │ │ ├── expected_search_authors.json │ │ ├── expected_search_email_a.json │ │ ├── expected_yaml_cpanmapper.json │ │ ├── modules.index.html │ │ ├── q.search.cpan.org.html │ │ ├── release_from_author_ABERNDT.json │ │ ├── release_search.json │ │ ├── search_email_a.json │ │ └── variable-2009110702.meta │ │ ├── cran │ │ ├── CRAN_Package_ANN2.html │ │ ├── CRAN_Package_abe.html │ │ ├── CRAN_Packages_By_Date.html │ │ ├── dplyr.json │ │ ├── expected_cran_pacakges.json │ │ ├── mapper_ANN2_expected.json │ │ └── mapper_abe_expected.json │ │ ├── debian │ │ ├── copyright │ │ │ ├── basic_copyright │ │ │ ├── copyright_abiword_common_copyright-abiword_common_copyright.copyright │ │ │ └── invalid_copyright │ │ ├── debian_lslrs_expected │ │ ├── debian_lslrs_on_ubuntu_expected │ │ ├── debian_sourceindex_expected │ │ ├── debutils │ │ │ ├── 3dldf_2.0.3+dfsg-2.dsc │ │ │ ├── 3dldf_2.0.3+dfsg-2.dsc-expected │ │ │ ├── control_basic │ │ │ └── control_invalid │ │ ├── dsc │ │ │ ├── 7kaa_2.14.3-1.dsc │ │ │ ├── description-expected.json │ │ │ ├── description.json │ │ │ ├── description_expected.json │ │ │ └── invalid.dsc │ │ ├── invalid_files │ │ │ └── ls-lR.gz │ │ ├── lslr │ │ │ ├── ls-lR_debian │ │ │ ├── ls-lR_debian.gz-expected.json │ │ │ ├── ls-lR_ubuntu │ │ │ └── ls-lR_ubuntu.gz-expected.json │ │ ├── packages │ │ │ ├── debian_Packages │ │ │ ├── debian_Packages-expected.json │ │ │ ├── debian_Packages-visit-expected.json │ │ │ ├── ubuntu_Packages │ │ │ └── ubuntu_Packages-expected.json │ │ ├── release │ │ │ ├── Release │ │ │ ├── Release_expected │ │ │ ├── Release_with_md5 │ │ │ ├── Release_with_md5_expected │ │ │ ├── visited_Release │ │ │ └── visited_Release-expected.json │ │ ├── sources │ │ │ ├── Sources.gz │ │ │ ├── Sources.gz-expected.json │ │ │ ├── debian_Sources │ │ │ ├── debian_Sources_mapped-expected-packages.json │ │ │ ├── debian_Sources_visit_expected │ │ │ ├── ubuntu_Sources │ │ │ └── ubuntu_Sources_visit_expected │ │ └── status │ │ │ └── simple_status │ │ ├── directories │ │ ├── find-ls │ │ ├── find-ls-apache-start │ │ ├── find-ls-apache-start-expected.json │ │ ├── find-ls-expected.json │ │ ├── ls-lr │ │ ├── ls-lr-expected.json │ │ ├── ls-lr-ubuntu │ │ └── ls-lr-ubuntu-expected.json │ │ ├── dockerhub │ │ ├── Explore_DockerHub_Page1.html │ │ ├── conditions_expected │ │ ├── elixir.json │ │ ├── expected-nginx1.json │ │ ├── expected-nginx2.json │ │ ├── expected_dockerhubmapper.json │ │ ├── library_elixir.html │ │ ├── nginx.json │ │ ├── search.json │ │ ├── seeds_expected │ │ ├── visitor_explore_page1_expected │ │ ├── visitor_library_elixir_expected │ │ └── visitor_search_expected │ │ ├── eclipse │ │ ├── Acceleo_projects.eclipse.org.html │ │ ├── Acceleo_projects_expected.json │ │ ├── All_Releases_Packages.html │ │ ├── Eclipse_Git_repositories.html │ │ ├── Neon_R-expected.json │ │ ├── Neon_R.html │ │ ├── acceleo_expected.html │ │ ├── birt-expected.json │ │ ├── birt.json │ │ ├── eclipse_birt_expected.json │ │ ├── eclipse_git_repos_expected │ │ ├── eclipse_packages_expected │ │ ├── eclipse_projects_expected │ │ └── projects.eclipse.org.html │ │ ├── fdroid │ │ ├── index-v2-expected-visit.json │ │ ├── index-v2-visited-expected-mapped.json │ │ ├── index-v2-visited.json │ │ └── index-v2.json │ │ ├── filter_sf │ │ ├── tst_sfnet.csv │ │ └── tst_sfnet2.csv │ │ ├── freebsd │ │ ├── FreeBSD-10-i386_release_0_.html │ │ ├── FreeBSD-10-i386_release_0_.html_expected │ │ ├── FreeBSD.org.html │ │ ├── FreeBSD.org.html_expected │ │ ├── indexfile_expected │ │ ├── indexfile_expected_mapper.json │ │ ├── mapper_input1 │ │ ├── packagesite.txz │ │ ├── pkg-devel_index │ │ ├── pkg-devel_index_mapper.json │ │ └── squirrelmail-plugins-1.0_2.txz │ │ ├── freedesktop │ │ ├── Software.html │ │ ├── freedesktop_software_expected │ │ ├── hal.html │ │ ├── hal_project_expected.json │ │ ├── libinput.html │ │ └── libinput_project_expected.json │ │ ├── github │ │ ├── calendar_builder-expected.json │ │ ├── calendar_builder.json │ │ ├── mapper_calendar_builder_expected.json │ │ ├── mojombo_grit_expected.json │ │ ├── mojombo_grit_from_visitor_4mapper_input.json │ │ ├── mojombo_grit_result_mapper_expected.json │ │ ├── repo_since0.json │ │ └── repo_since0_expected.json │ │ ├── gitlab │ │ ├── expected_projects.json │ │ ├── expected_projects_visitor.json │ │ ├── microservice-express-mongo.json │ │ ├── microservice-express-mongo_expected.json │ │ └── projects_visitor.json │ │ ├── gnu │ │ └── glibc │ │ │ └── index.html │ │ ├── golang │ │ ├── client-go_0.127.0.json │ │ ├── gg-core_0.3.64.json │ │ ├── glog.json │ │ ├── glog_expected.json │ │ ├── godoc_search.json │ │ ├── godoc_search_expected_uris.json │ │ ├── godoc_search_off_github.json │ │ ├── godoc_search_off_github_expected_uris.json │ │ ├── math3.json │ │ ├── math3_expected.json │ │ ├── oauth2_0.29.0.json │ │ ├── packages.json │ │ ├── packages_expected_uris.json │ │ ├── winter.json │ │ └── winter_expected.json │ │ ├── googlecode │ │ ├── checkout │ │ │ ├── ABOUT │ │ │ ├── checkout1.html │ │ │ ├── checkout1.html.expected │ │ │ ├── checkout2 │ │ │ ├── checkout2.html │ │ │ ├── checkout2.html.expected │ │ │ ├── checkout3 │ │ │ ├── checkout3.html │ │ │ ├── checkout3.html.expected │ │ │ ├── checkout4.html │ │ │ ├── checkout4.html.expected │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── git.html │ │ │ ├── git.html.expected │ │ │ ├── git_multi.html │ │ │ ├── git_multi.html.expected │ │ │ ├── hg.html │ │ │ ├── hg.html.expected │ │ │ ├── hg_multi.html │ │ │ ├── hg_multi.html.expected │ │ │ ├── redis.html │ │ │ ├── redis.html.expected │ │ │ ├── svn.html │ │ │ └── svn.html.expected │ │ ├── downloads_apache_eclipse │ │ │ ├── ABOUT │ │ │ ├── apache_with_notice.html │ │ │ ├── apache_with_notice.html.expected │ │ │ ├── detail3.html │ │ │ └── detail3.html.expected │ │ ├── downloads_list │ │ │ ├── ABOUT │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── list4.html │ │ │ ├── list4.html.expected │ │ │ ├── list5.html │ │ │ ├── list5.html.expected │ │ │ ├── list6.html │ │ │ ├── list6.html.expected │ │ │ ├── list7.html │ │ │ ├── list7.html.expected │ │ │ ├── list8.html │ │ │ ├── list8.html.expected │ │ │ ├── list9.html │ │ │ └── list9.html.expected │ │ ├── downloads_list_apache_eclipse │ │ │ ├── ABOUT │ │ │ ├── apache_with_notice.html │ │ │ ├── apache_with_notice.html.expected │ │ │ ├── list1.html │ │ │ ├── list1.html.expected │ │ │ ├── list2.html │ │ │ ├── list2.html.expected │ │ │ ├── list3.html │ │ │ └── list3.html.expected │ │ ├── expected_gc_searchpages.json │ │ ├── expected_google-code-archive.txt.zip.json │ │ ├── expected_v2_apache-extras.org_124799961-qian_project2.json │ │ ├── feeds │ │ │ ├── ABOUT │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ └── feeds.html │ │ ├── gcode_urls.json │ │ ├── gcode_urls2.json │ │ ├── google-code-archive.txt.zip │ │ ├── homepage │ │ │ ├── ABOUT │ │ │ ├── adelinbackup.html │ │ │ ├── adelinbackup.html.expected │ │ │ ├── boost-doc-zh.html │ │ │ ├── boost-doc-zh.html.expected │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── flossmole.html │ │ │ ├── flossmole.html.expected │ │ │ ├── furigana-injector.html │ │ │ ├── furigana-injector.html.expected │ │ │ ├── gdata-java-client.html │ │ │ ├── gdata-java-client.html.expected │ │ │ ├── gnome2-globalmenu.html │ │ │ ├── gnome2-globalmenu.html.expected │ │ │ ├── gpl3.html │ │ │ ├── gpl3.html.expected │ │ │ ├── lgpl.html │ │ │ ├── lgpl.html.expected │ │ │ ├── mit.html │ │ │ ├── mit.html.expected │ │ │ ├── mpl11.html │ │ │ ├── mpl11.html.expected │ │ │ ├── nosource_longdesc.html │ │ │ ├── nosource_longdesc.html.expected │ │ │ ├── redis.html │ │ │ ├── redis.html.expected │ │ │ ├── register.html │ │ │ └── register.html.expected │ │ ├── homepage_eclipse_apache │ │ │ ├── ABOUT │ │ │ ├── apache.html │ │ │ ├── apache.html.expected │ │ │ ├── epl.html │ │ │ ├── epl.html.expected │ │ │ ├── failing_empty.html │ │ │ └── failing_non_google.html │ │ ├── mapper_expected_v2_apache-extras.org_124799961-qian_project.json │ │ ├── people_list │ │ │ ├── ABOUT │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── flare.html │ │ │ ├── flare.html.expected │ │ │ ├── gae1.html │ │ │ ├── gae1.html.expected │ │ │ ├── gae2.html │ │ │ ├── gae2.html.expected │ │ │ ├── gae3.html │ │ │ ├── gae3.html.expected │ │ │ ├── invict.html │ │ │ ├── invict.html.expected │ │ │ ├── people1.html │ │ │ ├── people1.html.expected │ │ │ ├── swarming.html │ │ │ ├── swarming.html.expected │ │ │ ├── withnotice.html │ │ │ └── withnotice.html.expected │ │ ├── search │ │ │ ├── ABOUT │ │ │ ├── base.html │ │ │ ├── base.html.expected │ │ │ ├── basehttps.html │ │ │ ├── basehttps.html.expected │ │ │ ├── basic.html │ │ │ ├── basic.html.expected │ │ │ ├── basic_notice.html │ │ │ ├── basic_notice.html.expected │ │ │ ├── chinese.html │ │ │ ├── chinese.html.expected │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── japanese.html │ │ │ ├── japanese.html.expected │ │ │ ├── java.html │ │ │ ├── java.html.expected │ │ │ ├── label_too_long.html │ │ │ ├── label_too_long.html.expected │ │ │ ├── no_activityspan.html │ │ │ ├── no_activityspan.html.expected │ │ │ ├── no_result.html │ │ │ ├── no_result.html.expected │ │ │ ├── paginat1.html │ │ │ ├── paginat1.html.expected │ │ │ ├── paginat2.html │ │ │ └── paginat2.html.expected │ │ ├── search_eclipse_apache │ │ │ ├── ABOUT │ │ │ ├── apache.html │ │ │ ├── apache.html.expected │ │ │ ├── apache_notice.html │ │ │ ├── apache_notice.html.expected │ │ │ ├── eclipse2.html │ │ │ ├── eclipse2.html.expected │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── nores_apext.html │ │ │ ├── nores_apext.html.expected │ │ │ ├── project_page_eclipse.html │ │ │ └── project_page_eclipse.html.expected │ │ ├── user │ │ │ ├── ABOUT │ │ │ ├── failing_empty.html │ │ │ ├── failing_non_google.html │ │ │ ├── user1.html │ │ │ ├── user2.html │ │ │ └── user3.html │ │ ├── v2_apache-extras.org_124799961-qian_project.json │ │ └── v2_api │ │ │ ├── GoogleCodeProjectHosting.htm │ │ │ ├── GoogleCodeProjectHosting_page2.htm │ │ │ ├── downloads-page-1.json │ │ │ ├── expected_googleproject_page2.json │ │ │ ├── expected_googleprojects.json │ │ │ ├── hg4j_download_expected.json │ │ │ ├── package_expected_project.json │ │ │ └── project.json │ │ ├── gstreamer │ │ ├── mapper_build_from_url-expected │ │ ├── src_gst-openmax_pre.html │ │ ├── src_gst-openmax_pre.html-expected │ │ ├── src_root.html │ │ └── src_root.html-expected │ │ ├── haxe │ │ ├── all_haxelibs.html │ │ ├── all_haxelibs.html-expected │ │ ├── all_versions_openfl.html │ │ ├── all_versions_openfl.html-expected │ │ ├── openfl-8.5.1-package.json │ │ ├── openfl-8.5.1-package.json-expected │ │ ├── project_package.json │ │ └── project_package.json-expected │ │ ├── housekeeping │ │ ├── bytejta-supports-0.5.0-ALPHA4.pom │ │ ├── bytejta-supports-0.5.0-ALPHA4.pom_search_expected.json │ │ ├── declared_license_search_expected.json │ │ ├── example_expected.json │ │ ├── ignore_upper_case_search_expected.json │ │ └── license_expression_search_expected.json │ │ ├── indexing │ │ ├── get_scan_data_dwarf.json │ │ ├── scan_summary_dwarf.json │ │ ├── scancodeio_wagon-api-20040705.181715-expected.json │ │ ├── scancodeio_wagon-api-20040705.181715-summary.json │ │ └── scancodeio_wagon-api-20040705.181715.json │ │ ├── iso │ │ └── pool │ │ │ └── iptraf │ │ │ └── iptraf_3.0.0-8.1build1_amd64.deb │ │ ├── maven │ │ ├── end2end │ │ │ ├── bytejta-supports-0.5.0-ALPHA4.pom │ │ │ ├── expected_mapped_packages.json │ │ │ ├── expected_visited_uris.json │ │ │ └── test_uris.json │ │ ├── end2end_index │ │ │ ├── expected_visited_increment_index.json │ │ │ ├── expected_visited_index.json │ │ │ ├── nexus-maven-repository-index.163.gz │ │ │ └── nexus-maven-repository-index.properties │ │ ├── end2end_multisteps │ │ │ ├── commons-jaxrs-1.21-index-data.json │ │ │ ├── commons-jaxrs-1.21-pom-data.json │ │ │ ├── commons-jaxrs-1.21.pom │ │ │ ├── expected_mapped_commons-jaxrs-1.21-from-index.json │ │ │ └── expected_mapped_commons-jaxrs-1.21-from-pom.json │ │ ├── end2end_unicode │ │ │ ├── commons-jaxrs-1.22.pom │ │ │ ├── expected_mapped_commons-jaxrs-1.22.json │ │ │ └── expected_visited_commons-jaxrs-1.22.json │ │ ├── html │ │ │ ├── app.html │ │ │ ├── jcenter.bintray.com.html │ │ │ ├── stateframework-compiler.html │ │ │ ├── visitor_expected_app.html.json │ │ │ ├── visitor_expected_jcenter.bintray.com2.html.json │ │ │ └── visitor_expected_stateframework-compiler.html.json │ │ ├── index │ │ │ ├── buggy │ │ │ │ ├── expected_artifacts-defaults.json │ │ │ │ ├── expected_artifacts.json │ │ │ │ ├── expected_entries.json │ │ │ │ ├── expected_uris.json │ │ │ │ ├── expected_visited_uris.json │ │ │ │ └── nexus-maven-repository-index.gz │ │ │ ├── expected_artifacts-all-worthy.json │ │ │ ├── expected_artifacts-defaults.json │ │ │ ├── expected_artifacts.json │ │ │ ├── expected_entries.json │ │ │ ├── expected_uris.json │ │ │ ├── increment │ │ │ │ ├── expected_artifacts-defaults.json │ │ │ │ ├── expected_artifacts.json │ │ │ │ ├── expected_entries.json │ │ │ │ ├── expected_properties_uris.json │ │ │ │ ├── expected_uris.json │ │ │ │ ├── nexus-maven-repository-index.445.gz │ │ │ │ └── nexus-maven-repository-index.properties │ │ │ ├── increment2 │ │ │ │ ├── expected_mini_package.json │ │ │ │ ├── expected_uris.json │ │ │ │ └── nexus-maven-repository-index.457.gz │ │ │ └── nexus-maven-repository-index.gz │ │ ├── mapper │ │ │ ├── ant-1.6.5.pom │ │ │ ├── ant-1.6.5.pom.json │ │ │ ├── axis-1.4.pom │ │ │ ├── axis-1.4.pom.package.json │ │ │ ├── commons-jaxrs-1.21.pom │ │ │ ├── commons-jaxrs-1.21.pom.package.json │ │ │ ├── commons-pool-1.5.7.pom │ │ │ ├── commons-pool-1.5.7.pom.package.json │ │ │ ├── depgraph-view-0.1.pom │ │ │ ├── maven-all-1.0-RELEASE.pom │ │ │ ├── maven-all-1.0-RELEASE.pom.package.json │ │ │ ├── mysql-connector-java-5.1.27.pom │ │ │ ├── mysql-connector-java-5.1.27.pom.package.json │ │ │ ├── struts-menu-2.4.2.pom │ │ │ ├── struts-menu-2.4.2.pom.package.json │ │ │ ├── xbean-jmx-2.0.pom │ │ │ └── xbean-jmx-2.0.pom.package.json │ │ ├── maven-metadata │ │ │ ├── expected_maven_xml.json │ │ │ └── maven-metadata.xml │ │ ├── parsing │ │ │ ├── empty │ │ │ │ ├── common-object-1.0.2.pom │ │ │ │ ├── common-object-1.0.2.pom.package.json │ │ │ │ ├── osgl-http-1.1.2.pom │ │ │ │ └── osgl-http-1.1.2.pom.package.json │ │ │ ├── loop │ │ │ │ ├── argus-webservices-2.7.0.pom │ │ │ │ ├── argus-webservices-2.7.0.pom.package.json │ │ │ │ ├── argus-webservices-2.8.0.pom │ │ │ │ ├── argus-webservices-2.8.0.pom.package.json │ │ │ │ ├── coreplugin-1.0.0.pom │ │ │ │ ├── coreplugin-1.0.0.pom.package.json │ │ │ │ ├── jacuzzi-annotations-0.2.1.pom │ │ │ │ ├── jacuzzi-annotations-0.2.1.pom.package.json │ │ │ │ ├── jacuzzi-database-0.2.1.pom │ │ │ │ ├── jacuzzi-database-0.2.1.pom.package.json │ │ │ │ ├── ojcms-beans-0.1-beta.pom │ │ │ │ ├── ojcms-beans-0.1-beta.pom.package.json │ │ │ │ ├── pkg-2.0.13.1005.pom │ │ │ │ └── pkg-2.0.13.1005.pom.package.json │ │ │ └── parse │ │ │ │ ├── jds-2.17.0718b.pom │ │ │ │ ├── jds-2.17.0718b.pom.package.json │ │ │ │ ├── jds-3.0.1.pom │ │ │ │ ├── jds-3.0.1.pom.package.json │ │ │ │ ├── maven-javanet-plugin-1.7.pom │ │ │ │ ├── maven-javanet-plugin-1.7.pom.package.json │ │ │ │ ├── springmvc-rest-docs-maven-plugin-1.0-RC1.pom │ │ │ │ └── springmvc-rest-docs-maven-plugin-1.0-RC1.pom.package.json │ │ └── pom │ │ │ ├── ant-antlr-1.10.1-package_after.json │ │ │ ├── ant-antlr-1.10.1-package_before.json │ │ │ ├── ant-antlr-1.10.1.pom │ │ │ ├── ant-parent-1.10.1.pom │ │ │ ├── apache-18.pom │ │ │ ├── classworlds-1.1-alpha-2.pom │ │ │ ├── classworlds-1.1.pom │ │ │ ├── pulsar-2.5.1.pom │ │ │ ├── pulsar-client-1x-2.5.1-package_after.json │ │ │ ├── pulsar-client-1x-2.5.1-package_before.json │ │ │ ├── pulsar-client-1x-2.5.1.pom │ │ │ ├── pulsar-client-1x-base-2.5.1.pom │ │ │ └── pulsar-client-merged-ancestor-package.json │ │ ├── model_utils │ │ ├── after_merge.json │ │ ├── before_merge.json │ │ ├── created_package.json │ │ └── expected_updated_fields.json │ │ ├── npm │ │ ├── 0flux.json │ │ ├── 0flux_npm_expected.json │ │ ├── 1000_records.json │ │ ├── 2112.json │ │ ├── 29_record_expected.json │ │ ├── 554_record_expected.json │ │ ├── expected_1000_records.json │ │ ├── expected_doclimit_visitor.json │ │ ├── expected_npmdownload_data_vistor.json │ │ ├── expected_npmdownloadvistor.json │ │ ├── expected_npmindexvisitor.json │ │ ├── expected_over_limit.json │ │ ├── expected_ticket_439.json │ │ ├── expected_ticket_440.json │ │ ├── grunticon-sass.json │ │ ├── jsonp-filter-expected.json │ │ ├── jsonp-filter.json │ │ ├── lodash_package-expected.json │ │ ├── mapper │ │ │ ├── index.expected.json │ │ │ └── index.json │ │ ├── microdata-node_expected.json │ │ ├── microdata.json │ │ ├── npm_2112_expected.json │ │ ├── over_limit.json │ │ ├── replicate_doc1.json │ │ ├── ticket_439.json │ │ └── ticket_440_records.json │ │ ├── nuget │ │ ├── entityframework.json │ │ ├── entityframework2.json │ │ ├── log4net.html │ │ ├── nuget_downlloadvisitor_json_expected │ │ ├── nuget_mapper_expected.json │ │ ├── nuget_mapper_log4net_expected.json │ │ ├── nuget_page_json_expected │ │ ├── nuget_query_expected │ │ ├── packages.html │ │ ├── packages.html.expected.json │ │ ├── query.json │ │ └── query_search.json │ │ ├── openssl │ │ ├── Index.html │ │ ├── Indexof_source.html │ │ ├── expected-content.json │ │ ├── expected_openssl_visitor.json │ │ ├── expected_openssl_visitor_second.json │ │ ├── expected_uri_openssl_index.json │ │ ├── expected_uri_openssl_sourceindex.json │ │ └── openssl_mapper_expected.json │ │ ├── openwrt │ │ ├── 6to4_12-2_all.ipk │ │ ├── 6to4_12-2_all_ipk_expected │ │ ├── 6to4_12-2_all_ipk_expected_mapper.json │ │ ├── Index_of_chaos_calmer_15.05_.html │ │ ├── Index_of_chaos_calmer_15.05_adm5120_rb1xx_packages_base_.html │ │ ├── Packages.gz │ │ ├── Packages_gz_expected │ │ ├── chaos_calmer_15.05_expected │ │ ├── chaos_calmer_15.05_expected_2 │ │ ├── wpa-cli_0.5.7-1_mipsel.ipk │ │ ├── wpa-cli_0.5.7-1_mipsel.ipk_expected │ │ └── wpa-cli_0.5.7-1_mipsel.ipk_expected_mapper.json │ │ ├── packagist │ │ ├── 00f100_cakephp-opauth.json │ │ ├── list.json │ │ ├── packagist_list_expected │ │ └── packaglist_00f100_cakephp-opauth_expected.json │ │ ├── pub │ │ └── flutter.json │ │ ├── pypi │ │ ├── boolean.py-2.0.dev3.json │ │ ├── boolean.py.json │ │ ├── cage.json │ │ ├── cage_1.1.2.json │ │ ├── cage_1.1.3.json │ │ ├── cage_1.1.4.json │ │ ├── expected-CAGE-1.1.2.json │ │ ├── expected-CAGE-1.1.3.json │ │ ├── expected-boolean.py-2.0.dev3.json │ │ ├── expected-lxml-3.2.0.json │ │ ├── expected_data-boolean.py-2.0.dev3.json │ │ ├── expected_data-cage_1.1.2.json │ │ ├── expected_data-cage_1.1.3.json │ │ ├── expected_uri_visitor1.json │ │ ├── expected_uri_visitor2.json │ │ ├── expected_uris-boolean.py-2.0.dev3.json │ │ ├── expected_uris-boolean.py.json │ │ ├── expected_uris-cage.json │ │ ├── expected_uris-cage_1.1.2.json │ │ ├── expected_uris-cage_1.1.3.json │ │ ├── lxml-3.2.0.json │ │ ├── map │ │ │ ├── 3to2-1.1.1.json │ │ │ └── expected-3to2-1.1.1.json │ │ └── pypiindexvisitor-expected.json │ │ ├── repodata_rpms │ │ ├── centos_dir_listing │ │ ├── repodata │ │ │ ├── filelists.xml │ │ │ ├── other.xml │ │ │ ├── primary.xml │ │ │ └── repomd.xml │ │ └── repomd_parser │ │ │ ├── centos │ │ │ ├── expected.json │ │ │ ├── filelists.xml.gz │ │ │ ├── other.xml.gz │ │ │ ├── primary.xml.gz │ │ │ └── repomd.xml │ │ │ ├── cloudera │ │ │ ├── expected.json │ │ │ ├── filelists.xml.gz │ │ │ ├── other.xml.gz │ │ │ ├── primary.xml.gz │ │ │ └── repomd.xml │ │ │ ├── cloudera2 │ │ │ ├── expected.json │ │ │ ├── filelists.xml.gz │ │ │ ├── other.xml.gz │ │ │ ├── primary.xml.gz │ │ │ └── repomd.xml │ │ │ ├── opensuse │ │ │ ├── 09ed18eaa761fe64c863137db5c51fdb4e60fbb29d6c9b0c424e3119ba4875cd-filelists.xml.gz │ │ │ ├── 314da4321afcff987bd3e28672e60f1a2324f2698480b84812f7ec0a1aef4041-primary.xml.gz │ │ │ ├── 9c100bbff252834349ca677813f333881ce9d2ca9db8091ce387156ba7a22859-other.xml.gz │ │ │ ├── expected.json │ │ │ └── repomd.xml │ │ │ ├── pgpool │ │ │ ├── expected.json │ │ │ ├── filelists.xml.gz │ │ │ ├── other.xml.gz │ │ │ ├── primary.xml.gz │ │ │ └── repomd.xml │ │ │ └── postgresql │ │ │ ├── d5b4a2d13632cceb2a13a42fdb2887a22c1e262e6eeeb7270a80beec453392cd-filelists.xml.gz │ │ │ ├── d5cb2a54df0aa000ac2a007b1d9b0d1f2e6a924d2d97584acbe654e59aa993e8-primary.xml.gz │ │ │ ├── expected.json │ │ │ ├── fc8c4fa6295d68abddcf5bba71435ecf585c439b86d7e75e0ba9bf3951f914b5-other.xml.gz │ │ │ └── repomd.xml │ │ ├── rsync │ │ ├── rsync_dev.dir │ │ ├── rsync_dir │ │ │ ├── bar │ │ │ │ ├── that │ │ │ │ │ └── baz │ │ │ │ └── this │ │ │ └── foo │ │ ├── rsync_modules │ │ ├── rsync_v3.0.9_protocol30.dir │ │ ├── rsync_v3.1.0_protocol31.dir │ │ └── rsync_wicket.dir │ │ ├── rubygems │ │ ├── 0mq-0.4.1.gem.metadata │ │ ├── 0mq-0.4.1.gem.package.json │ │ ├── a_okay-0.1.0.gem │ │ ├── a_okay-0.1.0.gem.metadata │ │ ├── a_okay-0.1.0.gem.package.json │ │ ├── action_tracker-1.0.2.gem │ │ ├── action_tracker-1.0.2.gem.package.json │ │ ├── apiv1 │ │ │ ├── 0xffffff.api.json │ │ │ ├── 0xffffff.api.package.json │ │ │ ├── a1630ty_a1630ty.api.json │ │ │ ├── a1630ty_a1630ty.api.mapped.json │ │ │ ├── a1630ty_a1630ty.api.package.json │ │ │ ├── action_tracker.api.json │ │ │ ├── action_tracker.api.package.json │ │ │ ├── expected_0xffffff.api.json │ │ │ ├── expected_a1630ty_a1630ty.api.json │ │ │ ├── expected_zuck.api.json │ │ │ ├── zuck.api.json │ │ │ └── zuck.api.package.json │ │ ├── apiv2 │ │ │ ├── expected-rails-8.0.2.json │ │ │ └── rails-8.0.2.json │ │ ├── archive-tar-minitar-0.5.2.gem │ │ ├── archive-tar-minitar-0.5.2.gem.package.json │ │ ├── blankslate-3.1.3.gem │ │ ├── blankslate-3.1.3.gem.package.json │ │ ├── gemspec │ │ │ ├── address_standardization.gemspec │ │ │ └── arel.gemspec │ │ ├── index │ │ │ ├── latest_specs.4.8.gz │ │ │ └── latest_specs.4.8.gz.expected.json │ │ ├── m2r-2.1.0.gem │ │ ├── m2r-2.1.0.gem.package.json │ │ ├── mysmallidea-address_standardization-0.4.1.gem │ │ ├── mysmallidea-address_standardization-0.4.1.gem.mapped.json │ │ ├── mysmallidea-address_standardization-0.4.1.gem.metadata │ │ ├── mysmallidea-address_standardization-0.4.1.gem.package.json │ │ ├── mysmallidea-mad_mimi_mailer-0.0.9.gem │ │ ├── mysmallidea-mad_mimi_mailer-0.0.9.gem.package.json │ │ ├── ng-rails-csrf-0.1.0.gem │ │ ├── ng-rails-csrf-0.1.0.gem.package.json │ │ ├── small-0.2.gem │ │ ├── small-0.2.gem.package.json │ │ ├── small_wonder-0.1.10.gem │ │ ├── small_wonder-0.1.10.gem.package.json │ │ ├── sprockets-vendor_gems-0.1.3.gem │ │ ├── sprockets-vendor_gems-0.1.3.gem.mapped.json │ │ ├── sprockets-vendor_gems-0.1.3.gem.package.json │ │ └── sprockets-vendor_gems-0.1.3.gem.visited.json │ │ ├── run_map │ │ ├── test_map_uri_does_update_with_same_mining_level-expected.json │ │ ├── test_map_uri_does_update_with_same_mining_level_expected_updated_fields.json │ │ ├── test_map_uri_replace_with_new_with_higher_new_mining_level-expected.json │ │ ├── test_map_uri_replace_with_new_with_higher_new_mining_level_expected_updated_fields.json │ │ ├── test_map_uri_update_only_empties_with_lesser_new_mining_level-expected.json │ │ ├── test_merge_packages_no_replace-expected.json │ │ └── test_merge_packages_with_replace-expected.json │ │ ├── scancodeio │ │ ├── get_scan_data.json │ │ ├── get_scan_data_expected.json │ │ ├── get_scan_data_expected_resources.json │ │ ├── get_scan_info.json │ │ ├── get_scan_summary.json │ │ ├── new_scan_request.json │ │ ├── scan_exists_for_uri.json │ │ ├── scan_request_lookup.json │ │ ├── scan_request_response.json │ │ └── scan_summary_response.json │ │ ├── sourceforge │ │ ├── a-vitkus_profile.html │ │ ├── expected_heanet_rsync_dir.json │ │ ├── expected_netwiki.json │ │ ├── expected_sf_dir_index.json │ │ ├── expected_sf_dir_page.json │ │ ├── expected_sf_project.json │ │ ├── expected_sf_sitemap.json │ │ ├── expected_sf_sitemap_new.json │ │ ├── expected_sf_sitemap_page.json │ │ ├── expected_sf_sitemap_page_new.json │ │ ├── expected_sitemap-6.json │ │ ├── filezilla.json │ │ ├── mapper_niftyphp_expected.json │ │ ├── mapper_odanur_expected.json │ │ ├── mapper_omonoql_expected.json │ │ ├── mapper_openstunts_expected.json │ │ ├── monoql.json │ │ ├── netwiki.json │ │ ├── niftyphp.json │ │ ├── odanur.json │ │ ├── openstunts.json │ │ ├── rsync_heanet_sfnet.dir │ │ ├── sitemap-1.xml │ │ ├── sitemap-6.xml │ │ └── sitemap.xml │ │ └── swift │ │ └── swift-ui-coordinator.json ├── utils.py ├── utils_test.py ├── utils_test.py.ABOUT ├── utils_test.py.LICENSE ├── utils_test.py.NOTICE └── version.py ├── minecode_pipelines ├── README.rst ├── __init__.py ├── miners │ ├── __init__.py │ ├── cran.py │ └── pypi.py ├── pipelines │ ├── __init__.py │ ├── mine_alpine.py │ ├── mine_cargo.py │ ├── mine_composer.py │ ├── mine_conan.py │ ├── mine_cran.py │ ├── mine_debian.py │ ├── mine_maven.py │ ├── mine_nuget.py │ ├── mine_pypi.py │ └── mine_swift.py ├── pipes │ ├── __init__.py │ ├── alpine.py │ ├── cargo.py │ ├── composer.py │ ├── conan.py │ ├── cran.py │ ├── debian.py │ ├── java_stream.py │ ├── java_stream.py.ABOUT │ ├── java_stream.py.LICENSE │ ├── ls.py │ ├── maven.py │ ├── nuget.py │ ├── pypi.py │ └── swift.py ├── tests │ ├── __init__.py │ ├── data │ │ ├── alpine │ │ │ ├── APKINDEX │ │ │ └── expected_packages.json │ │ ├── directories │ │ │ ├── find-ls │ │ │ ├── find-ls-apache-start │ │ │ ├── find-ls-apache-start-expected.json │ │ │ ├── find-ls-expected.json │ │ │ ├── ls-lr │ │ │ ├── ls-lr-expected.json │ │ │ ├── ls-lr-ubuntu │ │ │ └── ls-lr-ubuntu-expected.json │ │ ├── maven │ │ │ └── index │ │ │ │ ├── buggy │ │ │ │ ├── expected_artifacts-defaults.json │ │ │ │ ├── expected_artifacts.json │ │ │ │ ├── expected_entries.json │ │ │ │ ├── expected_uris.json │ │ │ │ ├── expected_visited_uris.json │ │ │ │ └── nexus-maven-repository-index.gz │ │ │ │ ├── expected_artifacts-all-worthy.json │ │ │ │ ├── expected_artifacts-defaults.json │ │ │ │ ├── expected_artifacts.json │ │ │ │ ├── expected_entries.json │ │ │ │ ├── expected_uris.json │ │ │ │ ├── increment │ │ │ │ ├── expected_artifacts-defaults.json │ │ │ │ ├── expected_artifacts.json │ │ │ │ ├── expected_entries.json │ │ │ │ ├── expected_properties_uris.json │ │ │ │ ├── expected_uris.json │ │ │ │ ├── nexus-maven-repository-index.445.gz │ │ │ │ └── nexus-maven-repository-index.properties │ │ │ │ ├── increment2 │ │ │ │ ├── expected_mini_package.json │ │ │ │ ├── expected_uris.json │ │ │ │ └── nexus-maven-repository-index.457.gz │ │ │ │ └── nexus-maven-repository-index.gz │ │ ├── nuget │ │ │ └── catalog │ │ │ │ └── pages │ │ │ │ └── page10897.json │ │ └── swift │ │ │ ├── commits_tags1.txt │ │ │ ├── commits_tags2.txt │ │ │ ├── commits_tags3.txt │ │ │ ├── commits_tags4.txt │ │ │ ├── expected1.yaml │ │ │ ├── expected2.yaml │ │ │ ├── expected3.yaml │ │ │ └── expected4.yaml │ ├── pipes │ │ ├── __init__.py │ │ ├── test_alpine.py │ │ ├── test_cargo.py │ │ ├── test_composer.py │ │ ├── test_conan.py │ │ ├── test_cran.py │ │ ├── test_ls.py │ │ ├── test_maven.py │ │ ├── test_nuget.py │ │ ├── test_pipes.py │ │ ├── test_pypi.py │ │ └── test_swift.py │ └── test_data │ │ ├── cargo │ │ ├── c5store │ │ └── c5store-expected.yaml │ │ ├── composer │ │ ├── expected_output.json │ │ ├── package_details.json │ │ └── packages_list.json │ │ ├── conan │ │ ├── cairo │ │ │ └── cairo-config.yml │ │ └── expected-cairo-purls.yml │ │ └── cran │ │ ├── cran_db.json │ │ ├── expected_abbreviate.yaml │ │ ├── expected_abc.data.yaml │ │ └── expected_abc.yaml └── utils.py ├── packagedb ├── __init__.py ├── api.py ├── api_custom.py ├── filters.py ├── from_purl.py ├── management │ └── commands │ │ ├── __init__.py │ │ ├── create_source_repo_packages.py │ │ ├── fix_purl_values.py │ │ ├── get_source_download_url.py │ │ ├── run_scheduler.py │ │ ├── subscribe_package.py │ │ └── watch_packages.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160707_1018.py │ ├── 0003_auto_20160708_1513.py │ ├── 0004_auto_20160713_0022.py │ ├── 0005_auto_20170217_0309.py │ ├── 0006_package_mining_level.py │ ├── 0007_auto_20180713_0144.py │ ├── 0008_package_package_url.py │ ├── 0009_auto_20180918_1225.py │ ├── 0010_auto_20180919_1740.py │ ├── 0011_auto_20180921_1129.py │ ├── 0012_auto_20181001_1120.py │ ├── 0013_auto_20181001_1209.py │ ├── 0014_remove_package_package_url.py │ ├── 0015_remove_package_download_checksums.py │ ├── 0016_auto_20181023_1211.py │ ├── 0017_auto_20181023_1211.py │ ├── 0018_auto_20181023_1212.py │ ├── 0019_auto_20181023_1212.py │ ├── 0020_package_download_sha256.py │ ├── 0021_package_download_sha512.py │ ├── 0022_package_manifest_path.py │ ├── 0023_package_source_packages.py │ ├── 0024_auto_20181030_1817.py │ ├── 0025_auto_20181030_1817.py │ ├── 0026_auto_20181030_1824.py │ ├── 0027_auto_20181030_1825.py │ ├── 0028_auto_20181127_0224.py │ ├── 0029_auto_20181127_0246.py │ ├── 0030_auto_20190107_1616.py │ ├── 0031_auto_20190110_2354.py │ ├── 0032_auto_20190125_0019.py │ ├── 0033_auto_20190128_2056.py │ ├── 0034_auto_20200407_2232.py │ ├── 0035_auto_20200408_2126.py │ ├── 0036_auto_20200416_2131.py │ ├── 0037_auto_20200423_1242.py │ ├── 0038_add_index_for_filter_fields.py │ ├── 0039_packageurl_python_field_updates.py │ ├── 0040_add_root_path.py │ ├── 0041_update_ordering_to_id.py │ ├── 0042_update_fields_to_django3_standards.py │ ├── 0043_lowercase_purl_fields.py │ ├── 0044_add_history_field.py │ ├── 0045_relax_license_expression_max_length_for_resources.py │ ├── 0046_add_extra_data_to_package.py │ ├── 0047_add_search_vector_field_to_package.py │ ├── 0048_add_gin_index_to_search_vector_field.py │ ├── 0049_alter_resource_extra_data.py │ ├── 0050_alter_resource_extra_data.py │ ├── 0051_package_api_data_url_package_datasource_id_and_more.py │ ├── 0052_package_index_error_package_last_indexed_date.py │ ├── 0053_packagerelation.py │ ├── 0054_alter_package_unique_together.py │ ├── 0055_remove_resource_copyright_and_more.py │ ├── 0056_rename_requirement_dependentpackage_extracted_requirement.py │ ├── 0057_alter_package_version.py │ ├── 0058_package_licenses_field_update.py │ ├── 0059_compute_package_license_data.py │ ├── 0060_remove_package_contains_source_code_and_more.py │ ├── 0061_add_new_scan_fields.py │ ├── 0062_compute_resource_license_data.py │ ├── 0063_remove_resource_license_expressions_and_more.py │ ├── 0064_package_package_content_package_package_set.py │ ├── 0065_set_package_content_field.py │ ├── 0066_package_summary_alter_package_package_content.py │ ├── 0067_alter_resource_md5_alter_resource_sha1_and_more.py │ ├── 0068_alter_resource_options.py │ ├── 0069_packageset_package_package_sets.py │ ├── 0070_auto_20230706_0045.py │ ├── 0071_remove_package_package_set.py │ ├── 0072_package_created_date.py │ ├── 0073_package_history_json.py │ ├── 0074_populate_history_json.py │ ├── 0075_remove_package_history.py │ ├── 0076_rename_history_json_package_history.py │ ├── 0077_remove_package_declared_license_expression_spdx_and_more.py │ ├── 0078_alter_package_release_date.py │ ├── 0079_alter_package_name_alter_package_namespace_and_more.py │ ├── 0080_remove_package_packagedb_p_search__8d33bb_gin_and_more.py │ ├── 0081_apiuser.py │ ├── 0082_packagewatch.py │ ├── 0083_delete_apiuser.py │ ├── 0084_alter_resource_file_type_alter_resource_mime_type_and_more.py │ ├── 0085_alter_packagerelation_relationship.py │ ├── 0086_alter_party_name.py │ ├── 0087_rename_discovered_dependency_attribute.py │ ├── 0088_alter_package_md5_alter_package_sha1_and_more.py │ ├── 0089_packageactivity.py │ ├── 0090_alter_packageactivity_uuid.py │ ├── 0091_package_is_duplicate.py │ ├── 0092_alter_party_email_alter_party_name.py │ ├── 0093_update_pypi_package_content.py │ ├── 0094_package_packagedb_p_package_d39839_idx.py │ └── __init__.py ├── models.py ├── package_managers.py ├── schedules.py ├── serializers.py ├── tasks.py ├── templates │ ├── rest_framework │ │ └── api.html │ └── robots.txt ├── tests │ ├── __init__.py │ ├── test_api.py │ ├── test_filters.py │ ├── test_migrations.py │ ├── test_models.py │ ├── test_package_managers.py │ ├── test_schedules.py │ ├── test_tasks.py │ ├── test_throttling.py │ ├── test_views.py │ └── testfiles │ │ ├── ant-commons-logging-1.6.1.jar │ │ ├── api │ │ ├── elasticsearch-scripting-painless-spi-6.8.15.json │ │ ├── enhanced_package.json │ │ ├── package-filter_by_checksums-enhanced-package-data-expected.json │ │ ├── package-filter_by_checksums-expected.json │ │ ├── resource-filter_by_checksums-expected.json │ │ └── twill-core-0.12.0.json │ │ ├── index │ │ ├── spring-boot-1.3.0.RELEASE.jar │ │ ├── spring-boot-1.3.1.RELEASE.jar │ │ ├── spring-boot-1.3.2.RELEASE.jar │ │ ├── spring-boot-1.3.3.RELEASE.jar │ │ ├── spring-boot-1.3.4.RELEASE.jar │ │ ├── spring-boot-1.3.5.RELEASE.jar │ │ ├── spring-boot-1.3.6.RELEASE.jar │ │ ├── spring-boot-1.3.7.RELEASE.jar │ │ └── spring-boot-1.3.8.RELEASE.jar │ │ ├── match_jars │ │ ├── ant-commons-logging-1.6.1.jar │ │ └── spring-boot-1.3.8.RELEASE.jar │ │ └── package_manager_data │ │ ├── composer.json │ │ ├── gem.json │ │ ├── maven-metadata.xml │ │ ├── nuget-data.json │ │ ├── nuget_index.json │ │ └── pypi.json ├── throttling.py └── to_purl.py ├── purl2vcs ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.rst ├── NOTICE ├── README.rst ├── apache-2.0.LICENSE ├── pyproject.toml ├── src │ └── purl2vcs │ │ ├── __init__.py │ │ └── find_source_repo.py └── tests │ ├── test_find_source_repo.py │ └── testfiles │ └── find_source_repo │ ├── tags_commits.txt │ └── tags_commits_list.txt ├── purldb-toolkit └── README.rst ├── purldb_project ├── __init__.py ├── settings.py ├── static │ └── .keep ├── urls.py └── wsgi.py ├── purldb_public_project ├── __init__.py ├── settings.py ├── static │ └── .keep ├── urls.py └── wsgi.py ├── pyproject-minecode_pipelines.toml ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── traefik.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.github/workflows/publish-docker.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release-minecode-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.github/workflows/pypi-release-minecode-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.github/workflows/pypi-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/Dockerfile -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/README.rst -------------------------------------------------------------------------------- /apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/apache-2.0.LICENSE -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cc-by-sa-4.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/cc-by-sa-4.0.LICENSE -------------------------------------------------------------------------------- /clearcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearcode/cdutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/cdutils.py -------------------------------------------------------------------------------- /clearcode/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/load.py -------------------------------------------------------------------------------- /clearcode/management/commands/clearload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/management/commands/clearload.py -------------------------------------------------------------------------------- /clearcode/management/commands/clearsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/management/commands/clearsync.py -------------------------------------------------------------------------------- /clearcode/management/commands/store_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/management/commands/store_scans.py -------------------------------------------------------------------------------- /clearcode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/migrations/0001_initial.py -------------------------------------------------------------------------------- /clearcode/migrations/0002_auto_20200331_1052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/migrations/0002_auto_20200331_1052.py -------------------------------------------------------------------------------- /clearcode/migrations/0003_cditem_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/migrations/0003_cditem_uuid.py -------------------------------------------------------------------------------- /clearcode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearcode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/models.py -------------------------------------------------------------------------------- /clearcode/store_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/store_scans.py -------------------------------------------------------------------------------- /clearcode/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/sync.py -------------------------------------------------------------------------------- /clearcode/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearcode/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/tests/test_models.py -------------------------------------------------------------------------------- /clearcode/tests/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearcode/tests/test_sync.py -------------------------------------------------------------------------------- /clearindex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearindex/harvest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearindex/harvest.py -------------------------------------------------------------------------------- /clearindex/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearindex/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clearindex/management/commands/run_clearindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearindex/management/commands/run_clearindex.py -------------------------------------------------------------------------------- /clearindex/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/clearindex/utils.py -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/configure -------------------------------------------------------------------------------- /docker-compose.common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker-compose.common.yml -------------------------------------------------------------------------------- /docker-compose.matchcodeio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker-compose.matchcodeio.yml -------------------------------------------------------------------------------- /docker-compose.miners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker-compose.miners.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_matchcodeio.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker_matchcodeio.env -------------------------------------------------------------------------------- /docker_purldb.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docker_purldb.env -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/documents/ClearCode Introduction-June 2020.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/documents/ClearCode Introduction-June 2020.odp -------------------------------------------------------------------------------- /docs/documents/ClearCode Introduction-June 2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/documents/ClearCode Introduction-June 2020.pdf -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/funding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/funding.rst -------------------------------------------------------------------------------- /docs/source/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/getting-started/index.rst -------------------------------------------------------------------------------- /docs/source/getting-started/install-with-scio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/getting-started/install-with-scio.rst -------------------------------------------------------------------------------- /docs/source/getting-started/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/getting-started/install.rst -------------------------------------------------------------------------------- /docs/source/getting-started/tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/getting-started/tasks.rst -------------------------------------------------------------------------------- /docs/source/getting-started/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/getting-started/usage.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/deploy_to_devel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/deploy_to_devel.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/images/purl_watch_api_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/images/purl_watch_api_web.png -------------------------------------------------------------------------------- /docs/source/how-to-guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/index.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/installation.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/matchcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/matchcode.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/purl_watch_how_to.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/purl_watch_how_to.rst -------------------------------------------------------------------------------- /docs/source/how-to-guides/symbols_and_strings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/how-to-guides/symbols_and_strings.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/matchcode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/matchcode/index.rst -------------------------------------------------------------------------------- /docs/source/matchcode/matchcode-pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/matchcode/matchcode-pipeline.rst -------------------------------------------------------------------------------- /docs/source/purldb/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/purldb/index.rst -------------------------------------------------------------------------------- /docs/source/purldb/purl_watch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/purldb/purl_watch.rst -------------------------------------------------------------------------------- /docs/source/purldb/rest_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/purldb/rest_api.rst -------------------------------------------------------------------------------- /docs/source/purldb/symbol_and_string_collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/purldb/symbol_and_string_collection.rst -------------------------------------------------------------------------------- /docs/source/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/docs/source/testing.rst -------------------------------------------------------------------------------- /etc/ci/azure-container-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/azure-container-deb.yml -------------------------------------------------------------------------------- /etc/ci/azure-container-rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/azure-container-rpm.yml -------------------------------------------------------------------------------- /etc/ci/azure-posix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/azure-posix.yml -------------------------------------------------------------------------------- /etc/ci/azure-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/azure-win.yml -------------------------------------------------------------------------------- /etc/ci/install_sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/install_sudo.sh -------------------------------------------------------------------------------- /etc/ci/macports-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/macports-ci -------------------------------------------------------------------------------- /etc/ci/macports-ci.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/macports-ci.ABOUT -------------------------------------------------------------------------------- /etc/ci/mit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/ci/mit.LICENSE -------------------------------------------------------------------------------- /etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /etc/nginx/examples/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/nginx/examples/ssl.conf -------------------------------------------------------------------------------- /etc/nginx/matchcodeio-conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/nginx/matchcodeio-conf.d/default.conf -------------------------------------------------------------------------------- /etc/scripts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/README.rst -------------------------------------------------------------------------------- /etc/scripts/check_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/check_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/clearcode-api-backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/clearcode-api-backup.py -------------------------------------------------------------------------------- /etc/scripts/clearcode-api-import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/clearcode-api-import.py -------------------------------------------------------------------------------- /etc/scripts/fetch_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/fetch_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/gen_pypi_simple.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/gen_pypi_simple.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/gen_pypi_simple.py.NOTICE -------------------------------------------------------------------------------- /etc/scripts/gen_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/gen_requirements.py -------------------------------------------------------------------------------- /etc/scripts/gen_requirements_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/gen_requirements_dev.py -------------------------------------------------------------------------------- /etc/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/requirements.txt -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/test_utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/test_utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/update_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/update_skeleton.py -------------------------------------------------------------------------------- /etc/scripts/utils_dejacode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_dejacode.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_requirements.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/etc/scripts/utils_thirdparty.py.ABOUT -------------------------------------------------------------------------------- /manage_matchcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/manage_matchcode.py -------------------------------------------------------------------------------- /manage_purldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/manage_purldb.py -------------------------------------------------------------------------------- /matchcode-toolkit/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode-toolkit/README.rst -------------------------------------------------------------------------------- /matchcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/api.py -------------------------------------------------------------------------------- /matchcode/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/match.py -------------------------------------------------------------------------------- /matchcode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/migrations/0001_initial.py -------------------------------------------------------------------------------- /matchcode/migrations/0003_snippetindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/migrations/0003_snippetindex.py -------------------------------------------------------------------------------- /matchcode/migrations/0005_stemmedsnippetindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/migrations/0005_stemmedsnippetindex.py -------------------------------------------------------------------------------- /matchcode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/models.py -------------------------------------------------------------------------------- /matchcode/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/__init__.py -------------------------------------------------------------------------------- /matchcode/tests/test_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/test_match.py -------------------------------------------------------------------------------- /matchcode/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/test_models.py -------------------------------------------------------------------------------- /matchcode/tests/testfiles/api/scan2_match_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/testfiles/api/scan2_match_results.json -------------------------------------------------------------------------------- /matchcode/tests/testfiles/match/nested/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/testfiles/match/nested/nested.json -------------------------------------------------------------------------------- /matchcode/tests/testfiles/match/nested/underscore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/testfiles/match/nested/underscore.json -------------------------------------------------------------------------------- /matchcode/tests/testfiles/match/scan1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/testfiles/match/scan1.json -------------------------------------------------------------------------------- /matchcode/tests/testfiles/models/match-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/tests/testfiles/models/match-test.json -------------------------------------------------------------------------------- /matchcode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode/utils.py -------------------------------------------------------------------------------- /matchcode_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_pipeline/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/api.py -------------------------------------------------------------------------------- /matchcode_pipeline/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_pipeline/pipelines/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/pipelines/matching.py -------------------------------------------------------------------------------- /matchcode_pipeline/pipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_pipeline/pipes/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/pipes/matching.py -------------------------------------------------------------------------------- /matchcode_pipeline/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_pipeline/tests/data/d2d-javascript/to/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/tests/data/d2d-javascript/to/main.js -------------------------------------------------------------------------------- /matchcode_pipeline/tests/data/d2d/find_java_packages/Foo.java: -------------------------------------------------------------------------------- 1 | package org.apache.foo; 2 | 3 | class Foo {} -------------------------------------------------------------------------------- /matchcode_pipeline/tests/data/test-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/tests/data/test-out.json -------------------------------------------------------------------------------- /matchcode_pipeline/tests/pipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_pipeline/tests/pipes/test_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/tests/pipes/test_matching.py -------------------------------------------------------------------------------- /matchcode_pipeline/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_pipeline/tests/test_api.py -------------------------------------------------------------------------------- /matchcode_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /matchcode_project/dbrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_project/dbrouter.py -------------------------------------------------------------------------------- /matchcode_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_project/settings.py -------------------------------------------------------------------------------- /matchcode_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_project/urls.py -------------------------------------------------------------------------------- /matchcode_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/matchcode_project/wsgi.py -------------------------------------------------------------------------------- /minecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/__init__.py -------------------------------------------------------------------------------- /minecode/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/api.py -------------------------------------------------------------------------------- /minecode/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/apps.py -------------------------------------------------------------------------------- /minecode/collectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/__init__.py -------------------------------------------------------------------------------- /minecode/collectors/alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/alpine.py -------------------------------------------------------------------------------- /minecode/collectors/alpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/alpm.py -------------------------------------------------------------------------------- /minecode/collectors/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/bitbucket.py -------------------------------------------------------------------------------- /minecode/collectors/cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/cargo.py -------------------------------------------------------------------------------- /minecode/collectors/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/composer.py -------------------------------------------------------------------------------- /minecode/collectors/conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/conan.py -------------------------------------------------------------------------------- /minecode/collectors/conda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/conda.py -------------------------------------------------------------------------------- /minecode/collectors/cpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/cpan.py -------------------------------------------------------------------------------- /minecode/collectors/cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/cran.py -------------------------------------------------------------------------------- /minecode/collectors/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/debian.py -------------------------------------------------------------------------------- /minecode/collectors/dockerhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/dockerhub.py -------------------------------------------------------------------------------- /minecode/collectors/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/generic.py -------------------------------------------------------------------------------- /minecode/collectors/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/github.py -------------------------------------------------------------------------------- /minecode/collectors/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/gitlab.py -------------------------------------------------------------------------------- /minecode/collectors/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/gnu.py -------------------------------------------------------------------------------- /minecode/collectors/golang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/golang.py -------------------------------------------------------------------------------- /minecode/collectors/hackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/hackage.py -------------------------------------------------------------------------------- /minecode/collectors/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/hex.py -------------------------------------------------------------------------------- /minecode/collectors/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/huggingface.py -------------------------------------------------------------------------------- /minecode/collectors/luarocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/luarocks.py -------------------------------------------------------------------------------- /minecode/collectors/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/maven.py -------------------------------------------------------------------------------- /minecode/collectors/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/npm.py -------------------------------------------------------------------------------- /minecode/collectors/nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/nuget.py -------------------------------------------------------------------------------- /minecode/collectors/openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/openssl.py -------------------------------------------------------------------------------- /minecode/collectors/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/pub.py -------------------------------------------------------------------------------- /minecode/collectors/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/pypi.py -------------------------------------------------------------------------------- /minecode/collectors/rubygems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/rubygems.py -------------------------------------------------------------------------------- /minecode/collectors/swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/collectors/swift.py -------------------------------------------------------------------------------- /minecode/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/command.py -------------------------------------------------------------------------------- /minecode/debutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/debutils.py -------------------------------------------------------------------------------- /minecode/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/filter.py -------------------------------------------------------------------------------- /minecode/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/indexing.py -------------------------------------------------------------------------------- /minecode/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/ls.py -------------------------------------------------------------------------------- /minecode/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/__init__.py -------------------------------------------------------------------------------- /minecode/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/__init__.py -------------------------------------------------------------------------------- /minecode/management/commands/check_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/check_licenses.py -------------------------------------------------------------------------------- /minecode/management/commands/check_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/check_uri.py -------------------------------------------------------------------------------- /minecode/management/commands/create-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/create-user.py -------------------------------------------------------------------------------- /minecode/management/commands/defederate_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/defederate_packages.py -------------------------------------------------------------------------------- /minecode/management/commands/dump_purls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/dump_purls.py -------------------------------------------------------------------------------- /minecode/management/commands/federate_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/federate_packages.py -------------------------------------------------------------------------------- /minecode/management/commands/get_maven_release_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/get_maven_release_dates.py -------------------------------------------------------------------------------- /minecode/management/commands/get_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/get_status.py -------------------------------------------------------------------------------- /minecode/management/commands/import_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/import_queue.py -------------------------------------------------------------------------------- /minecode/management/commands/load_priority_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/load_priority_queue.py -------------------------------------------------------------------------------- /minecode/management/commands/make_scannableuris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/make_scannableuris.py -------------------------------------------------------------------------------- /minecode/management/commands/manage_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/manage_scans.py -------------------------------------------------------------------------------- /minecode/management/commands/maven_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/maven_crawler.py -------------------------------------------------------------------------------- /minecode/management/commands/priority_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/priority_queue.py -------------------------------------------------------------------------------- /minecode/management/commands/remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/remap.py -------------------------------------------------------------------------------- /minecode/management/commands/run_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/run_map.py -------------------------------------------------------------------------------- /minecode/management/commands/run_visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/run_visit.py -------------------------------------------------------------------------------- /minecode/management/commands/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/commands/seed.py -------------------------------------------------------------------------------- /minecode/management/user_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/management/user_creation.py -------------------------------------------------------------------------------- /minecode/mappings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/__init__.py -------------------------------------------------------------------------------- /minecode/mappings/gcode_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/gcode_keywords.py -------------------------------------------------------------------------------- /minecode/mappings/gcode_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/gcode_licenses.py -------------------------------------------------------------------------------- /minecode/mappings/gcode_programming_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/gcode_programming_languages.py -------------------------------------------------------------------------------- /minecode/mappings/pypi_trove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/pypi_trove.py -------------------------------------------------------------------------------- /minecode/mappings/sfnet_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/sfnet_licenses.py -------------------------------------------------------------------------------- /minecode/mappings/sfnet_programming_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/mappings/sfnet_programming_languages.py -------------------------------------------------------------------------------- /minecode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0001_initial.py -------------------------------------------------------------------------------- /minecode/migrations/0002_auto_20160707_1249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0002_auto_20160707_1249.py -------------------------------------------------------------------------------- /minecode/migrations/0003_auto_20160712_1223.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0003_auto_20160712_1223.py -------------------------------------------------------------------------------- /minecode/migrations/0004_auto_20160713_1731.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0004_auto_20160713_1731.py -------------------------------------------------------------------------------- /minecode/migrations/0005_resourceuri_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0005_resourceuri_metadata.py -------------------------------------------------------------------------------- /minecode/migrations/0006_remove_resourceuri_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0006_remove_resourceuri_metadata.py -------------------------------------------------------------------------------- /minecode/migrations/0009_resourceuri_source_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0009_resourceuri_source_uri.py -------------------------------------------------------------------------------- /minecode/migrations/0010_resourceuri_mining_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0010_resourceuri_mining_level.py -------------------------------------------------------------------------------- /minecode/migrations/0011_auto_20170807_0253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0011_auto_20170807_0253.py -------------------------------------------------------------------------------- /minecode/migrations/0012_auto_20170807_0444.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0012_auto_20170807_0444.py -------------------------------------------------------------------------------- /minecode/migrations/0013_auto_20170807_0511.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0013_auto_20170807_0511.py -------------------------------------------------------------------------------- /minecode/migrations/0014_auto_20170807_0529.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0014_auto_20170807_0529.py -------------------------------------------------------------------------------- /minecode/migrations/0015_auto_20180607_0851.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0015_auto_20180607_0851.py -------------------------------------------------------------------------------- /minecode/migrations/0016_remove_resourceuri_sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0016_remove_resourceuri_sig.py -------------------------------------------------------------------------------- /minecode/migrations/0017_auto_20180619_2236.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0017_auto_20180619_2236.py -------------------------------------------------------------------------------- /minecode/migrations/0018_scannableuri_package_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0018_scannableuri_package_id.py -------------------------------------------------------------------------------- /minecode/migrations/0019_auto_20180716_1648.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0019_auto_20180716_1648.py -------------------------------------------------------------------------------- /minecode/migrations/0020_resourceuri_package_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0020_resourceuri_package_url.py -------------------------------------------------------------------------------- /minecode/migrations/0021_auto_20181026_1635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0021_auto_20181026_1635.py -------------------------------------------------------------------------------- /minecode/migrations/0022_auto_20190307_2332.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0022_auto_20190307_2332.py -------------------------------------------------------------------------------- /minecode/migrations/0025_populate_has_error_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0025_populate_has_error_fields.py -------------------------------------------------------------------------------- /minecode/migrations/0028_priorityresourceuri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0028_priorityresourceuri.py -------------------------------------------------------------------------------- /minecode/migrations/0031_importableuri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0031_importableuri.py -------------------------------------------------------------------------------- /minecode/migrations/0033_scannableuri_populate_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0033_scannableuri_populate_uuid.py -------------------------------------------------------------------------------- /minecode/migrations/0037_processingerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/migrations/0037_processingerror.py -------------------------------------------------------------------------------- /minecode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/miners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/__init__.py -------------------------------------------------------------------------------- /minecode/miners/alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/alpine.py -------------------------------------------------------------------------------- /minecode/miners/alpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/alpm.py -------------------------------------------------------------------------------- /minecode/miners/apache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/apache.py -------------------------------------------------------------------------------- /minecode/miners/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/bitbucket.py -------------------------------------------------------------------------------- /minecode/miners/bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/bower.py -------------------------------------------------------------------------------- /minecode/miners/cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/cargo.py -------------------------------------------------------------------------------- /minecode/miners/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/composer.py -------------------------------------------------------------------------------- /minecode/miners/conda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/conda.py -------------------------------------------------------------------------------- /minecode/miners/cpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/cpan.py -------------------------------------------------------------------------------- /minecode/miners/cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/cran.py -------------------------------------------------------------------------------- /minecode/miners/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/debian.py -------------------------------------------------------------------------------- /minecode/miners/dockerhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/dockerhub.py -------------------------------------------------------------------------------- /minecode/miners/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/eclipse.py -------------------------------------------------------------------------------- /minecode/miners/fdroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/fdroid.py -------------------------------------------------------------------------------- /minecode/miners/fedora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/fedora.py -------------------------------------------------------------------------------- /minecode/miners/freebsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/freebsd.py -------------------------------------------------------------------------------- /minecode/miners/freedesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/freedesktop.py -------------------------------------------------------------------------------- /minecode/miners/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/github.py -------------------------------------------------------------------------------- /minecode/miners/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/gitlab.py -------------------------------------------------------------------------------- /minecode/miners/golang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/golang.py -------------------------------------------------------------------------------- /minecode/miners/googlecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/googlecode.py -------------------------------------------------------------------------------- /minecode/miners/gstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/gstreamer.py -------------------------------------------------------------------------------- /minecode/miners/haxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/haxe.py -------------------------------------------------------------------------------- /minecode/miners/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/hex.py -------------------------------------------------------------------------------- /minecode/miners/java_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/java_stream.py -------------------------------------------------------------------------------- /minecode/miners/java_stream.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/java_stream.py.ABOUT -------------------------------------------------------------------------------- /minecode/miners/java_stream.py.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/java_stream.py.LICENSE -------------------------------------------------------------------------------- /minecode/miners/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/maven.py -------------------------------------------------------------------------------- /minecode/miners/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/npm.py -------------------------------------------------------------------------------- /minecode/miners/nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/nuget.py -------------------------------------------------------------------------------- /minecode/miners/openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/openssl.py -------------------------------------------------------------------------------- /minecode/miners/openwrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/openwrt.py -------------------------------------------------------------------------------- /minecode/miners/packagist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/packagist.py -------------------------------------------------------------------------------- /minecode/miners/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/pub.py -------------------------------------------------------------------------------- /minecode/miners/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/pypi.py -------------------------------------------------------------------------------- /minecode/miners/repodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/repodata.py -------------------------------------------------------------------------------- /minecode/miners/repodata_rpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/repodata_rpms.py -------------------------------------------------------------------------------- /minecode/miners/repomd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/repomd.py -------------------------------------------------------------------------------- /minecode/miners/rubygems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/rubygems.py -------------------------------------------------------------------------------- /minecode/miners/sourceforge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/sourceforge.py -------------------------------------------------------------------------------- /minecode/miners/ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/miners/ubuntu.py -------------------------------------------------------------------------------- /minecode/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/model_utils.py -------------------------------------------------------------------------------- /minecode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/models.py -------------------------------------------------------------------------------- /minecode/msys2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/msys2.py -------------------------------------------------------------------------------- /minecode/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/permissions.py -------------------------------------------------------------------------------- /minecode/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/route.py -------------------------------------------------------------------------------- /minecode/rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/rsync.py -------------------------------------------------------------------------------- /minecode/saneyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/saneyaml.py -------------------------------------------------------------------------------- /minecode/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/seed.py -------------------------------------------------------------------------------- /minecode/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tasks.py -------------------------------------------------------------------------------- /minecode/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/__init__.py -------------------------------------------------------------------------------- /minecode/tests/collectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/__init__.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_alpine.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_alpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_alpm.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_bitbucket.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_cargo.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_composer.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_conan.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_conda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_conda.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_cpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_cpan.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_cran.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_generic.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_github.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_gitlab.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_gnu.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_golang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_golang.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_hackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_hackage.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_hex.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_huggingface.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_luarocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_luarocks.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_maven.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_npm.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_nuget.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_pub.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_pypi.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_rubygems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_rubygems.py -------------------------------------------------------------------------------- /minecode/tests/collectors/test_swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/collectors/test_swift.py -------------------------------------------------------------------------------- /minecode/tests/miners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/__init__.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_alpine.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_apache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_apache.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_bitbucket.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_bower.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_cargo.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_conda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_conda.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_cpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_cpan.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_cran.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_debian.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_dockerhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_dockerhub.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_eclipse.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_fdroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_fdroid.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_freebsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_freebsd.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_freedesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_freedesktop.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_github.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_gitlab.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_golang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_golang.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_googlecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_googlecode.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_gstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_gstreamer.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_haxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_haxe.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_maven.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_npm.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_nuget.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_openssl.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_openwrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_openwrt.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_packagist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_packagist.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_pypi.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_repodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_repodata.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_repodata_rpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_repodata_rpms.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_repomd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_repomd_parser.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_rubygems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_rubygems.py -------------------------------------------------------------------------------- /minecode/tests/miners/test_sourceforge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/miners/test_sourceforge.py -------------------------------------------------------------------------------- /minecode/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_api.py -------------------------------------------------------------------------------- /minecode/tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_command.py -------------------------------------------------------------------------------- /minecode/tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_filter.py -------------------------------------------------------------------------------- /minecode/tests/test_housekeeping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_housekeeping.py -------------------------------------------------------------------------------- /minecode/tests/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_indexing.py -------------------------------------------------------------------------------- /minecode/tests/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_ls.py -------------------------------------------------------------------------------- /minecode/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_migrations.py -------------------------------------------------------------------------------- /minecode/tests/test_model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_model_utils.py -------------------------------------------------------------------------------- /minecode/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_models.py -------------------------------------------------------------------------------- /minecode/tests/test_priority_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_priority_queue.py -------------------------------------------------------------------------------- /minecode/tests/test_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_route.py -------------------------------------------------------------------------------- /minecode/tests/test_rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_rsync.py -------------------------------------------------------------------------------- /minecode/tests/test_run_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_run_map.py -------------------------------------------------------------------------------- /minecode/tests/test_run_visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_run_visit.py -------------------------------------------------------------------------------- /minecode/tests/test_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_seed.py -------------------------------------------------------------------------------- /minecode/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_tasks.py -------------------------------------------------------------------------------- /minecode/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_utils.py -------------------------------------------------------------------------------- /minecode/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/test_version.py -------------------------------------------------------------------------------- /minecode/tests/testfiles/alpm/bemenu-ncurses/.BUILDINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/alpm/bemenu-ncurses/.BUILDINFO -------------------------------------------------------------------------------- /minecode/tests/testfiles/alpm/bemenu-ncurses/.PKGINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/alpm/bemenu-ncurses/.PKGINFO -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/ant-dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/ant-dotnet.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/ant-dotnet_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/ant-dotnet_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/apache-abdera-1.1.3-src.zip.md5: -------------------------------------------------------------------------------- 1 | 0b5f2c334916c289f06c03f8577a9879 -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/apache-groovy-docs-2.4.6.zip.md5: -------------------------------------------------------------------------------- 1 | c7a2d3becea1d28b518528f8204b8d2a apache-groovy-docs-2.4.6.zip 2 | 3 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/attic-mrunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/attic-mrunit.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/felix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/felix.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/felix_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/felix_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/find-ls.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/find-ls.gz -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/map-groovy_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/map-groovy_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/metamodel.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/metamodel_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/metamodel_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/podling_amaterasu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/podling_amaterasu.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/podlings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/podlings.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/podlings_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/podlings_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/projects.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/apache/projects_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/apache/projects_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bitbucket/map/downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bitbucket/map/downloads.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bitbucket/map/repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bitbucket/map/repository.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bitbucket/map/tweakmsg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bitbucket/map/tweakmsg.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bitbucket/visit/singlerepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bitbucket/visit/singlerepo.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bower/28msec_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bower/28msec_bower.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bower/example1_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bower/example1_bower.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bower/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/bower/packages.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/bower/packages_expected_uris.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /minecode/tests/testfiles/cargo/expected-sam-0.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cargo/expected-sam-0.3.1.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cargo/expected-sam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cargo/expected-sam.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cargo/sam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cargo/sam.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/command/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/command/foo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/command/foo/.gitignore -------------------------------------------------------------------------------- /minecode/tests/testfiles/composer/laravel-laravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/composer/laravel-laravel.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/conan/zlib/manifest.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/conan/zlib/manifest.ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/conan/zlib/manifest.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/conan/zlib/manifest.LICENSE -------------------------------------------------------------------------------- /minecode/tests/testfiles/conan/zlib/manifest/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/conan/zlib/manifest/config.yml -------------------------------------------------------------------------------- /minecode/tests/testfiles/conda/repodata.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/conda/repodata.json.bz2 -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/Mojolicious-9.22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/Mojolicious-9.22.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/expected_html_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/expected_html_files.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/expected_html_modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/expected_html_modules.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/expected_readme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/expected_readme.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/modules.index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/q.search.cpan.org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/q.search.cpan.org.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/release_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/release_search.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/search_email_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/search_email_a.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cpan/variable-2009110702.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cpan/variable-2009110702.meta -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/CRAN_Package_ANN2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/CRAN_Package_ANN2.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/CRAN_Package_abe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/CRAN_Package_abe.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/CRAN_Packages_By_Date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/CRAN_Packages_By_Date.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/dplyr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/dplyr.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/mapper_ANN2_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/mapper_ANN2_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/cran/mapper_abe_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/cran/mapper_abe_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/debian_lslrs_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/debian_lslrs_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/debutils/control_basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/debutils/control_basic -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/debutils/control_invalid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/debutils/control_invalid -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/dsc/7kaa_2.14.3-1.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/dsc/7kaa_2.14.3-1.dsc -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/dsc/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/dsc/description.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/dsc/invalid.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/dsc/invalid.dsc -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/invalid_files/ls-lR.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/invalid_files/ls-lR.gz -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/lslr/ls-lR_debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/lslr/ls-lR_debian -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/lslr/ls-lR_ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/lslr/ls-lR_ubuntu -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/packages/debian_Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/packages/debian_Packages -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/packages/ubuntu_Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/packages/ubuntu_Packages -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/release/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/release/Release -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/release/Release_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/release/Release_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/release/Release_with_md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/release/Release_with_md5 -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/release/visited_Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/release/visited_Release -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/sources/Sources.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/sources/Sources.gz -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/sources/debian_Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/sources/debian_Sources -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/sources/ubuntu_Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/sources/ubuntu_Sources -------------------------------------------------------------------------------- /minecode/tests/testfiles/debian/status/simple_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/debian/status/simple_status -------------------------------------------------------------------------------- /minecode/tests/testfiles/directories/find-ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/directories/find-ls -------------------------------------------------------------------------------- /minecode/tests/testfiles/directories/ls-lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/directories/ls-lr -------------------------------------------------------------------------------- /minecode/tests/testfiles/directories/ls-lr-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/directories/ls-lr-expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/directories/ls-lr-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/directories/ls-lr-ubuntu -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/conditions_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/conditions_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/elixir.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/expected-nginx1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/expected-nginx1.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/expected-nginx2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/expected-nginx2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/library_elixir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/library_elixir.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/nginx.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/search.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/dockerhub/seeds_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/dockerhub/seeds_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/eclipse/Neon_R-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/eclipse/Neon_R-expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/eclipse/Neon_R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/eclipse/Neon_R.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/eclipse/acceleo_expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/eclipse/acceleo_expected.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/eclipse/birt-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/eclipse/birt-expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/eclipse/birt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/eclipse/birt.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/fdroid/index-v2-visited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/fdroid/index-v2-visited.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/fdroid/index-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/fdroid/index-v2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/filter_sf/tst_sfnet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/filter_sf/tst_sfnet.csv -------------------------------------------------------------------------------- /minecode/tests/testfiles/filter_sf/tst_sfnet2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/filter_sf/tst_sfnet2.csv -------------------------------------------------------------------------------- /minecode/tests/testfiles/freebsd/FreeBSD.org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freebsd/FreeBSD.org.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/freebsd/indexfile_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freebsd/indexfile_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/freebsd/mapper_input1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freebsd/mapper_input1 -------------------------------------------------------------------------------- /minecode/tests/testfiles/freebsd/packagesite.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freebsd/packagesite.txz -------------------------------------------------------------------------------- /minecode/tests/testfiles/freebsd/pkg-devel_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freebsd/pkg-devel_index -------------------------------------------------------------------------------- /minecode/tests/testfiles/freedesktop/Software.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freedesktop/Software.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/freedesktop/hal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freedesktop/hal.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/freedesktop/libinput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/freedesktop/libinput.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/github/calendar_builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/github/calendar_builder.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/github/repo_since0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/github/repo_since0.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/gitlab/expected_projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/gitlab/expected_projects.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/gitlab/projects_visitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/gitlab/projects_visitor.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/gnu/glibc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/gnu/glibc/index.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/client-go_0.127.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/client-go_0.127.0.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/gg-core_0.3.64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/gg-core_0.3.64.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/glog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/glog.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/glog_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/glog_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/godoc_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/godoc_search.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/math3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/math3.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/math3_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/math3_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/oauth2_0.29.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/oauth2_0.29.0.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/packages.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/winter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/winter.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/golang/winter_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/golang/winter_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/checkout2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/checkout2 -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/checkout3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/checkout3 -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/git.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/hg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/hg.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/redis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/redis.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/redis.html.expected: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/checkout/svn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/checkout/svn.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/downloads_list/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/downloads_list/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/downloads_list/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/feeds/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/feeds/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/feeds/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/feeds/feeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/feeds/feeds.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/gcode_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/gcode_urls.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/gcode_urls2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/gcode_urls2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/gpl3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/gpl3.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/lgpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/lgpl.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/mit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/mit.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/mpl11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/mpl11.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage/redis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/homepage/redis.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/homepage_eclipse_apache/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/people_list/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/people_list/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/people_list/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/base.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/basic.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/chinese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/chinese.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/japanese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/japanese.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/java.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/paginat1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/paginat1.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search/paginat2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/search/paginat2.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search_eclipse_apache/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search_eclipse_apache/nores_apext.html.expected: -------------------------------------------------------------------------------- 1 | None -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/search_eclipse_apache/project_page_eclipse.html.expected: -------------------------------------------------------------------------------- 1 | ([], []) -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/user/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/user/ABOUT -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/user/failing_empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/user/user1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/user/user1.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/user/user2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/user/user2.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/user/user3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/user/user3.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/googlecode/v2_api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/googlecode/v2_api/project.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/gstreamer/src_root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/gstreamer/src_root.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/haxe/all_haxelibs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/haxe/all_haxelibs.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/haxe/all_haxelibs.html-expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/haxe/all_haxelibs.html-expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/haxe/all_versions_openfl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/haxe/all_versions_openfl.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/haxe/openfl-8.5.1-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/haxe/openfl-8.5.1-package.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/haxe/project_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/haxe/project_package.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/housekeeping/bytejta-supports-0.5.0-ALPHA4.pom_search_expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/end2end/test_uris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/end2end/test_uris.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/end2end_unicode/expected_mapped_commons-jaxrs-1.22.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/html/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/html/app.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/index/expected_uris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/index/expected_uris.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/mapper/ant-1.6.5.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/mapper/ant-1.6.5.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/mapper/ant-1.6.5.pom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/mapper/ant-1.6.5.pom.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/mapper/axis-1.4.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/mapper/axis-1.4.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/mapper/xbean-jmx-2.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/mapper/xbean-jmx-2.0.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/pom/ant-antlr-1.10.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/pom/ant-antlr-1.10.1.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/pom/ant-parent-1.10.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/pom/ant-parent-1.10.1.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/pom/apache-18.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/pom/apache-18.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/pom/classworlds-1.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/pom/classworlds-1.1.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/maven/pom/pulsar-2.5.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/maven/pom/pulsar-2.5.1.pom -------------------------------------------------------------------------------- /minecode/tests/testfiles/model_utils/after_merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/model_utils/after_merge.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/model_utils/before_merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/model_utils/before_merge.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/0flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/0flux.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/0flux_npm_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/0flux_npm_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/1000_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/1000_records.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/2112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/2112.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/29_record_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/29_record_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/554_record_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/554_record_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/expected_1000_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/expected_1000_records.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/expected_over_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/expected_over_limit.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/expected_ticket_439.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/expected_ticket_439.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/expected_ticket_440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/expected_ticket_440.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/grunticon-sass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/grunticon-sass.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/jsonp-filter-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/jsonp-filter-expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/jsonp-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/jsonp-filter.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/mapper/index.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/mapper/index.expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/mapper/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/mapper/index.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/microdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/microdata.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/npm_2112_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/npm_2112_expected.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/over_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/over_limit.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/replicate_doc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/replicate_doc1.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/ticket_439.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/ticket_439.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/npm/ticket_440_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/npm/ticket_440_records.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/entityframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/entityframework.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/entityframework2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/entityframework2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/log4net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/log4net.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/nuget_page_json_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/nuget_page_json_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/nuget_query_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/nuget_query_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/packages.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/query.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/nuget/query_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/nuget/query_search.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/openssl/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openssl/Index.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/openssl/Indexof_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openssl/Indexof_source.html -------------------------------------------------------------------------------- /minecode/tests/testfiles/openssl/expected-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openssl/expected-content.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/openwrt/6to4_12-2_all.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openwrt/6to4_12-2_all.ipk -------------------------------------------------------------------------------- /minecode/tests/testfiles/openwrt/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openwrt/Packages.gz -------------------------------------------------------------------------------- /minecode/tests/testfiles/openwrt/Packages_gz_expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/openwrt/Packages_gz_expected -------------------------------------------------------------------------------- /minecode/tests/testfiles/packagist/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/packagist/list.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pub/flutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pub/flutter.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/boolean.py-2.0.dev3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/boolean.py-2.0.dev3.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/boolean.py.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/boolean.py.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/cage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/cage.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/cage_1.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/cage_1.1.2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/cage_1.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/cage_1.1.3.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/cage_1.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/cage_1.1.4.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected-CAGE-1.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected-CAGE-1.1.2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected-CAGE-1.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected-CAGE-1.1.3.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected-lxml-3.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected-lxml-3.2.0.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected_uri_visitor1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected_uri_visitor1.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected_uri_visitor2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected_uri_visitor2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/expected_uris-cage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/expected_uris-cage.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/lxml-3.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/lxml-3.2.0.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/pypi/map/3to2-1.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/pypi/map/3to2-1.1.1.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_dev.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rsync/rsync_dev.dir -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_dir/bar/that/baz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_dir/bar/this: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_dir/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rsync/rsync_modules -------------------------------------------------------------------------------- /minecode/tests/testfiles/rsync/rsync_wicket.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rsync/rsync_wicket.dir -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/0mq-0.4.1.gem.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/0mq-0.4.1.gem.metadata -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/a_okay-0.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/a_okay-0.1.0.gem -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/apiv1/zuck.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/apiv1/zuck.api.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/apiv2/rails-8.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/apiv2/rails-8.0.2.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/blankslate-3.1.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/blankslate-3.1.3.gem -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/gemspec/arel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/gemspec/arel.gemspec -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/m2r-2.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/m2r-2.1.0.gem -------------------------------------------------------------------------------- /minecode/tests/testfiles/rubygems/small-0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/rubygems/small-0.2.gem -------------------------------------------------------------------------------- /minecode/tests/testfiles/scancodeio/get_scan_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/scancodeio/get_scan_data.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/scancodeio/get_scan_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/scancodeio/get_scan_info.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/filezilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/filezilla.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/monoql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/monoql.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/netwiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/netwiki.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/niftyphp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/niftyphp.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/odanur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/odanur.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/openstunts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/openstunts.json -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/sitemap-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/sitemap-1.xml -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/sitemap-6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/sitemap-6.xml -------------------------------------------------------------------------------- /minecode/tests/testfiles/sourceforge/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/sourceforge/sitemap.xml -------------------------------------------------------------------------------- /minecode/tests/testfiles/swift/swift-ui-coordinator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/tests/testfiles/swift/swift-ui-coordinator.json -------------------------------------------------------------------------------- /minecode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/utils.py -------------------------------------------------------------------------------- /minecode/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/utils_test.py -------------------------------------------------------------------------------- /minecode/utils_test.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/utils_test.py.ABOUT -------------------------------------------------------------------------------- /minecode/utils_test.py.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/utils_test.py.LICENSE -------------------------------------------------------------------------------- /minecode/utils_test.py.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/utils_test.py.NOTICE -------------------------------------------------------------------------------- /minecode/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode/version.py -------------------------------------------------------------------------------- /minecode_pipelines/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/README.rst -------------------------------------------------------------------------------- /minecode_pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/miners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/miners/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/miners/cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/miners/cran.py -------------------------------------------------------------------------------- /minecode_pipelines/miners/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/miners/pypi.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_alpine.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_cargo.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_composer.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_conan.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_cran.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_debian.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_maven.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_nuget.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_pypi.py -------------------------------------------------------------------------------- /minecode_pipelines/pipelines/mine_swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipelines/mine_swift.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/alpine.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/cargo.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/composer.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/conan.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/cran.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/debian.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/java_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/java_stream.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/java_stream.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/java_stream.py.ABOUT -------------------------------------------------------------------------------- /minecode_pipelines/pipes/java_stream.py.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/java_stream.py.LICENSE -------------------------------------------------------------------------------- /minecode_pipelines/pipes/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/ls.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/maven.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/nuget.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/pypi.py -------------------------------------------------------------------------------- /minecode_pipelines/pipes/swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/pipes/swift.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/alpine/APKINDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/alpine/APKINDEX -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/directories/find-ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/directories/find-ls -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/directories/ls-lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/directories/ls-lr -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/directories/ls-lr-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/directories/ls-lr-ubuntu -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/commits_tags1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/commits_tags1.txt -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/commits_tags2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/commits_tags2.txt -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/commits_tags3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/commits_tags3.txt -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/commits_tags4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/commits_tags4.txt -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/expected1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/expected1.yaml -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/expected2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/expected2.yaml -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/expected3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/data/swift/expected3.yaml -------------------------------------------------------------------------------- /minecode_pipelines/tests/data/swift/expected4.yaml: -------------------------------------------------------------------------------- 1 | - pkg:swift/github.com/0xacdc/XCFSodium@2ceb8e381b9ca5e2d3004d3206411191f38907b4 -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/__init__.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_alpine.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_cargo.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_composer.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_conan.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_cran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_cran.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_ls.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_maven.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_nuget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_nuget.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_pipes.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_pypi.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/pipes/test_swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/pipes/test_swift.py -------------------------------------------------------------------------------- /minecode_pipelines/tests/test_data/cargo/c5store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/test_data/cargo/c5store -------------------------------------------------------------------------------- /minecode_pipelines/tests/test_data/cran/cran_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/tests/test_data/cran/cran_db.json -------------------------------------------------------------------------------- /minecode_pipelines/tests/test_data/cran/expected_abbreviate.yaml: -------------------------------------------------------------------------------- 1 | - pkg:cran/abbreviate@0.1 -------------------------------------------------------------------------------- /minecode_pipelines/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/minecode_pipelines/utils.py -------------------------------------------------------------------------------- /packagedb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/__init__.py -------------------------------------------------------------------------------- /packagedb/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/api.py -------------------------------------------------------------------------------- /packagedb/api_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/api_custom.py -------------------------------------------------------------------------------- /packagedb/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/filters.py -------------------------------------------------------------------------------- /packagedb/from_purl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/from_purl.py -------------------------------------------------------------------------------- /packagedb/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packagedb/management/commands/fix_purl_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/management/commands/fix_purl_values.py -------------------------------------------------------------------------------- /packagedb/management/commands/get_source_download_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/management/commands/get_source_download_url.py -------------------------------------------------------------------------------- /packagedb/management/commands/run_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/management/commands/run_scheduler.py -------------------------------------------------------------------------------- /packagedb/management/commands/subscribe_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/management/commands/subscribe_package.py -------------------------------------------------------------------------------- /packagedb/management/commands/watch_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/management/commands/watch_packages.py -------------------------------------------------------------------------------- /packagedb/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0001_initial.py -------------------------------------------------------------------------------- /packagedb/migrations/0002_auto_20160707_1018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0002_auto_20160707_1018.py -------------------------------------------------------------------------------- /packagedb/migrations/0003_auto_20160708_1513.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0003_auto_20160708_1513.py -------------------------------------------------------------------------------- /packagedb/migrations/0004_auto_20160713_0022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0004_auto_20160713_0022.py -------------------------------------------------------------------------------- /packagedb/migrations/0005_auto_20170217_0309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0005_auto_20170217_0309.py -------------------------------------------------------------------------------- /packagedb/migrations/0006_package_mining_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0006_package_mining_level.py -------------------------------------------------------------------------------- /packagedb/migrations/0007_auto_20180713_0144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0007_auto_20180713_0144.py -------------------------------------------------------------------------------- /packagedb/migrations/0008_package_package_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0008_package_package_url.py -------------------------------------------------------------------------------- /packagedb/migrations/0009_auto_20180918_1225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0009_auto_20180918_1225.py -------------------------------------------------------------------------------- /packagedb/migrations/0010_auto_20180919_1740.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0010_auto_20180919_1740.py -------------------------------------------------------------------------------- /packagedb/migrations/0011_auto_20180921_1129.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0011_auto_20180921_1129.py -------------------------------------------------------------------------------- /packagedb/migrations/0012_auto_20181001_1120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0012_auto_20181001_1120.py -------------------------------------------------------------------------------- /packagedb/migrations/0013_auto_20181001_1209.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0013_auto_20181001_1209.py -------------------------------------------------------------------------------- /packagedb/migrations/0014_remove_package_package_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0014_remove_package_package_url.py -------------------------------------------------------------------------------- /packagedb/migrations/0016_auto_20181023_1211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0016_auto_20181023_1211.py -------------------------------------------------------------------------------- /packagedb/migrations/0017_auto_20181023_1211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0017_auto_20181023_1211.py -------------------------------------------------------------------------------- /packagedb/migrations/0018_auto_20181023_1212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0018_auto_20181023_1212.py -------------------------------------------------------------------------------- /packagedb/migrations/0019_auto_20181023_1212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0019_auto_20181023_1212.py -------------------------------------------------------------------------------- /packagedb/migrations/0020_package_download_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0020_package_download_sha256.py -------------------------------------------------------------------------------- /packagedb/migrations/0021_package_download_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0021_package_download_sha512.py -------------------------------------------------------------------------------- /packagedb/migrations/0022_package_manifest_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0022_package_manifest_path.py -------------------------------------------------------------------------------- /packagedb/migrations/0023_package_source_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0023_package_source_packages.py -------------------------------------------------------------------------------- /packagedb/migrations/0024_auto_20181030_1817.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0024_auto_20181030_1817.py -------------------------------------------------------------------------------- /packagedb/migrations/0025_auto_20181030_1817.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0025_auto_20181030_1817.py -------------------------------------------------------------------------------- /packagedb/migrations/0026_auto_20181030_1824.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0026_auto_20181030_1824.py -------------------------------------------------------------------------------- /packagedb/migrations/0027_auto_20181030_1825.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0027_auto_20181030_1825.py -------------------------------------------------------------------------------- /packagedb/migrations/0028_auto_20181127_0224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0028_auto_20181127_0224.py -------------------------------------------------------------------------------- /packagedb/migrations/0029_auto_20181127_0246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0029_auto_20181127_0246.py -------------------------------------------------------------------------------- /packagedb/migrations/0030_auto_20190107_1616.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0030_auto_20190107_1616.py -------------------------------------------------------------------------------- /packagedb/migrations/0031_auto_20190110_2354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0031_auto_20190110_2354.py -------------------------------------------------------------------------------- /packagedb/migrations/0032_auto_20190125_0019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0032_auto_20190125_0019.py -------------------------------------------------------------------------------- /packagedb/migrations/0033_auto_20190128_2056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0033_auto_20190128_2056.py -------------------------------------------------------------------------------- /packagedb/migrations/0034_auto_20200407_2232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0034_auto_20200407_2232.py -------------------------------------------------------------------------------- /packagedb/migrations/0035_auto_20200408_2126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0035_auto_20200408_2126.py -------------------------------------------------------------------------------- /packagedb/migrations/0036_auto_20200416_2131.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0036_auto_20200416_2131.py -------------------------------------------------------------------------------- /packagedb/migrations/0037_auto_20200423_1242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0037_auto_20200423_1242.py -------------------------------------------------------------------------------- /packagedb/migrations/0038_add_index_for_filter_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0038_add_index_for_filter_fields.py -------------------------------------------------------------------------------- /packagedb/migrations/0040_add_root_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0040_add_root_path.py -------------------------------------------------------------------------------- /packagedb/migrations/0041_update_ordering_to_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0041_update_ordering_to_id.py -------------------------------------------------------------------------------- /packagedb/migrations/0043_lowercase_purl_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0043_lowercase_purl_fields.py -------------------------------------------------------------------------------- /packagedb/migrations/0044_add_history_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0044_add_history_field.py -------------------------------------------------------------------------------- /packagedb/migrations/0046_add_extra_data_to_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0046_add_extra_data_to_package.py -------------------------------------------------------------------------------- /packagedb/migrations/0049_alter_resource_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0049_alter_resource_extra_data.py -------------------------------------------------------------------------------- /packagedb/migrations/0050_alter_resource_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0050_alter_resource_extra_data.py -------------------------------------------------------------------------------- /packagedb/migrations/0053_packagerelation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0053_packagerelation.py -------------------------------------------------------------------------------- /packagedb/migrations/0057_alter_package_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0057_alter_package_version.py -------------------------------------------------------------------------------- /packagedb/migrations/0061_add_new_scan_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0061_add_new_scan_fields.py -------------------------------------------------------------------------------- /packagedb/migrations/0065_set_package_content_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0065_set_package_content_field.py -------------------------------------------------------------------------------- /packagedb/migrations/0068_alter_resource_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0068_alter_resource_options.py -------------------------------------------------------------------------------- /packagedb/migrations/0070_auto_20230706_0045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0070_auto_20230706_0045.py -------------------------------------------------------------------------------- /packagedb/migrations/0071_remove_package_package_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0071_remove_package_package_set.py -------------------------------------------------------------------------------- /packagedb/migrations/0072_package_created_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0072_package_created_date.py -------------------------------------------------------------------------------- /packagedb/migrations/0073_package_history_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0073_package_history_json.py -------------------------------------------------------------------------------- /packagedb/migrations/0074_populate_history_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0074_populate_history_json.py -------------------------------------------------------------------------------- /packagedb/migrations/0075_remove_package_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0075_remove_package_history.py -------------------------------------------------------------------------------- /packagedb/migrations/0078_alter_package_release_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0078_alter_package_release_date.py -------------------------------------------------------------------------------- /packagedb/migrations/0081_apiuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0081_apiuser.py -------------------------------------------------------------------------------- /packagedb/migrations/0082_packagewatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0082_packagewatch.py -------------------------------------------------------------------------------- /packagedb/migrations/0083_delete_apiuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0083_delete_apiuser.py -------------------------------------------------------------------------------- /packagedb/migrations/0086_alter_party_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0086_alter_party_name.py -------------------------------------------------------------------------------- /packagedb/migrations/0089_packageactivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0089_packageactivity.py -------------------------------------------------------------------------------- /packagedb/migrations/0090_alter_packageactivity_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0090_alter_packageactivity_uuid.py -------------------------------------------------------------------------------- /packagedb/migrations/0091_package_is_duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0091_package_is_duplicate.py -------------------------------------------------------------------------------- /packagedb/migrations/0093_update_pypi_package_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/migrations/0093_update_pypi_package_content.py -------------------------------------------------------------------------------- /packagedb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packagedb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/models.py -------------------------------------------------------------------------------- /packagedb/package_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/package_managers.py -------------------------------------------------------------------------------- /packagedb/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/schedules.py -------------------------------------------------------------------------------- /packagedb/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/serializers.py -------------------------------------------------------------------------------- /packagedb/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tasks.py -------------------------------------------------------------------------------- /packagedb/templates/rest_framework/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/templates/rest_framework/api.html -------------------------------------------------------------------------------- /packagedb/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/templates/robots.txt -------------------------------------------------------------------------------- /packagedb/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/__init__.py -------------------------------------------------------------------------------- /packagedb/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_api.py -------------------------------------------------------------------------------- /packagedb/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_filters.py -------------------------------------------------------------------------------- /packagedb/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_migrations.py -------------------------------------------------------------------------------- /packagedb/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_models.py -------------------------------------------------------------------------------- /packagedb/tests/test_package_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_package_managers.py -------------------------------------------------------------------------------- /packagedb/tests/test_schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_schedules.py -------------------------------------------------------------------------------- /packagedb/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_tasks.py -------------------------------------------------------------------------------- /packagedb/tests/test_throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_throttling.py -------------------------------------------------------------------------------- /packagedb/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/test_views.py -------------------------------------------------------------------------------- /packagedb/tests/testfiles/ant-commons-logging-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/testfiles/ant-commons-logging-1.6.1.jar -------------------------------------------------------------------------------- /packagedb/tests/testfiles/api/enhanced_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/testfiles/api/enhanced_package.json -------------------------------------------------------------------------------- /packagedb/tests/testfiles/api/twill-core-0.12.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/tests/testfiles/api/twill-core-0.12.0.json -------------------------------------------------------------------------------- /packagedb/throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/throttling.py -------------------------------------------------------------------------------- /packagedb/to_purl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/packagedb/to_purl.py -------------------------------------------------------------------------------- /purl2vcs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/CHANGELOG.rst -------------------------------------------------------------------------------- /purl2vcs/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /purl2vcs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/NOTICE -------------------------------------------------------------------------------- /purl2vcs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/README.rst -------------------------------------------------------------------------------- /purl2vcs/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/apache-2.0.LICENSE -------------------------------------------------------------------------------- /purl2vcs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/pyproject.toml -------------------------------------------------------------------------------- /purl2vcs/src/purl2vcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /purl2vcs/src/purl2vcs/find_source_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/src/purl2vcs/find_source_repo.py -------------------------------------------------------------------------------- /purl2vcs/tests/test_find_source_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purl2vcs/tests/test_find_source_repo.py -------------------------------------------------------------------------------- /purldb-toolkit/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb-toolkit/README.rst -------------------------------------------------------------------------------- /purldb_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_project/__init__.py -------------------------------------------------------------------------------- /purldb_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_project/settings.py -------------------------------------------------------------------------------- /purldb_project/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /purldb_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_project/urls.py -------------------------------------------------------------------------------- /purldb_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_project/wsgi.py -------------------------------------------------------------------------------- /purldb_public_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_public_project/__init__.py -------------------------------------------------------------------------------- /purldb_public_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_public_project/settings.py -------------------------------------------------------------------------------- /purldb_public_project/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /purldb_public_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_public_project/urls.py -------------------------------------------------------------------------------- /purldb_public_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/purldb_public_project/wsgi.py -------------------------------------------------------------------------------- /pyproject-minecode_pipelines.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/pyproject-minecode_pipelines.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/setup.py -------------------------------------------------------------------------------- /traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/purldb/HEAD/traefik.yml --------------------------------------------------------------------------------