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

[Git][xorg-team/driver/xserver-xorg-video-nouveau][debian-unstable] 3 commits: Build with DEB_BUILD_MAINT_OPTIONS=qa=-bug-implicit-func for now



Title: GitLab

Sven Joachim pushed to branch debian-unstable at X Strike Force / driver / xserver-xorg-video-nouveau

Commits:

  • 284cd580
    by Sven Joachim at 2024-03-14T18:56:09+01:00
    Build with DEB_BUILD_MAINT_OPTIONS=qa=-bug-implicit-func for now
    
    We currently do not get access to the xserver's wfbScreenInit function
    in /usr/include/xorg/fb.h unless we #define FB_ACCESS_WRAPPER which
    breaks at runtime.  Disable -Werror=implicit-function-declaration
    until there is a fix for it in the xorg-server package.
    
    Closes: #1066382
    
  • b8fe85bd
    by Sven Joachim at 2024-03-14T18:56:17+01:00
    Build-Depend on pkgconf rather than on pkg-config
    
    The latter is a transitional package for the former since bookworm.
    
  • 470693c5
    by Sven Joachim at 2024-03-14T18:56:18+01:00
    Bump Standards-Version to 4.6.2
    

3 changed files:

Changes:

  • debian/changelog
    1 1
     xserver-xorg-video-nouveau (1:1.0.17-3) UNRELEASED; urgency=medium
    
    2 2
     
    
    3
    +  [ Debian Janitor ]
    
    3 4
       * Remove constraints unnecessary since buster:
    
    4 5
         + Build-Depends: Drop versioned constraint on libdrm-dev and quilt.
    
    5 6
         + xserver-xorg-video-nouveau: Drop versioned constraint on libgl1-mesa-dri
    
    6 7
           in Recommends.
    
    7 8
     
    
    9
    +  [ Sven Joachim ]
    
    10
    +  * Build with DEB_BUILD_MAINT_OPTIONS=qa=-bug-implicit-func for now
    
    11
    +    (Closes: #1066382).
    
    12
    +  * Build-Depend on pkgconf rather than on pkg-config.
    
    13
    +  * Bump Standards-Version to 4.6.2, no changes needed.
    
    14
    +
    
    8 15
      -- Debian Janitor <janitor@jelmer.uk>  Thu, 17 Mar 2022 09:17:35 -0000
    
    9 16
     
    
    10 17
     xserver-xorg-video-nouveau (1:1.0.17-2) unstable; urgency=medium
    

  • debian/control
    ... ... @@ -5,14 +5,14 @@ Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
    5 5
     # Uploaders: nobody, volunteers needed!
    
    6 6
     Build-Depends:
    
    7 7
      debhelper-compat (= 13),
    
    8
    - pkg-config,
    
    8
    + pkgconf,
    
    9 9
      xserver-xorg-dev (>= 2:21.1),
    
    10 10
      x11proto-dev,
    
    11 11
      libdrm-dev,
    
    12 12
      libudev-dev,
    
    13 13
      xutils-dev,
    
    14 14
      quilt,
    
    15
    -Standards-Version: 4.6.0
    
    15
    +Standards-Version: 4.6.2
    
    16 16
     Rules-Requires-Root: no
    
    17 17
     Homepage: https://nouveau.freedesktop.org/wiki/
    
    18 18
     Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-nouveau.git
    

  • debian/rules
    1 1
     #!/usr/bin/make -f
    
    2 2
     
    
    3 3
     export CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS)
    
    4
    -export CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
    
    4
    +export CFLAGS := $(shell DEB_BUILD_MAINT_OPTIONS=qa=-bug-implicit-func dpkg-buildflags --get CFLAGS)
    
    5 5
     export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
    
    6 6
     
    
    7 7
     # Needed to find ChangeLog:
    


  • Reply to: