eva 14/11/01 10:44:45 Added: gtg-0.3.1-locales.patch gtg-0.3.1-desktop.patch Log: Version bump, bug #501562. Fix homepage. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Revision Changes Path 1.1 app-office/gtg/files/gtg-0.3.1-locales.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gtg/files/gtg-0.3.1-locales.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gtg/files/gtg-0.3.1-locales.patch?rev=1.1&content-type=text/plain Index: gtg-0.3.1-locales.patch =================================================================== Do not install unwanted locales. --- a/setup.py 2014-11-01 11:21:49.679613605 +0100 +++ b/setup.py 2014-11-01 11:26:36.305719135 +0100 @@ -101,9 +101,15 @@ PO_DIR = 'po' MO_DIR = os.path.join('build', 'po') +LINGUAS = os.environ.get('LINGUAS', '*').split(' ') for po in glob.glob(os.path.join(PO_DIR, '*.po')): lang = os.path.basename(po[:-3]) + + # Skip unwanted locales + if lang not in LINGUAS and '*' not in LINGUAS: + continue + mo = os.path.join(MO_DIR, lang, 'gtg.mo') target_dir = os.path.dirname(mo) if not os.path.isdir(target_dir): 1.1 app-office/gtg/files/gtg-0.3.1-desktop.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gtg/files/gtg-0.3.1-desktop.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gtg/files/gtg-0.3.1-desktop.patch?rev=1.1&content-type=text/plain Index: gtg-0.3.1-desktop.patch =================================================================== Fix desktop-file-validate warning. --- a/gtg.desktop 2014-11-01 11:23:31.101881704 +0100 +++ b/gtg.desktop 2014-11-01 11:23:37.349775014 +0100 @@ -14,7 +14,7 @@ StartupNotify=true X-Ayatana-Desktop-Shortcuts=NewTask -[NewTask Shortcut Group] +[X-NewTask Shortcut Group] Name=New Task Exec=gtg_new_task TargetEnvironment=Unity