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

[Git][xorg-team/wayland/weston][debian-unstable] 3 commits: Drop packaging tweaks for architecture ia64



Title: GitLab

Dylan Aïssi pushed to branch debian-unstable at X Strike Force / wayland / weston

Commits:

  • 9df6d2ff
    by Dylan Aïssi at 2024-09-04T17:15:39+02:00
    Drop packaging tweaks for architecture ia64
    
    Signed-off-by: Dylan Aïssi <dylan.aissi@collabora.com>
    
  • 9234d62c
    by Dylan Aïssi at 2024-09-04T17:15:39+02:00
    Update minimum version of Build-Deps
    
    Signed-off-by: Dylan Aïssi <dylan.aissi@collabora.com>
    
  • 10ed3ebc
    by Dylan Aïssi at 2024-09-04T17:17:57+02:00
    Release weston version 14.0.0-1~exp1
    
    Signed-off-by: Dylan Aïssi <dylan.aissi@collabora.com>
    

5 changed files:

Changes:

  • debian/changelog
    1
    -weston (14.0.0-1~exp1) UNRELEASED; urgency=medium
    
    1
    +weston (14.0.0-1~exp1) experimental; urgency=medium
    
    2 2
     
    
    3 3
       * New upstream release.
    
    4 4
       * Drop Remove_upper_limit_of_required_neatvnc_version.patch,
    
    ... ... @@ -7,8 +7,11 @@ weston (14.0.0-1~exp1) UNRELEASED; urgency=medium
    7 7
       * Bump SONAME to libweston-14-0
    
    8 8
       * Update symbols file
    
    9 9
       * Drop gentarball target in rules since we use upstream signed tarballs
    
    10
    +  * Drop packaging tweaks for architecture ia64
    
    11
    +  * Update minimum version of Build-Deps
    
    12
    +      - wayland-protocols >= 1.33
    
    10 13
     
    
    11
    - -- Dylan Aïssi <daissi@debian.org>  Wed, 04 Sep 2024 16:16:22 +0200
    
    14
    + -- Dylan Aïssi <daissi@debian.org>  Wed, 04 Sep 2024 17:17:11 +0200
    
    12 15
     
    
    13 16
     weston (13.0.3-1) unstable; urgency=medium
    
    14 17
     
    

  • debian/control
    ... ... @@ -8,7 +8,7 @@ Uploaders: Mike Gabriel <sunweaver@debian.org>,
    8 8
                Dylan Aïssi <daissi@debian.org>
    
    9 9
     Build-Depends: debhelper-compat (= 13),
    
    10 10
                    dh-exec,
    
    11
    -               freerdp2-dev [!ia64],
    
    11
    +               freerdp2-dev,
    
    12 12
                    libcairo2-dev (>= 1.10.0),
    
    13 13
                    libcolord-dev (>= 0.1.27),
    
    14 14
                    libdbus-1-dev,
    
    ... ... @@ -24,7 +24,7 @@ Build-Depends: debhelper-compat (= 13),
    24 24
                    libinput-dev (>= 1.2.0),
    
    25 25
                    libjpeg-dev,
    
    26 26
                    liblcms2-dev,
    
    27
    -               libneatvnc-dev (>= 0.7.0) [!ia64 !sparc64],
    
    27
    +               libneatvnc-dev (>= 0.7.0) [!sparc64],
    
    28 28
                    libpam0g-dev,
    
    29 29
                    libpango1.0-dev,
    
    30 30
                    libpipewire-0.3-dev,
    
    ... ... @@ -51,7 +51,7 @@ Build-Depends: debhelper-compat (= 13),
    51 51
                    mesa-common-dev,
    
    52 52
                    meson (>= 0.63.0),
    
    53 53
                    pkgconf,
    
    54
    -               wayland-protocols (>= 1.31)
    
    54
    +               wayland-protocols (>= 1.33)
    
    55 55
     Standards-Version: 4.7.0
    
    56 56
     Rules-Requires-Root: no
    
    57 57
     Homepage: https://wayland.freedesktop.org/
    

  • debian/libweston-14-0.install
    ... ... @@ -6,9 +6,9 @@ usr/lib/*/libweston-14/gl-renderer.so
    6 6
     usr/lib/*/libweston-14/headless-backend.so
    
    7 7
     usr/lib/*/libweston-14/pipewire-backend.so
    
    8 8
     usr/lib/*/libweston-14/pipewire-plugin.so
    
    9
    -[!ia64] usr/lib/*/libweston-14/rdp-backend.so
    
    9
    +usr/lib/*/libweston-14/rdp-backend.so
    
    10 10
     usr/lib/*/libweston-14/remoting-plugin.so
    
    11
    -[!ia64 !sparc64] usr/lib/*/libweston-14/vnc-backend.so
    
    11
    +[!sparc64] usr/lib/*/libweston-14/vnc-backend.so
    
    12 12
     usr/lib/*/libweston-14/wayland-backend.so
    
    13 13
     usr/lib/*/libweston-14/x11-backend.so
    
    14 14
     usr/lib/*/libweston-14/xwayland.so

  • debian/rules
    ... ... @@ -2,13 +2,7 @@
    2 2
     
    
    3 3
     export DEB_BUILD_MAINT_OPTIONS = hardening=+all
    
    4 4
     
    
    5
    -ifneq (,$(filter ia64,$(DEB_HOST_ARCH)))
    
    6
    -BACKEND_RDP=false
    
    7
    -else
    
    8
    -BACKEND_RDP=true
    
    9
    -endif
    
    10
    -
    
    11
    -ifneq (,$(filter ia64 sparc64,$(DEB_HOST_ARCH)))
    
    5
    +ifneq (,$(filter sparc64,$(DEB_HOST_ARCH)))
    
    12 6
     BACKEND_VNC=false
    
    13 7
     else
    
    14 8
     BACKEND_VNC=true
    
    ... ... @@ -16,7 +10,7 @@ endif
    16 10
     
    
    17 11
     override_dh_auto_configure:
    
    18 12
     	dh_auto_configure -- \
    
    19
    -	        -Dbackend-rdp=$(BACKEND_RDP) \
    
    13
    +	        -Dbackend-rdp=true \
    
    20 14
     	        -Dbackend-vnc=$(BACKEND_VNC) \
    
    21 15
     	        -Dscreenshare=true \
    
    22 16
     		-Dsystemd=true
    

  • debian/weston.install
    1 1
     #! /usr/bin/dh-exec
    
    2
    -[!ia64 !sparc64] etc/pam.d/weston-remote-access
    
    2
    +[!sparc64] etc/pam.d/weston-remote-access
    
    3 3
     usr/bin/wcap-decode
    
    4 4
     usr/bin/weston
    
    5 5
     usr/bin/weston-*
    


  • Reply to: