You are not logged in.

#1 2015-07-25 09:26:20

rio
Member
Registered: 2010-09-17
Posts: 9

kodi 15.0 in repository but no pvr-addons

Recently kodi 15.0-1 has been uploaded to the community repository.
However, there are no packages providing pvr-addons like kodi-pvr-addons 20141212-2 did for previous versions.

Is there a reason the addons aren't packaged?

Of course I can find all I need in the AUR at https://aur4.archlinux.org/packages/?K=kodi-devel, but I'd like addon packages that work with the kodi package shipped by arch so I don't need to update them manually.

Offline

#2 2015-07-25 12:25:51

mrlamud
Member
Registered: 2014-09-27
Posts: 104

Re: kodi 15.0 in repository but no pvr-addons

Offline

#3 2015-07-25 12:30:57

rio
Member
Registered: 2010-09-17
Posts: 9

Re: kodi 15.0 in repository but no pvr-addons

Thanks, but I need the HTS addon for TvHeadend.
I know there is also https://aur4.archlinux.org/packages/kod … r-hts-git/.

The question still is: Why doesn't Arch package the pvr addons anymore?

Offline

#4 2015-07-25 12:37:24

Bevan
Member
Registered: 2009-09-08
Posts: 99

Re: kodi 15.0 in repository but no pvr-addons

rio wrote:

I know there is also https://aur4.archlinux.org/packages/kod … r-hts-git/.

The question still is: Why doesn't Arch package the pvr addons anymore?

It seems like the upstream structure changed a bit. The old pvr addons package was based on https://github.com/opdenkamp/xbmc-pvr-addons, which is not maintained anymore. Now the plugins are maintained seperately, e.g. at https://github.com/kodi-pvr/pvr.hts for the HTS plugin. Since there is no release I just created that git package in the AUR today. Give it a try smile

Offline

#5 2015-07-25 12:39:23

rio
Member
Registered: 2010-09-17
Posts: 9

Re: kodi 15.0 in repository but no pvr-addons

So we can expect packages for this in the future?

Last edited by rio (2015-07-25 18:32:26)

Offline

#6 2015-07-25 12:45:49

Bevan
Member
Registered: 2009-09-08
Posts: 99

Re: kodi 15.0 in repository but no pvr-addons

rio wrote:

So we can expect packages for this in the future?

I guess this depends on whether a trusted user / developer wants to maintain it. Maybe ask Ike Devolder who maintains kodi and other plugins.

Offline

#7 2015-08-02 18:36:59

steve_95
Member
Registered: 2013-05-03
Posts: 8

Re: kodi 15.0 in repository but no pvr-addons

Hi Bevan, thank you for the package; there's an issue in the makedepends: I had to change kodi-platform to kodi-platform-git as the former doesn't exist.
Regards wink

Offline

#8 2015-08-03 06:55:33

rio
Member
Registered: 2010-09-17
Posts: 9

Re: kodi 15.0 in repository but no pvr-addons

steve_95 wrote:

there's an issue in the makedepends: I had to change kodi-platform to kodi-platform-git as the former doesn't exist.

This isn't necessary since kodi-platform-git has provides=('kodi-platform') in its PKGBUILD. Just install it first and everything is fine.

Offline

#9 2015-08-03 06:57:20

rio
Member
Registered: 2010-09-17
Posts: 9

Re: kodi 15.0 in repository but no pvr-addons

Quick update: I talked to Ike on IRC and he said he won't package pvr addons for kodi, since he doesn't have the hardware to test them, unfortunately.

Offline

#10 2015-08-16 23:12:07

Gregoire
Member
Registered: 2013-03-23
Posts: 23

Re: kodi 15.0 in repository but no pvr-addons

Sorry for being a little off topic : would it be possible to have the same for vuplus ?

Thank you very much !!!

Offline

#11 2015-08-20 07:53:19

hifi25nl
Member
Registered: 2011-05-07
Posts: 263

Re: kodi 15.0 in repository but no pvr-addons

Today I discovered this problem. I am interested too in vuplus plugin.
Page is this
https://github.com/kodi-pvr/pvr.vuplus

After installing kodi-platform-git compilation is stalling at:

CMake Error at /usr/lib/kodi/addon-helpers.cmake:19 (FILE):
  file failed to open for reading

Last edited by hifi25nl (2015-08-20 07:53:45)

Offline

#12 2015-08-20 10:10:23

hifi25nl
Member
Registered: 2011-05-07
Posts: 263

Re: kodi 15.0 in repository but no pvr-addons

This PKGBUILD should work (a little ugly maybe...when I have time I will make it better)

pkgname=kodi-pvr-vuplus
pkgver=20150820
pkgrel=1
pkgdesc='VuPlus PVR client addon for Kodi'
arch=('i686' 'x86_64')
url="https://github.com/kodi-pvr/pvr.vuplus"
license=('GPL')
makedepends=('cmake' 'kodi' 'kodi-platform-git')
depends=('kodi' 'tinyxml')
source=("https://github.com/kodi-pvr/pvr.vuplus/archive/Isengard.zip")
md5sums=('SKIP')
_prefix='/usr'

build() {

msg "Starting make..."
    
cd "$srcdir/pvr.vuplus-Isengard/"

  cmake \
    -DCMAKE_INSTALL_PREFIX=$_prefix \
    -DCMAKE_BUILD_TYPE=Release \

  make
}

package() {

cd "$srcdir/pvr.vuplus-Isengard/"
make DESTDIR="$pkgdir" install

} 

Last edited by hifi25nl (2015-08-20 10:10:39)

Offline

#13 2015-08-20 10:59:53

Gregoire
Member
Registered: 2013-03-23
Posts: 23

Re: kodi 15.0 in repository but no pvr-addons

Thank you very much hihi25nl : it works tremendously !!!

Offline

#14 2015-08-24 00:04:33

hifi25nl
Member
Registered: 2011-05-07
Posts: 263

Re: kodi 15.0 in repository but no pvr-addons

Now you can downlad the AUR package here
https://aur.archlinux.org/packages/kodi … uplus-git/

Plese uninstall kodi-pvr-vuplus first.

Offline

#15 2015-08-24 22:59:43

Gregoire
Member
Registered: 2013-03-23
Posts: 23

Re: kodi 15.0 in repository but no pvr-addons

Thanks again, I just did !!!

Offline

#16 2016-05-22 21:20:46

Gregoire
Member
Registered: 2013-03-23
Posts: 23

Re: kodi 15.0 in repository but no pvr-addons

Did you succeed in compiling it for the "current version of kodi in the repo" ?
Thanks.

Offline

#17 2016-06-08 14:26:54

Gregoire
Member
Registered: 2013-03-23
Posts: 23

Re: kodi 15.0 in repository but no pvr-addons

I couldn't find the "right" way to compil this addon for the current arch version so I just tried to compil it and kodi (both git) and it worked really well.

Offline

#18 2016-07-02 22:48:03

hifi25nl
Member
Registered: 2011-05-07
Posts: 263

Re: kodi 15.0 in repository but no pvr-addons

I have added branch=Jarvis to source in the PKGBUILD
Now, if you recompile first kodi-platform-git it should work (in the PKGBUILD you must have API=16)

Offline

Board footer

Powered by FluxBB