Page MenuHomeFreeBSD

multimedia/emby-server: Update to 3.0.5985
ClosedPublic

Authored by woodsb02 on Jul 8 2016, 10:02 PM.
Tags
None
Referenced Files
Unknown Object (File)
Nov 1 2024, 5:05 PM
Unknown Object (File)
Oct 1 2024, 10:39 AM
Unknown Object (File)
Sep 30 2024, 10:35 AM
Unknown Object (File)
Sep 28 2024, 9:13 PM
Unknown Object (File)
Sep 26 2024, 9:28 PM
Unknown Object (File)
Sep 18 2024, 6:49 AM
Unknown Object (File)
Jul 28 2024, 7:44 PM
Unknown Object (File)
Jul 6 2024, 5:23 AM
Subscribers
None

Details

Summary

multimedia/emby-server: Update to 3.0.5985

Changes this release:

https://github.com/MediaBrowser/Emby/releases/tag/3.0.5985
https://github.com/MediaBrowser/Emby/releases/tag/3.0.5984
Test Plan

poudriere testport multimedia/emby-server

Diff Detail

Repository
rP FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

woodsb02 retitled this revision from to multimedia/emby-server: Update to 3.0.5985.
woodsb02 updated this object.
woodsb02 edited the test plan for this revision. (Show Details)
woodsb02 added reviewers: adamw, mat, koobs.
adamw edited edge metadata.

Have you considered auto-plist for emby?

This revision is now accepted and ready to land.Jul 8 2016, 10:09 PM
In D7163#149032, @adamw wrote:

Have you considered auto-plist for emby?

Hmm... I'm not sure I am aware of an auto-plist functionality outside of python ports?

In D7163#149032, @adamw wrote:

Have you considered auto-plist for emby?

Hmm... I'm not sure I am aware of an auto-plist functionality outside of python ports?

Not auto, but you can still construct it on-the-fly.

PLIST=    ${WRKSRC}/plist

post-install:
        ${FIND} -s -d ${STAGEDIR}${PREFIX}/lib/emby-server -type f | ${SED} -e 's|^${STAGEDIR}${PREFIX}||' > ${PLIST}

I should add, there's huge benefit to having an explicit (not on-the-fly generated) plist.

You have a good way of ensuring that something strange doesn't creep in, and you can find out which port a file/dir belongs to by just grepping.

In D7163#149044, @adamw wrote:

I should add, there's huge benefit to having an explicit (not on-the-fly generated) plist.

You have a good way of ensuring that something strange doesn't creep in, and you can find out which port a file/dir belongs to by just grepping.

Ok - thanks. Might as well leave this one with a static plist, as it does indeed help me see what things have changed from release to release.

This revision was automatically updated to reflect the committed changes.