Skip to content
Snippets Groups Projects
  1. Sep 26, 2022
  2. Sep 21, 2022
  3. Sep 20, 2022
  4. Sep 19, 2022
  5. Sep 13, 2022
  6. Sep 09, 2022
  7. Sep 05, 2022
  8. Aug 30, 2022
  9. Aug 29, 2022
  10. Aug 26, 2022
  11. Aug 19, 2022
  12. Aug 08, 2022
    • vlorentz's avatar
      Initialize 'status' before try block · 43597c48
      vlorentz authored
      It seems that despite setting it in the 'except BaseException' block,
      it is still occasionally undefined in the 'finally' block when
      triggered by a SystemExit exception.
      
      This should hopefully prevent UnboundLocalError from
      being raised from the 'finally' block from now on
      43597c48
  13. Aug 03, 2022
  14. Jun 29, 2022
  15. Jun 21, 2022
  16. Jun 17, 2022
    • Franck Bret's avatar
      Arch Linux loader · b6af2638
      Franck Bret authored
      Fetch Arch linux packages from lister discovered origins.
      For each origin it get versions from extra_loader_arguments['artifacts']
      
      Arch Linux package can comes as .xz or .zst file archive.
      Support for .zst (Zstandard compression) has been requested with D7993.
      
      Related to T4233
      b6af2638
  17. Jun 07, 2022
    • Antoine Lambert's avatar
      package/archive: Handle tarball artifact with null time · d925d06e
      Antoine Lambert authored
      An artifact without time info can be provided in the artifacts list
      parameter of the loader (for instance last modification date
      is not available for tarballs coming from github releases).
      
      That case was not handled by the archive loader wich was resulting
      in loading error so add fix for it.
      d925d06e
  18. May 20, 2022
  19. May 16, 2022
    • Antoine Lambert's avatar
      loader: Ensure success is False when entering exception handler · d9a6ba05
      Antoine Lambert authored
      The post_load method of a loader can raise an exception so we must
      ensure to turn back the success variable to False in that case.
      
      For instance, the subversion loader post_load checks that latest
      exported revision is consistent with what the official subversion
      client produces. If it is not an exception will be raised to set
      the visit status to partial.
      v3.4.2
      d9a6ba05
  20. May 13, 2022
  21. May 06, 2022
  22. May 04, 2022
  23. May 03, 2022
    • Antoine Lambert's avatar
      maven: Use most recent release of a package as default version · c06305e7
      Antoine Lambert authored
      artifacts list sent by the lister is not guaranteed to be sorted
      by artifact time so the last element is not necessarily the most
      recent artifact.
      
      So ensure to use the most recent artifact as default version by
      sorting the artifacts by their ISO 8601 date representation
      (designed for lexicographical sort). If a date failed to be
      parsed by the lister (edge case but can happen), the time value
      will be an empty string so the sort operation will not end up
      with error.
      
      Related to T3874
      c06305e7
  24. May 02, 2022
Loading