Gentoo Archives: gentoo-commits

From: Jonathan Vasquez <fearedbliss@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/
Date: Mon, 04 Sep 2017 15:48:21
Message-Id: 1504540092.41070cb736f3524a6d87d96a3cce9d931fe8b895.fearedbliss@gentoo
1 commit: 41070cb736f3524a6d87d96a3cce9d931fe8b895
2 Author: Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 4 15:47:51 2017 +0000
4 Commit: Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 4 15:48:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41070cb7
7
8 media-tv/plex-media-server: version bump to 1.8.1
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 media-tv/plex-media-server/Manifest | 1 +
13 .../plex-media-server-1.8.1.ebuild | 135 +++++++++++++++++++++
14 2 files changed, 136 insertions(+)
15
16 diff --git a/media-tv/plex-media-server/Manifest b/media-tv/plex-media-server/Manifest
17 index be3aaf7454b..46a0d23ff9e 100644
18 --- a/media-tv/plex-media-server/Manifest
19 +++ b/media-tv/plex-media-server/Manifest
20 @@ -1,2 +1,3 @@
21 DIST plexmediaserver_1.5.6.3790-4613ce077_amd64.deb 105490284 SHA256 633a7fad995347fed1b22dd6983156d24ac95659d541ee4cf8eea505d4cc5575 SHA512 87173c290937706f05461b7ca3b217e09262ec02b0fa728580c18802e3b7246899f2840fdd6703256e32cd92adb71e3d5321c0a38569827f005eb1face9144f7 WHIRLPOOL d9de5e1a90e8644aa14702e034d1799cd1f1fab1c7c730a2334bdac6e1c90a44a0febdfdb42ab791a728bf6daf9baf655c3f2dd82ff9632a86340a9e9aef38e9
22 DIST plexmediaserver_1.7.5.4035-313f93718_amd64.deb 106646674 SHA256 a8c9d2961443c22c85b2795f267bafe576561d365a85d18a97627508a3515844 SHA512 033296004a57c0b7ded412298e7bb2c817ca5c4276683115e0bfb88ecb3445355745ef8216aa4ec92926a3f3ff5ae813470ad4a2edc7f85ed32386e363e76203 WHIRLPOOL 912b2057f71f51a3820a5e660f8726af000165a72ea36f480a62786057cf1e7c42f20741119cd7de14565360d45b6e6c6888ae2cc6ccdc67e7f1d7b8da54c530
23 +DIST plexmediaserver_1.8.1.4139-c789b3fbb_amd64.deb 107251412 SHA256 30b907c94d5b76991831fd3555e4447724683c4e01617a71d39bfe5be11af126 SHA512 17b6de15920013e74f0a634f004b9b599bebd266412f694963967c766e8879b54485a9b07178a575d246c6bc53b202e38da89e293fd7219d0cf993bf9e27afec WHIRLPOOL c907c627a8e693b5b029958e87b01b8c27e3f40ec6ddc04d9b95e67570260ac344bfad9aa35dfdd2ec13f492f7fed3817373c713b5163b7f9c22db1970b8091f
24
25 diff --git a/media-tv/plex-media-server/plex-media-server-1.8.1.ebuild b/media-tv/plex-media-server/plex-media-server-1.8.1.ebuild
26 new file mode 100644
27 index 00000000000..4511bd18b10
28 --- /dev/null
29 +++ b/media-tv/plex-media-server/plex-media-server-1.8.1.ebuild
30 @@ -0,0 +1,135 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 )
37 +inherit eutils user systemd unpacker pax-utils python-single-r1
38 +
39 +MINOR_VERSION="4139-c789b3fbb"
40 +
41 +_APPNAME="plexmediaserver"
42 +_USERNAME="plex"
43 +_SHORTNAME="${_USERNAME}"
44 +_FULL_VERSION="${PV}.${MINOR_VERSION}"
45 +
46 +URI="https://downloads.plex.tv/plex-media-server"
47 +
48 +DESCRIPTION="A free media library that is intended for use with a plex client."
49 +HOMEPAGE="http://www.plex.tv/"
50 +SRC_URI="amd64? ( ${URI}/${_FULL_VERSION}/plexmediaserver_${_FULL_VERSION}_amd64.deb )"
51 +SLOT="0"
52 +LICENSE="Plex"
53 +RESTRICT="bindist strip"
54 +KEYWORDS="-* ~amd64"
55 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
56 +
57 +DEPEND="
58 + sys-apps/fix-gnustack
59 + dev-python/virtualenv[${PYTHON_USEDEP}]"
60 +
61 +RDEPEND="
62 + net-dns/avahi
63 + ${PYTHON_DEPS}"
64 +
65 +QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
66 +QA_PREBUILT="*"
67 +QA_MULTILIB_PATHS=(
68 + "usr/lib/${_APPNAME}/.*"
69 + "usr/lib/${_APPNAME}/Resources/Python/lib/python2.7/.*"
70 +)
71 +
72 +EXECSTACKED_BINS=( "${ED%/}/usr/lib/plexmediaserver/libgnsdk_dsp.so*" )
73 +BINS_TO_PAX_MARK=( "${ED%/}/usr/lib/plexmediaserver/Plex Script Host" )
74 +
75 +S="${WORKDIR}"
76 +PATCHES=( "${FILESDIR}/virtualenv_start_pms.patch" )
77 +
78 +pkg_setup() {
79 + enewgroup ${_USERNAME}
80 + enewuser ${_USERNAME} -1 /bin/bash /var/lib/${_APPNAME} "${_USERNAME},video"
81 + python-single-r1_pkg_setup
82 +}
83 +
84 +src_unpack() {
85 + unpack_deb ${A}
86 +}
87 +
88 +src_install() {
89 + # Move the config to the correct place
90 + local CONFIG_VANILLA="/etc/default/plexmediaserver"
91 + local CONFIG_PATH="/etc/${_SHORTNAME}"
92 + dodir "${CONFIG_PATH}"
93 + insinto "${CONFIG_PATH}"
94 + doins "${CONFIG_VANILLA#/}"
95 + sed -e "s#${CONFIG_VANILLA}#${CONFIG_PATH}/${_APPNAME}#g" -i "${S}"/usr/sbin/start_pms || die
96 +
97 + # Remove Debian specific files
98 + rm -rf "usr/share/doc" || die
99 +
100 + # Copy main files over to image and preserve permissions so it is portable
101 + cp -rp usr/ "${ED}" || die
102 +
103 + # Make sure the logging directory is created
104 + local LOGGING_DIR="/var/log/pms"
105 + dodir "${LOGGING_DIR}"
106 + chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${LOGGING_DIR}" || die
107 +
108 + # Create default library folder with correct permissions
109 + local DEFAULT_LIBRARY_DIR="/var/lib/${_APPNAME}"
110 + dodir "${DEFAULT_LIBRARY_DIR}"
111 + chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${DEFAULT_LIBRARY_DIR}" || die
112 +
113 + # Install the OpenRC init/conf files
114 + doinitd "${FILESDIR}/init.d/${PN}"
115 + doconfd "${FILESDIR}/conf.d/${PN}"
116 +
117 + _handle_multilib
118 +
119 + # Install systemd service file
120 + local INIT_NAME="${PN}.service"
121 + local INIT="${FILESDIR}/systemd/${INIT_NAME}"
122 + systemd_newunit "${INIT}" "${INIT_NAME}"
123 +
124 + _remove_execstack_markings
125 + _add_pax_markings
126 +
127 + einfo "Configuring virtualenv"
128 + virtualenv -v --no-pip --no-setuptools --no-wheel "${ED}"usr/lib/plexmediaserver/Resources/Python || die
129 + pushd "${ED}"usr/lib/plexmediaserver/Resources/Python &>/dev/null || die
130 + find . -type f -exec sed -i -e "s#${D}##g" {} + || die
131 + popd &>/dev/null || die
132 +}
133 +
134 +pkg_postinst() {
135 + einfo ""
136 + elog "Plex Media Server is now installed. Please check the configuration file in /etc/${_SHORTNAME}/${_APPNAME} to verify the default settings."
137 + elog "To start the Plex Server, run 'rc-config start plex-media-server', you will then be able to access your library at http://<ip>:32400/web/"
138 +}
139 +
140 +# Finds out where the library directory is for this system
141 +# and handles ldflags as to not break library dependencies
142 +# during rebuilds.
143 +_handle_multilib() {
144 + # Prevent revdep-rebuild, @preserved-rebuild breakage
145 + cat > "${T}"/66plex <<-EOF || die
146 + LDPATH="${EPREFIX}/usr/$(get_libdir)/plexmediaserver"
147 + EOF
148 +
149 + doenvd "${T}"/66plex
150 +}
151 +
152 +# Remove execstack flags from some libraries/executables so that it works in hardened setups.
153 +_remove_execstack_markings() {
154 + for f in "${EXECSTACKED_BINS[@]}"; do
155 + # Unquoting 'f' so that expansion works.
156 + fix-gnustack -f ${f} > /dev/null
157 + done
158 +}
159 +
160 +# Add pax markings to some binaries so that they work on hardened setup.
161 +_add_pax_markings() {
162 + for f in "${BINS_TO_PAX_MARK[@]}"; do
163 + pax-mark m "${f}"
164 + done
165 +}