Skip to content
Snippets Groups Projects
  1. Sep 15, 2022
  2. Jul 11, 2022
  3. Jul 08, 2022
  4. Jul 07, 2022
  5. Jul 06, 2022
    • Antoine Lambert's avatar
      Fix loading of CVS repositories with non valid UTF-8 paths · d89f8d13
      Antoine Lambert authored
      Some CVS repositories have paths which are non valid UTF-8 (typically
      ISO-8859-1 ones) but the loader implementation assumed all paths can
      be safely encoded to UTF-8 and was raising UnicodeEncodeError when
      attempting to encode non UTF-8 paths.
      
      That commit modifies the way CVS paths are handled by the loader by
      using their raw bytes representation instead of their UTF-8 decoded
      string representation.
      
      Also rcsparse.rcsfile constructor has been modified to take bytes path
      as argument instead of an unicode one in order to be able to successfully
      open non UTF-8 paths.
      
      Such CVS repositories can now be successfully loaded, either using rsync
      or pserver protocol.
      
      Related to T3980
      d89f8d13
  6. Jun 17, 2022
  7. May 20, 2022
  8. May 10, 2022
  9. May 09, 2022
  10. May 02, 2022
  11. Apr 27, 2022
    • Antoine Lambert's avatar
      tasks: Simplify implementation and add tests for listed origins · 4fc65233
      Antoine Lambert authored
      Recent changes in swh-scheduler add new parameters to the celery tasks
      produced from swh.scheduler.model.ListedOrigin instances.
      
      So ensure to handle any new parameters by not hardcoding the expected
      ones in task signatures.
      
      Remove unsafe use of unnamed task parameters.
      
      Add new tests checking task parameters produced from ListedOrigin
      instances do no raise error when attempting to create a cvs loader.
      
      Related to T4187
  12. Apr 26, 2022
  13. Apr 25, 2022
  14. Apr 22, 2022
  15. Apr 21, 2022
  16. Apr 14, 2022
    • Antoine Lambert's avatar
      loader: Fix rsync failures by retrying associated commands · 9f5456b6
      Antoine Lambert authored
      Fetching CVS repository data using rsync often fails with the following error
      (especially with archived repositories hosted on sourceforge):
      
      rsync error: some files/attrs were not transferred (see previous errors) (code 23)
      
      It seems the only way to mitigate that issue is to retry the rsync command
      until it succeeds.
      
      So add a rsync_retry decorator and apply it to a new method in the loader
      wrapping the call to subprocess.run executing the rsync command.
      
      Also use rsync option to compress file data during the transfer.
  17. Apr 08, 2022
  18. Apr 06, 2022
  19. Mar 22, 2022
    • Antoine Lambert's avatar
      pytest: Exclude build directory for tests discovery · ecb447a3
      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.
      ecb447a3
  20. Feb 18, 2022
  21. Feb 10, 2022
  22. Feb 07, 2022
  23. Jan 07, 2022
  24. Jan 06, 2022
  25. Dec 16, 2021
  26. Dec 13, 2021
  27. Dec 09, 2021
    • Stefan Sperling's avatar
      fix Log keyword expansion with trailing whitespace in prefix · a66c6b49
      Stefan Sperling authored
      Our expansion of the Log keyword was slightly wrong. We need to
      trim trailing whitespace from the "prefix" line content which
      preceeds the Log keyword when we write out line content which
      followed the Log keyword. Update the Log expansion example given
      in a comment to document this (see there for details; this behaviour
      of CVS is hard to explain without illustration).
      
      Found while testing conversion of the OpenBSD CVS repository.
      Add a new test which uses an RCS file from this repository to
      reproduce this problem.
      a66c6b49
    • Stefan Sperling's avatar
      support custom keywords during rsync:// conversion · dcb895ca
      Stefan Sperling authored
      CVS supports the definition of custom keywords. A common use case
      for custom keywords is to use the project name as a keyword. This
      avoids confusion when files are copied between projects using CVS,
      in case files contain a keyword that is in use by both projects.
      In other words, a file will retain its expanded custom keyword from
      project A, allowing to trace the initial file version back to its
      origin, after the file was copied into project B's CVS repository.
      
      This feature is in active use by OpenBSD and NetBSD, for example.
      Existing conversions of their CVS repositories to Git expand
      the corresponding custom keywords as well, and so should we.
      Historically, X11 and FreeBSD were also using custom keywords.
      
      During conversion via rsync:// we copy the CVSROOT directory and the
      desired CVS module from the rsync server. The file CVSROOT/config
      contains directives which configure the use of custom keywords.
      Parse this file and expand keywords accordingly when checking out
      versions of files from our local copy of the CVS repository.
      
      For now, we only support custom keywords which correspond to the
      Id keyword since this is known to be in common use by projects.
      The latest releases of CVS (1.12.x) have optional support for arbitrary
      keyword aliases via custom keywords. Support for this could be added
      later, should there be a need to do so. In any case, the pserver access
      method already supports arbitrary custom keywords because such keywords
      will be expanded by the CVS server when we check out files from it.
      
      While here, optimize our use of rsync a bit.
      Fetch only CVSROOT and the desired CVS module over rsync, rather
      than fetching the entire CVS repository directory, which may contain
      unrelated CVS modules that require disk space but will not be used.
      dcb895ca
  28. Dec 08, 2021
    • Stefan Sperling's avatar
      fix the top-level directory path of imported CVS modules · 965629d6
      Stefan Sperling authored
      CVS modules were imported with the a top-level directory which
      matched the module name. For a CVS origin such as
      rsync://cvs.savannah.gnu.org/sources/dino/dino
      the top-level directory contained a single directory called "dino"
      with all expected files and directories residing inside this directory.
      E.g. the dino project's top-level README file would be stored at
      the path "dino/README" instead of just "/README".
      
      Import project files directly into the top-level directory, as expected.
      Adjust test expectations accordingly.
      965629d6
  29. Dec 07, 2021
    • Stefan Sperling's avatar
      update test suite documentation · 9e8f931e
      Stefan Sperling authored
      Mention that cvs is a required dependency for running the tests.
      
      Document that some protocol schemes are not fully covered by
      the test suite (as suggested by vlorentz in D6678).
    • Stefan Sperling's avatar
      make CVS loader create one snapshot per visit · 5298a8f9
      Stefan Sperling authored
      The CVS loader used to create one snapshot per loaded revision.
      As pointed out by ardumont in D6745, this is wrong; Other loaders
      create only one snapshot per visit.
      Fix this issue and adjust tests expectations accordingly.
      
      While here, show SHW IDs of loaded revisions and snapshots in regular
      "info" log output, rather than only in "debug" log output. Previously,
      only CVS-related data was shown at the "info" log level. Showing both
      CVs and SWH data in log output is more informative.
      5298a8f9
    • Stefan Sperling's avatar
      fix expansion of the Log keyword with rsync origins · 099959bb
      Stefan Sperling authored
      Align our expansion of Log keywords with the behaviour of a real
      CVS server. With this, such keywords expand the same way over
      the pserver and rsync access methods.
      
      This is the last change required to consistently ingest CVS's own
      CVS repository over both pserver and rsync. Otherwise we get commit
      hash mis-matches due to differently expanded Log keywords.
      099959bb
Loading