fetchcode 0.5.0__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (826) hide show
  1. {fetchcode-0.5.0 → fetchcode-0.5.2}/.gitignore +3 -0
  2. {fetchcode-0.5.0 → fetchcode-0.5.2}/CHANGELOG.rst +11 -3
  3. {fetchcode-0.5.0 → fetchcode-0.5.2}/NOTICE +1 -1
  4. {fetchcode-0.5.0 → fetchcode-0.5.2}/PKG-INFO +8 -8
  5. {fetchcode-0.5.0 → fetchcode-0.5.2}/README.rst +6 -6
  6. fetchcode-0.5.2/azure-pipelines.yml +54 -0
  7. {fetchcode-0.5.0 → fetchcode-0.5.2}/configure +1 -1
  8. {fetchcode-0.5.0 → fetchcode-0.5.2}/configure.bat +1 -1
  9. {fetchcode-0.5.0 → fetchcode-0.5.2}/setup.cfg +1 -1
  10. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/__init__.py +7 -5
  11. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/package.py +45 -23
  12. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/package_util.py +17 -8
  13. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/package_versions.py +6 -4
  14. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/packagedcode_models.py +16 -11
  15. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/utils.py +22 -5
  16. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/__init__.py +1 -1
  17. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/git.py +1 -1
  18. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/PKG-INFO +8 -8
  19. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux-expected.json +10768 -10768
  20. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux-expected.json +0 -1404
  21. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/regenerate_mock_data.py +198 -198
  22. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/regenerate_mock_data.py +3 -2
  23. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/regenerate_mock_data.py +5 -3
  24. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_fetch.py +1 -1
  25. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_package.py +46 -24
  26. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_package_versions.py +5 -3
  27. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_vcs.py +49 -24
  28. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_vcs_git.py +14 -7
  29. fetchcode-0.5.0/azure-pipelines.yml +0 -64
  30. {fetchcode-0.5.0 → fetchcode-0.5.2}/.gitattributes +0 -0
  31. {fetchcode-0.5.0 → fetchcode-0.5.2}/.github/workflows/docs-ci.yml +0 -0
  32. {fetchcode-0.5.0 → fetchcode-0.5.2}/.github/workflows/pypi-release.yml +0 -0
  33. {fetchcode-0.5.0 → fetchcode-0.5.2}/.readthedocs.yml +0 -0
  34. {fetchcode-0.5.0 → fetchcode-0.5.2}/AUTHORS.rst +0 -0
  35. {fetchcode-0.5.0 → fetchcode-0.5.2}/CODE_OF_CONDUCT.rst +0 -0
  36. {fetchcode-0.5.0 → fetchcode-0.5.2}/MANIFEST.in +0 -0
  37. {fetchcode-0.5.0 → fetchcode-0.5.2}/Makefile +0 -0
  38. {fetchcode-0.5.0 → fetchcode-0.5.2}/apache-2.0.LICENSE +0 -0
  39. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/Makefile +0 -0
  40. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/make.bat +0 -0
  41. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/scripts/doc8_style_check.sh +0 -0
  42. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/scripts/sphinx_build_link_check.sh +0 -0
  43. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/source/_static/theme_overrides.css +0 -0
  44. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/source/conf.py +0 -0
  45. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/source/contribute/contrib_doc.rst +0 -0
  46. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/source/index.rst +0 -0
  47. {fetchcode-0.5.0 → fetchcode-0.5.2}/docs/source/skeleton-usage.rst +0 -0
  48. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/azure-container-deb.yml +0 -0
  49. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/azure-container-rpm.yml +0 -0
  50. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/azure-posix.yml +0 -0
  51. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/azure-win.yml +0 -0
  52. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/install_sudo.sh +0 -0
  53. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/macports-ci +0 -0
  54. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/macports-ci.ABOUT +0 -0
  55. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/ci/mit.LICENSE +0 -0
  56. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/README.rst +0 -0
  57. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/check_thirdparty.py +0 -0
  58. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/fetch_thirdparty.py +0 -0
  59. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/gen_pypi_simple.py +0 -0
  60. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/gen_pypi_simple.py.ABOUT +0 -0
  61. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/gen_pypi_simple.py.NOTICE +0 -0
  62. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/gen_requirements.py +0 -0
  63. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/gen_requirements_dev.py +0 -0
  64. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/requirements.txt +0 -0
  65. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/test_utils_pip_compatibility_tags.py +0 -0
  66. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT +0 -0
  67. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/test_utils_pypi_supported_tags.py +0 -0
  68. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/test_utils_pypi_supported_tags.py.ABOUT +0 -0
  69. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_dejacode.py +0 -0
  70. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_pip_compatibility_tags.py +0 -0
  71. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_pip_compatibility_tags.py.ABOUT +0 -0
  72. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_pypi_supported_tags.py +0 -0
  73. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_pypi_supported_tags.py.ABOUT +0 -0
  74. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_requirements.py +0 -0
  75. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_thirdparty.py +0 -0
  76. {fetchcode-0.5.0 → fetchcode-0.5.2}/etc/scripts/utils_thirdparty.py.ABOUT +0 -0
  77. {fetchcode-0.5.0 → fetchcode-0.5.2}/pyproject.toml +0 -0
  78. {fetchcode-0.5.0 → fetchcode-0.5.2}/requirements-dev.txt +0 -0
  79. {fetchcode-0.5.0 → fetchcode-0.5.2}/requirements.txt +0 -0
  80. {fetchcode-0.5.0 → fetchcode-0.5.2}/setup.py +0 -0
  81. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/apache-2.0.LICENSE +0 -0
  82. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/bsd-new.LICENSE +0 -0
  83. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/isc.LICENSE +0 -0
  84. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/lgpl-2.1-plus.LICENSE +0 -0
  85. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/mit.LICENSE +0 -0
  86. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/__init__.py +0 -0
  87. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/__main__.py +0 -0
  88. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/__init__.py +0 -0
  89. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/build_env.py +0 -0
  90. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cache.py +0 -0
  91. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/__init__.py +0 -0
  92. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/autocompletion.py +0 -0
  93. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/base_command.py +0 -0
  94. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/cmdoptions.py +0 -0
  95. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/command_context.py +0 -0
  96. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/main.py +0 -0
  97. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/main_parser.py +0 -0
  98. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/parser.py +0 -0
  99. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/progress_bars.py +0 -0
  100. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/req_command.py +0 -0
  101. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/spinners.py +0 -0
  102. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/cli/status_codes.py +0 -0
  103. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/__init__.py +0 -0
  104. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/cache.py +0 -0
  105. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/check.py +0 -0
  106. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/completion.py +0 -0
  107. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/configuration.py +0 -0
  108. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/debug.py +0 -0
  109. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/download.py +0 -0
  110. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/freeze.py +0 -0
  111. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/hash.py +0 -0
  112. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/help.py +0 -0
  113. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/install.py +0 -0
  114. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/list.py +0 -0
  115. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/search.py +0 -0
  116. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/show.py +0 -0
  117. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/uninstall.py +0 -0
  118. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/commands/wheel.py +0 -0
  119. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/configuration.py +0 -0
  120. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/distributions/__init__.py +0 -0
  121. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/distributions/base.py +0 -0
  122. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/distributions/installed.py +0 -0
  123. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/distributions/sdist.py +0 -0
  124. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/distributions/wheel.py +0 -0
  125. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/exceptions.py +0 -0
  126. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/index/__init__.py +0 -0
  127. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/index/collector.py +0 -0
  128. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/index/package_finder.py +0 -0
  129. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/locations.py +0 -0
  130. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/main.py +0 -0
  131. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/__init__.py +0 -0
  132. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/candidate.py +0 -0
  133. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/direct_url.py +0 -0
  134. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/format_control.py +0 -0
  135. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/index.py +0 -0
  136. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/link.py +0 -0
  137. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/scheme.py +0 -0
  138. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/search_scope.py +0 -0
  139. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/selection_prefs.py +0 -0
  140. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/target_python.py +0 -0
  141. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/models/wheel.py +0 -0
  142. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/__init__.py +0 -0
  143. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/auth.py +0 -0
  144. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/cache.py +0 -0
  145. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/download.py +0 -0
  146. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/session.py +0 -0
  147. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/utils.py +0 -0
  148. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/network/xmlrpc.py +0 -0
  149. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/__init__.py +0 -0
  150. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/check.py +0 -0
  151. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/freeze.py +0 -0
  152. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/install/__init__.py +0 -0
  153. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/install/editable_legacy.py +0 -0
  154. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/install/legacy.py +0 -0
  155. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/install/wheel.py +0 -0
  156. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/operations/prepare.py +0 -0
  157. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/pyproject.py +0 -0
  158. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/__init__.py +0 -0
  159. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/constructors.py +0 -0
  160. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/req_file.py +0 -0
  161. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/req_install.py +0 -0
  162. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/req_set.py +0 -0
  163. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/req_tracker.py +0 -0
  164. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/req/req_uninstall.py +0 -0
  165. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/__init__.py +0 -0
  166. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/base.py +0 -0
  167. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/legacy/__init__.py +0 -0
  168. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/legacy/resolver.py +0 -0
  169. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  170. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/base.py +0 -0
  171. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/candidates.py +0 -0
  172. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/factory.py +0 -0
  173. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/provider.py +0 -0
  174. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/requirements.py +0 -0
  175. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/resolution/resolvelib/resolver.py +0 -0
  176. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/self_outdated_check.py +0 -0
  177. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/__init__.py +0 -0
  178. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/appdirs.py +0 -0
  179. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/compat.py +0 -0
  180. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/compatibility_tags.py +0 -0
  181. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/deprecation.py +0 -0
  182. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/direct_url_helpers.py +0 -0
  183. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/distutils_args.py +0 -0
  184. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/encoding.py +0 -0
  185. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/entrypoints.py +0 -0
  186. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/filesystem.py +0 -0
  187. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/filetypes.py +0 -0
  188. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/glibc.py +0 -0
  189. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/hashes.py +0 -0
  190. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/inject_securetransport.py +0 -0
  191. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/logging.py +0 -0
  192. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/misc.py +0 -0
  193. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/models.py +0 -0
  194. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/packaging.py +0 -0
  195. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/pkg_resources.py +0 -0
  196. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/setuptools_build.py +0 -0
  197. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/subprocess.py +0 -0
  198. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/temp_dir.py +0 -0
  199. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/typing.py +0 -0
  200. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/unpacking.py +0 -0
  201. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/urls.py +0 -0
  202. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/virtualenv.py +0 -0
  203. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/utils/wheel.py +0 -0
  204. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/__init__.py +0 -0
  205. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/bazaar.py +0 -0
  206. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/git.py +0 -0
  207. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/mercurial.py +0 -0
  208. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/subversion.py +0 -0
  209. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/vcs/versioncontrol.py +0 -0
  210. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_internal/wheel_builder.py +0 -0
  211. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/README.rst +0 -0
  212. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/__init__.py +0 -0
  213. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/appdirs.LICENSE.txt +0 -0
  214. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/appdirs.py +0 -0
  215. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/LICENSE.txt +0 -0
  216. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/__init__.py +0 -0
  217. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/_cmd.py +0 -0
  218. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/adapter.py +0 -0
  219. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/cache.py +0 -0
  220. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
  221. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
  222. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
  223. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/compat.py +0 -0
  224. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/controller.py +0 -0
  225. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/filewrapper.py +0 -0
  226. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/heuristics.py +0 -0
  227. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/serialize.py +0 -0
  228. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol/wrapper.py +0 -0
  229. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/cachecontrol.pyi +0 -0
  230. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi/LICENSE +0 -0
  231. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi/__init__.py +0 -0
  232. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi/__main__.py +0 -0
  233. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi/cacert.pem +0 -0
  234. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi/core.py +0 -0
  235. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/certifi.pyi +0 -0
  236. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/LICENSE +0 -0
  237. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/__init__.py +0 -0
  238. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/big5freq.py +0 -0
  239. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/big5prober.py +0 -0
  240. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/chardistribution.py +0 -0
  241. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/charsetgroupprober.py +0 -0
  242. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/charsetprober.py +0 -0
  243. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/cli/__init__.py +0 -0
  244. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/cli/chardetect.py +0 -0
  245. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/codingstatemachine.py +0 -0
  246. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/compat.py +0 -0
  247. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/cp949prober.py +0 -0
  248. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/enums.py +0 -0
  249. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/escprober.py +0 -0
  250. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/escsm.py +0 -0
  251. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/eucjpprober.py +0 -0
  252. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/euckrfreq.py +0 -0
  253. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/euckrprober.py +0 -0
  254. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/euctwfreq.py +0 -0
  255. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/euctwprober.py +0 -0
  256. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/gb2312freq.py +0 -0
  257. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/gb2312prober.py +0 -0
  258. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/hebrewprober.py +0 -0
  259. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/jisfreq.py +0 -0
  260. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/jpcntx.py +0 -0
  261. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langbulgarianmodel.py +0 -0
  262. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langcyrillicmodel.py +0 -0
  263. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langgreekmodel.py +0 -0
  264. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langhebrewmodel.py +0 -0
  265. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langhungarianmodel.py +0 -0
  266. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langthaimodel.py +0 -0
  267. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/langturkishmodel.py +0 -0
  268. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/latin1prober.py +0 -0
  269. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/mbcharsetprober.py +0 -0
  270. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/mbcsgroupprober.py +0 -0
  271. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/mbcssm.py +0 -0
  272. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/sbcharsetprober.py +0 -0
  273. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/sbcsgroupprober.py +0 -0
  274. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/sjisprober.py +0 -0
  275. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/universaldetector.py +0 -0
  276. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/utf8prober.py +0 -0
  277. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet/version.py +0 -0
  278. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/chardet.pyi +0 -0
  279. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/LICENSE.txt +0 -0
  280. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/__init__.py +0 -0
  281. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/ansi.py +0 -0
  282. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/ansitowin32.py +0 -0
  283. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/initialise.py +0 -0
  284. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/win32.py +0 -0
  285. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama/winterm.py +0 -0
  286. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/colorama.pyi +0 -0
  287. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/contextlib2.LICENSE.txt +0 -0
  288. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/contextlib2.py +0 -0
  289. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/LICENSE.txt +0 -0
  290. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/__init__.py +0 -0
  291. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/__init__.py +0 -0
  292. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/misc.py +0 -0
  293. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/shutil.py +0 -0
  294. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/sysconfig.cfg +0 -0
  295. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/sysconfig.py +0 -0
  296. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/_backport/tarfile.py +0 -0
  297. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/compat.py +0 -0
  298. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/database.py +0 -0
  299. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/index.py +0 -0
  300. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/locators.py +0 -0
  301. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/manifest.py +0 -0
  302. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/markers.py +0 -0
  303. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/metadata.py +0 -0
  304. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/resources.py +0 -0
  305. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/scripts.py +0 -0
  306. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/t32.exe +0 -0
  307. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/t64.exe +0 -0
  308. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/util.py +0 -0
  309. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/version.py +0 -0
  310. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/w32.exe +0 -0
  311. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/w64.exe +0 -0
  312. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib/wheel.py +0 -0
  313. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distlib.pyi +0 -0
  314. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distro.LICENSE +0 -0
  315. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distro.py +0 -0
  316. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/distro.pyi +0 -0
  317. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/LICENSE +0 -0
  318. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/__init__.py +0 -0
  319. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_ihatexml.py +0 -0
  320. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_inputstream.py +0 -0
  321. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_tokenizer.py +0 -0
  322. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_trie/__init__.py +0 -0
  323. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_trie/_base.py +0 -0
  324. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_trie/datrie.py +0 -0
  325. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_trie/py.py +0 -0
  326. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/_utils.py +0 -0
  327. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/constants.py +0 -0
  328. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/__init__.py +0 -0
  329. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/alphabeticalattributes.py +0 -0
  330. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/base.py +0 -0
  331. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/inject_meta_charset.py +0 -0
  332. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/lint.py +0 -0
  333. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/optionaltags.py +0 -0
  334. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/sanitizer.py +0 -0
  335. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/filters/whitespace.py +0 -0
  336. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/html5parser.py +0 -0
  337. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/serializer.py +0 -0
  338. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
  339. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treeadapters/genshi.py +0 -0
  340. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treeadapters/sax.py +0 -0
  341. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treebuilders/__init__.py +0 -0
  342. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treebuilders/base.py +0 -0
  343. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treebuilders/dom.py +0 -0
  344. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treebuilders/etree.py +0 -0
  345. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treebuilders/etree_lxml.py +0 -0
  346. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/__init__.py +0 -0
  347. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/base.py +0 -0
  348. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/dom.py +0 -0
  349. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/etree.py +0 -0
  350. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/etree_lxml.py +0 -0
  351. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib/treewalkers/genshi.py +0 -0
  352. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/html5lib.pyi +0 -0
  353. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/LICENSE.rst +0 -0
  354. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/__init__.py +0 -0
  355. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/codec.py +0 -0
  356. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/compat.py +0 -0
  357. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/core.py +0 -0
  358. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/idnadata.py +0 -0
  359. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/intranges.py +0 -0
  360. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/package_data.py +0 -0
  361. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna/uts46data.py +0 -0
  362. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/idna.pyi +0 -0
  363. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/ipaddress.LICENSE +0 -0
  364. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/ipaddress.py +0 -0
  365. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/ipaddress.pyi +0 -0
  366. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/COPYING +0 -0
  367. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/__init__.py +0 -0
  368. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/_version.py +0 -0
  369. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/exceptions.py +0 -0
  370. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/ext.py +0 -0
  371. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack/fallback.py +0 -0
  372. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/msgpack.pyi +0 -0
  373. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/LICENSE +0 -0
  374. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/LICENSE.APACHE +0 -0
  375. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/LICENSE.BSD +0 -0
  376. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/__about__.py +0 -0
  377. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/__init__.py +0 -0
  378. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/_compat.py +0 -0
  379. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/_structures.py +0 -0
  380. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/_typing.py +0 -0
  381. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/markers.py +0 -0
  382. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/py.typed +0 -0
  383. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/requirements.py +0 -0
  384. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/specifiers.py +0 -0
  385. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/tags.py +0 -0
  386. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/utils.py +0 -0
  387. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging/version.py +0 -0
  388. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/packaging.pyi +0 -0
  389. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/LICENSE +0 -0
  390. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/__init__.py +0 -0
  391. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/_in_process.py +0 -0
  392. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/build.py +0 -0
  393. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/check.py +0 -0
  394. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/colorlog.py +0 -0
  395. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/compat.py +0 -0
  396. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/dirtools.py +0 -0
  397. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/envbuild.py +0 -0
  398. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/meta.py +0 -0
  399. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517/wrappers.py +0 -0
  400. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pep517.pyi +0 -0
  401. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pkg_resources/LICENSE +0 -0
  402. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pkg_resources/__init__.py +0 -0
  403. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pkg_resources/py31compat.py +0 -0
  404. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pkg_resources.pyi +0 -0
  405. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress/LICENSE +0 -0
  406. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress/__init__.py +0 -0
  407. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress/bar.py +0 -0
  408. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress/counter.py +0 -0
  409. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress/spinner.py +0 -0
  410. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/progress.pyi +0 -0
  411. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pyparsing.LICENSE +0 -0
  412. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pyparsing.py +0 -0
  413. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/pyparsing.pyi +0 -0
  414. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/LICENSE +0 -0
  415. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/__init__.py +0 -0
  416. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/__version__.py +0 -0
  417. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/_internal_utils.py +0 -0
  418. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/adapters.py +0 -0
  419. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/api.py +0 -0
  420. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/auth.py +0 -0
  421. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/certs.py +0 -0
  422. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/compat.py +0 -0
  423. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/cookies.py +0 -0
  424. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/exceptions.py +0 -0
  425. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/help.py +0 -0
  426. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/hooks.py +0 -0
  427. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/models.py +0 -0
  428. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/packages.py +0 -0
  429. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/sessions.py +0 -0
  430. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/status_codes.py +0 -0
  431. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/structures.py +0 -0
  432. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests/utils.py +0 -0
  433. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/requests.pyi +0 -0
  434. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/LICENSE +0 -0
  435. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/__init__.py +0 -0
  436. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/providers.py +0 -0
  437. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/reporters.py +0 -0
  438. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/resolvers.py +0 -0
  439. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib/structs.py +0 -0
  440. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/resolvelib.pyi +0 -0
  441. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/retrying.LICENSE +0 -0
  442. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/retrying.py +0 -0
  443. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/retrying.pyi +0 -0
  444. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/six/__init__.pyi +0 -0
  445. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/six/moves/__init__.pyi +0 -0
  446. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/six/moves/configparser.pyi +0 -0
  447. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/six.LICENSE +0 -0
  448. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/six.py +0 -0
  449. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/LICENSE +0 -0
  450. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/__init__.py +0 -0
  451. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/decoder.py +0 -0
  452. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/encoder.py +0 -0
  453. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/ordered.py +0 -0
  454. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml/tz.py +0 -0
  455. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml.py +0 -0
  456. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/toml.pyi +0 -0
  457. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/LICENSE.txt +0 -0
  458. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/__init__.py +0 -0
  459. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/_collections.py +0 -0
  460. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/connection.py +0 -0
  461. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/connectionpool.py +0 -0
  462. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  463. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
  464. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  465. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
  466. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
  467. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/appengine.py +0 -0
  468. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
  469. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
  470. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
  471. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/contrib/socks.py +0 -0
  472. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/exceptions.py +0 -0
  473. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/fields.py +0 -0
  474. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/filepost.py +0 -0
  475. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/__init__.py +0 -0
  476. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  477. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
  478. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/six.py +0 -0
  479. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +0 -0
  480. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +0 -0
  481. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/poolmanager.py +0 -0
  482. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/request.py +0 -0
  483. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/response.py +0 -0
  484. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/__init__.py +0 -0
  485. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/connection.py +0 -0
  486. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/queue.py +0 -0
  487. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/request.py +0 -0
  488. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/response.py +0 -0
  489. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/retry.py +0 -0
  490. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/ssl_.py +0 -0
  491. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/timeout.py +0 -0
  492. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/url.py +0 -0
  493. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3/util/wait.py +0 -0
  494. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/urllib3.pyi +0 -0
  495. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/vendor.txt +0 -0
  496. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/LICENSE +0 -0
  497. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/__init__.py +0 -0
  498. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/labels.py +0 -0
  499. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/mklabels.py +0 -0
  500. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/tests.py +0 -0
  501. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings/x_user_defined.py +0 -0
  502. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip/_vendor/webencodings.pyi +0 -0
  503. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip-AUTHORS.txt +0 -0
  504. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip.ABOUT +0 -0
  505. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/pip.LICENSE +0 -0
  506. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode/vcs/python.LICENSE +0 -0
  507. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/SOURCES.txt +0 -0
  508. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/dependency_links.txt +0 -0
  509. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/not-zip-safe +0 -0
  510. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/requires.txt +0 -0
  511. {fetchcode-0.5.0 → fetchcode-0.5.2}/src/fetchcode.egg-info/top_level.txt +0 -0
  512. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/bitbucket.json +0 -0
  513. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/bitbucket_mock_data.json +0 -0
  514. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/bitbucket_mock_release_data.json +0 -0
  515. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/cargo.json +0 -0
  516. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/cargo_mock_data.json +0 -0
  517. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/github.json +0 -0
  518. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/github_mock_data.json +0 -0
  519. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/github_mock_release_data.json +0 -0
  520. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/npm.json +0 -0
  521. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/npm_mock_data.json +0 -0
  522. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/barebox/index.html +0 -0
  523. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/barebox-expected.json +0 -0
  524. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/busybox/index.html +0 -0
  525. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/busybox-expected.json +0 -0
  526. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/bzip2/index.html +0 -0
  527. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/bzip2-expected.json +0 -0
  528. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/dnsmasq/index.html +0 -0
  529. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/dnsmasq-expected.json +0 -0
  530. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/dropbear/index.html +0 -0
  531. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/dropbear-expected.json +0 -0
  532. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/0.html +0 -0
  533. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/1.html +0 -0
  534. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/10.html +0 -0
  535. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/11.html +0 -0
  536. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/12.html +0 -0
  537. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/13.html +0 -0
  538. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/14.html +0 -0
  539. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/15.html +0 -0
  540. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/16.html +0 -0
  541. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/17.html +0 -0
  542. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/18.html +0 -0
  543. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/19.html +0 -0
  544. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/2.html +0 -0
  545. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/20.html +0 -0
  546. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/21.html +0 -0
  547. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/22.html +0 -0
  548. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/23.html +0 -0
  549. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/24.html +0 -0
  550. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/25.html +0 -0
  551. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/26.html +0 -0
  552. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/27.html +0 -0
  553. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/28.html +0 -0
  554. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/29.html +0 -0
  555. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/3.html +0 -0
  556. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/30.html +0 -0
  557. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/31.html +0 -0
  558. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/32.html +0 -0
  559. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/33.html +0 -0
  560. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/34.html +0 -0
  561. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/35.html +0 -0
  562. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/36.html +0 -0
  563. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/37.html +0 -0
  564. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/38.html +0 -0
  565. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/39.html +0 -0
  566. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/4.html +0 -0
  567. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/40.html +0 -0
  568. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/41.html +0 -0
  569. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/42.html +0 -0
  570. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/43.html +0 -0
  571. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/44.html +0 -0
  572. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/45.html +0 -0
  573. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/46.html +0 -0
  574. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/5.html +0 -0
  575. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/6.html +0 -0
  576. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/7.html +0 -0
  577. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/8.html +0 -0
  578. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/9.html +0 -0
  579. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs/index.html +0 -0
  580. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/e2fsprogs-expected.json +0 -0
  581. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/ebtables/index.html +0 -0
  582. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/ebtables-expected.json +0 -0
  583. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/hostapd/index.html +0 -0
  584. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/hostapd-expected.json +0 -0
  585. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/ipkg-expected.json +0 -0
  586. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/iproute2/index.html +0 -0
  587. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/iproute2-expected.json +0 -0
  588. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/iptables/index.html +0 -0
  589. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/iptables-expected.json +0 -0
  590. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/libnl/index.html +0 -0
  591. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/libnl-expected.json +0 -0
  592. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/lighttpd/index.html +0 -0
  593. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/lighttpd-expected.json +0 -0
  594. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/0.html +0 -0
  595. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/1.html +0 -0
  596. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/10.html +0 -0
  597. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/11.html +0 -0
  598. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/12.html +0 -0
  599. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/13.html +0 -0
  600. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/14.html +0 -0
  601. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/15.html +0 -0
  602. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/2.html +0 -0
  603. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/3.html +0 -0
  604. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/4.html +0 -0
  605. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/5.html +0 -0
  606. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/6.html +0 -0
  607. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/7.html +0 -0
  608. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/8.html +0 -0
  609. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/9.html +0 -0
  610. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/linux/index.html +0 -0
  611. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/mtd-utils/index.html +0 -0
  612. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/mtd-utils-expected.json +0 -0
  613. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/nftables/index.html +0 -0
  614. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/nftables-expected.json +0 -0
  615. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/openssh/index.html +0 -0
  616. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/openssh-expected.json +0 -0
  617. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/samba/index.html +0 -0
  618. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/samba-expected.json +0 -0
  619. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/syslinux/index.html +0 -0
  620. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/syslinux-expected.json +0 -0
  621. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/toybox/index.html +0 -0
  622. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/toybox-expected.json +0 -0
  623. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc/index.html +0 -0
  624. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-expected.json +0 -0
  625. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/0.html +0 -0
  626. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/1.html +0 -0
  627. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/10.html +0 -0
  628. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/11.html +0 -0
  629. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/12.html +0 -0
  630. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/13.html +0 -0
  631. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/14.html +0 -0
  632. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/15.html +0 -0
  633. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/16.html +0 -0
  634. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/17.html +0 -0
  635. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/18.html +0 -0
  636. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/19.html +0 -0
  637. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/2.html +0 -0
  638. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/20.html +0 -0
  639. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/21.html +0 -0
  640. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/22.html +0 -0
  641. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/23.html +0 -0
  642. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/24.html +0 -0
  643. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/25.html +0 -0
  644. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/26.html +0 -0
  645. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/27.html +0 -0
  646. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/28.html +0 -0
  647. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/29.html +0 -0
  648. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/3.html +0 -0
  649. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/30.html +0 -0
  650. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/31.html +0 -0
  651. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/32.html +0 -0
  652. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/33.html +0 -0
  653. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/34.html +0 -0
  654. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/35.html +0 -0
  655. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/36.html +0 -0
  656. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/37.html +0 -0
  657. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/38.html +0 -0
  658. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/39.html +0 -0
  659. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/4.html +0 -0
  660. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/40.html +0 -0
  661. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/41.html +0 -0
  662. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/42.html +0 -0
  663. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/43.html +0 -0
  664. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/44.html +0 -0
  665. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/45.html +0 -0
  666. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/46.html +0 -0
  667. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/5.html +0 -0
  668. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/6.html +0 -0
  669. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/7.html +0 -0
  670. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/8.html +0 -0
  671. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/9.html +0 -0
  672. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng/index.html +0 -0
  673. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/uclibc-ng-expected.json +0 -0
  674. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/udhcp-expected.json +0 -0
  675. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/0.html +0 -0
  676. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/1.html +0 -0
  677. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/10.html +0 -0
  678. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/11.html +0 -0
  679. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/12.html +0 -0
  680. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/13.html +0 -0
  681. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/14.html +0 -0
  682. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/15.html +0 -0
  683. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/16.html +0 -0
  684. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/17.html +0 -0
  685. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/18.html +0 -0
  686. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/19.html +0 -0
  687. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/2.html +0 -0
  688. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/20.html +0 -0
  689. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/21.html +0 -0
  690. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/22.html +0 -0
  691. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/23.html +0 -0
  692. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/24.html +0 -0
  693. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/25.html +0 -0
  694. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/26.html +0 -0
  695. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/27.html +0 -0
  696. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/3.html +0 -0
  697. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/4.html +0 -0
  698. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/5.html +0 -0
  699. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/6.html +0 -0
  700. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/7.html +0 -0
  701. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/8.html +0 -0
  702. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/9.html +0 -0
  703. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/util-linux/index.html +0 -0
  704. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/wpa_supplicant/index.html +0 -0
  705. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/generic/wpa_supplicant-expected.json +0 -0
  706. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/gnu/glibc/index.html +0 -0
  707. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/dirlisting/gnu/glibc-expected.json +0 -0
  708. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/avahi/github_mock_data_0.json +0 -0
  709. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/avahi/github_mock_data_1.json +0 -0
  710. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/avahi-expected.json +0 -0
  711. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/bpftool/github_mock_data_0.json +0 -0
  712. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/bpftool/github_mock_data_1.json +0 -0
  713. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/bpftool-expected.json +0 -0
  714. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/brotli/github_mock_data_0.json +0 -0
  715. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/brotli/github_mock_data_1.json +0 -0
  716. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/brotli-expected.json +0 -0
  717. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_0.json +0 -0
  718. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_1.json +0 -0
  719. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_2.json +0 -0
  720. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_3.json +0 -0
  721. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_4.json +0 -0
  722. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_5.json +0 -0
  723. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython/github_mock_data_6.json +0 -0
  724. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/cpython-expected.json +0 -0
  725. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/dosfstools/github_mock_data_0.json +0 -0
  726. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/dosfstools/github_mock_data_1.json +0 -0
  727. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/dosfstools-expected.json +0 -0
  728. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/erofs-utils/github_mock_data_0.json +0 -0
  729. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/erofs-utils/github_mock_data_1.json +0 -0
  730. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/erofs-utils-expected.json +0 -0
  731. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/genext2fs/github_mock_data_0.json +0 -0
  732. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/genext2fs/github_mock_data_1.json +0 -0
  733. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/genext2fs-expected.json +0 -0
  734. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/inotify-tools/github_mock_data_0.json +0 -0
  735. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/inotify-tools/github_mock_data_1.json +0 -0
  736. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/inotify-tools-expected.json +0 -0
  737. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/llvm-project/github_mock_data_0.json +0 -0
  738. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/llvm-project/github_mock_data_1.json +0 -0
  739. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/llvm-project/github_mock_data_2.json +0 -0
  740. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/llvm-project/github_mock_data_3.json +0 -0
  741. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/llvm-project-expected.json +0 -0
  742. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/minissdpd-expected.json +0 -0
  743. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/miniupnp/github_mock_data_0.json +0 -0
  744. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/miniupnp/github_mock_data_1.json +0 -0
  745. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/miniupnpc-expected.json +0 -0
  746. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/miniupnpd-expected.json +0 -0
  747. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/nix/github_mock_data_0.json +0 -0
  748. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/nix/github_mock_data_1.json +0 -0
  749. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/nix/github_mock_data_2.json +0 -0
  750. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/nix-expected.json +0 -0
  751. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl/github_mock_data_0.json +0 -0
  752. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl/github_mock_data_1.json +0 -0
  753. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl/github_mock_data_2.json +0 -0
  754. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl/github_mock_data_3.json +0 -0
  755. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl/github_mock_data_4.json +0 -0
  756. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/openssl-expected.json +0 -0
  757. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/pupnp/github_mock_data_0.json +0 -0
  758. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/pupnp/github_mock_data_1.json +0 -0
  759. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/pupnp-expected.json +0 -0
  760. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/rpm/github_mock_data_0.json +0 -0
  761. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/rpm/github_mock_data_1.json +0 -0
  762. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/rpm/github_mock_data_2.json +0 -0
  763. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/rpm-expected.json +0 -0
  764. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/shadow/github_mock_data_0.json +0 -0
  765. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/shadow/github_mock_data_1.json +0 -0
  766. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/shadow-expected.json +0 -0
  767. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/sqlite/github_mock_data_0.json +0 -0
  768. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/sqlite/github_mock_data_1.json +0 -0
  769. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/sqlite/github_mock_data_2.json +0 -0
  770. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/sqlite-expected.json +0 -0
  771. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/squashfs-tools/github_mock_data_0.json +0 -0
  772. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/squashfs-tools/github_mock_data_1.json +0 -0
  773. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/squashfs-tools-expected.json +0 -0
  774. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_0.json +0 -0
  775. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_1.json +0 -0
  776. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_2.json +0 -0
  777. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_3.json +0 -0
  778. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_4.json +0 -0
  779. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot/github_mock_data_5.json +0 -0
  780. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/u-boot-expected.json +0 -0
  781. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/wireless-tools/github_mock_data_0.json +0 -0
  782. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/wireless-tools/github_mock_data_1.json +0 -0
  783. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package/github/wireless-tools-expected.json +0 -0
  784. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/cargo.json +0 -0
  785. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/cargo_mock_data.json +0 -0
  786. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/composer.json +0 -0
  787. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/composer_mock_data.json +0 -0
  788. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/conan.json +0 -0
  789. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/conan_mock_data.yml +0 -0
  790. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/deb.json +0 -0
  791. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/deb_mock_data.json +0 -0
  792. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/gem.json +0 -0
  793. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/gem_mock_data.json +0 -0
  794. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_1.json +0 -0
  795. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_2.json +0 -0
  796. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_3.json +0 -0
  797. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_4.json +0 -0
  798. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_5.json +0 -0
  799. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github/github_mock_data_6.json +0 -0
  800. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github.json +0 -0
  801. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/github_mock_data.json +0 -0
  802. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/golang_mock_meta_data.txt +0 -0
  803. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.0.0_data.json +0 -0
  804. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.1.0_data.json +0 -0
  805. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.1.1_data.json +0 -0
  806. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.2.0_data.json +0 -0
  807. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.2.1_data.json +0 -0
  808. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang/versions/golang_mock_v1.3.0_data.json +0 -0
  809. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/golang.json +0 -0
  810. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/hex.json +0 -0
  811. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/hex_mock_data.json +0 -0
  812. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/launchpad.json +0 -0
  813. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/launchpad_mock_data.json +0 -0
  814. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/maven.json +0 -0
  815. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/maven_mock_data.xml +0 -0
  816. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/npm.json +0 -0
  817. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/npm_mock_data.json +0 -0
  818. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/nuget.json +0 -0
  819. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/nuget_mock_data.json +0 -0
  820. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/pypi.json +0 -0
  821. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/package_versions/pypi_mock_data.json +0 -0
  822. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/pypi.json +0 -0
  823. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/pypi_mock_data.json +0 -0
  824. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/rubygems.json +0 -0
  825. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/data/rubygems_mock_data.json +0 -0
  826. {fetchcode-0.5.0 → fetchcode-0.5.2}/tests/test_skeleton_codestyle.py +0 -0
@@ -72,3 +72,6 @@ tcl
72
72
 
73
73
  # Ignore Jupyter Notebook related temp files
74
74
  .ipynb_checkpoints/
75
+
76
+ # Env Files
77
+ .env
@@ -1,10 +1,19 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ v0.5.2
5
+ ------
6
+ - Update link references of ownership from nexB to aboutcode-org
7
+
8
+
9
+ v0.5.1
10
+ -------
11
+ - Use authenticated requests for GitHub REST API calls
12
+
4
13
 
5
14
  v0.5.0
6
15
  -------
7
- - FetchCode now supports retrieving package info for following generic packages:
16
+ - FetchCode now supports retrieving package info for following generic packages:
8
17
  * pkg:generic/linux
9
18
  * pkg:generic/mtd-utils
10
19
  * pkg:generic/barebox
@@ -37,7 +46,7 @@ v0.5.0
37
46
 
38
47
  v0.4.0
39
48
  -------
40
- - FetchCode now supports retrieving package info for following generic packages:
49
+ - FetchCode now supports retrieving package info for following generic packages:
41
50
  ``busybox``, ``bzip2``, ``dnsmasq``, ``dropbear``, ``ebtables``, ``hostapd``, ``ipkg``,
42
51
  ``iproute2``, ``iptables``, ``libnl``, ``lighttpd``, ``nftables``, ``openssh``, ``samba``,
43
52
  ``syslinux``, ``toybox``, ``uclibc``, ``uclibc-ng``, ``util-linux`` and ``wpa_supplicant``.
@@ -58,4 +67,3 @@ v0.1.0
58
67
  ---------
59
68
 
60
69
  First, initial release.
61
-
@@ -2,7 +2,7 @@
2
2
  # Copyright (c) nexB Inc. and others.
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
  #
5
- # Visit https://aboutcode.org and https://github.com/nexB/ for support and download.
5
+ # Visit https://aboutcode.org and https://github.com/aboutcode-org/ for support and download.
6
6
  # ScanCode is a trademark of nexB Inc.
7
7
  #
8
8
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fetchcode
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: fetchcode is a library to reliably fetch code via HTTP, FTP and version control systems.
5
- Home-page: https://github.com/nexB/fetchcode
5
+ Home-page: https://github.com/aboutcode-org/fetchcode
6
6
  Author: nexB. Inc. and others
7
7
  Author-email: info@aboutcode.org
8
8
  License: Apache-2.0
@@ -55,7 +55,7 @@ systems. It can work using plain HTTP and FTP URLs, as well as
55
55
  as used in Python pip and as specified in `SPDX Package Download Location
56
56
  <https://spdx.github.io/spdx-spec/3-package-information/#37-package-download-location>`_
57
57
 
58
- Homepage and support: https://github.com/nexB/fetchcode
58
+ Homepage and support: https://github.com/aboutcode-org/fetchcode
59
59
 
60
60
 
61
61
  Why FetchCode?
@@ -72,11 +72,11 @@ Development installation
72
72
 
73
73
  Clone the repo::
74
74
 
75
- git clone https://github.com/nexB/fetchcode
75
+ git clone https://github.com/aboutcode-org/fetchcode
76
76
 
77
- Then install all the requirements using::
77
+ Then install all the requirements using this command (on POSIX)::
78
78
 
79
- configure --dev
79
+ ./configure --dev
80
80
 
81
81
 
82
82
  Running tests
@@ -93,13 +93,13 @@ Usage
93
93
  Fetch a code archive and get a ``fetchcode.fetch.Response`` object back::
94
94
 
95
95
  >>> from fetchcode import fetch
96
- >>> f = fetch('https://github.com/nexB/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip')
96
+ >>> f = fetch('https://github.com/aboutcode-org/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip')
97
97
  >>> f.location
98
98
  '/tmp/tmp_cm02xsg'
99
99
  >>> f.content_type
100
100
  'application/zip'
101
101
  >>> f.url
102
- 'https://github.com/nexB/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip'
102
+ 'https://github.com/aboutcode-org/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip'
103
103
 
104
104
  Fetch some package metadata and get a ``fetchcode.packagedcode_models.Package`` object back::
105
105
 
@@ -7,7 +7,7 @@ systems. It can work using plain HTTP and FTP URLs, as well as
7
7
  as used in Python pip and as specified in `SPDX Package Download Location
8
8
  <https://spdx.github.io/spdx-spec/3-package-information/#37-package-download-location>`_
9
9
 
10
- Homepage and support: https://github.com/nexB/fetchcode
10
+ Homepage and support: https://github.com/aboutcode-org/fetchcode
11
11
 
12
12
 
13
13
  Why FetchCode?
@@ -24,11 +24,11 @@ Development installation
24
24
 
25
25
  Clone the repo::
26
26
 
27
- git clone https://github.com/nexB/fetchcode
27
+ git clone https://github.com/aboutcode-org/fetchcode
28
28
 
29
- Then install all the requirements using::
29
+ Then install all the requirements using this command (on POSIX)::
30
30
 
31
- configure --dev
31
+ ./configure --dev
32
32
 
33
33
 
34
34
  Running tests
@@ -45,13 +45,13 @@ Usage
45
45
  Fetch a code archive and get a ``fetchcode.fetch.Response`` object back::
46
46
 
47
47
  >>> from fetchcode import fetch
48
- >>> f = fetch('https://github.com/nexB/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip')
48
+ >>> f = fetch('https://github.com/aboutcode-org/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip')
49
49
  >>> f.location
50
50
  '/tmp/tmp_cm02xsg'
51
51
  >>> f.content_type
52
52
  'application/zip'
53
53
  >>> f.url
54
- 'https://github.com/nexB/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip'
54
+ 'https://github.com/aboutcode-org/fetchcode/archive/ab65b2e645c889887227ea49eb3332d885fd0a54.zip'
55
55
 
56
56
  Fetch some package metadata and get a ``fetchcode.packagedcode_models.Package`` object back::
57
57
 
@@ -0,0 +1,54 @@
1
+ ################################################################################
2
+ # We use Azure to run the full tests suites on multiple Python 3.x
3
+ # on multiple Windows, macOS and Linux versions all on 64 bits
4
+ # These jobs are using VMs with Azure-provided Python builds
5
+ ################################################################################
6
+
7
+ jobs:
8
+ - template: etc/ci/azure-posix.yml
9
+ parameters:
10
+ job_name: ubuntu20_cpython
11
+ image_name: ubuntu-20.04
12
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13
+ test_suites:
14
+ all: venv/bin/pytest -n 2 -vvs
15
+
16
+ - template: etc/ci/azure-posix.yml
17
+ parameters:
18
+ job_name: ubuntu22_cpython
19
+ image_name: ubuntu-22.04
20
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
21
+ test_suites:
22
+ all: venv/bin/pytest -n 2 -vvs
23
+
24
+ - template: etc/ci/azure-posix.yml
25
+ parameters:
26
+ job_name: macos12_cpython
27
+ image_name: macOS-12
28
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
29
+ test_suites:
30
+ all: venv/bin/pytest -n 2 -vvs
31
+
32
+ - template: etc/ci/azure-posix.yml
33
+ parameters:
34
+ job_name: macos13_cpython
35
+ image_name: macOS-13
36
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
37
+ test_suites:
38
+ all: venv/bin/pytest -n 2 -vvs
39
+
40
+ - template: etc/ci/azure-win.yml
41
+ parameters:
42
+ job_name: win2019_cpython
43
+ image_name: windows-2019
44
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
45
+ test_suites:
46
+ all: venv\Scripts\pytest -n 2 -vvs
47
+
48
+ - template: etc/ci/azure-win.yml
49
+ parameters:
50
+ job_name: win2022_cpython
51
+ image_name: windows-2022
52
+ python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
53
+ test_suites:
54
+ all: venv\Scripts\pytest -n 2 -vvs
@@ -3,7 +3,7 @@
3
3
  # Copyright (c) nexB Inc. and others. All rights reserved.
4
4
  # SPDX-License-Identifier: Apache-2.0
5
5
  # See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6
- # See https://github.com/nexB/ for support or download.
6
+ # See https://github.com/aboutcode-org/ for support or download.
7
7
  # See https://aboutcode.org for more information about nexB OSS projects.
8
8
  #
9
9
 
@@ -4,7 +4,7 @@
4
4
  @rem Copyright (c) nexB Inc. and others. All rights reserved.
5
5
  @rem SPDX-License-Identifier: Apache-2.0
6
6
  @rem See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
7
- @rem See https://github.com/nexB/ for support or download.
7
+ @rem See https://github.com/aboutcode-org/ for support or download.
8
8
  @rem See https://aboutcode.org for more information about nexB OSS projects.
9
9
 
10
10
 
@@ -4,7 +4,7 @@ license = Apache-2.0
4
4
  description = fetchcode is a library to reliably fetch code via HTTP, FTP and version control systems.
5
5
  long_description = file:README.rst
6
6
  long_description_content_type = text/x-rst
7
- url = https://github.com/nexB/fetchcode
7
+ url = https://github.com/aboutcode-org/fetchcode
8
8
  author = nexB. Inc. and others
9
9
  author_email = info@aboutcode.org
10
10
  classifiers =
@@ -1,5 +1,5 @@
1
1
  # fetchcode is a free software tool from nexB Inc. and others.
2
- # Visit https://github.com/nexB/fetchcode for support and download.
2
+ # Visit https://github.com/aboutcode-org/fetchcode for support and download.
3
3
  #
4
4
  # Copyright (c) nexB Inc. and others. All rights reserved.
5
5
  # http://nexb.com and http://aboutcode.org
@@ -41,7 +41,7 @@ class Response:
41
41
  def fetch_http(url, location):
42
42
  """
43
43
  Return a `Response` object built from fetching the content at a HTTP/HTTPS based `url` URL string
44
- saving the content in a file at `location`
44
+ saving the content in a file at `location`
45
45
  """
46
46
  r = requests.get(url)
47
47
  with open(location, 'wb') as f:
@@ -51,7 +51,8 @@ def fetch_http(url, location):
51
51
  size = r.headers.get('content-length')
52
52
  size = int(size) if size else None
53
53
 
54
- resp = Response(location=location, content_type=content_type, size=size, url=url)
54
+ resp = Response(location=location,
55
+ content_type=content_type, size=size, url=url)
55
56
 
56
57
  return resp
57
58
 
@@ -59,7 +60,7 @@ def fetch_http(url, location):
59
60
  def fetch_ftp(url, location):
60
61
  """
61
62
  Return a `Response` object built from fetching the content at a FTP based `url` URL string
62
- saving the content in a file at `location`
63
+ saving the content in a file at `location`
63
64
  """
64
65
  url_parts = urlparse(url)
65
66
 
@@ -84,7 +85,8 @@ def fetch_ftp(url, location):
84
85
  ftp.retrbinary(file, f.write)
85
86
  ftp.close()
86
87
 
87
- resp = Response(location=location, content_type=content_type, size=size, url=url)
88
+ resp = Response(location=location,
89
+ content_type=content_type, size=size, url=url)
88
90
  return resp
89
91
 
90
92
 
@@ -1,5 +1,5 @@
1
1
  # fetchcode is a free software tool from nexB Inc. and others.
2
- # Visit https://github.com/nexB/fetchcode for support and download.
2
+ # Visit https://github.com/aboutcode-org/fetchcode for support and download.
3
3
  #
4
4
  # Copyright (c) nexB Inc. and others. All rights reserved.
5
5
  # http://nexb.com and http://aboutcode.org
@@ -92,7 +92,8 @@ def get_cargo_data_from_purl(purl):
92
92
  )
93
93
  versions = response.get("versions", [])
94
94
  for version in versions:
95
- version_purl = PackageURL(type=purl.type, name=name, version=version.get("num"))
95
+ version_purl = PackageURL(
96
+ type=purl.type, name=name, version=version.get("num"))
96
97
  dl_path = version.get("dl_path")
97
98
  if dl_path:
98
99
  download_url = f"{base_url}/{dl_path}"
@@ -355,7 +356,8 @@ def get_gnu_data_from_purl(purl):
355
356
  purl = PackageURL.from_string(purl)
356
357
  source_archive_url = f"https://ftp.gnu.org/pub/gnu/{purl.name}/"
357
358
  version_regex_template = r"^({}-)(?P<version>[\w.-]*)(.tar.gz)$"
358
- version_regex = re.compile(version_regex_template.format(re.escape(purl.name)))
359
+ version_regex = re.compile(
360
+ version_regex_template.format(re.escape(purl.name)))
359
361
 
360
362
  yield from extract_packages_from_listing(
361
363
  purl, source_archive_url, version_regex, []
@@ -427,7 +429,8 @@ class UdhcpDirectoryListedSource(DirectoryListedSource):
427
429
 
428
430
  else:
429
431
  for version, data in UDHCP_RELEASES.items():
430
- purl = PackageURL(type="generic", name="udhcp", version=version)
432
+ purl = PackageURL(
433
+ type="generic", name="udhcp", version=version)
431
434
  yield Package(
432
435
  homepage_url=cls.source_url,
433
436
  download_url=data["url"],
@@ -472,14 +475,17 @@ class UtilLinuxDirectoryListedSource(DirectoryListedSource):
472
475
  source_url = "https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/"
473
476
  is_nested = True
474
477
  # Source archive ex: util-linux-1.2.3.tar.gz
475
- source_archive_regex = re.compile(r"^(util-linux-)(?P<version>[\w.-]*)(.tar.gz)$")
478
+ source_archive_regex = re.compile(
479
+ r"^(util-linux-|util-linux-ng-)(?P<version>[\w.-]*)(.tar.gz)$"
480
+ )
476
481
  ignored_files_and_dir = []
477
482
 
478
483
 
479
484
  class BusyBoxDirectoryListedSource(DirectoryListedSource):
480
485
  source_url = "https://www.busybox.net/downloads/"
481
486
  # Source archive ex: busybox-1.2.3.tar.bz2
482
- source_archive_regex = re.compile(r"^(busybox-)(?P<version>[\w.-]*)(.tar.bz2)$")
487
+ source_archive_regex = re.compile(
488
+ r"^(busybox-)(?P<version>[\w.-]*)(.tar.bz2)$")
483
489
  is_nested = False
484
490
  ignored_files_and_dir = []
485
491
 
@@ -487,7 +493,8 @@ class BusyBoxDirectoryListedSource(DirectoryListedSource):
487
493
  class UclibcDirectoryListedSource(DirectoryListedSource):
488
494
  source_url = "https://www.uclibc.org/downloads/"
489
495
  # Source archive ex: uClibc-1.2.3.tar.gz
490
- source_archive_regex = re.compile(r"^(uClibc-)(?P<version>[\w.-]*)(.tar.gz)$")
496
+ source_archive_regex = re.compile(
497
+ r"^(uClibc-)(?P<version>[\w.-]*)(.tar.gz)$")
491
498
  is_nested = False
492
499
  ignored_files_and_dir = []
493
500
 
@@ -495,7 +502,8 @@ class UclibcDirectoryListedSource(DirectoryListedSource):
495
502
  class UclibcNGDirectoryListedSource(DirectoryListedSource):
496
503
  source_url = "https://downloads.uclibc-ng.org/releases/"
497
504
  # Source archive ex: uClibc-ng-1.2.3.tar.gz
498
- source_archive_regex = re.compile(r"^(uClibc-ng-)(?P<version>[\w.-]*)(.tar.gz)$")
505
+ source_archive_regex = re.compile(
506
+ r"^(uClibc-ng-)(?P<version>[\w.-]*)(.tar.gz)$")
499
507
  is_nested = True
500
508
  ignored_files_and_dir = []
501
509
 
@@ -503,7 +511,8 @@ class UclibcNGDirectoryListedSource(DirectoryListedSource):
503
511
  class Bzip2DirectoryListedSource(DirectoryListedSource):
504
512
  source_url = "https://sourceware.org/pub/bzip2/"
505
513
  # Source archive ex: bzip2-1.2.3.tar.gz
506
- source_archive_regex = re.compile(r"^(bzip2-)(?P<version>[\w.-]*)(.tar.gz)$")
514
+ source_archive_regex = re.compile(
515
+ r"^(bzip2-)(?P<version>[\w.-]*)(.tar.gz)$")
507
516
  is_nested = False
508
517
  ignored_files_and_dir = []
509
518
 
@@ -511,7 +520,8 @@ class Bzip2DirectoryListedSource(DirectoryListedSource):
511
520
  class OpenSSHDirectoryListedSource(DirectoryListedSource):
512
521
  source_url = "https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/"
513
522
  # Source archive ex: openssh-1.2.3.tar.gz
514
- source_archive_regex = re.compile(r"^(openssh-)(?P<version>[\w.-]*)(.tgz|.tar.gz)$")
523
+ source_archive_regex = re.compile(
524
+ r"^(openssh-)(?P<version>[\w.-]*)(.tgz|.tar.gz)$")
515
525
  is_nested = False
516
526
  ignored_files_and_dir = []
517
527
 
@@ -529,7 +539,8 @@ class DnsmasqDirectoryListedSource(DirectoryListedSource):
529
539
  class EbtablesDirectoryListedSource(DirectoryListedSource):
530
540
  source_url = "https://www.netfilter.org/pub/ebtables/"
531
541
  # Source archive ex: ebtables-1.2.3.tar.gz
532
- source_archive_regex = re.compile(r"^(ebtables-)(?P<version>[\w.-]*)(.tar.gz)$")
542
+ source_archive_regex = re.compile(
543
+ r"^(ebtables-)(?P<version>[\w.-]*)(.tar.gz)$")
533
544
  is_nested = False
534
545
  ignored_files_and_dir = []
535
546
 
@@ -537,7 +548,8 @@ class EbtablesDirectoryListedSource(DirectoryListedSource):
537
548
  class HostapdDirectoryListedSource(DirectoryListedSource):
538
549
  source_url = "https://w1.fi/releases/"
539
550
  # Source archive ex: hostapd-1.2.3.tar.gz
540
- source_archive_regex = re.compile(r"^(hostapd-)(?P<version>[\w.-]*)(.tar.gz)$")
551
+ source_archive_regex = re.compile(
552
+ r"^(hostapd-)(?P<version>[\w.-]*)(.tar.gz)$")
541
553
  is_nested = False
542
554
  ignored_files_and_dir = []
543
555
 
@@ -555,7 +567,8 @@ class Iproute2DirectoryListedSource(DirectoryListedSource):
555
567
  class IptablesDirectoryListedSource(DirectoryListedSource):
556
568
  source_url = "https://www.netfilter.org/pub/iptables/"
557
569
  # Source archive ex: iptables-1.2.3.tar.bz2
558
- source_archive_regex = re.compile(r"^(iptables-)(?P<version>[\w.-]*)(.tar.bz2)$")
570
+ source_archive_regex = re.compile(
571
+ r"^(iptables-)(?P<version>[\w.-]*)(.tar.bz2)$")
559
572
  is_nested = False
560
573
  ignored_files_and_dir = []
561
574
 
@@ -563,7 +576,8 @@ class IptablesDirectoryListedSource(DirectoryListedSource):
563
576
  class LibnlDirectoryListedSource(DirectoryListedSource):
564
577
  source_url = "https://www.infradead.org/~tgr/libnl/files/"
565
578
  # Source archive ex: libnl-1.2.3.tar.gz
566
- source_archive_regex = re.compile(r"^(libnl-)(?P<version>[\w.-]*)(.tar.gz)$")
579
+ source_archive_regex = re.compile(
580
+ r"^(libnl-)(?P<version>[\w.-]*)(.tar.gz)$")
567
581
  is_nested = False
568
582
  ignored_files_and_dir = []
569
583
 
@@ -571,7 +585,8 @@ class LibnlDirectoryListedSource(DirectoryListedSource):
571
585
  class LighttpdDirectoryListedSource(DirectoryListedSource):
572
586
  source_url = "https://download.lighttpd.net/lighttpd/releases-1.4.x/"
573
587
  # Source archive ex: lighttpd-1.2.3.tar.gz
574
- source_archive_regex = re.compile(r"^(lighttpd-)(?P<version>[\w.-]*)(.tar.gz)$")
588
+ source_archive_regex = re.compile(
589
+ r"^(lighttpd-)(?P<version>[\w.-]*)(.tar.gz)$")
575
590
  is_nested = False
576
591
  ignored_files_and_dir = []
577
592
 
@@ -599,7 +614,8 @@ class WpaSupplicantDirectoryListedSource(DirectoryListedSource):
599
614
  class SyslinuxDirectoryListedSource(DirectoryListedSource):
600
615
  source_url = "https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/"
601
616
  # Source archive ex: syslinux-1.2.3.tar.gz
602
- source_archive_regex = re.compile(r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$")
617
+ source_archive_regex = re.compile(
618
+ r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$")
603
619
  is_nested = False
604
620
  ignored_files_and_dir = []
605
621
 
@@ -607,7 +623,8 @@ class SyslinuxDirectoryListedSource(DirectoryListedSource):
607
623
  class SyslinuxDirectoryListedSource(DirectoryListedSource):
608
624
  source_url = "https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/"
609
625
  # Source archive ex: syslinux-1.2.3.tar.gz
610
- source_archive_regex = re.compile(r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$")
626
+ source_archive_regex = re.compile(
627
+ r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$")
611
628
  is_nested = False
612
629
  ignored_files_and_dir = []
613
630
 
@@ -644,7 +661,8 @@ class DropbearDirectoryListedSource(DirectoryListedSource):
644
661
  class SambaDirectoryListedSource(DirectoryListedSource):
645
662
  source_url = "https://download.samba.org/pub/samba/stable/"
646
663
  # Source archive ex: samba-1.2.3.tar.gz
647
- source_archive_regex = re.compile(r"^(samba-)(?P<version>[\w.-]*)(.tar.gz)$")
664
+ source_archive_regex = re.compile(
665
+ r"^(samba-)(?P<version>[\w.-]*)(.tar.gz)$")
648
666
  is_nested = False
649
667
  ignored_files_and_dir = []
650
668
 
@@ -652,7 +670,8 @@ class SambaDirectoryListedSource(DirectoryListedSource):
652
670
  class MtdUtilsDirectoryListedSource(DirectoryListedSource):
653
671
  source_url = "https://infraroot.at/pub/mtd/"
654
672
  # Source archive ex: mtd-utils-1.2.3.tar.bz2
655
- source_archive_regex = re.compile(r"^(mtd-utils-)(?P<version>[\w.-]*)(.tar.bz2)$")
673
+ source_archive_regex = re.compile(
674
+ r"^(mtd-utils-)(?P<version>[\w.-]*)(.tar.bz2)$")
656
675
  is_nested = False
657
676
  ignored_files_and_dir = []
658
677
 
@@ -660,15 +679,17 @@ class MtdUtilsDirectoryListedSource(DirectoryListedSource):
660
679
  class BareboxDirectoryListedSource(DirectoryListedSource):
661
680
  source_url = "https://www.barebox.org/download/"
662
681
  # Source archive ex: barebox-1.2.3.tar.bz2
663
- source_archive_regex = re.compile(r"^(barebox-)(?P<version>[\w.-]*)(.tar.bz2)$")
682
+ source_archive_regex = re.compile(
683
+ r"^(barebox-)(?P<version>[\w.-]*)(.tar.bz2)$")
664
684
  is_nested = False
665
685
  ignored_files_and_dir = []
666
686
 
667
687
 
668
688
  class LinuxDirectoryListedSource(DirectoryListedSource):
669
- source_url = "https://cdn.kernel.org/pub/linux/kernel/"
689
+ source_url = "https://mirrors.edge.kernel.org/pub/linux/kernel/"
670
690
  # Source archive ex: linux-1.2.3.tar.gz
671
- source_archive_regex = re.compile(r"^(linux-)(?P<version>[\w.-]*)(.tar.gz)$")
691
+ source_archive_regex = re.compile(
692
+ r"^(linux-)(?P<version>[\w.-]*)(.tar.gz)$")
672
693
  is_nested = True
673
694
  ignored_files_and_dir = [
674
695
  "Historic/",
@@ -690,7 +711,8 @@ class E2fsprogsDirectoryListedSource(DirectoryListedSource):
690
711
  "https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/"
691
712
  )
692
713
  # Source archive ex: e2fsprogs-1.2.3.tar.gz
693
- source_archive_regex = re.compile(r"^(e2fsprogs-)(?P<version>[\w.-]*)(.tar.gz)$")
714
+ source_archive_regex = re.compile(
715
+ r"^(e2fsprogs-)(?P<version>[\w.-]*)(.tar.gz)$")
694
716
  is_nested = True
695
717
  ignored_files_and_dir = ["testing/"]
696
718
 
@@ -1,5 +1,5 @@
1
1
  # fetchcode is a free software tool from nexB Inc. and others.
2
- # Visit https://github.com/nexB/fetchcode for support and download.
2
+ # Visit https://github.com/aboutcode-org/fetchcode for support and download.
3
3
  #
4
4
  # Copyright (c) nexB Inc. and others. All rights reserved.
5
5
  # http://nexb.com and http://aboutcode.org
@@ -55,7 +55,7 @@ class GitHubSource:
55
55
  namespace = purl.namespace
56
56
  base_path = "https://api.github.com/repos"
57
57
  api_url = f"{base_path}/{namespace}/{name}"
58
- response = utils.get_response(api_url)
58
+ response = utils.get_github_rest(api_url)
59
59
  homepage_url = response.get("homepage")
60
60
  vcs_url = response.get("git_url")
61
61
  github_url = "https://github.com"
@@ -124,6 +124,12 @@ def _get_github_packages(purl, version_regex, ignored_tag_regex, default_package
124
124
  version = tag
125
125
 
126
126
  version = version.strip("Vv").strip()
127
+ if "+" in version:
128
+ first, last = version.split("+")
129
+ first.replace("_", ".")
130
+ version = f"{first}+{last}"
131
+ else:
132
+ version = version.replace("_", ".")
127
133
  if not version or not version[0].isdigit():
128
134
  continue
129
135
 
@@ -159,7 +165,8 @@ class SquashfsToolsGitHubSource(GitHubSource):
159
165
 
160
166
 
161
167
  class PupnpGitHubSource(GitHubSource):
162
- version_regex = re.compile(r"\brelease-?(?P<version>(?:\d+(\.\d+){1,2}))\b")
168
+ version_regex = re.compile(
169
+ r"\brelease-?(?P<version>(?:\d+(\.\d+){1,2}))\b")
163
170
  ignored_tag_regex = None
164
171
 
165
172
 
@@ -174,7 +181,8 @@ class BpftoolGitHubSource(GitHubSource):
174
181
 
175
182
 
176
183
  class SqliteGitHubSource(GitHubSource):
177
- version_regex = re.compile(r"\bversion-?(?P<version>(?:\d+(\.\d+){1,2}))\b")
184
+ version_regex = re.compile(
185
+ r"\bversion-?(?P<version>(?:\d+(\.\d+){1,2}))\b")
178
186
  ignored_tag_regex = None
179
187
 
180
188
 
@@ -184,7 +192,8 @@ class LlvmGitHubSource(GitHubSource):
184
192
 
185
193
 
186
194
  class RpmGitHubSource(GitHubSource):
187
- version_regex = re.compile(r"rpm-(?P<version>[^-]+(?:-(?!release).*)?|-release)")
195
+ version_regex = re.compile(
196
+ r"rpm-(?P<version>[^-]+(?:-(?!release).*)?|-release)")
188
197
  ignored_tag_regex = None
189
198
 
190
199
 
@@ -227,7 +236,7 @@ class OpenSSLGitHubSource(GitHubSource):
227
236
  package_dict["type"] = "openssl"
228
237
  package_dict["namespace"] = None
229
238
  package_dict["name"] = "openssl"
230
- package_dict["version"] = package_dict["version"].replace("_", ".")
239
+ package_dict["version"] = package_dict["version"]
231
240
 
232
241
  yield package_from_dict(package_dict)
233
242
 
@@ -251,7 +260,7 @@ class ErofsUtilsGitHubSource(GitHubSource):
251
260
  package_dict["type"] = "generic"
252
261
  package_dict["namespace"] = None
253
262
  package_dict["name"] = "erofs-utils"
254
- package_dict["version"] = package_dict["version"].replace("_", ".")
263
+ package_dict["version"] = package_dict["version"]
255
264
 
256
265
  yield package_from_dict(package_dict)
257
266
 
@@ -279,7 +288,7 @@ class MiniupnpPackagesGitHubSource(GitHubSource):
279
288
  package_dict["type"] = "generic"
280
289
  package_dict["namespace"] = None
281
290
  package_dict["name"] = package_name
282
- package_dict["version"] = package_dict["version"].replace("_", ".")
291
+ package_dict["version"] = package_dict["version"]
283
292
 
284
293
  yield package_from_dict(package_dict)
285
294
 
@@ -1,5 +1,5 @@
1
1
  # fetchcode is a free software tool from nexB Inc. and others.
2
- # Visit https://github.com/nexB/fetchcode for support and download.
2
+ # Visit https://github.com/aboutcode-org/fetchcode for support and download.
3
3
  #
4
4
  # Copyright (c) nexB Inc. and others. All rights reserved.
5
5
  # http://nexb.com and http://aboutcode.org
@@ -317,7 +317,8 @@ def get_golang_versions_from_purl(purl):
317
317
  break
318
318
 
319
319
  if response is None or escaped_pkg is None or trimmed_pkg is None:
320
- logger.error(f"Error while fetching versions for {package_slug!r} from goproxy")
320
+ logger.error(
321
+ f"Error while fetching versions for {package_slug!r} from goproxy")
321
322
  return
322
323
 
323
324
  for version_info in response.split("\n"):
@@ -347,7 +348,7 @@ def trim_go_url_path(url_path: str) -> Optional[str]:
347
348
  # some advisories contains this prefix in package name, e.g. https://github.com/advisories/GHSA-7h6j-2268-fhcm
348
349
  go_url_prefix = "https://pkg.go.dev/"
349
350
  if url_path.startswith(go_url_prefix):
350
- url_path = url_path[len(go_url_prefix) :]
351
+ url_path = url_path[len(go_url_prefix):]
351
352
 
352
353
  parsed_url_path = urlparse(url_path)
353
354
  path = parsed_url_path.path
@@ -408,7 +409,8 @@ def fetch_version_info(version_info: str, escaped_pkg: str) -> Optional[PackageV
408
409
  f"Error while fetching version info for {escaped_pkg}/{escaped_ver} "
409
410
  f"from goproxy:\n{traceback.format_exc()}"
410
411
  )
411
- release_date = dateparser.parse(response.get("Time", "")) if response else None
412
+ release_date = dateparser.parse(
413
+ response.get("Time", "")) if response else None
412
414
 
413
415
  return PackageVersion(value=version, release_date=release_date)
414
416