1. 17 Sep, 2024 7 commits
  2. 12 Sep, 2024 1 commit
  3. 11 Sep, 2024 6 commits
  4. 06 Sep, 2024 5 commits
  5. 04 Sep, 2024 6 commits
  6. 03 Sep, 2024 2 commits
    • Xavier Thompson's avatar
      software/theia: Make each clone favicon different · e1e4ed3f
      Xavier Thompson authored
      Fix clone favicon being the same as the main instance favicon - this
      is an uncaught regression. Add a test for it. Also give each clone a
      different favicon, in case there are several clones.
      
      See merge request nexedi/slapos!1637
      e1e4ed3f
    • Carlos Ramos Carreño's avatar
      component/inkscape: Compile with recent enough GCC · 017a3e6d
      Carlos Ramos Carreño authored
      When using older GCC versions (e.g. 8.3.0), Inkscape fails with an error
      similar to:
      
      ```C++
      /srv/slapgrid/slappart15/srv/runner/instance/slappart7/tmp/shared/inkscape/31c6ae5c72c5325d479cca38e62b82bb/.build/inkscape-1.3.2_2023-11-25_091e20ef0f/src/ui/tools/booleans-subitems.cpp: In lambda function:
      /srv/slapgrid/slappart15/srv/runner/instance/slappart7/tmp/shared/inkscape/31c6ae5c72c5325d479cca38e62b82bb/.build/inkscape-1.3.2_2023-11-25_091e20ef0f/src/ui/tools/booleans-subitems.cpp:213:61: error: cannot deduce template arguments for ‘uniform_real_distribution’ from ()
           auto ranf = [&] { return std::uniform_real_distribution()(gen); };
      ```
      
      This may be an instance of this problem:
      https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81486
      
      In any case, setting a minimum version of 10.5 for GCC when building
      Inkscape, as done in this commit, seems to fix this.
      
      See merge request nexedi/slapos!1634
      017a3e6d
  7. 02 Sep, 2024 5 commits
  8. 29 Aug, 2024 5 commits
  9. 16 Aug, 2024 3 commits
    • Xavier Thompson's avatar
      software/theia: Improve resiliency tests · e5265943
      Xavier Thompson authored
      e5265943
    • Thomas Gambier's avatar
      wendelin.core: v↑ 2.0.alpha3..post9 -> 2.0.alpha3.post22 · b83c9bcc
      Thomas Gambier authored
      wendelin.core 2.0.alpha3.post22 supports being installed by newest
      version of pip/setuptools
      
      See !1602 (comment 212191)
      b83c9bcc
    • Xavier Thompson's avatar
      software/rapid-cdn: Remove useless update-command · 27e49380
      Xavier Thompson authored
      The rapid-cdn software.cfg manually downloads/copies a setup.py and
      a software.py into a folder and then installs it as a develop egg.
      
      Installing a develop-egg creates a .egg-info or a .dist-info into
      the source folder.
      
      In rapid-cdn/software.cfg an update-command resulted in the folder
      being deleted and recreated on every update for no gain. This also
      deleted the .egg-info or .dist-info, breaking the develop egg
      installation.
      
      With the zc.buildout 3.0.1+slapos003 release, zc.recipe.egg:develop
      is now able to detect such cases and trigger the reinstallation of
      the .egg-info or .dist-info. Still, this update-command remains the
      cause of useless computations.
      27e49380