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)
Thu, Sep 25, 4:13 AM
Unknown Object (File)
Aug 30 2025, 3:35 AM
Unknown Object (File)
Aug 18 2025, 1:34 AM
Unknown Object (File)
Aug 2 2025, 5:11 AM
Unknown Object (File)
Jul 26 2025, 5:04 AM
Unknown Object (File)
Jun 24 2025, 8:08 AM
Unknown Object (File)
Jun 23 2025, 10:25 PM
Unknown Object (File)
Jun 22 2025, 9:31 PM
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
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 4461
Build 4512: arc lint + arc unit

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.