From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1DBA31382C5 for ; Sun, 29 Apr 2018 16:34:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3917DE09C4; Sun, 29 Apr 2018 16:34:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15263E09C4 for ; Sun, 29 Apr 2018 16:34:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8A30335CA1 for ; Sun, 29 Apr 2018 16:34:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B34A28D for ; Sun, 29 Apr 2018 16:34:06 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1525019639.6d2e6ff1182df719b2c695f6d7af88ce5c5e5d21.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-translations/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/cinnamon-translations/cinnamon-translations-3.6.3-r1.ebuild X-VCS-Directories: gnome-extra/cinnamon-translations/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: 6d2e6ff1182df719b2c695f6d7af88ce5c5e5d21 X-VCS-Branch: master Date: Sun, 29 Apr 2018 16:34:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ab4b804b-542c-4b46-8d58-02dc043567fa X-Archives-Hash: a56f0b0a62b11153cc05b997c3c24288 commit: 6d2e6ff1182df719b2c695f6d7af88ce5c5e5d21 Author: Kristian Fiskerstrand gentoo org> AuthorDate: Sun Apr 29 16:32:00 2018 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Sun Apr 29 16:33:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d2e6ff1 gnome-extra/cinnamon-translations: Avoid filname collissions Some files are moved from cinnamon-session-daemon to translations for 3.6 series, so avoid this by adding explicit dep, ensuring a proper installation order Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../cinnamon-translations-3.6.3-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnome-extra/cinnamon-translations/cinnamon-translations-3.6.3-r1.ebuild b/gnome-extra/cinnamon-translations/cinnamon-translations-3.6.3-r1.ebuild new file mode 100644 index 00000000000..8f055fc0aec --- /dev/null +++ b/gnome-extra/cinnamon-translations/cinnamon-translations-3.6.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PLOCALES="af am an ar as ast az be be@latin bg bn bn_IN br bs ca ca@valencia crh cs csb cy da de dz el en@shaw en_AU en_CA en_GB eo es es_AR et eu fa fi fil fo fr fr_CA frp fy ga gd gl gu he hi hr hu hy ia id ii is it ja jv ka kk km kn ko ksw ku ky la li lo lt lv mai mg mk ml mn mr ms my nb nds ne nl nn nso oc om or pa pap pl ps pt pt_BR ro ru rue rw sa sc sco shn si sk sl so sq sr sr@ijekavianlatin sr@latin sv sw ta te tg th tl tlh tpi tr ts tt ug uk ur uz uz@cyrillic vi wa xh yi zh_CN zh_HK zh_TW zu" + +inherit l10n + +DESCRIPTION="Translation data for Cinnamon" +HOMEPAGE="http://cinnamon.linuxmint.com/" +SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">gnome-extra/cinnamon-settings-daemon-3.6" +RDEPEND="${DEPEND}" +RESTRICT="test" # tests are for upstream translators and need network access + +src_configure() { :; } + +src_install() { + # Cannot run before since locales are not in the expected place for this to work + l10n_find_plocales_changes "${S}"/usr/share/locale "" "" + + install_locale() { + dodir /usr/share/locale + insinto /usr/share/locale + doins -r usr/share/locale/${1} + } + l10n_for_each_locale_do install_locale +}