Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
rules: Enable tests, but expect most of them to fail since there's no software driver yet.
· 5fb5ef9f
Timo Aaltonen
authored
Mar 12, 2019
5fb5ef9f
control, rules: Drop quilt from build-depends/dh since this is a format 3.0 pkg.
· 1621d53f
Timo Aaltonen
authored
Mar 12, 2019
1621d53f
rules: Update the clean target.
· b2f52e8d
Timo Aaltonen
authored
Mar 12, 2019
b2f52e8d
release to unstable
· 38af2d1c
Timo Aaltonen
authored
Mar 12, 2019
38af2d1c
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
38af2d1c
vulkan-loader (1.1.101.0-2) unstable; urgency=medium
* rules: Enable tests, but expect most of them to fail since there's
no software driver yet.
* control, rules: Drop quilt from build-depends/dh since this is a
format 3.0 pkg.
* rules: Update the clean target.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 12 Mar 2019 18:38:57 +0200
vulkan-loader (1.1.101.0-1) unstable; urgency=medium
* New upstream release.
...
...
debian/control
View file @
38af2d1c
...
...
@@ -4,13 +4,13 @@ Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Uploaders: Timo Aaltonen <tjaalton@debian.org>
Build-Depends: debhelper (>= 11),
cmake,
googletest,
libwayland-dev,
libx11-dev,
libxcb1-dev,
libxrandr-dev,
pkg-config,
python3,
quilt,
Standards-Version: 4.2.0
Section: libs
Homepage: https://github.com/KhronosGroup/Vulkan-Loader
...
...
debian/rules
View file @
38af2d1c
...
...
@@ -6,23 +6,30 @@ include /usr/share/dpkg/default.mk
include /usr/share/dpkg/pkg-info.mk
%:
dh $@
--with quilt
--builddirectory=build/
dh $@ --builddirectory=build/
override_dh_clean:
dh_clean
rm -rf __pycache__ \
include \
scripts/__pycache__
scripts/__pycache__ \
vulkan-headers/registry/__pycache__
rm -f external/googletest
override_dh_auto_configure:
ln -s /usr/src/googletest external
dh_auto_configure -- \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH) \
-DBUILD_TESTS=OFF \
-DBUILD_WSI_MIR_SUPPORT=OFF \
-DVulkanHeaders_INCLUDE_DIR=../vulkan-headers/include \
-DVulkanRegistry_DIR=../vulkan-headers/registry
override_dh_auto_test:
(cd build; tests/run_all_tests.sh || \
echo "NOTE: 23 tests expected to fail without a vulkan driver")
override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
...
...