[arch-commits] Commit in mythplugins/trunk (PKGBUILD qt510.patch)
Date: Saturday, December 30, 2017 @ 21:56:48 Author: alucryd Revision: 277489 x264 152 rebuild: mythplugins 1:29.0-4 Added: mythplugins/trunk/qt510.patch Modified: mythplugins/trunk/PKGBUILD -+ PKGBUILD| 11 ++-- qt510.patch | 154 ++ 2 files changed, 161 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-12-30 21:52:20 UTC (rev 277488) +++ PKGBUILD2017-12-30 21:56:48 UTC (rev 277489) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=29.0 -pkgrel=3 +pkgrel=4 epoch=1 arch=('x86_64') url="http://www.mythtv.org"; @@ -28,10 +28,12 @@ 'python2-pycurl' 'zlib' 'gdb' 'perl-cgi') source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; -'cdparanoia.patch') -sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae' +'cdparanoia.patch' +'qt510.patch') +sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2' 'bc6f4f6b73136f5c0342b055dd4814ed177b7ca05d70dcb43e7966c3cd854f77dcd7a391eef2b870acf87c82d09c018cf8fb5176724ab55b59a6f2ab3845e0fe' - '6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b') + '6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b' + 'da82e43545cf6c0e882e9729d30cdb1786019da6a1aaf59667594a3a9bebd613422557e470969d35dcad52bc9b255c5d762301eff4c8e759fb2b6a22cd0c8841') prepare() { cd "$srcdir/mythtv-$pkgver/$pkgbase" @@ -38,6 +40,7 @@ find . -name '*.py' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@' patch -Np1 -i "$srcdir/cdparanoia.patch" + patch -Np2 -i ../../qt510.patch cd "$srcdir/mythweb-$pkgver" Added: qt510.patch === --- qt510.patch (rev 0) +++ qt510.patch 2017-12-30 21:56:48 UTC (rev 277489) @@ -0,0 +1,154 @@ +diff --git a/mythplugins/configure b/mythplugins/configure +index 9ba22c8956..3b6cc3f914 100755 +--- a/mythplugins/configure b/mythplugins/configure +@@ -527,14 +527,6 @@ EOF + die "Sanity test failed." + fi + +-is_qmake5(){ +-$1 --version 2>&1 | egrep -q -e "Qt version 5\.[0-9]\.[0-9]" +-} +- +-is_qmake4(){ +-$1 --version 2>&1 | egrep -q -e "Qt version 4\.[8-9]\.[0-9]" +-} +- + # bring in mythtv config + if [ -e $prefix/include/mythtv/mythconfig.mak ] ; then + rm mythconfig.mak 2> /dev/null +@@ -570,30 +562,40 @@ OPENGLES=$(cat mythconfig.mak | grep -e "^HAVE_GLES2_GL2_H=yes") + EXTRALIBS=$(cat mythconfig.mak | grep -e "^EXTRALIBS=") + EXTRALIBS=${EXTRALIBS#EXTRALIBS=} + ++version2string(){ ++# accepts version as in 1.10.4 and turns it into 0001.0010.0004.. which can be compared as a string ++echo $1 | awk -F. '{ printf("%04d.%04d.%04d.%04d.%04d", $1, $2, $3, $4, $5); };' ++} ++ ++# Minimum supported Qt version ++qt_minimum_version="5.2" ++ + # qmake-qt5 /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake + if [ x"$qmake" = "xqmake" ]; then +-CHECK_QMAKE="qmake-qt5 /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake /usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake $qmake qmake-qt4" ++CHECK_QMAKE=`which -a qmake-qt5 2>/dev/null`" /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake /usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake `which -a $qmake 2>/dev/null`" + else +-CHECK_QMAKE="$qmake qmake-qt5 /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake /usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake qmake-qt4" ++CHECK_QMAKE=`which -a $qmake 2>/dev/null`" "`which -a qmake-qt5 2>/dev/null`" /usr/lib64/qt5/bin/qmake /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /usr/lib/i386-linux-gnu/qt5/bin/qmake /usr/lib/arm-linux-gnueabihf/qt5/bin/qmake /usr/local/lib/qt5/bin/qmake" + fi + # try to find a qt5 qmake to use + found_qmake='' + for i in $CHECK_QMAKE; do +-if is_qmake5 $i; then +-found_qmake=$i +-break; +-elif is_qmake4 $i; then +-found_qmake=$i +-break; ++if test -e $i ; then ++qmake_version=`$i --version | sed -n "s/.*Qt version \([0-9]*\.[0-9]*\.[0-9]*\) .*/\1/p"` ++if ! [ $(version2string $qmake_version) \< $(version2string $qt_minimum_version) ]; then ++
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Wednesday, November 1, 2017 @ 11:15:14 Author: arojas Revision: 264992 libva 2.0.0 rebuild Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-11-01 11:07:35 UTC (rev 264991) +++ PKGBUILD2017-11-01 11:15:14 UTC (rev 264992) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=29.0 -pkgrel=2 +pkgrel=3 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -29,7 +29,7 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2' +sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae' 'bc6f4f6b73136f5c0342b055dd4814ed177b7ca05d70dcb43e7966c3cd854f77dcd7a391eef2b870acf87c82d09c018cf8fb5176724ab55b59a6f2ab3845e0fe' '6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, September 24, 2017 @ 08:09:25 Author: idevolder Revision: 260342 upgpkg: mythplugins 1:29.0-2 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-09-24 08:08:03 UTC (rev 260341) +++ PKGBUILD2017-09-24 08:09:25 UTC (rev 260342) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=29.0 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -25,13 +25,13 @@ 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python2-pillow' - 'python2-pycurl' 'zlib' 'gdb') + 'python2-pycurl' 'zlib' 'gdb' 'perl-cgi') source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('3c24acf3aab3a52e66222331b3eb104f5136f3b045fef8e0ba5623bda581b2a9' -'8d233648658d07fd59c191c0c3ca6d31eddbc28daec85509e011e3ade307eee3' -'004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') +sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2' + 'bc6f4f6b73136f5c0342b055dd4814ed177b7ca05d70dcb43e7966c3cd854f77dcd7a391eef2b870acf87c82d09c018cf8fb5176724ab55b59a6f2ab3845e0fe' + '6a8c5e3f7500a657cef56d30b7141ab10bd14c65bf3c2d14a768ed180f38deaee6367224e6b0b2d09c26fae78908df08747f8c805250d71c42faaa2931ac577b') prepare() { cd "$srcdir/mythtv-$pkgver/$pkgbase" @@ -123,7 +123,7 @@ package_mythplugins-mythweb() { pkgdesc="Web interface for the MythTV scheduler" - depends=('mythtv') + depends=('mythtv' 'perl-cgi') optdepends=('lighttpd' 'php-apache') install='mythplugins-mythweb.install'
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Saturday, July 15, 2017 @ 22:07:31 Author: idevolder Revision: 245264 upgpkg: mythplugins 1:0.28.1-4 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-07-15 22:06:40 UTC (rev 245263) +++ PKGBUILD2017-07-15 22:07:31 UTC (rev 245264) @@ -15,13 +15,13 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.28.1 -pkgrel=3 +pkgrel=4 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') makedepends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif' - 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv' + 'libvorbis' 'mesa' 'mesa-libgl' 'mythtv' 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python2-pillow' @@ -29,7 +29,7 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('3d12039343e589ae9d03ed4bd8cce9db36b1f1e98c1885fdd783bd80729c0164' +sha256sums=('f59688bbb69ef8830cfe76c826ec89027ed0a9bbb75cc97935fc664225b89dee' 'bbd82992230d3571eba55a26a91cc3f2dcddfa631d1822ce58e1bf99f2537244' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, March 26, 2017 @ 17:09:12 Author: alucryd Revision: 219145 upgpkg: mythplugins 1:0.28.1-3 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-03-26 16:56:23 UTC (rev 219144) +++ PKGBUILD2017-03-26 17:09:12 UTC (rev 219145) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.28.1 -pkgrel=2 +pkgrel=3 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Friday, March 3, 2017 @ 19:28:59 Author: arojas Revision: 214676 openssl 1.1 rebuild Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-03-03 19:18:53 UTC (rev 214675) +++ PKGBUILD2017-03-03 19:28:59 UTC (rev 214676) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.28.1 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Wednesday, March 1, 2017 @ 22:48:49 Author: arojas Revision: 214389 Update to 0.28.1 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-03-01 21:10:58 UTC (rev 214388) +++ PKGBUILD2017-03-01 22:48:49 UTC (rev 214389) @@ -1,5 +1,6 @@ # $Id$ -# Maintainer: Jonathan Conder +# Maintainer: +# Contributor: Jonathan Conder # Contributor: Giovanni Scafora pkgbase=mythplugins @@ -13,8 +14,8 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.28 -pkgrel=2 +pkgver=0.28.1 +pkgrel=1 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,8 +29,8 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340' -'92253f4eb11331da64cff50926fbced3477d244c201675c177be4f5838cd4ed7' +sha256sums=('3d12039343e589ae9d03ed4bd8cce9db36b1f1e98c1885fdd783bd80729c0164' +'bbd82992230d3571eba55a26a91cc3f2dcddfa631d1822ce58e1bf99f2537244' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, January 22, 2017 @ 21:10:58 Author: arojas Revision: 208443 cdrkit -> cdrtools Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-22 21:02:43 UTC (rev 208442) +++ PKGBUILD2017-01-22 21:10:58 UTC (rev 208443) @@ -19,7 +19,7 @@ arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') -makedepends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif' +makedepends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif' 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv' 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' @@ -55,7 +55,7 @@ package_mythplugins-mytharchive() { pkgdesc="Create DVDs or archive recorded shows in MythTV" - depends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv' + depends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv' 'python2-pillow') cd "$srcdir/mythtv-$pkgver/$pkgbase/mytharchive"
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, July 24, 2016 @ 09:19:16 Author: arojas Revision: 183902 libvpx 1.6.0 rebuild Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-07-24 07:39:27 UTC (rev 183901) +++ PKGBUILD2016-07-24 09:19:16 UTC (rev 183902) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.28 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,7 +28,7 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('13d846c8163dcfe091ea3033d176cf5459bdd0ab671f8cf2539a17bd4479a3b2' +sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340' '92253f4eb11331da64cff50926fbced3477d244c201675c177be4f5838cd4ed7' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Tuesday, April 12, 2016 @ 08:36:12 Author: arojas Revision: 170576 Update to 0.28 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-04-12 06:34:47 UTC (rev 170575) +++ PKGBUILD2016-04-12 06:36:12 UTC (rev 170576) @@ -13,7 +13,7 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.27.6 +pkgver=0.28 pkgrel=1 epoch=1 arch=('i686' 'x86_64') @@ -28,8 +28,8 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('407efddad33d515830180b5c42fd63eda87b49fa2d2a44fb9e529a00da79d5a2' -'924028835b3fc5c7d760f3c539abdf47d4c852043520cb4b8fd921cb9513d935' +sha256sums=('13d846c8163dcfe091ea3033d176cf5459bdd0ab671f8cf2539a17bd4479a3b2' +'92253f4eb11331da64cff50926fbced3477d244c201675c177be4f5838cd4ed7' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() { @@ -49,7 +49,7 @@ ./configure --prefix=/usr \ --enable-all \ --python=python2 - qmake-qt4 mythplugins.pro + qmake-qt5 mythplugins.pro make -s }
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Wednesday, February 3, 2016 @ 10:02:51 Author: arojas Revision: 160056 Update to 0.27.6 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-02-03 08:50:01 UTC (rev 160055) +++ PKGBUILD2016-02-03 09:02:51 UTC (rev 160056) @@ -13,8 +13,8 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.27.5 -pkgrel=2 +pkgver=0.27.6 +pkgrel=1 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,8 +28,8 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('7e625f94332effeadfba8e7ae7c98d44a83bfc25b7c59e39adce67dc2f4e1e1b' -'5dc3fd9e60f59dea4264fb064b40d73f2534c99d0399da6223a42d2f563e9d13' +sha256sums=('407efddad33d515830180b5c42fd63eda87b49fa2d2a44fb9e529a00da79d5a2' +'924028835b3fc5c7d760f3c539abdf47d4c852043520cb4b8fd921cb9513d935' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Monday, December 7, 2015 @ 18:32:37 Author: foutrelis Revision: 150085 C++11 ABI rebuild Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-12-07 17:29:35 UTC (rev 150084) +++ PKGBUILD2015-12-07 17:32:37 UTC (rev 150085) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27.5 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Monday, December 7, 2015 @ 18:27:16 Author: foutrelis Revision: 150083 Update source checksum Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-12-07 17:17:58 UTC (rev 150082) +++ PKGBUILD2015-12-07 17:27:16 UTC (rev 150083) @@ -28,7 +28,7 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('a3c6141cd0729890622268cc8b2bdd799e9c7ac9135360766d515e00672a356a' +sha256sums=('7e625f94332effeadfba8e7ae7c98d44a83bfc25b7c59e39adce67dc2f4e1e1b' '5dc3fd9e60f59dea4264fb064b40d73f2534c99d0399da6223a42d2f563e9d13' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Wednesday, June 17, 2015 @ 08:08:06 Author: fyan Revision: 135502 upgpkg: mythplugins 1:0.27.5-1 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-17 03:29:25 UTC (rev 135501) +++ PKGBUILD2015-06-17 06:08:06 UTC (rev 135502) @@ -13,8 +13,8 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.27.4 -pkgrel=3 +pkgver=0.27.5 +pkgrel=1 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,8 +28,8 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('1f734ffc776e4938aa913e49ce94279f2c2d520c62af278f1d04fe399723365b' -'aa4c3feefef65a7a06bf831f3058846816de9b6fede9ac2f8d1f39e7573a0fcb' +sha256sums=('a3c6141cd0729890622268cc8b2bdd799e9c7ac9135360766d515e00672a356a' +'5dc3fd9e60f59dea4264fb064b40d73f2534c99d0399da6223a42d2f563e9d13' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Tuesday, November 11, 2014 @ 15:03:06 Author: bpiotrowski Revision: 122360 upgpkg: mythplugins 1:0.27.4-3 rebuild against libcdio 0.93 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2014-11-11 13:45:13 UTC (rev 122359) +++ PKGBUILD2014-11-11 14:03:06 UTC (rev 122360) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27.4 -pkgrel=2 +pkgrel=3 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Monday, November 10, 2014 @ 19:20:09 Author: fyan Revision: 122309 upgpkg: mythplugins 1:0.27.4-2 upstream updated tarball without bumping a version Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-11-10 17:00:19 UTC (rev 122308) +++ PKGBUILD2014-11-10 18:20:09 UTC (rev 122309) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27.4 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,7 +28,7 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('0e9ee768e7e6da8f964742b5bfa3393d84d99d2558d062815b0b212d7930d69c' +sha256sums=('1f734ffc776e4938aa913e49ce94279f2c2d520c62af278f1d04fe399723365b' 'aa4c3feefef65a7a06bf831f3058846816de9b6fede9ac2f8d1f39e7573a0fcb' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Thursday, October 16, 2014 @ 10:10:31 Author: fyan Revision: 120762 upgpkg: mythplugins 1:0.27.4-1 upstream new release Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-10-16 06:09:35 UTC (rev 120761) +++ PKGBUILD2014-10-16 08:10:31 UTC (rev 120762) @@ -13,7 +13,7 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.27.3 +pkgver=0.27.4 pkgrel=1 epoch=1 arch=('i686' 'x86_64') @@ -28,8 +28,8 @@ source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('8eaaf8c6e42ca6eb81f180467de90d597dbeabb1bb14b7085da353d2980db8f4' -'deb00369d89d86fe11c05c275f76eb11d92c6e66279c9ac264bb69a7145f03cd' +sha256sums=('0e9ee768e7e6da8f964742b5bfa3393d84d99d2558d062815b0b212d7930d69c' +'aa4c3feefef65a7a06bf831f3058846816de9b6fede9ac2f8d1f39e7573a0fcb' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Thursday, July 24, 2014 @ 13:04:51 Author: fyan Revision: 116301 upgpkg: mythplugins 1:0.27.3-1 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-07-24 10:23:06 UTC (rev 116300) +++ PKGBUILD2014-07-24 11:04:51 UTC (rev 116301) @@ -13,8 +13,8 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.27 -pkgrel=5 +pkgver=0.27.3 +pkgrel=1 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -24,12 +24,12 @@ 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python2-pillow' - 'python2-pycurl' 'zlib') + 'python2-pycurl' 'zlib' 'gdb') source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; - 'cdparanoia.patch') -sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0' -'7e54d6b388e2e8f3e50515c3fe46113f4217e3989242459a0fa73c928dcca494' +'cdparanoia.patch') +sha256sums=('8eaaf8c6e42ca6eb81f180467de90d597dbeabb1bb14b7085da353d2980db8f4' +'deb00369d89d86fe11c05c275f76eb11d92c6e66279c9ac264bb69a7145f03cd' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Tuesday, January 14, 2014 @ 17:12:26 Author: bpiotrowski Revision: 104021 upgpkg: mythplugins 1:0.27-5 rebuild against libcdio 0.92 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2014-01-14 16:12:07 UTC (rev 104020) +++ PKGBUILD2014-01-14 16:12:26 UTC (rev 104021) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27 -pkgrel=4 +pkgrel=5 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Tuesday, December 17, 2013 @ 21:17:05 Author: bgyorgy Revision: 102725 upgpkg: mythplugins 1:0.27-4 Use github as source, rebuild for mythtv (FS#37502) Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 42 +- 1 file changed, 21 insertions(+), 21 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-12-17 20:15:22 UTC (rev 102724) +++ PKGBUILD2013-12-17 20:17:05 UTC (rev 102725) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27 -pkgrel=3 +pkgrel=4 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -23,28 +23,28 @@ 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv' 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' - 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python-imaging' + 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python2-pillow' 'python2-pycurl' 'zlib') -source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver"; - "mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver"; +source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"; + "mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"; 'cdparanoia.patch') -sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c' -'c6574a9d3029e00ef9e2fb4eff33be60804d06c71d517ad8cae27bed9b5275d3' - '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') +sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0' +'7e54d6b388e2e8f3e50515c3fe46113f4217e3989242459a0fa73c928dcca494' +'004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() { - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase" + cd "$srcdir/mythtv-$pkgver/$pkgbase" find . -name '*.py' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@' patch -Np1 -i "$srcdir/cdparanoia.patch" - cd "$srcdir/mythweb-fixes-$pkgver" + cd "$srcdir/mythweb-$pkgver" sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php' } build() { - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase" + cd "$srcdir/mythtv-$pkgver/$pkgbase" ./configure --prefix=/usr \ --enable-all \ @@ -56,9 +56,9 @@ package_mythplugins-mytharchive() { pkgdesc="Create DVDs or archive recorded shows in MythTV" depends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv' - 'python-imaging') + 'python2-pillow') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mytharchive" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mytharchive" make INSTALL_ROOT="$pkgdir" install } @@ -66,7 +66,7 @@ pkgdesc="Mini web browser for MythTV" depends=('mythtv') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythbrowser" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythbrowser" make INSTALL_ROOT="$pkgdir" install } @@ -74,7 +74,7 @@ pkgdesc="Image gallery plugin for MythTV" depends=('libexif' 'mythtv') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythgallery" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgallery" make INSTALL_ROOT="$pkgdir" install } @@ -82,7 +82,7 @@ pkgdesc="Game emulator plugin for MythTV" depends=('mythtv') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythgame" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgame" make INSTALL_ROOT="$pkgdir" install } @@ -90,7 +90,7 @@ pkgdesc="Music playing plugin for MythTV" depends=('mythtv' 'libcdio-paranoia') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythmusic" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythmusic" make INSTALL_ROOT="$pkgdir" install } @@ -98,7 +98,7 @@ pkgdesc="MythNetvision plugin for MythTV" depends=('mythtv' 'python2-oauth') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythnetvision" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnetvision" make INSTALL_ROOT="$pkgdir" install } @@ -106,7 +106,7 @@ pkgdesc="News checking plugin for MythTV" depends=('mythtv') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythnews" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnews" make INSTALL_ROOT="$pkgdir" install } @@ -116,7 +116,7 @@ 'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'perl-image-size' 'perl-datetime-format-iso8601') - cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythweather" + cd "$srcdir/mythtv-$pkgver/$pkgbase/mythweather" make INSTALL_ROOT="$pkgdir" install } @@ -128,7 +128,7 @@ install='mythplugins-mythweb.install' mkdir -p "$pkgdir/var/lib/mythtv/mythweb"/{image_cache,php_sessions} - cp -R "$srcdir/mythweb-fixes-$pkgver"/* "$pkgdir/var/lib/mythtv/mythweb" + cp -R "$srcdir/mythweb-$pkgver"/* "$pkgdir/var/lib/mythtv/m
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, November 3, 2013 @ 21:43:51 Author: jconder Revision: 100418 upgpkg: mythplugins 1:0.27-3 rebuild against mythtv Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-11-03 20:34:30 UTC (rev 100417) +++ PKGBUILD2013-11-03 20:43:51 UTC (rev 100418) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27 -pkgrel=2 +pkgrel=3 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org";
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, November 3, 2013 @ 21:34:30 Author: jconder Revision: 100417 upgpkg: mythplugins 1:0.27-2 rebuild against mythtv Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-11-03 20:29:25 UTC (rev 100416) +++ PKGBUILD2013-11-03 20:34:30 UTC (rev 100417) @@ -28,7 +28,7 @@ source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver"; "mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver"; 'cdparanoia.patch') -sha256sums=('49789de705be73275325b1a4984b727cf8284fdc4ae6b041ad152857c830dc46' +sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c' 'c6574a9d3029e00ef9e2fb4eff33be60804d06c71d517ad8cae27bed9b5275d3' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, October 27, 2013 @ 18:20:54 Author: jconder Revision: 99364 upgpkg: mythplugins 1:0.27-2 rebuild to match mythtv version Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-10-27 16:42:08 UTC (rev 99363) +++ PKGBUILD2013-10-27 17:20:54 UTC (rev 99364) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.27 -pkgrel=1 +pkgrel=2 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -28,8 +28,8 @@ source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver"; "mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver"; 'cdparanoia.patch') -sha256sums=('670b378e379df05a4f2ac28cc3cb2578587b42cb03710e0b230b75d692f8e2b8' -'fe135281c4828a96762ea22a8a4cf622988b12e7f2189dce9273f1ce7bb367d3' +sha256sums=('49789de705be73275325b1a4984b727cf8284fdc4ae6b041ad152857c830dc46' +'c6574a9d3029e00ef9e2fb4eff33be60804d06c71d517ad8cae27bed9b5275d3' '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') prepare() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD mtd.rc php55.patch)
Date: Thursday, September 19, 2013 @ 16:37:16 Author: jconder Revision: 97426 upgpkg: mythplugins 1:0.27-1 update to 0.27 Modified: mythplugins/trunk/PKGBUILD Deleted: mythplugins/trunk/mtd.rc mythplugins/trunk/php55.patch -+ PKGBUILD| 62 +- mtd.rc | 36 - php55.patch | 22 3 files changed, 32 insertions(+), 88 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-09-19 13:00:39 UTC (rev 97425) +++ PKGBUILD2013-09-19 14:37:16 UTC (rev 97426) @@ -13,7 +13,7 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.26.1 +pkgver=0.27 pkgrel=1 epoch=1 arch=('i686' 'x86_64') @@ -21,29 +21,31 @@ license=('GPL') makedepends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif' 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv' -'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' -'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' -'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python-imaging' -'python2-pycurl' 'taglib' 'zlib') -source=("ftp://ftp.osuosl.org/pub/mythtv/$pkgbase-$pkgver.tar.bz2"; -'cdparanoia.patch' -'php55.patch' -'mtd.rc') -md5sums=('d896d9f9313ba5dd95e2e977bf9c0f8f' - '5de8dd79d0b8a2b006f3c3258938b6b7' - 'a6df720ef22fe6bef8c650b1bd5948cb' - '476c12ba074794ad7f4ae092bdf949d6') + 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' + 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' + 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python-imaging' + 'python2-pycurl' 'zlib') +source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver"; + "mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver"; + 'cdparanoia.patch') +sha256sums=('670b378e379df05a4f2ac28cc3cb2578587b42cb03710e0b230b75d692f8e2b8' +'fe135281c4828a96762ea22a8a4cf622988b12e7f2189dce9273f1ce7bb367d3' + '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c') -build() { - cd "$srcdir/$pkgbase-$pkgver" +prepare() { + cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase" + find . -name '*.py' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@' + patch -Np1 -i "$srcdir/cdparanoia.patch" - sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb/mythweb.php' - sed -re 's@cstdio@cstdio>\n#include /var/run/mtd.pid - add_daemon mythtranscode - stat_done -fi -;; - stop) -stat_busy "Stopping Myth Transcoding Daemon" -[ ! -z "$PID" ] && kill $PID &>/dev/null -if [ $? -gt 0 ]; then - stat_fail -else - rm_daemon mtd - stat_done -fi -;; - restart) -$0 stop -$0 start -;; - *) -echo "usage: $0 {start|stop|restart}" -esac -exit 0 Deleted: php55.patch === --- php55.patch 2013-09-19 13:00:39 UTC (rev 97425) +++ php55.patch 2013-09-19 14:37:16 UTC (rev 97426) @@ -1,22 +0,0 @@ a/mythweb/includes/errors.php -+++ b/mythweb/includes/errors.php -@@ -103,6 +103,9 @@ - /**/ - function error_handler($errno, $errstr, $errfile, $errline, $vars) { - global $db; -+// Leave early if we haven't requested reports from this kind of error -+if (!($errno & error_reporting())) -+return; - if (class_exists('Translate')) - $errstr = Translate::find()->string($errstr); - // Try to auto-repair damaged SQL tables -@@ -113,9 +116,6 @@ - add_error('Regular Expression Error: '.$match[1]); - return; - } --// Leave early if we haven't requested reports from this kind of error --if (!($errno & error_reporting())) --return; - // Fatal errors should report considerably more detail - if (in_array($errno, array(E_USER_ERROR, E_ERROR))) { - // What type of error?
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Tuesday, August 20, 2013 @ 13:47:25 Author: jconder Revision: 96152 upgpkg: mythplugins 1:0.26.1-1 update to 0.26.1 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-08-20 11:37:41 UTC (rev 96151) +++ PKGBUILD2013-08-20 11:47:25 UTC (rev 96152) @@ -13,8 +13,8 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=0.26.0 -pkgrel=3 +pkgver=0.26.1 +pkgrel=1 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -29,7 +29,7 @@ 'cdparanoia.patch' 'php55.patch' 'mtd.rc') -md5sums=('15bd7b2f4173488966f3d761e0eacffa' +md5sums=('d896d9f9313ba5dd95e2e977bf9c0f8f' '5de8dd79d0b8a2b006f3c3258938b6b7' 'a6df720ef22fe6bef8c650b1bd5948cb' '476c12ba074794ad7f4ae092bdf949d6')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD php55.patch)
Date: Monday, August 12, 2013 @ 07:36:30 Author: jconder Revision: 95421 upgpkg: mythplugins 1:0.26.0-3 fix mythweb for PHP 5.5 Added: mythplugins/trunk/php55.patch Modified: mythplugins/trunk/PKGBUILD -+ PKGBUILD|7 +-- php55.patch | 22 ++ 2 files changed, 27 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-08-12 05:12:07 UTC (rev 95420) +++ PKGBUILD2013-08-12 05:36:30 UTC (rev 95421) @@ -14,7 +14,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.26.0 -pkgrel=2 +pkgrel=3 epoch=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -27,9 +27,11 @@ 'python2-pycurl' 'taglib' 'zlib') source=("ftp://ftp.osuosl.org/pub/mythtv/$pkgbase-$pkgver.tar.bz2"; 'cdparanoia.patch' +'php55.patch' 'mtd.rc') md5sums=('15bd7b2f4173488966f3d761e0eacffa' '5de8dd79d0b8a2b006f3c3258938b6b7' + 'a6df720ef22fe6bef8c650b1bd5948cb' '476c12ba074794ad7f4ae092bdf949d6') build() { @@ -40,11 +42,12 @@ sed -re 's@cstdio@cstdio>\n#include string($errstr); + // Try to auto-repair damaged SQL tables +@@ -113,9 +116,6 @@ + add_error('Regular Expression Error: '.$match[1]); + return; + } +-// Leave early if we haven't requested reports from this kind of error +-if (!($errno & error_reporting())) +-return; + // Fatal errors should report considerably more detail + if (in_array($errno, array(E_USER_ERROR, E_ERROR))) { + // What type of error?
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, February 24, 2013 @ 04:59:40 Author: jconder Revision: 84750 fix build for mesa 9.1 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-02-24 03:57:26 UTC (rev 84749) +++ PKGBUILD2013-02-24 03:59:40 UTC (rev 84750) @@ -20,7 +20,7 @@ url="http://www.mythtv.org"; license=('GPL') makedepends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif' - 'libvorbis' 'mesa' 'mplayer' 'mythtv' + 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv' 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 'python-imaging'
[arch-commits] Commit in mythplugins/trunk (PKGBUILD qt-4.7-buildfixes.diff)
Date: Sunday, September 26, 2010 @ 02:04:21 Author: remy Revision: 91281 upgpkg: mythplugins 25574-2 Rebuild for python2 Added: mythplugins/trunk/qt-4.7-buildfixes.diff Modified: mythplugins/trunk/PKGBUILD + PKGBUILD | 37 - qt-4.7-buildfixes.diff | 26 ++ 2 files changed, 46 insertions(+), 17 deletions(-) Modified: PKGBUILD === --- PKGBUILD2010-09-26 06:01:47 UTC (rev 91280) +++ PKGBUILD2010-09-26 06:04:21 UTC (rev 91281) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=25574 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') @@ -23,17 +23,20 @@ 'python-imaging' 'libcdaudio' 'taglib' 'perl-xml-simple' 'libvisual' 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601') source=(ftp://ftp.archlinux.org/other/mythtv/${pkgbase}-${pkgver}.tar.xz -mtd) +mtd qt-4.7-buildfixes.diff) md5sums=('933f0c8ac21652af1d83d502c0ca6516' - '476c12ba074794ad7f4ae092bdf949d6') + '476c12ba074794ad7f4ae092bdf949d6' +'65fad68e51c52bf5176a2ade35e71bc3') build() { cd "${srcdir}/${pkgbase}" + patch -Np4 -i "${srcdir}/qt-4.7-buildfixes.diff" + find . -name '*.py' -type f | xargs sed -i 's...@^#!.*python$@#!/usr/bin/python2@' ./configure --prefix=/usr \ --enable-all - qmake mythplugins.pro || return 1 - make || return 1 + qmake mythplugins.pro + make } package_mythplugins-mytharchive() { @@ -41,7 +44,7 @@ depends=("mythtv>=${pkgver}" 'libxmu' 'pil' 'dvdauthor') replaces=('mytharchive') cd "${srcdir}/${pkgbase}/mytharchive" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythbrowser() { @@ -49,7 +52,7 @@ depends=("mythtv>=${pkgver}") replaces=('mythbrowser') cd "${srcdir}/${pkgbase}/mythbrowser" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythgallery() { @@ -57,7 +60,7 @@ depends=("mythtv>=${pkgver}" 'libexif') replaces=('mythgallery') cd "${srcdir}/${pkgbase}/mythgallery" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythgame() { @@ -65,7 +68,7 @@ depends=("mythtv>=${pkgver}" 'zlib') replaces=('mythgame') cd "${srcdir}/${pkgbase}/mythgame" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythmovies() { @@ -73,7 +76,7 @@ depends=("mythtv>=${pkgver}") replaces=('mythmovies') cd "${srcdir}/${pkgbase}/mythmovies" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythmusic() { @@ -81,14 +84,14 @@ depends=("mythtv>=${pkgver}" 'flac' 'libcdaudio' 'cdparanoia' 'taglib' 'libvisual') replaces=('mythmusic') cd "${srcdir}/${pkgbase}/mythmusic" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythnetvision() { pkgdesc="MythNetvision plugin for MythTV" depends=("mythtv>=${pkgver}") cd "${srcdir}/${pkgbase}/mythnetvision" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythnews() { @@ -96,7 +99,7 @@ depends=("mythtv>=${pkgver}") replaces=('mythnews') cd "${srcdir}/${pkgbase}/mythnews" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythvideo() { @@ -104,8 +107,8 @@ depends=("mythtv>=${pkgver}" 'mplayer' 'perl-xml-simple') replaces=('mythvideo') cd "${srcdir}/${pkgbase}/mythvideo" - make INSTALL_ROOT="${pkgdir}" install || return 1 - install -D -m755 ${srcdir}/mtd "${pkgdir}/etc/rc.d/mtd" || return 1 + make INSTALL_ROOT="${pkgdir}" install + install -D -m755 ${srcdir}/mtd "${pkgdir}/etc/rc.d/mtd" } package_mythplugins-mythweather() { @@ -113,7 +116,7 @@ depends=("mythtv>=${pkgver}" 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601') replaces=('mythweather') cd "${srcdir}/${pkgbase}/mythweather" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } package_mythplugins-mythweb() { @@ -134,5 +137,5 @@ replaces=('mythzoneminder') install=mythplugins-mythzoneminder.install cd "${srcdir}/${pkgbase}/mythzoneminder" - make INSTALL_ROOT="${pkgdir}" install || return 1 + make INSTALL_ROOT="${pkgdir}" install } Added: qt-4.7-buildfixes.diff === --- qt-4.7-buildfixes.diff (rev 0) +++ qt-4.7-buildfix
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Friday, August 6, 2010 @ 17:46:06 Author: ibiru Revision: 86933 upgpkg: mythplugins 25574-1 bump to latest revision Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2010-08-06 21:45:20 UTC (rev 86932) +++ PKGBUILD2010-08-06 21:46:06 UTC (rev 86933) @@ -14,7 +14,7 @@ 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=25260 +pkgver=25574 pkgrel=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; @@ -24,7 +24,7 @@ 'libvisual' 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601') source=(ftp://ftp.archlinux.org/other/mythtv/${pkgbase}-${pkgver}.tar.xz mtd) -md5sums=('d64cf6e8d358cf24403ee68dca6cc994' +md5sums=('933f0c8ac21652af1d83d502c0ca6516' '476c12ba074794ad7f4ae092bdf949d6') build() {
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Sunday, July 4, 2010 @ 10:44:22 Author: ibiru Revision: 84794 upgpkg: mythplugins 25260-1 update to latest revision, added mythnetvision, mythflix not available anymore Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 31 +++ 1 file changed, 15 insertions(+), 16 deletions(-) Modified: PKGBUILD === --- PKGBUILD2010-07-04 14:27:12 UTC (rev 84793) +++ PKGBUILD2010-07-04 14:44:22 UTC (rev 84794) @@ -4,27 +4,27 @@ pkgbase=mythplugins pkgname=('mythplugins-mytharchive' 'mythplugins-mythbrowser' - 'mythplugins-mythflix' 'mythplugins-mythgallery' 'mythplugins-mythgame' 'mythplugins-mythmovies' 'mythplugins-mythmusic' + 'mythplugins-mythnetvision' 'mythplugins-mythnews' 'mythplugins-mythvideo' 'mythplugins-mythweather' 'mythplugins-mythweb' 'mythplugins-mythzoneminder') -pkgver=23562 +pkgver=25260 pkgrel=1 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') -makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' - 'python-imaging' 'libcdaudio' 'taglib' 'perl-xml-simple' - 'libvisual') -source=(ftp://ftp.archlinux.org/other/mythtv/mythtv-plugins-${pkgver}.tar.gz +makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' + 'python-imaging' 'libcdaudio' 'taglib' 'perl-xml-simple' + 'libvisual' 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601') +source=(ftp://ftp.archlinux.org/other/mythtv/${pkgbase}-${pkgver}.tar.xz mtd) -md5sums=('e140ca4da76394d9dd1fb9abb1769c57' +md5sums=('d64cf6e8d358cf24403ee68dca6cc994' '476c12ba074794ad7f4ae092bdf949d6') build() { @@ -52,14 +52,6 @@ make INSTALL_ROOT="${pkgdir}" install || return 1 } -package_mythplugins-mythflix() { - pkgdesc="Netflix access plugin for MythTV" - depends=("mythtv>=${pkgver}") - replaces=('mythflix') - cd "${srcdir}/${pkgbase}/mythflix" - make INSTALL_ROOT="${pkgdir}" install || return 1 -} - package_mythplugins-mythgallery() { pkgdesc="Image gallery plugin for MythTV" depends=("mythtv>=${pkgver}" 'libexif') @@ -92,6 +84,13 @@ make INSTALL_ROOT="${pkgdir}" install || return 1 } +package_mythplugins-mythnetvision() { + pkgdesc="MythNetvision plugin for MythTV" + depends=("mythtv>=${pkgver}") + cd "${srcdir}/${pkgbase}/mythnetvision" + make INSTALL_ROOT="${pkgdir}" install || return 1 +} + package_mythplugins-mythnews() { pkgdesc="News checking plugin for MythTV" depends=("mythtv>=${pkgver}") @@ -111,7 +110,7 @@ package_mythplugins-mythweather() { pkgdesc="Weather checking plugin for MythTV" - depends=("mythtv>=${pkgver}") + depends=("mythtv>=${pkgver}" 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601') replaces=('mythweather') cd "${srcdir}/${pkgbase}/mythweather" make INSTALL_ROOT="${pkgdir}" install || return 1
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Wednesday, February 10, 2010 @ 19:17:31 Author: giovanni Revision: 68145 upgpkg: mythplugins 0.22-4 Fixed FS18272 Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2010-02-11 00:08:37 UTC (rev 68144) +++ PKGBUILD2010-02-11 00:17:31 UTC (rev 68145) @@ -15,7 +15,7 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.22 -pkgrel=3 +pkgrel=4 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL')
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Monday, February 8, 2010 @ 11:59:30 Author: giovanni Revision: 67582 upgpkg: mythplugins 0.22-3 rebuild against testing qt Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2010-02-08 16:59:06 UTC (rev 67581) +++ PKGBUILD2010-02-08 16:59:30 UTC (rev 67582) @@ -15,13 +15,14 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.22 -pkgrel=2 +pkgrel=3 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') groups=('mythplugins') -makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' 'pil' - 'libcdaudio' 'taglib' 'php-apache' 'perl-xml-simple') +makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' + 'python-imaging' 'libcdaudio' 'taglib' 'php-apache' + 'perl-xml-simple') source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgbase}-${pkgver}.tar.bz2 mtd mythweb.conf.apache)
[arch-commits] Commit in mythplugins/trunk (PKGBUILD)
Date: Saturday, February 6, 2010 @ 18:24:24 Author: giovanni Revision: 67428 upgpkg: mythplugins 0.22-2 Fixed deps Modified: mythplugins/trunk/PKGBUILD --+ PKGBUILD | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) Modified: PKGBUILD === --- PKGBUILD2010-02-06 22:20:51 UTC (rev 67427) +++ PKGBUILD2010-02-06 23:24:24 UTC (rev 67428) @@ -15,14 +15,13 @@ 'mythplugins-mythweb' 'mythplugins-mythzoneminder') pkgver=0.22 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://www.mythtv.org"; license=('GPL') groups=('mythplugins') -makedepends=("mythtv>=${pkgver}" 'mplayer' 'mysql-python' 'fftw' 'dvdauthor' - 'libexif' 'pil' 'libcdaudio' 'taglib' 'php-apache' 'perl-libwww' - 'perl-xml-simple' 'perl-dbd-mysql') +makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' 'pil' + 'libcdaudio' 'taglib' 'php-apache' 'perl-xml-simple') source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgbase}-${pkgver}.tar.bz2 mtd mythweb.conf.apache) @@ -41,7 +40,7 @@ package_mythplugins-mytharchive() { pkgdesc="MythTV plugin that lets you create DVDs from or archive your recorded shows" - depends=("mythtv>=${pkgver}" 'libxmu' 'mysql-python' 'pil' 'dvdauthor') + depends=("mythtv>=${pkgver}" 'libxmu' 'pil' 'dvdauthor') replaces=('mytharchive') cd "${srcdir}/${pkgbase}-${pkgver}/mytharchive" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -49,7 +48,7 @@ package_mythplugins-mythbrowser() { pkgdesc="Mini web browser for MythTV" - depends=("mythtv>=${pkgver}" 'wget') + depends=("mythtv>=${pkgver}") replaces=('mythbrowser') cd "${srcdir}/${pkgbase}-${pkgver}/mythbrowser" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -65,7 +64,7 @@ package_mythplugins-mythgallery() { pkgdesc="Image gallery plugin for MythTV" - depends=("mythtv>=${pkgver}" 'libexif' 'libtiff') + depends=("mythtv>=${pkgver}" 'libexif') replaces=('mythgallery') cd "${srcdir}/${pkgbase}-${pkgver}/mythgallery" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -89,8 +88,7 @@ package_mythplugins-mythmusic() { pkgdesc="Music playing plugin for MythTV" - depends=("mythtv>=${pkgver}" 'cdparanoia' 'faad2' 'fftw' 'flac' 'lame' - 'libcdaudio' 'libid3tag' 'libmad' 'libvorbis' 'sdl' 'taglib') + depends=("mythtv>=${pkgver}" 'fftw' 'flac' 'libcdaudio' 'libmad' 'taglib') replaces=('mythmusic') cd "${srcdir}/${pkgbase}-${pkgver}/mythmusic" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -106,7 +104,7 @@ package_mythplugins-mythvideo() { pkgdesc="Video playback and browsing plugin for MythTV" - depends=("mythtv>=${pkgver}" 'mplayer' 'perl-libwww' 'perl-xml-simple') + depends=("mythtv>=${pkgver}" 'mplayer' 'perl-xml-simple') replaces=('mythvideo') cd "${srcdir}/${pkgbase}-${pkgver}/mythvideo" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -115,7 +113,7 @@ package_mythplugins-mythweather() { pkgdesc="Weather checking plugin for MythTV" - depends=("mythtv>=${pkgver}" 'wget') + depends=("mythtv>=${pkgver}") replaces=('mythweather') cd "${srcdir}/${pkgbase}-${pkgver}/mythweather" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -123,12 +121,11 @@ package_mythplugins-mythweb() { pkgdesc="Web interface for MythTV's backend" - depends=("mythtv>=${pkgver}" 'php-apache' 'perl-dbd-mysql') + depends=("mythtv>=${pkgver}" 'php-apache') replaces=('mythweb') install=mythplugins-mythweb.install mkdir -p ${pkgdir}/srv/http/mythweb/{image_cache,php_sessions} cp -r ${srcdir}/mythplugins-$pkgver/mythweb/* ${pkgdir}/srv/http/mythweb -# cp ${srcdir}/mythplugins-$pkgver/mythweb/data/.htaccess ${pkgdir}/srv/http/mythweb rm ${pkgdir}/srv/http/mythweb/README install -m644 ${srcdir}/mythweb.conf.apache ${pkgdir}/srv/http/mythweb/mythweb.conf.apache chown -R http:http ${pkgdir}/srv/http/mythweb