Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 87947 - Mythtv 0.17 and QT 3.3.4 cause Daylight Savings problem
Summary: Mythtv 0.17 and QT 3.3.4 cause Daylight Savings problem
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Television related Applications in Gentoo's Portage
URL:
Whiteboard:
Keywords:
: 91698 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-04-04 12:17 UTC by Anthony J Moulen
Modified: 2005-05-06 12:02 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
QDate Patch pulled from CVS updates (mythtv-0.17-qdate.patch,138.10 KB, patch)
2005-04-04 12:19 UTC, Anthony J Moulen
Details | Diff
Ebuild using patch for qdate. (mythtv-0.17-r1.ebuild,6.97 KB, text/plain)
2005-04-04 12:20 UTC, Anthony J Moulen
Details
qdate daylight savings time patch without ~ files (mythtv-0.17-qdate.patch,4.63 KB, patch)
2005-04-04 16:37 UTC, Jerome
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Anthony J Moulen 2005-04-04 12:17:30 UTC
When daylight savings shifted the time to daylight time Saturday, MythTV incorrectly reflected the start time of programs shifted by one hour.  This problem was caused by a fix to a bug in QT 3.3.4 which broke a work around in MythTV.  CVS has been patched to correct this bug but 0.17 has not.  

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Anthony J Moulen 2005-04-04 12:19:13 UTC
Created attachment 55294 [details, diff]
QDate Patch pulled from CVS updates

This is a patch for mythtv-0.17-r1.ebuild attached next.
Comment 2 Anthony J Moulen 2005-04-04 12:20:03 UTC
Created attachment 55295 [details]
Ebuild using patch for qdate.

Ebuild to use the attached patch.
Comment 3 Jerome 2005-04-04 16:37:19 UTC
Created attachment 55318 [details, diff]
qdate daylight savings time patch without ~ files

Same as patch above, but without the backup files (~) created by the editor.
Comment 4 Anthony J Moulen 2005-04-05 05:48:00 UTC
Someone asked how to use this fix, if you already have a bad set of listings you will have to log into mysql and truncate the program table, then rerun mythfilldatabase after you recompile mythtv.  

For instance:
# /etc/init.d/mythbackend stop
# mysql -u mythtv -p 
mysql> use mythconverg;
mysql> truncate table program;
mysql> commit;
mysql> quit
# /etc/init.d/mythbackend start
# mythfilldatabase

Obviously I am skipping interactive prompts such as password. 
Comment 5 Doug Goldstein (RETIRED) gentoo-dev 2005-04-05 11:58:10 UTC
Not gonna happen. There's no clean upgrade path for someone just pushing a new -r1 ebuild out. They're going to have to tinker with MySQL tables etc.

0.18 with the fixes will be out in 3 days.

Plus I don't have a dev box for 2 weeks. Windows bound.
Comment 6 Sloan Poe 2005-04-05 19:27:42 UTC
This is great for those of us willing to tinker.  Thanks.
Comment 7 Jeremy Huddleston (RETIRED) gentoo-dev 2005-04-06 03:09:22 UTC
I added -r1 to portage with this patch but left it in package.mask since cardoe wants to wait for 0.18.  You can unmask it with /etc/portage/package.unmask or just wait for 0.18...
Comment 8 Carsten Lohrke (RETIRED) gentoo-dev 2005-05-06 08:37:50 UTC
*** Bug 91698 has been marked as a duplicate of this bug. ***
Comment 9 Robert Forsman 2005-05-06 11:31:42 UTC
Anyone in a Daylight Savings zone who, today, does an "emerge mythtv" (which will give them 0.16 unless they want to unmask some stuff) will get an application that is NON-FUNCTIONAL.  

Can the ebuilds for 0.16 be adjusted to say "I don't work with QT >=3.3.4" ?  When I first encountered this problem I masked qt-3.3.4-r2, but then a recent update installed qt-3.3.4-r3.

Using PORTDIR_OVERLAY I have determined that altering mythtv-0.16.ebuild to say

  DEPEND=">=media-libs/freetype-2.0
          >=media-sound/lame-3.93.1
!         X? ( >=x11-libs/qt-3.1 <x11-libs/qt-3.3.4 )
          directfb? ( dev-libs/DirectFB >=x11-libs/qt-embedded-3.1 )
...

is sufficient to express mythtv's requirements.

Comment 10 Robert Forsman 2005-05-06 12:02:03 UTC
Never mind.  having a <x11-libs/qt-3.3.4 in the DEPENDS does not solve the problem.  Some other fix is needed.