[arch-commits] Commit in plex-home-theater/repos (12 files)

Maxime Gauduin alucryd at archlinux.org
Fri Sep 5 17:06:49 UTC 2014


    Date: Friday, September 5, 2014 @ 19:06:49
  Author: alucryd
Revision: 118421

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  plex-home-theater/repos/community-testing-i686/PKGBUILD
    (from rev 118420, plex-home-theater/trunk/PKGBUILD)
  plex-home-theater/repos/community-testing-i686/plexhometheater.sh
    (from rev 118420, plex-home-theater/trunk/plexhometheater.sh)
  plex-home-theater/repos/community-testing-x86_64/PKGBUILD
    (from rev 118420, plex-home-theater/trunk/PKGBUILD)
  plex-home-theater/repos/community-testing-x86_64/plexhometheater.sh
    (from rev 118420, plex-home-theater/trunk/plexhometheater.sh)
Deleted:
  plex-home-theater/repos/community-testing-i686/PKGBUILD
  plex-home-theater/repos/community-testing-i686/plex-home-theater.install
  plex-home-theater/repos/community-testing-i686/plexhometheater.service
  plex-home-theater/repos/community-testing-i686/plexhometheater.sh
  plex-home-theater/repos/community-testing-x86_64/PKGBUILD
  plex-home-theater/repos/community-testing-x86_64/plex-home-theater.install
  plex-home-theater/repos/community-testing-x86_64/plexhometheater.service
  plex-home-theater/repos/community-testing-x86_64/plexhometheater.sh

----------------------------------------------------+
 /PKGBUILD                                          |  110 +++++++++++++++++++
 /plexhometheater.sh                                |    8 +
 community-testing-i686/PKGBUILD                    |   67 -----------
 community-testing-i686/plex-home-theater.install   |   16 --
 community-testing-i686/plexhometheater.service     |   17 --
 community-testing-i686/plexhometheater.sh          |    4 
 community-testing-x86_64/PKGBUILD                  |   67 -----------
 community-testing-x86_64/plex-home-theater.install |   16 --
 community-testing-x86_64/plexhometheater.service   |   17 --
 community-testing-x86_64/plexhometheater.sh        |    4 
 10 files changed, 118 insertions(+), 208 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===================================================================
--- community-testing-i686/PKGBUILD	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-i686/PKGBUILD	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at gmail.com>
-# Contributor: Daniel Wallace <daniel.wallace at gatech.edu>
-
-pkgname=plex-home-theater
-pkgver=1.2.1
-pkgrel=4
-pkgdesc='Plex Home Theater'
-arch=('i686' 'x86_64')
-url='http://www.plexapp.com/'
-license=('GPL2')
-depends=('boost-libs' 'curl' 'fontconfig' 'glew' 'lame' 'libass' 'libcdio'
-         'libjpeg-turbo' 'libmad' 'libmicrohttpd' 'libmodplug' 'libmpeg2'
-         'libsamplerate' 'libssh' 'libusb-compat' 'libva' 'libvdpau'
-         'libxrandr' 'lzo' 'mesa' 'rtmpdump' 'sdl_image' 'sdl_mixer'
-         'smbclient' 'taglib' 'tinyxml' 'yajl')
-makedepends=('boost' 'cmake' 'doxygen' 'ftgl' 'java-environment' 'libcec'
-             'libplist' 'libshairport' 'nasm' 'swig' 'unzip' 'zip')
-optdepends=('libplist: AirPlay support'
-            'libshairport: AirPlay support'
-            'libcec: Pulse-Eight USB-CEC adapter support'
-            'pulseaudio: PulseAudio support')
-install="${pkgname}.install"
-source=("https://github.com/plexinc/plex-home-theater-public/archive/pht-v${pkgver}.tar.gz"
-        'plexhometheater.service'
-        'plexhometheater.sh')
-sha256sums=('c6494591a748bf11281dee860542168448e8e494a7e4eee6cdc61255948975f2'
-            'bca8cd5aa13f469f93dd4e9868c0b5050395ca32f28b19852e5830441b67e1be'
-            'c551d8f50342dcfede5a11e1bae2c18b25d44b89a5a29863e5809d45ef365702')
-
-build() {
-  cd plex-home-theater-public-pht-v${pkgver}
-
-  if [[ -d build ]]; then
-    rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/opt/plexhometheater' \
-           -DCMAKE_C_FLAGS="$CMAKE_C_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
-           -DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
-           -DENABLE_{AUTOUPDATE,DUMP_SYMBOLS}='FALSE' -DENABLE_PYTHON='TRUE' \
-           -DPYTHON_EXEC='/usr/bin/python2' -DUSE_INTERNAL_FFMPEG='TRUE' \
-           -DCREATE_BUNDLE='FALSE'
-  make
-}
-
-package() {
-  cd plex-home-theater-public-pht-v${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
-  install -m 755 "${srcdir}"/plexhometheater.sh "${pkgdir}"/usr/bin/
-  install -m 644 ../plex/Resources/plexhometheater.desktop "${pkgdir}"/usr/share/applications/
-  install -m 644 ../plex/Resources/plex-icon-256.png "${pkgdir}"/usr/share/pixmaps/plexhometheater.png
-
-  # Systemd
-  install -dm 755 "${pkgdir}"/usr/lib/systemd/system
-  install -m 644 ../../plexhometheater.service "${pkgdir}"/usr/lib/systemd/system/
-
-  # Plex user home
-  install -dm 700 "${pkgdir}"/var/lib/plex
-  chown 421:421 "${pkgdir}"/var/lib/plex
-}
-
-# vim: ts=2 sw=2 et:

Copied: plex-home-theater/repos/community-testing-i686/PKGBUILD (from rev 118420, plex-home-theater/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2014-09-05 17:06:49 UTC (rev 118421)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Daniel Wallace <daniel.wallace at gatech.edu>
+
+pkgname=plex-home-theater
+pkgver=1.2.2
+pkgrel=1
+pkgdesc='Plex Home Theater'
+arch=('i686' 'x86_64')
+url='http://www.plexapp.com/'
+license=('GPL2')
+depends=('boost-libs' 'curl' 'fontconfig' 'glew' 'lame' 'libass' 'libcdio'
+         'libjpeg-turbo' 'libmad' 'libmicrohttpd' 'libmodplug' 'libmpeg2'
+         'libsamplerate' 'libssh' 'libusb-compat' 'libva' 'libvdpau'
+         'libxrandr' 'lzo' 'mesa' 'rtmpdump' 'sdl_image' 'sdl_mixer'
+         'smbclient' 'taglib' 'tinyxml' 'yajl')
+makedepends=('boost' 'cmake' 'doxygen' 'ftgl' 'java-environment' 'libcec'
+             'libplist' 'libshairport' 'nasm' 'swig' 'unzip' 'zip')
+optdepends=('libplist: AirPlay support'
+            'libshairport: AirPlay support'
+            'libcec: Pulse-Eight USB-CEC adapter support'
+            'pulseaudio: PulseAudio support')
+source=("https://github.com/plexinc/plex-home-theater-public/archive/pht-v${pkgver}.tar.gz"
+        'plexhometheater.sh')
+sha256sums=('5df5b2bfb5d02566c151e93be6a7217ca72b9e7800e6216dabf1759d920f3d2f'
+            'c551d8f50342dcfede5a11e1bae2c18b25d44b89a5a29863e5809d45ef365702')
+
+build() {
+  cd plex-home-theater-public-pht-v${pkgver}
+
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/opt/plexhometheater' \
+           -DCMAKE_C_FLAGS="$CMAKE_C_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
+           -DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
+           -DENABLE_{AUTOUPDATE,DUMP_SYMBOLS}='FALSE' -DENABLE_PYTHON='TRUE' \
+           -DPYTHON_EXEC='/usr/bin/python2' -DUSE_INTERNAL_FFMPEG='TRUE' \
+           -DCREATE_BUNDLE='FALSE'
+  make
+}
+
+package() {
+  cd plex-home-theater-public-pht-v${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
+  install -m 755 "${srcdir}"/plexhometheater.sh "${pkgdir}"/usr/bin/
+  install -m 644 ../plex/Resources/plexhometheater.desktop "${pkgdir}"/usr/share/applications/
+  install -m 644 ../plex/Resources/plex-icon-256.png "${pkgdir}"/usr/share/pixmaps/plexhometheater.png
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-testing-i686/plex-home-theater.install
===================================================================
--- community-testing-i686/plex-home-theater.install	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-i686/plex-home-theater.install	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,16 +0,0 @@
-post_install() {
-  getent group plex > /dev/null 2>&1 || groupadd -g 421 plex
-  getent passwd plex > /dev/null 2>&1 || useradd -c 'Plex user' -u 421 -g plex -G audio,video,network,optical -d /var/lib/plex -s /sbin/nologin plex
-  passwd -l plex > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  getent passwd plex > /dev/null 2>&1 && userdel plex
-  getent group plex > /dev/null 2>&1 && groupdel plex
-}
-
-# vim: ts=2 sw=2 et:

Deleted: community-testing-i686/plexhometheater.service
===================================================================
--- community-testing-i686/plexhometheater.service	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-i686/plexhometheater.service	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,17 +0,0 @@
-[Unit]
-Description = Starts an instance of Plex Home Theater using xinit
-After = systemd-user-sessions.service
-Conflicts = getty at tty7.service
-
-[Service]
-User = plex
-Group = plex
-PAMName = login
-Type = simple
-TTYPath = /dev/tty7
-Environment = XBMC_HOME=/opt/plexhometheater/share/XBMC
-ExecStart = /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /opt/plexhometheater/bin/plexhometheater --standalone -l /run/lirc/lircd -- :0 -nolisten tcp vt7
-Restart = on-abort
-
-[Install]
-WantedBy = multi-user.target

Deleted: community-testing-i686/plexhometheater.sh
===================================================================
--- community-testing-i686/plexhometheater.sh	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-i686/plexhometheater.sh	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-export XBMC_HOME=/opt/plexhometheater/share/XBMC
-exec /opt/plexhometheater/bin/plexhometheater

Copied: plex-home-theater/repos/community-testing-i686/plexhometheater.sh (from rev 118420, plex-home-theater/trunk/plexhometheater.sh)
===================================================================
--- community-testing-i686/plexhometheater.sh	                        (rev 0)
+++ community-testing-i686/plexhometheater.sh	2014-09-05 17:06:49 UTC (rev 118421)
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+export XBMC_HOME=/opt/plexhometheater/share/XBMC
+exec /opt/plexhometheater/bin/plexhometheater

Deleted: community-testing-x86_64/PKGBUILD
===================================================================
--- community-testing-x86_64/PKGBUILD	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-x86_64/PKGBUILD	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at gmail.com>
-# Contributor: Daniel Wallace <daniel.wallace at gatech.edu>
-
-pkgname=plex-home-theater
-pkgver=1.2.1
-pkgrel=4
-pkgdesc='Plex Home Theater'
-arch=('i686' 'x86_64')
-url='http://www.plexapp.com/'
-license=('GPL2')
-depends=('boost-libs' 'curl' 'fontconfig' 'glew' 'lame' 'libass' 'libcdio'
-         'libjpeg-turbo' 'libmad' 'libmicrohttpd' 'libmodplug' 'libmpeg2'
-         'libsamplerate' 'libssh' 'libusb-compat' 'libva' 'libvdpau'
-         'libxrandr' 'lzo' 'mesa' 'rtmpdump' 'sdl_image' 'sdl_mixer'
-         'smbclient' 'taglib' 'tinyxml' 'yajl')
-makedepends=('boost' 'cmake' 'doxygen' 'ftgl' 'java-environment' 'libcec'
-             'libplist' 'libshairport' 'nasm' 'swig' 'unzip' 'zip')
-optdepends=('libplist: AirPlay support'
-            'libshairport: AirPlay support'
-            'libcec: Pulse-Eight USB-CEC adapter support'
-            'pulseaudio: PulseAudio support')
-install="${pkgname}.install"
-source=("https://github.com/plexinc/plex-home-theater-public/archive/pht-v${pkgver}.tar.gz"
-        'plexhometheater.service'
-        'plexhometheater.sh')
-sha256sums=('c6494591a748bf11281dee860542168448e8e494a7e4eee6cdc61255948975f2'
-            'bca8cd5aa13f469f93dd4e9868c0b5050395ca32f28b19852e5830441b67e1be'
-            'c551d8f50342dcfede5a11e1bae2c18b25d44b89a5a29863e5809d45ef365702')
-
-build() {
-  cd plex-home-theater-public-pht-v${pkgver}
-
-  if [[ -d build ]]; then
-    rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/opt/plexhometheater' \
-           -DCMAKE_C_FLAGS="$CMAKE_C_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
-           -DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
-           -DENABLE_{AUTOUPDATE,DUMP_SYMBOLS}='FALSE' -DENABLE_PYTHON='TRUE' \
-           -DPYTHON_EXEC='/usr/bin/python2' -DUSE_INTERNAL_FFMPEG='TRUE' \
-           -DCREATE_BUNDLE='FALSE'
-  make
-}
-
-package() {
-  cd plex-home-theater-public-pht-v${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
-  install -m 755 "${srcdir}"/plexhometheater.sh "${pkgdir}"/usr/bin/
-  install -m 644 ../plex/Resources/plexhometheater.desktop "${pkgdir}"/usr/share/applications/
-  install -m 644 ../plex/Resources/plex-icon-256.png "${pkgdir}"/usr/share/pixmaps/plexhometheater.png
-
-  # Systemd
-  install -dm 755 "${pkgdir}"/usr/lib/systemd/system
-  install -m 644 ../../plexhometheater.service "${pkgdir}"/usr/lib/systemd/system/
-
-  # Plex user home
-  install -dm 700 "${pkgdir}"/var/lib/plex
-  chown 421:421 "${pkgdir}"/var/lib/plex
-}
-
-# vim: ts=2 sw=2 et:

Copied: plex-home-theater/repos/community-testing-x86_64/PKGBUILD (from rev 118420, plex-home-theater/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2014-09-05 17:06:49 UTC (rev 118421)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+# Contributor: Daniel Wallace <daniel.wallace at gatech.edu>
+
+pkgname=plex-home-theater
+pkgver=1.2.2
+pkgrel=1
+pkgdesc='Plex Home Theater'
+arch=('i686' 'x86_64')
+url='http://www.plexapp.com/'
+license=('GPL2')
+depends=('boost-libs' 'curl' 'fontconfig' 'glew' 'lame' 'libass' 'libcdio'
+         'libjpeg-turbo' 'libmad' 'libmicrohttpd' 'libmodplug' 'libmpeg2'
+         'libsamplerate' 'libssh' 'libusb-compat' 'libva' 'libvdpau'
+         'libxrandr' 'lzo' 'mesa' 'rtmpdump' 'sdl_image' 'sdl_mixer'
+         'smbclient' 'taglib' 'tinyxml' 'yajl')
+makedepends=('boost' 'cmake' 'doxygen' 'ftgl' 'java-environment' 'libcec'
+             'libplist' 'libshairport' 'nasm' 'swig' 'unzip' 'zip')
+optdepends=('libplist: AirPlay support'
+            'libshairport: AirPlay support'
+            'libcec: Pulse-Eight USB-CEC adapter support'
+            'pulseaudio: PulseAudio support')
+source=("https://github.com/plexinc/plex-home-theater-public/archive/pht-v${pkgver}.tar.gz"
+        'plexhometheater.sh')
+sha256sums=('5df5b2bfb5d02566c151e93be6a7217ca72b9e7800e6216dabf1759d920f3d2f'
+            'c551d8f50342dcfede5a11e1bae2c18b25d44b89a5a29863e5809d45ef365702')
+
+build() {
+  cd plex-home-theater-public-pht-v${pkgver}
+
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/opt/plexhometheater' \
+           -DCMAKE_C_FLAGS="$CMAKE_C_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
+           -DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include" \
+           -DENABLE_{AUTOUPDATE,DUMP_SYMBOLS}='FALSE' -DENABLE_PYTHON='TRUE' \
+           -DPYTHON_EXEC='/usr/bin/python2' -DUSE_INTERNAL_FFMPEG='TRUE' \
+           -DCREATE_BUNDLE='FALSE'
+  make
+}
+
+package() {
+  cd plex-home-theater-public-pht-v${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+  install -dm 755 "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
+  install -m 755 "${srcdir}"/plexhometheater.sh "${pkgdir}"/usr/bin/
+  install -m 644 ../plex/Resources/plexhometheater.desktop "${pkgdir}"/usr/share/applications/
+  install -m 644 ../plex/Resources/plex-icon-256.png "${pkgdir}"/usr/share/pixmaps/plexhometheater.png
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-testing-x86_64/plex-home-theater.install
===================================================================
--- community-testing-x86_64/plex-home-theater.install	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-x86_64/plex-home-theater.install	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,16 +0,0 @@
-post_install() {
-  getent group plex > /dev/null 2>&1 || groupadd -g 421 plex
-  getent passwd plex > /dev/null 2>&1 || useradd -c 'Plex user' -u 421 -g plex -G audio,video,network,optical -d /var/lib/plex -s /sbin/nologin plex
-  passwd -l plex > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  getent passwd plex > /dev/null 2>&1 && userdel plex
-  getent group plex > /dev/null 2>&1 && groupdel plex
-}
-
-# vim: ts=2 sw=2 et:

Deleted: community-testing-x86_64/plexhometheater.service
===================================================================
--- community-testing-x86_64/plexhometheater.service	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-x86_64/plexhometheater.service	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,17 +0,0 @@
-[Unit]
-Description = Starts an instance of Plex Home Theater using xinit
-After = systemd-user-sessions.service
-Conflicts = getty at tty7.service
-
-[Service]
-User = plex
-Group = plex
-PAMName = login
-Type = simple
-TTYPath = /dev/tty7
-Environment = XBMC_HOME=/opt/plexhometheater/share/XBMC
-ExecStart = /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /opt/plexhometheater/bin/plexhometheater --standalone -l /run/lirc/lircd -- :0 -nolisten tcp vt7
-Restart = on-abort
-
-[Install]
-WantedBy = multi-user.target

Deleted: community-testing-x86_64/plexhometheater.sh
===================================================================
--- community-testing-x86_64/plexhometheater.sh	2014-09-05 17:01:43 UTC (rev 118420)
+++ community-testing-x86_64/plexhometheater.sh	2014-09-05 17:06:49 UTC (rev 118421)
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-export XBMC_HOME=/opt/plexhometheater/share/XBMC
-exec /opt/plexhometheater/bin/plexhometheater

Copied: plex-home-theater/repos/community-testing-x86_64/plexhometheater.sh (from rev 118420, plex-home-theater/trunk/plexhometheater.sh)
===================================================================
--- community-testing-x86_64/plexhometheater.sh	                        (rev 0)
+++ community-testing-x86_64/plexhometheater.sh	2014-09-05 17:06:49 UTC (rev 118421)
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+export XBMC_HOME=/opt/plexhometheater/share/XBMC
+exec /opt/plexhometheater/bin/plexhometheater




More information about the arch-commits mailing list