[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/vulkan/vkmark][debian/latest] 3 commits: Ignore test result for i386 (Closes: #1091583)



Title: GitLab

Dylan Aïssi pushed to branch debian/latest at X Strike Force / vulkan / vkmark

Commits:

  • 7f638e0f
    by Dylan Aïssi at 2025-01-07T10:45:17+01:00
    Ignore test result for i386 (Closes: #1091583)
    
    See https://github.com/vkmark/vkmark/issues/59
    
    Signed-off-by: Dylan Aïssi <daissi@debian.org>
    
  • 56945ec8
    by Dylan Aïssi at 2025-01-07T11:13:48+01:00
    Switch build-deps from pkg-config to pkgconf
    
    Signed-off-by: Dylan Aïssi <daissi@debian.org>
    
  • 1c6aa0c0
    by Dylan Aïssi at 2025-01-07T11:15:27+01:00
    Standards-Version: 4.7.0 (no changes required)
    

3 changed files:

Changes:

  • debian/changelog
    1
    +vkmark (2017.08+git20220909-2) UNRELEASED; urgency=medium
    
    2
    +
    
    3
    +  * Team upload.
    
    4
    +  * Ignore test result for i386 (Closes: #1091583)
    
    5
    +  * Switch build-deps from pkg-config to pkgconf
    
    6
    +  * Standards-Version: 4.7.0 (no changes required)
    
    7
    +
    
    8
    + -- Dylan Aïssi <daissi@debian.org>  Tue, 07 Jan 2025 10:44:37 +0100
    
    9
    +
    
    1 10
     vkmark (2017.08+git20220909-1) unstable; urgency=medium
    
    2 11
     
    
    3 12
       * Initial Debian packaging
    

  • debian/control
    ... ... @@ -3,7 +3,7 @@ Section: graphics
    3 3
     Priority: optional
    
    4 4
     Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
    
    5 5
     Uploaders: Arnaud Ferraris <aferraris@debian.org>
    
    6
    -Standards-Version: 4.6.2
    
    6
    +Standards-Version: 4.7.0
    
    7 7
     Build-Depends: debhelper-compat (= 13),
    
    8 8
                    libassimp-dev,
    
    9 9
                    libdrm-dev,
    
    ... ... @@ -14,7 +14,7 @@ Build-Depends: debhelper-compat (= 13),
    14 14
                    libxcb1-dev,
    
    15 15
                    libxcb-icccm4-dev,
    
    16 16
                    meson,
    
    17
    -               pkg-config,
    
    17
    +               pkgconf,
    
    18 18
                    wayland-protocols,
    
    19 19
     Homepage: https://github.com/vkmark/vkmark
    
    20 20
     Vcs-Git: https://salsa.debian.org/xorg-team/vulkan/vkmark.git
    

  • debian/rules
    ... ... @@ -4,3 +4,12 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
    4 4
     
    
    5 5
     %:
    
    6 6
     	dh $@
    
    7
    +
    
    8
    +# Ignore test result for i386
    
    9
    +# https://github.com/vkmark/vkmark/issues/59
    
    10
    +override_dh_auto_test:
    
    11
    +ifneq (,$(filter $(DEB_HOST_ARCH), i386))
    
    12
    +	dh_auto_test || true
    
    13
    +else
    
    14
    +	dh_auto_test
    
    15
    +endif


  • Reply to: