[arch-commits] Commit in mythtv/trunk (PKGBUILD qt510.patch)

2017-12-30 Thread Maxime Gauduin via arch-commits
Date: Saturday, December 30, 2017 @ 21:51:59
  Author: alucryd
Revision: 277487

x264 152 rebuild: mythtv 1:29.0-5

Added:
  mythtv/trunk/qt510.patch
Modified:
  mythtv/trunk/PKGBUILD

-+
 PKGBUILD|   11 -
 qt510.patch |  601 ++
 2 files changed, 608 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 21:17:23 UTC (rev 277486)
+++ PKGBUILD2017-12-30 21:51:59 UTC (rev 277487)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=29.0
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('x86_64')
@@ -27,14 +27,17 @@
 replaces=('myththemes' 'mythplugins-mythvideo')
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
-'mythbackend.service' '99-mythbackend.rules')
-sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae'
+'mythbackend.service' '99-mythbackend.rules' 'qt510.patch')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
 
'41533da5d8ef694d8c12f60d956673d9e49fb6781ae58d6bfd0bf31e4f380fddb508f9cad3b91264a3ad55853c24c6932bdf83bb5b711c34c0836d71b46be02c'
-
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8')
+
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8'
+
'5070b4e8ad5ebd4208a3e8393ebabb55118615c2966cb1ba585e94084c4ad643dc5644bfca9267eb81e6c27be16b088e541aa8118a43cbebaf9d28c52e15a35c')
 
 prepare() {
   cd $pkgname-$pkgver/$pkgname
 
+  patch -Np2 -i ../../qt510.patch
+
   find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
 }
 

Added: qt510.patch
===
--- qt510.patch (rev 0)
+++ qt510.patch 2017-12-30 21:51:59 UTC (rev 277487)
@@ -0,0 +1,601 @@
+diff --git a/mythtv/configure b/mythtv/configure
+index 8b7ba2ed6f..32fbe2bf60 100755
+--- a/mythtv/configure
 b/mythtv/configure
+@@ -6099,21 +6099,26 @@ enable_weak_pic() {
+ 
+ enabled pic && enable_weak_pic
+ 
+-is_qmake5(){
+-$1 --version 2>&1 | egrep -q -e "Qt version 5\.[2-9]\.[0-9]"
++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=`which qmake-qt5 2>&1`" /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 
$qmake 2>&1`"
++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=`which $qmake 2>&1`" "`which qmake-qt5 2>&1`" 
/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"
++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 test -e $i ; then
+-if is_qmake5 $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
+ found_qmake=$i
+ check_cxxflags -DQT_DISABLE_DEPRECATED_BEFORE=0x05
+ break;
+@@ -6124,7 +6129,7 @@ for i in $CHECK_QMAKE; do
+ fi
+ done
+ if [ x"$found_qmake" = "x" ]; then
+-die "qmake for Qt5.2 or newer not found.\nPlease specify the correct 
qmake with --qmake="
++die "qmake for Qt version $qt_minimum_version or newer not found.  Please 
specify the correct qmake with --qmake="
+ else
+ qmake=$found_qmake
+ fi
+diff --git a/mythtv/libs/libmyth/libmyth.pro b/mythtv/libs/libmyth/libmyth.pro
+index 24ec735b18..1fd5cc01c0 100644
+--- a/mythtv/libs/libmyth/libmyth.pro
 

[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-11-01 Thread Antonio Rojas
Date: Wednesday, November 1, 2017 @ 09:44:39
  Author: arojas
Revision: 264968

libva 2.0.0 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-01 09:32:56 UTC (rev 264967)
+++ PKGBUILD2017-11-01 09:44:39 UTC (rev 264968)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=29.0
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service' '99-mythbackend.rules')
-sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
+sha512sums=('f1c50b39c82f4931d5542794c1848a0514c5ad25f2f0201190c162a4c8fc690764707124d7e9bd12b5261cc4fbf1702629c3e67831728aa16c38e09f5bc725ae'
 
'41533da5d8ef694d8c12f60d956673d9e49fb6781ae58d6bfd0bf31e4f380fddb508f9cad3b91264a3ad55853c24c6932bdf83bb5b711c34c0836d71b46be02c'
 
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD mythtv.install)

2017-09-24 Thread Ike Devolder
Date: Sunday, September 24, 2017 @ 08:07:44
  Author: idevolder
Revision: 260340

upgpkg: mythtv 1:29.0-3

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythtv.install

+
 PKGBUILD   |8 
 mythtv.install |   21 +++--
 2 files changed, 15 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-24 08:00:14 UTC (rev 260339)
+++ PKGBUILD2017-09-24 08:07:44 UTC (rev 260340)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=29.0
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -28,9 +28,9 @@
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service' '99-mythbackend.rules')
-sha256sums=('4232f43793783d14f29f5622dcb77c1a4211e7d5624ddbb0a60625fbe710b3c2'
-'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
-'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
+sha512sums=('6d79d943b95b1816b4fce52f3de3e01ebcdcc2779f852ec8cf5e3a81f8be4c730a254ff78b52e36ac522ff99b125501f0cba33a2d4c01571552e09fb4dba18c2'
+
'41533da5d8ef694d8c12f60d956673d9e49fb6781ae58d6bfd0bf31e4f380fddb508f9cad3b91264a3ad55853c24c6932bdf83bb5b711c34c0836d71b46be02c'
+
'fc02c190f01dbfb803b87ea0a6cdf408ce7706dc1ed74fba939931c129fdeb5dab1105caf9f71f029843a4d74db888084f92173c3be240d8492454633311f7c8')
 
 prepare() {
   cd $pkgname-$pkgver/$pkgname

Modified: mythtv.install
===
--- mythtv.install  2017-09-24 08:00:14 UTC (rev 260339)
+++ mythtv.install  2017-09-24 08:07:44 UTC (rev 260340)
@@ -1,20 +1,21 @@
 post_upgrade() {
-   if ! getent passwd mythtv &>/dev/null; then
-   getent group mythtv &>/dev/null || groupadd -r mythtv >/dev/null
-   useradd -rmd /var/lib/mythtv -g mythtv -G video,audio,optical 
-s /bin/bash mythtv >/dev/null
-   fi
+if ! getent passwd mythtv &>/dev/null; then
+getent group mythtv &>/dev/null || groupadd -r mythtv >/dev/null
+useradd -rmd /var/lib/mythtv -g mythtv -G video,audio,optical -s 
/bin/bash mythtv >/dev/null
+chmod 755 "$pkgdir/var/lib/mythtv"
+fi
 
-   echo -e "You may need to load time zone tables in MySQL.\nSee 
http://www.mythtv.org/wiki/MySQL_Time_Zone_Tables;
+echo -e "You may need to load time zone tables in MySQL.\nSee 
http://www.mythtv.org/wiki/MySQL_Time_Zone_Tables;
 }
 
 post_install() {
-   echo -e "For installation information, 
visit:\nhttps://wiki.archlinux.org/index.php/MythTV;
+echo -e "For installation information, 
visit:\nhttps://wiki.archlinux.org/index.php/MythTV;
 
-   post_upgrade
+post_upgrade
 }
 
 post_remove() {
-   echo -e "The MythTV database was not removed. To remove it, run:\n  
mysql -u root -e 'drop database mythconverg;'"
-   [ -d var/lib/mythtv ] && echo "The MythTV home directory 
/var/lib/mythtv can also be removed."
-   echo -e "The 'mythtv' user and group can also be removed."
+echo -e "The MythTV database was not removed. To remove it, run:\n  mysql 
-u root -e 'drop database mythconverg;'"
+[ -d var/lib/mythtv ] && echo "The MythTV home directory /var/lib/mythtv 
can also be removed."
+echo -e "The 'mythtv' user and group can also be removed."
 }


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-08-26 Thread Evangelos Foutras
Date: Saturday, August 26, 2017 @ 17:06:13
  Author: foutrelis
Revision: 254181

Perl versioned binary modules rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-26 16:49:41 UTC (rev 254180)
+++ PKGBUILD2017-08-26 17:06:13 UTC (rev 254181)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=29.0
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-08-26 Thread Evangelos Foutras
Date: Saturday, August 26, 2017 @ 16:49:41
  Author: foutrelis
Revision: 254180

Refresh tarball checksum from GitHub

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-26 16:40:33 UTC (rev 254179)
+++ PKGBUILD2017-08-26 16:49:41 UTC (rev 254180)
@@ -28,7 +28,7 @@
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service' '99-mythbackend.rules')
-sha256sums=('3c24acf3aab3a52e66222331b3eb104f5136f3b045fef8e0ba5623bda581b2a9'
+sha256sums=('4232f43793783d14f29f5622dcb77c1a4211e7d5624ddbb0a60625fbe710b3c2'
 'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-07-15 Thread Ike Devolder
Date: Saturday, July 15, 2017 @ 22:05:40
  Author: idevolder
Revision: 245260

upgpkg: mythtv 1:0.28.1-8

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-15 22:05:37 UTC (rev 245259)
+++ PKGBUILD2017-07-15 22:05:40 UTC (rev 245260)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=7
+pkgrel=8
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-06-01 Thread Felix Yan
Date: Friday, June 2, 2017 @ 04:03:16
  Author: felixonmars
Revision: 232748

Perl 5.26 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-02 03:59:15 UTC (rev 232747)
+++ PKGBUILD2017-06-02 04:03:16 UTC (rev 232748)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-06-01 Thread Evangelos Foutras
Date: Friday, June 2, 2017 @ 03:32:35
  Author: foutrelis
Revision: 232666

Update checksum

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-02 03:28:47 UTC (rev 232665)
+++ PKGBUILD2017-06-02 03:32:35 UTC (rev 232666)
@@ -29,7 +29,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service' '99-mythbackend.rules'
 'loggingserver.patch')
-sha256sums=('3d12039343e589ae9d03ed4bd8cce9db36b1f1e98c1885fdd783bd80729c0164'
+sha256sums=('f59688bbb69ef8830cfe76c826ec89027ed0a9bbb75cc97935fc664225b89dee'
 'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333'
 '3798c5d00c9dae19fa46b4d69f395df6461018c801dadf9b86f336b8c5ff39ec')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-04-14 Thread Maxime Gauduin
Date: Friday, April 14, 2017 @ 22:30:53
  Author: alucryd
Revision: 223051

FS#53666: mythtv 1:0.28.1-6

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-14 21:51:09 UTC (rev 223050)
+++ PKGBUILD2017-04-14 22:30:53 UTC (rev 223051)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-04-14 Thread Maxime Gauduin
Date: Friday, April 14, 2017 @ 21:50:01
  Author: alucryd
Revision: 223049

FS#53666: mythtv 1:0.28.1-5

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-14 21:04:44 UTC (rev 223048)
+++ PKGBUILD2017-04-14 21:50:01 UTC (rev 223049)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-03-26 Thread Maxime Gauduin
Date: Sunday, March 26, 2017 @ 15:13:31
  Author: alucryd
Revision: 219119

libass, libbluray, x265 rebuild: mythtv 1:0.28.1-4

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 15:05:21 UTC (rev 219118)
+++ PKGBUILD2017-03-26 15:13:31 UTC (rev 219119)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2017-03-03 Thread Antonio Rojas
Date: Friday, March 3, 2017 @ 19:17:56
  Author: arojas
Revision: 214674

openssl 1.1 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-03 19:11:38 UTC (rev 214673)
+++ PKGBUILD2017-03-03 19:17:56 UTC (rev 214674)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28.1
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -29,7 +29,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service' '99-mythbackend.rules'
 'loggingserver.patch')
-sha256sums=('598270a1cc89abd72ef4a86c1aa8cd6644ec189c87b7df0547a835f9d0020cac'
+sha256sums=('3d12039343e589ae9d03ed4bd8cce9db36b1f1e98c1885fdd783bd80729c0164'
 'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333'
 '3798c5d00c9dae19fa46b4d69f395df6461018c801dadf9b86f336b8c5ff39ec')


[arch-commits] Commit in mythtv/trunk (PKGBUILD loggingserver.patch)

2017-02-28 Thread Ike Devolder
Date: Tuesday, February 28, 2017 @ 19:40:53
  Author: idevolder
Revision: 214252

upgpkg: mythtv 1:0.28.1-2

Added:
  mythtv/trunk/loggingserver.patch
Modified:
  mythtv/trunk/PKGBUILD

-+
 PKGBUILD|   28 +---
 loggingserver.patch |   11 +++
 2 files changed, 20 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-28 19:21:27 UTC (rev 214251)
+++ PKGBUILD2017-02-28 19:40:53 UTC (rev 214252)
@@ -6,8 +6,8 @@
 # Contributor: dorphell 
 
 pkgname=mythtv
-pkgver=0.28
-pkgrel=9
+pkgver=0.28.1
+pkgrel=2
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -27,29 +27,19 @@
 replaces=('myththemes' 'mythplugins-mythvideo')
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
-
mythtv-fix-segfault.patch::"https://github.com/MythTV/mythtv/commit/c3a79298.patch;
-
mythtv-gcc6.patch::"https://github.com/MythTV/mythtv/commit/e4f6e011.patch;
-'libcec4.patch'
-'mythbackend.service' '99-mythbackend.rules')
-sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340'
-'60696991fcaa24fb61392401bd27cfa35a15b54f4bcc01aee54dc84440c6df99'
-'d35c4738f3317d26d4cb98965689bdc72bd5b9776c1b31e5d97d06be724e'
-'d54b455e3216f9975a648eb0692b4020a87e46441e9e0af6a082b5de93ec3cc1'
+'mythbackend.service' '99-mythbackend.rules'
+'loggingserver.patch')
+sha256sums=('598270a1cc89abd72ef4a86c1aa8cd6644ec189c87b7df0547a835f9d0020cac'
 'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
-'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
+'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333'
+'3798c5d00c9dae19fa46b4d69f395df6461018c801dadf9b86f336b8c5ff39ec')
 
 prepare() {
   cd $pkgname-$pkgver/$pkgname
 
+  patch -p2 -i "$srcdir/loggingserver.patch"
+
   find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
-
-# Fix segfault with GCC 6 https://github.com/MythTV/mythtv/pull/122
-  cd ..
-  patch -p1 -i "$srcdir"/mythtv-fix-segfault.patch
-# Fix build with GCC 6
-  patch -p1 -i "$srcdir"/mythtv-gcc6.patch
-# fix to compile with libcec4
-  patch -p1 -i "$srcdir/libcec4.patch"
 }
 
 build() {

Added: loggingserver.patch
===
--- loggingserver.patch (rev 0)
+++ loggingserver.patch 2017-02-28 19:40:53 UTC (rev 214252)
@@ -0,0 +1,11 @@
+--- a/mythtv/libs/libmythbase/loggingserver.cpp2017-02-13 
21:15:14.150339977 +0100
 b/mythtv/libs/libmythbase/loggingserver.cpp2017-02-13 
21:15:08.738490693 +0100
+@@ -722,7 +722,7 @@
+ if (!item)
+ continue;
+ 
+-if (item->message()[0] != '\0')
++if (item->message()[0] != QChar('\0'))
+ {
+ qLock.unlock();
+ bool logged = m_logger->logqmsg(*query, item);


[arch-commits] Commit in mythtv/trunk (PKGBUILD libcec4.patch)

2016-11-26 Thread Ike Devolder
Date: Saturday, November 26, 2016 @ 20:03:18
  Author: idevolder
Revision: 196967

upgpkg: mythtv 1:0.28-9

Added:
  mythtv/trunk/libcec4.patch
Modified:
  mythtv/trunk/PKGBUILD

---+
 PKGBUILD  |6 
 libcec4.patch |  551 
 2 files changed, 556 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-26 20:02:53 UTC (rev 196966)
+++ PKGBUILD2016-11-26 20:03:18 UTC (rev 196967)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=8
+pkgrel=9
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -29,10 +29,12 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 
mythtv-fix-segfault.patch::"https://github.com/MythTV/mythtv/commit/c3a79298.patch;
 
mythtv-gcc6.patch::"https://github.com/MythTV/mythtv/commit/e4f6e011.patch;
+'libcec4.patch'
 'mythbackend.service' '99-mythbackend.rules')
 sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340'
 '60696991fcaa24fb61392401bd27cfa35a15b54f4bcc01aee54dc84440c6df99'
 'd35c4738f3317d26d4cb98965689bdc72bd5b9776c1b31e5d97d06be724e'
+'d54b455e3216f9975a648eb0692b4020a87e46441e9e0af6a082b5de93ec3cc1'
 'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
 
@@ -46,6 +48,8 @@
   patch -p1 -i "$srcdir"/mythtv-fix-segfault.patch
 # Fix build with GCC 6
   patch -p1 -i "$srcdir"/mythtv-gcc6.patch
+# fix to compile with libcec4
+  patch -p1 -i "$srcdir/libcec4.patch"
 }
 
 build() {

Added: libcec4.patch
===
--- libcec4.patch   (rev 0)
+++ libcec4.patch   2016-11-26 20:03:18 UTC (rev 196967)
@@ -0,0 +1,551 @@
+diff --git a/mythtv/libs/libmythui/cecadapter.cpp 
b/mythtv/libs/libmythui/cecadapter.cpp
+index 00a8c73..06a8f3d 100644
+--- a/mythtv/libs/libmythui/cecadapter.cpp
 b/mythtv/libs/libmythui/cecadapter.cpp
+@@ -33,17 +33,31 @@ QWaitCondition* CECAdapter::gActionsReady = new 
QWaitCondition();
+ // libcec1's callback parameters are pass-by-ref
+ #define CEC_CALLBACK_PARAM_TYPE &
+ #else
+-// libcec2's callback parameters are pass-by-value
++#if CEC_LIB_VERSION_MAJOR <= 3
++// libcec2 and 3 callback parameters are pass-by-value
+ #define CEC_CALLBACK_PARAM_TYPE
+ #endif
++#endif
+ 
+ // The libCEC callback functions
++#if CEC_LIB_VERSION_MAJOR <= 3
+ static int CECLogMessageCallback(void *adapter, const cec_log_message 
CEC_CALLBACK_PARAM_TYPE message);
+ static int CECKeyPressCallback(void *adapter, const cec_keypress 
CEC_CALLBACK_PARAM_TYPE keypress);
+ static int CECCommandCallback(void *adapter, const cec_command 
CEC_CALLBACK_PARAM_TYPE command);
++#endif
++#if CEC_LIB_VERSION_MAJOR >= 4
++static void CECLogMessageCallback(void *adapter, const cec_log_message* 
message);
++static void CECKeyPressCallback(void *adapter, const cec_keypress* keypress);
++static void CECCommandCallback(void *adapter, const cec_command* command);
++#endif
+ 
+ #if CEC_LIB_VERSION_MAJOR >= 2
++#if CEC_LIB_VERSION_MAJOR <= 3
+ static int CECAlertCallback(void *adapter, const libcec_alert alert, const 
libcec_parameter CEC_CALLBACK_PARAM_TYPE data);
++#endif
++#if CEC_LIB_VERSION_MAJOR >= 4
++static void CECAlertCallback(void *adapter, const libcec_alert alert, const 
libcec_parameter data);
++#endif
+ static void CECSourceActivatedCallback(void *adapter, const 
cec_logical_address address, const uint8_t activated);
+ #endif
+ 
+@@ -107,13 +121,24 @@ class CECAdapterPriv
+ }
+ 
+ // Set up the callbacks
++#if CEC_LIB_VERSION_MAJOR <= 3
+ callbacks.CBCecLogMessage = 
+ callbacks.CBCecKeyPress   = 
+ callbacks.CBCecCommand= 
+-#if CEC_LIB_VERSION_MAJOR >= 2
++#endif
++#if CEC_LIB_VERSION_MAJOR >= 4
++callbacks.logMessage  = 
++callbacks.keyPress= 
++callbacks.commandReceived = 
++#endif
++#if CEC_LIB_VERSION_MAJOR >= 2 && CEC_LIB_VERSION_MAJOR <= 3
+ callbacks.CBCecAlert  = 
+ callbacks.CBCecSourceActivated = 
+ #endif
++#if CEC_LIB_VERSION_MAJOR >= 4
++callbacks.alert   = 
++callbacks.sourceActivated = 
++#endif
+ configuration.callbackParam = this;
+ configuration.callbacks = 
+ 
+@@ -127,8 +152,13 @@ class CECAdapterPriv
+ }
+ 
+ // find adapters
++#if CEC_LIB_VERSION_MAJOR >= 4
++cec_adapter_descriptor *devices = new 
cec_adapter_descriptor[MAX_CEC_DEVICES];
++uint8_t num_devices = adapter->DetectAdapters(devices, 
MAX_CEC_DEVICES, NULL, true);
++#else
+ cec_adapter *devices = new cec_adapter[MAX_CEC_DEVICES];
+ uint8_t num_devices = adapter->FindAdapters(devices, MAX_CEC_DEVICES, 

[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2016-10-12 Thread Antonio Rojas
Date: Wednesday, October 12, 2016 @ 08:51:25
  Author: arojas
Revision: 191994

Add missing jack dependency (FS#51288)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-12 08:47:22 UTC (rev 191993)
+++ PKGBUILD2016-10-12 08:51:25 UTC (rev 191994)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=7
+pkgrel=8
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
  'libgl' 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc' 
'mariadb-clients'
  'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
  'perl-net-upnp' 'python2-lxml' 'qt5-webkit' 'qt5-script' 'taglib' 
'urlgrabber'
- 'libx264' 'libvdpau' 'exiv2' 'libxrandr')
+ 'libx264' 'libvdpau' 'exiv2' 'libxrandr' 'jack')
 makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264' 'gdb')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'


[arch-commits] Commit in mythtv/trunk (PKGBUILD mythbackend.service)

2016-10-01 Thread Antonio Rojas
Date: Saturday, October 1, 2016 @ 11:45:53
  Author: arojas
Revision: 191132

Add Restart=on-failure to systemd service (FS#51129)

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythbackend.service

-+
 PKGBUILD|4 ++--
 mythbackend.service |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-01 11:05:54 UTC (rev 191131)
+++ PKGBUILD2016-10-01 11:45:53 UTC (rev 191132)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -33,7 +33,7 @@
 sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340'
 '60696991fcaa24fb61392401bd27cfa35a15b54f4bcc01aee54dc84440c6df99'
 'd35c4738f3317d26d4cb98965689bdc72bd5b9776c1b31e5d97d06be724e'
-'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
+'ed5ca54de26b7cd8a64e09626eed6e09f35d677daf88c530bb24cc4252bcce6d'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
 
 prepare() {

Modified: mythbackend.service
===
--- mythbackend.service 2016-10-01 11:05:54 UTC (rev 191131)
+++ mythbackend.service 2016-10-01 11:45:53 UTC (rev 191132)
@@ -10,6 +10,7 @@
 ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
 ExecStop=/usr/bin/mythshutdown --setscheduledwakeup
 #ExecStop=/usr/bin/mythshutdown --shutdown
+Restart=on-failure
 
 [Install]
 WantedBy=multi-user.target


[arch-commits] Commit in mythtv/trunk (PKGBUILD mythtv.install)

2016-07-28 Thread Jan Steffens
Date: Thursday, July 28, 2016 @ 21:02:43
  Author: heftig
Revision: 184597

0.28-6

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythtv.install

+
 PKGBUILD   |2 +-
 mythtv.install |4 +---
 2 files changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-28 20:48:20 UTC (rev 184596)
+++ PKGBUILD2016-07-28 21:02:43 UTC (rev 184597)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')

Modified: mythtv.install
===
--- mythtv.install  2016-07-28 20:48:20 UTC (rev 184596)
+++ mythtv.install  2016-07-28 21:02:43 UTC (rev 184597)
@@ -16,7 +16,5 @@
 post_remove() {
echo -e "The MythTV database was not removed. To remove it, run:\n  
mysql -u root -e 'drop database mythconverg;'"
[ -d var/lib/mythtv ] && echo "The MythTV home directory 
/var/lib/mythtv can also be removed."
-
-   getent passwd mythtv &>/dev/null && userdel mythtv >/dev/null
-   getent group mythtv &>/dev/null && groupdel mythtv >/dev/null
+   echo -e "The 'mythtv' user and group can also be removed."
 }


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2016-07-24 Thread Antonio Rojas
Date: Sunday, July 24, 2016 @ 07:36:56
  Author: arojas
Revision: 183900

libvpx 1.6.0 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-24 07:34:08 UTC (rev 183899)
+++ PKGBUILD2016-07-24 07:36:56 UTC (rev 183900)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2016-07-23 Thread Antonio Rojas
Date: Saturday, July 23, 2016 @ 12:36:11
  Author: arojas
Revision: 183881

Fix segfault (FS#49863)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-23 12:13:54 UTC (rev 183880)
+++ PKGBUILD2016-07-23 12:36:11 UTC (rev 183881)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -27,8 +27,12 @@
 replaces=('myththemes' 'mythplugins-mythvideo')
 install='mythtv.install'
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
+
mythtv-fix-segfault.patch::"https://github.com/MythTV/mythtv/commit/c3a79298.patch;
+
mythtv-gcc6.patch::"https://github.com/MythTV/mythtv/commit/e4f6e011.patch;
 'mythbackend.service' '99-mythbackend.rules')
-sha256sums=('13d846c8163dcfe091ea3033d176cf5459bdd0ab671f8cf2539a17bd4479a3b2'
+sha256sums=('7b3476c0ec0fc17d6b734f0440383815e81850a70b78c12ee40d61a408eba340'
+'60696991fcaa24fb61392401bd27cfa35a15b54f4bcc01aee54dc84440c6df99'
+'d35c4738f3317d26d4cb98965689bdc72bd5b9776c1b31e5d97d06be724e'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333')
 
@@ -36,6 +40,12 @@
   cd $pkgname-$pkgver/$pkgname
 
   find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+
+# Fix segfault with GCC 6 https://github.com/MythTV/mythtv/pull/122
+  cd ..
+  patch -p1 -i "$srcdir"/mythtv-fix-segfault.patch
+# Fix build with GCC 6
+  patch -p1 -i "$srcdir"/mythtv-gcc6.patch
 }
 
 build() {


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2016-04-14 Thread Antonio Rojas
Date: Thursday, April 14, 2016 @ 19:41:23
  Author: arojas
Revision: 171078

More python -> python2 porting (FS#48939)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-14 17:33:24 UTC (rev 171077)
+++ PKGBUILD2016-04-14 17:41:23 UTC (rev 171078)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.28
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -35,7 +35,7 @@
 prepare() {
   cd $pkgname-$pkgver/$pkgname
 
-  find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+  find 'bindings/python' 'contrib' 'programs/scripts' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
 }
 
 build() {


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-12-07 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 14:57:53
  Author: foutrelis
Revision: 149920

C++11 ABI rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-07 13:54:43 UTC (rev 149919)
+++ PKGBUILD2015-12-07 13:57:53 UTC (rev 149920)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.5
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-11-10 Thread Felix Yan
Date: Tuesday, November 10, 2015 @ 22:27:27
  Author: fyan
Revision: 146539

libvpx 1.5.0 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-10 20:53:48 UTC (rev 146538)
+++ PKGBUILD2015-11-10 21:27:27 UTC (rev 146539)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-07-17 Thread Maxime Gauduin
Date: Friday, July 17, 2015 @ 18:15:04
  Author: alucryd
Revision: 137065

libx264 soname bump: mythtv 1:0.27.5-2

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-17 15:19:23 UTC (rev 137064)
+++ PKGBUILD2015-07-17 16:15:04 UTC (rev 137065)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.5
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -31,7 +31,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('a3c6141cd0729890622268cc8b2bdd799e9c7ac9135360766d515e00672a356a'
+sha256sums=('7e625f94332effeadfba8e7ae7c98d44a83bfc25b7c59e39adce67dc2f4e1e1b'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-06-16 Thread Felix Yan
Date: Wednesday, June 17, 2015 @ 05:28:43
  Author: fyan
Revision: 135500

upgpkg: mythtv 1:0.27.5-1

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-17 03:02:09 UTC (rev 135499)
+++ PKGBUILD2015-06-17 03:28:43 UTC (rev 135500)
@@ -6,8 +6,8 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.27.4
-pkgrel=4
+pkgver=0.27.5
+pkgrel=1
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -31,7 +31,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('1f734ffc776e4938aa913e49ce94279f2c2d520c62af278f1d04fe399723365b'
+sha256sums=('a3c6141cd0729890622268cc8b2bdd799e9c7ac9135360766d515e00672a356a'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-04-18 Thread Bartłomiej Piotrowski
Date: Saturday, April 18, 2015 @ 13:38:17
  Author: bpiotrowski
Revision: 131614

upgpkg: mythtv 1:0.27.4-4

rebuild against libvpx 1.4.0

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-18 11:31:27 UTC (rev 131613)
+++ PKGBUILD2015-04-18 11:38:17 UTC (rev 131614)
@@ -7,16 +7,17 @@
 
 pkgname=mythtv
 pkgver=0.27.4
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
 license=('GPL')
-depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883' 
'libgl'
- 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc' 'mariadb-clients'
+depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
+ 'libgl' 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc' 
'mariadb-clients'
  'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
- 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'libx264')
+ 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber'
+ 'libx264' 'libvdpau')
 makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264' 'gdb')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2015-03-07 Thread Antonio Rojas
Date: Saturday, March 7, 2015 @ 23:55:10
  Author: arojas
Revision: 128873

x264 144.20150223 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-07 21:57:15 UTC (rev 128872)
+++ PKGBUILD2015-03-07 22:55:10 UTC (rev 128873)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.4
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-11-04 Thread Felix Yan
Date: Tuesday, November 4, 2014 @ 15:14:23
  Author: fyan
Revision: 121815

upgpkg: mythtv 1:0.27.4-2

libcec 2.2.0 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 14:14:13 UTC (rev 121814)
+++ PKGBUILD2014-11-04 14:14:23 UTC (rev 121815)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.4
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('0e9ee768e7e6da8f964742b5bfa3393d84d99d2558d062815b0b212d7930d69c'
+sha256sums=('1f734ffc776e4938aa913e49ce94279f2c2d520c62af278f1d04fe399723365b'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-10-16 Thread Felix Yan
Date: Thursday, October 16, 2014 @ 08:08:41
  Author: fyan
Revision: 120760

upgpkg: mythtv 1:0.27.4-1

upstream new release

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-16 06:00:18 UTC (rev 120759)
+++ PKGBUILD2014-10-16 06:08:41 UTC (rev 120760)
@@ -6,8 +6,8 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.27.3
-pkgrel=3
+pkgver=0.27.4
+pkgrel=1
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('8eaaf8c6e42ca6eb81f180467de90d597dbeabb1bb14b7085da353d2980db8f4'
+sha256sums=('0e9ee768e7e6da8f964742b5bfa3393d84d99d2558d062815b0b212d7930d69c'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 


[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-08-08 Thread Balló György
Date: Friday, August 8, 2014 @ 15:34:09
  Author: bgyorgy
Revision: 117033

upgpkg: mythtv 1:0.27.3-3

Use vendor_perl directory (FS#40729)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-08 12:06:44 UTC (rev 117032)
+++ PKGBUILD2014-08-08 13:34:09 UTC (rev 117033)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.3
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -56,7 +56,8 @@
   --enable-libvpx \
   --enable-libx264 \
   --enable-vaapi \
-  --python=python2
+  --python=python2 \
+  --perl-config-opts=INSTALLDIRS=vendor
   make
 }
 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-07-26 Thread Bartłomiej Piotrowski
Date: Saturday, July 26, 2014 @ 18:47:59
  Author: bpiotrowski
Revision: 116384

upgpkg: mythtv 1:0.27.3-2

update {make,}depends to reflect x264 split

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-26 16:36:52 UTC (rev 116383)
+++ PKGBUILD2014-07-26 16:47:59 UTC (rev 116384)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27.3
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -16,8 +16,8 @@
 depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883' 
'libgl'
  'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc-utils' 
'mariadb-clients'
  'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
- 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'x264')
-makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264-dev' 'gdb')
+ 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'libx264')
+makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264' 'gdb')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'
 'libxml2: to read blu-ray metadata'



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-07-24 Thread Felix Yan
Date: Thursday, July 24, 2014 @ 12:22:07
  Author: fyan
Revision: 116299

upgpkg: mythtv 1:0.27.3-1

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-24 10:15:38 UTC (rev 116298)
+++ PKGBUILD2014-07-24 10:22:07 UTC (rev 116299)
@@ -6,18 +6,18 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.27
-pkgrel=8
+pkgver=0.27.3
+pkgrel=1
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
 license=('GPL')
-depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
+depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883' 
'libgl'
  'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc-utils' 
'mariadb-clients'
  'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
  'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'x264')
-makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264-dev')
+makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264-dev' 'gdb')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'
 'libxml2: to read blu-ray metadata'
@@ -29,12 +29,10 @@
 install='mythtv.install'
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
-
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch'
-
'http://code.mythtv.org/trac/raw-attachment/ticket/12098/ticket12098-dont-load-lib-when-opengles-disabled.diff')
-sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0'
+
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
+sha256sums=('8eaaf8c6e42ca6eb81f180467de90d597dbeabb1bb14b7085da353d2980db8f4'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
-'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3'
-'55e9827ea8f5c685801c110f879825d1fb3006070e0318188a2fd55921b95bdf')
+'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver/$pkgname
@@ -41,7 +39,6 @@
 
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np2 -i $srcdir/libcec-2-support.2.patch
-  patch -Np2 -i $srcdir/ticket12098-dont-load-lib-when-opengles-disabled.diff
 }
 
 build() {



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-06-04 Thread Bartłomiej Piotrowski
Date: Wednesday, June 4, 2014 @ 21:31:38
  Author: bpiotrowski
Revision: 112681

Add x264-dev to makedepends.

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-04 19:31:28 UTC (rev 112680)
+++ PKGBUILD2014-06-04 19:31:38 UTC (rev 112681)
@@ -17,7 +17,7 @@
  'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc-utils' 
'mariadb-clients'
  'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
  'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'x264')
-makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')
+makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm' 
'x264-dev')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'
 'libxml2: to read blu-ray metadata'



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-04-07 Thread Balló György
Date: Monday, April 7, 2014 @ 21:24:23
  Author: bgyorgy
Revision: 108931

upgpkg: mythtv 1:0.27-8

Fix crash with nvidia driver (FS#39570)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-07 18:29:35 UTC (rev 108930)
+++ PKGBUILD2014-04-07 19:24:23 UTC (rev 108931)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=7
+pkgrel=8
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -29,10 +29,12 @@
 install='mythtv.install'
 
source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
-
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
+
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch'
+
'http://code.mythtv.org/trac/raw-attachment/ticket/12098/ticket12098-dont-load-lib-when-opengles-disabled.diff')
 sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
-'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
+'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3'
+'55e9827ea8f5c685801c110f879825d1fb3006070e0318188a2fd55921b95bdf')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver/$pkgname
@@ -39,6 +41,7 @@
 
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np2 -i $srcdir/libcec-2-support.2.patch
+  patch -Np2 -i $srcdir/ticket12098-dont-load-lib-when-opengles-disabled.diff
 }
 
 build() {



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2014-03-24 Thread Bartłomiej Piotrowski
Date: Monday, March 24, 2014 @ 10:41:50
  Author: bpiotrowski
Revision: 108178

upgpkg: mythtv 1:0.27-7

rebuild against ffmpeg 2.2

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-24 09:24:34 UTC (rev 108177)
+++ PKGBUILD2014-03-24 09:41:50 UTC (rev 108178)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 20:52:09
  Author: bgyorgy
Revision: 102722

upgpkg: mythtv 1:0.27-6

Add udisks to optdepends, use github source (FS#37898, FS#37471)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 19:43:24 UTC (rev 102721)
+++ PKGBUILD2013-12-17 19:52:09 UTC (rev 102722)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -22,20 +22,20 @@
 'libcec: for consumer electronics control capabilities'
 'libxml2: to read blu-ray metadata'
 'openssl: for AirTunes (RAOP) support'
+'udisks: detect changes to removable media'
 'xmltv: to download tv listings')
 conflicts=('myththemes' 'mythplugins-mythvideo')
 replaces=('myththemes' 'mythplugins-mythvideo')
-backup=()
 install='mythtv.install'
-source=($pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver;
+source=($pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('e43fb64e362d1701d57887081c9402a6295376bb105002ac7153c8e8b331a01b'
+sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 
 prepare() {
-  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
+  cd $srcdir/$pkgname-$pkgver/$pkgname
 
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np2 -i $srcdir/libcec-2-support.2.patch
@@ -42,7 +42,7 @@
 }
 
 build() {
-  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
+  cd $srcdir/$pkgname-$pkgver/$pkgname
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr \
@@ -61,7 +61,7 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
+  cd $srcdir/$pkgname-$pkgver/$pkgname
   make INSTALL_ROOT=$pkgdir install
 
   install -D -m644 $srcdir/mythbackend.service 
$pkgdir/usr/lib/systemd/system/mythbackend.service



[arch-commits] Commit in mythtv/trunk (PKGBUILD mythbackend.service)

2013-12-09 Thread Balló György
Date: Monday, December 9, 2013 @ 21:19:51
  Author: bgyorgy
Revision: 102379

upgpkg: mythtv 1:0.27-5

Add Wants=network-online.target to service file (FS#31846)

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythbackend.service

-+
 PKGBUILD|6 +++---
 mythbackend.service |1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-09 19:46:45 UTC (rev 102378)
+++ PKGBUILD2013-12-09 20:19:51 UTC (rev 102379)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -30,8 +30,8 @@
 
source=($pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c'
-'f628f44164ce773ae54d320fb2f65353cacf9deec16981e4e56316ac33000a2f'
+sha256sums=('e43fb64e362d1701d57887081c9402a6295376bb105002ac7153c8e8b331a01b'
+'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 
 prepare() {

Modified: mythbackend.service
===
--- mythbackend.service 2013-12-09 19:46:45 UTC (rev 102378)
+++ mythbackend.service 2013-12-09 20:19:51 UTC (rev 102379)
@@ -1,5 +1,6 @@
 [Unit]
 Description=MythTV Backend
+Wants=network-online.target
 After=network.target mysqld.service
 
 [Service]



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-11-03 Thread Jonathan Conder
Date: Sunday, November 3, 2013 @ 21:28:19
  Author: jconder
Revision: 100415

upgpkg: mythtv 1:0.27-4

rebuild against x264

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-03 18:13:58 UTC (rev 100414)
+++ PKGBUILD2013-11-03 20:28:19 UTC (rev 100415)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
 
source=($pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('49789de705be73275325b1a4984b727cf8284fdc4ae6b041ad152857c830dc46'
+sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c'
 'f628f44164ce773ae54d320fb2f65353cacf9deec16981e4e56316ac33000a2f'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-10-25 Thread Sergej Pupykin
Date: Friday, October 25, 2013 @ 14:06:59
  Author: spupykin
Revision: 99191

fix file name in local cache, update checksum

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-25 12:02:44 UTC (rev 99190)
+++ PKGBUILD2013-10-25 12:06:59 UTC (rev 99191)
@@ -27,10 +27,10 @@
 replaces=('myththemes' 'mythplugins-mythvideo')
 backup=()
 install='mythtv.install'
-source=(http://www.$pkgname.org/download/$pkgname/$pkgver;
+source=($pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver;
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('670b378e379df05a4f2ac28cc3cb2578587b42cb03710e0b230b75d692f8e2b8'
+sha256sums=('49789de705be73275325b1a4984b727cf8284fdc4ae6b041ad152857c830dc46'
 'f628f44164ce773ae54d320fb2f65353cacf9deec16981e4e56316ac33000a2f'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-10-25 Thread Giovanni Scafora
Date: Friday, October 25, 2013 @ 15:44:48
  Author: giovanni
Revision: 99200

upgpkg: mythtv 1:0.27-3

libass.so.5 bump

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-25 12:58:18 UTC (rev 99199)
+++ PKGBUILD2013-10-25 13:44:48 UTC (rev 99200)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-10-23 Thread Jonathan Conder
Date: Thursday, October 24, 2013 @ 04:38:04
  Author: jconder
Revision: 99068

upgpkg: mythtv 1:0.27-2

remove static libraries

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-24 00:36:11 UTC (rev 99067)
+++ PKGBUILD2013-10-24 02:38:04 UTC (rev 99068)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')



[arch-commits] Commit in mythtv/trunk (PKGBUILD alsa.patch)

2013-09-18 Thread Jonathan Conder
Date: Thursday, September 19, 2013 @ 06:02:49
  Author: jconder
Revision: 97418

upgpkg: mythtv 1:0.27-1

update to 0.27

Modified:
  mythtv/trunk/PKGBUILD
Deleted:
  mythtv/trunk/alsa.patch

+
 PKGBUILD   |   62 ++-
 alsa.patch |   66 ---
 2 files changed, 30 insertions(+), 98 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 23:09:17 UTC (rev 97417)
+++ PKGBUILD2013-09-19 04:02:49 UTC (rev 97418)
@@ -6,7 +6,7 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.26.1
+pkgver=0.27
 pkgrel=1
 epoch=1
 pkgdesc=A Homebrew PVR project
@@ -14,56 +14,54 @@
 url=http://www.mythtv.org/;
 license=('GPL')
 depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
- 'libpulse' 'libva' 'libvdpau' 'libxinerama' 'lirc-utils'
-'mariadb-clients' 'mysql-python' 'perl-dbd-mysql' 
'perl-io-socket-inet6'
-'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'urlgrabber'
-'x264')
+ 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc-utils' 
'mariadb-clients'
+ 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
+ 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'x264')
 makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'
-   'libxml2: to read blu-ray metadata'
-   'openssl: for AirTunes (RAOP) support'
+'libxml2: to read blu-ray metadata'
+'openssl: for AirTunes (RAOP) support'
 'xmltv: to download tv listings')
 conflicts=('myththemes' 'mythplugins-mythvideo')
 replaces=('myththemes' 'mythplugins-mythvideo')
 backup=()
 install='mythtv.install'
-source=(ftp://ftp.osuosl.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2;
-'alsa.patch'
-   'mythbackend.service'
-   
'libva-compat.patch::https://github.com/garybuhrmaster/mythtv/commit/2add868d2f18b8b47d9747e043f052e88869bfc3.patch'
-   
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.patch')
-md5sums=('ef25a9b86f4a23d6f07d83791a1e5c9e'
- 'f64b8219e3d27a2edf96733b851e576b'
- 'e4d572dcc307d6d8ae26bee5aebf9f3a'
- 'ae88a16e9f42a913f395bf71af18e931'
- '6e156c9fc0b369346d93ccafad46cba3')
+source=(http://www.$pkgname.org/download/$pkgname/$pkgver;
+'mythbackend.service'
+
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
+sha256sums=('670b378e379df05a4f2ac28cc3cb2578587b42cb03710e0b230b75d692f8e2b8'
+'f628f44164ce773ae54d320fb2f65353cacf9deec16981e4e56316ac33000a2f'
+'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 
-build() {
-  cd $srcdir/$pkgname-$pkgver
+prepare() {
+  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
+
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+  patch -Np2 -i $srcdir/libcec-2-support.2.patch
+}
 
-  patch -Np1 -i $srcdir/alsa.patch
-  patch -Np2 -i $srcdir/libva-compat.patch
-  patch -Np2 -i $srcdir/libcec-2-support.patch
+build() {
+  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr \
   --cpu=$ARCH \
- --disable-altivec \
- --disable-audio-jack \
- --disable-ccache \
- --disable-distcc \
- --enable-libfftw3 \
- --enable-libmp3lame \
- --enable-libx264 \
- --enable-vaapi \
- --python=python2
+  --disable-altivec \
+  --disable-audio-jack \
+  --disable-ccache \
+  --disable-distcc \
+  --enable-libfftw3 \
+  --enable-libmp3lame \
+  --enable-libvpx \
+  --enable-libx264 \
+  --enable-vaapi \
+  --python=python2
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname-fixes-$pkgver/$pkgname
   make INSTALL_ROOT=$pkgdir install
 
   install -D -m644 $srcdir/mythbackend.service 
$pkgdir/usr/lib/systemd/system/mythbackend.service

Deleted: alsa.patch
===
--- alsa.patch  2013-09-18 23:09:17 UTC (rev 97417)
+++ alsa.patch  2013-09-19 04:02:49 UTC (rev 97418)
@@ -1,66 +0,0 @@
-diff -Nru a/external/FFmpeg/libavdevice/alsa-audio-common.c 
b/external/FFmpeg/libavdevice/alsa-audio-common.c
 a/external/FFmpeg/libavdevice/alsa-audio-common.c  2012-10-02 
23:30:24.0 +1300
-+++ b/external/FFmpeg/libavdevice/alsa-audio-common.c  2013-01-09 
13:23:49.704360811 +1300
-@@ -28,6 +28,7 @@
-  * @author Nicolas George ( nicolas george normalesup org )
-  */
- 
-+#include 

[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-08-20 Thread Jonathan Conder
Date: Tuesday, August 20, 2013 @ 13:24:04
  Author: jconder
Revision: 96147

upgpkg: mythtv 1:0.26.1-1

update to 0.26.1

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 10:35:29 UTC (rev 96146)
+++ PKGBUILD2013-08-20 11:24:04 UTC (rev 96147)
@@ -6,8 +6,8 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.26.0
-pkgrel=10
+pkgver=0.26.1
+pkgrel=1
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -33,7 +33,7 @@
'mythbackend.service'

'libva-compat.patch::https://github.com/garybuhrmaster/mythtv/commit/2add868d2f18b8b47d9747e043f052e88869bfc3.patch'

'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.patch')
-md5sums=('f57066bf75e6f14824c494d41639f4f9'
+md5sums=('ef25a9b86f4a23d6f07d83791a1e5c9e'
  'f64b8219e3d27a2edf96733b851e576b'
  'e4d572dcc307d6d8ae26bee5aebf9f3a'
  'ae88a16e9f42a913f395bf71af18e931'



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-07-12 Thread Jonathan Conder
Date: Friday, July 12, 2013 @ 15:49:18
  Author: jconder
Revision: 93988

upgpkg: mythtv 1:0.26.0-10

x264 and ffmpeg rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-12 13:45:21 UTC (rev 93987)
+++ PKGBUILD2013-07-12 13:49:18 UTC (rev 93988)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=9
+pkgrel=10
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-07-11 Thread Jonathan Conder
Date: Thursday, July 11, 2013 @ 11:48:43
  Author: jconder
Revision: 93849

upgpkg: mythtv 1:0.26.0-9

fix libva compatibility

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-11 09:47:42 UTC (rev 93848)
+++ PKGBUILD2013-07-11 09:48:43 UTC (rev 93849)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=8
+pkgrel=9
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -26,15 +26,17 @@
 'xmltv: to download tv listings')
 conflicts=('myththemes' 'mythplugins-mythvideo')
 replaces=('myththemes' 'mythplugins-mythvideo')
-backup=('etc/conf.d/mythbackend')
+backup=()
 install='mythtv.install'
 source=(ftp://ftp.osuosl.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2;
 'alsa.patch'
'mythbackend.service'
+   
'libva-compat.patch::https://github.com/garybuhrmaster/mythtv/commit/2add868d2f18b8b47d9747e043f052e88869bfc3.patch'

'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.patch')
 md5sums=('f57066bf75e6f14824c494d41639f4f9'
  'f64b8219e3d27a2edf96733b851e576b'
  'e4d572dcc307d6d8ae26bee5aebf9f3a'
+ 'ae88a16e9f42a913f395bf71af18e931'
  '6e156c9fc0b369346d93ccafad46cba3')
 
 build() {
@@ -42,6 +44,7 @@
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
 
   patch -Np1 -i $srcdir/alsa.patch
+  patch -Np2 -i $srcdir/libva-compat.patch
   patch -Np2 -i $srcdir/libcec-2-support.patch
 
   ARCH=${CARCH/_/-}



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-03-09 Thread Bartłomiej Piotrowski
Date: Saturday, March 9, 2013 @ 17:21:52
  Author: bpiotrowski
Revision: 85941

upgpkg: mythtv 1:0.26.0-8

mariadb rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-09 14:50:34 UTC (rev 85940)
+++ PKGBUILD2013-03-09 16:21:52 UTC (rev 85941)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=7
+pkgrel=8
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 license=('GPL')
 depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
  'libpulse' 'libva' 'libvdpau' 'libxinerama' 'lirc-utils'
-'mysql-clients' 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6'
+'mariadb-clients' 'mysql-python' 'perl-dbd-mysql' 
'perl-io-socket-inet6'
 'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'urlgrabber'
 'x264')
 makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-02-24 Thread Andrea Scarpino
Date: Sunday, February 24, 2013 @ 21:18:57
  Author: andrea
Revision: 84820

Undo qtwebkit replacement

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-24 20:14:37 UTC (rev 84819)
+++ PKGBUILD2013-02-24 20:18:57 UTC (rev 84820)
@@ -16,7 +16,7 @@
 depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
  'libpulse' 'libva' 'libvdpau' 'libxinerama' 'lirc-utils'
 'mysql-clients' 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6'
-'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qt4' 'urlgrabber'
+'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'urlgrabber'
 'x264')
 makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')
 optdepends=('glew: for GPU commercial flagging'



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-02-23 Thread Jonathan Conder
Date: Sunday, February 24, 2013 @ 04:34:04
  Author: jconder
Revision: 84747

upgpkg: mythtv 1:0.26.0-7

rebuild for mesa and qt, remove initscripts

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-24 01:03:38 UTC (rev 84746)
+++ PKGBUILD2013-02-24 03:34:04 UTC (rev 84747)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -16,9 +16,9 @@
 depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
  'libpulse' 'libva' 'libvdpau' 'libxinerama' 'lirc-utils'
 'mysql-clients' 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6'
-'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'urlgrabber'
+'perl-libwww' 'perl-net-upnp' 'python2-lxml' 'qt4' 'urlgrabber'
 'x264')
-makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'openssl' 'yasm')
+makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')
 optdepends=('glew: for GPU commercial flagging'
 'libcec: for consumer electronics control capabilities'
'libxml2: to read blu-ray metadata'
@@ -30,14 +30,10 @@
 install='mythtv.install'
 source=(ftp://ftp.osuosl.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2;
 'alsa.patch'
-'mythbackend.rc'
-'mythbackend.conf'
'mythbackend.service'

'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.patch')
 md5sums=('f57066bf75e6f14824c494d41639f4f9'
  'f64b8219e3d27a2edf96733b851e576b'
- 'c8f935d42fb8617e9279bd539811ca5f'
- 'ab962d83614cbd0ac11ce3fcc929829d'
  'e4d572dcc307d6d8ae26bee5aebf9f3a'
  '6e156c9fc0b369346d93ccafad46cba3')
 
@@ -67,8 +63,6 @@
   cd $srcdir/$pkgname-$pkgver
   make INSTALL_ROOT=$pkgdir install
 
-  install -D -m755 $srcdir/mythbackend.rc $pkgdir/etc/rc.d/mythbackend
-  install -D -m644 $srcdir/mythbackend.conf $pkgdir/etc/conf.d/mythbackend
   install -D -m644 $srcdir/mythbackend.service 
$pkgdir/usr/lib/systemd/system/mythbackend.service
   install -D -m644 'database/mc.sql' $pkgdir/usr/share/mythtv/mc.sql
 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-02-10 Thread Jelle van der Waa
Date: Sunday, February 10, 2013 @ 12:22:43
  Author: jelle
Revision: 84085

upgpkg: mythtv 1:0.26.0-6

x264 and ffmpeg

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-10 10:48:47 UTC (rev 84084)
+++ PKGBUILD2013-02-10 11:22:43 UTC (rev 84085)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2013-01-29 Thread Sergej Pupykin
Date: Tuesday, January 29, 2013 @ 18:23:39
  Author: spupykin
Revision: 83331

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-29 17:21:13 UTC (rev 83330)
+++ PKGBUILD2013-01-29 17:23:39 UTC (rev 83331)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.26.0
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
@@ -32,18 +32,21 @@
 'alsa.patch'
 'mythbackend.rc'
 'mythbackend.conf'
-   'mythbackend.service')
+   'mythbackend.service'
+   
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.patch')
 md5sums=('f57066bf75e6f14824c494d41639f4f9'
  'f64b8219e3d27a2edf96733b851e576b'
  'c8f935d42fb8617e9279bd539811ca5f'
  'ab962d83614cbd0ac11ce3fcc929829d'
-'e4d572dcc307d6d8ae26bee5aebf9f3a')
+ 'e4d572dcc307d6d8ae26bee5aebf9f3a'
+ '6e156c9fc0b369346d93ccafad46cba3')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
 
   patch -Np1 -i $srcdir/alsa.patch
+  patch -Np2 -i $srcdir/libcec-2-support.patch
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr \



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-09-23 Thread Rémy Oudompheng
Date: Thursday, September 23, 2010 @ 06:45:09
  Author: remy
Revision: 91139

upgpkg: mythtv 25574-2
Rebuild for python2.7

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-23 08:30:10 UTC (rev 91138)
+++ PKGBUILD2010-09-23 10:45:09 UTC (rev 91139)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=25574
-pkgrel=1
+pkgrel=2
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
@@ -30,6 +30,7 @@
 
 build() {
   cd ${srcdir}/${pkgname}
+  find bindings/python contrib -type f | xargs sed -i 
's...@^#!.*python$@#!/usr/bin/python2@'
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr --cpu=${ARCH} \
@@ -62,10 +63,14 @@
   --enable-xrandr \
   --enable-xv \
   --enable-x11 \
-  --with-bindings=perl,python
+  --with-bindings=perl,python --python=python2
 
   qmake mythtv.pro
   make all
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
   # basic install
   make INSTALL_ROOT=${pkgdir} install
   install -D -m0755 ${srcdir}/mythbackend ${pkgdir}/etc/rc.d/mythbackend



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-08-06 Thread Ionut Biru
Date: Friday, August 6, 2010 @ 17:41:26
  Author: ibiru
Revision: 86928

upgpkg: mythtv 25574-1
libva 1.0.4 rebuild, bump to the latest revision

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-08-06 21:40:59 UTC (rev 86927)
+++ PKGBUILD2010-08-06 21:41:26 UTC (rev 86928)
@@ -5,8 +5,8 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=25260
-pkgrel=3
+pkgver=25574
+pkgrel=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
@@ -24,7 +24,7 @@
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz
 mythbackend
 archlinux.conf.d.mythbackend)
-md5sums=('cf07023b48e9b84b0f01fc6d8f0ce2a5'
+md5sums=('bc8f005b24963f5b881cb98062677780'
  'feadcc9ad064d93d6dceab1efc0bd9ed'
  'bb8e4033d82428d827570fae9ba15e6a')
 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-07-11 Thread Ionut Biru
Date: Sunday, July 11, 2010 @ 06:47:23
  Author: ibiru
Revision: 85283

upgpkg: mythtv 25260-3 rebuild libva 0.31.0

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-07-11 10:36:22 UTC (rev 85282)
+++ PKGBUILD2010-07-11 10:47:23 UTC (rev 85283)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=25260
-pkgrel=2
+pkgrel=3
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-07-10 Thread Ionut Biru
Date: Saturday, July 10, 2010 @ 17:52:13
  Author: ibiru
Revision: 85221

upgpkg: mythtv 25260-2 libva 0.31.1 rebuild

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-07-10 21:41:51 UTC (rev 85220)
+++ PKGBUILD2010-07-10 21:52:13 UTC (rev 85221)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=25260
-pkgrel=1
+pkgrel=2
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-07-04 Thread Ionut Biru
Date: Sunday, July 4, 2010 @ 09:13:39
  Author: ibiru
Revision: 84775

upgpkg: mythtv 25260-1 update to latest revision

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-07-04 07:51:38 UTC (rev 84774)
+++ PKGBUILD2010-07-04 13:13:39 UTC (rev 84775)
@@ -5,25 +5,26 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=23562
-pkgrel=2
+pkgver=25260
+pkgrel=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
 license=('GPL')
-depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi' 
- 'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round' 
- 'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 
'wget' 
- 'libiec61883' 'mysql-python' 'mesa' 'libxinerama' 'libxrandr' 'yasm')
+depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi'
+ 'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round'
+ 'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 'wget'
+ 'libiec61883' 'mysql-python' 'mesa' 'libxinerama' 'libxrandr' 'faad2')
+makedepends=('yasm')
 optdepends=('xmltv: to download tv listings')
 replaces=('mythtv-contrib')
 conflicts=('mythtv-contrib')
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz 
-mythbackend 
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz
+mythbackend
 archlinux.conf.d.mythbackend)
-md5sums=('e487de15bcf44214557ad3a1e8e9697d'
+md5sums=('cf07023b48e9b84b0f01fc6d8f0ce2a5'
  'feadcc9ad064d93d6dceab1efc0bd9ed'
  'bb8e4033d82428d827570fae9ba15e6a')
 
@@ -37,7 +38,6 @@
   --enable-audio-alsa \
   --disable-audio-jack \
   --disable-audio-pulse \
-  --disable-audio-arts \
   --disable-altivec \
   --disable-distcc \
   --disable-ccache \
@@ -65,12 +65,12 @@
   --with-bindings=perl,python
 
   qmake mythtv.pro
-  make all || return 1
+  make all
   # basic install
-  make INSTALL_ROOT=${pkgdir} install || return 1
-  install -D -m0755 ${srcdir}/mythbackend ${pkgdir}/etc/rc.d/mythbackend || 
return 1
+  make INSTALL_ROOT=${pkgdir} install
+  install -D -m0755 ${srcdir}/mythbackend ${pkgdir}/etc/rc.d/mythbackend
   # config file
-  install -D -m644 ${srcdir}/archlinux.conf.d.mythbackend 
${pkgdir}/etc/conf.d/mythbackend || return 1
+  install -D -m644 ${srcdir}/archlinux.conf.d.mythbackend 
${pkgdir}/etc/conf.d/mythbackend
   # install contrib files
   cp -a contrib/$i ${pkgdir}/usr/share/mythtv
   # install database structure



[arch-commits] Commit in mythtv/trunk (PKGBUILD mythtv.install)

2010-02-15 Thread Giovanni Scafora
Date: Monday, February 15, 2010 @ 05:06:54
  Author: giovanni
Revision: 68936

upgpkg: mythtv 23562-1
Fixed FS18326

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythtv.install

+
 PKGBUILD   |   25 ++---
 mythtv.install |6 --
 2 files changed, 14 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-15 09:36:37 UTC (rev 68935)
+++ PKGBUILD2010-02-15 10:06:54 UTC (rev 68936)
@@ -5,34 +5,32 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
-pkgver=0.22
-pkgrel=8
+pkgver=23562
+pkgrel=1
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
 license=('GPL')
-groups=('pvr')
 depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi' 
  'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round' 
  'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 
'wget' 
  'libiec61883' 'mysql-python' 'mesa' 'libxinerama' 'libxrandr' 'yasm')
-optdepends=('xmltv: to download tv listings'
-'mythplugins: plugins for mythtv')
+optdepends=('xmltv: to download tv listings')
+replaces=('mythtv-contrib')
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
-source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2 
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz 
 mythbackend 
 archlinux.conf.d.mythbackend)
-md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' 
- 'feadcc9ad064d93d6dceab1efc0bd9ed' 
+md5sums=('e487de15bcf44214557ad3a1e8e9697d'
+ 'feadcc9ad064d93d6dceab1efc0bd9ed'
  'bb8e4033d82428d827570fae9ba15e6a')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr --cpu=${ARCH} \
-  --mandir=/usr/share/man \
   --enable-mmx \
   --enable-audio-oss \
   --enable-audio-alsa \
@@ -66,10 +64,15 @@
   --with-bindings=perl,python
 
   qmake mythtv.pro
-  make || return 1
+  make all || return 1
   # basic install
   make INSTALL_ROOT=${pkgdir} install || return 1
   install -D -m0755 ${srcdir}/mythbackend ${pkgdir}/etc/rc.d/mythbackend || 
return 1
   # config file
   install -D -m644 ${srcdir}/archlinux.conf.d.mythbackend 
${pkgdir}/etc/conf.d/mythbackend || return 1
+  # install contrib files
+  cp -a contrib/$i ${pkgdir}/usr/share/mythtv
+  # install database structure
+  cd database
+  cp -a mc.sql ${pkgdir}/usr/share/mythtv
 }

Modified: mythtv.install
===
--- mythtv.install  2010-02-15 09:36:37 UTC (rev 68935)
+++ mythtv.install  2010-02-15 10:06:54 UTC (rev 68936)
@@ -1,13 +1,7 @@
-# arg 1:  the new package version
 post_install() {
echo See \MythTV\ on the Archlinux Wiki for installation information - 
Extensive!!
 }
 
-# arg 1:  the old package version
 post_remove() {
echo -e NOTE: mysql database was not removed. To remove run:\nmysql -u 
root -e 'drop database mythconverg;'
 }
-
-op=$1
-shift
-$op $*



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-02-15 Thread Giovanni Scafora
Date: Monday, February 15, 2010 @ 06:21:10
  Author: giovanni
Revision: 68942

upgpkg: mythtv 23562-2
small fix

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-15 10:25:02 UTC (rev 68941)
+++ PKGBUILD2010-02-15 11:21:10 UTC (rev 68942)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=23562
-pkgrel=1
+pkgrel=2
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
@@ -17,6 +17,7 @@
  'libiec61883' 'mysql-python' 'mesa' 'libxinerama' 'libxrandr' 'yasm')
 optdepends=('xmltv: to download tv listings')
 replaces=('mythtv-contrib')
+conflicts=('mythtv-contrib')
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz 



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-02-10 Thread Giovanni Scafora
Date: Wednesday, February 10, 2010 @ 18:38:04
  Author: giovanni
Revision: 68138

upgpkg: mythtv 0.22-8
Fixed FS18272

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   21 -
 1 file changed, 16 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-10 23:24:17 UTC (rev 68137)
+++ PKGBUILD2010-02-10 23:38:04 UTC (rev 68138)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=0.22
-pkgrel=7
+pkgrel=8
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
@@ -15,7 +15,7 @@
 depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi' 
  'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round' 
  'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 
'wget' 
- 'libiec61883' 'mysql-python' 'mesa' 'libxinerama')
+ 'libiec61883' 'mysql-python' 'mesa' 'libxinerama' 'libxrandr' 'yasm')
 optdepends=('xmltv: to download tv listings'
 'mythplugins: plugins for mythtv')
 backup=('etc/conf.d/mythbackend')
@@ -32,13 +32,20 @@
 
   ARCH=${CARCH/_/-}
   ./configure --prefix=/usr --cpu=${ARCH} \
+  --mandir=/usr/share/man \
   --enable-mmx \
   --enable-audio-oss \
   --enable-audio-alsa \
   --disable-audio-jack \
   --disable-audio-pulse \
   --disable-audio-arts \
+  --disable-altivec \
+  --disable-distcc \
+  --disable-ccache \
+  --enable-ffmpeg \
   --enable-vdpau \
+  --enable-libfaad \
+  --enable-glx-procaddrarb \
   --enable-dvb \
   --enable-lirc \
   --enable-joystick-menu \
@@ -47,12 +54,16 @@
   --enable-dvb \
   --dvb-path=/usr/include \
   --enable-xvmc \
-  --enable-ffmpeg \
+  --enable-xvmcw \
   --enable-xvmc-pro \
   --enable-xvmc-vld \
+  --enable-firewire \
+  --enable-fribidi \
   --enable-opengl-vsync \
-  --enable-firewire \
-  --enable-fribidi 
+  --enable-xrandr \
+  --enable-xv \
+  --enable-x11 \
+  --with-bindings=perl,python
 
   qmake mythtv.pro
   make || return 1



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-02-08 Thread Giovanni Scafora
Date: Monday, February 8, 2010 @ 11:20:25
  Author: giovanni
Revision: 67564

upgpkg: mythtv 0.22-7
rebuild againt testing qt

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-08 14:00:27 UTC (rev 67563)
+++ PKGBUILD2010-02-08 16:20:25 UTC (rev 67564)
@@ -6,7 +6,7 @@
 
 pkgname=mythtv
 pkgver=0.22
-pkgrel=6
+pkgrel=7
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
@@ -15,7 +15,7 @@
 depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi' 
  'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round' 
  'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 
'wget' 
- 'libiec61883' 'mysql-python')
+ 'libiec61883' 'mysql-python' 'mesa' 'libxinerama')
 optdepends=('xmltv: to download tv listings'
 'mythplugins: plugins for mythtv')
 backup=('etc/conf.d/mythbackend')



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-02-06 Thread Giovanni Scafora
Date: Saturday, February 6, 2010 @ 16:43:35
  Author: giovanni
Revision: 67422

upgpkg: mythtv 0.22-6
Fixed bugs

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   92 ++---
 1 file changed, 46 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-06 20:19:13 UTC (rev 67421)
+++ PKGBUILD2010-02-06 21:43:35 UTC (rev 67422)
@@ -1,64 +1,64 @@
 # $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
 # Contributor: kleptophob...@gmail.com
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=mythtv
 pkgver=0.22
-pkgrel=5
+pkgrel=6
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
-license=('GPL2')
+license=('GPL')
 groups=('pvr')
-depends=('mysql-clients=5.1.41-2' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 
'fribidi')
+depends=('mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 'fribidi' 
+ 'perl-soap-lite' 'perl-date-manip' 'perl-xml-sax' 'perl-math-round' 
+ 'perl-net-upnp' 'perl-dbd-mysql' 'perl-time-hires' 'libavc1394' 
'wget' 
+ 'libiec61883' 'mysql-python')
+optdepends=('xmltv: to download tv listings'
+'mythplugins: plugins for mythtv')
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
-source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2
-   mythbackend
-   archlinux.conf.d.mythbackend)
-md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' 'feadcc9ad064d93d6dceab1efc0bd9ed'\
+source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2 
+mythbackend 
+archlinux.conf.d.mythbackend)
+md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' 
+ 'feadcc9ad064d93d6dceab1efc0bd9ed' 
  'bb8e4033d82428d827570fae9ba15e6a')
-sha1sums=('519ca3de5570e93acdd896f2d0a31b11c71c1d9a' 
'b83391d1fd51cb3aad21377eeae595126130a166'\
- '66a11445ba4b96b8ed3753cc058916bab075d58e')
 
 build() {
-   cd $srcdir/${pkgname}-${pkgver} 
-   
-   ARCH=${CARCH/_/-}
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ARCH=${CARCH/_/-}
   ./configure --prefix=/usr --cpu=${ARCH} \
---enable-mmx \
---enable-audio-oss \
---enable-audio-alsa \
---disable-audio-jack \
---disable-audio-pulse \
---disable-audio-arts \
---disable-vdpau \
---enable-dvb \
---enable-lirc \
---enable-joystick-menu \
---enable-v4l \
---enable-ivtv \
---enable-dvb \
---dvb-path=/usr/include \
---enable-xvmc \
---enable-ffmpeg \
---enable-xvmc-pro \
---enable-xvmc-vld \
---enable-opengl-vsync \
---enable-firewire \
---enable-fribidi 
+  --enable-mmx \
+  --enable-audio-oss \
+  --enable-audio-alsa \
+  --disable-audio-jack \
+  --disable-audio-pulse \
+  --disable-audio-arts \
+  --enable-vdpau \
+  --enable-dvb \
+  --enable-lirc \
+  --enable-joystick-menu \
+  --enable-v4l \
+  --enable-ivtv \
+  --enable-dvb \
+  --dvb-path=/usr/include \
+  --enable-xvmc \
+  --enable-ffmpeg \
+  --enable-xvmc-pro \
+  --enable-xvmc-vld \
+  --enable-opengl-vsync \
+  --enable-firewire \
+  --enable-fribidi 
 
-   # build
-
-   qmake mythtv.pro  
-   make 
-
-   # basic install
-   make INSTALL_ROOT=$pkgdir install 
-   
-   install -D -m0755 $srcdir/mythbackend $pkgdir/etc/rc.d/mythbackend 
-
-   # config file 
-   install -D -m644 $srcdir/archlinux.conf.d.mythbackend 
$pkgdir/etc/conf.d/mythbackend
+  qmake mythtv.pro
+  make || return 1
+  # basic install
+  make INSTALL_ROOT=${pkgdir} install || return 1
+  install -D -m0755 ${srcdir}/mythbackend ${pkgdir}/etc/rc.d/mythbackend || 
return 1
+  # config file
+  install -D -m644 ${srcdir}/archlinux.conf.d.mythbackend 
${pkgdir}/etc/conf.d/mythbackend || return 1
 }



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2010-01-23 Thread Eric Bélanger
Date: Saturday, January 23, 2010 @ 20:31:36
  Author: eric
Revision: 65007

upgpkg: mythtv 0.22-4
Rebuilt for libpng 1.4 and libjpeg 8

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-01-24 01:10:58 UTC (rev 65006)
+++ PKGBUILD2010-01-24 01:31:36 UTC (rev 65007)
@@ -5,7 +5,7 @@
 
 pkgname=mythtv
 pkgver=0.22
-pkgrel=3
+pkgrel=4
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;



[arch-commits] Commit in mythtv/trunk (PKGBUILD mythbackend)

2009-11-24 Thread Juergen Hoetzel
Date: Tuesday, November 24, 2009 @ 17:32:39
  Author: juergen
Revision: 59601

ensure logfile exists (writeable for mythtv backend user)

Modified:
  mythtv/trunk/PKGBUILD
  mythtv/trunk/mythbackend

-+
 PKGBUILD|3 +--
 mythbackend |2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-24 22:14:18 UTC (rev 59600)
+++ PKGBUILD2009-11-24 22:32:39 UTC (rev 59601)
@@ -17,8 +17,7 @@
 source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2
mythbackend
archlinux.conf.d.mythbackend)
-md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0'
- '0228c7b3aca06f04b7584913ebe76d68'
+md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' 'feadcc9ad064d93d6dceab1efc0bd9ed'\
  'bb8e4033d82428d827570fae9ba15e6a')
 
 build() {

Modified: mythbackend
===
--- mythbackend 2009-11-24 22:14:18 UTC (rev 59600)
+++ mythbackend 2009-11-24 22:32:39 UTC (rev 59601)
@@ -48,7 +48,7 @@
stat_fail
exit 1;
fi  
-   touch /var/run/mythbackend.pid
+   touch ${PIDFILE} ${LOG_FILE}
chown $MBE_USER ${PIDFILE} ${LOG_FILE}
if su $MBE_USER -c HOME=${mbe_user_home} mythbackend \
--daemon \



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2009-11-18 Thread Andrea Scarpino
Date: Wednesday, November 18, 2009 @ 11:42:03
  Author: andrea
Revision: 58963

upgpkg: mythtv 0.22-2
rebuilt mysql 5.1.41

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |   17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-18 15:47:01 UTC (rev 58962)
+++ PKGBUILD2009-11-18 16:42:03 UTC (rev 58963)
@@ -5,19 +5,22 @@
 
 pkgname=mythtv
 pkgver=0.22
-pkgrel=1
+pkgrel=2
 pkgdesc=A Homebrew PVR project
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org/;
 license=('GPL2')
 groups=('pvr')
-depends=('bash' 'mysql-clients' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 
'fribidi')
+depends=('mysql-clients=5.1.41' 'qt' 'lame' 'lirc-utils' 'ffmpeg' 'libxvmc' 
'fribidi')
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
-source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2 
mythbackend)
-md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' '0228c7b3aca06f04b7584913ebe76d68')
+source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2
+   mythbackend
+   archlinux.conf.d.mythbackend)
+md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0'
+ '0228c7b3aca06f04b7584913ebe76d68'
+ 'bb8e4033d82428d827570fae9ba15e6a')
 
-# 
 build() {
cd $srcdir/${pkgname}-${pkgver} 

@@ -53,8 +56,8 @@
# basic install
make INSTALL_ROOT=$pkgdir install 

-   install -D -m0755 $startdir/src/mythbackend $pkgdir/etc/rc.d/mythbackend 
+   install -D -m0755 $srcdir/mythbackend $pkgdir/etc/rc.d/mythbackend 
 
# config file 
-   install -D -m644 $startdir/src/archlinux.conf.d.mythbackend 
$startdir/pkg/etc/conf.d/mythbackend
+   install -D -m644 $srcdir/archlinux.conf.d.mythbackend 
$pkgdir/etc/conf.d/mythbackend
 }



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2009-11-10 Thread Juergen Hoetzel
Date: Tuesday, November 10, 2009 @ 16:32:01
  Author: juergen
Revision: 58634

fix invalid/duplicate configure options

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-10 19:08:04 UTC (rev 58633)
+++ PKGBUILD2009-11-10 21:32:01 UTC (rev 58634)
@@ -24,7 +24,7 @@
ARCH=${CARCH/_/-}
   ./configure --prefix=/usr --cpu=${ARCH} \
 --enable-mmx \
---disable-audio-oss \
+--enable-audio-oss \
 --enable-audio-alsa \
 --disable-audio-jack \
 --disable-audio-pulse \
@@ -33,7 +33,7 @@
 --enable-dvb \
 --enable-lirc \
 --enable-joystick-menu \
---disable-firewire --enable-v4l \
+--enable-v4l \
 --enable-ivtv \
 --enable-dvb \
 --dvb-path=/usr/include/linux/dvb \



[arch-commits] Commit in mythtv/trunk (PKGBUILD)

2009-11-08 Thread Juergen Hoetzel
Date: Sunday, November 8, 2009 @ 18:32:09
  Author: juergen
Revision: 58565

fix FS#12328 (enable firewire support)

Modified:
  mythtv/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-08 23:25:08 UTC (rev 58564)
+++ PKGBUILD2009-11-08 23:32:09 UTC (rev 58565)
@@ -15,7 +15,7 @@
 backup=('etc/conf.d/mythbackend')
 install=mythtv.install
 source=(ftp://ftp.osuosl.org/pub/mythtv/${pkgname}-${pkgver}.tar.bz2 
mythbackend)
-md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' '75614f43b579fcae870a7c128038f147')
+md5sums=('e8f8b5b6a51cd7be700e215b2a1bf2c0' '0228c7b3aca06f04b7584913ebe76d68')
 
 # 
 build() {
@@ -42,7 +42,8 @@
 --enable-xvmc-pro \
 --enable-xvmc-vld \
 --enable-opengl-vsync \
---disable-fribidi 
+--enable-firewire \
+--enable-fribidi 
 
# build