[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2017-09-16 Thread Andreas Sturmlechner
commit: 7ec7dcbe5acb0107290791738e72d6eae37b794d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 16 12:09:26 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Sep 16 12:27:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ec7dcbe

kde-apps/kde4-l10n: Drop 17.08.1 (r0)

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 kde-apps/kde4-l10n/kde4-l10n-17.08.1.ebuild | 192 
 1 file changed, 192 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-17.08.1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-17.08.1.ebuild
deleted file mode 100644
index 142d8847a54..000
--- a/kde-apps/kde4-l10n/kde4-l10n-17.08.1.ebuild
+++ /dev/null
@@ -1,192 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="optional"
-KDE_L10N=(
-   ar ast bg bs ca ca-valencia cs da de el en-GB eo es et eu fa fi fr ga 
gl he
-   hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt-BR 
ro ru
-   sk sl sr sr-ijekavsk sr-Latn sr-Latn-ijekavsk sv tr ug uk wa zh-CN zh-TW
-)
-inherit kde4-base
-
-DESCRIPTION="KDE legacy internationalization package"
-HOMEPAGE="https://l10n.kde.org";
-
-kde_l10n2lingua() {
-   local l
-   for l; do
-   case ${l} in
-   ca-valencia) echo ca@valencia;;
-   sr-ijekavsk) echo sr@ijekavian;;
-   sr-Latn-ijekavsk) echo sr@ijekavianlatin;;
-   sr-Latn) echo sr@latin;;
-   uz-Cyrl) echo uz@cyrillic;;
-   *) echo "${l/-/_}";;
-   esac
-   done
-}
-
-URI_BASE="${SRC_URI/kde4-l10n-${PV}.tar.xz/}kde-l10n/kde-l10n"
-SRC_URI=""
-for my_l10n in ${KDE_L10N[@]} ; do
-   case ${my_l10n} in
-   sr | sr-ijekavsk | sr-Latn-ijekavsk | sr-Latn)
-   SRC_URI="${SRC_URI} l10n_${my_l10n}? ( 
${URI_BASE}-sr-${PV}.tar.xz )"
-   ;;
-   *)
-   SRC_URI="${SRC_URI} l10n_${my_l10n}? ( 
${URI_BASE}-$(kde_l10n2lingua ${my_l10n})-${PV}.tar.xz )"
-   ;;
-   esac
-done
-unset URI_BASE
-
-KEYWORDS="~amd64 ~arm ~x86"
-
-DEPEND="
-   sys-devel/gettext
-"
-RDEPEND="
-   ! /dev/null ||
-   elog "${my_tar}: tar extract command failed at least 
partially - continuing"
-   done
-}
-
-src_prepare() {
-   # move known variant subdirs to root dir, currently sr@*
-   use_if_iuse l10n_sr-ijekavsk && l10n_variant_subdir2root sr-ijekavsk sr
-   use_if_iuse l10n_sr-Latn-ijekavsk && l10n_variant_subdir2root 
sr-Latn-ijekavsk sr
-   use_if_iuse l10n_sr-Latn && l10n_variant_subdir2root sr-Latn sr
-   if use_if_iuse l10n_sr; then
-   rm -rf kde-l10n-sr-${PV}/4/sr/sr@* || die "Failed to cleanup 
L10N=sr"
-   l10n_variant_subdir_buster sr
-   elif [[ -d kde-l10n-sr-${PV} ]]; then
-   # having any variant selected means parent lingua will be 
unpacked as well
-   rm -r kde-l10n-sr-${PV} || die "Failed to remove sr parent 
lingua"
-   fi
-
-   cat <<-EOF > CMakeLists.txt || die
-   project(${PN})
-   cmake_minimum_required(VERSION 2.8.12)
-   EOF
-   # add all l10n directories to cmake
-   if [[ -n ${A} ]]; then
-   cat <<-EOF >> CMakeLists.txt || die
-   $(printf "add_subdirectory( %s )\n" \
-   `find . -mindepth 1 -maxdepth 1 -type d | sed -e 
"s:^\./::"`)
-   EOF
-   fi
-
-   kde4-base_src_prepare
-   [[ -n ${A} ]] || return
-
-   einfo "Removing file collisions with Plasma 5 and Applications"
-   [[ -f ${REMOVE_DIRS} ]] || die "Error: ${REMOVE_DIRS} not found!"
-
-   use test && einfo "Tests enabled: Listing LINGUAS causing file 
collisions"
-
-   einfo "Directories..."
-   while read path; do
-   if use test ; then  # build a report w/ L10N="*" to submit 
@upstream
-   local lngs
-   for lng in $(kde_l10n2lingua ${KDE_L10N[@]}); do
-   SDIR="${S}/${KMNAME}-${lng}-${PV}/4/${lng}"
-   if [[ -d "${SDIR}"/${path%\ *}/${path#*\ } ]] ; 
then
-   lngs+=" ${lng}"
-   fi
-   done
-   [[ -n "${lngs}" ]] && einfo "${path%\ *}/${path#*\ 
}${lngs}"
-   unset lngs
-   fi
-   if ls -U ./*/4/*/${path%\ *}/${path#*\ } > /dev/null 2>&1; then
-   sed -e "\:add_subdirectory(\s*${path#*\ }\s*): s:^:#:" \
-   -i ./*/4/*/${path%\ *}/CMakeLists.txt || \
-   die "Failed to comment out ${path}"
-   else
-   einfo "F: ${path}"  # run with L10N=

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/, kde-apps/kde4-l10n/

2017-09-16 Thread Andreas Sturmlechner
commit: 87a36022787141dc903009aa5f0bd68f0e974ea7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 16 12:09:00 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Sep 16 12:27:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a36022

kde-apps/kde4-l10n: Remove kcontrol docs altogether

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../kde4-l10n/files/kde4-l10n-17.08.1-remove-dirs  |  17 ++
 kde-apps/kde4-l10n/kde4-l10n-17.08.1-r1.ebuild | 192 +
 2 files changed, 209 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-17.08.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-17.08.1-remove-dirs
new file mode 100644
index 000..044910d0c7f
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-17.08.1-remove-dirs
@@ -0,0 +1,17 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+docs/kde-runtime glossary
+docs/kde-runtime khelpcenter
+docs/kdesdk umbrello
+scripts kdeedu
+# Plasma 5
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime kcontrol
+docs/kdelibs kbuildsycoca4
+scripts kdebase

diff --git a/kde-apps/kde4-l10n/kde4-l10n-17.08.1-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-17.08.1-r1.ebuild
new file mode 100644
index 000..b37a7f3a6b3
--- /dev/null
+++ b/kde-apps/kde4-l10n/kde4-l10n-17.08.1-r1.ebuild
@@ -0,0 +1,192 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+KDE_L10N=(
+   ar ast bg bs ca ca-valencia cs da de el en-GB eo es et eu fa fi fr ga 
gl he
+   hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt-BR 
ro ru
+   sk sl sr sr-ijekavsk sr-Latn sr-Latn-ijekavsk sv tr ug uk wa zh-CN zh-TW
+)
+inherit kde4-base
+
+DESCRIPTION="KDE legacy internationalization package"
+HOMEPAGE="https://l10n.kde.org";
+
+kde_l10n2lingua() {
+   local l
+   for l; do
+   case ${l} in
+   ca-valencia) echo ca@valencia;;
+   sr-ijekavsk) echo sr@ijekavian;;
+   sr-Latn-ijekavsk) echo sr@ijekavianlatin;;
+   sr-Latn) echo sr@latin;;
+   uz-Cyrl) echo uz@cyrillic;;
+   *) echo "${l/-/_}";;
+   esac
+   done
+}
+
+URI_BASE="${SRC_URI/kde4-l10n-${PV}.tar.xz/}kde-l10n/kde-l10n"
+SRC_URI=""
+for my_l10n in ${KDE_L10N[@]} ; do
+   case ${my_l10n} in
+   sr | sr-ijekavsk | sr-Latn-ijekavsk | sr-Latn)
+   SRC_URI="${SRC_URI} l10n_${my_l10n}? ( 
${URI_BASE}-sr-${PV}.tar.xz )"
+   ;;
+   *)
+   SRC_URI="${SRC_URI} l10n_${my_l10n}? ( 
${URI_BASE}-$(kde_l10n2lingua ${my_l10n})-${PV}.tar.xz )"
+   ;;
+   esac
+done
+unset URI_BASE
+
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND="
+   sys-devel/gettext
+"
+RDEPEND="
+   ! /dev/null ||
+   elog "${my_tar}: tar extract command failed at least 
partially - continuing"
+   done
+}
+
+src_prepare() {
+   # move known variant subdirs to root dir, currently sr@*
+   use_if_iuse l10n_sr-ijekavsk && l10n_variant_subdir2root sr-ijekavsk sr
+   use_if_iuse l10n_sr-Latn-ijekavsk && l10n_variant_subdir2root 
sr-Latn-ijekavsk sr
+   use_if_iuse l10n_sr-Latn && l10n_variant_subdir2root sr-Latn sr
+   if use_if_iuse l10n_sr; then
+   rm -rf kde-l10n-sr-${PV}/4/sr/sr@* || die "Failed to cleanup 
L10N=sr"
+   l10n_variant_subdir_buster sr
+   elif [[ -d kde-l10n-sr-${PV} ]]; then
+   # having any variant selected means parent lingua will be 
unpacked as well
+   rm -r kde-l10n-sr-${PV} || die "Failed to remove sr parent 
lingua"
+   fi
+
+   cat <<-EOF > CMakeLists.txt || die
+   project(${PN})
+   cmake_minimum_required(VERSION 2.8.12)
+   EOF
+   # add all l10n directories to cmake
+   if [[ -n ${A} ]]; then
+   cat <<-EOF >> CMakeLists.txt || die
+   $(printf "add_subdirectory( %s )\n" \
+   `find . -mindepth 1 -maxdepth 1 -type d | sed -e 
"s:^\./::"`)
+   EOF
+   fi
+
+   kde4-base_src_prepare
+   [[ -n ${A} ]] || return
+
+   einfo "Removing file collisions with Plasma 5 and Applications"
+   [[ -f ${REMOVE_DIRS} ]] || die "Error: ${REMOVE_DIRS} not found!"
+
+   use test && einfo "Tests enabled: Listing LINGUAS causing file 
collisions"
+
+   einfo "Directories..."
+   while read path; do
+   if use test ; then  # build a report w/ L10N="*" to submit 
@upstream
+   local lngs
+   for

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2017-07-25 Thread Andreas Sturmlechner
commit: 6b41efca5b1b93e185ce5b0e2483eb20ccdf58b6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul 25 16:01:30 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul 25 16:02:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b41efca

kde-apps/kde4-l10n: Re-add missing blocker

It was lost during kde5 -> kde4-base.eclass migration.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 kde-apps/kde4-l10n/kde4-l10n-17.04.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-17.04.3.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-17.04.3.ebuild
index d73c0296ebb..cbbecb3ae34 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-17.04.3.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-17.04.3.ebuild
@@ -49,6 +49,7 @@ DEPEND="
 "
 RDEPEND="
!

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2017-03-25 Thread Andreas Sturmlechner
commit: 24c1c877ba4b9d37bf2245ba66e0b2e75e6fe64d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Mar 25 17:54:21 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Mar 25 17:54:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c1c877

kde-apps/kde4-l10n: Revert manifest change

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 kde-apps/kde4-l10n/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde4-l10n/Manifest b/kde-apps/kde4-l10n/Manifest
index fb7faa9a7d2..063ff2b7295 100644
--- a/kde-apps/kde4-l10n/Manifest
+++ b/kde-apps/kde4-l10n/Manifest
@@ -103,7 +103,7 @@ DIST kde-l10n-ug-16.12.3.tar.xz 1621292 SHA256 
d60244a5b0e55ab95947cd4e75868a02e
 DIST kde-l10n-uk-16.08.3.tar.xz 25908908 SHA256 
e725ceef7497f5726d5151e44fd2d5d17dbf4e6a72f14ddfb9ce6c713fb49a84 SHA512 
25dbb47cd0155f22c8448472b60295d8e032cd8687c41acd7d80ccd080e498d098618464fc9cf37f8b89d8889118a641b5cb2b4a0dfd309dac7de66b4e89bfee
 WHIRLPOOL 
f83343626713fd5b5f874afa48e686a1584bd59bc15e3b0eac19f7fee6b1c1559eba2e287b4a72bf4ff81dc8da6230bdfdf6461bd1c8427a25ffe5df02bf4249
 DIST kde-l10n-uk-16.12.3.tar.xz 24087960 SHA256 
bf2ef1ce317c2a3599c54aa9275e30e0c1f964cc046eb057687cc5bbfac6771c SHA512 
96c08d9458d5e2c16eb509942906d2953f200c92f115c9ffc1a981c5bf1dea430d5108120e27ed38a1e8af32b931e6ac6077fea471b62a92d9da17ddb32b6744
 WHIRLPOOL 
44413785caec2401b4369b1c97edf3f6c5dfb2ab69fa8832d70e46db816af015189809f4db90709d86e30d155523437ed5dca9b85a7a1415eb85bddb5e6fcfbb
 DIST kde-l10n-wa-16.08.3.tar.xz 1756888 SHA256 
fb5b84b500f9c43281ce2dc0d67cb25acd4f3a08ea917eec591a145946da35e2 SHA512 
a1f264cedd82526b3739738096c9b1d2c1096a12acbfc8ee64f71703b817050c40488d8ee763bc14abdd1cd01b16edb034d0ef7b9f91afd9f75499d5de970509
 WHIRLPOOL 
2120f6d5197839035d1c8e43f8fed0612aa2c81472241ca5f7cb8c40673b42fdaf99bdece6cd3c51564b91bf1db7d4db59e0f7d422540efdd7f63f691de03597
-DIST kde-l10n-wa-16.12.3.tar.xz 78848 SHA256 
59d770368e9e09164bf5ddd6a88823ee1b28765e0de38ee152d32a83e73c9f5a SHA512 
0843b420869ee0d2f567c4d3ae9138be832c48b6a4a171f73c1d028309b196be027281d5e919e3b65030db8729ff135112689d367cbf93e89b040cad64de9bb3
 WHIRLPOOL 
946758fdb78437a125c6d23bc00c97d1e35d45413ad4761a05aec860050ab4fdd515671b981ef1df5bb53e62bf78bc2b3d5b8b40908812689f61261ab8a8e40a
+DIST kde-l10n-wa-16.12.3.tar.xz 1532200 SHA256 
2ed713d8b79c82783d2a8573ee7a2cd34963938b4cc3aa3271f0fc4b92d01593 SHA512 
b91c0446402fbfae334f1d1db88e26aab8455f6fc1ba125e36297871ada049c016eec59d81c3085509fd24136204b3a736a8468df2d4ea9c8208eedbd233a991
 WHIRLPOOL 
2eb62361064e4d9a5f36db91c7daca1dabe4943cc4ad3dd630ef3de63dbd8ebad361fc5ad0f3d66bfc313d59fdfa11a2a3e0d847b015cf8a3c1199bccbba5145
 DIST kde-l10n-zh_CN-16.08.3.tar.xz 2880572 SHA256 
6627c7190321fae265c9d2b3aea95d6ec49cf09053569c1a970df529373d9e08 SHA512 
f7c192524bdb38460fafa4671931d7d5a75cb771f7027d47598e163062e1f0109ba828e72cabf5c801dec1c46964f39e7b8cf2cd24a7d5117bc286622c3ebd63
 WHIRLPOOL 
f754e9010125b1d4b6cc3d3f16905aefc88ec749b92dd3735a2c25010851a7667920a6725e89759253e619280c10aab6c97fbb78c9d7dfd1d3d6bf73e8869584
 DIST kde-l10n-zh_CN-16.12.3.tar.xz 2697240 SHA256 
81bc711d17fa744ddf40057884793548f742df8d3ad8fd9f6857f211d8130907 SHA512 
32712ce3e7180191b27a3d1bddb9556056d41d2edae26f64ea4e9bf0a1e38bcbe4a04111887712f08287764d4d45b59ae81e5cb4e82466cc4d1f340f87ddd8b8
 WHIRLPOOL 
1813ab1e780109bb0e0ea68e3f011fc22e36a82d0742013864d4f059380311702e5e55307d308941254796e188e95d8d2965fc8159e440c85ae2342a5bbd4b01
 DIST kde-l10n-zh_TW-16.08.3.tar.xz 2666992 SHA256 
d11778fbb15d5142705c333a322f55b1a41e9fbae34e5c879d80e92c87bab6d4 SHA512 
3bf3dc0d77b9aa3bf80e496a9288f9f06bc3f2042f519103124eafe4d2d10fb13889d95f097f307093b92ab483c225503ba38334558d487792245a761a6a459b
 WHIRLPOOL 
07f2b5a59aa80a430934c0be3fa6193a9136fed2b4f4fcb08ab76b14d767cc5da94cd6c170db8902b07becbc5a5f8f4d22e15243ee01d42b065dd4a35e630c5f



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/, kde-apps/kde4-l10n/

2017-03-25 Thread Andreas Sturmlechner
commit: 2f6c8f4b9154c9bcb6fde89d5113adba6f192e45
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Mar 25 16:42:33 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Mar 25 16:58:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f6c8f4b

kde-apps/kde4-l10n: Fix file collision w/ kde-plasma/plasma-desktop-5.9.4

Reported-by: Sabayon

Also, fix kde-l10n-wa tarball manifest.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../kde4-l10n/files/kde4-l10n-16.12.3-remove-dirs  |  26 +
 kde-apps/kde4-l10n/kde4-l10n-16.12.3-r1.ebuild | 114 +
 2 files changed, 140 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.12.3-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.12.3-remove-dirs
new file mode 100644
index 000..c1827c7aee8
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-16.12.3-remove-dirs
@@ -0,0 +1,26 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+docs/kde-runtime glossary
+docs/kde-runtime khelpcenter
+docs/kdesdk umbrello
+scripts kdeedu
+# Plasma 5
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime/kcontrol bookmarks
+docs/kde-runtime/kcontrol cookies
+docs/kde-runtime/kcontrol ebrowsing
+docs/kde-runtime/kcontrol emoticons
+docs/kde-runtime/kcontrol icons
+docs/kde-runtime/kcontrol kcmcgi
+docs/kde-runtime/kcontrol kcm_ssl
+docs/kde-runtime/kcontrol nepomuk
+docs/kde-runtime/kcontrol smb
+docs/kde-runtime/kcontrol trash
+docs/kde-runtime/kcontrol useragent
+scripts kdebase

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.12.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-16.12.3-r1.ebuild
new file mode 100644
index 000..cc1656c3b50
--- /dev/null
+++ b/kde-apps/kde4-l10n/kde4-l10n-16.12.3-r1.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_AUTODEPS="false"
+KDE_HANDBOOK="optional"
+KDE_L10N=(
+   ar ast bg bs ca ca-valencia cs da de el en-GB eo es et eu fa fi fr ga 
gl he
+   hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt-BR 
ro ru
+   sk sl sr sr-ijekavsk sr-Latn sr-Latn-ijekavsk sv tr ug uk wa zh-CN zh-TW
+)
+KMNAME="kde-l10n"
+inherit kde5
+
+DESCRIPTION="KDE legacy internationalization package"
+
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND="
+   kde-frameworks/kdelibs:4
+   sys-devel/gettext
+"
+RDEPEND="
+   >=kde-apps/kde-l10n-${PV}
+"
+
+REMOVE_DIRS="${FILESDIR}/${PN}-16.12.3-remove-dirs"
+REMOVE_MSGS="${FILESDIR}/${PN}-16.11.90-remove-messages"
+
+IUSE="aqua test" # TODO: Drop aqua as soon as possible
+
+pkg_setup() {
+   if [[ -z ${A} ]]; then
+   elog
+   elog "None of the requested L10N are supported by ${P}."
+   elog
+   elog "${P} supports these language codes:"
+   elog "${KDE_L10N[@]}"
+   elog
+   fi
+   [[ -n ${A} ]] && kde5_pkg_setup
+}
+
+src_prepare() {
+   kde5_src_prepare
+   [[ -n ${A} ]] || return
+
+   einfo "Removing file collisions with Plasma 5 and Applications"
+   [[ -f ${REMOVE_DIRS} ]] || die "Error: ${REMOVE_DIRS} not found!"
+   [[ -f ${REMOVE_MSGS} ]] || die "Error: ${REMOVE_MSGS} not found!"
+
+   use test && einfo "Tests enabled: Listing LINGUAS causing file 
collisions"
+
+   einfo "Directories..."
+   while read path; do
+   if use test ; then  # build a report w/ L10N="*" to submit 
@upstream
+   local lngs
+   for lng in $(kde_l10n2lingua ${KDE_L10N[@]}); do
+   SDIR="${S}/${KMNAME}-${lng}-${PV}/4/${lng}"
+   if [[ -d "${SDIR}"/${path%\ *}/${path#*\ } ]] ; 
then
+   lngs+=" ${lng}"
+   fi
+   done
+   [[ -n "${lngs}" ]] && einfo "${path%\ *}/${path#*\ 
}${lngs}"
+   unset lngs
+   fi
+   if ls -U ./*/4/*/${path%\ *}/${path#*\ } > /dev/null 2>&1; then
+   sed -e "\:add_subdirectory(\s*${path#*\ }\s*): s:^:#:" \
+   -i ./*/4/*/${path%\ *}/CMakeLists.txt || \
+   die "Failed to comment out ${path}"
+   else
+   einfo "F: ${path}"  # run with L10N="*" to cut down 
list
+   fi
+   done < <(grep -ve "^$\|^\s*\#" "${REMOVE_DIRS}")
+   einfo
+   einfo "Messages..."
+   while read path; do
+   if use test ; then  # build a report w/ L10N="*" to submit 
@upstream
+   local lngs
+   for lng in

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/, kde-apps/kde4-l10n/files/

2017-03-25 Thread Andreas Sturmlechner
commit: 7e96bc0ffb08279ae17ae0ada73f3376250e5586
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Mar 25 16:44:22 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Mar 25 16:58:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e96bc0f

kde-apps/kde4-l10n: Drop 16.12.3 (r0)

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 kde-apps/kde4-l10n/Manifest|   2 +-
 .../kde4-l10n/files/kde4-l10n-16.11.90-remove-dirs |  25 -
 kde-apps/kde4-l10n/kde4-l10n-16.12.3.ebuild| 114 -
 3 files changed, 1 insertion(+), 140 deletions(-)

diff --git a/kde-apps/kde4-l10n/Manifest b/kde-apps/kde4-l10n/Manifest
index 063ff2b7295..fb7faa9a7d2 100644
--- a/kde-apps/kde4-l10n/Manifest
+++ b/kde-apps/kde4-l10n/Manifest
@@ -103,7 +103,7 @@ DIST kde-l10n-ug-16.12.3.tar.xz 1621292 SHA256 
d60244a5b0e55ab95947cd4e75868a02e
 DIST kde-l10n-uk-16.08.3.tar.xz 25908908 SHA256 
e725ceef7497f5726d5151e44fd2d5d17dbf4e6a72f14ddfb9ce6c713fb49a84 SHA512 
25dbb47cd0155f22c8448472b60295d8e032cd8687c41acd7d80ccd080e498d098618464fc9cf37f8b89d8889118a641b5cb2b4a0dfd309dac7de66b4e89bfee
 WHIRLPOOL 
f83343626713fd5b5f874afa48e686a1584bd59bc15e3b0eac19f7fee6b1c1559eba2e287b4a72bf4ff81dc8da6230bdfdf6461bd1c8427a25ffe5df02bf4249
 DIST kde-l10n-uk-16.12.3.tar.xz 24087960 SHA256 
bf2ef1ce317c2a3599c54aa9275e30e0c1f964cc046eb057687cc5bbfac6771c SHA512 
96c08d9458d5e2c16eb509942906d2953f200c92f115c9ffc1a981c5bf1dea430d5108120e27ed38a1e8af32b931e6ac6077fea471b62a92d9da17ddb32b6744
 WHIRLPOOL 
44413785caec2401b4369b1c97edf3f6c5dfb2ab69fa8832d70e46db816af015189809f4db90709d86e30d155523437ed5dca9b85a7a1415eb85bddb5e6fcfbb
 DIST kde-l10n-wa-16.08.3.tar.xz 1756888 SHA256 
fb5b84b500f9c43281ce2dc0d67cb25acd4f3a08ea917eec591a145946da35e2 SHA512 
a1f264cedd82526b3739738096c9b1d2c1096a12acbfc8ee64f71703b817050c40488d8ee763bc14abdd1cd01b16edb034d0ef7b9f91afd9f75499d5de970509
 WHIRLPOOL 
2120f6d5197839035d1c8e43f8fed0612aa2c81472241ca5f7cb8c40673b42fdaf99bdece6cd3c51564b91bf1db7d4db59e0f7d422540efdd7f63f691de03597
-DIST kde-l10n-wa-16.12.3.tar.xz 1532200 SHA256 
2ed713d8b79c82783d2a8573ee7a2cd34963938b4cc3aa3271f0fc4b92d01593 SHA512 
b91c0446402fbfae334f1d1db88e26aab8455f6fc1ba125e36297871ada049c016eec59d81c3085509fd24136204b3a736a8468df2d4ea9c8208eedbd233a991
 WHIRLPOOL 
2eb62361064e4d9a5f36db91c7daca1dabe4943cc4ad3dd630ef3de63dbd8ebad361fc5ad0f3d66bfc313d59fdfa11a2a3e0d847b015cf8a3c1199bccbba5145
+DIST kde-l10n-wa-16.12.3.tar.xz 78848 SHA256 
59d770368e9e09164bf5ddd6a88823ee1b28765e0de38ee152d32a83e73c9f5a SHA512 
0843b420869ee0d2f567c4d3ae9138be832c48b6a4a171f73c1d028309b196be027281d5e919e3b65030db8729ff135112689d367cbf93e89b040cad64de9bb3
 WHIRLPOOL 
946758fdb78437a125c6d23bc00c97d1e35d45413ad4761a05aec860050ab4fdd515671b981ef1df5bb53e62bf78bc2b3d5b8b40908812689f61261ab8a8e40a
 DIST kde-l10n-zh_CN-16.08.3.tar.xz 2880572 SHA256 
6627c7190321fae265c9d2b3aea95d6ec49cf09053569c1a970df529373d9e08 SHA512 
f7c192524bdb38460fafa4671931d7d5a75cb771f7027d47598e163062e1f0109ba828e72cabf5c801dec1c46964f39e7b8cf2cd24a7d5117bc286622c3ebd63
 WHIRLPOOL 
f754e9010125b1d4b6cc3d3f16905aefc88ec749b92dd3735a2c25010851a7667920a6725e89759253e619280c10aab6c97fbb78c9d7dfd1d3d6bf73e8869584
 DIST kde-l10n-zh_CN-16.12.3.tar.xz 2697240 SHA256 
81bc711d17fa744ddf40057884793548f742df8d3ad8fd9f6857f211d8130907 SHA512 
32712ce3e7180191b27a3d1bddb9556056d41d2edae26f64ea4e9bf0a1e38bcbe4a04111887712f08287764d4d45b59ae81e5cb4e82466cc4d1f340f87ddd8b8
 WHIRLPOOL 
1813ab1e780109bb0e0ea68e3f011fc22e36a82d0742013864d4f059380311702e5e55307d308941254796e188e95d8d2965fc8159e440c85ae2342a5bbd4b01
 DIST kde-l10n-zh_TW-16.08.3.tar.xz 2666992 SHA256 
d11778fbb15d5142705c333a322f55b1a41e9fbae34e5c879d80e92c87bab6d4 SHA512 
3bf3dc0d77b9aa3bf80e496a9288f9f06bc3f2042f519103124eafe4d2d10fb13889d95f097f307093b92ab483c225503ba38334558d487792245a761a6a459b
 WHIRLPOOL 
07f2b5a59aa80a430934c0be3fa6193a9136fed2b4f4fcb08ab76b14d767cc5da94cd6c170db8902b07becbc5a5f8f4d22e15243ee01d42b065dd4a35e630c5f

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.11.90-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.11.90-remove-dirs
deleted file mode 100644
index 93630fefca7..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-16.11.90-remove-dirs
+++ /dev/null
@@ -1,25 +0,0 @@
-# Disable any subdirectories listed here. Comments are ignored
-# First argument: parent directory
-# Second argument: which subdirectory to disable in CMakeLists.txt
-# kde-l10n 5
-docs/kde-runtime glossary
-docs/kde-runtime khelpcenter
-docs/kdesdk umbrello
-scripts kdeedu
-# Plasma 5
-docs/kde-runtime fundamentals
-docs/kde-runtime kdesu
-docs/kde-runtime khelpcenter
-docs/kde-runtime knetattach
-docs/kde-runtime onlinehelp
-docs/kde-runtime/kcontrol bookmarks
-docs/kde-runtime/kcontrol cookies
-docs/kde-runtime/kcontrol ebrowsing
-docs/kde-runtime/kcontrol emoticons
-docs/kde-runtime/kcontrol icons
-docs/kde-runtime/kcontrol kcmcgi
-

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2016-09-15 Thread Michael Palimaka
commit: 17183740d867d68fdfeb5a75fc8035838d9c03b3
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 15 17:39:32 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 15 17:39:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17183740

kde-apps/kde4-l10n: remove unused files

Package-Manager: portage-2.3.0

 .../kde4-l10n/files/kde4-l10n-15.11.90-remove-dirs |  52 -
 .../files/kde4-l10n-15.12.3-remove-messages| 214 -
 2 files changed, 266 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.11.90-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.11.90-remove-dirs
deleted file mode 100644
index ab7681e..
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.11.90-remove-dirs
+++ /dev/null
@@ -1,52 +0,0 @@
-# Disable any subdirectories listed here. Comments are ignored
-# First argument: parent directory
-# Second argument: which subdirectory to disable in CMakeLists.txt
-# kde-l10n 5
-data/kdeedu khangman
-docs/applications kate
-docs/applications konsole
-docs/applications kwrite
-docs/kdeedu kig
-docs/kdeedu pairseditor
-docs/kdeedu parley
-docs/kdeedu step
-docs/kdegames bomber
-docs/kdegraphics gwenview
-docs/kdegraphics kruler
-docs/kdesdk kapptemplate
-docs/kdesdk okteta
-docs/kdeutils kwalletmanager
-# Plasma 5.3
-docs/kde-runtime fundamentals
-docs/kde-runtime kdesu
-docs/kde-runtime khelpcenter
-docs/kde-runtime knetattach
-docs/kde-runtime onlinehelp
-docs/kde-runtime/kcontrol bookmarks
-docs/kde-runtime/kcontrol cookies
-docs/kde-runtime/kcontrol ebrowsing
-docs/kde-runtime/kcontrol emoticons
-docs/kde-runtime/kcontrol icons
-docs/kde-runtime/kcontrol kcmcgi
-docs/kde-runtime/kcontrol khtml
-docs/kde-runtime/kcontrol smb
-docs/kde-runtime/kcontrol trash
-docs/kde-runtime/kcontrol useragent
-docs/kde-workspace kfontview
-docs/kde-workspace kinfocenter
-docs/kde-workspace klipper
-docs/kde-workspace kmenuedit
-docs/kde-workspace ksysguard
-docs/kde-workspace plasma-desktop
-docs/kde-workspace systemsettings
-docs/kde-workspace/kcontrol clock
-docs/kde-workspace/kcontrol colors
-docs/kde-workspace/kcontrol desktopthemedetails
-docs/kde-workspace/kcontrol joystick
-docs/kde-workspace/kcontrol kcmaccess
-docs/kde-workspace/kcontrol kcmstyle
-docs/kde-workspace/kcontrol solid-actions
-docs/kde-workspace/kcontrol splashscreen
-# kdepim-l10n 5
-docs kdepim
-docs kdepimlibs

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages
deleted file mode 100644
index a7901c6..
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages
+++ /dev/null
@@ -1,214 +0,0 @@
-# Remove any path listed here. Comments are ignored
-# KDE Workspace 4
-kde-workspace/freespacenotifier.po
-kde-workspace/joystick.po
-kde-workspace/kaccess.po
-kde-workspace/kcmaccess.po
-kde-workspace/kcm_autostart.po
-kde-workspace/kcmbell.po
-kde-workspace/kcmcolors.po
-kde-workspace/kcm_desktoppaths.po
-kde-workspace/kcm_desktopthemedetails.po
-kde-workspace/kcmdevinfo.po
-kde-workspace/kcmfonts.po
-kde-workspace/kcm_infobase.po
-kde-workspace/kcminfo.po
-kde-workspace/kcm_infosummary.po
-kde-workspace/kcminit.po
-kde-workspace/kcminput.po
-kde-workspace/kcmkclock.po
-kde-workspace/kcmkeyboard.po
-kde-workspace/kcmkeys.po
-kde-workspace/kcmkwincompositing.po
-kde-workspace/kcmkwindecoration.po
-kde-workspace/kcm_kwindesktop.po
-kde-workspace/kcmkwinrules.po
-kde-workspace/kcmkwinscreenedges.po
-kde-workspace/kcm-kwin-scripts.po
-kde-workspace/kcm_kwintabbox.po
-kde-workspace/kcmkwm.po
-kde-workspace/kcmlaunch.po
-kde-workspace/kcm_memory.po
-kde-workspace/kcmnic.po
-kde-workspace/kcmopengl.po
-kde-workspace/kcm_pci.po
-kde-workspace/kcmsamba.po
-kde-workspace/kcmsmserver.po
-kde-workspace/kcm_solid_actions.po
-kde-workspace/kcm_standard_actions.po
-kde-workspace/kcmstyle.po
-kde-workspace/kcmusb.po
-kde-workspace/kcmview1394.po
-kde-workspace/kcmworkspaceoptions.po
-kde-workspace/kfontinst.po
-kde-workspace/khotkeys.po
-kde-workspace/kinfocenter.po
-kde-workspace/klipper.po
-kde-workspace/kmenuedit.po
-kde-workspace/krdb.po
-kde-workspace/krunner.po
-kde-workspace/kscreenlocker_greet.po
-kde-workspace/kscreenlocker.po
-kde-workspace/ksgrd.po
-kde-workspace/ksmserver.po
-kde-workspace/ksplashthemes.po
-kde-workspace/ksysguardlsofwidgets.po
-kde-workspace/ksysguard.po
-kde-workspace/ktouchpadenabler.po
-kde-workspace/kwin_clients.po
-kde-workspace/kwin_effects.po
-kde-workspace/kwin.po
-kde-workspace/kwin_scripting.po
-kde-workspace/libkdecorations.po
-kde-workspace/libkworkspace.po
-kde-workspace/liboxygenstyleconfig.po
-kde-workspace/libpowerdevilcommonconfig.po
-kde-workspace/libtaskmanager.po
-kde-workspace/plasma_applet_quicklaunch.po
-kde-workspace/plasma_applet_system-monitor.po
-kde-workspace/plasma_applet_webbrowser.po
-kde-workspace/plasma_containmentactions_contextmenu.po
-kde-workspace/plasma_containmentactions_switchwindow.po
-kde-works

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/, kde-apps/kde4-l10n/files/

2016-09-15 Thread Michael Palimaka
commit: 998f56786dd68871fbbbe050e681ccbf69423593
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 15 17:38:01 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 15 17:38:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998f5678

kde-apps/kde4-l10n: move stray files to files/ directory

Gentoo-bug: 593894

Package-Manager: portage-2.3.0

 kde-apps/kde4-l10n/{ => files}/kde4-l10n-16.07.80-remove-messages | 0
 kde-apps/kde4-l10n/{ => files}/kde4-l10n-16.08.1-remove-dirs  | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.07.80-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.07.80-remove-messages
similarity index 100%
rename from kde-apps/kde4-l10n/kde4-l10n-16.07.80-remove-messages
rename to kde-apps/kde4-l10n/files/kde4-l10n-16.07.80-remove-messages

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.08.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.08.1-remove-dirs
similarity index 100%
rename from kde-apps/kde4-l10n/kde4-l10n-16.08.1-remove-dirs
rename to kde-apps/kde4-l10n/files/kde4-l10n-16.08.1-remove-dirs



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2016-07-14 Thread Johannes Huber
commit: 9101124585f1129e0ba0ad63fed1a69e8f3eb749
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Jul 15 06:19:26 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Jul 15 06:19:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91011245

kde-apps/kde4-l10n: Remove unused file

Package-Manager: portage-2.3.0

 .../kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs  | 43 --
 1 file changed, 43 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
deleted file mode 100644
index 9563950..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
+++ /dev/null
@@ -1,43 +0,0 @@
-# Disable any subdirectories listed here. Comments are ignored
-# First argument: parent directory
-# Second argument: which subdirectory to disable in CMakeLists.txt
-# kde-l10n 5
-data/kdeedu khangman
-docs/applications kate
-docs/applications konsole
-docs/applications kwrite
-docs/kde-runtime glossary
-docs/kde-runtime khelpcenter
-docs/kdeedu kig
-docs/kdeedu parley
-docs/kdeedu step
-docs/kdegames bomber
-docs/kdegraphics gwenview
-docs/kdegraphics kruler
-docs/kdesdk kapptemplate
-docs/kdesdk okteta
-docs/kdesdk umbrello
-docs/kdeutils kwalletmanager
-scripts kdeedu
-# Plasma 5
-docs kde-workspace
-docs/kde-runtime fundamentals
-docs/kde-runtime kdesu
-docs/kde-runtime khelpcenter
-docs/kde-runtime knetattach
-docs/kde-runtime onlinehelp
-docs/kde-runtime/kcontrol bookmarks
-docs/kde-runtime/kcontrol cookies
-docs/kde-runtime/kcontrol ebrowsing
-docs/kde-runtime/kcontrol emoticons
-docs/kde-runtime/kcontrol icons
-docs/kde-runtime/kcontrol kcmcgi
-docs/kde-runtime/kcontrol nepomuk
-docs/kde-runtime/kcontrol smb
-docs/kde-runtime/kcontrol trash
-docs/kde-runtime/kcontrol useragent
-messages kde-workspace
-messages kdeplasma-addons
-# kdepim-l10n 5
-docs kdepim
-docs kdepimlibs



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2016-07-10 Thread Michael Palimaka
commit: b2a11558d272c371aa79c8af70758fc722d41662
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jul 10 15:44:38 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jul 10 15:44:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a11558

kde-apps/kde4-l10n: enable minimal USE flag by default

Enabling the minimal USE flag by default will help resolve blockers while
upgrading KDE packages in situations where the plasma profile is not in use.

Gentoo-bug: 588496

Package-Manager: portage-2.3.0

 kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
index 280bfaf..e0e1b28 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
 "
 
 KEYWORDS="amd64 ~arm x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="minimal"
+IUSE="+minimal"
 
 REMOVE_DIRS="${FILESDIR}/${PN}-15.11.90-remove-dirs"
 REMOVE_MSGS="${FILESDIR}/${PN}-15.12.3-remove-messages"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2016-07-03 Thread Michał Górny
commit: 30acc29edb868d0c68d6152bf29db1a63d685e49
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul  2 12:45:35 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  3 16:08:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30acc29e

kde-apps/kde4-l10n: Migrate to L10N

 kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild | 20 ++--
 kde-apps/kde4-l10n/kde4-l10n-16.04.2.ebuild| 42 --
 2 files changed, 29 insertions(+), 33 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
index a49561d..45a8a0c 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild
@@ -39,13 +39,13 @@ LURI_BASE="mirror://kde/stable/${LV}/src/${KMNAME}"
 SRC_URI=""
 
 for MY_LANG in ${LEGACY_LANGS} ; do
-   IUSE="${IUSE} linguas_${MY_LANG}"
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
+   IUSE="${IUSE} l10n_${MY_LANG/[@_]/-}"
+   SRC_URI="${SRC_URI} l10n_${MY_LANG/[@_]/-}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
 done
 
 for MY_LANG in ${MY_LANGS} ; do
-   IUSE="${IUSE} linguas_${MY_LANG}"
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
+   IUSE="${IUSE} l10n_${MY_LANG/[@_]/-}"
+   SRC_URI="${SRC_URI} l10n_${MY_LANG/[@_]/-}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
 done
 
 S="${WORKDIR}"
@@ -53,12 +53,10 @@ S="${WORKDIR}"
 src_unpack() {
if [[ -z ${A} ]]; then
elog
-   elog "You either have the LINGUAS variable unset, or it only"
-   elog "contains languages not supported by ${P}."
-   elog "You won't have any additional language support."
+   elog "None of the requested L10N are supported by ${P}."
elog
elog "${P} supports these language codes:"
-   elog "${MY_LANGS}"
+   elog "${MY_LANGS//[@_]/-}"
elog
fi
 
@@ -67,9 +65,9 @@ src_unpack() {
 
 src_prepare() {
local LNG DIR LDIR SDIR
-   # add all linguas to cmake
+   # add all l10n to cmake
if [[ -n ${A} ]]; then
-   for LNG in ${LINGUAS}; do
+   for LNG in ${MY_LANGS} ; do
DIR="${KMNAME}-${LNG}-${PV}"
LDIR="${KMNAME}-${LNG}-${LV}"
SDIR="${S}/${DIR}/4/${LNG}"
@@ -97,7 +95,7 @@ src_prepare() {
einfo "   messages..."
for path in $(grep -v "^#" 
"${REMOVE_MSGS}") ; do
rm -f "${SDIR}"/messages/${path}
-   # Quirk for LINGUAS=sr variants
+   # Quirk for L10N=sr variants
if [[ ${LNG} = "sr" ]] ; then
rm -f 
"${SDIR}"/${LNG}\@*/messages/${path} || die
fi

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.04.2.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-16.04.2.ebuild
index 959c6a2..b4a2e81 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-16.04.2.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-16.04.2.ebuild
@@ -34,18 +34,18 @@ MY_LANGS="ar ast bg bs ca ca@valencia cs da de el en_GB eo 
es et eu fa fi fr ga
 gl he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro
 ru sk sl sr sv tr ug uk wa zh_CN zh_TW"
 
-IUSE="+minimal test $(printf 'linguas_%s ' ${MY_LANGS})"
+IUSE="+minimal test $(printf 'l10n_%s ' ${MY_LANGS//[@_]/-})"
 
 URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
 LURI_BASE="mirror://kde/stable/${LV}/src/${KMNAME}"
 SRC_URI=""
 
 for MY_LANG in ${LEGACY_LANGS} ; do
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
+   SRC_URI="${SRC_URI} l10n_${MY_LANG/[@_]/-}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
 done
 
 for MY_LANG in ${MY_LANGS} ; do
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
+   SRC_URI="${SRC_URI} l10n_${MY_LANG/[@_]/-}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
 done
 
 S="${WORKDIR}"
@@ -53,12 +53,10 @@ S="${WORKDIR}"
 pkg_setup() {
if [[ -z ${A} ]]; then
elog
-   elog "You either have the LINGUAS variable unset, or it only"
-   elog "contains languages not supported by ${P}."
-   elog "You won't have any additional language support."
+   elog "None of the requested L10N are supported by ${P}."
elog
elog "${P} supports these language codes:"
-   elog "${MY_LANGS}"
+   elog "${MY_LANGS//[@_]/-}"
elog
fi
  

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2016-07-02 Thread Michael Palimaka
commit: d98e06a015ae4e52299e2eba253cd381fa290c7b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Jul  2 08:11:24 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jul  2 16:45:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98e06a0

kde-apps/kde4-l10n: Drop old, conflicting versions

15.12.3-r1 is stable while current stable kdepim-l10n ebuilds have
!http://l10n.kde.org";
-
-DEPEND="
-   sys-devel/gettext
-"
-RDEPEND=""
-
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="minimal"
-
-# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 
's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
-MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu fa fi fr ga gl he
-hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
-sl sr sv tr ug uk wa zh_CN zh_TW"
-
-URI_BASE="${SRC_URI/kde4/kde}"
-URI_BASE="${URI_BASE/-${PV}.tar.xz/}"
-SRC_URI=""
-
-for MY_LANG in ${MY_LANGS} ; do
-   IUSE="${IUSE} linguas_${MY_LANG}"
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/kde-l10n-${MY_LANG}-${PV}.tar.xz )"
-done
-
-S="${WORKDIR}"
-
-src_unpack() {
-   if [[ -z ${A} ]]; then
-   elog
-   elog "You either have the LINGUAS variable unset, or it only"
-   elog "contains languages not supported by ${P}."
-   elog "You won't have any additional language support."
-   elog
-   elog "${P} supports these language codes:"
-   elog "${MY_LANGS}"
-   elog
-   fi
-
-   [[ -n ${A} ]] && unpack ${A}
-}
-
-src_prepare() {
-   local LNG DIR
-   # add all linguas to cmake
-   if [[ -n ${A} ]]; then
-   for LNG in ${LINGUAS}; do
-   DIR="kde-l10n-${LNG}-${PV}"
-   if [[ -d "${DIR}" ]] ; then
-   echo "add_subdirectory( ${DIR} )" >> 
"${S}"/CMakeLists.txt
-   fi
-   done
-   fi
-   find "${S}" -name CMakeLists.txt -type f \
-   -exec sed -i -e 's:^ *add_subdirectory( *kdepim-runtime *):# no 
kdepim-runtime:g' {} +
-   find "${S}" -name CMakeLists.txt -type f \
-   -exec sed -i -e 's:^ *add_subdirectory( *kdepim *):# no 
kdepim:g' {} +
-   find "${S}" -name CMakeLists.txt -type f \
-   -exec sed -i -e 's:^ *add_subdirectory( *kdepimlibs *):# no 
kdepimlibs:g' {} +
-
-   # Drop translations that get installed with plasma 5 and kde apps 5 
packages
-   if use minimal; then
-
-   # KDE Workspace 4
-   rm -f "${S}"/*/messages/kde-workspace/{freespacenotifier,\
-joystick,kaccess,kcmaccess,kcm_autostart,kcmbell,kcmcolors,kcm_desktoppaths,\
-kcm_desktopthemedetails,kcmdevinfo,kcmfonts,kcm_infobase,kcminfo,\
-kcm_infosummary,kcminit,kcminput,kcmkclock,kcmkeyboard,kcmkeys,\
-kcmkwincompositing,kcmkwindecoration,kcm_kwindesktop,kcmkwinrules,\
-kcmkwinscreenedges,kcm-kwin-scripts,kcm_kwintabbox,kcmkwm,kcmlaunch,kcm_memory,\
-kcmnic,kcmopengl,kcm_pci,kcmsamba,kcmsmserver,kcm_solid_actions,\
-kcm_standard_actions,kcmstyle,kcmusb,kcmview1394,kcmworkspaceoptions,kfontinst,\
-khotkeys,kinfocenter,klipper,kmenuedit,krdb,krunner,kscreenlocker_greet,\
-kscreenlocker,ksgrd,ksmserver,ksplashthemes,ksysguardlsofwidgets,ksysguard,\
-ktouchpadenabler,kwin_clients,kwin_effects,kwin,kwin_scripting,libkdecorations,\
-libkworkspace,liboxygenstyleconfig,libpowerdevilcommonconfig,libtaskmanager,\
-plasma_applet_quicklaunch,plasma_applet_system-monitor,\
-plasma_applet_webbrowser,plasma_containmentactions_contextmenu,\
-plasma_containmentactions_switchwindow,plasma_engine_keystate,\
-plasma_engine_mpris2,plasma_engine_network,plasma_engine_notifications,\
-plasma_engine_rss,plasma_engine_share,plasma_engine_soliddevice,\
-plasma_engine_weather,plasma_runner_activities,plasma_runner_bookmarksrunner,\
-plasma_runner_calculatorrunner,plasma_runner_kill,plasma_runner_locations,\
-plasma_runner_placesrunner,plasma_runner_plasma-desktop,\
-plasma_runner_powerdevil,plasma_runner_recentdocuments,plasma_runner_services,\
-plasma_runner_sessions,plasma_runner_shell,plasma_runner_solid,\
-plasma_runner_webshortcuts,plasma_runner_windowedwidgets,plasma_runner_windows,\
-powerdevilactivitiesconfig,powerdevilglobalconfig,powerdevil,\
-powerdevilprofilesconfig,processcore,processui,systemsettings}.po
-
-   # KDE Runtime 4
-   rm -f "${S}"/*/messages/kde-runtime/{attica_kde,drkonqi,\
-filetypes,htmlsearch,kcmcomponentchooser,kcm_emoticons,kcmhtmlsearch,\
-kcmicons,kcmkded,kcmnotify,kcm_phonon,kcmshell,kdesu,kglobalaccel,\
-khelpcenter,kio_applications,kio_archive,kio_bookmarks,kioclient,\
-kio_fish,kio_info,kio_man,kio_nfs,kio_recentdocuments,kio_remote,\
-kio_sftp,kio_smb,kio_thumbnail,kmimetypefinder,knetattach,kstart,\
-ktraderclient,phonon_kde,soliduiserver}.po
-
-   # KDE Plasma Addon

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2016-06-30 Thread Johannes Huber
commit: 3d8cc6f8f9743abd9debcbaa84cc46858b7c6ff0
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Jun 30 21:18:47 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Jun 30 21:19:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d8cc6f8

kde-apps/kde4-l10n: Remove unused files

Package-Manager: portage-2.3.0

 .../kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs |  49 -
 .../files/kde4-l10n-15.08.3-r1-remove-messages | 213 -
 2 files changed, 262 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
deleted file mode 100644
index 005cab1..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
+++ /dev/null
@@ -1,49 +0,0 @@
-# Disable any subdirectories listed here. Comments are ignored
-# First argument: parent directory
-# Second argument: which subdirectory to disable in CMakeLists.txt
-# kde-l10n 5
-data/kdeedu khangman
-docs/applications kate
-docs/applications konsole
-docs/applications kwrite
-docs/kdeedu kig
-docs/kdeedu pairseditor
-docs/kdeedu parley
-docs/kdeedu step
-docs/kdegames bomber
-docs/kdegraphics gwenview
-docs/kdegraphics kruler
-docs/kdesdk kapptemplate
-docs/kdesdk okteta
-docs/kdeutils kwalletmanager
-# Plasma 5.3
-docs/kde-runtime fundamentals
-docs/kde-runtime kdesu
-docs/kde-runtime khelpcenter
-docs/kde-runtime knetattach
-docs/kde-runtime onlinehelp
-docs/kde-runtime/kcontrol bookmarks
-docs/kde-runtime/kcontrol cookies
-docs/kde-runtime/kcontrol ebrowsing
-docs/kde-runtime/kcontrol emoticons
-docs/kde-runtime/kcontrol icons
-docs/kde-runtime/kcontrol kcmcgi
-docs/kde-runtime/kcontrol khtml
-docs/kde-runtime/kcontrol smb
-docs/kde-runtime/kcontrol trash
-docs/kde-runtime/kcontrol useragent
-docs/kde-workspace kfontview
-docs/kde-workspace kinfocenter
-docs/kde-workspace klipper
-docs/kde-workspace kmenuedit
-docs/kde-workspace ksysguard
-docs/kde-workspace plasma-desktop
-docs/kde-workspace systemsettings
-docs/kde-workspace/kcontrol clock
-docs/kde-workspace/kcontrol colors
-docs/kde-workspace/kcontrol desktopthemedetails
-docs/kde-workspace/kcontrol joystick
-docs/kde-workspace/kcontrol kcmaccess
-docs/kde-workspace/kcontrol kcmstyle
-docs/kde-workspace/kcontrol solid-actions
-docs/kde-workspace/kcontrol splashscreen

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages
deleted file mode 100644
index 7a4d671..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages
+++ /dev/null
@@ -1,213 +0,0 @@
-# Remove any path listed here. Comments are ignored
-# KDE Workspace 4
-kde-workspace/freespacenotifier.po
-kde-workspace/joystick.po
-kde-workspace/kaccess.po
-kde-workspace/kcmaccess.po
-kde-workspace/kcm_autostart.po
-kde-workspace/kcmbell.po
-kde-workspace/kcmcolors.po
-kde-workspace/kcm_desktoppaths.po
-kde-workspace/kcm_desktopthemedetails.po
-kde-workspace/kcmdevinfo.po
-kde-workspace/kcmfonts.po
-kde-workspace/kcm_infobase.po
-kde-workspace/kcminfo.po
-kde-workspace/kcm_infosummary.po
-kde-workspace/kcminit.po
-kde-workspace/kcminput.po
-kde-workspace/kcmkclock.po
-kde-workspace/kcmkeyboard.po
-kde-workspace/kcmkeys.po
-kde-workspace/kcmkwincompositing.po
-kde-workspace/kcmkwindecoration.po
-kde-workspace/kcm_kwindesktop.po
-kde-workspace/kcmkwinrules.po
-kde-workspace/kcmkwinscreenedges.po
-kde-workspace/kcm-kwin-scripts.po
-kde-workspace/kcm_kwintabbox.po
-kde-workspace/kcmkwm.po
-kde-workspace/kcmlaunch.po
-kde-workspace/kcm_memory.po
-kde-workspace/kcmnic.po
-kde-workspace/kcmopengl.po
-kde-workspace/kcm_pci.po
-kde-workspace/kcmsamba.po
-kde-workspace/kcmsmserver.po
-kde-workspace/kcm_solid_actions.po
-kde-workspace/kcm_standard_actions.po
-kde-workspace/kcmstyle.po
-kde-workspace/kcmusb.po
-kde-workspace/kcmview1394.po
-kde-workspace/kcmworkspaceoptions.po
-kde-workspace/kfontinst.po
-kde-workspace/khotkeys.po
-kde-workspace/kinfocenter.po
-kde-workspace/klipper.po
-kde-workspace/kmenuedit.po
-kde-workspace/krdb.po
-kde-workspace/krunner.po
-kde-workspace/kscreenlocker_greet.po
-kde-workspace/kscreenlocker.po
-kde-workspace/ksgrd.po
-kde-workspace/ksmserver.po
-kde-workspace/ksplashthemes.po
-kde-workspace/ksysguardlsofwidgets.po
-kde-workspace/ksysguard.po
-kde-workspace/ktouchpadenabler.po
-kde-workspace/kwin_clients.po
-kde-workspace/kwin_effects.po
-kde-workspace/kwin.po
-kde-workspace/kwin_scripting.po
-kde-workspace/libkdecorations.po
-kde-workspace/libkworkspace.po
-kde-workspace/liboxygenstyleconfig.po
-kde-workspace/libpowerdevilcommonconfig.po
-kde-workspace/libtaskmanager.po
-kde-workspace/plasma_applet_quicklaunch.po
-kde-workspace/plasma_applet_system-monitor.po
-kde-workspace/plasma_applet_webbrowser.po
-kde-workspace/plasma_containmentactions_contextmenu.po
-kde-workspace/plasma_containmentactions_switchwindow.po
-kde-workspace/plasma_engine_keystate.po
-kde-workspac

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2016-06-29 Thread Johannes Huber
commit: 5cf237287737036cbef2c3f6859d20abd4074b40
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 29 18:49:03 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 29 18:50:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf23728

kde-apps/kde4-l10n: Restore needed file

Gentoo-bug: 587532

Package-Manager: portage-2.3.0

 .../kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs  | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
new file mode 100644
index 000..9563950
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
@@ -0,0 +1,43 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+data/kdeedu khangman
+docs/applications kate
+docs/applications konsole
+docs/applications kwrite
+docs/kde-runtime glossary
+docs/kde-runtime khelpcenter
+docs/kdeedu kig
+docs/kdeedu parley
+docs/kdeedu step
+docs/kdegames bomber
+docs/kdegraphics gwenview
+docs/kdegraphics kruler
+docs/kdesdk kapptemplate
+docs/kdesdk okteta
+docs/kdesdk umbrello
+docs/kdeutils kwalletmanager
+scripts kdeedu
+# Plasma 5
+docs kde-workspace
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime/kcontrol bookmarks
+docs/kde-runtime/kcontrol cookies
+docs/kde-runtime/kcontrol ebrowsing
+docs/kde-runtime/kcontrol emoticons
+docs/kde-runtime/kcontrol icons
+docs/kde-runtime/kcontrol kcmcgi
+docs/kde-runtime/kcontrol nepomuk
+docs/kde-runtime/kcontrol smb
+docs/kde-runtime/kcontrol trash
+docs/kde-runtime/kcontrol useragent
+messages kde-workspace
+messages kdeplasma-addons
+# kdepim-l10n 5
+docs kdepim
+docs kdepimlibs



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/, kde-apps/kde4-l10n/files/

2016-06-01 Thread Michael Palimaka
commit: 95570c77ce6b073a3849c87a6b7cf2d98d3dab77
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Jun  1 20:14:57 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun  1 21:45:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95570c77

kde-apps/kde4-l10n: Fix LINGUAS=nn,sr

Package-Manager: portage-2.2.28

 .../kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs  |  43 +
 kde-apps/kde4-l10n/kde4-l10n-16.04.1-r1.ebuild | 206 +
 2 files changed, 249 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
new file mode 100644
index 000..9563950
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-16.04.1-remove-dirs
@@ -0,0 +1,43 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+data/kdeedu khangman
+docs/applications kate
+docs/applications konsole
+docs/applications kwrite
+docs/kde-runtime glossary
+docs/kde-runtime khelpcenter
+docs/kdeedu kig
+docs/kdeedu parley
+docs/kdeedu step
+docs/kdegames bomber
+docs/kdegraphics gwenview
+docs/kdegraphics kruler
+docs/kdesdk kapptemplate
+docs/kdesdk okteta
+docs/kdesdk umbrello
+docs/kdeutils kwalletmanager
+scripts kdeedu
+# Plasma 5
+docs kde-workspace
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime/kcontrol bookmarks
+docs/kde-runtime/kcontrol cookies
+docs/kde-runtime/kcontrol ebrowsing
+docs/kde-runtime/kcontrol emoticons
+docs/kde-runtime/kcontrol icons
+docs/kde-runtime/kcontrol kcmcgi
+docs/kde-runtime/kcontrol nepomuk
+docs/kde-runtime/kcontrol smb
+docs/kde-runtime/kcontrol trash
+docs/kde-runtime/kcontrol useragent
+messages kde-workspace
+messages kdeplasma-addons
+# kdepim-l10n 5
+docs kdepim
+docs kdepimlibs

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.04.1-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-16.04.1-r1.ebuild
new file mode 100644
index 000..d126b30
--- /dev/null
+++ b/kde-apps/kde4-l10n/kde4-l10n-16.04.1-r1.ebuild
@@ -0,0 +1,206 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+KMNAME="kde-l10n"
+inherit kde4-base
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org";
+
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   sys-devel/gettext
+"
+RDEPEND="
+   !minimal? ( !kde-apps/kde-l10n )
+   minimal? ( >=kde-apps/kde-l10n-${PV} )
+"
+
+REMOVE_DIRS="${FILESDIR}/${PN}-16.04.1-remove-dirs"
+REMOVE_MSGS="${FILESDIR}/${PN}-16.03.91-remove-messages"
+
+LV="4.14.3"
+LEGACY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu fa fi fr ga gl
+he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru
+sk sl sr sv tr ug uk wa zh_CN zh_TW"
+
+# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 
's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
+MY_LANGS="ar ast bg bs ca ca@valencia cs da de el en_GB eo es et eu fa fi fr ga
+gl he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro
+ru sk sl sr sv tr ug uk wa zh_CN zh_TW"
+
+IUSE="+minimal test $(printf 'linguas_%s ' ${MY_LANGS})"
+
+URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+LURI_BASE="mirror://kde/stable/${LV}/src/${KMNAME}"
+SRC_URI=""
+
+for MY_LANG in ${LEGACY_LANGS} ; do
+   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
+done
+
+for MY_LANG in ${MY_LANGS} ; do
+   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
+done
+
+S="${WORKDIR}"
+
+pkg_setup() {
+   if [[ -z ${A} ]]; then
+   elog
+   elog "You either have the LINGUAS variable unset, or it only"
+   elog "contains languages not supported by ${P}."
+   elog "You won't have any additional language support."
+   elog
+   elog "${P} supports these language codes:"
+   elog "${MY_LANGS}"
+   elog
+   fi
+   [[ -n ${A} ]] && kde4-base_pkg_setup
+}
+
+src_unpack() {
+   for my_tar in ${A}; do
+   [[ ${my_tar} = *${PV}* ]] && local subdir="/4"
+   use minimal && [[ ${my_tar} = *${LV}* ]] && continue
+   tar -xpf "${DISTDIR}/${my_tar}" --xz \
+   "${my_tar/.tar.xz/}/CMakeLists.txt" 
"${my_tar/.tar.xz/}${subdir}" 2> /dev/null ||
+   elog "${my_tar}: tar extract command failed at least 
partially - continuing"
+   done
+}
+
+src_prepare() {
+   default
+   [[ -n ${A} ]] || return
+
+   # LINGUAS=sr variants are subdirs within sr/ ...
+   if use minimal && [[ -d "${KMNAME}-sr-${PV}" ]] ; then
+   for variant in "${KMNAME}"-sr-${PV}

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/, kde-apps/kde4-l10n/

2016-06-01 Thread Michael Palimaka
commit: 1b3249a30d1652b025be7168c1f9868a3e116716
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Jun  1 21:41:28 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun  1 21:45:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b3249a3

kde-apps/kde4-l10n: Drop old

Package-Manager: portage-2.2.28

 .../kde4-l10n/files/kde4-l10n-16.03.91-remove-dirs |  41 -
 kde-apps/kde4-l10n/kde4-l10n-16.04.1.ebuild| 186 -
 2 files changed, 227 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-16.03.91-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-16.03.91-remove-dirs
deleted file mode 100644
index 5bfd288..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-16.03.91-remove-dirs
+++ /dev/null
@@ -1,41 +0,0 @@
-# Disable any subdirectories listed here. Comments are ignored
-# First argument: parent directory
-# Second argument: which subdirectory to disable in CMakeLists.txt
-# kde-l10n 5
-data/kdeedu khangman
-docs/applications kate
-docs/applications konsole
-docs/applications kwrite
-docs/kde-runtime glossary
-docs/kde-runtime khelpcenter
-docs/kdeedu kig
-docs/kdeedu parley
-docs/kdeedu step
-docs/kdegames bomber
-docs/kdegraphics gwenview
-docs/kdegraphics kruler
-docs/kdesdk kapptemplate
-docs/kdesdk okteta
-docs/kdesdk umbrello
-docs/kdeutils kwalletmanager
-# Plasma 5
-docs kde-workspace
-docs/kde-runtime fundamentals
-docs/kde-runtime kdesu
-docs/kde-runtime khelpcenter
-docs/kde-runtime knetattach
-docs/kde-runtime onlinehelp
-docs/kde-runtime/kcontrol bookmarks
-docs/kde-runtime/kcontrol cookies
-docs/kde-runtime/kcontrol ebrowsing
-docs/kde-runtime/kcontrol emoticons
-docs/kde-runtime/kcontrol icons
-docs/kde-runtime/kcontrol kcmcgi
-docs/kde-runtime/kcontrol smb
-docs/kde-runtime/kcontrol trash
-docs/kde-runtime/kcontrol useragent
-messages kde-workspace
-messages kdeplasma-addons
-# kdepim-l10n 5
-docs kdepim
-docs kdepimlibs

diff --git a/kde-apps/kde4-l10n/kde4-l10n-16.04.1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-16.04.1.ebuild
deleted file mode 100644
index 71998b3..000
--- a/kde-apps/kde4-l10n/kde4-l10n-16.04.1.ebuild
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_HANDBOOK="optional"
-KMNAME="kde-l10n"
-inherit kde4-base
-
-DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org";
-
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-   sys-devel/gettext
-"
-RDEPEND="
-   !minimal? ( !kde-apps/kde-l10n )
-   minimal? ( >=kde-apps/kde-l10n-${PV} )
-"
-
-REMOVE_DIRS="${FILESDIR}/${PN}-16.03.91-remove-dirs"
-REMOVE_MSGS="${FILESDIR}/${PN}-16.03.91-remove-messages"
-
-LV="4.14.3"
-LEGACY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu fa fi fr ga gl
-he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru
-sk sl sr sv tr ug uk wa zh_CN zh_TW"
-
-# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 
's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
-MY_LANGS="ar ast bg bs ca ca@valencia cs da de el en_GB eo es et eu fa fi fr ga
-gl he hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro
-ru sk sl sr sv tr ug uk wa zh_CN zh_TW"
-
-IUSE="+minimal test $(printf 'linguas_%s ' ${MY_LANGS})"
-
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
-LURI_BASE="mirror://kde/stable/${LV}/src/${KMNAME}"
-SRC_URI=""
-
-for MY_LANG in ${LEGACY_LANGS} ; do
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${LURI_BASE}/${KMNAME}-${MY_LANG}-${LV}.tar.xz )"
-done
-
-for MY_LANG in ${MY_LANGS} ; do
-   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/${KMNAME}-${MY_LANG}-${PV}.tar.xz )"
-done
-
-S="${WORKDIR}"
-
-pkg_setup() {
-   if [[ -z ${A} ]]; then
-   elog
-   elog "You either have the LINGUAS variable unset, or it only"
-   elog "contains languages not supported by ${P}."
-   elog "You won't have any additional language support."
-   elog
-   elog "${P} supports these language codes:"
-   elog "${MY_LANGS}"
-   elog
-   fi
-   [[ -n ${A} ]] && kde4-base_pkg_setup
-}
-
-src_unpack() {
-   for my_tar in ${A}; do
-   [[ ${my_tar} = *${PV}* ]] && local subdir="/4"
-   use minimal && [[ ${my_tar} = *${LV}* ]] && continue
-   tar -xpf "${DISTDIR}/${my_tar}" --xz \
-   "${my_tar/.tar.xz/}/CMakeLists.txt" 
"${my_tar/.tar.xz/}${subdir}" 2> /dev/null ||
-   elog "${my_tar}: tar extract command failed at least 
partially - continuing"
-   done
-}
-
-src_prepare() {
-   default
-   [[ -n ${A} ]] || return
-
-   # add all linguas to cmake
-   cat <<-EOF > CMakeLists.txt || die
-project(kde4-l10n)
-cmake_minimum_required(VERSION 2.8.12)
-$(printf "add_subdirectory( %s )\n" `find . -mindepth 1 -maxdepth 1 -type d 
-name "*${PV}

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2016-03-30 Thread Michael Palimaka
commit: f41d09b73ff700d30152820ee01d43c5cf988799
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Mar 30 08:33:58 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Mar 30 12:40:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f41d09b7

kde-apps/kde4-l10n: Drop old

Package-Manager: portage-2.2.27

 kde-apps/kde4-l10n/kde4-l10n-15.12.3.ebuild | 157 
 1 file changed, 157 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-15.12.3.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-15.12.3.ebuild
deleted file mode 100644
index 18a56dc..000
--- a/kde-apps/kde4-l10n/kde4-l10n-15.12.3.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_HANDBOOK="optional"
-KMNAME="kde-l10n"
-inherit kde4-base
-
-DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org";
-
-DEPEND="
-   sys-devel/gettext
-"
-RDEPEND="
-   !> 
"${S}"/CMakeLists.txt
-
-   # Drop KF5-based part
-   sed -e '/add_subdirectory(5)/ s/^/#/' -i 
"${S}"/${DIR}/CMakeLists.txt
-
-   # Drop translations installed with plasma 5 and 
kde-apps 5 packages
-   if use minimal; then
-   einfo "${LNG}: Removing file conflicts"
-   if [[ -d "${LDIR}" ]] ; then
-   rm -rf "${LDIR}"
-   fi
-
-   einfo "   directories..."
-   while read path; do
-   if [[ -n ${path} && -e 
"${SDIR}"/${path%\ *}/CMakeLists.txt ]] ; then
-   sed -e ":${path#*\ }: 
s:^:#:"\
-   -i 
"${SDIR}"/${path%\ *}/CMakeLists.txt
-   fi
-   done < <(grep -v "^#" "${REMOVE_DIRS}")
-
-   einfo "   messages..."
-   for path in $(grep -v "^#" 
"${REMOVE_MSGS}") ; do
-   rm -f "${SDIR}"/messages/${path}
-   # Quirk for LINGUAS=sr variants
-   if [[ ${LNG} = "sr" ]] ; then
-   rm -f 
"${SDIR}"/${LNG}\@*/messages/${path} || die
-   fi
-   done
-   else
-   if [[ -d "${LDIR}" ]] ; then
-   einfo "${LNG}: Adding legacy 
localisation"
-   local dest_path
-   # Step through directories 
alphabetically first
-   for path in $(ls -R "${LDIR}" | 
grep ":$" | sed -e 's/:$//') ; do
-   
dest_path="${path/${LV}/${PV}/4/${LNG}}"
-   if [[ ! -d 
"${dest_path}" ]] ; then
-   einfo "   
$(basename ${dest_path}) subdirectory"\
-   "added 
to $(basename $(dirname ${dest_path}))"
-   mkdir 
"${dest_path}" || die "Failed creating ${dest_path}"
-   echo 
"add_subdirectory($(basename ${dest_path}))" >> \
-   
$(dirname "${dest_path}")/CMakeLists.txt
-   fi
-   done
-   einfo "   merging legacy 
localisation..."
-   for path in $(find "${LDIR}" 
-type f) ; do
-   
dest_path="${path/${LV}/${PV}/4/${LNG}}"
-   cp -rn "${path}" 
"${dest_path}" || die "Failed copying ${path}"
-   done
-   # Disable kdepim
-   for path in kdepim kdepimlibs 
kdepim-runtime ; do
-   find "${SDIR}" -name 
CMakeLists.txt -type f -exec \
-   sed -i -e "s:^ 
*add

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/, kde-apps/kde4-l10n/files/

2016-03-30 Thread Michael Palimaka
commit: d3d71ca882d8b93d9cfb3e0c0731c889b60d3167
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Wed Mar 30 08:33:06 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Mar 30 12:40:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3d71ca8

kde-apps/kde4-l10n: Fix file collision with plasma-desktop-5.6.1

Gentoo-bug: 578568

Package-Manager: portage-2.2.27

 .../files/kde4-l10n-15.12.3-remove-messages| 214 +
 kde-apps/kde4-l10n/kde4-l10n-15.12.3-r1.ebuild | 157 +++
 2 files changed, 371 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages
new file mode 100644
index 000..a7901c6
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-15.12.3-remove-messages
@@ -0,0 +1,214 @@
+# Remove any path listed here. Comments are ignored
+# KDE Workspace 4
+kde-workspace/freespacenotifier.po
+kde-workspace/joystick.po
+kde-workspace/kaccess.po
+kde-workspace/kcmaccess.po
+kde-workspace/kcm_autostart.po
+kde-workspace/kcmbell.po
+kde-workspace/kcmcolors.po
+kde-workspace/kcm_desktoppaths.po
+kde-workspace/kcm_desktopthemedetails.po
+kde-workspace/kcmdevinfo.po
+kde-workspace/kcmfonts.po
+kde-workspace/kcm_infobase.po
+kde-workspace/kcminfo.po
+kde-workspace/kcm_infosummary.po
+kde-workspace/kcminit.po
+kde-workspace/kcminput.po
+kde-workspace/kcmkclock.po
+kde-workspace/kcmkeyboard.po
+kde-workspace/kcmkeys.po
+kde-workspace/kcmkwincompositing.po
+kde-workspace/kcmkwindecoration.po
+kde-workspace/kcm_kwindesktop.po
+kde-workspace/kcmkwinrules.po
+kde-workspace/kcmkwinscreenedges.po
+kde-workspace/kcm-kwin-scripts.po
+kde-workspace/kcm_kwintabbox.po
+kde-workspace/kcmkwm.po
+kde-workspace/kcmlaunch.po
+kde-workspace/kcm_memory.po
+kde-workspace/kcmnic.po
+kde-workspace/kcmopengl.po
+kde-workspace/kcm_pci.po
+kde-workspace/kcmsamba.po
+kde-workspace/kcmsmserver.po
+kde-workspace/kcm_solid_actions.po
+kde-workspace/kcm_standard_actions.po
+kde-workspace/kcmstyle.po
+kde-workspace/kcmusb.po
+kde-workspace/kcmview1394.po
+kde-workspace/kcmworkspaceoptions.po
+kde-workspace/kfontinst.po
+kde-workspace/khotkeys.po
+kde-workspace/kinfocenter.po
+kde-workspace/klipper.po
+kde-workspace/kmenuedit.po
+kde-workspace/krdb.po
+kde-workspace/krunner.po
+kde-workspace/kscreenlocker_greet.po
+kde-workspace/kscreenlocker.po
+kde-workspace/ksgrd.po
+kde-workspace/ksmserver.po
+kde-workspace/ksplashthemes.po
+kde-workspace/ksysguardlsofwidgets.po
+kde-workspace/ksysguard.po
+kde-workspace/ktouchpadenabler.po
+kde-workspace/kwin_clients.po
+kde-workspace/kwin_effects.po
+kde-workspace/kwin.po
+kde-workspace/kwin_scripting.po
+kde-workspace/libkdecorations.po
+kde-workspace/libkworkspace.po
+kde-workspace/liboxygenstyleconfig.po
+kde-workspace/libpowerdevilcommonconfig.po
+kde-workspace/libtaskmanager.po
+kde-workspace/plasma_applet_quicklaunch.po
+kde-workspace/plasma_applet_system-monitor.po
+kde-workspace/plasma_applet_webbrowser.po
+kde-workspace/plasma_containmentactions_contextmenu.po
+kde-workspace/plasma_containmentactions_switchwindow.po
+kde-workspace/plasma_engine_keystate.po
+kde-workspace/plasma_engine_mpris2.po
+kde-workspace/plasma_engine_network.po
+kde-workspace/plasma_engine_notifications.po
+kde-workspace/plasma_engine_rss.po
+kde-workspace/plasma_engine_share.po
+kde-workspace/plasma_engine_soliddevice.po
+kde-workspace/plasma_engine_weather.po
+kde-workspace/plasma_runner_activities.po
+kde-workspace/plasma_runner_bookmarksrunner.po
+kde-workspace/plasma_runner_calculatorrunner.po
+kde-workspace/plasma_runner_kill.po
+kde-workspace/plasma_runner_locations.po
+kde-workspace/plasma_runner_placesrunner.po
+kde-workspace/plasma_runner_plasma-desktop.po
+kde-workspace/plasma_runner_powerdevil.po
+kde-workspace/plasma_runner_recentdocuments.po
+kde-workspace/plasma_runner_services.po
+kde-workspace/plasma_runner_sessions.po
+kde-workspace/plasma_runner_shell.po
+kde-workspace/plasma_runner_solid.po
+kde-workspace/plasma_runner_webshortcuts.po
+kde-workspace/plasma_runner_windowedwidgets.po
+kde-workspace/plasma_runner_windows.po
+kde-workspace/powerdevilactivitiesconfig.po
+kde-workspace/powerdevilglobalconfig.po
+kde-workspace/powerdevil.po
+kde-workspace/powerdevilprofilesconfig.po
+kde-workspace/processcore.po
+kde-workspace/processui.po
+kde-workspace/systemsettings.po
+# KDE Runtime 4
+kde-runtime/attica_kde.po
+kde-runtime/drkonqi.po
+kde-runtime/filetypes.po
+kde-runtime/htmlsearch.po
+kde-runtime/kcmcomponentchooser.po
+kde-runtime/kcm_device_automounter.po
+kde-runtime/kcm_emoticons.po
+kde-runtime/kcmhtmlsearch.po
+kde-runtime/kcmicons.po
+kde-runtime/kcmkded.po
+kde-runtime/kcmnotify.po
+kde-runtime/kcm_phonon.po
+kde-runtime/kcmshell.po
+kde-runtime/kdesu.po
+kde-runtime/kglobalaccel.po
+kde-runtime/khelpcenter.po
+kde-runtime/kio_applications.po
+kde-runtime/kio_archive.po
+kde-runtime/kio_bookmarks.po
+kde-runt

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2016-03-06 Thread Mikle Kolyada
commit: bce08bff1db43189271b282f52286c437b90650b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  5 10:04:22 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  5 10:04:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce08bff

kde-apps/kde4-l10n: amd64 stable wrt bug #569742

Package-Manager: portage-2.2.26

 kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild
index d456898..ae63a79 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild
@@ -18,7 +18,7 @@ RDEPEND="
!

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/, kde-apps/kde4-l10n/

2016-01-31 Thread Michael Palimaka
commit: e52276ac36e9f17e3e44585dff0d1d8534324776
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Jan 26 23:29:47 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jan 31 16:52:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52276ac

kde-apps/kde4-l10n: Fix kde-l10n file collision, bug 572850

 .../files/kde4-l10n-15.08.3-r1-remove-messages | 213 +
 kde-apps/kde4-l10n/kde4-l10n-15.08.3-r2.ebuild | 157 +++
 2 files changed, 370 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages
new file mode 100644
index 000..7a4d671
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-r1-remove-messages
@@ -0,0 +1,213 @@
+# Remove any path listed here. Comments are ignored
+# KDE Workspace 4
+kde-workspace/freespacenotifier.po
+kde-workspace/joystick.po
+kde-workspace/kaccess.po
+kde-workspace/kcmaccess.po
+kde-workspace/kcm_autostart.po
+kde-workspace/kcmbell.po
+kde-workspace/kcmcolors.po
+kde-workspace/kcm_desktoppaths.po
+kde-workspace/kcm_desktopthemedetails.po
+kde-workspace/kcmdevinfo.po
+kde-workspace/kcmfonts.po
+kde-workspace/kcm_infobase.po
+kde-workspace/kcminfo.po
+kde-workspace/kcm_infosummary.po
+kde-workspace/kcminit.po
+kde-workspace/kcminput.po
+kde-workspace/kcmkclock.po
+kde-workspace/kcmkeyboard.po
+kde-workspace/kcmkeys.po
+kde-workspace/kcmkwincompositing.po
+kde-workspace/kcmkwindecoration.po
+kde-workspace/kcm_kwindesktop.po
+kde-workspace/kcmkwinrules.po
+kde-workspace/kcmkwinscreenedges.po
+kde-workspace/kcm-kwin-scripts.po
+kde-workspace/kcm_kwintabbox.po
+kde-workspace/kcmkwm.po
+kde-workspace/kcmlaunch.po
+kde-workspace/kcm_memory.po
+kde-workspace/kcmnic.po
+kde-workspace/kcmopengl.po
+kde-workspace/kcm_pci.po
+kde-workspace/kcmsamba.po
+kde-workspace/kcmsmserver.po
+kde-workspace/kcm_solid_actions.po
+kde-workspace/kcm_standard_actions.po
+kde-workspace/kcmstyle.po
+kde-workspace/kcmusb.po
+kde-workspace/kcmview1394.po
+kde-workspace/kcmworkspaceoptions.po
+kde-workspace/kfontinst.po
+kde-workspace/khotkeys.po
+kde-workspace/kinfocenter.po
+kde-workspace/klipper.po
+kde-workspace/kmenuedit.po
+kde-workspace/krdb.po
+kde-workspace/krunner.po
+kde-workspace/kscreenlocker_greet.po
+kde-workspace/kscreenlocker.po
+kde-workspace/ksgrd.po
+kde-workspace/ksmserver.po
+kde-workspace/ksplashthemes.po
+kde-workspace/ksysguardlsofwidgets.po
+kde-workspace/ksysguard.po
+kde-workspace/ktouchpadenabler.po
+kde-workspace/kwin_clients.po
+kde-workspace/kwin_effects.po
+kde-workspace/kwin.po
+kde-workspace/kwin_scripting.po
+kde-workspace/libkdecorations.po
+kde-workspace/libkworkspace.po
+kde-workspace/liboxygenstyleconfig.po
+kde-workspace/libpowerdevilcommonconfig.po
+kde-workspace/libtaskmanager.po
+kde-workspace/plasma_applet_quicklaunch.po
+kde-workspace/plasma_applet_system-monitor.po
+kde-workspace/plasma_applet_webbrowser.po
+kde-workspace/plasma_containmentactions_contextmenu.po
+kde-workspace/plasma_containmentactions_switchwindow.po
+kde-workspace/plasma_engine_keystate.po
+kde-workspace/plasma_engine_mpris2.po
+kde-workspace/plasma_engine_network.po
+kde-workspace/plasma_engine_notifications.po
+kde-workspace/plasma_engine_rss.po
+kde-workspace/plasma_engine_share.po
+kde-workspace/plasma_engine_soliddevice.po
+kde-workspace/plasma_engine_weather.po
+kde-workspace/plasma_runner_activities.po
+kde-workspace/plasma_runner_bookmarksrunner.po
+kde-workspace/plasma_runner_calculatorrunner.po
+kde-workspace/plasma_runner_kill.po
+kde-workspace/plasma_runner_locations.po
+kde-workspace/plasma_runner_placesrunner.po
+kde-workspace/plasma_runner_plasma-desktop.po
+kde-workspace/plasma_runner_powerdevil.po
+kde-workspace/plasma_runner_recentdocuments.po
+kde-workspace/plasma_runner_services.po
+kde-workspace/plasma_runner_sessions.po
+kde-workspace/plasma_runner_shell.po
+kde-workspace/plasma_runner_solid.po
+kde-workspace/plasma_runner_webshortcuts.po
+kde-workspace/plasma_runner_windowedwidgets.po
+kde-workspace/plasma_runner_windows.po
+kde-workspace/powerdevilactivitiesconfig.po
+kde-workspace/powerdevilglobalconfig.po
+kde-workspace/powerdevil.po
+kde-workspace/powerdevilprofilesconfig.po
+kde-workspace/processcore.po
+kde-workspace/processui.po
+kde-workspace/systemsettings.po
+# KDE Runtime 4
+kde-runtime/attica_kde.po
+kde-runtime/drkonqi.po
+kde-runtime/filetypes.po
+kde-runtime/htmlsearch.po
+kde-runtime/kcmcomponentchooser.po
+kde-runtime/kcm_device_automounter.po
+kde-runtime/kcm_emoticons.po
+kde-runtime/kcmhtmlsearch.po
+kde-runtime/kcmicons.po
+kde-runtime/kcmkded.po
+kde-runtime/kcmnotify.po
+kde-runtime/kcm_phonon.po
+kde-runtime/kcmshell.po
+kde-runtime/kdesu.po
+kde-runtime/kglobalaccel.po
+kde-runtime/khelpcenter.po
+kde-runtime/kio_applications.po
+kde-runtime/kio_archive.po
+kde-runtime/kio_bookmarks.po
+kde-runtime/kioclient.po
+kde-runtime/kio_fish.po
+kde-ru

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/, kde-apps/kde4-l10n/

2016-01-31 Thread Michael Palimaka
commit: 5c09898776e6bf383fcd0010bc44ff2e18069ff5
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Jan 26 23:36:46 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jan 31 16:52:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c098987

kde-apps/kde4-l10n: Drop old

 .../files/kde4-l10n-15.08.3-remove-messages| 211 -
 kde-apps/kde4-l10n/kde4-l10n-15.08.3-r1.ebuild | 157 ---
 2 files changed, 368 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-remove-messages
deleted file mode 100644
index 42db50b..000
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.3-remove-messages
+++ /dev/null
@@ -1,211 +0,0 @@
-# Remove any path listed here. Comments are ignored
-# KDE Workspace 4
-kde-workspace/freespacenotifier.po
-kde-workspace/joystick.po
-kde-workspace/kaccess.po
-kde-workspace/kcmaccess.po
-kde-workspace/kcm_autostart.po
-kde-workspace/kcmbell.po
-kde-workspace/kcmcolors.po
-kde-workspace/kcm_desktoppaths.po
-kde-workspace/kcm_desktopthemedetails.po
-kde-workspace/kcmdevinfo.po
-kde-workspace/kcmfonts.po
-kde-workspace/kcm_infobase.po
-kde-workspace/kcminfo.po
-kde-workspace/kcm_infosummary.po
-kde-workspace/kcminit.po
-kde-workspace/kcminput.po
-kde-workspace/kcmkclock.po
-kde-workspace/kcmkeyboard.po
-kde-workspace/kcmkeys.po
-kde-workspace/kcmkwincompositing.po
-kde-workspace/kcmkwindecoration.po
-kde-workspace/kcm_kwindesktop.po
-kde-workspace/kcmkwinrules.po
-kde-workspace/kcmkwinscreenedges.po
-kde-workspace/kcm-kwin-scripts.po
-kde-workspace/kcm_kwintabbox.po
-kde-workspace/kcmkwm.po
-kde-workspace/kcmlaunch.po
-kde-workspace/kcm_memory.po
-kde-workspace/kcmnic.po
-kde-workspace/kcmopengl.po
-kde-workspace/kcm_pci.po
-kde-workspace/kcmsamba.po
-kde-workspace/kcmsmserver.po
-kde-workspace/kcm_solid_actions.po
-kde-workspace/kcm_standard_actions.po
-kde-workspace/kcmstyle.po
-kde-workspace/kcmusb.po
-kde-workspace/kcmview1394.po
-kde-workspace/kcmworkspaceoptions.po
-kde-workspace/kfontinst.po
-kde-workspace/khotkeys.po
-kde-workspace/kinfocenter.po
-kde-workspace/klipper.po
-kde-workspace/kmenuedit.po
-kde-workspace/krdb.po
-kde-workspace/krunner.po
-kde-workspace/kscreenlocker_greet.po
-kde-workspace/kscreenlocker.po
-kde-workspace/ksgrd.po
-kde-workspace/ksmserver.po
-kde-workspace/ksplashthemes.po
-kde-workspace/ksysguardlsofwidgets.po
-kde-workspace/ksysguard.po
-kde-workspace/ktouchpadenabler.po
-kde-workspace/kwin_clients.po
-kde-workspace/kwin_effects.po
-kde-workspace/kwin.po
-kde-workspace/kwin_scripting.po
-kde-workspace/libkdecorations.po
-kde-workspace/libkworkspace.po
-kde-workspace/liboxygenstyleconfig.po
-kde-workspace/libpowerdevilcommonconfig.po
-kde-workspace/libtaskmanager.po
-kde-workspace/plasma_applet_quicklaunch.po
-kde-workspace/plasma_applet_system-monitor.po
-kde-workspace/plasma_applet_webbrowser.po
-kde-workspace/plasma_containmentactions_contextmenu.po
-kde-workspace/plasma_containmentactions_switchwindow.po
-kde-workspace/plasma_engine_keystate.po
-kde-workspace/plasma_engine_mpris2.po
-kde-workspace/plasma_engine_network.po
-kde-workspace/plasma_engine_notifications.po
-kde-workspace/plasma_engine_rss.po
-kde-workspace/plasma_engine_share.po
-kde-workspace/plasma_engine_soliddevice.po
-kde-workspace/plasma_engine_weather.po
-kde-workspace/plasma_runner_activities.po
-kde-workspace/plasma_runner_bookmarksrunner.po
-kde-workspace/plasma_runner_calculatorrunner.po
-kde-workspace/plasma_runner_kill.po
-kde-workspace/plasma_runner_locations.po
-kde-workspace/plasma_runner_placesrunner.po
-kde-workspace/plasma_runner_plasma-desktop.po
-kde-workspace/plasma_runner_powerdevil.po
-kde-workspace/plasma_runner_recentdocuments.po
-kde-workspace/plasma_runner_services.po
-kde-workspace/plasma_runner_sessions.po
-kde-workspace/plasma_runner_shell.po
-kde-workspace/plasma_runner_solid.po
-kde-workspace/plasma_runner_webshortcuts.po
-kde-workspace/plasma_runner_windowedwidgets.po
-kde-workspace/plasma_runner_windows.po
-kde-workspace/powerdevilactivitiesconfig.po
-kde-workspace/powerdevilglobalconfig.po
-kde-workspace/powerdevil.po
-kde-workspace/powerdevilprofilesconfig.po
-kde-workspace/processcore.po
-kde-workspace/processui.po
-kde-workspace/systemsettings.po
-# KDE Runtime 4
-kde-runtime/attica_kde.po
-kde-runtime/drkonqi.po
-kde-runtime/filetypes.po
-kde-runtime/htmlsearch.po
-kde-runtime/kcmcomponentchooser.po
-kde-runtime/kcm_device_automounter.po
-kde-runtime/kcm_emoticons.po
-kde-runtime/kcmhtmlsearch.po
-kde-runtime/kcmicons.po
-kde-runtime/kcmkded.po
-kde-runtime/kcmnotify.po
-kde-runtime/kcm_phonon.po
-kde-runtime/kcmshell.po
-kde-runtime/kdesu.po
-kde-runtime/kglobalaccel.po
-kde-runtime/khelpcenter.po
-kde-runtime/kio_applications.po
-kde-runtime/kio_archive.po
-kde-runtime/kio_bookmarks.po
-kde-runtime/kioclient.po
-kde-runtime/kio_fish.po
-kde-runtime/kio_info.po
-kde-runtime/kio_ma

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2015-12-29 Thread Michael Palimaka
commit: 41a56edd8b8be2d7c64f066785694a7bdcd0017d
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Dec 25 23:20:54 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Dec 29 16:09:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a56edd

kde-apps/kde4-l10n: Fix SRC_URI, bug 569762

Scrub fallout after pkgmove

Package-Manager: portage-2.2.24

 kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild | 3 ++-
 kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild| 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
index e13d5bf..045ea02 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
@@ -23,7 +23,8 @@ MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu 
fa fi fr ga gl he
 hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
 sl sr sv tr ug uk wa zh_CN zh_TW"
 
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+URI_BASE="${SRC_URI/kde4/kde}"
+URI_BASE="${URI_BASE/-${PV}.tar.xz/}"
 SRC_URI=""
 
 for MY_LANG in ${MY_LANGS} ; do

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
index f573289..6baad5b 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
@@ -23,7 +23,8 @@ MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu 
fa fi fr ga gl he
 hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
 sl sr sv tr ug uk wa zh_CN zh_TW"
 
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+URI_BASE="${SRC_URI/kde4/kde}"
+URI_BASE="${URI_BASE/-${PV}.tar.xz/}"
 SRC_URI=""
 
 for MY_LANG in ${MY_LANGS} ; do



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2015-09-22 Thread Manuel Rüger
commit: 899198f9757e671127b3fda3b3a652b25085d97a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep 22 07:43:12 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep 22 07:43:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899198f9

kde-apps/kde4-l10n: Fix manifest

Gentoo-Bug: #560986

Package-Manager: portage-2.2.21

 kde-apps/kde4-l10n/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kde4-l10n/Manifest b/kde-apps/kde4-l10n/Manifest
index d41b78f..8fc8958 100644
--- a/kde-apps/kde4-l10n/Manifest
+++ b/kde-apps/kde4-l10n/Manifest
@@ -27,7 +27,7 @@ DIST kde-l10n-el-15.08.1.tar.xz 4930712 SHA256 
a6e964116591f20bd1ae164a1f9477299
 DIST kde-l10n-el-4.14.3.tar.xz 4918672 SHA256 
897b0cef0791bbf6a2ed3287fdcb5bae4dd1696ca8d7bfc743c05618c84921af SHA512 
513666eb8570665ad0cf0a18e1a2805ebffc7f08e5b2f974ba1501c1e7306d5290f712749a40ad016b0319bae0e7f458d95973f67be5ec7932568bd8506da4ad
 WHIRLPOOL 
123bae962e36843d233655ccb4e7f5a2c37b28f8aaa0f6187e27ec2440a81ecec1ce80e2bae5684447e2d24c999cef3d77eb84439ed04c8ab7719247553f70a9
 DIST kde-l10n-en_GB-15.08.0.tar.xz 2925292 SHA256 
e8e0fa06f0552571de5a1517081c576adb210fc4123fee6b5c1ce0a9df1e3091 SHA512 
8ab59e178c8f0bd5a0220c92173fc362df2563cfd020509531e7a74bdee406918ba9513469e5b20ef8f7f6b61655952f1a95c91f841e7be7dfa5b040e442d21e
 WHIRLPOOL 
e237f40ecf8e68e4729ec7ee2faf95214da03845d6126672ba131c453cd3703dadcc892830bb98232d8dd56dc7a742c5bca761e0983fdf3433db58968183ccd4
 DIST kde-l10n-en_GB-15.08.1.tar.xz 2925808 SHA256 
92d5c1849069c8da1acdb6429137ba859623b5882c1c463d41bd1cddbabc6465 SHA512 
584ffb2d88e94bdfb454486d66bead2f129addc9ed183ec7eb9297644a9636f9ca02c01348f9d23787f120dd632b6e32c2a464e20c83d88e956d2db7154fdbee
 WHIRLPOOL 
2662a39e43b008494c2112160364d29fcf0f6ea30a7a1bcf17f0a4ab13bb84ddfe0cf5c1de91858a93ab9f1cc39777a0c098031384ab84c0ae824c0126578331
-DIST kde-l10n-en_GB-4.14.3.tar.xz 2669545 SHA256 
785da69f87ed0e1880576011310552971ad54868951abcbeb2786ebc67e61736 SHA512 
2da0096d5ac92f0cf0aad2b1f23e2b69c265af0506915b096ef826d6ca3d9056d5532754402f9dfc8bdeb3c3acc1c667556f26632188fa31855c193cfc6498e7
 WHIRLPOOL 
00e4603d95526ea93164ec46f47ee4529fa0b4769573ea04e19dbcfbd20058d3a0e6cb3ad4f9298d831cb6602e9bb8d37625efa8e49c5edff2694813ba511aa2
+DIST kde-l10n-en_GB-4.14.3.tar.xz 3148060 SHA256 
c610c6e09b957a01a2b49724a9034712d7b2a0717c1b08b388590496ef2997ba SHA512 
78de87626703285816659645b56fbbb02f4a472b7c4d03fc4b0eae18a9dd459bace3c0135631f1335bcdfe4aa60a59dd2cd04778f4ddfd078da009800e960f8a
 WHIRLPOOL 
9bf3ed134dbdfba1b4003e689d8f6dc1629cdef121aa86927bb26ddd34667b1ece199d4df561e050f97e95f29255eb2c95352b0d722af6efd70a9e03d803e89d
 DIST kde-l10n-eo-15.08.0.tar.xz 1904640 SHA256 
3e9c4a932d9bb256a82867e502f4b8a8316374c0a8170122fe17c61c0e6e8c2b SHA512 
92fdd019ada67fcd7abd80a60bb9dd1539e8e7b57c96322a6a819c858778fd325c70688305cd7661ea7077afb96aa74a2c0efdbad6ea278d192d18fb5a3cc481
 WHIRLPOOL 
018bf782a035101e1ae8a3f2b1f8af60ec6a9e2a95e5ceb68bb81f8a69623fb9ddda9eb52f33d1b22b33b7bca8d5907537a601ec920cff936f5fe7edbc6f4e32
 DIST kde-l10n-eo-15.08.1.tar.xz 1904908 SHA256 
a52406685745fad65b6d94099907a3a190f7d3c1bb590647c05aac5514d0361f SHA512 
dd3f1becb3456cc4d1b571eb2589d7b44333d9b370a4867fe8a7099b770cf2f910cd7aff8750d264462d776c639ff2b27a2666e30b9f6af50edf95e0f584e41c
 WHIRLPOOL 
7aa3f75bde77be2b314d5c79aee6968483ee6d3ceef9b3497c4d1b764602289c741db4da7f850838958ec051e7f8af8fa1292263bbd7414b57ecf6c816b9b05d
 DIST kde-l10n-es-15.08.0.tar.xz 18725232 SHA256 
355631e27d1353666ee56e6d1437c4b719f469d1b6c51143e92e12d065fd72f4 SHA512 
5e68d9226850dc1af5756cc1816228ee745fb3a4aabf7224d79587a2fb13b432418e1574d61ebfe8c38757bbe13d57e0c29f3d0dd2237d72e46dc0ebc480a752
 WHIRLPOOL 
e710243310a151805b5fa1167fc11e57a2c5cd66e5c7e151b2e70d085371a1f26ffcc330fbb38c64e5bf4a61b0981e9ad20ac84de68e83342e4e717bdd33791e
@@ -104,7 +104,7 @@ DIST kde-l10n-nb-15.08.1.tar.xz 2526644 SHA256 
cdf02df793cc4a04c120440a8921eb7d4
 DIST kde-l10n-nb-4.14.3.tar.xz 2545556 SHA256 
2ad1734c2c63a99cd99298a1a4bc24fe2958221afef80e0614334ae93dca4d73 SHA512 
65c6904e08ccd1b5dec9915dc3e312f7be84b03375e31bd68a55da0551b5f80969a95b12dcbabf25d33b84b893beb4458ee22d185993b1f940054a8f066fc24b
 WHIRLPOOL 
7cb2dbf9b485d526d63e78a27947412be19924f512eef5133921f0b47d7d79a9a445733df4a429b291bfcc473c4499fbbe670e001462891f8a27cb08bd1e7f16
 DIST kde-l10n-nds-15.08.0.tar.xz 3337368 SHA256 
d4bf0dcd533da998c1913cc8606d246f7087428f2a59536f63362f2dfd1e8233 SHA512 
b8db39540d4fbdce5ed8b4e1df2deddd9589fce74c1a50c4e043464e2490f0d6a6c32817ff3aca388ded0fd1aa3bceb69ee7001fd4d33ccee9070bed4ed11544
 WHIRLPOOL 
f6cf4dcb2285b18550ac0bcea8dee94bfcebdd31979822b795da23290a60dcacc6cb7d4a1434f111b15799d37f547afa69089680f0f8f4766cdb74dec04a9479
 DIST kde-l10n-nds-15.08.1.tar.xz 3337780 SHA256 
ad23d29eaf167ad33c1653f7a116762029d0602736711cce340f9506246ed645 SHA512 
94e43150825434ce435d9ee9ceaabd1c9ab2195e6982884870b9ed3799d9cfa9e9ae74061dd79feeae48a577eda239c04cafd23c580

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2015-09-05 Thread Andreas Hüttel
commit: 1aae5c967e2dd192ae17b25433fd6f72bc7b60c1
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Aug 27 19:29:04 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Sep  1 20:58:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aae5c96

kde-apps/kde4-l10n: Revision bump drops kdepimlibs translations

This makes room for kde-apps/kdepim-l10n which is going to contain it instead.

 kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild | 159 ++
 1 file changed, 159 insertions(+)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
new file mode 100644
index 000..e13d5bf
--- /dev/null
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3-r1.ebuild
@@ -0,0 +1,159 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org";
+
+DEPEND="
+   sys-devel/gettext
+"
+RDEPEND=""
+
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="minimal"
+
+# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 
's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
+MY_LANGS="ar bg bs ca ca@valencia cs da de el en_GB es et eu fa fi fr ga gl he
+hi hr hu ia id is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk
+sl sr sv tr ug uk wa zh_CN zh_TW"
+
+URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+SRC_URI=""
+
+for MY_LANG in ${MY_LANGS} ; do
+   IUSE="${IUSE} linguas_${MY_LANG}"
+   SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( 
${URI_BASE}/kde-l10n-${MY_LANG}-${PV}.tar.xz )"
+done
+
+S="${WORKDIR}"
+
+src_unpack() {
+   if [[ -z ${A} ]]; then
+   elog
+   elog "You either have the LINGUAS variable unset, or it only"
+   elog "contains languages not supported by ${P}."
+   elog "You won't have any additional language support."
+   elog
+   elog "${P} supports these language codes:"
+   elog "${MY_LANGS}"
+   elog
+   fi
+
+   [[ -n ${A} ]] && unpack ${A}
+}
+
+src_prepare() {
+   local LNG DIR
+   # add all linguas to cmake
+   if [[ -n ${A} ]]; then
+   for LNG in ${LINGUAS}; do
+   DIR="kde-l10n-${LNG}-${PV}"
+   if [[ -d "${DIR}" ]] ; then
+   echo "add_subdirectory( ${DIR} )" >> 
"${S}"/CMakeLists.txt
+   fi
+   done
+   fi
+   find "${S}" -name CMakeLists.txt -type f \
+   -exec sed -i -e 's:^ *add_subdirectory( *kdepim-runtime *):# no 
kdepim-runtime:g' {} +
+   find "${S}" -name CMakeLists.txt -type f \
+   -exec sed -i -e 's:^ *add_subdirectory( *kdepim *):# no 
kdepim:g' {} +
+   find "${S}" -name CMakeLists.txt -type f \
+   -exec sed -i -e 's:^ *add_subdirectory( *kdepimlibs *):# no 
kdepimlibs:g' {} +
+
+   # Drop translations that get installed with plasma 5 and kde apps 5 
packages
+   if use minimal; then
+
+   # KDE Workspace 4
+   rm -f "${S}"/*/messages/kde-workspace/{freespacenotifier,\
+joystick,kaccess,kcmaccess,kcm_autostart,kcmbell,kcmcolors,kcm_desktoppaths,\
+kcm_desktopthemedetails,kcmdevinfo,kcmfonts,kcm_infobase,kcminfo,\
+kcm_infosummary,kcminit,kcminput,kcmkclock,kcmkeyboard,kcmkeys,\
+kcmkwincompositing,kcmkwindecoration,kcm_kwindesktop,kcmkwinrules,\
+kcmkwinscreenedges,kcm-kwin-scripts,kcm_kwintabbox,kcmkwm,kcmlaunch,kcm_memory,\
+kcmnic,kcmopengl,kcm_pci,kcmsamba,kcmsmserver,kcm_solid_actions,\
+kcm_standard_actions,kcmstyle,kcmusb,kcmview1394,kcmworkspaceoptions,kfontinst,\
+khotkeys,kinfocenter,klipper,kmenuedit,krdb,krunner,kscreenlocker_greet,\
+kscreenlocker,ksgrd,ksmserver,ksplashthemes,ksysguardlsofwidgets,ksysguard,\
+ktouchpadenabler,kwin_clients,kwin_effects,kwin,kwin_scripting,libkdecorations,\
+libkworkspace,liboxygenstyleconfig,libpowerdevilcommonconfig,libtaskmanager,\
+plasma_applet_quicklaunch,plasma_applet_system-monitor,\
+plasma_applet_webbrowser,plasma_containmentactions_contextmenu,\
+plasma_containmentactions_switchwindow,plasma_engine_keystate,\
+plasma_engine_mpris2,plasma_engine_network,plasma_engine_notifications,\
+plasma_engine_rss,plasma_engine_share,plasma_engine_soliddevice,\
+plasma_engine_weather,plasma_runner_activities,plasma_runner_bookmarksrunner,\
+plasma_runner_calculatorrunner,plasma_runner_kill,plasma_runner_locations,\
+plasma_runner_placesrunner,plasma_runner_plasma-desktop,\
+plasma_runner_powerdevil,plasma_runner_recentdocuments,plasma_runner_services,\
+plasma_runner_sessions,plasma_runner_shell,plasma_runner_solid,\
+plasma_runner_webshortcuts,plasma_runner_windowedwidgets,plasma_runner_windows,\
+powerdevilactivitiesconfig,powerdevilglobalconfig,powerdevil,\
+powerdevilprofilesconfi

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/, kde-apps/kde4-l10n/files/

2015-09-05 Thread Andreas Hüttel
commit: f18276987d7defb2356b79084783c0f24ceb7ea0
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Aug 27 19:38:20 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Sep  1 20:58:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1827698

kde-apps/kde4-l10n: Drop block against kde-base/kdepim-l10n

15.08.0 does not contain the conflicting files anymore.

Package-Manager: portage-2.2.20.1

 kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs |  1 -
 ...-l10n-15.08.0.ebuild => kde4-l10n-15.08.0-r1.ebuild} | 17 +++--
 2 files changed, 7 insertions(+), 11 deletions(-)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
index 4c4ea64..005cab1 100644
--- a/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
@@ -47,4 +47,3 @@ docs/kde-workspace/kcontrol kcmaccess
 docs/kde-workspace/kcontrol kcmstyle
 docs/kde-workspace/kcontrol solid-actions
 docs/kde-workspace/kcontrol splashscreen
-

diff --git a/kde-apps/kde4-l10n/kde4-l10n-15.08.0.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-15.08.0-r1.ebuild
similarity index 89%
rename from kde-apps/kde4-l10n/kde4-l10n-15.08.0.ebuild
rename to kde-apps/kde4-l10n/kde4-l10n-15.08.0-r1.ebuild
index 65c2b29..ef80763 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-15.08.0.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-15.08.0-r1.ebuild
@@ -16,7 +16,6 @@ DEPEND="
 "
 RDEPEND="
!> \
-   
"${SDIR}"/messages/CMakeLists.txt
+   # Do not try to copy kdepim 
localisation
+   for path in kdepim kdepimlibs 
kdepim-runtime; do
+   rm -rf 
"${KMNAME}-${LNG}-${LV}/messages/${path}" || die
done
-   unset subdirs
# Merge legacy localisation
for path in $(find 
"${KMNAME}-${LNG}-${LV}" -name "*.po"); do
cp -rn "${path}" 
"${path/${LV}/${PV}/4/${LNG}}" || die
@@ -122,6 +117,8 @@ src_prepare() {
fi
done
fi
+
+   kde4-base_src_prepare
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2015-09-05 Thread Andreas Hüttel
commit: 40c154a6bb0868e95a25d3dcc767143ceecd689c
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Aug 28 15:50:54 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Sep  1 21:06:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c154a6

kde-apps/kde4-l10n: Fix Homepage

Package-Manager: portage-2.2.20.1

 kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild 
b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
index 1492e31..f573289 100644
--- a/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
+++ b/kde-apps/kde4-l10n/kde4-l10n-4.14.3.ebuild
@@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
 inherit kde4-base
 
 DESCRIPTION="KDE internationalization package"
-HOMEPAGE="https://l10n.kde.org";
+HOMEPAGE="http://l10n.kde.org";
 
 DEPEND="
sys-devel/gettext



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/files/

2015-08-25 Thread Johannes Huber
commit: cb71c434b36361520776250581efdff47640b0f7
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Aug 25 22:06:59 2015 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Aug 25 22:06:59 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb71c434

kde-apps/kde4-l10n: Add missing files

Package-Manager: portage-2.2.20.1

 .../kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs |  50 +
 .../files/kde4-l10n-15.08.0-remove-messages| 210 +
 2 files changed, 260 insertions(+)

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
new file mode 100644
index 000..4c4ea64
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-15.07.90-remove-dirs
@@ -0,0 +1,50 @@
+# Disable any subdirectories listed here. Comments are ignored
+# First argument: parent directory
+# Second argument: which subdirectory to disable in CMakeLists.txt
+# kde-l10n 5
+data/kdeedu khangman
+docs/applications kate
+docs/applications konsole
+docs/applications kwrite
+docs/kdeedu kig
+docs/kdeedu pairseditor
+docs/kdeedu parley
+docs/kdeedu step
+docs/kdegames bomber
+docs/kdegraphics gwenview
+docs/kdegraphics kruler
+docs/kdesdk kapptemplate
+docs/kdesdk okteta
+docs/kdeutils kwalletmanager
+# Plasma 5.3
+docs/kde-runtime fundamentals
+docs/kde-runtime kdesu
+docs/kde-runtime khelpcenter
+docs/kde-runtime knetattach
+docs/kde-runtime onlinehelp
+docs/kde-runtime/kcontrol bookmarks
+docs/kde-runtime/kcontrol cookies
+docs/kde-runtime/kcontrol ebrowsing
+docs/kde-runtime/kcontrol emoticons
+docs/kde-runtime/kcontrol icons
+docs/kde-runtime/kcontrol kcmcgi
+docs/kde-runtime/kcontrol khtml
+docs/kde-runtime/kcontrol smb
+docs/kde-runtime/kcontrol trash
+docs/kde-runtime/kcontrol useragent
+docs/kde-workspace kfontview
+docs/kde-workspace kinfocenter
+docs/kde-workspace klipper
+docs/kde-workspace kmenuedit
+docs/kde-workspace ksysguard
+docs/kde-workspace plasma-desktop
+docs/kde-workspace systemsettings
+docs/kde-workspace/kcontrol clock
+docs/kde-workspace/kcontrol colors
+docs/kde-workspace/kcontrol desktopthemedetails
+docs/kde-workspace/kcontrol joystick
+docs/kde-workspace/kcontrol kcmaccess
+docs/kde-workspace/kcontrol kcmstyle
+docs/kde-workspace/kcontrol solid-actions
+docs/kde-workspace/kcontrol splashscreen
+

diff --git a/kde-apps/kde4-l10n/files/kde4-l10n-15.08.0-remove-messages 
b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.0-remove-messages
new file mode 100644
index 000..0044d42
--- /dev/null
+++ b/kde-apps/kde4-l10n/files/kde4-l10n-15.08.0-remove-messages
@@ -0,0 +1,210 @@
+# Remove any path listed here. Comments are ignored
+# KDE Workspace 4
+kde-workspace/freespacenotifier.po
+kde-workspace/joystick.po
+kde-workspace/kaccess.po
+kde-workspace/kcmaccess.po
+kde-workspace/kcm_autostart.po
+kde-workspace/kcmbell.po
+kde-workspace/kcmcolors.po
+kde-workspace/kcm_desktoppaths.po
+kde-workspace/kcm_desktopthemedetails.po
+kde-workspace/kcmdevinfo.po
+kde-workspace/kcmfonts.po
+kde-workspace/kcm_infobase.po
+kde-workspace/kcminfo.po
+kde-workspace/kcm_infosummary.po
+kde-workspace/kcminit.po
+kde-workspace/kcminput.po
+kde-workspace/kcmkclock.po
+kde-workspace/kcmkeyboard.po
+kde-workspace/kcmkeys.po
+kde-workspace/kcmkwincompositing.po
+kde-workspace/kcmkwindecoration.po
+kde-workspace/kcm_kwindesktop.po
+kde-workspace/kcmkwinrules.po
+kde-workspace/kcmkwinscreenedges.po
+kde-workspace/kcm-kwin-scripts.po
+kde-workspace/kcm_kwintabbox.po
+kde-workspace/kcmkwm.po
+kde-workspace/kcmlaunch.po
+kde-workspace/kcm_memory.po
+kde-workspace/kcmnic.po
+kde-workspace/kcmopengl.po
+kde-workspace/kcm_pci.po
+kde-workspace/kcmsamba.po
+kde-workspace/kcmsmserver.po
+kde-workspace/kcm_solid_actions.po
+kde-workspace/kcm_standard_actions.po
+kde-workspace/kcmstyle.po
+kde-workspace/kcmusb.po
+kde-workspace/kcmview1394.po
+kde-workspace/kcmworkspaceoptions.po
+kde-workspace/kfontinst.po
+kde-workspace/khotkeys.po
+kde-workspace/kinfocenter.po
+kde-workspace/klipper.po
+kde-workspace/kmenuedit.po
+kde-workspace/krdb.po
+kde-workspace/krunner.po
+kde-workspace/kscreenlocker_greet.po
+kde-workspace/kscreenlocker.po
+kde-workspace/ksgrd.po
+kde-workspace/ksmserver.po
+kde-workspace/ksplashthemes.po
+kde-workspace/ksysguardlsofwidgets.po
+kde-workspace/ksysguard.po
+kde-workspace/ktouchpadenabler.po
+kde-workspace/kwin_clients.po
+kde-workspace/kwin_effects.po
+kde-workspace/kwin.po
+kde-workspace/kwin_scripting.po
+kde-workspace/libkdecorations.po
+kde-workspace/libkworkspace.po
+kde-workspace/liboxygenstyleconfig.po
+kde-workspace/libpowerdevilcommonconfig.po
+kde-workspace/libtaskmanager.po
+kde-workspace/plasma_applet_quicklaunch.po
+kde-workspace/plasma_applet_system-monitor.po
+kde-workspace/plasma_applet_webbrowser.po
+kde-workspace/plasma_containmentactions_contextmenu.po
+kde-workspace/plasma_containmentactions_switchwindow.po
+kde-workspace/plasma_engine_keystate.po
+kde-workspace/plasma_engi

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde4-l10n/

2015-08-25 Thread Johannes Huber
commit: 03e89692c30604fee3d11f1b34c9554fea02496f
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Aug 25 22:01:32 2015 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Aug 25 22:01:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e89692

kde-apps/kde4-l10n: Version bump

Gentoo-Bug: 553572

Package-Manager: portage-2.2.20.1

 kde-apps/kde4-l10n/Manifest |  54 +++
 kde-apps/kde4-l10n/kde4-l10n-15.08.0.ebuild | 144 
 2 files changed, 198 insertions(+)

diff --git a/kde-apps/kde4-l10n/Manifest b/kde-apps/kde4-l10n/Manifest
index d820280..e00d533 100644
--- a/kde-apps/kde4-l10n/Manifest
+++ b/kde-apps/kde4-l10n/Manifest
@@ -1,53 +1,107 @@
+DIST kde-l10n-ar-15.08.0.tar.xz 3408712 SHA256 
f52f05ae4863bbf8272402c667c19f2fbb73ad0529959b04b2030788aff0ca5d SHA512 
480bd82c6ce7c9085e6caec40f3dff5613d7f4c919da8ceda920668cbd938e4e8bd97d1bc624c843ea30458bd0a8a8ef5a59ad0166e51e775245f4588d36c130
 WHIRLPOOL 
078013eaf18b01b2dca682a7964f169caa2132f0972de09059d6f1a25704067b6d254dc62ecf8f5da8fe0d244cefd8c85212c4175f7ba87bd098078cc8ffec4a
 DIST kde-l10n-ar-4.14.3.tar.xz 3378496 SHA256 
04606bd4ff9d8027084e968b00e5ba7c2074a503b1b9b0420695c34f14ffbfaa SHA512 
15d86d605faa9cd72e0b873957fb8345114048918de9289f9a55f8a1c9db4a485e7908541e146653d9be3cbcddca6023dbb724dc7dd202cef6868f3dd984
 WHIRLPOOL 
7f053f2570deb730e52498d8b07de3286e6c9146c64c9737c297df761125e7b9f4b886e109114f5702ff963d154be2c2fd6b9ff4be938581f604231ea9c4984a
+DIST kde-l10n-bg-15.08.0.tar.xz 2063936 SHA256 
185d2aaa898cfe357d19ac8394e37a09ff3bdc431f1d8b84caf6e4b78e0aa6f2 SHA512 
f9a96ab54d59b99d1774b626eeef129722f244bd3ffafdddee449edc8eba8fee63a1757a77f773fda3a5939cddcfea822423e409e46ed3378fa5fac6c2c138c1
 WHIRLPOOL 
e1cdbc0575157465b6048f2bf7a7a8bf36c6a9639ed3a643e629e3986c6b25212d9dea242d942d9c24c4fadd3076bddc83ea23c5d0a1299f02862b90f56928aa
 DIST kde-l10n-bg-4.14.3.tar.xz 2099632 SHA256 
8b2bc59c98d57d7b8f7a99e3a50cc70fdf308301cb317a9ad87c19c4a9e93ef4 SHA512 
a6290dfc8f51639bcee21c5a9945869174c4c1ae85fe6dab8aa1d8a5516131a515d47a01b061ac7990f238a61de991af37b4ff7aa9c4e9b25bf70618c8af3cf6
 WHIRLPOOL 
c68e9ce48737810587b706f97de96b9b9e0a83ff98283d84d22acf3d9643066c3c29d7efb266761e75c72645d5a807f643f69c152060cfc5b289652668dbec23
+DIST kde-l10n-bs-15.08.0.tar.xz 2462140 SHA256 
dbbf60c9c409e1a4886e0bdc75c3147659f9f3cdb069b40d74743fb5a92c8f8b SHA512 
c58c89e6966efc1c760f193bb025a9473aa3c86af0f3698bdfc07f491181d0c4581818c3323bd7a30927233547ebd1c75205b40f929264cd74a1c165772c1427
 WHIRLPOOL 
85edaa0af9095979e00a6f7aea6b87a67de423e4799e108a300b49175ac6a7853b6df8fef684f4dd0de39f0360d53140b4f3fcc5d3849fda1fe238ffb39435cb
 DIST kde-l10n-bs-4.14.3.tar.xz 2413352 SHA256 
cfbedbc7b8fbd024687f31f4ba06944a260e823a86ac28cdacbe72335b490191 SHA512 
2de571ad9a4627fad625096cd0f28b20dc51e9417e141a04fb40cf1f6f842cc827ba8fbcb57da10a42fb930dd50ff868cf404468227cd1fe0ed9ea4f21fcd08c
 WHIRLPOOL 
452ea40c9477cb7329aee05f4598b3627da92d8f38196546163cfb8a16e8d66b613a5d34fdfd9bec9f8ddf5ca62abbbd176e90336fdc8e53f93f281c11b846ad
+DIST kde-l10n-ca-15.08.0.tar.xz 11854488 SHA256 
c2c5afb1fde8868b1ed5b34c28c79bbdfa7a45e39205f8d16337a5ad3fbf27da SHA512 
d25d8c880f0daa716a6de28e7806117c76f7f0aceee46882a33c2e9bf5bd8248d24e13080a6e308931a73e76875bd2f286ccd5e68d06066a799546844373401d
 WHIRLPOOL 
0d104389a528675e3bd1d8f631f390e6e129c23e3c90454636c5fae46facfbaeac1ef749c73b0ccf7a8daac22c34fcd502ce9f79f1591bf409b9c6f2fa610388
 DIST kde-l10n-ca-4.14.3.tar.xz 12308492 SHA256 
1b54344202f7f04f9083d2b64229668eb1cab5543df201693a96df92b9936f11 SHA512 
5f352e0666f03d3783fb952729e589432b6be9950f75de978ff314f3cf71cf9a2ac88eb4abc1deafe78d18a88b2d2254e7ebc0c60b5f49f0590b0a2df2a431e2
 WHIRLPOOL 
0a33711760e2d31c3a78cec5997f66f232a8fb817ea04919017a4cf2226c3bd935e1772fb995aeae467bc456d0d384b67e2d0eb9d518e83cac9deb18176e7e3d
+DIST kde-l10n...@valencia-15.08.0.tar.xz 2414748 SHA256 
14a790ebad94251acab23a01846a7be58c38ba5890efd79571cb06d8c31d7ecb SHA512 
a8438c9ae4b516411f73ab49edb7ad6246fe3a7b97af1564fa0547798c437b474b9cfa45556ded39e887d157b6fca4b31718d5001b39ac0072d76bcaae613d35
 WHIRLPOOL 
3b286ce5956abb9f7f3a63390cbf97bc113287d434ecd4f656bdcc7bf57e08044fba8ff5dff086e4be4ff125cfefd378bb5e92da6b5aafe389863698499e5366
 DIST kde-l10n...@valencia-4.14.3.tar.xz 2375664 SHA256 
04c71ccf7de9bdf3c290a1c5ccb2172b8414086c8eefd612ceb24e1aa53c455c SHA512 
a11b8bb5490d0d49249684d82512f4a78e1d7b37901d8ed115e070b813d51aa85ce418aa0937d0a08220b9d5aca3ae54cb5c18c2f5aa116c7ed2bf9f4673292a
 WHIRLPOOL 
18ffd8a5a89be84b08ddd5f18afb2cd52968f4a0308896a985ad57e63d64cb9a83f58004583933e441a011bd94dae32fcbdf3c974bae31006b00d109a90731a8
+DIST kde-l10n-cs-15.08.0.tar.xz 3019328 SHA256 
7e6576aad7b2ab84b4a30f30841c58a0db9570c263f1403334c5935f2a9d3775 SHA512 
d76ca04fc89026bda58a46d8d98b7fb2a59824e2f0488e54b4b7ba8ca19fadb389511ba1dd8f130b596d60b8cba3af6f14b568c80133ec4413959dced580a6d0
 WHIRLPOOL 
ddfcf6a8d785fe9e0290b98a4152d926ee30f2256e9e5add