[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.3-1

2024-06-05 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.3-1 at X Strike Force / wayland / weston

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.3-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] Release weston version 13.0.3-1

2024-06-05 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
c198a257 by Dylan Aïssi at 2024-06-05T17:25:45+02:00
Release weston version 13.0.3-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,8 +1,8 @@
-weston (13.0.3-0) UNRELEASED; urgency=medium
+weston (13.0.3-1) unstable; urgency=medium
 
   * New upstream release.
 
- -- Dylan Aïssi   Wed, 05 Jun 2024 17:20:22 +0200
+ -- Dylan Aïssi   Wed, 05 Jun 2024 17:25:19 +0200
 
 weston (13.0.1-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/c198a2573695c1754e297cefff34e748a21b3fd1

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/c198a2573695c1754e297cefff34e748a21b3fd1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag upstream/13.0.3

2024-06-05 Thread @daissi


Dylan Aïssi pushed new tag upstream/13.0.3 at X Strike Force / wayland / weston

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/upstream/13.0.3
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][upstream-unstable] 4 commits: CI: work around LeakSanitizer crashes with use_tls=0

2024-06-05 Thread @daissi


Dylan Aïssi pushed to branch upstream-unstable at X Strike Force / wayland / 
weston


Commits:
fc041960 by Pekka Paalanen at 2024-06-05T13:20:15+03:00
CI: work around LeakSanitizer crashes with use_tls=0

Without this fix, we have randomly been getting CI failures due to
LeakSanitizer itself crashing after all the tests in a program have
succeeded. This has been happening randomly for a long time, but
https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1486
made it very reliably repeatable in the job x86_64-debian-full-build
(and no other job) in the test-subsurface-shot program.

--- Fixture 2 (GL) ok: passed 4, skipped 0, failed 0, total 4
Tracer caught signal 11: addr=0x1b8 pc=0x7f6b3ba640f0 sp=0x7f6b2cc77d10
==489==LeakSanitizer has encountered a fatal error.

I was also able to get a core file after twiddling, but there it ended
up with lsan aborting itself rather than a segfault.

We got some clues that use_tls=0 might work around this, from
https://github.com/google/sanitizers/issues/1342
https://github.com/google/sanitizers/issues/1409
and some other projects that have cargo-culted the same workaround.

Using that cause more false leaks to appear, so they need to be
suppressed. I suppose we are not interested in catching leaks in glib
using code, so I opted to suppress g_malloc0 altogether. Pinpointing it
better might have required much more slower stack tracing.

wl_shm_buffer_begin_access() uses TLS, so no wonder it gets flagged.

ld-*.so is simply uninteresting to us, and it got flagged too.

Since this might have been fixed already in LeakSanitizer upstream, who
knows, leave some notes to revisit this when we upgrade that in CI.

This fix seems to make the branch of
https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1486
in my quick testing.

Suggested-by: Derek Foreman derek.fore...@collabora.com
Signed-off-by: Pekka Paalanen pekka.paala...@collabora.com
(cherry picked from commit 3179e0f0e0c9a68879818d8196f7852d10923e2c)

- - - - -
86c636d8 by Marius Vlad at 2024-06-05T13:20:15+03:00
build: bump to version 13.0.2 for the point release

Signed-off-by: Marius Vlad marius.v...@collabora.com

- - - - -
8cb33a19 by Marius Vlad at 2024-06-05T14:59:31+03:00
build: bump to version 13.0.3 for the point release

Signed-off-by: Marius Vlad marius.v...@collabora.com

- - - - -
6d06b3d6 by Dylan Aïssi at 2024-06-05T17:17:41+02:00
Merge tag 13.0.3 into upstream-unstable

13.0.3

- - - - -


4 changed files:

- .gitlab-ci.yml
- .gitlab-ci/leak-sanitizer.supp
- meson.build
- tests/meson.build


Changes:

=
.gitlab-ci.yml
=
@@ -82,6 +82,7 @@ stages:
   variables:
 BUILD_OS: debian
 LLVM_VERSION: 15
+# If you upgrade from bookworm, see the use_tls=0 notes in 
tests/meson.build.
 FDO_DISTRIBUTION_VERSION: bookworm
 FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} 
BUILD_ARCH=${BUILD_ARCH} KERNEL_IMAGE=${KERNEL_IMAGE} 
KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG} LLVM_VERSION=${LLVM_VERSION} 
FDO_DISTRIBUTION_VERSION=${FDO_DISTRIBUTION_VERSION} bash 
.gitlab-ci/debian-install.sh'
 


=
.gitlab-ci/leak-sanitizer.supp
=
@@ -4,3 +4,9 @@
 # fontconfig library because turning off fast unwind -- required to catch other
 # originating leaks from fontconfig; would stall our tests timing them out.
 leak:libfontconfig
+
+# Workarounds for the LeakSanitizer use_tls=0 workaround,
+# see tests/meson.build
+leak:wl_shm_buffer_begin_access
+leak:g_malloc0
+leak:/ld-*.so*


=
meson.build
=
@@ -1,6 +1,6 @@
 project('weston',
'c',
-   version: '13.0.1',
+   version: '13.0.3',
default_options: [
'warning_level=3',
'c_std=gnu99',


=
tests/meson.build
=
@@ -420,9 +420,14 @@ configure_file(output: 'test-config.h', configuration: 
test_config_h)
 
 test_env = {}
 
-# there are some leaks in fontconfig we can't fix; 
+# there are some leaks in fontconfig we can't fix;
+# use_tls=0 is a workaround for LeakSanitizer crashing after successful
+# program exit when it scans for leaks. Due to use_tls=0 even more
+# suppressions had to be added.
+# TODO XXX: Try to revert the addition of use_tls=0 when our CI image
+# upgrades from Debian Bookworm to something more recent.
 if get_option('b_sanitize') in ['address', 'address,undefined' ]
-  test_env += { 'LSAN_OPTIONS': 'suppressions=@0@'.format(dir_gitlab_ci / 
'leak-sanitizer.supp') }
+  test_env += { 'LSAN_OPTIONS': 
'use_tls=0:suppressions=@0@'.format(dir_gitlab_ci / 'leak-sanitizer.supp') }
 endif
 
 foreach t : tests



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/ac73903a056e7946d60ad6f31bbd73727e6548a7...6d06b3d6d681297995036cb980eeecf0853d667f

-- 
This 

[Git][xorg-team/wayland/weston][pristine-tar] pristine-tar data for weston_13.0.3.orig.tar.xz

2024-06-05 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / wayland / weston


Commits:
cef9f9d6 by Dylan Aïssi at 2024-06-05T17:19:29+02:00
pristine-tar data for weston_13.0.3.orig.tar.xz

- - - - -


3 changed files:

- + weston_13.0.3.orig.tar.xz.asc
- + weston_13.0.3.orig.tar.xz.delta
- + weston_13.0.3.orig.tar.xz.id


Changes:

=
weston_13.0.3.orig.tar.xz.asc
=
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEcDKHej6x6uPk3J379jQS5glH1u8FAmZgY1QACgkQ9jQS5glH
+1u/yZxAAmBa2CJZ5lLsvGpkKkSzDcSVk6WKh07RsxJIBeowwCD3KRaw8SgR9AxTu
+aAH8kvov1jRv7LbtQga/GEl1KsgnfkR+eRLzI1pVZTlzIvE7l0qWpWbgDCxIwiDa
+nPVCnpm7uUsvUlZQ2QD1w8b7GN4tuC9HZxUhgC34IjftV25b0JJdSTsaCshil4wz
+rNkSAQ9tKwxVKz/EYkko64jVWvQCchnDNmrLseBO4IvjMP0/dCHBIkzUEy/BZCF7
+jAC8g7qYQY7mzKjC7W4CafTs/TgTgcEgqNcuE8YpvcBUzrRc9g31fUXbTnIlUIzV
+3PBxPzvojPhqHZRgXs9FNX9gRJg1Q7Ehig4V9FCp7B6RhK52Jg4LTZZIfgV26+Sb
+oU19Sbee0gCKTZmj9NqDCj0j0yX2DHBmQ9ZqKD57InV1fQ6+A6BpZ0rA9apEByAL
+vggUlxjgGROPPEBUKZpOsVF9D465LQzY7CaHnSrhUDxMv8XDQd3rKaJK5lf0UmrU
+2eVbPVKk9YeZ/udLGS06YZV3dNOvPHq6qT2fEPcYZLuw1F0pXMllXBt7/F4n75ng
+BTm34vp/FuyRQzMw9VUGafCsk8nRMFhJ5jCU73IL1nJJDo/aXYEgA59Tpm2ZN07u
+U1iPmSYq6CdGhRBUyym32wEMCEGre0xbn7RKCXmeAF+QzDldt1U=
+=i64u
+-END PGP SIGNATURE-


=
weston_13.0.3.orig.tar.xz.delta
=
Binary files /dev/null and b/weston_13.0.3.orig.tar.xz.delta differ


=
weston_13.0.3.orig.tar.xz.id
=
@@ -0,0 +1 @@
+ffca0619235a15da5f60bdebb9a325c52870cade



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/cef9f9d6c03e397cd0ebb83050a2b1458ee16bd3

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/cef9f9d6c03e397cd0ebb83050a2b1458ee16bd3
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 6 commits: CI: work around LeakSanitizer crashes with use_tls=0

2024-06-05 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
fc041960 by Pekka Paalanen at 2024-06-05T13:20:15+03:00
CI: work around LeakSanitizer crashes with use_tls=0

Without this fix, we have randomly been getting CI failures due to
LeakSanitizer itself crashing after all the tests in a program have
succeeded. This has been happening randomly for a long time, but
https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1486
made it very reliably repeatable in the job x86_64-debian-full-build
(and no other job) in the test-subsurface-shot program.

--- Fixture 2 (GL) ok: passed 4, skipped 0, failed 0, total 4
Tracer caught signal 11: addr=0x1b8 pc=0x7f6b3ba640f0 sp=0x7f6b2cc77d10
==489==LeakSanitizer has encountered a fatal error.

I was also able to get a core file after twiddling, but there it ended
up with lsan aborting itself rather than a segfault.

We got some clues that use_tls=0 might work around this, from
https://github.com/google/sanitizers/issues/1342
https://github.com/google/sanitizers/issues/1409
and some other projects that have cargo-culted the same workaround.

Using that cause more false leaks to appear, so they need to be
suppressed. I suppose we are not interested in catching leaks in glib
using code, so I opted to suppress g_malloc0 altogether. Pinpointing it
better might have required much more slower stack tracing.

wl_shm_buffer_begin_access() uses TLS, so no wonder it gets flagged.

ld-*.so is simply uninteresting to us, and it got flagged too.

Since this might have been fixed already in LeakSanitizer upstream, who
knows, leave some notes to revisit this when we upgrade that in CI.

This fix seems to make the branch of
https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1486
in my quick testing.

Suggested-by: Derek Foreman derek.fore...@collabora.com
Signed-off-by: Pekka Paalanen pekka.paala...@collabora.com
(cherry picked from commit 3179e0f0e0c9a68879818d8196f7852d10923e2c)

- - - - -
86c636d8 by Marius Vlad at 2024-06-05T13:20:15+03:00
build: bump to version 13.0.2 for the point release

Signed-off-by: Marius Vlad marius.v...@collabora.com

- - - - -
8cb33a19 by Marius Vlad at 2024-06-05T14:59:31+03:00
build: bump to version 13.0.3 for the point release

Signed-off-by: Marius Vlad marius.v...@collabora.com

- - - - -
6d06b3d6 by Dylan Aïssi at 2024-06-05T17:17:41+02:00
Merge tag 13.0.3 into upstream-unstable

13.0.3

- - - - -
c458fe6b by Dylan Aïssi at 2024-06-05T17:17:56+02:00
Merge branch upstream-unstable into debian-unstable

- - - - -
914ee74f by Dylan Aïssi at 2024-06-05T17:21:25+02:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


5 changed files:

- .gitlab-ci.yml
- .gitlab-ci/leak-sanitizer.supp
- debian/changelog
- meson.build
- tests/meson.build


Changes:

=
.gitlab-ci.yml
=
@@ -82,6 +82,7 @@ stages:
   variables:
 BUILD_OS: debian
 LLVM_VERSION: 15
+# If you upgrade from bookworm, see the use_tls=0 notes in 
tests/meson.build.
 FDO_DISTRIBUTION_VERSION: bookworm
 FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} 
BUILD_ARCH=${BUILD_ARCH} KERNEL_IMAGE=${KERNEL_IMAGE} 
KERNEL_DEFCONFIG=${KERNEL_DEFCONFIG} LLVM_VERSION=${LLVM_VERSION} 
FDO_DISTRIBUTION_VERSION=${FDO_DISTRIBUTION_VERSION} bash 
.gitlab-ci/debian-install.sh'
 


=
.gitlab-ci/leak-sanitizer.supp
=
@@ -4,3 +4,9 @@
 # fontconfig library because turning off fast unwind -- required to catch other
 # originating leaks from fontconfig; would stall our tests timing them out.
 leak:libfontconfig
+
+# Workarounds for the LeakSanitizer use_tls=0 workaround,
+# see tests/meson.build
+leak:wl_shm_buffer_begin_access
+leak:g_malloc0
+leak:/ld-*.so*


=
debian/changelog
=
@@ -1,3 +1,9 @@
+weston (13.0.3-0) UNRELEASED; urgency=medium
+
+  * New upstream release.
+
+ -- Dylan Aïssi   Wed, 05 Jun 2024 17:20:22 +0200
+
 weston (13.0.1-1) unstable; urgency=medium
 
   * New upstream release.


=
meson.build
=
@@ -1,6 +1,6 @@
 project('weston',
'c',
-   version: '13.0.1',
+   version: '13.0.3',
default_options: [
'warning_level=3',
'c_std=gnu99',


=
tests/meson.build
=
@@ -420,9 +420,14 @@ configure_file(output: 'test-config.h', configuration: 
test_config_h)
 
 test_env = {}
 
-# there are some leaks in fontconfig we can't fix; 
+# there are some leaks in fontconfig we can't fix;
+# use_tls=0 is a workaround for LeakSanitizer crashing after successful
+# program exit when it scans for leaks. Due to use_tls=0 even more
+# suppressions had to be added.
+# TODO XXX: Try to revert 

[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag debian/1.0.4+dfsg-1

2024-05-31 Thread @daissi


Dylan Aïssi pushed new tag debian/1.0.4+dfsg-1 at X Strike Force / vulkan / 
gfxreconstruct

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/debian/1.0.4+dfsg-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][upstream] New upstream version 1.0.4+dfsg

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / 
gfxreconstruct


Commits:
65f57558 by Dylan Aïssi at 2024-05-31T15:27:55+02:00
New upstream version 1.0.4+dfsg
- - - - -


30 changed files:

- − .clang-tidy
- .github/workflows/ci_build.yml
- .github/workflows/release_build.yml
- .github/workflows/scripts/build-dependencies-macos.sh
- .gitignore
- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/encode/CMakeLists.txt
- android/scripts/gfxrecon.py
- framework/application/android_window.cpp
- framework/application/android_window.h
- framework/application/application.h
- framework/application/display_window.cpp
- framework/application/display_window.h
- framework/application/headless_window.cpp
- framework/application/headless_window.h
- framework/application/metal_window.h
- framework/application/metal_window.mm
- framework/application/wayland_window.cpp
- framework/application/wayland_window.h
- framework/application/win32_window.cpp
- framework/application/win32_window.h
- framework/application/xcb_window.cpp
- framework/application/xcb_window.h
- framework/application/xlib_window.cpp
- framework/application/xlib_window.h
- framework/decode/CMakeLists.txt
- + framework/decode/common_consumer_base.h
- framework/decode/custom_dx12_struct_decoders.cpp


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/65f575586557820b50babbd7e395b19a809e8c97

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/65f575586557820b50babbd7e395b19a809e8c97
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag upstream/1.0.4+dfsg

2024-05-31 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.4+dfsg at X Strike Force / vulkan / 
gfxreconstruct

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/upstream/1.0.4+dfsg
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][pristine-tar] pristine-tar data for gfxreconstruct_1.0.4+dfsg.orig.tar.xz

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
gfxreconstruct


Commits:
cc542ad4 by Dylan Aïssi at 2024-05-31T15:28:01+02:00
pristine-tar data for gfxreconstruct_1.0.4+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + gfxreconstruct_1.0.4+dfsg.orig.tar.xz.delta
- + gfxreconstruct_1.0.4+dfsg.orig.tar.xz.id


Changes:

=
gfxreconstruct_1.0.4+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/gfxreconstruct_1.0.4+dfsg.orig.tar.xz.delta differ


=
gfxreconstruct_1.0.4+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+32ab5fe2e1394d28ee8d091461204509439bc969



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/cc542ad44e8f7b0553894974b633186c25406c6f

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/cc542ad44e8f7b0553894974b633186c25406c6f
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 5 commits: New upstream version 1.0.4+dfsg

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
65f57558 by Dylan Aïssi at 2024-05-31T15:27:55+02:00
New upstream version 1.0.4+dfsg
- - - - -
8429c8db by Dylan Aïssi at 2024-05-31T15:28:01+02:00
Update upstream source from tag upstream/1.0.4+dfsg

Update to upstream version 1.0.4+dfsg
with Debian dir d7152d9b5c89dade8d8db8d0b960378f54764f9f
- - - - -
95d4fd4a by Dylan Aïssi at 2024-05-31T15:28:18+02:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
51b776ce by Dylan Aïssi at 2024-05-31T15:36:50+02:00
Bump version of libvulkan-dev to = 1.3.283

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
c7e7697f by Dylan Aïssi at 2024-05-31T15:37:29+02:00
Release gfxreconstruct version 1.0.4+dfsg-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


30 changed files:

- − .clang-tidy
- .github/workflows/ci_build.yml
- .github/workflows/release_build.yml
- .github/workflows/scripts/build-dependencies-macos.sh
- .gitignore
- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/encode/CMakeLists.txt
- android/scripts/gfxrecon.py
- debian/changelog
- debian/control
- framework/application/android_window.cpp
- framework/application/android_window.h
- framework/application/application.h
- framework/application/display_window.cpp
- framework/application/display_window.h
- framework/application/headless_window.cpp
- framework/application/headless_window.h
- framework/application/metal_window.h
- framework/application/metal_window.mm
- framework/application/wayland_window.cpp
- framework/application/wayland_window.h
- framework/application/win32_window.cpp
- framework/application/win32_window.h
- framework/application/xcb_window.cpp
- framework/application/xcb_window.h
- framework/application/xlib_window.cpp
- framework/application/xlib_window.h
- framework/decode/CMakeLists.txt


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/431ea51e84bcb9400c5ce0852d0b81dc274bc006...c7e7697f0ff2d88263cb28d197c462a55e0df6dc

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/431ea51e84bcb9400c5ce0852d0b81dc274bc006...c7e7697f0ff2d88263cb28d197c462a55e0df6dc
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag debian/1.3.283.0-1

2024-05-31 Thread @daissi


Dylan Aïssi pushed new tag debian/1.3.283.0-1 at X Strike Force / vulkan / 
vulkan-volk

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/debian/1.3.283.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][upstream] New upstream version 1.3.283.0

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / vulkan-volk


Commits:
88931c9d by Dylan Aïssi at 2024-05-31T15:14:05+02:00
New upstream version 1.3.283.0
- - - - -


4 changed files:

- CMakeLists.txt
- README.md
- volk.c
- volk.h


Changes:

=
CMakeLists.txt
=
@@ -4,7 +4,7 @@ cmake_policy(SET CMP0048 NEW) # project(... VERSION ...) support
 
 project(volk VERSION 
 # VOLK_GENERATE_VERSION
-280
+283
 # VOLK_GENERATE_VERSION
   LANGUAGES C
 )
@@ -12,7 +12,7 @@ project(volk VERSION
 # CMake 3.12 changes the default behaviour of option() to leave local variables
 # unchanged if they exist (which we want), but we must work with older CMake 
versions.
 if(NOT DEFINED VOLK_STATIC_DEFINES)
-  option(VOLK_STATIC_DEFINES "Additional defines for building the volk static 
library, e.g. Vulkan platform defines" "")
+  set(VOLK_STATIC_DEFINES "" CACHE STRING "Additional defines for building the 
volk static library, e.g. Vulkan platform defines")
 endif()
 if(NOT DEFINED VOLK_PULL_IN_VULKAN)
   option(VOLK_PULL_IN_VULKAN "Vulkan as a transitive dependency" ON)
@@ -24,7 +24,7 @@ if(NOT DEFINED VOLK_HEADERS_ONLY)
   option(VOLK_HEADERS_ONLY "Add interface library only" OFF)
 endif()
 if(NOT DEFINED VULKAN_HEADERS_INSTALL_DIR)
-  option(VULKAN_HEADERS_INSTALL_DIR "Where to get the Vulkan headers" "")
+  set(VULKAN_HEADERS_INSTALL_DIR "" CACHE PATH "Where to get the Vulkan 
headers")
 endif()
 
 # -


=
README.md
=
@@ -12,7 +12,7 @@ volk is written in C89 and supports Windows, Linux, Android 
and macOS (via Molte
 
 There are multiple ways to use volk in your project:
 
-1. You can just add `volk.c` to your build system. Note that the usual 
preprocessor defines that enable Vulkan's platform-specific functions 
(VK_USE_PLATFORM_WIN32_KHR, VK_USE_PLATFORM_XLIB_KHR, 
VK_USE_PLATFORM_MACOS_MVK, etc) must be passed as desired to the compiler when 
building `volk.c`.
+1. You can add `volk.c` to your build system. Note that the usual preprocessor 
defines that enable Vulkan's platform-specific functions 
(VK_USE_PLATFORM_WIN32_KHR, VK_USE_PLATFORM_XLIB_KHR, 
VK_USE_PLATFORM_MACOS_MVK, etc) must be passed as desired to the compiler when 
building `volk.c`.
 2. You can use provided CMake files, with the usage detailed below.
 3. You can use volk in header-only fashion. Include `volk.h` wherever you want 
to use Vulkan functions. In exactly one source file, define 
`VOLK_IMPLEMENTATION` before including `volk.h`. Do not build `volk.c` at all 
in this case - however, `volk.c` must still be in the same directory as 
`volk.h`. This method of integrating volk makes it possible to set the platform 
defines mentioned above with arbitrary (preprocessor) logic in your code.
 


=
volk.c
=
@@ -31,6 +31,17 @@ __declspec(dllimport) FARPROC __stdcall 
GetProcAddress(HMODULE, LPCSTR);
 __declspec(dllimport) int __stdcall FreeLibrary(HMODULE);
 #endif
 
+#if defined(__GNUC__)
+#define VOLK_DISABLE_GCC_PEDANTIC_WARNINGS \
+   _Pragma("GCC diagnostic push") \
+   _Pragma("GCC diagnostic ignored \"-Wpedantic\"")
+#define VOLK_RESTORE_GCC_PEDANTIC_WARNINGS \
+   _Pragma("GCC diagnostic pop")
+#else
+#define VOLK_DISABLE_GCC_PEDANTIC_WARNINGS
+#define VOLK_RESTORE_GCC_PEDANTIC_WARNINGS
+#endif
+
 static void* loadedModule = NULL;
 static VkInstance loadedInstance = VK_NULL_HANDLE;
 static VkDevice loadedDevice = VK_NULL_HANDLE;
@@ -92,8 +103,9 @@ VkResult volkInitialize(void)
module = dlopen("libvulkan.so", RTLD_NOW | RTLD_LOCAL);
if (!module)
return VK_ERROR_INITIALIZATION_FAILED;
-
+   VOLK_DISABLE_GCC_PEDANTIC_WARNINGS
vkGetInstanceProcAddr = (PFN_vkGetInstanceProcAddr)dlsym(module, 
"vkGetInstanceProcAddr");
+   VOLK_RESTORE_GCC_PEDANTIC_WARNINGS
 #endif
 
loadedModule = module;


=
volk.h
=
@@ -15,7 +15,7 @@
 #endif
 
 /* VOLK_GENERATE_VERSION_DEFINE */
-#define VOLK_HEADER_VERSION 280
+#define VOLK_HEADER_VERSION 283
 /* VOLK_GENERATE_VERSION_DEFINE */
 
 #ifndef VK_NO_PROTOTYPES



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/88931c9d20e373ec1322cfdfc19f895d296f79ab

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/88931c9d20e373ec1322cfdfc19f895d296f79ab
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag upstream/1.3.283.0

2024-05-31 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.3.283.0 at X Strike Force / vulkan / 
vulkan-volk

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/upstream/1.3.283.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][pristine-tar] pristine-tar data for vulkan-volk_1.3.283.0.orig.tar.gz

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
vulkan-volk


Commits:
582e18e9 by Dylan Aïssi at 2024-05-31T15:14:06+02:00
pristine-tar data for vulkan-volk_1.3.283.0.orig.tar.gz

- - - - -


2 changed files:

- + vulkan-volk_1.3.283.0.orig.tar.gz.delta
- + vulkan-volk_1.3.283.0.orig.tar.gz.id


Changes:

=
vulkan-volk_1.3.283.0.orig.tar.gz.delta
=
Binary files /dev/null and b/vulkan-volk_1.3.283.0.orig.tar.gz.delta differ


=
vulkan-volk_1.3.283.0.orig.tar.gz.id
=
@@ -0,0 +1 @@
+7aa94273702c98d5d9ed5b3e44aedf9eaeb369f8



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/582e18e9574d1078f63c99b176850d0f12006111

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/582e18e9574d1078f63c99b176850d0f12006111
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][master] 5 commits: New upstream version 1.3.283.0

2024-05-31 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / vulkan-volk


Commits:
88931c9d by Dylan Aïssi at 2024-05-31T15:14:05+02:00
New upstream version 1.3.283.0
- - - - -
669838a5 by Dylan Aïssi at 2024-05-31T15:14:06+02:00
Update upstream source from tag upstream/1.3.283.0

Update to upstream version 1.3.283.0
with Debian dir edef8722ee4260a996db58a44ba637054f008cfc
- - - - -
05638b4a by Dylan Aïssi at 2024-05-31T15:14:32+02:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
56aa8bbe by Dylan Aïssi at 2024-05-31T15:16:02+02:00
Bump version of libvulkan-dev to = 1.3.283

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
66a8b800 by Dylan Aïssi at 2024-05-31T15:17:20+02:00
Release vulkan-volk version 1.3.283.0-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


6 changed files:

- CMakeLists.txt
- README.md
- debian/changelog
- debian/control
- volk.c
- volk.h


Changes:

=
CMakeLists.txt
=
@@ -4,7 +4,7 @@ cmake_policy(SET CMP0048 NEW) # project(... VERSION ...) support
 
 project(volk VERSION 
 # VOLK_GENERATE_VERSION
-280
+283
 # VOLK_GENERATE_VERSION
   LANGUAGES C
 )
@@ -12,7 +12,7 @@ project(volk VERSION
 # CMake 3.12 changes the default behaviour of option() to leave local variables
 # unchanged if they exist (which we want), but we must work with older CMake 
versions.
 if(NOT DEFINED VOLK_STATIC_DEFINES)
-  option(VOLK_STATIC_DEFINES "Additional defines for building the volk static 
library, e.g. Vulkan platform defines" "")
+  set(VOLK_STATIC_DEFINES "" CACHE STRING "Additional defines for building the 
volk static library, e.g. Vulkan platform defines")
 endif()
 if(NOT DEFINED VOLK_PULL_IN_VULKAN)
   option(VOLK_PULL_IN_VULKAN "Vulkan as a transitive dependency" ON)
@@ -24,7 +24,7 @@ if(NOT DEFINED VOLK_HEADERS_ONLY)
   option(VOLK_HEADERS_ONLY "Add interface library only" OFF)
 endif()
 if(NOT DEFINED VULKAN_HEADERS_INSTALL_DIR)
-  option(VULKAN_HEADERS_INSTALL_DIR "Where to get the Vulkan headers" "")
+  set(VULKAN_HEADERS_INSTALL_DIR "" CACHE PATH "Where to get the Vulkan 
headers")
 endif()
 
 # -


=
README.md
=
@@ -12,7 +12,7 @@ volk is written in C89 and supports Windows, Linux, Android 
and macOS (via Molte
 
 There are multiple ways to use volk in your project:
 
-1. You can just add `volk.c` to your build system. Note that the usual 
preprocessor defines that enable Vulkan's platform-specific functions 
(VK_USE_PLATFORM_WIN32_KHR, VK_USE_PLATFORM_XLIB_KHR, 
VK_USE_PLATFORM_MACOS_MVK, etc) must be passed as desired to the compiler when 
building `volk.c`.
+1. You can add `volk.c` to your build system. Note that the usual preprocessor 
defines that enable Vulkan's platform-specific functions 
(VK_USE_PLATFORM_WIN32_KHR, VK_USE_PLATFORM_XLIB_KHR, 
VK_USE_PLATFORM_MACOS_MVK, etc) must be passed as desired to the compiler when 
building `volk.c`.
 2. You can use provided CMake files, with the usage detailed below.
 3. You can use volk in header-only fashion. Include `volk.h` wherever you want 
to use Vulkan functions. In exactly one source file, define 
`VOLK_IMPLEMENTATION` before including `volk.h`. Do not build `volk.c` at all 
in this case - however, `volk.c` must still be in the same directory as 
`volk.h`. This method of integrating volk makes it possible to set the platform 
defines mentioned above with arbitrary (preprocessor) logic in your code.
 


=
debian/changelog
=
@@ -1,3 +1,10 @@
+vulkan-volk (1.3.283.0-1) unstable; urgency=medium
+
+  * New upstream version 1.3.283.0
+  * Bump version of libvulkan-dev to >= 1.3.283
+
+ -- Dylan Aïssi   Fri, 31 May 2024 15:16:56 +0200
+
 vulkan-volk (1.3.280.0-1) unstable; urgency=medium
 
   * New upstream version 1.3.280.0


=
debian/control
=
@@ -5,7 +5,7 @@ Section: graphics
 Priority: optional
 Build-Depends: debhelper-compat (= 13),
cmake,
-   libvulkan-dev (>= 1.3.280.0)
+   libvulkan-dev (>= 1.3.283)
 Standards-Version: 4.7.0
 Vcs-Browser: https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/
 Vcs-Git: https://salsa.debian.org/xorg-team/vulkan/vulkan-volk.git


=
volk.c
=
@@ -31,6 +31,17 @@ __declspec(dllimport) FARPROC __stdcall 
GetProcAddress(HMODULE, LPCSTR);
 __declspec(dllimport) int __stdcall FreeLibrary(HMODULE);
 #endif
 
+#if defined(__GNUC__)
+#define VOLK_DISABLE_GCC_PEDANTIC_WARNINGS \
+   _Pragma("GCC diagnostic push") \
+   _Pragma("GCC diagnostic ignored \"-Wpedantic\"")
+#define VOLK_RESTORE_GCC_PEDANTIC_WARNINGS \
+   _Pragma("GCC diagnostic pop")

[Git][xorg-team/wayland/wayland-protocols][debian-unstable] 5 commits: xdg-dialog: fix missing namespace in protocol name

2024-05-28 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
wayland-protocols


Commits:
6eae6815 by Simon Ser at 2024-04-22T17:33:24+02:00
xdg-dialog: fix missing namespace in protocol name

Signed-off-by: Simon Ser cont...@emersion.fr

- - - - -
24e612f7 by Jonas Ådahl at 2024-04-26T09:33:20+02:00
build: Bump version to 1.36

Signed-off-by: Jonas Ådahl jad...@gmail.com

- - - - -
5e6d9fe4 by Dylan Aïssi at 2024-05-28T21:18:00+02:00
Merge branch upstream-unstable into debian-unstable

- - - - -
f5d52f5a by Dylan Aïssi at 2024-05-28T21:19:45+02:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
d1b1a38c by Dylan Aïssi at 2024-05-28T21:21:26+02:00
Release wayland-protocols version 1.36-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


3 changed files:

- debian/changelog
- meson.build
- staging/xdg-dialog/xdg-dialog-v1.xml


Changes:

=
debian/changelog
=
@@ -1,3 +1,10 @@
+wayland-protocols (1.36-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release.
+
+ -- Dylan Aïssi   Tue, 28 May 2024 21:21:10 +0200
+
 wayland-protocols (1.35-1) unstable; urgency=medium
 
   * Team upload.


=
meson.build
=
@@ -1,5 +1,5 @@
 project('wayland-protocols',
-   version: '1.35',
+   version: '1.36',
meson_version: '>= 0.55.0',
license: 'MIT/Expat',
 )


=
staging/xdg-dialog/xdg-dialog-v1.xml
=
@@ -1,5 +1,5 @@
 
-
+
   
 Copyright © 2023 Carlos Garnacho
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/compare/44a09df14ac211f52622561f31ceab11706fc330...d1b1a38cda9a206169500346c60e13a6e559aa1b

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/compare/44a09df14ac211f52622561f31ceab11706fc330...d1b1a38cda9a206169500346c60e13a6e559aa1b
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag debian/1.36-1

2024-05-28 Thread @daissi


Dylan Aïssi pushed new tag debian/1.36-1 at X Strike Force / wayland / 
wayland-protocols

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/debian/1.36-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols][upstream-unstable] 2 commits: xdg-dialog: fix missing namespace in protocol name

2024-05-28 Thread @daissi


Dylan Aïssi pushed to branch upstream-unstable at X Strike Force / wayland / 
wayland-protocols


Commits:
6eae6815 by Simon Ser at 2024-04-22T17:33:24+02:00
xdg-dialog: fix missing namespace in protocol name

Signed-off-by: Simon Ser cont...@emersion.fr

- - - - -
24e612f7 by Jonas Ådahl at 2024-04-26T09:33:20+02:00
build: Bump version to 1.36

Signed-off-by: Jonas Ådahl jad...@gmail.com

- - - - -


2 changed files:

- meson.build
- staging/xdg-dialog/xdg-dialog-v1.xml


Changes:

=
meson.build
=
@@ -1,5 +1,5 @@
 project('wayland-protocols',
-   version: '1.35',
+   version: '1.36',
meson_version: '>= 0.55.0',
license: 'MIT/Expat',
 )


=
staging/xdg-dialog/xdg-dialog-v1.xml
=
@@ -1,5 +1,5 @@
 
-
+
   
 Copyright © 2023 Carlos Garnacho
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/compare/08d1c7276d41379acfea353b5c739b72d51827e2...24e612f7d735c014c28e3934440c90c240b3bb9a

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/compare/08d1c7276d41379acfea353b5c739b72d51827e2...24e612f7d735c014c28e3934440c90c240b3bb9a
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag upstream/1.36

2024-05-28 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.36 at X Strike Force / wayland / 
wayland-protocols

-- 
This project does not include diff previews in email notifications.
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/upstream/1.36
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 2 commits: Don't install rdp-backend on ia64 (disabled)

2024-04-23 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
a8160865 by Dylan Aïssi at 2024-04-23T21:47:17+02:00
Dont install rdp-backend on ia64 (disabled)

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
63ae4755 by Dylan Aïssi at 2024-04-23T21:47:56+02:00
Release weston version 13.0.1-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/libweston-13-0.install


Changes:

=
debian/changelog
=
@@ -1,10 +1,11 @@
-weston (13.0.1-1) UNRELEASED; urgency=medium
+weston (13.0.1-1) unstable; urgency=medium
 
   * New upstream release.
   * Update symbols file
   * Standards-Version: 4.7.0 (no changes required)
+  * Don't install rdp-backend on ia64 (disabled)
 
- -- Dylan Aïssi   Tue, 23 Apr 2024 21:06:19 +0200
+ -- Dylan Aïssi   Tue, 23 Apr 2024 21:47:40 +0200
 
 weston (13.0.0-5) unstable; urgency=medium
 


=
debian/libweston-13-0.install
=
@@ -6,7 +6,7 @@ usr/lib/*/libweston-13/gl-renderer.so
 usr/lib/*/libweston-13/headless-backend.so
 usr/lib/*/libweston-13/pipewire-backend.so
 usr/lib/*/libweston-13/pipewire-plugin.so
-usr/lib/*/libweston-13/rdp-backend.so
+[!ia64] usr/lib/*/libweston-13/rdp-backend.so
 usr/lib/*/libweston-13/remoting-plugin.so
 [!ia64 !sparc64] usr/lib/*/libweston-13/vnc-backend.so
 usr/lib/*/libweston-13/wayland-backend.so



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/2e13f69e4f71487a1a39047d7f4730a7a82d5795...63ae47552a7db8639a272295758d79cd97ef93b1

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/2e13f69e4f71487a1a39047d7f4730a7a82d5795...63ae47552a7db8639a272295758d79cd97ef93b1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.1-1

2024-04-23 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.1-1 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.1-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag upstream/13.0.1

2024-04-23 Thread @daissi


Dylan Aïssi pushed new tag upstream/13.0.1 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/upstream/13.0.1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][pristine-tar] pristine-tar data for weston_13.0.1.orig.tar.xz

2024-04-23 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / wayland / weston


Commits:
8afd0b8a by Dylan Aïssi at 2024-04-23T21:06:07+02:00
pristine-tar data for weston_13.0.1.orig.tar.xz

- - - - -


3 changed files:

- + weston_13.0.1.orig.tar.xz.asc
- + weston_13.0.1.orig.tar.xz.delta
- + weston_13.0.1.orig.tar.xz.id


Changes:

=
weston_13.0.1.orig.tar.xz.asc
=
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEcDKHej6x6uPk3J379jQS5glH1u8FAmYn2WgACgkQ9jQS5glH
+1u/9UBAA2suCI7FoMh8KfV83qD3cHoKMxcT7hnsj1ZmmnriXiKjdMlz9CFmC0SQA
+CLtvruBhXFSTC6taEyJgOiut612Ge2PLjFrPSO+AUStXLUsOdhFd/QB22O7+dbsJ
+iMtTicqr3BWmSM/zmLUdYQTQ0f2pZaI2p6cKZ4BULUgq3oA6hyRGwQuKyLjuVOYk
+9wigfZXttm3KbLS8h6+49BMT9ZOf5jAcuYDyMfOCLwEAfljHVHH8fusUQMfLJ11a
+df3y/QRt5MAwjRSlajBk9OIH5FjSwIEWTET6tSPB5l0o8cQOKrFhlO53BCjc5PHq
+NS9roHB1fIZIgfxV21RDbTSbS39hSy9mELgLhLqZVOOkxEw7wtMO6HcK5N6xT/va
+4HShmVmnI72fS05OMpMQWWpnerac8tyyP+GMlGJcFwptFVsN9aKeuWjIQc+ayDhF
+1dSPzTxRj5wWm1b9xen9AbqtVNrnrC0QUmsb/G0IDDmqc+zbKceAEkiUP6wfCLg+
+8ftw0WmlN2R32zBDWAVudpgvgLewNZMgtdQDjpFKftsRm1YIwrU7h+rMvYo6xJa3
+beuNyk9RNUyU0SgJBUGvBFLyiK7tzm41OU2oxO2JXcULSh2kxpkL0S3TZMG9qY80
+GbazEbq0X+gKS4RpFH5hGxAiE1+zZbSs50TjBx+VbAY9PJjn+Lc=
+=RWlH
+-END PGP SIGNATURE-


=
weston_13.0.1.orig.tar.xz.delta
=
Binary files /dev/null and b/weston_13.0.1.orig.tar.xz.delta differ


=
weston_13.0.1.orig.tar.xz.id
=
@@ -0,0 +1 @@
+419ea8e74a754d63d1f9773da902a2c3f9cfb09a



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/8afd0b8ad939a9b3e9e0d3809dc512fd4c41d0fb

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/8afd0b8ad939a9b3e9e0d3809dc512fd4c41d0fb
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] Release gfxreconstruct version 1.0.3+dfsg-1

2024-04-19 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
431ea51e by Dylan Aïssi at 2024-04-19T14:33:44+02:00
Release gfxreconstruct version 1.0.3+dfsg-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,11 +1,11 @@
-gfxreconstruct (1.0.3+dfsg-1) UNRELEASED; urgency=medium
+gfxreconstruct (1.0.3+dfsg-1) unstable; urgency=medium
 
   * New upstream version 1.0.3+dfsg
   * Bump version of libvulkan-dev to >= 1.3.280
   * Standards-Version: 4.7.0 (no changes required)
   * Update debian/copyright
 
- -- Dylan Aïssi   Fri, 19 Apr 2024 13:48:49 +0200
+ -- Dylan Aïssi   Fri, 19 Apr 2024 14:33:13 +0200
 
 gfxreconstruct (1.0.2+dfsg-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/431ea51e84bcb9400c5ce0852d0b81dc274bc006

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/431ea51e84bcb9400c5ce0852d0b81dc274bc006
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag debian/1.0.3+dfsg-1

2024-04-19 Thread @daissi


Dylan Aïssi pushed new tag debian/1.0.3+dfsg-1 at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/debian/1.0.3+dfsg-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][upstream] New upstream version 1.0.3+dfsg

2024-04-19 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / 
gfxreconstruct


Commits:
336d01b0 by Dylan Aïssi at 2024-04-19T13:48:03+02:00
New upstream version 1.0.3+dfsg
- - - - -


30 changed files:

- .clang-format
- .github/workflows/ci_build.yml
- + .github/workflows/scripts/build-dependencies-macos.sh
- .gitignore
- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/encode/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/layer/build.gradle
- android/scripts/gfxrecon.py
- + docs/img/gfxreconstruct-pr-process-03.png
- + docs/img/gfxreconstruct-pr-process-04.png
- + external/Tocpp-Android-Template/app/CMakeLists.txt
- + external/Tocpp-Android-Template/app/build.gradle
- + external/Tocpp-Android-Template/app/src/main/AndroidManifest.xml
- + external/Tocpp-Android-Template/app/src/main/assets/.keep
- + external/Tocpp-Android-Template/app/src/main/jni/AndroidLogging.hpp
- + external/Tocpp-Android-Template/app/src/main/jni/AndroidMain.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/ScreenOrientation.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/ScreenOrientation.hpp
- + external/Tocpp-Android-Template/app/src/main/jni/VulkanMain.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/VulkanMain.hpp
- + external/Tocpp-Android-Template/app/src/main/res/values/strings.xml
- + external/Tocpp-Android-Template/build.gradle
- + external/Tocpp-Android-Template/gradle.properties
- + external/Tocpp-Android-Template/gradle/wrapper/gradle-wrapper.jar
- + external/Tocpp-Android-Template/gradle/wrapper/gradle-wrapper.properties
- + external/Tocpp-Android-Template/gradlew
- + external/Tocpp-Android-Template/gradlew.bat
- + external/Tocpp-Android-Template/settings.gradle


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/336d01b0ff5cd8463f54a4dc1cf6b053db484988

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/336d01b0ff5cd8463f54a4dc1cf6b053db484988
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag upstream/1.0.3+dfsg

2024-04-19 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.3+dfsg at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/upstream/1.0.3+dfsg
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][pristine-tar] pristine-tar data for gfxreconstruct_1.0.3+dfsg.orig.tar.xz

2024-04-19 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
gfxreconstruct


Commits:
4d53b25c by Dylan Aïssi at 2024-04-19T13:48:09+02:00
pristine-tar data for gfxreconstruct_1.0.3+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + gfxreconstruct_1.0.3+dfsg.orig.tar.xz.delta
- + gfxreconstruct_1.0.3+dfsg.orig.tar.xz.id


Changes:

=
gfxreconstruct_1.0.3+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/gfxreconstruct_1.0.3+dfsg.orig.tar.xz.delta differ


=
gfxreconstruct_1.0.3+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+7f701b748d35bf0414cf6f0b6d62924774706985



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/4d53b25ce0a744e4bffa511b56813385c4b108ea

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/4d53b25ce0a744e4bffa511b56813385c4b108ea
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 6 commits: New upstream version 1.0.3+dfsg

2024-04-19 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
336d01b0 by Dylan Aïssi at 2024-04-19T13:48:03+02:00
New upstream version 1.0.3+dfsg
- - - - -
9bad9680 by Dylan Aïssi at 2024-04-19T13:48:09+02:00
Update upstream source from tag upstream/1.0.3+dfsg

Update to upstream version 1.0.3+dfsg
with Debian dir cf9ffe721563ff27042df77167becb81ecdbdac1
- - - - -
63283033 by Dylan Aïssi at 2024-04-19T13:49:06+02:00
Bump debian/changelog

- - - - -
99655532 by Dylan Aïssi at 2024-04-19T13:56:51+02:00
Bump version of libvulkan-dev to = 1.3.280

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
42d6ed4b by Dylan Aïssi at 2024-04-19T13:57:29+02:00
Standards-Version: 4.7.0 (no changes required)

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
a23ca651 by Dylan Aïssi at 2024-04-19T14:03:25+02:00
Update debian/copyright

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


30 changed files:

- .clang-format
- .github/workflows/ci_build.yml
- + .github/workflows/scripts/build-dependencies-macos.sh
- .gitignore
- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/encode/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/layer/build.gradle
- android/scripts/gfxrecon.py
- debian/changelog
- debian/control
- debian/copyright
- + docs/img/gfxreconstruct-pr-process-03.png
- + docs/img/gfxreconstruct-pr-process-04.png
- + external/Tocpp-Android-Template/app/CMakeLists.txt
- + external/Tocpp-Android-Template/app/build.gradle
- + external/Tocpp-Android-Template/app/src/main/AndroidManifest.xml
- + external/Tocpp-Android-Template/app/src/main/assets/.keep
- + external/Tocpp-Android-Template/app/src/main/jni/AndroidLogging.hpp
- + external/Tocpp-Android-Template/app/src/main/jni/AndroidMain.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/ScreenOrientation.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/ScreenOrientation.hpp
- + external/Tocpp-Android-Template/app/src/main/jni/VulkanMain.cpp
- + external/Tocpp-Android-Template/app/src/main/jni/VulkanMain.hpp
- + external/Tocpp-Android-Template/app/src/main/res/values/strings.xml
- + external/Tocpp-Android-Template/build.gradle
- + external/Tocpp-Android-Template/gradle.properties
- + external/Tocpp-Android-Template/gradle/wrapper/gradle-wrapper.jar
- + external/Tocpp-Android-Template/gradle/wrapper/gradle-wrapper.properties


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/d3bb7f8f55eea7548bb80956a395017edc9a3d1a...a23ca65140331072b1f9198a486f93fece78d9ca

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/d3bb7f8f55eea7548bb80956a395017edc9a3d1a...a23ca65140331072b1f9198a486f93fece78d9ca
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][master] 2 commits: Update debian/copyright

2024-04-18 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / vulkan-volk


Commits:
5fd526e0 by Dylan Aïssi at 2024-04-18T10:26:32+02:00
Update debian/copyright

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
8fa4da6b by Dylan Aïssi at 2024-04-18T10:27:50+02:00
Release vulkan-volk version 1.3.280.0-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/copyright


Changes:

=
debian/changelog
=
@@ -1,11 +1,12 @@
-vulkan-volk (1.3.280.0-1) UNRELEASED; urgency=medium
+vulkan-volk (1.3.280.0-1) unstable; urgency=medium
 
   * New upstream version 1.3.280.0
   * Bump version of libvulkan-dev to >= 1.3.280.0
   * Standards-Version: 4.7.0 (no changes needed)
   * Add "Multi-Arch: same" for libvulkan-volk-dev
+  * Update debian/copyright
 
- -- Dylan Aïssi   Thu, 18 Apr 2024 10:20:49 +0200
+ -- Dylan Aïssi   Thu, 18 Apr 2024 10:27:33 +0200
 
 vulkan-volk (1.3.275.0-1) unstable; urgency=medium
 


=
debian/copyright
=
@@ -3,11 +3,11 @@ Upstream-Name: volk
 Source: https://github.com/zeux/volk
 
 Files: *
-Copyright: 2018-2023 Arseny Kapoulkine
+Copyright: 2018-2024 Arseny Kapoulkine
 License: Expat
 
 Files: debian/*
-Copyright: 2021-2023 Collabora, Ltd.
+Copyright: 2021-2024 Collabora, Ltd.
 License: Expat
 
 License: Expat



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/compare/87b4d948dc61145bb669b751fd927418774c27f7...8fa4da6b4badf0dd000ef39a375a3c824d14d127

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/compare/87b4d948dc61145bb669b751fd927418774c27f7...8fa4da6b4badf0dd000ef39a375a3c824d14d127
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag debian/1.3.280.0-1

2024-04-18 Thread @daissi


Dylan Aïssi pushed new tag debian/1.3.280.0-1 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/debian/1.3.280.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag upstream/1.3.280.0

2024-04-18 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.3.280.0 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/upstream/1.3.280.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][pristine-tar] pristine-tar data for vulkan-volk_1.3.280.0.orig.tar.gz

2024-04-18 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
vulkan-volk


Commits:
2b9b51f1 by Dylan Aïssi at 2024-04-18T10:20:42+02:00
pristine-tar data for vulkan-volk_1.3.280.0.orig.tar.gz

- - - - -


2 changed files:

- + vulkan-volk_1.3.280.0.orig.tar.gz.delta
- + vulkan-volk_1.3.280.0.orig.tar.gz.id


Changes:

=
vulkan-volk_1.3.280.0.orig.tar.gz.delta
=
Binary files /dev/null and b/vulkan-volk_1.3.280.0.orig.tar.gz.delta differ


=
vulkan-volk_1.3.280.0.orig.tar.gz.id
=
@@ -0,0 +1 @@
+5c85cbe663812d40ae632e38628be30969927a4d



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/2b9b51f10812a2c4f7c8b834b2f20d56b46c1204

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/2b9b51f10812a2c4f7c8b834b2f20d56b46c1204
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag upstream/1.35

2024-04-18 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.35 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/upstream/1.35
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag debian/1.35-1

2024-04-18 Thread @daissi


Dylan Aïssi pushed new tag debian/1.35-1 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/debian/1.35-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag 1.35

2024-04-18 Thread @daissi


Dylan Aïssi pushed new tag 1.35 at X Strike Force / wayland / wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/1.35
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/10.0.1-1+deb12u1

2024-04-05 Thread @daissi


Dylan Aïssi pushed new tag debian/10.0.1-1+deb12u1 at X Strike Force / wayland 
/ weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/10.0.1-1+deb12u1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new branch debian-bookworm-updates

2024-04-05 Thread @daissi


Dylan Aïssi pushed new branch debian-bookworm-updates at X Strike Force / 
wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian-bookworm-updates
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag upstream/1.34

2024-03-23 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.34 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/upstream/1.34
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag debian/1.34-1

2024-03-23 Thread @daissi


Dylan Aïssi pushed new tag debian/1.34-1 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/debian/1.34-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/10.0.5-0+deb12u1

2024-03-13 Thread @daissi


Dylan Aïssi pushed new tag debian/10.0.5-0+deb12u1 at X Strike Force / wayland 
/ weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/10.0.5-0+deb12u1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag upstream/10.0.5

2024-03-13 Thread @daissi


Dylan Aïssi pushed new tag upstream/10.0.5 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/upstream/10.0.5
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new branch upstream-10.0

2024-03-13 Thread @daissi


Dylan Aïssi pushed new branch upstream-10.0 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/upstream-10.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new branch debian-10.0

2024-03-13 Thread @daissi


Dylan Aïssi pushed new branch debian-10.0 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian-10.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-5

2024-03-11 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-5 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-5
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] Release weston version 13.0.0-5

2024-03-11 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
9deda8d3 by Dylan Aïssi at 2024-03-11T12:01:55+01:00
Release weston version 13.0.0-5

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,3 +1,10 @@
+weston (13.0.0-5) unstable; urgency=medium
+
+  * Don't install disabled features on ia64 and sparc64
+  * Do not check the upper limit for neatvnc version (Closes: #1065816)
+
+ -- Dylan Aïssi   Mon, 11 Mar 2024 12:01:23 +0100
+
 weston (13.0.0-4) unstable; urgency=medium
 
   * Fix syntax of non fatal tests



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/9deda8d3f455cf38c59d9fcd0425fa67a0d1a292

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/9deda8d3f455cf38c59d9fcd0425fa67a0d1a292
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 2 commits: Don't install disabled features on ia64 and sparc64

2024-03-11 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
06d6beef by Dylan Aïssi at 2024-03-11T11:55:43+01:00
Dont install disabled features on ia64 and sparc64

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
1dcdeb21 by Dylan Aïssi at 2024-03-11T11:56:52+01:00
Do not check the upper limit for neatvnc version (Closes: #1065816)

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


7 changed files:

- debian/changelog
- debian/control
- debian/libweston-13-0.install
- + debian/patches/Remove_upper_limit_of_required_neatvnc_version.patch
- debian/patches/series
- debian/rules
- debian/weston.install


Changes:

=
debian/changelog
=
@@ -7,7 +7,7 @@ weston (13.0.0-4) unstable; urgency=medium
 weston (13.0.0-3) unstable; urgency=medium
 
   * Retrict architectures where tests are run
-  * Disable backend-rdp for i64 and backend-vnc for i64 and sparc64,
+  * Disable backend-rdp for ia64 and backend-vnc for ia64 and sparc64,
   because of Build-Deps not available.
   * Mark Skip_xwayland_test.patch as 'Forwarded: not-needed'
   * Switch from pkg-config to pkgconf


=
debian/control
=
@@ -7,6 +7,7 @@ Uploaders: Mike Gabriel ,
Emilio Pozuelo Monfort ,
Dylan Aïssi 
 Build-Depends: debhelper-compat (= 13),
+   dh-exec,
freerdp2-dev [!ia64],
libcairo2-dev (>= 1.10.0),
libcolord-dev (>= 0.1.27),


=
debian/libweston-13-0.install
=
@@ -1,3 +1,4 @@
+#! /usr/bin/dh-exec
 usr/lib/*/libweston-13.so.*
 usr/lib/*/libweston-13/color-lcms.so
 usr/lib/*/libweston-13/drm-backend.so
@@ -7,7 +8,7 @@ usr/lib/*/libweston-13/pipewire-backend.so
 usr/lib/*/libweston-13/pipewire-plugin.so
 usr/lib/*/libweston-13/rdp-backend.so
 usr/lib/*/libweston-13/remoting-plugin.so
-usr/lib/*/libweston-13/vnc-backend.so
+[!ia64 !sparc64] usr/lib/*/libweston-13/vnc-backend.so
 usr/lib/*/libweston-13/wayland-backend.so
 usr/lib/*/libweston-13/x11-backend.so
 usr/lib/*/libweston-13/xwayland.so


=
debian/patches/Remove_upper_limit_of_required_neatvnc_version.patch
=
@@ -0,0 +1,19 @@
+Description: Remove upper limit of required neatvnc version.
+ neatvnc 0.8.1 was released with only 1 breaking change:
+ nvnc_client_get_hostname has been replaced with nvnc_client_get_address
+ Since it's not used in weston, let's not block on this limit.
+Bug: https://gitlab.freedesktop.org/wayland/weston/-/issues/890
+Bug-Debian: http://bugs.debian.org/1065816
+Author: Dylan Aïssi 
+
+--- a/libweston/backend-vnc/meson.build
 b/libweston/backend-vnc/meson.build
+@@ -3,7 +3,7 @@
+ endif
+ 
+ config_h.set('BUILD_VNC_COMPOSITOR', '1')
+-dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.8.0'], 
required: false, fallback: ['neatvnc', 'neatvnc_dep'])
++dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0'], required: false, 
fallback: ['neatvnc', 'neatvnc_dep'])
+ if not dep_neatvnc.found()
+   error('VNC backend requires neatvnc which was not found. Or, you can 
use \'-Dbackend-vnc=false\'.')
+ endif


=
debian/patches/series
=
@@ -1 +1,2 @@
 Skip_xwayland_test.patch
+Remove_upper_limit_of_required_neatvnc_version.patch


=
debian/rules
=
@@ -2,13 +2,13 @@
 
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
-ifneq (,$(filter i64,$(DEB_HOST_ARCH)))
+ifneq (,$(filter ia64,$(DEB_HOST_ARCH)))
 BACKEND_RDP=false
 else
 BACKEND_RDP=true
 endif
 
-ifneq (,$(filter i64 sparc64,$(DEB_HOST_ARCH)))
+ifneq (,$(filter ia64 sparc64,$(DEB_HOST_ARCH)))
 BACKEND_VNC=false
 else
 BACKEND_VNC=true


=
debian/weston.install
=
@@ -1,4 +1,5 @@
-etc/pam.d/weston-remote-access
+#! /usr/bin/dh-exec
+[!ia64 !sparc64] etc/pam.d/weston-remote-access
 usr/bin/wcap-decode
 usr/bin/weston
 usr/bin/weston-*



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/0dd716ea1c42d411b53dddf566325ef67582dbc6...1dcdeb21b95d81c6b93fa3014de55be195737aa2

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/0dd716ea1c42d411b53dddf566325ef67582dbc6...1dcdeb21b95d81c6b93fa3014de55be195737aa2
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-4

2024-02-27 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-4 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-4
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 2 commits: Fix syntax of non fatal tests

2024-02-27 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
14b30323 by Dylan Aïssi at 2024-02-27T09:23:33+01:00
Fix syntax of non fatal tests

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
0dd716ea by Dylan Aïssi at 2024-02-27T09:24:22+01:00
Release weston version 13.0.0-4

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/rules


Changes:

=
debian/changelog
=
@@ -1,3 +1,9 @@
+weston (13.0.0-4) unstable; urgency=medium
+
+  * Fix syntax of non fatal tests
+
+ -- Dylan Aïssi   Tue, 27 Feb 2024 09:24:06 +0100
+
 weston (13.0.0-3) unstable; urgency=medium
 
   * Retrict architectures where tests are run


=
debian/rules
=
@@ -28,7 +28,7 @@ override_dh_auto_test:
 ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel i386 ppc64el))
XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test
 else
-   XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir -dh_auto_test
+   XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test || 
true
 endif
 
 override_dh_missing:



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/dea6a083bc1f4c1306d0eac21ca11a3ecbcc497b...0dd716ea1c42d411b53dddf566325ef67582dbc6

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/dea6a083bc1f4c1306d0eac21ca11a3ecbcc497b...0dd716ea1c42d411b53dddf566325ef67582dbc6
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-3

2024-02-26 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-3 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-3
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 5 commits: Retrict architectures where tests are run

2024-02-26 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
904c821d by Dylan Aïssi at 2024-02-26T17:52:34+01:00
Retrict architectures where tests are run

Tests are known to fail on some architectures
https://gitlab.freedesktop.org/wayland/weston/-/issues/739

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
87c0919b by Dylan Aïssi at 2024-02-26T17:52:53+01:00
Disable backend-rdp for i64 and backend-vnc for i64 and sparc64

freerdp2-dev and libneatvnc-dev are not installable in an enough
recent version.

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
ea2cb803 by Dylan Aïssi at 2024-02-26T17:56:03+01:00
Mark Skip_xwayland_test.patch as Forwarded: not-needed

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
4dd376e8 by Dylan Aïssi at 2024-02-26T18:12:22+01:00
Switch from pkg-config to pkgconf

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
dea6a083 by Dylan Aïssi at 2024-02-26T18:12:22+01:00
Release weston version 13.0.0-3

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


5 changed files:

- debian/changelog
- debian/control
- debian/patches/Skip_xwayland_test.patch
- debian/rules
- debian/tests/control


Changes:

=
debian/changelog
=
@@ -1,3 +1,13 @@
+weston (13.0.0-3) unstable; urgency=medium
+
+  * Retrict architectures where tests are run
+  * Disable backend-rdp for i64 and backend-vnc for i64 and sparc64,
+  because of Build-Deps not available.
+  * Mark Skip_xwayland_test.patch as 'Forwarded: not-needed'
+  * Switch from pkg-config to pkgconf
+
+ -- Dylan Aïssi   Mon, 26 Feb 2024 18:02:10 +0100
+
 weston (13.0.0-2) unstable; urgency=medium
 
   * Mark libweston-13-dev as 'Multi-Arch: same'


=
debian/control
=
@@ -7,7 +7,7 @@ Uploaders: Mike Gabriel ,
Emilio Pozuelo Monfort ,
Dylan Aïssi 
 Build-Depends: debhelper-compat (= 13),
-   freerdp2-dev,
+   freerdp2-dev [!ia64],
libcairo2-dev (>= 1.10.0),
libcolord-dev (>= 0.1.27),
libdbus-1-dev,
@@ -48,7 +48,7 @@ Build-Depends: debhelper-compat (= 13),
libxml2-dev,
mesa-common-dev,
meson (>= 0.63.0),
-   pkg-config,
+   pkgconf,
wayland-protocols (>= 1.31)
 Standards-Version: 4.6.2
 Rules-Requires-Root: no


=
debian/patches/Skip_xwayland_test.patch
=
@@ -2,6 +2,7 @@ Description: Skip the xwayland test because it doesn't work on 
Debian at
  build time, nor on the autopkgtest infrastructure. It fails with:
  > failed to bind to /tmp/.X11-unix/X0: No such file or directory
 Author: Dylan Aïssi 
+Forwarded: not-needed
 
 --- a/tests/xwayland-test.c
 +++ b/tests/xwayland-test.c


=
debian/rules
=
@@ -2,13 +2,34 @@
 
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
+ifneq (,$(filter i64,$(DEB_HOST_ARCH)))
+BACKEND_RDP=false
+else
+BACKEND_RDP=true
+endif
+
+ifneq (,$(filter i64 sparc64,$(DEB_HOST_ARCH)))
+BACKEND_VNC=false
+else
+BACKEND_VNC=true
+endif
+
 override_dh_auto_configure:
-   dh_auto_configure -- -Dscreenshare=true \
+   dh_auto_configure -- \
+   -Dbackend-rdp=$(BACKEND_RDP) \
+   -Dbackend-vnc=$(BACKEND_VNC) \
+   -Dscreenshare=true \
-Dsystemd=true
 
 override_dh_auto_test:
mkdir -p $(CURDIR)/debian/tmp/tmp/xdgruntimedir
+# Only make tests fatal for a subset of architectures
+# https://gitlab.freedesktop.org/wayland/weston/-/issues/739
+ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel i386 ppc64el))
XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test
+else
+   XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir -dh_auto_test
+endif
 
 override_dh_missing:
dh_missing --fail-missing -X.la


=
debian/tests/control
=
@@ -3,3 +3,6 @@
 Test-Command: dh_auto_configure; dh_auto_build; dh_auto_test
 Depends: @builddeps@
 Restrictions: allow-stderr
+Architecture: amd64 arm64 armel i386 ppc64el
+# Tests fail on some Architectures
+# https://gitlab.freedesktop.org/wayland/weston/-/issues/739



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/389c3f7eba31ba7b37bfc861199d4bfc66684128...dea6a083bc1f4c1306d0eac21ca11a3ecbcc497b

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/389c3f7eba31ba7b37bfc861199d4bfc66684128...dea6a083bc1f4c1306d0eac21ca11a3ecbcc497b
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] Release weston version 13.0.0-2

2024-02-22 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
389c3f7e by Dylan Aïssi at 2024-02-22T17:48:53+01:00
Release weston version 13.0.0-2

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,3 +1,17 @@
+weston (13.0.0-2) unstable; urgency=medium
+
+  * Mark libweston-13-dev as 'Multi-Arch: same'
+  * Install all manpages through weston.install
+  * Enable all hardening flags
+  * Add Build-Depends-Package field in symbols file
+  * Add debian/upstream/metadata
+  * Apply wrap-and-sort -a
+  * Skip xwayland test since it fails at build time and on the
+  autopkgtest infrastructure
+  * Use build time tests as autopkgtest until upstream tests can be installed
+
+ -- Dylan Aïssi   Thu, 22 Feb 2024 17:45:02 +0100
+
 weston (13.0.0-1) unstable; urgency=medium
 
   * Upload to unstable



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/389c3f7eba31ba7b37bfc861199d4bfc66684128

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/389c3f7eba31ba7b37bfc861199d4bfc66684128
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-2

2024-02-22 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-2 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-2
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] Release gfxreconstruct version 1.0.2+dfsg-1

2024-02-22 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
d3bb7f8f by Dylan Aïssi at 2024-02-22T14:49:14+01:00
Release gfxreconstruct version 1.0.2+dfsg-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,9 +1,9 @@
-gfxreconstruct (1.0.2+dfsg-1) UNRELEASED; urgency=medium
+gfxreconstruct (1.0.2+dfsg-1) unstable; urgency=medium
 
   * New upstream version 1.0.2+dfsg
   * Bump version of libvulkan-dev to >= 1.3.275
 
- -- Dylan Aïssi   Thu, 22 Feb 2024 14:30:58 +0100
+ -- Dylan Aïssi   Thu, 22 Feb 2024 14:48:59 +0100
 
 gfxreconstruct (1.0.1+dfsg-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/d3bb7f8f55eea7548bb80956a395017edc9a3d1a

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/d3bb7f8f55eea7548bb80956a395017edc9a3d1a
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag debian/1.0.2+dfsg-1

2024-02-22 Thread @daissi


Dylan Aïssi pushed new tag debian/1.0.2+dfsg-1 at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/debian/1.0.2+dfsg-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][upstream] New upstream version 1.0.2+dfsg

2024-02-22 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / 
gfxreconstruct


Commits:
02ef12a4 by Dylan Aïssi at 2024-02-22T14:30:51+01:00
New upstream version 1.0.2+dfsg
- - - - -


10 changed files:

- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/encode/CMakeLists.txt
- android/framework/graphics/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/scripts/gfxrecon.py
- external/AgilitySDK/inc/d3d12.h
- external/AgilitySDK/inc/d3d12sdklayers.h
- external/AgilitySDK/version.txt


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/02ef12a462822a16c50165b6c5673c09470445c4

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/02ef12a462822a16c50165b6c5673c09470445c4
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag upstream/1.0.2+dfsg

2024-02-22 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.2+dfsg at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/upstream/1.0.2+dfsg
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][pristine-tar] pristine-tar data for gfxreconstruct_1.0.2+dfsg.orig.tar.xz

2024-02-22 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
gfxreconstruct


Commits:
0a2d91d0 by Dylan Aïssi at 2024-02-22T14:30:56+01:00
pristine-tar data for gfxreconstruct_1.0.2+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + gfxreconstruct_1.0.2+dfsg.orig.tar.xz.delta
- + gfxreconstruct_1.0.2+dfsg.orig.tar.xz.id


Changes:

=
gfxreconstruct_1.0.2+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/gfxreconstruct_1.0.2+dfsg.orig.tar.xz.delta differ


=
gfxreconstruct_1.0.2+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+8ac4493688b9c85dc5e08eeec64df968108b3d95



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/0a2d91d002b1921022ca0e4eeb342cebb61091ad

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/0a2d91d002b1921022ca0e4eeb342cebb61091ad
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 4 commits: New upstream version 1.0.2+dfsg

2024-02-22 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
02ef12a4 by Dylan Aïssi at 2024-02-22T14:30:51+01:00
New upstream version 1.0.2+dfsg
- - - - -
093362cb by Dylan Aïssi at 2024-02-22T14:30:56+01:00
Update upstream source from tag upstream/1.0.2+dfsg

Update to upstream version 1.0.2+dfsg
with Debian dir 999a8381bee564a045cfc2cbfbe47448d5a0f65a
- - - - -
b110de93 by Dylan Aïssi at 2024-02-22T14:31:20+01:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
52e06ee3 by Dylan Aïssi at 2024-02-22T14:36:40+01:00
Bump version of libvulkan-dev to = 1.3.275

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


12 changed files:

- CMakeLists.txt
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/encode/CMakeLists.txt
- android/framework/graphics/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/scripts/gfxrecon.py
- debian/changelog
- debian/control
- external/AgilitySDK/inc/d3d12.h
- external/AgilitySDK/inc/d3d12sdklayers.h
- external/AgilitySDK/version.txt


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/67974efca967a053e4b56311b2b0ce3f3dde3df9...52e06ee3bf042457a5acc05f558f532df9a3ebce

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/67974efca967a053e4b56311b2b0ce3f3dde3df9...52e06ee3bf042457a5acc05f558f532df9a3ebce
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][master] Release vulkan-volk version 1.3.275.0-1

2024-02-21 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / vulkan-volk


Commits:
d9afdfee by Dylan Aïssi at 2024-02-21T18:30:37+01:00
Release vulkan-volk version 1.3.275.0-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,4 +1,4 @@
-vulkan-volk (1.3.275.0-1) UNRELEASED; urgency=medium
+vulkan-volk (1.3.275.0-1) unstable; urgency=medium
 
   * New upstream version 1.3.275.0
   * Install library files as they are required to build newer vulkan-tools
@@ -7,7 +7,7 @@ vulkan-volk (1.3.275.0-1) UNRELEASED; urgency=medium
   * Drop "Multi-Arch: foreign" for libvulkan-volk-dev
   * Bump version of libvulkan-dev to >= 1.3.275.0
 
- -- Dylan Aïssi   Wed, 21 Feb 2024 18:07:38 +0100
+ -- Dylan Aïssi   Wed, 21 Feb 2024 18:30:14 +0100
 
 vulkan-volk (1.3.268.0-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/d9afdfeee8fd057887dd019a57504eb1c8cb74b8

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/d9afdfeee8fd057887dd019a57504eb1c8cb74b8
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag debian/1.3.275.0-1

2024-02-21 Thread @daissi


Dylan Aïssi pushed new tag debian/1.3.275.0-1 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/debian/1.3.275.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag upstream/1.3.275.0

2024-02-21 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.3.275.0 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/upstream/1.3.275.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][pristine-tar] pristine-tar data for vulkan-volk_1.3.275.0.orig.tar.gz

2024-02-21 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
vulkan-volk


Commits:
e665e689 by Dylan Aïssi at 2024-02-21T18:07:29+01:00
pristine-tar data for vulkan-volk_1.3.275.0.orig.tar.gz

- - - - -


2 changed files:

- + vulkan-volk_1.3.275.0.orig.tar.gz.delta
- + vulkan-volk_1.3.275.0.orig.tar.gz.id


Changes:

=
vulkan-volk_1.3.275.0.orig.tar.gz.delta
=
Binary files /dev/null and b/vulkan-volk_1.3.275.0.orig.tar.gz.delta differ


=
vulkan-volk_1.3.275.0.orig.tar.gz.id
=
@@ -0,0 +1 @@
+f5a8290c427be3d70fc8af55f7ddb3682295a5be



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/e665e689f8d7d6f408c3c6b7f40f739c7643b1bc

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/e665e689f8d7d6f408c3c6b7f40f739c7643b1bc
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] Use build time tests as autopkgtest until upstream tests can be installed

2024-02-15 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
e46bd4b4 by Dylan Aïssi at 2024-02-15T22:52:07+01:00
Use build time tests as autopkgtest until upstream tests can be installed

See https://gitlab.freedesktop.org/wayland/weston/-/issues/368

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


4 changed files:

- + debian/patches/Skip_xwayland_test.patch
- + debian/patches/series
- debian/rules
- + debian/tests/control


Changes:

=
debian/patches/Skip_xwayland_test.patch
=
@@ -0,0 +1,20 @@
+Description: Skip the xwayland test because it doesn't work on Debian at
+ build time, nor on the autopkgtest infrastructure. It fails with:
+ > failed to bind to /tmp/.X11-unix/X0: No such file or directory
+Author: Dylan Aïssi 
+
+--- a/tests/xwayland-test.c
 b/tests/xwayland-test.c
+@@ -51,6 +51,12 @@
+ static enum test_result_code
+ fixture_setup(struct weston_test_harness *harness)
+ {
++  /* Skip the xwayland test because it doesn't work on Debian at
++ build time, nor on the autopkgtest infrastructure. It fails with:
++ > failed to bind to /tmp/.X11-unix/X0: No such file or directory
++  */
++  return 77;
++
+   struct compositor_setup setup;
+ 
+   unsetenv("DISPLAY");


=
debian/patches/series
=
@@ -0,0 +1 @@
+Skip_xwayland_test.patch


=
debian/rules
=
@@ -8,7 +8,7 @@ override_dh_auto_configure:
 
 override_dh_auto_test:
mkdir -p $(CURDIR)/debian/tmp/tmp/xdgruntimedir
-   XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test || 
true
+   XDG_RUNTIME_DIR=$(CURDIR)/debian/tmp/tmp/xdgruntimedir dh_auto_test
 
 override_dh_missing:
dh_missing --fail-missing -X.la


=
debian/tests/control
=
@@ -0,0 +1,5 @@
+# Upstream testsuite is not yet installable, see
+# https://gitlab.freedesktop.org/wayland/weston/-/issues/368
+Test-Command: dh_auto_configure; dh_auto_build; dh_auto_test
+Depends: @builddeps@
+Restrictions: allow-stderr



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/e46bd4b496d0947228bd1b260587e558173d8ef5

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/e46bd4b496d0947228bd1b260587e558173d8ef5
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols] Pushed new tag debian/1.33-1

2024-01-28 Thread @daissi


Dylan Aïssi pushed new tag debian/1.33-1 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/debian/1.33-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/wayland-protocols][debian-unstable] 3 commits: Update standards version to 4.6.2, no changes needed

2024-01-28 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
wayland-protocols


Commits:
af06cf3f by Dylan Aïssi at 2024-01-28T11:03:02+01:00
Update standards version to 4.6.2, no changes needed

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
4ecbdb19 by Dylan Aïssi at 2024-01-28T11:27:43+01:00
Convert debian/copyright to DEP5 format

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
2e3cad6e by Dylan Aïssi at 2024-01-28T11:29:50+01:00
Release wayland-protocols version 1.33-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


3 changed files:

- debian/changelog
- debian/control
- debian/copyright


Changes:

=
debian/changelog
=
@@ -1,9 +1,11 @@
-wayland-protocols (1.33-1) UNRELEASED; urgency=medium
+wayland-protocols (1.33-1) unstable; urgency=medium
 
   * Team upload.
   * New upstream release. (Closes: #1061535, LP: #2050856)
+  * Update standards version to 4.6.2, no changes needed.
+  * Convert debian/copyright to DEP5 format.
 
- -- Dylan Aïssi   Sun, 28 Jan 2024 10:49:14 +0100
+ -- Dylan Aïssi   Sun, 28 Jan 2024 11:29:16 +0100
 
 wayland-protocols (1.32-1) unstable; urgency=medium
 


=
debian/control
=
@@ -9,7 +9,7 @@ Build-Depends:
  meson (>= 0.55.0),
  libwayland-dev,
  pkg-config
-Standards-Version: 4.6.0
+Standards-Version: 4.6.2
 Rules-Requires-Root: no
 Homepage: http://wayland.freedesktop.org/
 Vcs-Git: https://salsa.debian.org/xorg-team/wayland/wayland-protocols.git


=
debian/copyright
=
@@ -1,11 +1,8 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: wayland-protocols
 Upstream-Contact: wayland-de...@lists.freedesktop.org
 Source: https://wayland.freedesktop.org/releases/
 
-Files: debian/*
-Copyright: © 2016 Héctor Orón Martínez 
-License: Expat
-
 Files: *
 Copyright: © 2008-2013  Kristian Høgsberg
   © 2010-2013,2017 Intel Corporation
@@ -24,27 +21,32 @@ Copyright: © 2008-2013  Kristian Høgsberg
   © 2018   Simon Ser
 License: Expat
 
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice (including the next
-paragraph) shall be included in all copies or substantial portions of the
-Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.
-

-
-The above is the version of the MIT "Expat" License used by X.org:
+Files: debian/*
+Copyright: © 2016 Héctor Orón Martínez 
+License: Expat
 
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice (including the next
+ paragraph) shall be included in all copies or substantial portions of the
+ Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+ .
+ ---
+ .
+ The above is the version of the MIT "Expat" License used by X.org:
+ .
 http://cgit.freedesktop.org/xorg/xserver/tree/COPYING



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/compare/2c555e7f07b2378f32ccc7b6c5245232ac8a4654...2e3cad6e5cbeaeee0abde95c7ec3a586cd1ea5d0

-- 
View it on GitLab: 

[Git][xorg-team/wayland/wayland-protocols] Pushed new tag upstream/1.33

2024-01-28 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.33 at X Strike Force / wayland / 
wayland-protocols

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/wayland-protocols/-/tree/upstream/1.33
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new branch wip/daissi/reorganization

2024-01-26 Thread @daissi


Dylan Aïssi pushed new branch wip/daissi/reorganization at X Strike Force / 
wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/wip/daissi/reorganization
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] Apply wrap-and-sort -a

2024-01-26 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
0a51234c by Dylan Aïssi at 2024-01-26T09:50:32+01:00
Apply wrap-and-sort -a

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


4 changed files:

- debian/control
- debian/libweston-13-0.install
- debian/libweston-13-dev.install
- debian/weston.install


Changes:

=
debian/control
=
@@ -25,8 +25,8 @@ Build-Depends: debhelper-compat (= 13),
libneatvnc-dev (>= 0.7.0) [!ia64 !sparc64],
libpam0g-dev,
libpango1.0-dev,
-   libpixman-1-dev (>= 0.25.2),
libpipewire-0.3-dev,
+   libpixman-1-dev (>= 0.25.2),
libpng-dev,
libseat-dev (>= 0.4),
libsystemd-dev,
@@ -76,7 +76,8 @@ Package: libweston-13-0
 Section: libs
 Architecture: linux-any
 Multi-Arch: same
-Depends: ${misc:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends},
+ ${shlibs:Depends}
 Replaces: weston (<< 1.12.0-1)
 Breaks: weston (<< 1.12.0-1)
 Description: reference implementation of a wayland compositor (shared libs)


=
debian/libweston-13-0.install
=
@@ -3,11 +3,11 @@ usr/lib/*/libweston-13/color-lcms.so
 usr/lib/*/libweston-13/drm-backend.so
 usr/lib/*/libweston-13/gl-renderer.so
 usr/lib/*/libweston-13/headless-backend.so
+usr/lib/*/libweston-13/pipewire-backend.so
 usr/lib/*/libweston-13/pipewire-plugin.so
 usr/lib/*/libweston-13/rdp-backend.so
 usr/lib/*/libweston-13/remoting-plugin.so
+usr/lib/*/libweston-13/vnc-backend.so
 usr/lib/*/libweston-13/wayland-backend.so
 usr/lib/*/libweston-13/x11-backend.so
 usr/lib/*/libweston-13/xwayland.so
-usr/lib/*/libweston-13/pipewire-backend.so
-usr/lib/*/libweston-13/vnc-backend.so


=
debian/libweston-13-dev.install
=
@@ -6,4 +6,3 @@ usr/share/libweston-13/protocols/weston-debug.xml
 usr/share/libweston-13/protocols/weston-direct-display.xml
 usr/share/libweston-13/protocols/weston-output-capture.xml
 usr/share/pkgconfig/libweston-13-protocols.pc
-


=
debian/weston.install
=
@@ -4,10 +4,6 @@ usr/bin/weston
 usr/bin/weston-*
 usr/include/weston
 usr/lib/*/pkgconfig/weston.pc
-usr/libexec/weston-desktop-shell
-usr/libexec/weston-ivi-shell-user-interface
-usr/libexec/weston-keyboard
-usr/libexec/weston-simple-im
 usr/lib/*/weston/desktop-shell.so
 usr/lib/*/weston/fullscreen-shell.so
 usr/lib/*/weston/hmi-controller.so
@@ -16,6 +12,10 @@ usr/lib/*/weston/kiosk-shell.so
 usr/lib/*/weston/libexec_weston.so*
 usr/lib/*/weston/screen-share.so
 usr/lib/*/weston/systemd-notify.so
+usr/libexec/weston-desktop-shell
+usr/libexec/weston-ivi-shell-user-interface
+usr/libexec/weston-keyboard
+usr/libexec/weston-simple-im
+usr/share/man
 usr/share/wayland-sessions/weston.desktop
 usr/share/weston
-usr/share/man



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/0a51234c3030f3ba6395378c8beff87f01029858

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/0a51234c3030f3ba6395378c8beff87f01029858
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-unstable] 5 commits: Mark libweston-13-dev as 'Multi-Arch: same'

2024-01-25 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / 
weston


Commits:
20b2e9fa by Dylan Aïssi at 2024-01-25T17:56:54+01:00
Mark libweston-13-dev as Multi-Arch: same

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
5fa1f4d5 by Dylan Aïssi at 2024-01-25T20:57:34+01:00
Install all manpages through weston.install

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
430be56a by Dylan Aïssi at 2024-01-25T21:02:00+01:00
Enable all hardening flags

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
7b375482 by Dylan Aïssi at 2024-01-25T21:13:10+01:00
Add debian/libweston-13-0.symbols field in symbols file

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
8fcc67f8 by Dylan Aïssi at 2024-01-25T21:17:41+01:00
Add debian/upstream/metadata

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


6 changed files:

- debian/control
- debian/libweston-13-0.symbols
- debian/rules
- + debian/upstream/metadata
- debian/weston.install
- − debian/weston.manpages


Changes:

=
debian/control
=
@@ -91,6 +91,7 @@ Description: reference implementation of a wayland compositor 
(shared libs)
 Package: libweston-13-dev
 Section: libdevel
 Architecture: linux-any
+Multi-Arch: same
 Depends: libpixman-1-dev,
  libwayland-dev,
  libweston-13-0 (= ${binary:Version}),


=
debian/libweston-13-0.symbols
=
@@ -1,4 +1,5 @@
 libweston-13.so.0 libweston-13-0 #MINVER#
+* Build-Depends-Package: libweston-13-dev
  clear_pointer_focus@Base 12.0.0
  convert_size_by_transform_scale@Base 12.0.0
  linux_dmabuf_buffer_get@Base 12.0.0


=
debian/rules
=
@@ -1,5 +1,7 @@
 #!/usr/bin/make -f
 
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
 override_dh_auto_configure:
dh_auto_configure -- -Dscreenshare=true \
-Dsystemd=true


=
debian/upstream/metadata
=
@@ -0,0 +1,4 @@
+Bug-Database: https://gitlab.freedesktop.org/wayland/weston/-/issues
+Bug-Submit: https://gitlab.freedesktop.org/wayland/weston/-/issues/new
+Repository: https://gitlab.freedesktop.org/wayland/weston.git
+Repository-Browse: https://gitlab.freedesktop.org/wayland/weston


=
debian/weston.install
=
@@ -18,4 +18,4 @@ usr/lib/*/weston/screen-share.so
 usr/lib/*/weston/systemd-notify.so
 usr/share/wayland-sessions/weston.desktop
 usr/share/weston
-usr/share/man/man7/weston-vnc.7
+usr/share/man


=
debian/weston.manpages deleted
=
@@ -1,6 +0,0 @@
-usr/share/man/man1/weston-debug.1
-usr/share/man/man1/weston.1
-usr/share/man/man5/weston.ini.5
-usr/share/man/man7/weston-bindings.7
-usr/share/man/man7/weston-drm.7
-usr/share/man/man7/weston-rdp.7



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/09ffe2ef25849d66f71690b72127955da07fac9a...8fcc67f851539c88b1f43eb740350b4f5662941d

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/09ffe2ef25849d66f71690b72127955da07fac9a...8fcc67f851539c88b1f43eb740350b4f5662941d
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-1

2024-01-22 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-1 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-1_exp2

2024-01-19 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-1_exp2 at X Strike Force / wayland / 
weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-1_exp2
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-experimental] 5 commits: Set minimun version of libneatvnc-dev to 0.7.0

2024-01-19 Thread @daissi


Dylan Aïssi pushed to branch debian-experimental at X Strike Force / wayland / 
weston


Commits:
9829b2ec by Dylan Aïssi at 2024-01-18T21:10:37+01:00
Set minimun version of libneatvnc-dev to 0.7.0

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
805b1005 by Dylan Aïssi at 2024-01-18T21:39:33+01:00
Drop dependency on adduser, no longer required since weston.postinst was dropped

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
a0f58c34 by Dylan Aïssi at 2024-01-19T09:46:21+01:00
Restrict Build-Deps on libneatvnc-dev for supported architectures

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
3fc55de6 by Dylan Aïssi at 2024-01-19T09:46:59+01:00
Update debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
30e5ba2d by Dylan Aïssi at 2024-01-19T09:47:17+01:00
Release weston version 13.0.0-1~exp2

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/control


Changes:

=
debian/changelog
=
@@ -1,4 +1,4 @@
-weston (13.0.0-1~exp2) UNRELEASED; urgency=medium
+weston (13.0.0-1~exp2) experimental; urgency=medium
 
   * Drop outdated references to quilt
   * Fix short description of libweston-13-dev
@@ -11,6 +11,7 @@ weston (13.0.0-1~exp2) UNRELEASED; urgency=medium
   - libwayland-dev >= 1.22.0
   - meson >= 0.63.0
   - wayland-protocols >= 1.31
+  - libneatvnc-dev >= 0.7.0
   * Add debian/gbp.conf
   * Use secure URI for homepage
   * Switch to debhelper-compat 13
@@ -20,8 +21,11 @@ weston (13.0.0-1~exp2) UNRELEASED; urgency=medium
   * Mark libweston-13-0 as 'Multi-Arch: same'
   * Remove all references to weston-launch which was dropped
   upstream with weston 11
+  * Drop dependency on adduser, no longer required since
+  weston.postinst was dropped
+  * Restrict Build-Deps on libneatvnc-dev for supported architectures
 
- -- Dylan Aïssi   Thu, 18 Jan 2024 14:07:16 +0100
+ -- Dylan Aïssi   Fri, 19 Jan 2024 09:47:00 +0100
 
 weston (13.0.0-1~exp1) experimental; urgency=medium
 


=
debian/control
=
@@ -22,7 +22,7 @@ Build-Depends: debhelper-compat (= 13),
libinput-dev (>= 1.2.0),
libjpeg-dev,
liblcms2-dev,
-   libneatvnc-dev,
+   libneatvnc-dev (>= 0.7.0) [!ia64 !sparc64],
libpam0g-dev,
libpango1.0-dev,
libpixman-1-dev (>= 0.25.2),
@@ -58,8 +58,7 @@ Vcs-Browser: https://salsa.debian.org/xorg-team/wayland/weston
 
 Package: weston
 Architecture: linux-any
-Depends: adduser,
- ${misc:Depends},
+Depends: ${misc:Depends},
  ${shlibs:Depends}
 Breaks: libweston-8-dev
 Conflicts: libweston-8-dev



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/28438f14d90b35f281775a63cc746f97f82605d0...30e5ba2db75ef39103156bfc70922d646148e490

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/28438f14d90b35f281775a63cc746f97f82605d0...30e5ba2db75ef39103156bfc70922d646148e490
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][debian-experimental] 7 commits: Use secure URI for homepage

2024-01-18 Thread @daissi


Dylan Aïssi pushed to branch debian-experimental at X Strike Force / wayland / 
weston


Commits:
bf8731b0 by Dylan Aïssi at 2024-01-18T11:44:07+01:00
Use secure URI for homepage

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
be485dd9 by Dylan Aïssi at 2024-01-18T11:44:31+01:00
Switch to debhelper-compat 13

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
dabeef83 by Dylan Aïssi at 2024-01-18T11:54:36+01:00
Install some binaries in usr/libexec/ instead of usr/lib/*/

This is due to a change in debhelper compat 12 which relies on
the build system default to define --libexecdir, which should be
/usr/libexec (per FHS 3.0, adopted in Debian Policy 4.1.5).

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
a5159c08 by Dylan Aïssi at 2024-01-18T11:57:01+01:00
Drop useless debian/tmp/ prefix

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
86ca9f21 by Dylan Aïssi at 2024-01-18T12:06:46+01:00
weston suggests wayland-utils (Closes: #980995)

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
f7732643 by Dylan Aïssi at 2024-01-18T12:50:22+01:00
Mark libweston-13-0 as Multi-Arch: same

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
6c4f6e0a by Dylan Aïssi at 2024-01-18T12:54:06+01:00
Update debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


5 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/weston.install
- debian/weston.manpages


Changes:

=
debian/changelog
=
@@ -1,3 +1,26 @@
+weston (13.0.0-1~exp2) UNRELEASED; urgency=medium
+
+  * Drop outdated references to quilt
+  * Fix short description of libweston-13-dev
+  * Standards-Version: 4.6.2 (no changes required)
+  * Update debian/copyright
+  * Remove trailing whitespace in debian/changelog
+  * Update minimun version of Build-Deps
+  - libdrm-dev >= 2.4.108
+  - libinput-dev >= 1.2.0
+  - libwayland-dev >= 1.22.0
+  - meson >= 0.63.0
+  - wayland-protocols >= 1.31
+  * Add debian/gbp.conf
+  * Use secure URI for homepage
+  * Switch to debhelper-compat 13
+  * Install some binaries in usr/libexec/ instead of usr/lib/*/
+  * Drop useless debian/tmp/ prefix
+  * weston suggests wayland-utils (Closes: #980995)
+  * Mark libweston-13-0 as 'Multi-Arch: same'
+
+ -- Dylan Aïssi   Thu, 18 Jan 2024 12:52:06 +0100
+
 weston (13.0.0-1~exp1) experimental; urgency=medium
 
   [ Dylan Aïssi ]


=
debian/compat deleted
=
@@ -1 +0,0 @@
-10


=
debian/control
=
@@ -6,7 +6,7 @@ Uploaders: Mike Gabriel ,
Héctor Orón Martínez ,
Emilio Pozuelo Monfort ,
Dylan Aïssi 
-Build-Depends: debhelper (>= 10),
+Build-Depends: debhelper-compat (= 13),
freerdp2-dev,
libcairo2-dev (>= 1.10.0),
libcolord-dev (>= 0.1.27),
@@ -52,7 +52,7 @@ Build-Depends: debhelper (>= 10),
wayland-protocols (>= 1.31)
 Standards-Version: 4.6.2
 Rules-Requires-Root: no
-Homepage: http://wayland.freedesktop.org/
+Homepage: https://wayland.freedesktop.org/
 Vcs-Git: https://salsa.debian.org/xorg-team/wayland/weston.git
 Vcs-Browser: https://salsa.debian.org/xorg-team/wayland/weston
 
@@ -65,6 +65,7 @@ Breaks: libweston-8-dev
 Conflicts: libweston-8-dev
 Replaces: libweston-8-dev
 Recommends: libgl1-mesa-dri
+Suggests: wayland-utils
 Description: reference implementation of a wayland compositor
  Part of the Wayland project is also the Weston reference implementation
  of a Wayland compositor. Weston can run as an X client or under Linux
@@ -75,6 +76,7 @@ Description: reference implementation of a wayland compositor
 Package: libweston-13-0
 Section: libs
 Architecture: linux-any
+Multi-Arch: same
 Depends: ${misc:Depends}, ${shlibs:Depends}
 Replaces: weston (<< 1.12.0-1)
 Breaks: weston (<< 1.12.0-1)


=
debian/weston.install
=
@@ -4,10 +4,10 @@ usr/bin/weston
 usr/bin/weston-*
 usr/include/weston
 usr/lib/*/pkgconfig/weston.pc
-usr/lib/*/weston-desktop-shell
-usr/lib/*/weston-ivi-shell-user-interface
-usr/lib/*/weston-keyboard
-usr/lib/*/weston-simple-im
+usr/libexec/weston-desktop-shell
+usr/libexec/weston-ivi-shell-user-interface
+usr/libexec/weston-keyboard
+usr/libexec/weston-simple-im
 usr/lib/*/weston/desktop-shell.so
 usr/lib/*/weston/fullscreen-shell.so
 usr/lib/*/weston/hmi-controller.so


=
debian/weston.manpages
=
@@ -1,6 +1,6 @@
-debian/tmp/usr/share/man/man1/weston-debug.1
-debian/tmp/usr/share/man/man1/weston.1
-debian/tmp/usr/share/man/man5/weston.ini.5
-debian/tmp/usr/share/man/man7/weston-bindings.7
-debian/tmp/usr/share/man/man7/weston-drm.7

[Git][xorg-team/wayland/weston][debian-experimental] 2 commits: Add myself in Uploaders

2024-01-17 Thread @daissi


Dylan Aïssi pushed to branch debian-experimental at X Strike Force / wayland / 
weston


Commits:
05fd5f87 by Dylan Aïssi at 2024-01-17T22:11:20+01:00
Add myself in Uploaders

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
081546da by Dylan Aïssi at 2024-01-17T22:12:13+01:00
Release weston version 13.0.0-1~exp1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/control


Changes:

=
debian/changelog
=
@@ -1,6 +1,4 @@
-weston (13.0.0-1~exp1) UNRELEASED; urgency=medium
-
-  * Team upload.
+weston (13.0.0-1~exp1) experimental; urgency=medium
 
   [ Dylan Aïssi ]
   * New upstream release. (Closes: #1054695)
@@ -8,6 +6,7 @@ weston (13.0.0-1~exp1) UNRELEASED; urgency=medium
   * Update symbols file
   * Use format: 3.0 (quilt)
   * Import Marius Vlad's key
+  * Add myself in Uploaders
 
   [ Timo Aaltonen ]
   * rules: Drop the workaround to drop includedir from


=
debian/control
=
@@ -4,7 +4,8 @@ Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: Mike Gabriel ,
Héctor Orón Martínez ,
-   Emilio Pozuelo Monfort 
+   Emilio Pozuelo Monfort ,
+   Dylan Aïssi 
 Build-Depends: debhelper (>= 10),
freerdp2-dev,
libcairo2-dev (>= 1.10.0),



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/f1d3228e5eef8ad609d77f00e1afa9db0ad4d880...081546da3a66358118924428f9a8c0f07ad6e1f3

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/compare/f1d3228e5eef8ad609d77f00e1afa9db0ad4d880...081546da3a66358118924428f9a8c0f07ad6e1f3
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag debian/13.0.0-1_exp1

2024-01-17 Thread @daissi


Dylan Aïssi pushed new tag debian/13.0.0-1_exp1 at X Strike Force / wayland / 
weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/debian/13.0.0-1_exp1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston] Pushed new tag upstream/13.0.0

2024-01-17 Thread @daissi


Dylan Aïssi pushed new tag upstream/13.0.0 at X Strike Force / wayland / weston

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/tree/upstream/13.0.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/wayland/weston][pristine-tar] pristine-tar data for weston_13.0.0.orig.tar.xz

2024-01-17 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / wayland / weston


Commits:
780aa6d5 by Dylan Aïssi at 2024-01-17T21:50:22+01:00
pristine-tar data for weston_13.0.0.orig.tar.xz

- - - - -


3 changed files:

- + weston_13.0.0.orig.tar.xz.asc
- + weston_13.0.0.orig.tar.xz.delta
- + weston_13.0.0.orig.tar.xz.id


Changes:

=
weston_13.0.0.orig.tar.xz.asc
=
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEEcDKHej6x6uPk3J379jQS5glH1u8FAmVk3l4ACgkQ9jQS5glH
+1u8Lbg/+OphRKpppH63Pg8gMrduNv5UrSH4+6rQWtCW0om5gX+SX4pevAU/iydP+
+3ZCLXh52W/eJcfqkJKqw3M1mJEzQcMl2q/KETJAOl384JaecZmFTBasWpt2iT82r
+XGSduo5YK4d6P+j4nhyESfk93VeKBl8aq24ZNy7qHRJZgpl1zhuvNk0/U0lnVsKD
+2W/NF52Agjrwvt3uM+wRxX11RoEjz8ggboW6bSwG/+CYfsCGIkli3QdFjB5Q0gLU
+5rlnyEMIgmmAhPjWuRTNSa5GymEpBLL54iqChHKfy9Q9wO9DCLI0iW29HQVbuG/a
+Ui5ZRR8fJxLtroT4AQmDlJZU/pRyYQeAtxna60T/2VdwOS8+JYwAPKfExZWaxVBk
+GSL6pIdQuIlHkV9daHKsVQ5ZvO0VPJX+WyYvxPgoemT5L1MmWN8ks8YGoCnlLF43
+o9UtNUDXcGo8JmJp5DXx4olRvMxQFXno9LIb4unTMy79IfJBmrHpLUNkcGxmM6EX
+kOFyHFRbzPF0HUffCIR+8Htbk3QUi7d8FYfrLohgQ2kKzbaki0QLnolYLO52przu
+y5Dljlg5c3/NXvM95NLEyBxvGIVZ2DYor5eV27iYN5DaJNRiU0JMTcdTlv+QAA2T
+KD4WPTsm/4dgQ2Ug3niesuI3YiXh1nJxRZsAdFrRvDO8IPLkspM=
+=DFRo
+-END PGP SIGNATURE-


=
weston_13.0.0.orig.tar.xz.delta
=
Binary files /dev/null and b/weston_13.0.0.orig.tar.xz.delta differ


=
weston_13.0.0.orig.tar.xz.id
=
@@ -0,0 +1 @@
+dca4f69f8f76143d26275ae0d0e30f0cf1e25b03



View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/780aa6d510d660ee231457c050db7a1f3e525420

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/wayland/weston/-/commit/780aa6d510d660ee231457c050db7a1f3e525420
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag debian/1.0.1+dfsg-1

2023-11-10 Thread @daissi


Dylan Aïssi pushed new tag debian/1.0.1+dfsg-1 at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/debian/1.0.1+dfsg-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag upstream/1.0.1+dfsg

2023-11-10 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.1+dfsg at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/upstream/1.0.1+dfsg
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][upstream] New upstream version 1.0.1+dfsg

2023-11-10 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / 
gfxreconstruct


Commits:
899e6638 by Dylan Aïssi at 2023-11-10T16:16:22+01:00
New upstream version 1.0.1+dfsg
- - - - -


30 changed files:

- .github/workflows/ci_build.yml
- .github/workflows/sdk_android_build.yml
- .gitignore
- CMakeLists.txt
- − HOWTO_android.md
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/graphics/CMakeLists.txt
- android/gradlew
- android/layer/CMakeLists.txt
- android/layer/build.gradle
- android/layer/src/main/AndroidManifest.xml
- android/scripts/gfxrecon.py
- android/tools/replay/CMakeLists.txt
- android/tools/replay/build.gradle
- android/tools/replay/src/main/AndroidManifest.xml
- cmake/GenerateLayerJson.cmake
- framework/application/xcb_window.cpp
- framework/application/xcb_window.h
- framework/application/xlib_context.cpp
- framework/decode/CMakeLists.txt
- framework/decode/api_decoder.h
- framework/decode/custom_ags_decoder.h
- framework/decode/custom_ags_replay_consumer.cpp
- framework/decode/custom_dx12_ascii_consumer.cpp
- framework/decode/custom_dx12_ascii_consumer.h
- framework/decode/custom_dx12_to_string.cpp
- framework/decode/custom_dx12_to_string.h
- framework/decode/dx12_ascii_consumer_base.cpp
- framework/decode/dx12_ascii_consumer_base.h


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/899e6638e5803f1e22785094ce209e9d4c704041

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/899e6638e5803f1e22785094ce209e9d4c704041
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 6 commits: Add HOWTO_android.md in Files-Excluded

2023-11-10 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
36c279eb by Dylan Aïssi at 2023-11-10T16:14:36+01:00
Add HOWTO_android.md in Files-Excluded

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
899e6638 by Dylan Aïssi at 2023-11-10T16:16:22+01:00
New upstream version 1.0.1+dfsg
- - - - -
98db698c by Dylan Aïssi at 2023-11-10T16:16:26+01:00
Update upstream source from tag upstream/1.0.1+dfsg

Update to upstream version 1.0.1+dfsg
with Debian dir f7cec85bcab46d74ad64daaa8abb3d59bd0ba069
- - - - -
3909cc10 by Dylan Aïssi at 2023-11-10T16:17:37+01:00
Bump version of libvulkan-dev to = 1.3.268

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
c10e62c2 by Dylan Aïssi at 2023-11-10T16:18:38+01:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
67974efc by Dylan Aïssi at 2023-11-10T16:24:17+01:00
Release gfxreconstruct version 1.0.1+dfsg-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


30 changed files:

- .github/workflows/ci_build.yml
- .github/workflows/sdk_android_build.yml
- .gitignore
- CMakeLists.txt
- − HOWTO_android.md
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/graphics/CMakeLists.txt
- android/gradlew
- android/layer/CMakeLists.txt
- android/layer/build.gradle
- android/layer/src/main/AndroidManifest.xml
- android/scripts/gfxrecon.py
- android/tools/replay/CMakeLists.txt
- android/tools/replay/build.gradle
- android/tools/replay/src/main/AndroidManifest.xml
- cmake/GenerateLayerJson.cmake
- debian/changelog
- debian/control
- debian/copyright
- framework/application/xcb_window.cpp
- framework/application/xcb_window.h
- framework/application/xlib_context.cpp
- framework/decode/CMakeLists.txt
- framework/decode/api_decoder.h
- framework/decode/custom_ags_decoder.h
- framework/decode/custom_ags_replay_consumer.cpp
- framework/decode/custom_dx12_ascii_consumer.cpp
- framework/decode/custom_dx12_ascii_consumer.h
- framework/decode/custom_dx12_to_string.cpp


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/e72ce9c420f93e1f2a024bf91bced4c9dec9b8fc...67974efca967a053e4b56311b2b0ce3f3dde3df9

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/e72ce9c420f93e1f2a024bf91bced4c9dec9b8fc...67974efca967a053e4b56311b2b0ce3f3dde3df9
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][pristine-tar] pristine-tar data for gfxreconstruct_1.0.1+dfsg.orig.tar.xz

2023-11-10 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
gfxreconstruct


Commits:
0fefefe6 by Dylan Aïssi at 2023-11-10T16:16:26+01:00
pristine-tar data for gfxreconstruct_1.0.1+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + gfxreconstruct_1.0.1+dfsg.orig.tar.xz.delta
- + gfxreconstruct_1.0.1+dfsg.orig.tar.xz.id


Changes:

=
gfxreconstruct_1.0.1+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/gfxreconstruct_1.0.1+dfsg.orig.tar.xz.delta differ


=
gfxreconstruct_1.0.1+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+d38c8fa3b17e019e3d01fc8a298407a4f05924ad



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/0fefefe675f193be3be93471203b1ceb238596fb

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/0fefefe675f193be3be93471203b1ceb238596fb
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag upstream/1.3.250.1

2023-11-10 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.3.250.1 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/upstream/1.3.250.1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag upstream/1.3.268.0

2023-11-10 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.3.268.0 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/upstream/1.3.268.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag debian/1.3.268.0-1

2023-11-10 Thread @daissi


Dylan Aïssi pushed new tag debian/1.3.268.0-1 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/debian/1.3.268.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][pristine-tar] pristine-tar data for vulkan-volk_1.3.268.0.orig.tar.gz

2023-11-10 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
vulkan-volk


Commits:
1b2021d8 by Dylan Aïssi at 2023-11-10T16:01:21+01:00
pristine-tar data for vulkan-volk_1.3.268.0.orig.tar.gz

- - - - -


2 changed files:

- + vulkan-volk_1.3.268.0.orig.tar.gz.delta
- + vulkan-volk_1.3.268.0.orig.tar.gz.id


Changes:

=
vulkan-volk_1.3.268.0.orig.tar.gz.delta
=
Binary files /dev/null and b/vulkan-volk_1.3.268.0.orig.tar.gz.delta differ


=
vulkan-volk_1.3.268.0.orig.tar.gz.id
=
@@ -0,0 +1 @@
+1b9744b3926cebe535c2f00841a2c44ac5eadd3c



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/1b2021d82e95621042d6d6bea9ea8406e87c9e7f

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/1b2021d82e95621042d6d6bea9ea8406e87c9e7f
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk] Pushed new tag debian/1.3.250.1-1

2023-07-25 Thread @daissi


Dylan Aïssi pushed new tag debian/1.3.250.1-1 at X Strike Force / vulkan / 
vulkan-volk

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/tree/debian/1.3.250.1-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/vulkan-volk][pristine-tar] pristine-tar data for vulkan-volk_1.3.250.1.orig.tar.gz

2023-07-25 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
vulkan-volk


Commits:
1b231ad7 by Dylan Aïssi at 2023-07-25T16:16:51+02:00
pristine-tar data for vulkan-volk_1.3.250.1.orig.tar.gz

- - - - -


2 changed files:

- + vulkan-volk_1.3.250.1.orig.tar.gz.delta
- + vulkan-volk_1.3.250.1.orig.tar.gz.id


Changes:

=
vulkan-volk_1.3.250.1.orig.tar.gz.delta
=
Binary files /dev/null and b/vulkan-volk_1.3.250.1.orig.tar.gz.delta differ


=
vulkan-volk_1.3.250.1.orig.tar.gz.id
=
@@ -0,0 +1 @@
+a31dad973058e1d10466f4e0f13514c30e33aa93



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/1b231ad7d99eeea9cefbde2b26829d78436884c3

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/vulkan-volk/-/commit/1b231ad7d99eeea9cefbde2b26829d78436884c3
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 3 commits: Mark #1037677 as closed with this new upstream version

2023-07-25 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
ed728033 by Dylan Aïssi at 2023-07-25T12:18:37+02:00
Mark #1037677 as closed with this new upstream version

- - - - -
de7e64de by Dylan Aïssi at 2023-07-25T12:23:02+02:00
Fix lintian-overrides syntax

- - - - -
e72ce9c4 by Dylan Aïssi at 2023-07-25T12:23:22+02:00
Release gfxreconstruct version 1.0.0+dfsg-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/lintian-overrides


Changes:

=
debian/changelog
=
@@ -1,9 +1,11 @@
-gfxreconstruct (1.0.0+dfsg-1) UNRELEASED; urgency=medium
+gfxreconstruct (1.0.0+dfsg-1) unstable; urgency=medium
 
   * New upstream version 1.0.0+dfsg
+- Fix build with GCC-13 (Closes: #1037677)
   * Bump version of libvulkan-dev to >= 1.3.250
+  * Fix lintian-overrides syntax
 
- -- Dylan Aïssi   Tue, 25 Jul 2023 11:40:17 +0200
+ -- Dylan Aïssi   Tue, 25 Jul 2023 12:23:07 +0200
 
 gfxreconstruct (0.9.18+dfsg-1) unstable; urgency=medium
 


=
debian/lintian-overrides
=
@@ -1,12 +1,13 @@
 # These binaries have manpages without the .py extension
-gfxreconstruct: no-manual-page usr/bin/gfxrecon-capture.py
-gfxreconstruct: no-manual-page usr/bin/gfxrecon.py
-gfxreconstruct: spare-manual-page usr/share/man/man1/gfxrecon-capture.1.gz
-gfxreconstruct: spare-manual-page usr/share/man/man1/gfxrecon.1.gz
+gfxreconstruct: no-manual-page [usr/bin/gfxrecon-capture.py]
+gfxreconstruct: no-manual-page [usr/bin/gfxrecon.py]
+gfxreconstruct: spare-manual-page [usr/share/man/man1/gfxrecon-capture.1.gz]
+gfxreconstruct: spare-manual-page [usr/share/man/man1/gfxrecon.1.gz]
 
 # Provided like this from upstream
-gfxreconstruct: script-with-language-extension usr/bin/gfxrecon-capture.py
-gfxreconstruct: script-with-language-extension usr/bin/gfxrecon.py
+gfxreconstruct: script-with-language-extension 
[usr/bin/gfxrecon-capture-vulkan.py]
+gfxreconstruct: script-with-language-extension [usr/bin/gfxrecon-capture.py]
+gfxreconstruct: script-with-language-extension [usr/bin/gfxrecon.py]
 
 # Private library
 gfxreconstruct: lacks-ldconfig-trigger usr/lib/*/libVkLayer_gfxreconstruct.so



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/39e539c3c4e7d0712f085f29adf07c38d9332e38...e72ce9c420f93e1f2a024bf91bced4c9dec9b8fc

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/39e539c3c4e7d0712f085f29adf07c38d9332e38...e72ce9c420f93e1f2a024bf91bced4c9dec9b8fc
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag debian/1.0.0+dfsg-1

2023-07-25 Thread @daissi


Dylan Aïssi pushed new tag debian/1.0.0+dfsg-1 at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/debian/1.0.0+dfsg-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct] Pushed new tag upstream/1.0.0+dfsg

2023-07-25 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.0+dfsg at X Strike Force / vulkan / 
gfxreconstruct

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/tree/upstream/1.0.0+dfsg
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][master] 4 commits: New upstream version 1.0.0+dfsg

2023-07-25 Thread @daissi


Dylan Aïssi pushed to branch master at X Strike Force / vulkan / gfxreconstruct


Commits:
e0d2668e by Dylan Aïssi at 2023-07-25T11:39:45+02:00
New upstream version 1.0.0+dfsg
- - - - -
7f9c7790 by Dylan Aïssi at 2023-07-25T11:39:49+02:00
Update upstream source from tag upstream/1.0.0+dfsg

Update to upstream version 1.0.0+dfsg
with Debian dir 9408621d0be4a76dad03c60b7c522f1ef7e8c20d
- - - - -
2eda817b by Dylan Aïssi at 2023-07-25T11:40:34+02:00
Bump debian/changelog

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -
39e539c3 by Dylan Aïssi at 2023-07-25T11:41:29+02:00
Bump version of libvulkan-dev to = 1.3.250

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


25 changed files:

- .github/workflows/ci_build.yml
- .github/workflows/release_build.yml
- CMakeLists.txt
- + HOWTO_android.md
- README.md
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/layer/build.gradle
- android/scripts/gfxrecon.py
- android/tools/replay/build.gradle
- debian/changelog
- debian/control
- external/VulkanMemoryAllocator/include/vk_mem_alloc.h
- + external/nlohmann/CMakeLists.txt
- + external/nlohmann/include/nlohmann/json.hpp
- + external/stb/LICENSE
- + external/stb/README
- + external/stb/stb_image_write.h
- framework/application/CMakeLists.txt
- framework/application/application.h
- framework/decode/CMakeLists.txt
- + framework/decode/ags_detection_consumer.h
- + framework/decode/custom_ags_consumer_base.h
- + framework/decode/custom_ags_decoder.cpp


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/c3cdbd25e23799b7873af570da0e70a9235f7692...39e539c3c4e7d0712f085f29adf07c38d9332e38

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/compare/c3cdbd25e23799b7873af570da0e70a9235f7692...39e539c3c4e7d0712f085f29adf07c38d9332e38
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][upstream] New upstream version 1.0.0+dfsg

2023-07-25 Thread @daissi


Dylan Aïssi pushed to branch upstream at X Strike Force / vulkan / 
gfxreconstruct


Commits:
e0d2668e by Dylan Aïssi at 2023-07-25T11:39:45+02:00
New upstream version 1.0.0+dfsg
- - - - -


23 changed files:

- .github/workflows/ci_build.yml
- .github/workflows/release_build.yml
- CMakeLists.txt
- + HOWTO_android.md
- README.md
- android/framework/cmake-config/PlatformConfig.cmake
- android/framework/decode/CMakeLists.txt
- android/framework/util/CMakeLists.txt
- android/layer/build.gradle
- android/scripts/gfxrecon.py
- android/tools/replay/build.gradle
- external/VulkanMemoryAllocator/include/vk_mem_alloc.h
- + external/nlohmann/CMakeLists.txt
- + external/nlohmann/include/nlohmann/json.hpp
- + external/stb/LICENSE
- + external/stb/README
- + external/stb/stb_image_write.h
- framework/application/CMakeLists.txt
- framework/application/application.h
- framework/decode/CMakeLists.txt
- + framework/decode/ags_detection_consumer.h
- + framework/decode/custom_ags_consumer_base.h
- + framework/decode/custom_ags_decoder.cpp


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/e0d2668e1bcab7c2c6c1b36cecee73c0e7d1bcff

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/e0d2668e1bcab7c2c6c1b36cecee73c0e7d1bcff
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/gfxreconstruct][pristine-tar] pristine-tar data for gfxreconstruct_1.0.0+dfsg.orig.tar.xz

2023-07-25 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at X Strike Force / vulkan / 
gfxreconstruct


Commits:
88bcd82d by Dylan Aïssi at 2023-07-25T11:39:49+02:00
pristine-tar data for gfxreconstruct_1.0.0+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + gfxreconstruct_1.0.0+dfsg.orig.tar.xz.delta
- + gfxreconstruct_1.0.0+dfsg.orig.tar.xz.id


Changes:

=
gfxreconstruct_1.0.0+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/gfxreconstruct_1.0.0+dfsg.orig.tar.xz.delta differ


=
gfxreconstruct_1.0.0+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+e976fb5228b7f2b6ad7a488ec5d2bbd86ea7ccf7



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/88bcd82d6a5cf32929bd2798e3fdc57eb38fe333

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/gfxreconstruct/-/commit/88bcd82d6a5cf32929bd2798e3fdc57eb38fe333
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/spirv-cross] Pushed new tag upstream/2021.01.15+1.3.239.0

2023-02-08 Thread @daissi


Dylan Aïssi pushed new tag upstream/2021.01.15+1.3.239.0 at X Strike Force / 
vulkan / spirv-cross

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/spirv-cross/-/tree/upstream/2021.01.15+1.3.239.0
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/spirv-cross] Pushed new tag debian/2021.01.15+1.3.239.0-1

2023-02-08 Thread @daissi


Dylan Aïssi pushed new tag debian/2021.01.15+1.3.239.0-1 at X Strike Force / 
vulkan / spirv-cross

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/spirv-cross/-/tree/debian/2021.01.15+1.3.239.0-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/spirv-cross][debian-unstable] 2 commits: Fix debian/watch

2023-02-08 Thread @daissi


Dylan Aïssi pushed to branch debian-unstable at X Strike Force / vulkan / 
spirv-cross


Commits:
d73a279e by Dylan Aïssi at 2023-02-08T09:32:51+01:00
Fix debian/watch

- - - - -
529ce3ce by Dylan Aïssi at 2023-02-08T09:33:22+01:00
Release spirv-cross version 2021.01.15+1.3.239.0-1

Signed-off-by: Dylan Aïssi dylan.ai...@collabora.com

- - - - -


2 changed files:

- debian/changelog
- debian/watch


Changes:

=
debian/changelog
=
@@ -1,8 +1,9 @@
-spirv-cross (2021.01.15+1.3.239.0-1) UNRELEASED; urgency=medium
+spirv-cross (2021.01.15+1.3.239.0-1) unstable; urgency=medium
 
   * New upstream release: sdk-1.3.239.0
+  * Fix debian/watch
 
- -- Dylan Aïssi   Tue, 07 Feb 2023 17:39:43 +0100
+ -- Dylan Aïssi   Wed, 08 Feb 2023 09:33:02 +0100
 
 spirv-cross (2021.01.15+1.3.236.0-1) unstable; urgency=medium
 


=
debian/watch
=
@@ -1,3 +1,3 @@
 version=4
-opts=filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/spirv-cross-$1\.tar\.gz/,dversionmangle=s/2021.01.15\+//,uversionmangle=s/(\d\S+)/2021.01.15\+$1/
 \
+opts=filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/spirv-cross-$1\.tar\.gz/,uversionmangle=s/(\d\S+)/2021.01.15\+$1/
 \
   https://github.com/KhronosGroup/SPIRV-Cross/tags 
(?:.*?/)sdk[_-](\d[\d.]*)\.tar\.gz



View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/spirv-cross/-/compare/057ebd0878b202a648adeb6d6f1cb1ae16da4c6d...529ce3cec9a960efa4f1d63f4018963344ccdfb9

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/spirv-cross/-/compare/057ebd0878b202a648adeb6d6f1cb1ae16da4c6d...529ce3cec9a960efa4f1d63f4018963344ccdfb9
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/vulkan/spirv-cross][upstream-unstable] 30 commits: Add C API option for enable row major workaround.

2023-02-07 Thread @daissi


Dylan Aïssi pushed to branch upstream-unstable at X Strike Force / vulkan / 
spirv-cross


Commits:
3c997e12 by Hans-Kristian Arntzen at 2022-12-13T15:04:55+01:00
Add C API option for enable row major workaround.

- - - - -
03b1f66e by Hans-Kristian Arntzen at 2022-12-13T15:44:03+01:00
GLSL: Fix row-major workaround wrapper for ES.

By default, the matrix would be declared as mediump, causing precision
issues. Need to dispatch to two separate functions since GLSL does not
support overload based on precision.

- - - - -
68a012a4 by Hans-Kristian Arntzen at 2022-12-13T16:34:00+01:00
CFG: Handle implied access to opaque loaded values.

Similar concern as access chains. Objects that we cannot lower to
temporaries must implicitly access all expression dependencies when they
are themselves accessed.

- - - - -
baf38f05 by Hans-Kristian Arntzen at 2022-12-13T16:34:34+01:00
Merge pull request #2070 from KhronosGroup/fix-2066

Handle row major matrix workaround more gracefully
- - - - -
a89dea3c by Hans-Kristian Arntzen at 2022-12-13T17:16:31+01:00
Merge pull request #2071 from KhronosGroup/fix-2068

CFG: Handle implied access to opaque loaded values.
- - - - -
643b7be1 by Bill Hollings at 2022-12-28T12:40:37-05:00
MSL: Add support for writable images in iOS Tier2 argument buffers.

- Add CompilerMSL::Options::argument_buffers_tier as an enumeration to
  allow calling app to specify platform argument buffer tier capabilities..
- Support iOS writable images in Tier2 argument buffers when specified.

Tier capabilities based on recommendations from Apple engineering.

- - - - -
6371580f by Laura Hermanns at 2023-01-03T14:19:42-05:00
Fixed typo in CompilerGLSL::should_dereference()

- - - - -
cc2b3b61 by Hans-Kristian Arntzen at 2023-01-05T11:54:49+01:00
Merge pull request #2077 from EpicGames/fixes_glsl

Fixed typo in CompilerGLSL::should_dereference()
- - - - -
549cde7f by Hans-Kristian Arntzen at 2023-01-05T12:24:02+01:00
Fix GCC5 build.

- - - - -
0bb28ef8 by Hans-Kristian Arntzen at 2023-01-05T13:00:56+01:00
Merge pull request #2078 from KhronosGroup/fix-2072

Fix GCC5 build.
- - - - -
284ccf5d by Bill Hollings at 2023-01-08T21:22:23-05:00
Fixes from code review of adding writable images to iOS Tier2 argument buffers.

- - - - -
cded61dd by Hans-Kristian Arntzen at 2023-01-09T11:52:29+01:00
Merge pull request #2076 from billhollings/ios-tier2-writable-images

MSL: Add support for writable images in iOS Tier2 argument buffers.
- - - - -
d69a2caf by Loic Sharma at 2023-01-09T18:14:37-08:00
Accept no ops

- - - - -
07a629f1 by Hans-Kristian Arntzen at 2023-01-11T15:08:16+01:00
Roll dependencies.

- - - - -
457fd3db by Hans-Kristian Arntzen at 2023-01-11T15:18:19+01:00
Add tests for loops compiled with debug semantics.

- - - - -
a61a541e by Hans-Kristian Arntzen at 2023-01-11T15:18:41+01:00
Merge branch accept_noop of 
https://github.com/loic-sharma/SPIRV-Cross into pr-2080

- - - - -
9d8ef6b3 by Hans-Kristian Arntzen at 2023-01-11T15:21:58+01:00
Update test for updated block_is_noop check.

- - - - -
bcbe33ad by Hans-Kristian Arntzen at 2023-01-12T12:41:53+01:00
Also consider NonSemantic ExtInst in block_is_noop.

- - - - -
d46c10eb by Hans-Kristian Arntzen at 2023-01-12T12:42:01+01:00
Refactor PHI checks into block_is_noop instead.

- - - - -
38cd2140 by Hans-Kristian Arntzen at 2023-01-12T13:12:48+01:00
Merge pull request #2083 from KhronosGroup/pr-2080

Land PR 2080
- - - - -
f8452734 by Hans-Kristian Arntzen at 2023-01-12T16:05:17+01:00
GLSL: Declare gl_in/gl_out as array more robustly.

If a builtin block was not already declared, we would miss some
scenarios.

- - - - -
1047c13d by Hans-Kristian Arntzen at 2023-01-12T16:27:11+01:00
GLSL: Handle textureGatherOffsets properly.

We forgot to pass down the offset ID, clean up coffset vs offset jank
while were at it.

- - - - -
a0852273 by Hans-Kristian Arntzen at 2023-01-12T17:47:47+01:00
Merge pull request #2084 from KhronosGroup/fix-2069

GLSL: Declare gl_in/gl_out as array more robustly.
- - - - -
88c6b499 by Hans-Kristian Arntzen at 2023-01-12T17:48:00+01:00
Merge pull request #2085 from KhronosGroup/fix-2075

GLSL: Handle textureGatherOffsets properly.
- - - - -
49e4117c by Hans-Kristian Arntzen at 2023-01-12T17:52:15+01:00
Updates for main branch rename.

- - - - -
4ba13e0c by rdb at 2023-01-14T18:57:24+01:00
GLSL/HLSL: Add legacy handling for int vertex attributes

- - - - -
6bba45d2 by Hans-Kristian Arntzen at 2023-01-15T12:17:30+01:00
Fix misc compilation issues with std::max.

Apparently uint32_t and unsigned is not the same type on some esoteric
platforms.

- - - - -
09dd11be by rdb at 2023-01-16T20:02:13+01:00
GLSL: Support GL_NV_shader_noperspective_interpolation in GLES
- - - - -
b52faf8a by Hans-Kristian Arntzen at 2023-01-17T11:59:30+01:00
Merge pull request #2086 from rdb/legacy-int-attributes

GLSL/HLSL: Add legacy handling for int vertex attributes
- - - - -
4212eef6 by Hans-Kristian Arntzen at 2023-01-17T12:02:22+01:00
Merge pull request 

  1   2   >