Package Details: plex-media-server 1.41.0.8994-1

Git Clone URL: https://aur.archlinux.org/plex-media-server.git (read-only, click to copy)
Package Base: plex-media-server
Description: The back-end media server component of Plex.
Upstream URL: https://plex.tv/
Keywords: DLNA
Licenses: custom
Conflicts: plex-media-server-plexpass
Submitter: alucryd
Maintainer: fryfrog (tixetsal)
Last Packager: fryfrog
Votes: 348
Popularity: 0.029861
First Submitted: 2014-10-14 22:11 (UTC)
Last Updated: 2024-09-26 17:02 (UTC)

Latest Comments

« First ‹ Previous 1 .. 33 34 35 36 37 38 39 40 41 42 43 .. 107 Next › Last »

tmoore commented on 2016-02-21 21:30 (UTC) (edited on 2016-02-21 21:31 (UTC) by tmoore)

Doh.. yea.. wrong syntax.. zxf instead of xfz

techwiz commented on 2016-02-21 17:17 (UTC)

@Mutantx @tmoore the irony here is that we added the z flag to be safe... Looks like the f flag takes whatever is immediately after it as a parameter, zxf should work. However I think tar is smart enough to know what kind of archive it's working with so it might be better to remove the z entirely. Your choice tmoore.

Mutantx commented on 2016-02-21 13:45 (UTC)

@techwiz Yes folder permissions and space look fine. I use bsdtar rather than gzip Still getting this with most current version: ==> Extracting sources... -> Extracting PlexMediaServer-0.9.15.3.1674-f46e7e6-arm7.spk with bsdtar ==> Starting prepare()... tar: z: Cannot open: No such file or directory tar: Error is not recoverable: exiting now ==> ERROR: A failure occurred in prepare(). Aborting... Prior to recent change 3 days ago(case statement/if I believe) ----> ==> Validating source files with sha256sums... plexmediaserver.conf.d ... Passed plexmediaserver.service ... Passed terms.txt ... Passed ==> Validating source files with sha256sums... PlexMediaServer-0.9.15.3.1674-f46e7e6-arm7.spk ... Passed ==> Extracting sources... -> Extracting PlexMediaServer-0.9.15.3.1674-f46e7e6-arm7.spk with bsdtar ==> Starting prepare()... ==> ERROR: A failure occurred in prepare(). Aborting...

tmoore commented on 2016-02-21 05:05 (UTC)

I changed the if statement to a case statement, as it handles globs well by default. Give it a shot.

tmoore commented on 2016-02-21 04:54 (UTC)

Hmm.. yea I think this is incorrect: $CARCH != arm* Can't do a not-equal with a glob possibly.. needs to say probably !~ or the bash equiv.. I'll look it up. (or yea, like you said, ! $CARCH)

techwiz commented on 2016-02-21 04:10 (UTC)

prelink is a dependency on x86 and x86-64 so it should not die on other archs.. I guess it was just coincidence that it hasn't died for an ARM user yet.

msalerno commented on 2016-02-21 04:04 (UTC)

In that case, wouldn't it be broken for all architectures? FYI - Everything built just fine.

techwiz commented on 2016-02-21 03:52 (UTC)

Oh... perhaps instead of !=, you should use ! $CARCH ~= because != might not do regex expansion.

msalerno commented on 2016-02-21 03:50 (UTC)

I'm not sure why it worked, but I removed: #Fix for SELinux and Grsecurity [[ $CARCH != arm* ]] && execstack -c usr/lib/plexmediaserver/libgnsdk_dsp.so* and I got past prepare. FYI, I'm on armv7l - Cubox-I4Pro

tmoore commented on 2016-02-21 03:48 (UTC) (edited on 2016-02-21 03:50 (UTC) by tmoore)

Hmm.. I wonder if there is enough space where you are untarring? Maybe modify the PKGBUILD and throw in an "echo $cwd" Also, after the prepare it follows the package() function, so maybe start trying those manually?