Projects
Multimedia
pulseaudio-dlna
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 15
View file
pulseaudio-dlna.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Mar 30 21:13:19 UTC 2016 - antoine.belvire@laposte.net + +- Add pulseaudio-dlna-0.5.0-fix-filter-device-option.patch: fix + --device-filter option. + +------------------------------------------------------------------- Wed Mar 9 21:52:48 UTC 2016 - antoine.belvire@laposte.net - Update to 0.5.0.1:
View file
pulseaudio-dlna.spec
Changed
@@ -24,6 +24,8 @@ Group: Productivity/Multimedia/Sound/Utilities Url: https://github.com/masmu/%{name} Source: https://github.com/masmu/%{name}/archive/%{version}/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM pulseaudio-dlna-0.5.0-fix-filter-device-option.patch -- Picked from upstream development branch +Patch: pulseaudio-dlna-0.5.0-fix-filter-device-option.patch BuildRequires: python-setuptools Requires: dbus-1-python >= 1.2.0 Requires: faac >= 1.28 @@ -64,6 +66,7 @@ %prep %setup -q +%patch -p1 %build python setup.py build
View file
pulseaudio-dlna-0.5.0-fix-filter-device-option.patch
Added
@@ -0,0 +1,32 @@ +From f5d5ee245f755bf5f1ca36f5e5120f6600f74d49 Mon Sep 17 00:00:00 2001 +From: Massimo Mund <mo@lancode.de> +Date: Tue, 15 Mar 2016 13:42:40 +0100 +Subject: [PATCH] Fixed the --filter-device option + +--- + pulseaudio_dlna/holder.py | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/pulseaudio_dlna/holder.py b/pulseaudio_dlna/holder.py +index e888271..2f5e658 100644 +--- a/pulseaudio_dlna/holder.py ++++ b/pulseaudio_dlna/holder.py +@@ -33,7 +33,7 @@ def __init__( + self.plugins = plugins + self.stream_ip = stream_ip + self.stream_port = stream_port +- self.device_filter = device_filter or [] ++ self.device_filter = device_filter or None + self.device_config = device_config or {} + self.message_queue = message_queue + self.devices = {} +@@ -90,7 +90,8 @@ def add_device(self, device): + if self.stream_ip and self.stream_port: + device.set_server_location( + self.stream_ip, self.stream_port) +- if device.name not in self.device_filter: ++ if not self.device_filter or \ ++ device.name in self.device_filter: + if config: + logger.info( + 'Using device configuration:\n{}'.format(
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.