rpms/openafs/devel openafs-1.6.1-systemd-fhs.patch, 1.1, 1.2 openafs.spec, 1.31, 1.32
by Ken Dreyer
Author: ktdreyer
Update of /cvs/free/rpms/openafs/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7693
Modified Files:
openafs-1.6.1-systemd-fhs.patch openafs.spec
Log Message:
* Tue Dec 11 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-9
- Correct bosserver path in systemd unit file
openafs-1.6.1-systemd-fhs.patch:
openafs-client.service | 4 ++--
openafs-server.service | 3 +--
2 files changed, 3 insertions(+), 4 deletions(-)
Index: openafs-1.6.1-systemd-fhs.patch
===================================================================
RCS file: /cvs/free/rpms/openafs/devel/openafs-1.6.1-systemd-fhs.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openafs-1.6.1-systemd-fhs.patch 9 Oct 2012 06:01:35 -0000 1.1
+++ openafs-1.6.1-systemd-fhs.patch 12 Dec 2012 04:56:10 -0000 1.2
@@ -37,7 +37,7 @@
[Service]
EnvironmentFile=-/etc/sysconfig/openafs
-ExecStart=/usr/afs/bin/bosserver $BOSSERVER_ARGS
-+ExecStart=/usr/bin/bosserver $BOSSERVER_ARGS
++ExecStart=/usr/sbin/bosserver $BOSSERVER_ARGS
ExecStop=/usr/bin/bos shutdown localhost -wait -localauth
[Install]
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/devel/openafs.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- openafs.spec 8 Nov 2012 19:26:04 -0000 1.31
+++ openafs.spec 12 Dec 2012 04:56:10 -0000 1.32
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.6.1
-Release: 8%{?dist}
+Release: 9%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -465,6 +465,9 @@
%{_datadir}/openafs/C/afszcm.cat
%changelog
+* Tue Dec 11 2012 Ken Dreyer <ktdreyer(a)ktdreyer.com> 0:1.6.1-9
+- Correct bosserver path in systemd unit file
+
* Wed Nov 08 2012 Jack Neely <jjneely(a)ncsu.edu> 0:1.6.1-8
- Implement a directory for sourced post init scripts. These
fine tune the AFS client's behavior after startup and live in
11 years, 11 months
rpms/ffmpeg/EL-6 ffmpeg-0.10-celt.patch, NONE, 1.1 .cvsignore, 1.27, 1.28 ffmpeg.spec, 1.48, 1.49 sources, 1.27, 1.28
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/ffmpeg/EL-6
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14996
Modified Files:
.cvsignore ffmpeg.spec sources
Added Files:
ffmpeg-0.10-celt.patch
Log Message:
* Tue Dec 11 2012 Dominik Mierzejewski <rpm at greysector.net> - 0.10.6-1
- Updated to 0.10.6
- Patch to build with older libcelt
ffmpeg-0.10-celt.patch:
configure | 2 +-
libavcodec/libcelt_dec.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
--- NEW FILE ffmpeg-0.10-celt.patch ---
diff -up ffmpeg-0.10/configure.celt ffmpeg-0.10/configure
--- ffmpeg-0.10/configure.celt 2012-01-26 23:15:59.000000000 +0100
+++ ffmpeg-0.10/configure 2012-03-11 21:49:38.000000000 +0100
@@ -3128,7 +3128,7 @@ enabled gnutls && require_pkg_config
enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
enabled libass && require_pkg_config libass ass/ass.h ass_library_init
enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
- { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
+ { check_lib celt/celt.h celt_decoder_create -lcelt0 ||
die "ERROR: libcelt version must be >= 0.11.0."; }
enabled libdc1394 && require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new
enabled libdirac && require_pkg_config dirac \
diff -up ffmpeg-0.10/libavcodec/libcelt_dec.c.celt ffmpeg-0.10/libavcodec/libcelt_dec.c
--- ffmpeg-0.10/libavcodec/libcelt_dec.c.celt 2012-01-26 23:15:59.000000000 +0100
+++ ffmpeg-0.10/libavcodec/libcelt_dec.c 2012-03-11 21:48:21.000000000 +0100
@@ -52,7 +52,7 @@ static int ff_celt_error_to_averror(int
static int ff_celt_bitstream_version_hack(CELTMode *mode)
{
CELTHeader header = { .version_id = 0 };
- celt_header_init(&header, mode, 960, 2);
+ celt_header_init(&header, mode, 2);
return header.version_id;
}
@@ -67,7 +67,7 @@ static av_cold int libcelt_dec_init(AVCo
celt->mode = celt_mode_create(c->sample_rate, c->frame_size, &err);
if (!celt->mode)
return ff_celt_error_to_averror(err);
- celt->dec = celt_decoder_create_custom(celt->mode, c->channels, &err);
+ celt->dec = celt_decoder_create(celt->mode, c->channels, &err);
if (!celt->dec) {
celt_mode_destroy(celt->mode);
return ff_celt_error_to_averror(err);
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/EL-6/.cvsignore,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- .cvsignore 7 Oct 2012 16:32:39 -0000 1.27
+++ .cvsignore 11 Dec 2012 22:47:17 -0000 1.28
@@ -1 +1 @@
-ffmpeg-0.10.5.tar.bz2
+ffmpeg-0.10.6.tar.bz2
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/EL-6/ffmpeg.spec,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ffmpeg.spec 7 Oct 2012 16:32:39 -0000 1.48
+++ ffmpeg.spec 11 Dec 2012 22:47:17 -0000 1.49
@@ -6,12 +6,11 @@
%if 0%{?rhel}
%global _without_vpx 1
-%global _without_celt 1
%endif
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 0.10.5
+Version: 0.10.6
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
@@ -27,6 +26,7 @@
%endif
Source1: ffmpeg-snapshot-oldabi.sh
Patch0: ffmpeg-0.10.4-backport-libv4l2.patch
+Patch1: ffmpeg-0.10-celt.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{name}-libs = %{version}-%{release}
BuildRequires: bzip2-devel
@@ -159,6 +159,7 @@
%setup -q -n ffmpeg-%{version}
%endif
%patch0 -p1
+%patch1 -p1 -b .celt
%build
mkdir generic
@@ -280,6 +281,10 @@
%changelog
+* Tue Dec 11 2012 Dominik Mierzejewski <rpm at greysector.net> - 0.10.6-1
+- Updated to 0.10.6
+- Patch to build with older libcelt
+
* Thu Oct 04 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.10.5-1
- Updated to 0.10.5
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/EL-6/sources,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- sources 7 Oct 2012 16:32:39 -0000 1.27
+++ sources 11 Dec 2012 22:47:17 -0000 1.28
@@ -1 +1 @@
-f1384d0312f95d6294e017fc38318521 ffmpeg-0.10.5.tar.bz2
+30dec94c65ae9a8cec9b950b158abd1c ffmpeg-0.10.6.tar.bz2
11 years, 11 months
rpms/qmmp-plugins-freeworld/devel .cvsignore, 1.22, 1.23 qmmp-plugins-freeworld.spec, 1.32, 1.33 sources, 1.22, 1.23
by Karel Volný
Author: kvolny
Update of /cvs/free/rpms/qmmp-plugins-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10781
Modified Files:
.cvsignore qmmp-plugins-freeworld.spec sources
Log Message:
* Tue Dec 11 2012 Karel Volný <kvolny(a)redhat.com> 0.6.5-1
- version bump
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/.cvsignore,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- .cvsignore 6 Nov 2012 15:44:34 -0000 1.22
+++ .cvsignore 11 Dec 2012 17:09:56 -0000 1.23
@@ -1 +1 @@
-qmmp-0.6.4.tar.bz2
+qmmp-0.6.5.tar.bz2
Index: qmmp-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/qmmp-plugins-freeworld.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- qmmp-plugins-freeworld.spec 24 Nov 2012 15:24:00 -0000 1.32
+++ qmmp-plugins-freeworld.spec 11 Dec 2012 17:09:56 -0000 1.33
@@ -1,6 +1,6 @@
Name: qmmp-plugins-freeworld
-Version: 0.6.4
-Release: 2%{?dist}
+Version: 0.6.5
+Release: 1%{?dist}
Summary: Plugins for qmmp (Qt-based multimedia player)
Group: Applications/Multimedia
@@ -131,6 +131,9 @@
%changelog
+* Tue Dec 11 2012 Karel Volný <kvolny(a)redhat.com> 0.6.5-1
+- version bump
+
* Sat Nov 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.4-2
- Rebuilt for FFmpeg 1.0
Index: sources
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/sources,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- sources 6 Nov 2012 15:44:34 -0000 1.22
+++ sources 11 Dec 2012 17:09:56 -0000 1.23
@@ -1 +1 @@
-134e9b5187e73f0fd333b7b6c9e8672b qmmp-0.6.4.tar.bz2
+139d28e9131702dfa976cc79ab751a3d qmmp-0.6.5.tar.bz2
11 years, 11 months
rpms/vbam/devel .cvsignore,1.3,1.4 sources,1.3,1.4 vbam.spec,1.6,1.7
by Jeremy Newton
Author: jem256
Update of /cvs/free/rpms/vbam/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2067/devel
Modified Files:
.cvsignore sources vbam.spec
Log Message:
Updated to new version, should fix bug#2583
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vbam/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 5 Jul 2012 18:20:13 -0000 1.3
+++ .cvsignore 10 Dec 2012 20:45:49 -0000 1.4
@@ -1 +1 @@
-vbam-1.8.0.1097.tar.xz
+vbam-1.8.0.1149.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vbam/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 5 Jul 2012 18:20:13 -0000 1.3
+++ sources 10 Dec 2012 20:45:49 -0000 1.4
@@ -1 +1 @@
-34aa21848c996d499454028ad8a11b30 vbam-1.8.0.1097.tar.xz
+4d6efcce9664942ae9a569d63b8c099d vbam-1.8.0.1149.tar.xz
Index: vbam.spec
===================================================================
RCS file: /cvs/free/rpms/vbam/devel/vbam.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vbam.spec 24 Nov 2012 15:24:19 -0000 1.6
+++ vbam.spec 10 Dec 2012 20:45:49 -0000 1.7
@@ -1,16 +1,16 @@
Name: vbam
-#Pre-release version 1.8.0.1097 is a snapshot of svn 1097
-Version: 1.8.0.1097
-Release: 3%{?dist}
+#Pre-release version 1.8.0.1149 is a snapshot of svn 1149
+Version: 1.8.0.1149
+Release: 1%{?dist}
#Will not create a binary vbam package, only vbam-gtk and vbam-sdl subpackages
Summary: High compatibility Gameboy Advance Emulator combining VBA developments
License: GPLv2
Url: http://www.vba-m.com
##To download source run these commands:
-#svn co -r 1097 https://vbam.svn.sourceforge.net/svnroot/vbam vbam-temp
-#cd vbam-temp && rm -r -f trunk/project && mv trunk vbam-1.8.0.1097
-#tar -Jcv --exclude-vcs -f ../vbam-1.8.0.1097.tar.xz vbam-1.8.0.1097
+#svn co -r 1149 https://vbam.svn.sourceforge.net/svnroot/vbam vbam-temp
+#cd vbam-temp && rm -r -f trunk/project && mv trunk vbam-1.8.0.1149
+#tar -Jcv --exclude-vcs -f ../vbam-1.8.0.1149.tar.xz vbam-1.8.0.1149
#cd .. && rm -r -f vbam-temp
Source: %{name}-%{version}.tar.xz
BuildRequires: SDL-devel
@@ -28,7 +28,6 @@
BuildRequires: gtkglextmm-devel
BuildRequires: gtkmm24-devel
BuildRequires: cairo-devel
-BuildRequires: ffmpeg-devel
BuildRequires: SFML-devel
BuildRequires: openal-soft-devel
@@ -89,9 +88,7 @@
%build
%cmake -DBUILD_SHARED_LIBS:BOOL=OFF -DVERSION=%{version} -DCMAKE_SKIP_RPATH=ON -DENABLE_LINK=ON
-#Required for ffmpeg header to build
-export CPATH='/usr/include/ffmpeg'
-#Needed for rpmfusion build servers
+#V=1 Needed for rpmfusion build servers
make V=1
%install
@@ -137,11 +134,9 @@
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
-* Sat Nov 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.8.0.1097-3
-- Rebuilt for FFmpeg 1.0
-
-* Sun Jul 15 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1097-2
-- Minor change to fix build issues
+* Mon Dec 10 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1149-1
+- Updated to new upstream version
+- FFMpeg dep removed due to only needed by wx and now disabled by default
* Thu Jul 5 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1097-1
- Updated to new upstream version
11 years, 11 months
rpms/vbam/F-18 .cvsignore,1.3,1.4 sources,1.3,1.4 vbam.spec,1.6,1.7
by Jeremy Newton
Author: jem256
Update of /cvs/free/rpms/vbam/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1849/F-18
Modified Files:
.cvsignore sources vbam.spec
Log Message:
Updating to new version, should fix bug#2583
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vbam/F-18/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 5 Jul 2012 18:20:13 -0000 1.3
+++ .cvsignore 10 Dec 2012 20:44:52 -0000 1.4
@@ -1 +1 @@
-vbam-1.8.0.1097.tar.xz
+vbam-1.8.0.1149.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vbam/F-18/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 5 Jul 2012 18:20:13 -0000 1.3
+++ sources 10 Dec 2012 20:44:53 -0000 1.4
@@ -1 +1 @@
-34aa21848c996d499454028ad8a11b30 vbam-1.8.0.1097.tar.xz
+4d6efcce9664942ae9a569d63b8c099d vbam-1.8.0.1149.tar.xz
Index: vbam.spec
===================================================================
RCS file: /cvs/free/rpms/vbam/F-18/vbam.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vbam.spec 24 Nov 2012 15:24:27 -0000 1.6
+++ vbam.spec 10 Dec 2012 20:44:53 -0000 1.7
@@ -1,16 +1,16 @@
Name: vbam
-#Pre-release version 1.8.0.1097 is a snapshot of svn 1097
-Version: 1.8.0.1097
-Release: 3%{?dist}
+#Pre-release version 1.8.0.1149 is a snapshot of svn 1149
+Version: 1.8.0.1149
+Release: 1%{?dist}
#Will not create a binary vbam package, only vbam-gtk and vbam-sdl subpackages
Summary: High compatibility Gameboy Advance Emulator combining VBA developments
License: GPLv2
Url: http://www.vba-m.com
##To download source run these commands:
-#svn co -r 1097 https://vbam.svn.sourceforge.net/svnroot/vbam vbam-temp
-#cd vbam-temp && rm -r -f trunk/project && mv trunk vbam-1.8.0.1097
-#tar -Jcv --exclude-vcs -f ../vbam-1.8.0.1097.tar.xz vbam-1.8.0.1097
+#svn co -r 1149 https://vbam.svn.sourceforge.net/svnroot/vbam vbam-temp
+#cd vbam-temp && rm -r -f trunk/project && mv trunk vbam-1.8.0.1149
+#tar -Jcv --exclude-vcs -f ../vbam-1.8.0.1149.tar.xz vbam-1.8.0.1149
#cd .. && rm -r -f vbam-temp
Source: %{name}-%{version}.tar.xz
BuildRequires: SDL-devel
@@ -28,7 +28,6 @@
BuildRequires: gtkglextmm-devel
BuildRequires: gtkmm24-devel
BuildRequires: cairo-devel
-BuildRequires: ffmpeg-devel
BuildRequires: SFML-devel
BuildRequires: openal-soft-devel
@@ -89,9 +88,7 @@
%build
%cmake -DBUILD_SHARED_LIBS:BOOL=OFF -DVERSION=%{version} -DCMAKE_SKIP_RPATH=ON -DENABLE_LINK=ON
-#Required for ffmpeg header to build
-export CPATH='/usr/include/ffmpeg'
-#Needed for rpmfusion build servers
+#V=1 Needed for rpmfusion build servers
make V=1
%install
@@ -137,11 +134,9 @@
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
-* Sat Nov 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.8.0.1097-3
-- Rebuilt for FFmpeg 1.0
-
-* Sun Jul 15 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1097-2
-- Minor change to fix build issues
+* Mon Dec 10 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1149-1
+- Updated to new upstream version
+- FFMpeg dep removed due to only needed by wx and now disabled by default
* Thu Jul 5 2012 Jeremy Newton <alexjnewt(a)hotmail.com> - 1.8.0.1097-1
- Updated to new upstream version
11 years, 11 months
rpms/mythtv/EL-6 mythtv-0.26-fixes.patch,NONE,1.1
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/mythtv/EL-6
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26744
Added Files:
mythtv-0.26-fixes.patch
Log Message:
Add fixes patch.
mythtv-0.26-fixes.patch:
README.rst | 1
mythplugins/mytharchive/i18n/mytharchive_es_es.qm |binary
mythplugins/mytharchive/i18n/mytharchive_es_es.ts | 45
mythplugins/mythgallery/i18n/mythgallery_es_es.ts | 4
mythplugins/mythgame/i18n/mythgame_es_es.ts | 4
mythplugins/mythmusic/i18n/mythmusic_es_es.ts | 68
mythplugins/mythmusic/i18n/mythmusic_it.qm |binary
mythplugins/mythmusic/i18n/mythmusic_it.ts | 3790 +++++++---
mythplugins/mythmusic/mythmusic/cddb.cpp | 6
mythplugins/mythmusic/mythmusic/cdrip.cpp | 2
mythplugins/mythmusic/mythmusic/shoutcast.cpp | 20
mythplugins/mythweather/i18n/mythweather_es_es.qm |binary
mythplugins/mythweather/i18n/mythweather_es_es.ts | 3
mythplugins/mythweather/i18n/mythweather_pl.qm |binary
mythplugins/mythweather/i18n/mythweather_pl.ts | 3
mythtv/bindings/perl/Makefile.PL | 1
mythtv/bindings/perl/MythTV.pm | 20
mythtv/bindings/python/MythTV/altdict.py | 2
mythtv/bindings/python/MythTV/dataheap.py | 58
mythtv/bindings/python/MythTV/static.py | 2
mythtv/bindings/python/MythTV/system.py | 4
mythtv/bindings/python/setup.py | 2
mythtv/contrib/imports/mirobridge/mirobridge.py | 101
mythtv/external/FFmpeg/libavcodec/pcm.c | 5
mythtv/i18n/mythfrontend_es_es.qm |binary
mythtv/i18n/mythfrontend_es_es.ts | 2180 +++--
mythtv/i18n/mythfrontend_pl.qm |binary
mythtv/i18n/mythfrontend_pl.ts | 2733 +++----
mythtv/libs/libmyth/mythcontext.cpp | 2
mythtv/libs/libmyth/mythmediamonitor.cpp | 2
mythtv/libs/libmythbase/signalhandling.cpp | 8
mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp | 153
mythtv/libs/libmythtv/Bluray/bdringbuffer.h | 6
mythtv/libs/libmythtv/Bluray/mythbdplayer.cpp | 4
mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp | 8
mythtv/libs/libmythtv/DVD/dvdringbuffer.h | 6
mythtv/libs/libmythtv/DVD/mythdvdplayer.cpp | 8
mythtv/libs/libmythtv/DeviceReadBuffer.cpp | 7
mythtv/libs/libmythtv/ThreadedFileWriter.cpp | 2
mythtv/libs/libmythtv/avformatdecoder.cpp | 99
mythtv/libs/libmythtv/decoderbase.h | 3
mythtv/libs/libmythtv/mythplayer.cpp | 39
mythtv/libs/libmythtv/ringbuffer.h | 4
mythtv/libs/libmythtv/tv_play.cpp | 11
mythtv/libs/libmythtv/tv_rec.cpp | 6
mythtv/libs/libmythui/libmythui.pro | 1
mythtv/libs/libmythui/mythscreenstack.cpp | 2
mythtv/libs/libmythui/mythuibuttonlist.cpp | 2
mythtv/libs/libmythui/mythuiimage.cpp | 3
mythtv/libs/libmythui/mythuitype.cpp | 7
mythtv/libs/libmythui/mythuiwebbrowser.cpp | 10
mythtv/programs/mythavtest/main.cpp | 5
mythtv/programs/mythbackend/autoexpire.cpp | 4
mythtv/programs/mythbackend/autoexpire.h | 1
mythtv/programs/mythbackend/main.cpp | 5
mythtv/programs/mythbackend/main_helpers.cpp | 4
mythtv/programs/mythbackend/mainserver.cpp | 18
mythtv/programs/mythbackend/scheduler.cpp | 14
mythtv/programs/mythccextractor/main.cpp | 5
mythtv/programs/mythcommflag/main.cpp | 5
mythtv/programs/mythfilldatabase/main.cpp | 5
mythtv/programs/mythfrontend/guidegrid.cpp | 17
mythtv/programs/mythfrontend/main.cpp | 5
mythtv/programs/mythfrontend/playbackbox.cpp | 4
mythtv/programs/mythfrontend/services/frontend.cpp | 2
mythtv/programs/mythjobqueue/main.cpp | 5
mythtv/programs/mythlcdserver/main.cpp | 5
mythtv/programs/mythlogserver/main.cpp | 5
mythtv/programs/mythmediaserver/main.cpp | 5
mythtv/programs/mythmetadatalookup/main.cpp | 5
mythtv/programs/mythpreviewgen/main.cpp | 5
mythtv/programs/mythshutdown/commandlineparser.cpp | 14
mythtv/programs/mythshutdown/main.cpp | 55
mythtv/programs/mythtranscode/main.cpp | 5
mythtv/programs/mythtv-setup/backendsettings.cpp | 6
mythtv/programs/mythtv-setup/main.cpp | 5
mythtv/programs/mythutil/main.cpp | 6
mythtv/programs/mythwelcome/main.cpp | 5
mythtv/programs/scripts/hardwareprofile/distros/mythtv_data/data_mythtv.py | 20
mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py | 27
mythtv/programs/scripts/metadata/Movie/tmdb3.py | 107
81 files changed, 6210 insertions(+), 3611 deletions(-)
--- NEW FILE mythtv-0.26-fixes.patch ---
README.rst | 1 +
mythplugins/mytharchive/i18n/mytharchive_es_es.qm | Bin 36188 -> 36136 bytes
mythplugins/mytharchive/i18n/mytharchive_es_es.ts | 45 +-
mythplugins/mythgallery/i18n/mythgallery_es_es.ts | 4 +-
mythplugins/mythgame/i18n/mythgame_es_es.ts | 4 +-
mythplugins/mythmusic/i18n/mythmusic_es_es.ts | 68 +-
mythplugins/mythmusic/i18n/mythmusic_it.qm | Bin 55341 -> 67158 bytes
mythplugins/mythmusic/i18n/mythmusic_it.ts | 3790 +++++++++++++++-----
mythplugins/mythmusic/mythmusic/cddb.cpp | 6 +-
mythplugins/mythmusic/mythmusic/cdrip.cpp | 2 +-
mythplugins/mythmusic/mythmusic/shoutcast.cpp | 20 +-
mythplugins/mythweather/i18n/mythweather_es_es.qm | Bin 23630 -> 23631 bytes
mythplugins/mythweather/i18n/mythweather_es_es.ts | 3 +-
mythplugins/mythweather/i18n/mythweather_pl.qm | Bin 23846 -> 23847 bytes
mythplugins/mythweather/i18n/mythweather_pl.ts | 3 +-
mythtv/bindings/perl/Makefile.PL | 1 -
mythtv/bindings/perl/MythTV.pm | 20 +-
mythtv/bindings/python/MythTV/altdict.py | 2 +-
mythtv/bindings/python/MythTV/dataheap.py | 58 +-
mythtv/bindings/python/MythTV/static.py | 2 +-
mythtv/bindings/python/MythTV/system.py | 4 +-
mythtv/bindings/python/setup.py | 2 +-
mythtv/contrib/imports/mirobridge/mirobridge.py | 101 +-
mythtv/external/FFmpeg/libavcodec/pcm.c | 5 +-
mythtv/i18n/mythfrontend_es_es.qm | Bin 669897 -> 672530 bytes
mythtv/i18n/mythfrontend_es_es.ts | 2180 +++++------
mythtv/i18n/mythfrontend_pl.qm | Bin 350611 -> 354449 bytes
mythtv/i18n/mythfrontend_pl.ts | 2733 +++++++-------
mythtv/libs/libmyth/mythcontext.cpp | 2 +-
mythtv/libs/libmyth/mythmediamonitor.cpp | 2 +-
mythtv/libs/libmythbase/signalhandling.cpp | 8 +-
.../libs/libmythtv/AirPlay/mythraopconnection.cpp | 153 +-
mythtv/libs/libmythtv/Bluray/bdringbuffer.h | 6 +-
mythtv/libs/libmythtv/Bluray/mythbdplayer.cpp | 4 +-
mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp | 8 +
mythtv/libs/libmythtv/DVD/dvdringbuffer.h | 6 +-
mythtv/libs/libmythtv/DVD/mythdvdplayer.cpp | 8 +-
mythtv/libs/libmythtv/DeviceReadBuffer.cpp | 7 +-
mythtv/libs/libmythtv/ThreadedFileWriter.cpp | 2 +-
mythtv/libs/libmythtv/avformatdecoder.cpp | 99 +-
mythtv/libs/libmythtv/decoderbase.h | 3 +-
mythtv/libs/libmythtv/mythplayer.cpp | 39 +-
mythtv/libs/libmythtv/ringbuffer.h | 4 +-
mythtv/libs/libmythtv/tv_play.cpp | 11 +-
mythtv/libs/libmythtv/tv_rec.cpp | 6 +-
mythtv/libs/libmythui/libmythui.pro | 1 +
mythtv/libs/libmythui/mythscreenstack.cpp | 2 +-
mythtv/libs/libmythui/mythuibuttonlist.cpp | 2 +-
mythtv/libs/libmythui/mythuiimage.cpp | 3 +-
mythtv/libs/libmythui/mythuitype.cpp | 7 +-
mythtv/libs/libmythui/mythuiwebbrowser.cpp | 10 +-
mythtv/programs/mythavtest/main.cpp | 5 +-
mythtv/programs/mythbackend/autoexpire.cpp | 4 +-
mythtv/programs/mythbackend/autoexpire.h | 1 -
mythtv/programs/mythbackend/main.cpp | 5 +-
mythtv/programs/mythbackend/main_helpers.cpp | 4 +-
mythtv/programs/mythbackend/mainserver.cpp | 18 +-
mythtv/programs/mythbackend/scheduler.cpp | 14 +-
mythtv/programs/mythccextractor/main.cpp | 5 +-
mythtv/programs/mythcommflag/main.cpp | 5 +-
mythtv/programs/mythfilldatabase/main.cpp | 5 +-
mythtv/programs/mythfrontend/guidegrid.cpp | 17 +-
mythtv/programs/mythfrontend/main.cpp | 5 +-
mythtv/programs/mythfrontend/playbackbox.cpp | 4 +-
mythtv/programs/mythfrontend/services/frontend.cpp | 2 +-
mythtv/programs/mythjobqueue/main.cpp | 5 +-
mythtv/programs/mythlcdserver/main.cpp | 5 +-
mythtv/programs/mythlogserver/main.cpp | 5 +-
mythtv/programs/mythmediaserver/main.cpp | 5 +-
mythtv/programs/mythmetadatalookup/main.cpp | 5 +-
mythtv/programs/mythpreviewgen/main.cpp | 5 +-
mythtv/programs/mythshutdown/commandlineparser.cpp | 14 +-
mythtv/programs/mythshutdown/main.cpp | 55 +-
mythtv/programs/mythtranscode/main.cpp | 5 +-
mythtv/programs/mythtv-setup/backendsettings.cpp | 6 +-
mythtv/programs/mythtv-setup/main.cpp | 5 +-
mythtv/programs/mythutil/main.cpp | 6 +-
mythtv/programs/mythwelcome/main.cpp | 5 +-
.../distros/mythtv_data/data_mythtv.py | 20 +-
.../nv_python_libs/youtube/youtube_api.py | 27 +-
mythtv/programs/scripts/metadata/Movie/tmdb3.py | 107 +-
81 files changed, 6210 insertions(+), 3611 deletions(-)
diff --git a/README.rst b/README.rst
index a151d89..576e0dc 100644
--- a/README.rst
+++ b/README.rst
@@ -20,3 +20,4 @@ Useful project links
- `Mailing lists <http://www.mythtv.org/mailman/listinfo>`_
- `IRC <irc://freenode.net/mythtv-users>`_ at Freenode.net, #mythtv-users
+
diff --git a/mythplugins/mytharchive/i18n/mytharchive_es_es.qm b/mythplugins/mytharchive/i18n/mytharchive_es_es.qm
index 362945a..9bc0687 100644
Binary files a/mythplugins/mytharchive/i18n/mytharchive_es_es.qm and b/mythplugins/mytharchive/i18n/mytharchive_es_es.qm differ
diff --git a/mythplugins/mytharchive/i18n/mytharchive_es_es.ts b/mythplugins/mytharchive/i18n/mytharchive_es_es.ts
index 51f654c..9387d6d 100644
--- a/mythplugins/mytharchive/i18n/mytharchive_es_es.ts
+++ b/mythplugins/mytharchive/i18n/mytharchive_es_es.ts
@@ -829,7 +829,7 @@ Por Favor, Espere...</translation>
<translation>el título va aquí</translation>
</message>
<message>
- <location filename="themestrings.h" line="94"/>
+ <location filename="themestrings.h" line="93"/>
<source>x.xx Gb</source>
<translation>x,xx Gb</translation>
</message>
@@ -1209,52 +1209,47 @@ Por Favor, Espere...</translation>
<translation>x,xx GB</translation>
</message>
<message>
- <location filename="themestrings.h" line="93"/>
- <source>Ok</source>
- <translation>Aceptar</translation>
- </message>
- <message>
- <location filename="themestrings.h" line="95"/>
+ <location filename="themestrings.h" line="94"/>
<source>Select Destination:</source>
<translation>Seleccionar Destino:</translation>
</message>
<message>
- <location filename="themestrings.h" line="96"/>
+ <location filename="themestrings.h" line="95"/>
<source>Parental level: %1</source>
<translation>Nivel parental: %1</translation>
</message>
<message>
- <location filename="themestrings.h" line="97"/>
+ <location filename="themestrings.h" line="96"/>
<source>Old size:</source>
<translation>Tamaño anterior:</translation>
</message>
<message>
- <location filename="themestrings.h" line="98"/>
+ <location filename="themestrings.h" line="97"/>
<source>New size:</source>
<translation>Tamaño nuevo:</translation>
</message>
<message>
- <location filename="themestrings.h" line="99"/>
+ <location filename="themestrings.h" line="98"/>
<source>Select a theme:</source>
<translation>Seleccione un tema:</translation>
</message>
<message>
- <location filename="themestrings.h" line="100"/>
+ <location filename="themestrings.h" line="99"/>
<source>Menu</source>
<translation>Menú</translation>
</message>
<message>
- <location filename="themestrings.h" line="101"/>
+ <location filename="themestrings.h" line="100"/>
<source>Chapter</source>
<translation>Capítulo</translation>
</message>
<message>
- <location filename="themestrings.h" line="102"/>
+ <location filename="themestrings.h" line="101"/>
<source>Detail</source>
<translation>Detalles</translation>
</message>
<message>
- <location filename="themestrings.h" line="103"/>
+ <location filename="themestrings.h" line="102"/>
<source>Select File to Import</source>
<translation>Seleccionar Archivo a Importar</translation>
</message>
@@ -1264,52 +1259,52 @@ Por Favor, Espere...</translation>
<translation>Añadir vídeo</translation>
</message>
<message>
- <location filename="themestrings.h" line="104"/>
+ <location filename="themestrings.h" line="103"/>
<source>Channel ID:</source>
<translation>ID de Canal:</translation>
</message>
<message>
- <location filename="themestrings.h" line="105"/>
+ <location filename="themestrings.h" line="104"/>
<source>Channel Number:</source>
<translation>Número de Canal:</translation>
</message>
<message>
- <location filename="themestrings.h" line="106"/>
+ <location filename="themestrings.h" line="105"/>
<source>Create DVD</source>
<translation>Crear DVD</translation>
</message>
<message>
- <location filename="themestrings.h" line="107"/>
+ <location filename="themestrings.h" line="106"/>
<source>Create Archive</source>
<translation>Crear Archivo</translation>
</message>
<message>
- <location filename="themestrings.h" line="108"/>
[...21999 lines suppressed...]
@@ -11,19 +11,22 @@
#-----------------------
__title__ = "TheMovieDB.org V3"
__author__ = "Raymond Wagner"
-__version__ = "0.3.0"
+__version__ = "0.3.3"
# 0.1.0 Initial version
# 0.2.0 Add language support, move cache to home directory
# 0.3.0 Enable version detection to allow use in MythTV
-
-from MythTV.tmdb3 import searchMovie, Movie, Collection, set_key, set_cache, set_locale
-from MythTV import VideoMetadata
+# 0.3.1 Add --test parameter for proper compatibility with mythmetadatalookup
+# 0.3.2 Add --area parameter to allow country selection for release date and
+# parental ratings
+# 0.3.3 Use translated title if available
from optparse import OptionParser
-from lxml import etree
import sys
-def buildSingle(inetref):
+def buildSingle(inetref, opts):
+ from MythTV.tmdb3 import Movie
+ from MythTV import VideoMetadata
+ from lxml import etree
movie = Movie(inetref)
tree = etree.XML(u'<metadata></metadata>')
mapping = [['runtime', 'runtime'], ['title', 'originaltitle'],
@@ -35,12 +38,29 @@ def buildSingle(inetref):
for i,j in mapping:
if getattr(movie, j):
setattr(m, i, getattr(movie, j))
+
+ if movie.title:
+ m.title = movie.title
+
+ releases = movie.releases.items()
+
+ if opts.country:
+ try:
+ # resort releases with selected country at top to ensure it
+ # is selected by the metadata libraries
+ index = zip(*releases)[0].index(opts.country)
+ releases.insert(0, releases.pop(index))
+ except ValueError:
+ pass
+ else:
+ m.releasedate = releases[0][1].releasedate
+
m.inetref = str(movie.id)
- if movie.releasedate:
- m.year = movie.releasedate.year
if movie.collection:
m.collectionref = str(movie.collection.id)
- for country, release in movie.releases.items():
+ if movie.releasedate:
+ m.year = movie.releasedate.year
+ for country, release in releases:
if release.certification:
m.certifications[country] = release.certification
for genre in movie.genres:
@@ -70,11 +90,15 @@ def buildSingle(inetref):
xml_declaration=True))
sys.exit()
-def buildList(query):
+def buildList(query, opts):
# TEMPORARY FIX:
# replace all dashes from queries to work around search behavior
# as negative to all text that comes afterwards
query = query.replace('-',' ')
+
+ from MythTV.tmdb3 import searchMovie
+ from MythTV import VideoMetadata
+ from lxml import etree
results = searchMovie(query)
tree = etree.XML(u'<metadata></metadata>')
mapping = [['runtime', 'runtime'], ['title', 'originaltitle'],
@@ -89,6 +113,14 @@ def buildList(query):
if getattr(res, j):
setattr(m, i, getattr(res, j))
m.inetref = str(res.id)
+
+ if res.title:
+ m.title = res.title
+
+ #TODO:
+ # should releasedate and year be pulled from the country-specific data
+ # or should it be left to the default information to cut down on
+ # traffic from searches
if res.releasedate:
m.year = res.releasedate.year
if res.backdrop:
@@ -109,7 +141,10 @@ def buildList(query):
xml_declaration=True))
sys.exit(0)
-def buildCollection(inetref):
+def buildCollection(inetref, opts):
+ from MythTV.tmdb3 import Collection
+ from MythTV import VideoMetadata
+ from lxml import etree
collection = Collection(inetref)
tree = etree.XML(u'<metadata></metadata>')
m = VideoMetadata()
@@ -129,6 +164,7 @@ def buildCollection(inetref):
sys.exit()
def buildVersion():
+ from lxml import etree
version = etree.XML(u'<grabber></grabber>')
etree.SubElement(version, "name").text = __title__
etree.SubElement(version, "author").text = __author__
@@ -142,43 +178,78 @@ def buildVersion():
xml_declaration=True))
sys.exit(0)
-def main():
- set_key('c27cb71cff5bd76e1a7a009380562c62')
- set_cache(engine='file', filename='~/.mythtv/pytmdb3.cache')
+def performSelfTest():
+ err = 0
+ try:
+ import MythTV
+ except:
+ err = 1
+ print ("Failed to import MythTV bindings. Check your `configure` output "
+ "to make sure installation was not disabled due to external "
+ "dependencies")
+ try:
+ import MythTV.tmdb3
+ except:
+ err = 1
+ print ("Failed to import PyTMDB3 library. This should have been included "
+ "with the python MythTV bindings.")
+ try:
+ import lxml
+ except:
+ err = 1
+ print "Failed to import python lxml library."
+
+ if not err:
+ print "Everything appears in order."
+ sys.exit(err)
+def main():
parser = OptionParser()
parser.add_option('-v', "--version", action="store_true", default=False,
dest="version", help="Display version and author")
+ parser.add_option('-t', "--test", action="store_true", default=False,
+ dest="test", help="Perform self-test for dependencies.")
parser.add_option('-M', "--movielist", action="store_true", default=False,
dest="movielist", help="Get Movies matching search.")
parser.add_option('-D', "--moviedata", action="store_true", default=False,
dest="moviedata", help="Get Movie data.")
parser.add_option('-C', "--collection", action="store_true", default=False,
dest="collectiondata", help="Get Collection data.")
- parser.add_option( "-l", "--language", metavar="LANGUAGE", default=u'en',
+ parser.add_option('-l', "--language", metavar="LANGUAGE", default=u'en',
dest="language", help="Specify language for filtering.")
+ parser.add_option('-a', "--area", metavar="COUNTRY", default=None,
+ dest="country", help="Specify country for custom data.")
opts, args = parser.parse_args()
if opts.version:
buildVersion()
+ if opts.test:
+ performSelfTest()
+
+ from MythTV.tmdb3 import set_key, set_cache, set_locale
+ set_key('c27cb71cff5bd76e1a7a009380562c62')
+ set_cache(engine='file', filename='~/.mythtv/pytmdb3.cache')
+
if opts.language:
set_locale(language=opts.language, fallthrough=True)
+ if opts.country:
+ set_locale(country=opts.country, fallthrough=True)
if (len(args) != 1) or (args[0] == ''):
sys.stdout.write('ERROR: tmdb3.py requires exactly one non-empty argument')
sys.exit(1)
if opts.movielist:
- buildList(args[0])
+ buildList(args[0], opts)
if opts.moviedata:
- buildSingle(args[0])
+ buildSingle(args[0], opts)
if opts.collectiondata:
- buildCollection(args[0])
+ buildCollection(args[0], opts)
if __name__ == '__main__':
main()
11 years, 11 months
rpms/mythtv/EL-6 ChangeLog, 1.2, 1.3 mythbackend.service, 1.2, 1.3 mythtv.logrotate.sysd, 1.1, 1.2 mythtv.logrotate.sysv, 1.1, 1.2 mythtv.spec, 1.88, 1.89 sources, 1.54, 1.55 mysql.txt, 1.1, NONE mythtv-0.25.1-hls_profile.patch, 1.1, NONE mythtv-0.25.1-php54.patch, 1.1, NONE mythtv-0.25.2-fixes.patch, 1.1, NONE
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/mythtv/EL-6
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26679
Modified Files:
ChangeLog mythbackend.service mythtv.logrotate.sysd
mythtv.logrotate.sysv mythtv.spec sources
Removed Files:
mysql.txt mythtv-0.25.1-hls_profile.patch
mythtv-0.25.1-php54.patch mythtv-0.25.2-fixes.patch
Log Message:
* Tue Dec 4 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.26.0-3
- Update to latest upstream release.
View full diff with command:
/usr/bin/cvs -f diff -kk -u -N -r 1.2 -r 1.3 ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 26 Aug 2012 12:02:38 -0000 1.2
+++ ChangeLog 10 Dec 2012 14:42:38 -0000 1.3
@@ -1,129 +1,282802 @@
-commit 46cab93562429cd19029402a2387f63a72aeb898
+commit 6c3ae81b967ff21235c82481b6c6244ad97b6d20
+Author: Stuart Morgan <smorgan(a)mythtv.org>
+Date: Tue Oct 2 11:30:24 2012 +0100
+
+ Setting VERSION to v0.26.0
+
+commit cb1e2844f3bd6147f92d8189b4f87c5fe212f826
Author: Raymond Wagner <rwagner(a)mythtv.org>
-Date: Tue Jul 31 14:21:22 2012 -0400
+Date: Tue Oct 2 02:55:07 2012 -0400
- Correct --printexpire option in mythbackend.
+ Cause backend to terminate if requested IP address is unavailable.
- This corrects logic that was accidentally inverted in 8bc8dd54, and
- allows `mythbackend --printexpire` to be used again.
- (cherry picked from commit a9f18c63bfb23494ee83a8ba76d82fc320617067)
+ This performs a check within mainserver to ensure the the selected IP
+ addresses that the backend should be available on are detected on the
+ system, and will otherwise immediately terminate rather than continue to
+ operate in a potentially inaccessible fashion.
+
+commit 1a66ff9bee9d1029e3400d750c84a2f2c3d5c47e
+Author: Gavin Hurlbut <ghurlbut(a)mythtv.org>
+Date: Mon Oct 1 16:28:49 2012 -0700
+
+ Please let this be all. More Windows fixes.
+
+commit f1d851b7cd736c661f62f8d697a7726439e35453
+Author: Gavin Hurlbut <ghurlbut(a)mythtv.org>
+Date: Mon Oct 1 15:03:56 2012 -0700
+
+ More windows-related fixes.
+
+commit 0c22b9222ce2122af66b3438362d47a63b80b1c9
+Merge: 907bd2d faf4c11
+Author: Nicolas Riendeau <nriendeau(a)mythtv.org>
+Date: Mon Oct 1 17:53:56 2012 -0400
+
+ Merge branch 'master' of code.mythtv.org:mythtv
+
+commit 907bd2d0e6a6b6a8eff1754daef4db2a217ef850
+Author: Walter Cheuk <wwycheuk(a)gmail.com>
+Date: Mon Oct 1 17:52:04 2012 -0400
+
+ New Chinese/Taiwan locale file
+ from Walter Cheuk
+
+ Thank you Walter!
+
+ Closes #11129
+
+ Signed-off-by: Nicolas Riendeau <nriendeau(a)mythtv.org>
+
+commit faf4c11aa7753830083bd583d3bfa470bf8f5010
+Author: Gavin Hurlbut <ghurlbut(a)mythtv.org>
+Date: Mon Oct 1 14:09:14 2012 -0700
+
+ Forgot a lousy ;. Been doing too much python lately.
+
+commit aaa9fc27e2524419e0ef1c132b58bea9e18ea4bc
+Author: Gavin Hurlbut <ghurlbut(a)mythtv.org>
+Date: Mon Oct 1 12:57:22 2012 -0700
+
+ Fix signalhandling to compile for FreeBSD as well
+
+commit 62aa75b3718475560ef71dd327dc3b59f0d521a5
+Author: Gavin Hurlbut <ghurlbut(a)mythtv.org>
+Date: Mon Oct 1 12:47:34 2012 -0700
+
+ Fix signalhandling to compile for Windows (sorry)
+
+commit a1ff1f2df9e9453066f846f9a47cf562f3a2a4b0
+Author: Kenni Lund <kenni(a)mythtv.org>
+Date: Mon Oct 1 19:55:41 2012 +0200
+
+ Generate binary translation files for the Italian translation, following dfefee4749.
+
+ Fixes #11120.
+
+commit dfefee4749ed3c3f87a73bcc950ea833a7b624e3
+Author: Morris Cavestro <morriscavestro(a)yahoo.it>
+Date: Mon Oct 1 19:54:27 2012 +0200
+
+ Update the Italian translation of mythgallery, mythmusic and mythfrontend.
+
+ Signed-off-by: Kenni Lund <kenni(a)mythtv.org>
+
+commit 0de360e6aa6adc0e70115a7b8b0681fb48181cc3
+Author: Kenni Lund <kenni(a)mythtv.org>
+Date: Mon Oct 1 19:37:30 2012 +0200
+
+ Update the Danish translation of mythgallery, mythgame, mythnews and mythweather.
-commit 8ab229a8bed860fb0855797c683655a7465e2ee4
-Merge: a4cdc9e 1c496c8
+commit 6596484ebcbb6b3df482cdc15db04c70f683128d
+Author: Jonatan Lindblad <jlindblad(a)mythtv.org>
+Date: Sun Sep 30 12:47:50 2012 +0200
+
+ Update the Swedish translation.
+
+ Update of the Swedish translation for mythfrontend and all plugins made
+ by me and Roger Mårtensson (thank you!).
+
+commit d6ec9e4eefcb974a84a5cf579afce4dbed0605c7
+Author: Rune Evjen <rune.evjen(a)gmail.com>
+Date: Sat Sep 29 16:27:00 2012 -0400
+
+ Updated Norwegian Bokmal MythFrontend, MythGallery, MythGame,
+ MythMusic, MythNetvision, MythZoneminder tanslation
+ from Rune Evjen
+
+ Thank you Rune!
+
+ Closes #11130
+
+ Signed-off-by: Nicolas Riendeau <nriendeau(a)mythtv.org>
+
+commit 060383fa4f3dcd1b63127dbdf0877a237ba9d1b0
+Author: Kenni Lund <kenni(a)mythtv.org>
+Date: Sat Sep 29 18:04:17 2012 +0200
+
+ Update the Danish translation of mythfrontend.
+
+commit 9c4e49c0cb14b94eca4371b7c0e89f9b2c168eef
Author: Raymond Wagner <rwagner(a)mythtv.org>
-Date: Tue Jul 31 14:22:32 2012 -0400
+Date: Fri Sep 28 16:43:29 2012 -0400
- Merge branch 'fixes/0.25' of code.mythtv.org:mythtv into fixes/0.25
+ Force all datetime objects to be timezone aware.
+
+ This works around some strangeness in the modified datetime class due to
+ it being derived from a native C object. The timezone was being set to
+ None in the base class's __new__ function, and the corrected timezone
+ was ignored when set by the derived class's __init__.
-commit 1c496c81662eabda444452071eb18f2fd375d4d0
-Author: Kyle <klillis(a)gmail.com>
-Date: Mon Jul 30 13:34:11 2012 -0400
+commit 358af8a26dcb6de01a9547767d9015e97a662be7
+Author: French Language Translation Team <knight(a)teksavvy.com>
+Date: Thu Sep 27 21:48:32 2012 -0400
- Fixes #10897. Clear paused when we unpause FirewireRecorder.
+ Updated French MythFrontend, MythArchive, MythMusic and MythWeather
+ translation from the French Language Translation Team
- Signed-off-by: Daniel Thor Kristjansson <danielk(a)cuymedia.net>
+ Thank you!
+
+ Signed-off-by: Nicolas Riendeau <nriendeau(a)mythtv.org>
-commit 9c199a42258f2a19dd1c8d3b934e6eb04f1757ce
-Author: Daniel Thor Kristjansson <dkristjansson(a)mythtv.org>
-Date: Tue Jul 24 12:13:16 2012 -0400
+commit 73f41b03442fa8eb2b0c45d2e381f13917826a49
+Author: Florian Bittner <mythtv(a)daschatten.de>
+Date: Thu Sep 27 18:50:16 2012 -0400
- Fixes #10870. Fix Start/Stop race condition in StreamHandler.
+ Updated German MythFrontend and MythWeather translation
+ from Florian Bittner
+
+ Thank you Florian!
- This is a backport of [445faaa47].
+ Closes #11125
+
+ PS: Now that your translation is complete you might want to run
+ lupdate with --no-obsolete to remove the obsolete entries.
+
+ Signed-off-by: Nicolas Riendeau <nriendeau(a)mythtv.org>
-commit a72e341a4653a1b683b7ae5ac87bcaa3092d20fa
+commit 6c5378c4edb4eb20b26f637fc9604f5ac5cdc1de
Author: Stuart Morgan <smorgan(a)mythtv.org>
-Date: Sun Jul 29 12:42:41 2012 +0100
+Date: Thu Sep 27 23:16:07 2012 +0100
- Restore setup pincode following [57adc5d120] - 'Flatten the Setup Menus in the default menu theme' which dropped util_menu.xml but failed to carry over the <password> markup.
- (cherry picked from commit 134417fe3bf7170f3419d2388a6c26afe16c4927)
+ Remove/replace some of the outdated information in the Doxygen documentation landing page.
-commit 3256849b14cc882536a153e7fbe4724adf03260c
-Author: Jim Stichnoth <jstichnoth(a)mythtv.org>
-Date: Tue Jul 24 10:56:15 2012 -0700
+commit be113a269e6bf8d8847c3af2364938211a423746
+Author: Robert Kulagowski <rkulagow(a)mythtv.org>
[...282489 lines suppressed...]
+Date: Sat May 18 22:41:06 2002 +0000
+
+ Add text to the OSD -- channel number, and placeholder program info.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@24 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 3c85e1c6e99fedd58b582f30b048dabe32920b70
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sat May 18 20:14:38 2002 +0000
+
+ Darken a rectangle of video on channel change for eventual program info display.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@23 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit b48adfd2f1afe69a16beb9496a1b684f3d80e9bd
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Thu May 16 20:17:37 2002 +0000
+
+ small reorg or file layout
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@22 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 813fc61c0acd5d9092ff98fea0889db37303a1d8
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Thu May 16 01:36:29 2002 +0000
+
+ Change the default settings to low quality, keyframes every other frame.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@21 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 87afb9ad9183502d71bcb22195d0e8e9da44626c
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Tue May 7 16:57:15 2002 +0000
+
+ Channel changing shouldn't segfault anymore.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@20 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 9575a1c1598f634b9a78b096e203e5553d3f155b
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Tue May 7 05:18:35 2002 +0000
+
+ Added changing the channel with the up/down arrows.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@19 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 8a5dea88fa274c3ff03940a30c9ae71a851f7f30
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Mon May 6 20:01:47 2002 +0000
+
+ Fix the max rewind constraint, and use the smudge in the pause buffer calcs.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@18 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 61128279a8c5f294a15ade9d69a54f9a525971ae
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Mon May 6 07:08:08 2002 +0000
+
+ Change the default settings, turn back on fullscreen mode.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@17 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit b40b2bcf2c69f6776263d6fc3c8029c0cfe44cf2
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Mon May 6 06:45:50 2002 +0000
+
+ FF/REW seem to work now.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@16 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 54a8b3201795d354c10aebbdf1c8ae81f9943288
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Mon May 6 06:21:49 2002 +0000
+
+ Add setting for mp3 quality, add half working ff/rew
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@15 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 1608e03455e0c49872a7b71b6b7891bf057ef75a
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 22:40:21 2002 +0000
+
+ Added a setting for deinterlacing, and fixed the build process slightly.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@14 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 3c4461ea20c5ca1bdd580b192fa63f4e35e462c0
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 21:56:09 2002 +0000
+
+ Add a simple settings class, and use it for the defaults.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@13 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit b397a405159c2e76707931d28c5e643926d83392
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 21:33:07 2002 +0000
+
+ Moved the forced unpause calculation into the Player class.
+ Fixed the calculation of max size of the ring buffer.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@12 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 5ffc03899a829ab382b94ec3c764d266790a3745
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 06:22:38 2002 +0000
+
+ Added the ability to pause "live" tv.
+ It forces an unpause when the ring buffer fills up. Need to move the
+ forced unpause logic into the player library.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@11 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 8dac78628005f497b06b4bbd07b0ea6b5a7caa67
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 03:46:22 2002 +0000
+
+ fixing the last few problems with the RingBuffer
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@10 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 6fb8538e69520fe9a0e4b10a3e0e110bf8c3f886
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 01:48:50 2002 +0000
+
+ Now the ringbuffer, well, rings.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@9 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 589164c833c69b5c61ec943f6a039438980a2a98
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sun May 5 00:37:39 2002 +0000
+
+ Add a RingBuffer class, for the TV app. Make the TV app work.
+
+ The RingBuffer doesn't cycle yet.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@8 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit e2a5539b206f644f902d424052fa1bf4ba5a2ffe
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sat May 4 19:42:01 2002 +0000
+
+ - Converted the playback stuff to a class. Much cleaner.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@7 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 84103e00fde1bab9007093e832302f7290c836f3
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sat May 4 08:06:24 2002 +0000
+
+ - new class 'NuppelVideoRecorder'
+ main changes: uses pthreads instead of forking + lots of shm, easy interface
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@6 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 39ebee28eb13a7c61331afa32ee886f821d02643
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Sat May 4 04:28:07 2002 +0000
+
+ - converted RTjpeg.N to a c++ class. cleaner now.
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@5 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit 654df6845fd347d1e9794277f46d8270a92ed7ad
+Author: Isaac Richards <irichards(a)mythtv.org>
+Date: Fri May 3 19:14:12 2002 +0000
+
+ Initial revision
+
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@2 7dbf422c-18fa-0310-86e9-fd20926502f2
+
+commit ce7a5f624939970a5b095698adb6da23babc930f
+Author: Janne Grunau <jgrunau(a)mythtv.org>
+Date: Fri May 3 19:14:12 2002 +0000
+
+ New repository initialized by cvs2svn.
+
+ git-svn-id: http://svn.mythtv.org/svn/trunk@1 7dbf422c-18fa-0310-86e9-fd20926502f2
Index: mythbackend.service
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/mythbackend.service,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mythbackend.service 26 Aug 2012 12:02:38 -0000 1.2
+++ mythbackend.service 10 Dec 2012 14:42:39 -0000 1.3
@@ -59,7 +59,7 @@
ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
# Whether systemd will continue over-watch and restart on any halt
-#Restart=Restart-always
+#Restart=always
[Install]
WantedBy=multi-user.target
Index: mythtv.logrotate.sysd
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/mythtv.logrotate.sysd,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythtv.logrotate.sysd 6 Jul 2012 18:13:11 -0000 1.1
+++ mythtv.logrotate.sysd 10 Dec 2012 14:42:39 -0000 1.2
@@ -1,14 +1,45 @@
-/var/log/mythtv/mythbackend.log /var/log/mythtv/myth*.*.*.log {
- notifempty
+#
+# logrotate doesn't support pattern precedence, so they have to be explicit
+#
+# logs that should be deleted every day
+/var/log/mythtv/mythcommflag.*.*.log
+/var/log/mythtv/mythpreviewgen.*.*.log
+/var/log/mythtv/mythtranscode.*.*.log
+{
+ daily
+ rotate 0
+ nocreate
missingok
+ ifempty
+}
+
+# all other non-backend logs are kept for a week
+/var/log/mythtv/mythfilldatabase*.*.*.log
+/var/log/mythtv/mythmetadatalookup*.*.*.log
+{
+ weekly
+ rotate 0
+ nocreate
+ missingok
+ ifempty
+}
+
+# backend log: keep for 4 weeks & compress
+/var/log/mythtv/mythbackend.*.*.log {
+ weekly
+ rotate 4
+ nocreate
+ missingok
+ ifempty
compress
compresscmd /usr/bin/bzip2
uncompresscmd /usr/bin/bunzip2
compressext .bz2
- weekly
- rotate 4
- size 10M
- postrotate
- /bin/systemctl kill mythbackend.service --signal=HUP --kill-who=main 2>/dev/null || true
+ firstaction
+ /bin/systemctl kill mythbackend.service --signal=HUP --kill-who=main 2>/dev/null || true
+ endscript
+ # general cleanup after 4 weeks of anything we might have missed
+ lastaction
+ find /var/log/mythtv -type f -mtime +28 -delete
endscript
}
Index: mythtv.logrotate.sysv
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/mythtv.logrotate.sysv,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythtv.logrotate.sysv 6 Jul 2012 18:13:11 -0000 1.1
+++ mythtv.logrotate.sysv 10 Dec 2012 14:42:39 -0000 1.2
@@ -1,14 +1,45 @@
-/var/log/mythtv/myth*.log {
- notifempty
+#
+# logrotate doesn't support pattern precedence, so they have to be explicit
+#
+# logs that should be deleted every day
+/var/log/mythtv/mythcommflag.*.*.log
+/var/log/mythtv/mythpreviewgen.*.*.log
+/var/log/mythtv/mythtranscode.*.*.log
+{
+ daily
+ rotate 0
+ nocreate
missingok
+ ifempty
+}
+
+# all other non-backend logs are kept for a week
+/var/log/mythtv/mythfilldatabase*.*.*.log
+/var/log/mythtv/mythmetadatalookup*.*.*.log
+{
+ weekly
+ rotate 0
+ nocreate
+ missingok
+ ifempty
+}
+
+# backend log: keep for 4 weeks & compress
+/var/log/mythtv/mythbackend.*.*.log {
+ weekly
+ rotate 4
+ nocreate
+ missingok
+ ifempty
compress
compresscmd /usr/bin/bzip2
uncompresscmd /usr/bin/bunzip2
compressext .bz2
- weekly
- rotate 4
- size 10M
- postrotate
+ firstaction
/bin/kill -HUP `cat /var/run/mythbackend.pid 2>/dev/null` 2> /dev/null || true
endscript
+ # general cleanup after 4 weeks of anything we might have missed
+ lastaction
+ find /var/log/mythtv -type f -mtime +28 -delete
+ endscript
}
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/mythtv.spec,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- mythtv.spec 26 Aug 2012 12:02:38 -0000 1.88
+++ mythtv.spec 10 Dec 2012 14:42:39 -0000 1.89
@@ -1,4 +1,3 @@
-#
# Specfile for building MythTV and MythPlugins RPMs from a subversion checkout.
#
# by: Chris Petersen <rpm(a)forevermore.net>
@@ -59,13 +58,12 @@
%define desktop_vendor RPMFusion
# Git revision and branch ID
-# 0.25 release: git tag v0.25.1
-%define _gitrev v0.25.2-15-g46cab93
-%define branch fixes/0.25
+%define _gitrev v0.26.0-55-g09ac5b2
+%define branch fixes/0.26
# Mythtv and plugins from github.com
-%global githash1 g4e44650
-%global githash2 19087cb
+%global githash1 g6c3ae81
+%global githash2 d2f9798
#
# Basic descriptive tags for this package:
@@ -76,12 +74,11 @@
Group: Applications/Multimedia
# Version/Release info
-Version: 0.25.2
+Version: 0.26.0
%if "%{branch}" == "master"
Release: 0.1.git.%{_gitrev}%{?dist}
-#Release: 0.1.rc1%{?dist}
%else
-Release: 2%{?dist}
+Release: 3.1%{?dist}
%endif
# The primary license is GPLv2+, but bits are borrowed from a number of
@@ -131,15 +128,10 @@
################################################################################
-# https://github.com/MythTV/mythtv/tarball/v0.25
+# https://github.com/MythTV/mythtv/tarball/v0.26
Source0: MythTV-%{name}-v%{version}-0-%{githash1}.tar.gz
-Patch0: mythtv-0.25.2-fixes.patch
-
-# Fixes for PHP 5.4
-Patch1: mythtv-0.25.1-php54.patch
-# Adapative HLS profile based on resolution.
-Patch2: mythtv-0.25.1-hls_profile.patch
+Patch0: mythtv-0.26-fixes.patch
Source10: PACKAGE-LICENSING
Source11: ChangeLog
@@ -152,7 +144,6 @@
Source107: mythfrontend.desktop
Source108: mythtv-setup.png
Source109: mythtv-setup.desktop
-Source110: mysql.txt
Source111: 99-mythbackend.rules
@@ -180,7 +171,8 @@
BuildRequires: mysql-devel >= 5
BuildRequires: qt-webkit-devel
BuildRequires: qt-devel >= 4.6
-BuildRequires: phonon-devel
+BuildRequires: phonon-devel phonon-backend-gstreamer
+BuildRequires: libuuid-devel
BuildRequires: lm_sensors-devel
BuildRequires: lirc-devel
@@ -349,7 +341,8 @@
Requires: php-MythTV = %{version}-%{release}
Requires: python-MythTV = %{version}-%{release}
Requires: mythplugins = %{version}-%{release}
-Requires: mythweb
+Requires: mythweb = %{version}
+Requires: mythffmpeg = %{version}-%{release}
Requires: mysql-server >= 5, mysql >= 5
Requires: xmltv
@@ -578,6 +571,19 @@
This package contains components needed by multiple other MythTV components.
################################################################################
+################################################################################
+
+%package -n mythffmpeg
+Summary: MythTV build of FFmpeg
+Group: Applications/Multimedia
+
+%description -n mythffmpeg
+Several MythTV utilities interact with FFmpeg, which changes its parameters
+often enough to make it a hassle to support the variety of versions used by
+MythTV users. This is a snapshot of the FFmpeg code so that MythTV utilities
+can interact with a known verion.
+
+################################################################################
%if %{with_perl}
@@ -805,14 +811,10 @@
# Replace static lib paths with %{_lib} so we build properly on x86_64
# systems, where the libs are actually in lib64.
if [ "%{_lib}" != "lib" ]; then
- grep -rlZ '/lib/' . | xargs -r0 sed -i -e 's,/lib/,/%{_lib}/,g'
- grep -rlZ '/lib$' . | xargs -r0 sed -i -e 's,/lib$,/%{_lib},'
- grep -rlZ '/lib ' . | xargs -r0 sed -i -e 's,/lib ,/%{_lib} ,g'
+ find \( -name 'configure' -o -name '*pro' -o -name 'Makefile' \) -exec sed -r -i -e 's,/lib\b,/%{_lib},g' {} \+
fi
%patch0 -p1 -b .mythtv
-%patch1 -p1 -b .php54
-%patch2 -p1 -b .hls_profile
# Install ChangeLog
install -m 0644 %{SOURCE11} .
@@ -886,7 +888,7 @@
--enable-libtheora --enable-libvorbis \
--enable-libxvid \
%if %{with_vdpau}
- --enable-vdpau \
+ --enable-vdpau \
%endif
%if %{with_vaapi}
--enable-vaapi \
@@ -948,6 +950,7 @@
-exec sed -i -e "s,DEPLIBS = \$\${LIBDIR},DEPLIBS = $temp%{_libdir}," {} \; \
-exec sed -i -e "s,\$\${PREFIX}/include/mythtv,$temp%{_includedir}/mythtv," {} \;
echo "INCLUDEPATH -= \$\${PREFIX}/include" >> settings.pro
+ echo "INCLUDEPATH -= \$\${SYSROOT}/\$\${PREFIX}/include" >> settings.pro
echo "INCLUDEPATH -= %{_includedir}" >> settings.pro
echo "INCLUDEPATH += $temp%{_includedir}" >> settings.pro
echo "INCLUDEPATH += %{_includedir}" >> settings.pro
@@ -1040,8 +1043,7 @@
# Fix permissions on executable python bindings
# chmod +x %{buildroot}%{python_sitelib}/MythTV/Myth*.py
-# mysql.txt and other config/init files
- install -m 0644 %{SOURCE110} %{buildroot}%{_sysconfdir}/mythtv/
+# config/init files
echo "# to be filled in by mythtv-setup" > %{buildroot}%{_sysconfdir}/mythtv/config.xml
### SystemD based setup. ###
@@ -1080,6 +1082,11 @@
popd
+# Clean up some stuff we don't want to include
+rm -f %{buildroot}%{_libdir}/libmythqjson.prl \
+ %{buildroot}%{_libdir}/libmythzmq.la \
+ %{buildroot}%{_libdir}/pkgconfig/libmythzmq.pc
+
# MythPlugins
%if %{with_plugins}
pushd mythplugins
@@ -1225,6 +1232,7 @@
%{_bindir}/mythcommflag
%{_bindir}/mythmetadatalookup
%{_bindir}/mythutil
+%{_bindir}/mythlogserver
%{_bindir}/mythpreviewgen
%{_bindir}/mythtranscode
%{_bindir}/mythwikiscripts
@@ -1234,7 +1242,6 @@
%{_datadir}/mythtv/hardwareprofile/
%attr(-,mythtv,mythtv)
%dir %{_sysconfdir}/mythtv
-%config(noreplace) %{_sysconfdir}/mythtv/mysql.txt
%config(noreplace) %{_sysconfdir}/mythtv/config.xml
%files backend
@@ -1243,8 +1250,6 @@
%{_bindir}/mythjobqueue
%{_bindir}/mythmediaserver
%{_bindir}/mythreplex
-%{_bindir}/mythffmpeg
-%{_bindir}/mythffplay
%{_datadir}/mythtv/MXML_scpd.xml
%{_datadir}/mythtv/backend-config/
%attr(-,mythtv,mythtv) %dir %{_localstatedir}/lib/mythtv
@@ -1287,6 +1292,7 @@
%dir %{_datadir}/mythtv/i18n
%dir %{_datadir}/mythtv/fonts
%{_datadir}/mythtv/fonts/*.ttf
+%{_datadir}/mythtv/fonts/*.otf
%{_datadir}/mythtv/fonts/*.txt
%{_datadir}/mythtv/i18n/mythfrontend_*.qm
%{_datadir}/applications/*mythfrontend.desktop
@@ -1308,6 +1314,9 @@
%dir %{_datadir}/mythtv/build
%{_datadir}/mythtv/build/settings.pro
+%files -n mythffmpeg
+%{_bindir}/mythffmpeg
+
%if %{with_perl}
%files -n perl-MythTV
%{perl_vendorlib}/MythTV.pm
@@ -1388,6 +1397,7 @@
%doc mythplugins/mythmusic/README
%{_libdir}/mythtv/plugins/libmythmusic.so
%attr(0775,mythtv,mythtv) %{_localstatedir}/lib/mythmusic
+%{_datadir}/mythtv/mythmusic/
%{_datadir}/mythtv/musicmenu.xml
%{_datadir}/mythtv/music_settings.xml
%{_datadir}/mythtv/i18n/mythmusic_*.qm
@@ -1441,6 +1451,21 @@
%changelog
+* Tue Dec 4 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.26.0-3
+- Update to latest upstream release.
+
+* Fri Nov 23 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.26.0-2
+- Rebuilt for x264
+
+* Sun Oct 28 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.26.0-1
+- Update to latest upstream release.
+- Remove mysql.txt as it is no longer used.
+- Fix lib -> lib64 replacement command to be more accurate and support mythzmq
+- Add mythzmq stuff
+
+* Wed Sep 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.25.2-3
+- Rebuilt for x264 ABI 125
+
* Sat Aug 25 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.25.2-2
- Update to latest fixes/0.25.
- Fix mythbackend looking in the wrong directory for config.xml (BZ#2450).
@@ -1484,7 +1509,7 @@
* Tue Mar 20 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.25-1
- Update to latest release 0.25.
-* Fri Mar 03 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.24.2-2
+* Sat Mar 03 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.24.2-2
- Remove transcode as build requirement.
- Misc. spec file cleanup.
@@ -1512,7 +1537,7 @@
- Changes default user for mythbackend from root to mythtv on
Fedora 16+. See http://rpmfusion.org/Package/mythtv for additonal information.
-* Sun Oct 20 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.24.1-3
+* Thu Oct 20 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.24.1-3
- Update to latest 0.24.1-fixes, git revision e89d6a9f7e.
- Fixes BZ#1993, FTBFS on Fedora 16.
- Moves from sysv init to systemd unit file for mythbackend on Fedora 16+
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mythtv/EL-6/sources,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- sources 26 Aug 2012 12:02:38 -0000 1.54
+++ sources 10 Dec 2012 14:42:39 -0000 1.55
@@ -1 +1 @@
-05d3402459bf7380cf54cc6066c149a3 MythTV-mythtv-v0.25.2-0-g4e44650.tar.gz
+5a89c1afe1fdd7584786e7bd8bbf756a MythTV-mythtv-v0.26.0-0-g6c3ae81.tar.gz
--- mysql.txt DELETED ---
--- mythtv-0.25.1-hls_profile.patch DELETED ---
--- mythtv-0.25.1-php54.patch DELETED ---
--- mythtv-0.25.2-fixes.patch DELETED ---
11 years, 11 months
rpms/mednafen/F-16 .cvsignore, 1.12, 1.13 mednafen.spec, 1.17, 1.18 sources, 1.12, 1.13
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6279
Modified Files:
.cvsignore mednafen.spec sources
Log Message:
* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
- Updated to 0.9.25-WIP
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore 25 Aug 2012 10:52:46 -0000 1.12
+++ .cvsignore 9 Dec 2012 12:10:32 -0000 1.13
@@ -1 +1 @@
-mednafen-0.9.24-wip.tar.bz2
+mednafen-0.9.25-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/mednafen.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- mednafen.spec 25 Aug 2012 10:52:46 -0000 1.17
+++ mednafen.spec 9 Dec 2012 12:10:34 -0000 1.18
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.24
+Version: 0.9.25
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -73,6 +73,9 @@
%changelog
+* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
+- Updated to 0.9.25-WIP
+
* Sat Aug 25 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.24-0.1
- Updated to 0.9.24-WIP
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 25 Aug 2012 10:52:46 -0000 1.12
+++ sources 9 Dec 2012 12:10:35 -0000 1.13
@@ -1 +1 @@
-ca109a0c4e4ccd7ba7cda75b97272965 mednafen-0.9.24-wip.tar.bz2
+e86d2f804237a1c810bb6c41402a8e1f mednafen-0.9.25-wip.tar.bz2
11 years, 11 months
rpms/mednafen/F-17 .cvsignore, 1.12, 1.13 mednafen.spec, 1.18, 1.19 sources, 1.12, 1.13
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6177
Modified Files:
.cvsignore mednafen.spec sources
Log Message:
* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
- Updated to 0.9.25-WIP
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore 25 Aug 2012 10:52:40 -0000 1.12
+++ .cvsignore 9 Dec 2012 12:10:16 -0000 1.13
@@ -1 +1 @@
-mednafen-0.9.24-wip.tar.bz2
+mednafen-0.9.25-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/mednafen.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- mednafen.spec 25 Aug 2012 10:52:40 -0000 1.18
+++ mednafen.spec 9 Dec 2012 12:10:16 -0000 1.19
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.24
+Version: 0.9.25
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -73,6 +73,9 @@
%changelog
+* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
+- Updated to 0.9.25-WIP
+
* Sat Aug 25 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.24-0.1
- Updated to 0.9.24-WIP
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 25 Aug 2012 10:52:40 -0000 1.12
+++ sources 9 Dec 2012 12:10:16 -0000 1.13
@@ -1 +1 @@
-ca109a0c4e4ccd7ba7cda75b97272965 mednafen-0.9.24-wip.tar.bz2
+e86d2f804237a1c810bb6c41402a8e1f mednafen-0.9.25-wip.tar.bz2
11 years, 11 months
rpms/mednafen/F-18 .cvsignore, 1.12, 1.13 mednafen.spec, 1.18, 1.19 sources, 1.12, 1.13
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6071
Modified Files:
.cvsignore mednafen.spec sources
Log Message:
* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
- Updated to 0.9.25-WIP
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-18/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore 25 Aug 2012 10:52:38 -0000 1.12
+++ .cvsignore 9 Dec 2012 12:10:04 -0000 1.13
@@ -1 +1 @@
-mednafen-0.9.24-wip.tar.bz2
+mednafen-0.9.25-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-18/mednafen.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- mednafen.spec 25 Aug 2012 10:52:38 -0000 1.18
+++ mednafen.spec 9 Dec 2012 12:10:04 -0000 1.19
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.24
+Version: 0.9.25
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -73,6 +73,9 @@
%changelog
+* Sun Dec 09 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.25-0.1
+- Updated to 0.9.25-WIP
+
* Sat Aug 25 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.24-0.1
- Updated to 0.9.24-WIP
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-18/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 25 Aug 2012 10:52:38 -0000 1.12
+++ sources 9 Dec 2012 12:10:04 -0000 1.13
@@ -1 +1 @@
-ca109a0c4e4ccd7ba7cda75b97272965 mednafen-0.9.24-wip.tar.bz2
+e86d2f804237a1c810bb6c41402a8e1f mednafen-0.9.25-wip.tar.bz2
11 years, 11 months