summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Shkardoon <ss23@ss23.geek.nz>2020-05-02 09:31:56 +1200
committerJoonas Niilola <juippis@gentoo.org>2020-05-04 20:26:08 +0300
commit3342fa837c83257cb2f2a67795fc05cf119a7ea5 (patch)
tree72a0b8dbafa7914692d884d37a4807df436db7de /media-tv/plex-media-server/files
parentmedia-tv/plex-media-server: Bump to 1.19.2 (diff)
downloadgentoo-3342fa837c83257cb2f2a67795fc05cf119a7ea5.tar.gz
gentoo-3342fa837c83257cb2f2a67795fc05cf119a7ea5.tar.bz2
gentoo-3342fa837c83257cb2f2a67795fc05cf119a7ea5.zip
media-tv/plex-media-server: Remove old versions
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Stephen Shkardoon <ss23@ss23.geek.nz> Closes: https://github.com/gentoo/gentoo/pull/15603 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-tv/plex-media-server/files')
-rw-r--r--media-tv/plex-media-server/files/virtualenv_start_pms.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/media-tv/plex-media-server/files/virtualenv_start_pms.patch b/media-tv/plex-media-server/files/virtualenv_start_pms.patch
deleted file mode 100644
index bb4d575240b3..000000000000
--- a/media-tv/plex-media-server/files/virtualenv_start_pms.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/usr/sbin/start_pms 2017-03-01 13:35:28.340489280 -0500
-+++ b/usr/sbin/start_pms 2017-03-01 13:36:05.574540305 -0500
-@@ -8,16 +8,20 @@
- export PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR="${HOME}/Library/Application Support"
- if [ -f /etc/default/locale ]; then
- export LANG="`cat /etc/default/locale|awk -F '=' '/LANG=/{print $2}'|sed 's/"//g'`"
- export LC_ALL="$LANG"
- fi
-
- test -f /etc/default/plexmediaserver && . /etc/default/plexmediaserver
-
-+# Activate python virtualenv
-+. "${PLEX_MEDIA_SERVER_HOME}"/Resources/Python/bin/activate
-+
-+
- if [ ! -d "$PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR" ]
- then
- mkdir -p "$PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR"
- if [ ! $? -eq 0 ]
- then
- echo "WARNING COULDN'T CREATE $PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR, MAKE SURE I HAVE PERMISSON TO DO THAT!"
- exit 1
- fi