- Apr 26, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '2.9.0' with Debian dir 5b1b768ef69f49dc6bf2cc5fdf9408e782cd6f0d
-
vlorentz authored
So it can be reused by other packages without importing lister.py itself
-
vlorentz authored
This will allow the GitHub Metadata Fetcher to reuse the logic by importing the GitHubSession class.
- Apr 25, 2022
-
-
Antoine Lambert authored
That processing is already handled in the base Lister class constructor.
-
Jenkins for Software Heritage authored
Update to upstream version '2.8.2' with Debian dir 5550bcbdcaecdac686273c17f214027e9072d818
-
- Apr 21, 2022
-
-
vlorentz authored
Authentication is handled directly in the session
-
Antoine Lambert authored
-
Antoine Lambert authored
Fix sourceforge origin URL for bzr projects, http://project.bzr.sourceforge.net/bzrroot/project redirects to http://project.bzr.sourceforge.net/bzr/project. Handle bzr projects with multiple branches, one listed origin must be created per branch. Discard bzr projects that no longer exist from listing.
-
Antoine Lambert authored
The Attic folder that can sometimes be found in a CVS respository is a special one used by CVS to store RCS files and should not be considered as a valid module name when listing CVS projects.
-
Antoine Lambert authored
That hook can be frustrating as it can discard a long commit message if it finds a typo in it so better removing it.
-
- Apr 14, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '2.8.1' with Debian dir 55ba6749d0db3861268f08c489a7f2906aae571d
-
Antoine R. Dumont authored
Related to T3874
-
Antoine R. Dumont authored
-
Antoine R. Dumont authored
-
Jenkins for Software Heritage authored
Update to upstream version '2.8.0' with Debian dir 3f7128be839b28aaa9e87d45bc9e696c55c765c4
- Apr 13, 2022
-
-
Antoine R. Dumont authored
This aligns the behavior with other listers (e.g. sourceforge, ...) to continue listing if some information is not retrievable at all. Related to T3874
-
Antoine R. Dumont authored
Without this, the lister legitimately cannot list anything.
-
- Apr 08, 2022
-
-
Antoine Lambert authored
-
Antoine Lambert authored
Related to T3922
-
Antoine Lambert authored
black is considered stable since release 22.1.0 and the version we are currently using is quite outdated and not compatible with click 8.1.0, so it is time to bump it to its latest stable release. Please note that E501 pycodestyle warning related to line length is replaced by B950 one from flake8-bugbear as recommended by black. https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length Related to T3922
-
- Apr 06, 2022
-
-
Antoine Lambert authored
pytest-postgresql 3.1.3 and pytest-redis 2.4.0 added support for pytest >= 7 so we can now drop the pytest pinning.
-
- Mar 28, 2022
-
-
Franck Bret authored
The Crates lister retrieves crates package for Rust lang. It basically fetches https://github.com/rust-lang/crates.io-index.git to a temp directory and then walks through each file to get the crate's info.
-
- Mar 22, 2022
-
-
Antoine Lambert authored
Due to test modules being copied in subdirectories of the build directory by setuptools, it makes pytest fail by raising ImportPathMismatchError exceptions when invoked from root directory of the module. So ignore the build folder to discover tests.
-
- Mar 11, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '2.7.2' with Debian dir fbe7870c6fbb583740ce3b5fa5a30d8542f51507
-
Antoine Lambert authored
Commit 6a747955 modified the origin URLs for CVS projects hosted on SourceForge but it also broke incremental listing due to a no longer valid assertion, so fix that issue.
- Feb 18, 2022
-
-
Jenkins for Software Heritage authored
Update to upstream version '2.7.1' with Debian dir 312456a0d66f54dbca3006c9cf938ce2421c0d65
-
Antoine R. Dumont authored
The decorator is dropped on `get_origins_from_page` as we cannot retry an iterator consumption anyway. Related to T3948