changed debian/source/format to native
This commit is contained in:
parent
c5863c822e
commit
9ae9b28f85
|
@ -1,29 +0,0 @@
|
|||
From: Simon McVittie <smcv@debian.org>
|
||||
Date: Sun, 17 Jan 2021 11:40:01 +0000
|
||||
Subject: Don't automatically start pipewire for root logins
|
||||
|
||||
Closes: #979791
|
||||
---
|
||||
src/daemon/systemd/user/pipewire.service.in | 1 +
|
||||
src/daemon/systemd/user/pipewire.socket | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
--- a/src/daemon/systemd/user/pipewire.service.in
|
||||
+++ b/src/daemon/systemd/user/pipewire.service.in
|
||||
@@ -14,6 +14,7 @@
|
||||
# After=pipewire.socket is not needed, as it is already implicit in the
|
||||
# socket-service relationship, see systemd.socket(5).
|
||||
Requires=pipewire.socket
|
||||
+ConditionUser=!root
|
||||
|
||||
[Service]
|
||||
LockPersonality=yes
|
||||
--- a/src/daemon/systemd/user/pipewire.socket
|
||||
+++ b/src/daemon/systemd/user/pipewire.socket
|
||||
@@ -1,5 +1,6 @@
|
||||
[Unit]
|
||||
Description=PipeWire Multimedia System Socket
|
||||
+ConditionUser=!root
|
||||
|
||||
[Socket]
|
||||
Priority=6
|
|
@ -1,40 +0,0 @@
|
|||
From 249c39787684dba59c288a3ac6dcb8cb0150ec02 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Dylan=20A=C3=AFssi?= <dylan.aissi@collabora.com>
|
||||
Date: Thu, 4 Nov 2021 16:01:36 +0100
|
||||
Subject: [PATCH] meson: create a symlink for pipewire-pulse instead of
|
||||
building binary twice
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Because meson does not have native support for symlinks.
|
||||
See https://github.com/mesonbuild/meson/issues/1602
|
||||
|
||||
Inspired by xserver:
|
||||
https://gitlab.freedesktop.org/xorg/xserver/-/commit/a3931ec6f43857aeed7feac5d223d7db6728145e
|
||||
|
||||
Signed-off-by: Dylan Aïssi <dylan.aissi@collabora.com>
|
||||
---
|
||||
src/daemon/meson.build | 12 +++++-------
|
||||
1 file changed, 5 insertions(+), 7 deletions(-)
|
||||
|
||||
--- a/src/daemon/meson.build
|
||||
+++ b/src/daemon/meson.build
|
||||
@@ -90,12 +90,11 @@
|
||||
dependencies : [ spa_dep, pipewire_dep, ],
|
||||
)
|
||||
|
||||
-executable('pipewire-pulse',
|
||||
- pipewire_daemon_sources,
|
||||
- install: true,
|
||||
- c_args : pipewire_c_args,
|
||||
- include_directories : [ configinc ],
|
||||
- dependencies : [ spa_dep, pipewire_dep, ],
|
||||
+meson.add_install_script(
|
||||
+ 'sh', '-c',
|
||||
+ 'ln -fs pipewire @0@@1@'.format(
|
||||
+ '${DESTDIR}',
|
||||
+ join_paths(get_option('prefix'), get_option('bindir'), 'pipewire-pulse'))
|
||||
)
|
||||
|
||||
ln = find_program('ln')
|
|
@ -1,2 +0,0 @@
|
|||
Don-t-automatically-start-pipewire-for-root-logins.patch
|
||||
Don-t-build_same_binary_twice.patch
|
|
@ -1 +1 @@
|
|||
3.0 (quilt)
|
||||
3.0 (native)
|
||||
|
|
Loading…
Reference in New Issue