1. 12 Jul, 2019 13 commits
  2. 24 Jun, 2019 1 commit
  3. 07 Jun, 2019 1 commit
  4. 29 May, 2019 1 commit
  5. 08 May, 2019 2 commits
  6. 07 May, 2019 1 commit
  7. 06 May, 2019 8 commits
  8. 30 Apr, 2019 2 commits
  9. 29 Apr, 2019 3 commits
  10. 26 Apr, 2019 5 commits
  11. 25 Apr, 2019 3 commits
    • Killian Lufau's avatar
      perl: disable build-time probing · ede1ed24
      Killian Lufau authored
      Building perl on chrome OS crashes because of probing,
      during which LD_LIBRARY_PATH is overwritten.
      Instead of fixing this bug we can just use this patch created for
      another reason but that removes probing:
      https://sources.debian.org/src/perl/5.28.1-6/debian/patches/fixes/storable-probing/
      
      There is a test result for this, even if it fails for erp5 and seleniumserver, it feels like it's unrelated to this change: 
      https://nexedijs.erp5.net/#/test_result_module/20190423-28D5C67E?uid=2020442141
      
      /cc @tomo @kazuhiko @jm
      
      /reviewed-on !551
      ede1ed24
    • Kazuhiko Shiozaki's avatar
    • Vincent Pelletier's avatar
      logrotate: version up to 3.15 . · 68d93ac2
      Vincent Pelletier authored
      Fixes FTBFS on recent gcc:
      logrotate.c: In function 'prerotateSingleLog':
      logrotate.c:1328:6: error: 'strncat' specified bound depends on the length of the source argument [-Werror=stringop-overflow=]
            strncat(tempstr, rotNames->baseName, baseLen - extLen);
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      logrotate.c:1320:19: note: length computed here
        size_t baseLen = strlen(rotNames->baseName);
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~
      logrotate.c:1347:2: error: 'strncat' specified bound depends on the length of the source argument [-Werror=stringop-overflow=]
        strncat(tempstr, rotNames->baseName,
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         strlen(rotNames->baseName) - strlen(log->extension));
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      logrotate.c:1348:3: note: length computed here
         strlen(rotNames->baseName) - strlen(log->extension));
         ^~~~~~~~~~~~~~~~~~~~~~~~~~
      cc1: all warnings being treated as errors
      68d93ac2