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: 64
Popularity: 0.048224
First Submitted: 2015-04-11 23:54 (UTC)
Last Updated: 2022-05-10 16:31 (UTC)

Latest Comments

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

Rhinoceros commented on 2015-08-08 22:39 (UTC)

@Yegorius What you were looking at was a placeholder page. It's quite confusing, but it didn't contain a PKGBUILD, and was just a stub. https://bbs.archlinux.org/viewtopic.php?pid=1551365#p1551365 @skgsergio Thank you very much for doing that.

skgsergio commented on 2015-08-08 16:52 (UTC)

@Yegorius the package was orphan, the previous mantainer didn't migrated it to AUR4. I've adopted it (and the python3 version) so now pulseaudio-dlna compile fine.

yegorius commented on 2015-08-08 16:26 (UTC)

well, you have it here in AUR: https://aur.archlinux.org/packages/python2-notify2/

skydesigner commented on 2015-08-08 15:37 (UTC)

I got the same problem: python2-notify2 can not be installed, because it is not available.

Rhinoceros commented on 2015-08-08 13:08 (UTC)

It looks like python2-notify2 wasn't migrated, and so doesn't exist anymore (there is only a placeholder page). Hence, I can't build this package.

Chrissss commented on 2015-08-02 15:40 (UTC)

Here's a PKGBUILD which works for version 0.4.3... # Maintainer: Yegorius <yegorius@domic.us> pkgname=pulseaudio-dlna pkgver=0.4.3 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') 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=('c0b44273359094e4f1df3e3e7a4b67443f278dc5e27a58a2d529e0e78a71e508') package() { cd "$srcdir/$pkgname-$pkgver" python2 setup.py install --no-compile --prefix="/usr" --root="$pkgdir" }

Chrissss commented on 2015-08-01 11:21 (UTC)

Here a PKGBUILD which works for version 0.4.1 # Maintainer: Yegorius <yegorius@domic.us> pkgname=pulseaudio-dlna pkgver=0.4.1 pkgrel=2 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') 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=('6144ea7f4e16ed6e62a27a145876c063e748c7a528827ec5f3079dfaca24df6b') package() { cd "$srcdir/$pkgname-$pkgver" python2 setup.py install --no-compile --prefix="/usr" --root="$pkgdir" }

Chrissss commented on 2015-08-01 10:44 (UTC)

There's a new version which supports Chromecast. For this there's a new dependency: python-protobuf

coder-hugo commented on 2015-04-15 09:18 (UTC)

You are right, the license is a common one. It's not like the MIT where a year and a copyright holder is placed in the license file.

yegorius commented on 2015-04-13 08:55 (UTC)

Oh, it has to be python2-setuptools, not pip. The license is GPLv3, it's included in /usr/share/licenses/common/GPL3. (See archwiki:PKGBUILD#license section)