Skip to content
Snippets Groups Projects
  1. Jun 29, 2023
  2. Jun 26, 2023
    • Antoine Lambert's avatar
      gogs: Ensure to list all repositories · b9815ed5
      Antoine Lambert authored
      In contrary of gitea listing which does not require to provide the q query
      parameter, it is required for the gogs case.
      
      After reading the gogs source code, the /repos/search endpoint generates
      a sql request of the form: "SELECT * FROM repos WHERE name LIKE '%{q}%'".
      By setting the q parameter value to "_", the LIKE clause acts as a
      wildcard and all repositories are ensured to be returned.
      
      Fixes #4698.
      b9815ed5
  3. Jun 23, 2023
  4. Jun 21, 2023
  5. Jun 20, 2023
  6. Jun 08, 2023
  7. Jun 07, 2023
  8. Jun 05, 2023
  9. May 31, 2023
  10. May 23, 2023
  11. May 19, 2023
    • Antoine R. Dumont's avatar
      lister: Allow lister to build url out of the instance parameter · 19bdeefb
      Antoine R. Dumont authored
      This pushes the rather elementary logic within the lister's scope. This will simplify
      and unify cli call between lister and scheduler clis. This will also allow to reduce
      erroneous operations which can happen for example in the add-forge-now.
      
      With the following, we will only have to provide the type and the instance, then
      everything will be scheduled properly.
      
      Refs. #4693
      Verified
      19bdeefb
  12. May 10, 2023
    • vlorentz's avatar
      Fix crash of 'swh lister run' when called without -l · 596e8c6c
      vlorentz authored
      ```
      $ swh lister run
      Traceback (most recent call last):
        File "/home/dev/.local/bin/swh", line 33, in <module>
          sys.exit(load_entry_point('swh.core', 'console_scripts', 'swh')())
        File "/home/dev/swh-environment/swh-core/swh/core/cli/__init__.py", line 144, in main
          return swh(auto_envvar_prefix="SWH")
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 1130, in __call__
          return self.main(*args, **kwargs)
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 1055, in main
          rv = self.invoke(ctx)
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 1657, in invoke
          return _process_result(sub_ctx.command.invoke(sub_ctx))
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 1657, in invoke
          return _process_result(sub_ctx.command.invoke(sub_ctx))
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 1404, in invoke
          return ctx.invoke(self.callback, **ctx.params)
        File "/home/dev/.local/lib/python3.9/site-packages/click/core.py", line 760, in invoke
          return __callback(*args, **kwargs)
        File "/home/dev/.local/lib/python3.9/site-packages/click/decorators.py", line 26, in new_func
          return f(get_current_context(), *args, **kwargs)
        File "/home/dev/swh-environment/swh-lister/swh/lister/cli.py", line 68, in run
          get_lister(lister, **config).run()
        File "/home/dev/swh-environment/swh-lister/swh/lister/__init__.py", line 75, in get_lister
          raise ValueError(
      ValueError: Invalid lister None: only supported listers are ['arch', 'aur', 'bitbucket', 'bower', 'cgit', 'conda', 'cpan', 'cran', 'crates', 'debian', 'fedora', 'gitea', 'github', 'gitlab', 'gnu', 'gogs', 'golang', 'hackage', 'hex', 'launchpad', 'maven', 'nixguix', 'npm', 'nuget', 'opam', 'packagist', 'phabricator', 'pubdev', 'puppet', 'pypi', 'rubygems', 'sourceforge', 'tuleap']
      ```
      596e8c6c
  13. Apr 27, 2023
  14. Apr 26, 2023
  15. Apr 13, 2023
  16. Mar 22, 2023
  17. Mar 21, 2023
  18. Mar 14, 2023
  19. Mar 10, 2023
    • Antoine Lambert's avatar
      bitbucket: Skip buggy page when listing · 5d0f35aa
      Antoine Lambert authored
      Some URLs of the repositories endpoint from BitBucket REST API 2.0
      can return an error 500. In that case, skip the buggy repositories
      page and get next one to continue listing and avoid to end it
      prematurely.
      
      Related to #4239
      v4.4.0
      5d0f35aa
  20. Mar 09, 2023
  21. Feb 17, 2023
  22. Feb 16, 2023
  23. Feb 10, 2023
  24. Feb 02, 2023
  25. Jan 02, 2023
  26. Dec 19, 2022
  27. Dec 14, 2022
  28. Dec 05, 2022
Loading