Commit Graph

53 Commits

Author SHA1 Message Date
Russell Senior 09e9dcb047 pulseaudio: update to 17.0
changes:
  remove meson_gio patch, already applied upstream
  move pulseaudio-system.conf following upsteam change in e96d278bfc5:
    "daemon/meson.build: Install dbus policy in /usr, not /etc"

Signed-off-by: Russell Senior <russell@personaltelco.net>
2024-03-22 16:04:38 +08:00
Johnny Vogels e957fb560c pulseaudio: disable compiling against libwrap and (bluez5-)gstreamer
problem: libwrap.so.0, libgstapp-1.0.so.0 and libgstreamer-1.0.so.0 not found during compilation of pulseaudio when e.g. libwrap was built before pulseaudio
Due to
156e16f941
for libwrap.

Fixes: aafc57c1de (no sepearate issue generated)

Signed-off-by: Johnny Vogels <35307256+jmv2009@users.noreply.github.com>
2023-11-16 16:29:48 -08:00
Johnny Vogels aafc57c1de Pulseaudio: update to 16.1
Signed-off-by: Johnny Vogels <35307256+jmv2009@users.noreply.github.com>
2023-10-28 10:14:48 -07:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Andre Heider 565866a472 treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16
See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with
PKG_BUILD_FLAGS:=no-mips16" on the main repository.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2023-04-08 08:38:54 +02:00
Josef Schlehofer 7ae66ec7ca
pulseadio: fix conffiles for pulseadio-daemon-avahi package
Fixes: 60ac7dd751 ("pulseaudio: simplify
and rework Makefile")

Reported-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-11-03 08:58:23 +01:00
Josef Schlehofer 00e3918069 pulseaudio: change homepage URLs to freedesktop.org
The previous used domain http(s)://pulseaudio.org redirects to
https://www.freedesktop.org/wiki/Software/PulseAudio/

This change enforces to use HTTPS everywhere for homepage URLs

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-11-01 07:15:22 -07:00
Josef Schlehofer 364054fbe7 pulseaudio: use AUTORELEASE variable
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-11-01 07:15:22 -07:00
Josef Schlehofer 5a5bb15949 pulseaudio: daemons should conflict to each other
It should not be possible to install pulseaudio-daemon and
pulseadio-daemon-avahi at the same time as they have the same files.
Let's avoid that situation by adding conflict.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-11-01 07:15:22 -07:00
Josef Schlehofer 60ac7dd751 pulseaudio: simplify and rework Makefile
There were two conffiles sections and both of them were same, but for
different variants. We can have just one conffile section and use it also
for the other variant.

The same applies for the install section for different variants.
- We have two install sections, but we call the first one with the same
  files and then add something more for the second variant.

- While at it to make it easier, let's change those three rows for
  copying packages into the single one to make sure that I did not miss
anything. Also, we create a directory first and then move files.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2022-11-01 07:15:22 -07:00
Rosen Penev df5d7245b9 treewide: remove PKG_INSTALL for meson projects
It doesn't seem to be used by meson.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-06-15 18:07:46 -07:00
Rosen Penev 5ccd4d1c25 treewide: compile with tools/meson
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-17 22:06:52 -07:00
Rosen Penev 1e4ec2755b pulseaudio: fix compilation without doxygen
Meson update makes this error now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-04-13 21:36:28 -07:00
Johnny Vogels 732ec3df5f Pulseaudio: update to 14.2; avahi-variant: Restore Bluez functionality
Signed-off-by: Johnny Vogels <35307256+jmv2009@users.noreply.github.com>

Pulseaudio: update to 14.2; avahi-variant: Restore Bluez functionality

Signed-off-by: Johnny Vogels <35307256+jmv2009@users.noreply.github.com>
2021-03-02 20:21:26 +01:00
Ilya Lipnitskiy 5d8d4fbbcb
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-20 16:02:15 -08:00
Rosen Penev 325c565040
pulseaudio: update to 14.0
Remove upstreamed OpenSSL patch.

Update MESON_ARGS.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-11-29 01:33:59 -08:00
Rosen Penev ca2da3f315
pulseaudio: fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-08-10 15:58:11 -07:00
Rosen Penev 67f8f57d06 pulseaudio: fix compilation with ICONV_FULL
Reordered check to check external iconv first.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-30 23:58:42 -07:00
Jeffery To 2d99ee3004 treewide: Update ARM NEON/VFP detection
With openwrt/openwrt@8dcc108760, the ARM
FPU compiler options are no longer part of CONFIG_TARGET_OPTIMIZATION.

This updates various packages that look for NEON/VFP support to search
CONFIG_CPU_TYPE instead.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-05-11 03:10:20 +08:00
Rosen Penev 91e80e5442
pulseaudio: do not build NEON with unsupported platforms
Unfortunately, meson's check is totally broken.

Fortunately, it's fairly easy to workaround.

Fixes compilation with all ARM platforms that don't support NEON.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-05-05 15:02:01 -07:00
Rosen Penev 45e58e1cc3
pulseaudio: add lto and gc-sections to reduce size
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-05-04 18:32:01 -07:00
Rosen Penev 21f67bf599
pulseaudio: fix pkgconfig paths
Turns out, packages like mpd that use pkgconfig to find pulseaudio
end up using host paths.

Fixes compilation with at least mpd.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-04-18 18:04:31 -07:00
Rosen Penev 78d84d4c9c
pulseaudio: update to 13.0
Converted to use meson for compilation speed.

Removed libwrap dependency. Upstream no longer supports it.

Removed intltool and glib2 host dependencies. They seem to be no
longer needed.

Removed upstream patch.

Minor cleanups.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-04-18 02:51:43 -07:00
Rosen Penev 123373b1b7 pulseaudio: Backport upstream patch
Fixes compilation with recent alsa-libs.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-09-18 20:11:52 +02:00
Jan Pavlinec 299e5b0a9b
treewide: add PKG_CPE_ID for better cvescanner coverage
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-09-17 12:40:26 +02:00
Rosen Penev 8410380ae9 pulseaudio: Add glib2/host dependency
This was implicit with glib2 but got removed with
170ef79393

Fixed license tag to newer SPDX.

Removed PKG_BUILD_DIR as that is now default with upstream's
e545fac8d968864a965edb9e50c6f90940b0a6c9

Minor reorganization for consistency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-09-06 19:57:58 +02:00
Sebastian Kemper ec3d077287 pulseaudio: fix recursive dependencies
Since OpenWrt commit e82a4d9cfb ("config: regenerate *_shipped sources")
a few recursive dependencies have been discovered that were not visible
before.

$ make menuconfig
tmp/.config-package.in:103098:error: recursive dependency detected!
For a resolution refer to Documentation/kbuild/kconfig-language.txt
subsection "Kconfig recursive dependency limitations"
tmp/.config-package.in:103098:	symbol PACKAGE_baresip-mod-pulse depends on PACKAGE_baresip-mod-pulse
tmp/.config-package.in:121863:error: recursive dependency detected!
For a resolution refer to Documentation/kbuild/kconfig-language.txt
subsection "Kconfig recursive dependency limitations"
tmp/.config-package.in:121863:	symbol PACKAGE_pulseaudio-profiles depends on PACKAGE_pulseaudio-profiles
tmp/.config-package.in:121878:error: recursive dependency detected!
For a resolution refer to Documentation/kbuild/kconfig-language.txt
subsection "Kconfig recursive dependency limitations"
tmp/.config-package.in:121878:	symbol PACKAGE_pulseaudio-tools depends on PACKAGE_pulseaudio-tools

This commit addresses the pulseaudio package's own recursive
dependencies and partially resolves #9300 (baresip will be handled in
telephony repository).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2019-07-09 09:43:51 +02:00
Peter Wagner 84197cc5d0 pulseaudio: update to 12.2
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2018-07-22 18:17:36 +02:00
Peter Wagner 7901fd3f80 pulseaudio:
* update to 12.1
  * cleanup Makefile

Signed-off-by: Peter Wagner <tripolar@gmx.at>
2018-07-15 17:56:42 +02:00
Peter Wagner f4ee5ce092 pulseaudio: enable parallel build
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2018-06-22 01:00:33 +02:00
Peter Wagner 82eed87331 pulseaudio: update to 12.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2018-06-22 00:49:08 +02:00
Sebastian Kemper 9c23a34d06 pulseaudio: fix non-NEON ARM compiles
PulseAudio in some cases does not detect the ARM CPU's capabilities
correctly and enables NEON ASM while it is not supported. For example
when compiling for arm_arm1176jzf-s_vfp the assembler rejects this and
the compile fails:

{standard input}: Assembler messages:
{standard input}:27: Error: selected processor does not support `vld1.16 {d0},[r1]!' in ARM mode
{standard input}:28: Error: selected processor does not support `vmovl.s16 q0,d0' in ARM mode
{standard input}:29: Error: selected FPU does not support instruction -- `vcvt.f32.s32 q0,q0,#15'
{standard input}:31: Error: selected processor does not support `vst1.32 {q0},[r2]!' in ARM mode
{standard input}:70: Error: selected processor does not support `vld1.32 {q0},[r1]!' in ARM mode
{standard input}:71: Error: selected FPU does not support instruction -- `vcvt.s32.f32 q0,q0,#31'
{standard input}:72: Error: selected processor does not support `vqrshrn.s32 d0,q0,#16' in ARM mode
{standard input}:74: Error: selected processor does not support `vst1.16 {d0},[r2]!' in ARM mode
Makefile:8668: recipe for target 'pulsecore/libpulsecore_sconv_neon_la-sconv_neon.lo' failed

To fix this tell PulseAudio explicitly when to use the NEON ASM and when
not to.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-03-19 03:45:02 +01:00
Johnny Vogels 256905edad
Pulseaudio: variant avahi/bluez
Signed-off-by: Johnny Vogels <35307256+jmv2009@users.noreply.github.com>
2018-02-06 19:42:09 +01:00
Peter Wagner d889a619af pulseaudio: update to 11.1
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-10-15 19:47:03 +02:00
Peter Wagner 1bf5e2b115 pusleaudio: update to 11.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-09-11 08:37:18 +02:00
Peter Wagner 4d64125e9c pulseaudio: don't link against libspeexdsp
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-08-16 04:03:06 +02:00
Peter Wagner c509d76872 pulseaudio: update to 10.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-01-22 19:29:19 +01:00
Peter Wagner fbe48e2172 pulseaudio: update to 9.0, fix typo
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2016-10-03 20:06:12 +02:00
Ted Hess 6c0d7a1db7 pulseaudio: build without soxr, install configs with all read permissions
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-03-25 17:48:41 -04:00
Peter Wagner a6026fd1b3 pulseaudio: update to 8.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2016-02-22 22:02:12 +01:00
Peter Wagner d55d9ad92c pulseaudio: update to 7.1
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-11-21 23:39:35 +01:00
Peter Wagner 245fbc1f65 pulseaudio: update to 7.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-10-03 10:54:45 +02:00
Peter Wagner 612e1a2aaf pulseaudio: fix libjson dependency
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-04-24 20:30:13 +02:00
Peter Wagner 368c113db7 pulseaudio: pulseaudio-daemon depends on libjson-c
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-03-25 13:06:39 +01:00
Peter Wagner f49ab7c61a Revert "debootstrap: bump version"
This reverts commit e9072e50fe.
2015-03-25 13:02:11 +01:00
Daniel Golle e9072e50fe debootstrap: bump version
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-03-24 19:18:37 +01:00
Nicolas Thill e24dfafb01 remove uneeded PKG_BUILD_DIR & PKG_CAT overrides
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-02-22 02:37:56 +01:00
Peter Wagner 43b06049c3 pulseaudio: update to 6.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-02-15 22:43:47 +01:00
John Crispin d4042ec35e generic userid: use the new USERID api
recent changes in trunk allow us to specify the userid inside the openwrt makefile.
the info is stored int he meta data of the IPK contorl file and users are generated
by the new generic postinst trigger.

Signed-off-by: John Crispin <blogic@openwrt.org>
2014-10-08 03:45:30 +02:00
Jiri Slachta 32d28bb45c pulseaudio: fix CVE-2014-3970
Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
2014-08-24 18:37:15 +02:00