Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / weston
Commits:
-
c1616cab
by Dylan Aïssi at 2024-09-20T09:39:46+02:00
-
f3af2e17
by Dylan Aïssi at 2024-09-20T09:46:34+02:00
4 changed files:
Changes:
1 | +weston (14.0.0-3) UNRELEASED; urgency=medium
|
|
2 | + |
|
3 | + * Enable tests (build time and autopkgtest) on armhf since
|
|
4 | + they are now successful.
|
|
5 | + * Bump minimum version of libdisplay-info-dev to 0.2.0,
|
|
6 | + it's required to get a better color management like HDR support.
|
|
7 | + |
|
8 | + -- Dylan Aïssi <daissi@debian.org> Fri, 20 Sep 2024 09:37:15 +0200
|
|
9 | + |
|
1 | 10 | weston (14.0.0-2) unstable; urgency=medium
|
2 | 11 | |
3 | 12 | [ Simon McVittie ]
|
... | ... | @@ -12,7 +12,7 @@ Build-Depends: debhelper-compat (= 13), |
12 | 12 | libcairo2-dev (>= 1.10.0),
|
13 | 13 | libcolord-dev (>= 0.1.27),
|
14 | 14 | libdbus-1-dev,
|
15 | - libdisplay-info-dev,
|
|
15 | + libdisplay-info-dev (>= 0.2.0),
|
|
16 | 16 | libdrm-dev (>= 2.4.108),
|
17 | 17 | libegl1-mesa-dev (>= 9.0~),
|
18 | 18 | libgbm-dev (>= 17.2),
|
... | ... | @@ -19,7 +19,7 @@ override_dh_auto_test: |
19 | 19 | mkdir -p $(CURDIR)/debian/tmp/tmp/xdgruntimedir
|
20 | 20 | # Only make tests fatal for a subset of architectures
|
21 | 21 | # https://gitlab.freedesktop.org/wayland/weston/-/issues/739
|
22 | -ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel i386 ppc64el))
|
|
22 | +ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel armhf i386 ppc64el))
|
|
23 | 23 | XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test
|
24 | 24 | else
|
25 | 25 | XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test || true
|
... | ... | @@ -3,6 +3,6 @@ |
3 | 3 | Test-Command: dh_auto_configure; dh_auto_build; dh_auto_test
|
4 | 4 | Depends: @builddeps@
|
5 | 5 | Restrictions: allow-stderr
|
6 | -Architecture: amd64 arm64 armel i386 ppc64el
|
|
6 | +Architecture: amd64 arm64 armel armhf i386 ppc64el
|
|
7 | 7 | # Tests fail on some Architectures
|
8 | 8 | # https://gitlab.freedesktop.org/wayland/weston/-/issues/739 |