Skip to content
Snippets Groups Projects
  1. Jun 08, 2021
  2. May 06, 2021
  3. Apr 22, 2021
  4. Mar 10, 2021
    • Simon Steinbeiss's avatar
      xfce-build: Always pick the latest stable release · 54119a26
      Simon Steinbeiss authored
      Alternatively we could also pick the latest overall release, but the
      downside would be that the container could jump back and forth between
      4.17 dev and 4.16 maintenance releases.
      git describe --tags `git rev-list --tags --max-count=1` --match "$NAME*"
      54119a26
  5. Mar 05, 2021
  6. Feb 02, 2021
  7. Jan 30, 2021
  8. Jan 19, 2021
  9. Jan 12, 2021
  10. Jan 08, 2021
  11. Jan 02, 2021
  12. Dec 22, 2020
  13. Dec 18, 2020
  14. Dec 15, 2020
  15. Dec 14, 2020
  16. Dec 13, 2020
  17. Dec 09, 2020
  18. Dec 08, 2020
    • O H's avatar
      use strict CFLAGS to catch common mistakes in ci pipeline · b7e6c14a
      O H authored and Romain Bouvier's avatar Romain Bouvier committed
      
      A number of common coding errors are missed by the compiler.
      They turn up only after release once packages are build with full CFLAGS.
      
      Adjust the gitlab CI to catch such errors:
      
      -Wall enables a number of diagnostics
      
      -Wno-deprecated-declarations will hide a bogus warning.
      As long as an API exists it can be used. Noone beside a curious developer
      will actually take the time to do research and look for the replacment.
      In the wild this warning is just noise in the build log.
      
      -Werror=implicit-function-declaration will point out missing includes.
      In case such errors are not fixed, the resulting code will assume int
      for function arguments and function return values.
      
      -Werror=return-type will point out incorrect return values. The caller
      will most likely receive just garbage.
      
      Signed-off-by: default avatarOlaf Hering <olaf@aepfle.de>
      b7e6c14a
  19. Dec 04, 2020
  20. Nov 09, 2020
  21. Nov 02, 2020
  22. Oct 22, 2020
  23. Oct 03, 2020
    • Gaël Bonithon's avatar
      xdt-autogen: Various small improvements · ec0295a9
      Gaël Bonithon authored
      - quoting
      - replace backticks with $()
      - replace 'test "x$var"' with 'test "$var"'
      - replace $(pwd) with $PWD
      - simplify the command to search for languages
      - do not use subshell when unneeded
      - do not use redirection when unneeded
      - directly test command exit codes instead of using $?
      - readability (useless ";", indenting)
      ec0295a9
    • Gaël Bonithon's avatar
      xdt-autogen: Properly handle whitespaces in filenames · 72483f0e
      Gaël Bonithon authored
      and more generally special characters different from '\1'.
      
      This is achieved by replacing the filename separator ' ' with '\1' in
      lookup_configure_ac_*(), and the default IFS=' \t\n' with IFS='\1', but
      only where necessary: the default IFS is usually required for things to
      go as expected.
      
      So we have to do an IFS round-trip substitution around each "for" loop
      on filenames, just before and just after pathname expansion by the
      shell.
      
      Additionally, when running $XDT_PROG_ACLOCAL, one has to define some
      new variables ACLOCAL_DIR and use conditional parameter expansion, to
      properly set the program flags:
      $XDT_PROG_ACLOCAL ${ACLOCAL_DIR:+-I "$ACLOCAL_DIR"}
      
      Finally, one has to take care of some non optional quoting
      (strictly speaking, some are optional in this commit, but I preferred
      not to cut as close as possible and to keep an overall coherence).
      72483f0e
    • Gaël Bonithon's avatar
      xdt-autogen: Use sed instead of tr to replace strings · 3e01e213
      Gaël Bonithon authored
      The purpose of the current code seems to be to replace the strings
      '\t', '\n' and '\\' by a single space ' ', not the characters
      "horizontal tab", "line feed" and "backslash" by a single space.
      
      So the right command to do this is sed, not tr, which doesn't do the
      job expected here.
      3e01e213
  24. Sep 18, 2020
  25. Jul 18, 2020
  26. Jul 12, 2020
Loading