summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* l10n.eclass: Do not mention linguas.desc any more.Ulrich Müller2018-01-211-2/+1
| | | | Closes: https://bugs.gentoo.org/645220
* l10n.eclass: Disabled locales are the complement of enabled ones.Ulrich Müller2018-01-191-15/+11
| | | | | | | | | | Disabled locales returned by l10n_get_locales() should be the complement of enabled locales: disabled = PLOCALES \ enabled. So far, in the case of the enabled set falling back to PLOCALE_BACKUP, the backup locale would end up being both enabled and disabled. Closes: https://bugs.gentoo.org/547790
* l10n.eclass: Update for unexpanded LINGUAS.Ulrich Müller2018-01-051-20/+22
|
* l10n.eclass: Add myself as maintainer.Ulrich Müller2017-07-021-1/+3
|
* l10n.eclass: maintainer is retiringPacho Ramos2017-06-201-1/+1
|
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-281-1/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* l10n.eclass: l10n_find_plocales_changes: make it more friendlyMike Frysinger2016-05-161-5/+8
| | | | | | - Use ebegin/eend to show process messages instead of two einfos. - Fix sorting logic to work in all locales. - Return 1 when things are out of sync so callers can abort if they want.
* l10n.eclass: Bump copyright yearJames Le Cuirot2016-05-081-1/+1
|
* l10n.eclass: Sort and normalize PLOCALES in l10n_find_plocales_changeJames Le Cuirot2016-05-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | l10n_find_plocales_change assumes that PLOCALES is sorted alphanumerically with a single space between each entry and no surrounding whitespace. This is not a bad assumption but it isn't documented and it's inconvenient in at least one particular case. MakeMKV uses non-standard locale names and I intend to map these using an associative array, which is possible as of EAPI 6. This allows me to do the following, though only with the above change as associative arrays are not ordered. declare -A MY_LOCALES MY_LOCALES=( [zh]=chi [da]=dan … ) PLOCALES="${!MY_LOCALES[@]}" inherit l10n src_prepare() { PLOCALES="${MY_LOCALES[@]}" l10n_find_plocales_changes … } src_install() { for locale in $(l10n_get_locales); do doins makemkv_${MY_LOCALES[${locale}]}.mo.gz done } Fixes bug #513242.
* proj/gentoo: Initial commitRobin H. Johnson2015-08-081-0/+119
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed