Skip to content
Snippets Groups Projects
  1. Nov 08, 2023
    • Antoine Lambert's avatar
      package: Avoid processing duplicated package release multiple times · 54d8c7df
      Antoine Lambert authored
      It might exist cases where multiple versions of a package target the same
      release object.
      
      For instance a rpm package has one specific version for each distribution
      release but they can target the same intrinsic version and source package
      contents are exactly the same.
      
      So avoid downloading and processing a package version if the corresponding
      extid has already been encountered during the current loading by maintaining
      a mapping between extids and release swhids.
      54d8c7df
  2. Oct 04, 2023
  3. Sep 28, 2023
  4. Sep 25, 2023
    • Antoine Lambert's avatar
      rpm: Ensure correct package versions ordering · 506a24e0
      Antoine Lambert authored
      Previously package versions were sorted according to packages dict
      keys but this is not reliable as older versions can be sorted after
      newer ones.
      
      Prefer to sort package versions according to their build time then
      as it produces a correct ordering and ensure the HEAD branch alias
      will target the most recent version of a package.
      506a24e0
  5. Sep 19, 2023
  6. Sep 18, 2023
  7. Sep 14, 2023
  8. Aug 28, 2023
  9. Aug 08, 2023
  10. Jul 25, 2023
    • Antoine Lambert's avatar
      package/utils: Prevent content automatic deflate in download function · 9f187c9d
      Antoine Lambert authored
      The python requests library automatically deflate downloaded content bytes
      if the response header content-encoding is set to a supported encoding.
      
      However some HTTP servers can serve a tarball with content-type set to
      application/x-gzip and content-encoding set to gzip which is wrong as
      tarball is uncompressed while downloading it.
      
      That behavior can make a file checksum check after download fail as the
      expected checksum was computed on the compressed version of the file, not
      the uncompressed one.
      
      So ensure to prevent automatic deflate by reading response raw content
      instead of using the iter_content method when the content-type and
      content-encoding headers are both set to gzip format.
      9f187c9d
  11. Jul 10, 2023
  12. Jul 04, 2023
  13. Jun 21, 2023
  14. Jun 08, 2023
  15. Jun 06, 2023
  16. Jun 01, 2023
    • Jérémy Bobbio (Lunar)'s avatar
      Fix documentation build issues because of Sphinx limitations · eeebfd2f
      Jérémy Bobbio (Lunar) authored
      The recent refactoring done in abe741a9, then used in swh-loader-svn@72dfc411,
      introduced build issues with the documentation:
      
          …/swh/loader/svn/directory.py:docstring of swh.loader.svn.directory.SvnDirectoryLoader.snapshot:1:
              WARNING: more than one target found for cross-reference 'Snapshot': swh.fuse.fs.artifact.Snapshot, swh.model.model.Snapshot
          …/swh/loader/svn/directory.py:docstring of swh.loader.svn.directory.SvnDirectoryLoader.cnts:1:
              WARNING: more than one target found for cross-reference 'Content': swh.fuse.fs.artifact.Content, swh.model.from_disk.Content, swh.model.model.Content
          …/swh/loader/svn/directory.py:docstring of swh.loader.svn.directory.SvnDirectoryLoader.dirs:1:
              WARNING: more than one target found for cross-reference 'Directory': swh.fuse.fs.artifact.Directory, swh.model.from_disk.Directory, swh.model.model.Directory
      
      vlorentz explained the cause:
      
      > SvnDirectoryLoader inherits from BaseDirectoryLoader which inherits
      > from NodeLoader, which defines:
      >
      >     self.snapshot: Optional[Snapshot] = None
      >
      > and it loses the annotation's value (only keeps its string
      > representation) because of the inheritence:
      > https://github.com/sphinx-doc/sphinx/issues/10124
      
      In order to fix this, we now use a qualified type reference in the
      initializers of NodeLoader and BaseDirectoryLoader.
      eeebfd2f
  17. May 31, 2023
  18. May 30, 2023
  19. May 25, 2023
  20. May 15, 2023
  21. May 05, 2023
  22. Apr 26, 2023
    • Antoine R. Dumont's avatar
      NodeLoader: Rename checksums_computation to checksum_layout · f84cbc26
      Antoine R. Dumont authored
      NodeLoader as in {Content|Directory}Loader. Those can directly ingest respectively
      a (remote) file (as Content) or a (remote) tarball artifact (as Directory). They are
      currently listed by the nixguix lister. Depending on the checksum_layout (standard,
      nar), they will compute checksums differently. With "standard" checksum layout, they are
      computing usual "swh" checksums (sha1, sha1_git, ...) and validate them. With "nar"
      checksum layout, they will compute the "nar" checksums and store those (once validated)
      as ExtID.
      
      This keeps the node loader construtor retro-compatible with the previous version. It
      still deals with `checksums_computation` as `checksum_layout` and falls back to
      "standard" layout when nothing is provided.
      
      Refs. swh/meta#4979
Loading