- Oct 29, 2022
-
-
Romain Bouvier authored
-
- Sep 29, 2022
-
-
This patch enables GLib deprecation warnings in all XFCE apps and libraries containing function calls such as XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.56.0]) in their configure.ac.in files in the following way: AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_56, Prevent post 2_56 APIs) AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_56, Ignore post 2_56 APIs) The 3rd argument passed to XDT_CHECK_PACKAGE([GLIB], ...) selects the GLib API version. So XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.44.0]) would add: AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_44, Prevent post 2_44 APIs) AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_44, Ignore post 2_44 APIs) The enabled warnings can be overridden by the app or library by using the two AC_DEFINEs after calling XDT_CHECK_PACKAGE([GLIB], ...). Something like XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.45.8]) will make the XFCE app or library uncompilable because 2.45 isn't a stable GLib release. See also: apps/xfce4-notifyd#34 Signed-off-by:
Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
-
- Sep 14, 2022
-
-
This avoids situations like `export EGREP=egrep; ./autogen.sh`
-
Gaël Bonithon authored
-
Suitable for viewing logs in tools such as `journalctl`, in particular adding location information to the message. Requires `GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_56` to work properly in GLib logging macros (not documented, see `glib/gmessages.h`).
-
-
- Aug 25, 2022
-
-
Romain Bouvier authored
- libical-dev for orage - libgtk-layer-shell-dev for wayland stuff
-
- Aug 24, 2022
-
-
Romain Bouvier authored
- Since dbfc8c88, distcheck is run even when there is only a commit in po/ - This is because "extends" merges hashes, but not array, so the ".make" rules are overriden by the "distcheck" rule - Use !reference to force the usage of ".make" rules in distcheck (and this avoid duplicating the "if" everywhere)
-
- Aug 19, 2022
-
-
- May 04, 2022
-
-
Romain Bouvier authored
- This is the new Ubuntu LTS version - Reorder packages installations - Install gtksourceview5/gtk4-dev libs - Bump docker-dind to latest version
-
- Apr 07, 2022
-
-
Romain Bouvier authored
- This is needed by autotools when using gettext instead of intltool
-
Romain Bouvier authored
- Since thunar!153, we have thunar and thunarx documentations, which is not supported by the script - This break the container build
-
- Mar 22, 2022
-
-
Kevin Bowen authored
-
- Mar 04, 2022
-
-
If you're using SELinux locally you will have to pass the "z" parameter to make the volume mounted in the container readable.
-
- Feb 07, 2022
-
-
- Feb 01, 2022
-
-
-
-
The use of `m4_define` is also found in `configure.ac` files, with or without a version tag, which is not a problem. The use of `XDT_VERSION_INIT` is probably always exclusive of the use of `m4_define`, but the filter by grep does not bother.
-
- Jan 29, 2022
-
-
Gaël Bonithon authored
Fixes #54.
-
Gaël Bonithon authored
-
- Oct 13, 2021
-
-
Romain Bouvier authored
-
Romain Bouvier authored
- Fix #53
-
Romain Bouvier authored
- Type from 64bc6653
-
Romain Bouvier authored
-
- Oct 11, 2021
-
-
Romain Bouvier authored
-
- Sep 24, 2021
-
-
Gaël Bonithon authored
This adds the new release to the Appdata file if the `<releases>` tag exists. This file is only searched in the root of the repository and in the `data` directory, and must be unique.
-
- Sep 16, 2021
-
-
Simon Steinbeiss authored
-
- Sep 06, 2021
-
-
Simon Steinbeiss authored
This stage is only run for tags and is essentially the same as the distcheck stage.
-
- Aug 19, 2021
-
-
Romain Bouvier authored
-
- Jul 26, 2021
-
-
Jan Ziak authored
Signed-off-by:
Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
-
- Jul 25, 2021
-
-
Romain Bouvier authored
-
Romain Bouvier authored
-
- Jul 05, 2021
-
-
Romain Bouvier authored
- If 4.17.x is available, pick this one - If 4.16.x is the higher (on component without 4.17 yet), pick it - "grep" the component name to remove any "xfce-" release tags - Enhance MR!49
-
- Jun 08, 2021
-
-
* Abort on failure in `sanity_checks()` * Always test if the version specified exists as a git tag * Always have a default choice, indicated by a capital letter * Remove unused function `get_on_with_it()`
-
Works better on OpenBSD now.
-
- May 06, 2021
-
-
- Apr 22, 2021
-
-
Gaël Bonithon authored
Fixes #44.
-
Romain Bouvier authored
- Fix issue #46 - This code path is almost never used (we don't really test minGW/windows), but let's fix this anyway
-
- Mar 10, 2021
-
-
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*"
-
- Mar 05, 2021
-
-
Romain Bouvier authored
- So we are sure to not print any warning because of a missing m4/ folder on first aclocal run
-