PN: pulseaudio
PV: 15.0
PR: r0
PKGV: 15.0
PKGR: r0.0
LICENSE: LGPLv2.1+ & MIT & BSD-3-Clause
DESCRIPTION: A general purpose sound server intended to run as a middleware between your applications and your hardware devices, either using ALSA or OSS.
SUMMARY: Sound server for Linux and Unix-like operating systems
RDEPENDS:pulseaudio-server: alsa-plugins-pulseaudio-conf base-files base-passwd pulseaudio-module-alsa-card pulseaudio-module-alsa-sink pulseaudio-module-alsa-source pulseaudio-module-always-sink pulseaudio-module-augment-properties pulseaudio-module-card-restore pulseaudio-module-default-device-restore pulseaudio-module-detect pulseaudio-module-device-manager pulseaudio-module-device-restore pulseaudio-module-filter-apply pulseaudio-module-filter-heuristics pulseaudio-module-intended-roles pulseaudio-module-native-protocol-unix pulseaudio-module-null-sink pulseaudio-module-position-event-sounds pulseaudio-module-rescue-streams pulseaudio-module-role-cork pulseaudio-module-stream-restore pulseaudio-module-suspend-on-idle pulseaudio-module-switch-on-port-available pulseaudio-module-systemd-login pulseaudio-module-udev-detect pulseaudio-module-x11-cork-request pulseaudio-module-x11-publish pulseaudio-module-x11-xsmp shadow dbus-lib (>= 1.12.20) glibc (>= 2.34) libcap (>= 2.51) libltdl (>= 2.4.6) libpulse (>= 15.0) libpulsecommon (>= 15.0) libpulsecore (>= 15.0) libsndfile1 (>= 1.0.28) libsystemd (>= 249.7)
RREPLACES:pulseaudio-server: libpulse-bin libpulse-conf
SECTION: libs/multimedia
PKG:pulseaudio-server: pulseaudio-server
FILES:pulseaudio-server: /usr/bin/pulseaudio /usr/bin/start-* /etc /usr/bin/pactl */udev/rules.d/*.rules */*/udev/rules.d/*.rules /usr/lib/systemd/user/*
CONFFILES:pulseaudio-server:   /etc/pulse/default.pa   /etc/pulse/daemon.conf   /etc/pulse/system.pa   
FILES_INFO:pulseaudio-server: {"/etc/dbus-1/system.d/pulseaudio-system.conf": 1084, "/etc/default/volatiles/04_pulse": 91, "/etc/pulse/daemon.conf": 2426, "/etc/pulse/default.pa": 4943, "/etc/pulse/system.pa": 2087, "/etc/xdg/Xwayland-session.d/00-pulseaudio-x11": 2159, "/etc/xdg/autostart/pulseaudio.desktop": 5315, "/lib/udev/rules.d/90-pulseaudio.rules": 11934, "/usr/bin/pactl": 71744, "/usr/bin/pulseaudio": 88176, "/usr/bin/start-pulseaudio-x11": 2159, "/usr/lib/systemd/user/pulseaudio-x11.service": 424, "/usr/lib/systemd/user/pulseaudio.service": 1121, "/usr/lib/systemd/user/pulseaudio.socket": 147}
pkg_postinst:pulseaudio-server: set -e\n        if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then\n            /etc/init.d/populate-volatile.sh update\n        fi\n
pkg_preinst:pulseaudio-server: #!/bin/sh\nset -e\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "pulseaudio: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "pulseaudio: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "pulseaudio: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "pulseaudio: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "pulseaudio: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "pulseaudio: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "pulseaudio: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "pulseaudio: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "pulseaudio: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "pulseaudio: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="--system pulse"\n\tUSERADD_PARAM="--system --home /var/run/pulse                               --no-create-home --shell /bin/false                               --groups audio,pulse --gid pulse pulse"\n\tGROUPMEMS_PARAM=""\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
FILERDEPENDSFLIST:pulseaudio-server: /etc/xdg/Xwayland-session.d/00-pulseaudio-x11 /usr/bin/pactl /usr/bin/pulseaudio /usr/bin/start-pulseaudio-x11
FILERDEPENDS:/etc/xdg/Xwayland-session.d/00-pulseaudio-x11:pulseaudio-server:  /bin/sh
FILERDEPENDS:/usr/bin/pactl:pulseaudio-server:  libsndfile.so.1(libsndfile.so.1.0)(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libpulse.so.0(PULSE_0)(64bit) libpulsecommon-15.0.so()(64bit) libpulse.so.0()(64bit) libsndfile.so.1()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/pulseaudio:pulseaudio-server:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libpulse.so.0(PULSE_0)(64bit) libdbus-1.so.3(LIBDBUS_1_3)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd.so.0(LIBSYSTEMD_209)(64bit) libpulsecore-15.0.so()(64bit) libpulsecommon-15.0.so()(64bit) libpulse.so.0()(64bit) libltdl.so.7()(64bit) libcap.so.2()(64bit) libdbus-1.so.3()(64bit) libsystemd.so.0()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/start-pulseaudio-x11:pulseaudio-server:  /bin/sh
PKGSIZE:pulseaudio-server: 193810
