PN: pipewire
PV: 1.6.8
PR: r0
PKGV: 1.6.8
PKGR: r0
LICENSE: GPL-2.0-only AND LGPL-2.1-or-later AND MIT
DESCRIPTION: Linux server for handling and routing audio and video streams between applications and multimedia I/O devices
SUMMARY: Multimedia processing server for Linux
RDEPENDS:pipewire: base-files base-passwd shadow wireplumber glibc (>= 2.44+git0+afd131806b) libpipewire (>= 1.6.8)
RRECOMMENDS:pipewire:  \tpipewire-modules-meta \tpipewire-spa-plugins-meta  pipewire-alsa pipewire-alsa-card-profile gstreamer1.0-pipewire pipewire-pulse
SECTION: multimedia
PKG:pipewire: pipewire
FILES:pipewire:      /usr/share/pipewire     /lib/systemd/system/pipewire*     /usr/lib/systemd/user     /usr/bin/pipewire     /usr/bin/pipewire-avb     /usr/bin/pipewire-vulkan 
CONFFILES:pipewire:  /usr/share/pipewire/pipewire.conf
FILES_INFO:pipewire: {"/usr/bin/pipewire": 14456, "/usr/bin/pipewire-avb": 8, "/usr/bin/pipewire-vulkan": 8, "/usr/share/pipewire/client.conf.avail/20-upmix.conf": 225, "/usr/share/pipewire/filter-chain.conf": 2091, "/usr/share/pipewire/filter-chain/demonic.conf": 2213, "/usr/share/pipewire/filter-chain/sink-dolby-pro-logic-ii.conf": 3741, "/usr/share/pipewire/filter-chain/sink-dolby-surround.conf": 2999, "/usr/share/pipewire/filter-chain/sink-eq6.conf": 2604, "/usr/share/pipewire/filter-chain/sink-make-LFE.conf": 2114, "/usr/share/pipewire/filter-chain/sink-matrix-spatialiser.conf": 1332, "/usr/share/pipewire/filter-chain/sink-mix-FL-FR.conf": 1318, "/usr/share/pipewire/filter-chain/sink-upmix-5.1-filter.conf": 6044, "/usr/share/pipewire/filter-chain/sink-virtual-surround-5.1-kemar.conf": 6886, "/usr/share/pipewire/filter-chain/sink-virtual-surround-7.1-hesuvi.conf": 6501, "/usr/share/pipewire/filter-chain/source-duplicate-FL.conf": 1780, "/usr/share/pipewire/filter-chain/source-rnnoise.conf": 1448, "/usr/share/pipewire/pipewire-aes67.conf": 6483, "/usr/share/pipewire/pipewire-avb.conf": 2347, "/usr/share/pipewire/pipewire-pulse.conf.avail/20-upmix.conf": 225, "/usr/share/pipewire/pipewire-vulkan.conf": 4452, "/usr/share/pipewire/pipewire.conf": 14347, "/usr/share/pipewire/pipewire.conf.avail/10-rates.conf": 112, "/usr/share/pipewire/pipewire.conf.avail/20-upmix.conf": 225, "/usr/share/pipewire/pipewire.conf.avail/50-raop.conf": 174}
pkg_preinst:pipewire: #!/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 "pipewire: 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 "pipewire: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "pipewire: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "pipewire: 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 "pipewire: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "pipewire: user $username already exists, not re-creating it"\n\tfi\n}\nperform_usermod () {\n\t# Same reason with groupmod, temporarily disable -e option\n\tset +e\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "pipewire: Performing usermod 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 usermod \\$opts\\"\n\t\tif test $? != 0; then\n\t\t\tbbfatal "pipewire: usermod command did not succeed."\n\t\tfi\n\telse\n\t\tbbwarn "pipewire: user $username doesn't exist, unable to modify it"\n\tfi\n\tset -e\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--prefix $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\tcp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --prefix\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="--gid 660 --system pipewire"\n\tUSERADD_PARAM="--comment 'PipeWire multimedia daemon' --home-dir / --gid 660 --groups audio,video --no-create-home --system --shell /bin/nologin --uid 660 pipewire"\n\tUSERMOD_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 $USERMOD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running usermod commands..."\n\t# Invoke multiple instances of usermod for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERMOD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERMOD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_usermod "$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:pipewire: /usr/bin/pipewire
FILERDEPENDS:/usr/bin/pipewire:pipewire:  libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libpipewire-0.3.so.0()(64bit) libc.so.6()(64bit) rtld(GNU_HASH)
PKGSIZE:pipewire: 84133
