Commits:
-
21c86db1
by Timo Aaltonen at 2024-08-02T16:36:06+03:00
control: Mark NVK build-deps accordingly.
-
85e27adb
by Timo Aaltonen at 2024-08-02T17:45:37+03:00
rules: Drop --wrap-mode=default, leftover from previous testing. (Closes: #1077729)
-
0b7b838d
by Timo Aaltonen at 2024-08-02T17:45:55+03:00
release to sid
4 changed files:
Changes:
debian/changelog
|
1
|
+mesa (24.1.5-3) unstable; urgency=medium
|
|
2
|
+
|
|
3
|
+ * control: Mark NVK build-deps accordingly.
|
|
4
|
+ * rules: Drop --wrap-mode=default, leftover from previous testing.
|
|
5
|
+ (Closes: #1077729)
|
|
6
|
+
|
|
7
|
+ -- Timo Aaltonen <tjaalton@debian.org> Fri, 02 Aug 2024 17:45:45 +0300
|
|
8
|
+
|
1
|
9
|
mesa (24.1.5-2) unstable; urgency=medium
|
2
|
10
|
|
3
|
11
|
[ Adrian Bunk ]
|
debian/control
... |
... |
@@ -64,8 +64,8 @@ Build-Depends: |
64
|
64
|
llvm-spirv-17 [amd64 arm64 armel armhf i386 loong64 mips64el powerpc ppc64 ppc64el riscv64 s390x x32],
|
65
|
65
|
libclc-17 [amd64 arm64 armel armhf i386 loong64 mips64el powerpc ppc64 ppc64el riscv64 s390x x32],
|
66
|
66
|
libllvmspirvlib-17-dev [amd64 arm64 armel armhf i386 loong64 mips64el powerpc ppc64 ppc64el riscv64 s390x sparc64 x32],
|
67
|
|
- librust-paste-dev [amd64 arm64 armel armhf i386 loong64 mips64el powerpc ppc64 ppc64el riscv64 s390x sparc64 x32],
|
68
|
|
- librust-syn-dev [amd64 arm64 armel armhf i386 loong64 mips64el powerpc ppc64 ppc64el riscv64 s390x sparc64 x32],
|
|
67
|
+ librust-paste-dev [amd64 arm64 armel armhf i386 loong64 mips64el ppc64 riscv64 x32],
|
|
68
|
+ librust-syn-dev [amd64 arm64 armel armhf i386 loong64 mips64el ppc64 riscv64 x32],
|
69
|
69
|
Rules-Requires-Root: no
|
70
|
70
|
Vcs-Git: https://salsa.debian.org/xorg-team/lib/mesa.git
|
71
|
71
|
Vcs-Browser: https://salsa.debian.org/xorg-team/lib/mesa
|
debian/control.in
... |
... |
@@ -64,8 +64,8 @@ Build-Depends: |
64
|
64
|
llvm-spirv-@LLVM_VERSION@ [@RUSTICL_ARCHS@],
|
65
|
65
|
libclc-@LLVM_VERSION@ [@RUSTICL_ARCHS@],
|
66
|
66
|
libllvmspirvlib-@LLVM_VERSION@-dev [@LLVM_ARCHS@],
|
67
|
|
- librust-paste-dev [@LLVM_ARCHS@],
|
68
|
|
- librust-syn-dev [@LLVM_ARCHS@],
|
|
67
|
+ librust-paste-dev [@NVK_ARCHS@],
|
|
68
|
+ librust-syn-dev [@NVK_ARCHS@],
|
69
|
69
|
Rules-Requires-Root: no
|
70
|
70
|
Vcs-Git: https://salsa.debian.org/xorg-team/lib/mesa.git
|
71
|
71
|
Vcs-Browser: https://salsa.debian.org/xorg-team/lib/mesa
|
debian/rules
... |
... |
@@ -226,7 +226,6 @@ override_dh_clean: regen_control |
226
|
226
|
override_dh_auto_configure: rewrite_wrap_files
|
227
|
227
|
dpkg-parsechangelog | awk '/^Version:/ {print $$2}' > VERSION
|
228
|
228
|
$(buildflags) dh_auto_configure -- \
|
229
|
|
- --wrap-mode=default \
|
230
|
229
|
$(confflags)
|
231
|
230
|
|
232
|
231
|
override_dh_auto_install:
|
... |
... |
@@ -318,6 +317,7 @@ regen_control: |
318
|
317
|
sed -e"s,@LLVM_VERSION@,$(LLVM_VERSION),g" \
|
319
|
318
|
-e"s,@LLVM_ARCHS@,$(LLVM_ARCHS),g" \
|
320
|
319
|
-e"s,@RUSTICL_ARCHS@,$(RUSTICL_ARCHS),g" \
|
|
320
|
+ -e"s,@NVK_ARCHS@,$(NVK_ARCHS),g" \
|
321
|
321
|
-e"s,@VALGRIND_ARCHS@,$(VALGRIND_ARCHS),g" \
|
322
|
322
|
-e"s,@WINE_ARCHS@,$(WINE_ARCHS),g" \
|
323
|
323
|
debian/control.in > debian/control |
|