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

[Git][xorg-team/vulkan/vulkan-loader][debian-unstable] 4 commits: dirs: Add /etc/vulkan/icd.d.



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / vulkan / vulkan-loader

Commits:

5 changed files:

Changes:

  • debian/changelog
    ... ... @@ -12,6 +12,10 @@ vulkan-loader (1.1.82.0-1) UNRELEASED; urgency=medium
    12 12
       * control: Add vulkan-headers to build-depends.
    
    13 13
       * d/s/include-binaries: Removed, obsolete.
    
    14 14
       * control: Add vulkan-headers to -dev depends.
    
    15
    +  * dirs: Add /etc/vulkan/icd.d.
    
    16
    +  * Use compat level 11.
    
    17
    +  * rules: Use dh_missing.
    
    18
    +  * rules: Drop gentarball target.
    
    15 19
     
    
    16 20
      -- Timo Aaltonen <tjaalton@debian.org>  Wed, 01 Aug 2018 12:20:09 +0300
    
    17 21
     
    

  • debian/compat
    1
    -9
    1
    +11

  • debian/control
    ... ... @@ -2,7 +2,7 @@ Source: vulkan-loader
    2 2
     Priority: optional
    
    3 3
     Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
    
    4 4
     Uploaders: Timo Aaltonen <tjaalton@debian.org>
    
    5
    -Build-Depends: debhelper (>= 9),
    
    5
    +Build-Depends: debhelper (>= 11),
    
    6 6
      cmake,
    
    7 7
      libwayland-dev,
    
    8 8
      libx11-dev,
    

  • debian/libvulkan1.dirs
    1
    +etc/vulkan/explicit_layer.d
    
    2
    +etc/vulkan/icd.d
    
    3
    +etc/vulkan/implicit_layer.d

  • debian/rules
    ... ... @@ -4,14 +4,8 @@
    4 4
     DPKG_EXPORT_BUILDFLAGS = 1
    
    5 5
     include /usr/share/dpkg/default.mk
    
    6 6
     
    
    7
    -ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
    
    8
    -	NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
    
    9
    -	MAKE_FLAGS += $(if $(NUMJOBS),-j$(NUMJOBS))
    
    10
    -endif
    
    11
    -
    
    12
    -# main packaging script based on dh7 syntax
    
    13 7
     %:
    
    14
    -	dh $@ --parallel --with quilt --builddirectory=build/
    
    8
    +	dh $@ --with quilt --builddirectory=build/
    
    15 9
     
    
    16 10
     override_dh_clean:
    
    17 11
     	dh_clean
    
    ... ... @@ -32,13 +26,5 @@ override_dh_auto_install:
    32 26
     	mkdir -p debian/tmp/usr/include
    
    33 27
     	cp -rp include/vulkan debian/tmp/usr/include
    
    34 28
     
    
    35
    -override_dh_install:
    
    36
    -	dh_install --fail-missing
    
    37
    -
    
    38
    -gentarball: SOURCE=vulkan
    
    39
    -gentarball: UV=$(shell dpkg-parsechangelog|awk '/^Version:/ {print $$2}'|sed 's/-.*$$//')
    
    40
    -gentarball:
    
    41
    -	tar --transform 's,^,$(SOURCE)-$(UV)/,' \
    
    42
    -		--exclude 'debian' --exclude-vcs \
    
    43
    -		-cJf ../$(SOURCE)_$(UV).orig.tar.xz .
    
    44
    -
    29
    +override_dh_missing:
    
    30
    +	dh_missing --fail-missing


  • Reply to: