Package Details: pulseaudio-dlna 0.5.2.r152.gb0db813-6

Git Clone URL: https://aur.archlinux.org/pulseaudio-dlna.git (read-only, click to copy)
Package Base: pulseaudio-dlna
Description: Small DLNA server which brings DLNA/UPnP support to PulseAudio
Upstream URL: https://github.com/masmu/pulseaudio-dlna
Keywords: dlna multimedia pulseaudio upnp
Licenses: GPL3
Submitter: yegorius
Maintainer: polyzen
Last Packager: polyzen
Votes: 65
Popularity: 0.52
First Submitted: 2015-04-11 23:54 (UTC)
Last Updated: 2022-05-10 16:31 (UTC)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 Next › Last »

freijon commented on 2016-04-01 17:04 (UTC)

Since development is so fast paced at the moment I created the package 'pulseaudio-dlna-git' which also incorporates the systemd service 'pulseaudio-dlna' provided by sim590

sim590 commented on 2016-02-20 19:35 (UTC) (edited on 2016-02-20 22:31 (UTC) by sim590)

I have a patch adding a systemd service file. This is kind of natural thing to add since the most of the user will want this program to run as daemon. EDIT The old one was installing in system services, it's now a user service and has to be enabled like this: systemctl --user enable pulseaudio-dlna https://gist.github.com/sim590/16b0aecb2f9ee2d21dc3 Also, the service seems to have trouble to start at boot (when enabling). It will fail at boot and if you restart the service, it starts fine.. So, the After= rule may not be quite good... Maybe you can fix it? OLD https://gist.github.com/de1edc168ec5c4a4e787

mrendres commented on 2016-01-05 22:23 (UTC)

From a fresh arch install I got the following error after installing the AUR: $ pulseaudio-dlna Traceback (most recent call last): File "/usr/bin/pulseaudio-dlna", line 5, in <module> from pkg_resources import load_entry_point ImportError: No module named pkg_resources Finally I recognized that the dependency "python2-pip" was missing. Maybe this package should also be included in the depends section of the PKGBUILD file.

hiberno commented on 2015-12-04 11:11 (UTC) (edited on 2015-12-04 11:16 (UTC) by hiberno)

In order to get my Chromecast Audio to work, I had to update to the latest version. This is the PKGBUILD diff: diff --git a/PKGBUILD b/PKGBUILD index 366a8cd..f0bef97 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Yegorius <yegorius@domic.us> pkgname=pulseaudio-dlna -pkgver=0.4.6 +pkgver=0.4.7 pkgrel=1 pkgdesc="A small DLNA server which brings DLNA/UPnP support to PulseAudio" arch=('i686' 'x86_64') @@ -10,7 +10,7 @@ license=('GPL3') depends=('python2-dbus' 'python2-beautifulsoup3' 'python2-docopt' 'python2-requests' 'python2-gobject2' 'python2-setproctitle' 'python2-protobuf' 'python2-notify2' 'python2-psutil' - 'python2-futures' 'python2-chardet') + 'python2-futures' 'python2-chardet' 'python2-netifaces') makedepends=('python2-setuptools') optdepends=('lame: MP3 transcoding support' 'faac: AAC transcoding support' @@ -19,7 +19,7 @@ optdepends=('lame: MP3 transcoding support' 'opus-tools: OPUS transcoding support' 'vorbis-tools: OGG transcoding support') source=("$pkgname-$pkgver.tar.gz::https://github.com/masmu/pulseaudio-dlna/archive/$pkgver.tar.gz") -sha256sums=('0ab745181f8594a8f4b6279a1633adda0240cb17ec03e86f04d9bc41049d0c5c') +sha256sums=('38a19ce9d28a9f0031bf10da753231c1fc7d6eba653b477ff98037777f71fe95') package() { cd "$srcdir/$pkgname-$pkgver"

chmd commented on 2015-10-20 22:31 (UTC)

Awesome, thank you!

chmd commented on 2015-10-17 09:06 (UTC)

Could you please update this package to latest upstream version 0.4.6? Thank you very much!

willemw commented on 2015-09-03 20:50 (UTC)

"--optimize" is what is recommended by the wiki. You also need to have (see wiki): arch=('any')

yegorius commented on 2015-09-03 11:25 (UTC)

@willemw Is it working as expected with "--optimize=1"?

willemw commented on 2015-08-16 12:34 (UTC)

Please use --optimize: python2 setup.py install --root="$pkgdir/" --optimize=1

Chrissss commented on 2015-08-10 11:54 (UTC)

Thanks for keeping up with the development. There's a new version... python2-psutil is a new dependency. # Maintainer: Yegorius <yegorius@domic.us> pkgname=pulseaudio-dlna pkgver=0.4.4 pkgrel=1 pkgdesc="A small DLNA server which brings DLNA/UPnP support to PulseAudio" arch=('i686' 'x86_64') url="https://github.com/masmu/pulseaudio-dlna" license=('GPL3') depends=('python2-dbus' 'python2-beautifulsoup3' 'python2-docopt' 'python2-requests' 'python2-gobject2' 'python2-setproctitle' 'python2-protobuf' 'python2-notify2' 'python2-psutil') makedepends=('python2-setuptools') optdepends=('lame: MP3 transcoding support' 'flac: FLAC transcoding support' 'opus: OPUS transcoding support' 'libogg: OGG transcoding support') source=("$pkgname-$pkgver.tar.gz::https://github.com/masmu/pulseaudio-dlna/archive/$pkgver.tar.gz") sha256sums=('5bb3357bbfd4f689c80f5e41d56bae54083e1b41c597f632b8469dc30cc474db') package() { cd "$srcdir/$pkgname-$pkgver" python2 setup.py install --no-compile --prefix="/usr" --root="$pkgdir" }