public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-04-07 17:01 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2016-04-07 17:01 UTC (permalink / raw
  To: gentoo-commits

commit:     d398566398c0b745d8bf4d21a9175cc3f2f67bab
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Thu Mar 31 18:39:09 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 17:01:30 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=d3985663

kde-apps/kde-l10n: Add 16.03.90

New LINGUAS: ast

Package-Manager: portage-2.2.27

 kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild | 116 +++++++++++++++++++++++++++++
 kde-apps/kde-l10n/metadata.xml             |   8 ++
 2 files changed, 124 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
new file mode 100644
index 0000000..01cc600
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+inherit kde5
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+	$(add_frameworks_dep ki18n)
+	$(add_qt_dep linguist-tools)
+	sys-devel/gettext
+"
+RDEPEND="
+	!<kde-apps/kde4-l10n-${PV}
+	!kde-apps/kde4-l10n[-minimal]
+	!<kde-apps/kdepim-l10n-${PV}
+	!<kde-apps/ktp-l10n-${PV}
+"
+
+# /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="$(printf 'linguas_%s ' ${MY_LANGS})"
+
+URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
+SRC_URI=""
+for my_lang in ${MY_LANGS} ; do
+	SRC_URI="${SRC_URI} linguas_${my_lang}? ( ${URI_BASE}/${PN}-${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} ]] && kde5_pkg_setup
+}
+
+src_unpack() {
+	for my_tar in ${A}; do
+		tar -xpf "${DISTDIR}/${my_tar}" --xz \
+			"${my_tar/.tar.xz/}/CMakeLists.txt" "${my_tar/.tar.xz/}/5" 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(kde-l10n)
+cmake_minimum_required(VERSION 2.8.12)
+$(printf "add_subdirectory( %s )\n" \
+	`find . -mindepth 1 -maxdepth 1 -type d | sed -e "s:^\./::"`)
+EOF
+
+	# Drop KDE4-based part
+	find -maxdepth 2 -type f -name CMakeLists.txt -exec \
+		sed -i -e "/add_subdirectory(4)/ s/^/#DONT/" {} + || die
+
+	# Handbook optional
+	find -type f -name CMakeLists.txt -exec \
+		sed -i -e "/find_package.*KF5DocTools/ s/ REQUIRED//" {} + || die
+	if ! use handbook ; then
+		find -mindepth 4 -maxdepth 4 -type f -name CMakeLists.txt -exec \
+			sed -i -e '/add_subdirectory(docs)/ s/^/#DONT/' {} + || die
+	fi
+
+	# Remove kdepim translations (part of kde-apps/kdepim-l10n)
+	for subdir in kdepim kdepimlibs kdepim-runtime pim; do
+		find -mindepth 5 -maxdepth 5 -type f -name CMakeLists.txt -exec \
+			sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#DONT/" {} + || die
+	done
+
+	# Remove ktp translations (part of kde-apps/ktp-l10n)
+	# Drop that hack (and kde-apps/ktp-l10n) after ktp:4 removal
+	find ./*/5/*/messages/kdenetwork -type f \
+		\( -name kaccounts*po -o -name kcm_ktp*po -o -name kcmtelepathy*po \
+		-o -name kded_ktp*po -o -name ktp*po -o -name plasma*ktp*po \) \
+		-delete
+}
+
+src_configure() {
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde5_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
new file mode 100644
index 0000000..2fdbf33
--- /dev/null
+++ b/kde-apps/kde-l10n/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-10-16 18:44 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2016-10-16 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     6da603b14087fc284adc5ea3d58e80ef0aedad60
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Oct  9 20:08:07 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Oct 16 18:44:11 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6da603b1

kde-apps/kde-l10n: Re-enable ktp translations, block ktp-l10n and ktp*:4

Package-Manager: portage-2.3.0

 kde-apps/kde-l10n/kde-l10n-16.08.1-r1.ebuild | 85 ++++++++++++++++++++++++++++
 kde-apps/kde-l10n/metadata.xml               |  8 +++
 2 files changed, 93 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.08.1-r1.ebuild b/kde-apps/kde-l10n/kde-l10n-16.08.1-r1.ebuild
new file mode 100644
index 0000000..b169174
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-16.08.1-r1.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
+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 kde5
+
+DESCRIPTION="KDE internationalization package"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+DEPEND="
+	$(add_frameworks_dep ki18n)
+	$(add_qt_dep linguist-tools)
+	sys-devel/gettext
+"
+RDEPEND="
+	!<kde-apps/kde4-l10n-${PV}
+	!<kde-apps/kdepim-l10n-${PV}:5
+	!<=kde-apps/khelpcenter-5.6.2
+	!kde-apps/ktp-accounts-kcm:4
+	!kde-apps/ktp-approver:4
+	!kde-apps/ktp-auth-handler:4
+	!kde-apps/ktp-common-internals:4
+	!kde-apps/ktp-contact-list:4
+	!kde-apps/ktp-filetransfer-handler:4
+	!kde-apps/ktp-kded-module:4
+	!kde-apps/ktp-l10n
+	!kde-apps/ktp-send-file:4
+	!kde-apps/ktp-text-ui:4
+"
+
+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
+
+	# Handbook optional
+	find -type f -name CMakeLists.txt -exec \
+		sed -i -e "/find_package.*KF5DocTools/ s/ REQUIRED//" {} + || die
+	if ! use handbook ; then
+		find -mindepth 4 -maxdepth 4 -type f -name CMakeLists.txt -exec \
+			sed -i -e '/add_subdirectory(docs)/ s/^/#DONT/' {} + || die
+	fi
+
+	# Remove kdepim translations (part of kde-apps/kdepim-l10n)
+	for subdir in kdepim kdepimlibs kdepim-runtime pim; do
+		find -mindepth 5 -maxdepth 5 -type f -name CMakeLists.txt -exec \
+			sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#DONT/" {} + || die
+	done
+}
+
+src_configure() {
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() { :; }
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
new file mode 100644
index 0000000..2fdbf33
--- /dev/null
+++ b/kde-apps/kde-l10n/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-10-13  9:05 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2016-10-13  9:05 UTC (permalink / raw
  To: gentoo-commits

commit:     b6d9785405e056a3c50a095086eb8dfa1c9c57f1
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 09:02:12 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 09:02:12 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b6d97854

kde-apps/kde-l10n: Remove empty

 kde-apps/kde-l10n/metadata.xml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
deleted file mode 100644
index 2fdbf33..0000000
--- a/kde-apps/kde-l10n/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>kde@gentoo.org</email>
-		<name>Gentoo KDE Project</name>
-	</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-07-13 18:23 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2016-07-13 18:23 UTC (permalink / raw
  To: gentoo-commits

commit:     a339b11c0b9de99a5809d2f06eb17895160ecc98
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Jul 10 15:59:02 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul 13 18:21:52 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a339b11c

kde-apps/kde-l10n: Add KDE_L10N

This adds 3 new sr variants to L10N.

Package-Manager: portage-2.2.28

Signed-off-by: Johannes Huber <johu <AT> gentoo.org>

 kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild | 47 ++++++-------------------------
 1 file changed, 9 insertions(+), 38 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild b/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
index c054dc9..ba93054 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
@@ -5,12 +5,18 @@
 EAPI=6
 
 KDE_HANDBOOK="optional"
+# /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '
+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 kde5
 
 DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org"
 
 KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
 
 DEPEND="
 	$(add_frameworks_dep ki18n)
@@ -25,57 +31,22 @@ RDEPEND="
 	!<kde-apps/ktp-l10n-${PV}
 "
 
-# /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="$(printf 'l10n_%s ' ${MY_LANGS//[_@]/-})"
-
-URI_BASE="${SRC_URI/-${PV}.tar.xz/}"
-SRC_URI=""
-for my_lang in ${MY_LANGS} ; do
-	SRC_URI="${SRC_URI} l10n_${my_lang//[_@]/-}? ( ${URI_BASE}/${PN}-${my_lang}-${PV}.tar.xz )"
-done
-
-S="${WORKDIR}"
-
 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 "${MY_LANGS//[@_]/-}"
+		elog "${KDE_L10N[@]}"
 		elog
 	fi
 	[[ -n ${A} ]] && kde5_pkg_setup
 }
 
-src_unpack() {
-	for my_tar in ${A}; do
-		tar -xpf "${DISTDIR}/${my_tar}" --xz \
-			"${my_tar/.tar.xz/}/CMakeLists.txt" "${my_tar/.tar.xz/}/5" 2> /dev/null ||
-			elog "${my_tar}: tar extract command failed at least partially - continuing"
-	done
-}
-
 src_prepare() {
-	default
+	kde5_src_prepare
 	[[ -n ${A} ]] || return
 
-	# add all l10n to cmake
-	cat <<-EOF > CMakeLists.txt || die
-project(kde-l10n)
-cmake_minimum_required(VERSION 2.8.12)
-$(printf "add_subdirectory( %s )\n" \
-	`find . -mindepth 1 -maxdepth 1 -type d | sed -e "s:^\./::"`)
-EOF
-
-	# Drop KDE4-based part
-	find -maxdepth 2 -type f -name CMakeLists.txt -exec \
-		sed -i -e "/add_subdirectory(4)/ s/^/#DONT/" {} + || die
-
 	# Handbook optional
 	find -type f -name CMakeLists.txt -exec \
 		sed -i -e "/find_package.*KF5DocTools/ s/ REQUIRED//" {} + || die


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-07-08 17:29 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2016-07-08 17:29 UTC (permalink / raw
  To: gentoo-commits

commit:     26b81346c24b1c1833c468adc05f0331a9270df8
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Thu Jul  7 21:19:05 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Jul  8 17:29:34 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=26b81346

kde-apps/kde-l10n: Drop unnecessary blocker

Package-Manager: portage-2.2.28

 kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild b/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
index 66276ca..c054dc9 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.04.3.ebuild
@@ -19,7 +19,6 @@ DEPEND="
 "
 RDEPEND="
 	!<kde-apps/kde4-l10n-${PV}
-	!kde-apps/kde4-l10n[-minimal(+)]
 	!<kde-apps/kdepim-l10n-${PV}:5
 	!<kde-apps/khelpcenter-5.5.5-r1
 	!=kde-apps/khelpcenter-5.6.2


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-06-26 16:50 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2016-06-26 16:50 UTC (permalink / raw
  To: gentoo-commits

commit:     9bdd0573d9e59e2e6ca3381a2e590ce815fbdfac
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Jun 26 09:06:23 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 09:06:23 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=9bdd0573

kde-apps/kde-l10n: Prepare for a future kde4-l10n without USE=minimal

Version block makes sure of no ancient kde4-l10n anyway.

Package-Manager: portage-2.2.28

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

diff --git a/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild b/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
index 231df32..b57d3e0 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
@@ -19,7 +19,7 @@ DEPEND="
 "
 RDEPEND="
 	!<kde-apps/kde4-l10n-${PV}
-	!kde-apps/kde4-l10n[-minimal]
+	!kde-apps/kde4-l10n[-minimal(+)]
 	!<kde-apps/kdepim-l10n-${PV}:5
 	!<kde-apps/khelpcenter-5.5.5-r1
 	!=kde-apps/khelpcenter-5.6.2


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-04-15 19:06 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2016-04-15 19:06 UTC (permalink / raw
  To: gentoo-commits

commit:     6e0480d70a4e0af373a45bf5d2f195699a4d259d
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Mon Apr 11 06:33:12 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 19:06:21 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6e0480d7

kde-apps/kde-l10n: Drop workaround and block conflicting khelpcenter

Package-Manager: portage-2.2.27

Signed-off-by: Johannes Huber <johu <AT> gentoo.org>

 .../{kde-l10n-16.03.90.ebuild => kde-l10n-16.03.90-r1.ebuild}  | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.90-r1.ebuild
similarity index 92%
rename from kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
rename to kde-apps/kde-l10n/kde-l10n-16.03.90-r1.ebuild
index cb7df16..231df32 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.03.90-r1.ebuild
@@ -21,6 +21,8 @@ RDEPEND="
 	!<kde-apps/kde4-l10n-${PV}
 	!kde-apps/kde4-l10n[-minimal]
 	!<kde-apps/kdepim-l10n-${PV}:5
+	!<kde-apps/khelpcenter-5.5.5-r1
+	!=kde-apps/khelpcenter-5.6.2
 	!<kde-apps/ktp-l10n-${PV}
 "
 
@@ -107,14 +109,8 @@ src_compile() {
 	[[ -n ${A} ]] && kde5_src_compile
 }
 
-src_test() {
-	[[ -n ${A} ]] && kde5_src_test
-}
+src_test() { :; }
 
 src_install() {
 	[[ -n ${A} ]] && kde5_src_install
-
-	# FIXME: Temporary removal of file conflict with kde-plasma/khelpcenter
-	# Files should be removed in khelpcenter after pkgmove to kde-apps/
-	rm -rf "${ED}"usr/share/locale/*/LC_MESSAGES/khelpcenter.mo || die
 }


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-04-08 22:12 Andreas Hüttel
  0 siblings, 0 replies; 33+ messages in thread
From: Andreas Hüttel @ 2016-04-08 22:12 UTC (permalink / raw
  To: gentoo-commits

commit:     15a12d31eba5e7169314939c54a6fbc4365363f9
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  8 22:12:01 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Apr  8 22:12:01 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=15a12d31

kde-apps/kde-l10n: Restrict kdepim-l10n blocker to slot 5

Package-Manager: portage-2.2.28

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

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
index afdddc9..cb7df16 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
@@ -20,7 +20,7 @@ DEPEND="
 RDEPEND="
 	!<kde-apps/kde4-l10n-${PV}
 	!kde-apps/kde4-l10n[-minimal]
-	!<kde-apps/kdepim-l10n-${PV}
+	!<kde-apps/kdepim-l10n-${PV}:5
 	!<kde-apps/ktp-l10n-${PV}
 "
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-04-07 19:19 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2016-04-07 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     a7f934f63552689cd86302231abdb7f7ea0e1fa2
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Thu Apr  7 18:43:45 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 19:18:48 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a7f934f6

kde-apps/kde-l10n: Fix file collision w/ kde-plasma/khelpcenter

Package-Manager: portage-2.2.27

 kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
index 01cc600..afdddc9 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.03.90.ebuild
@@ -113,4 +113,8 @@ src_test() {
 
 src_install() {
 	[[ -n ${A} ]] && kde5_src_install
+
+	# FIXME: Temporary removal of file conflict with kde-plasma/khelpcenter
+	# Files should be removed in khelpcenter after pkgmove to kde-apps/
+	rm -rf "${ED}"usr/share/locale/*/LC_MESSAGES/khelpcenter.mo || die
 }


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-03-30 16:05 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2016-03-30 16:05 UTC (permalink / raw
  To: gentoo-commits

commit:     9fdd2977b6c103c132142aa03c671abd96e8d785
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 16:03:06 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 16:03:06 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=9fdd2977

Revert "kde-apps/kde-l10n: add for 16.03.80"

This reverts commit 761861eafdcf9e75384f9967d444f61d45665e18.

 kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild | 112 -----------------------------
 kde-apps/kde-l10n/metadata.xml             |   8 ---
 2 files changed, 120 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild
deleted file mode 100644
index d85e48b..0000000
--- a/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_HANDBOOK="optional"
-inherit kde5
-
-DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org"
-
-DEPEND="
-	$(add_frameworks_dep ki18n)
-	$(add_qt_dep linguist-tools)
-	sys-devel/gettext
-"
-RDEPEND="
-	!<kde-apps/kde4-l10n-${PV}
-	!kde-apps/kde4-l10n[-minimal]
-	!<kde-apps/kdepim-l10n-${PV}
-	!<kde-apps/ktp-l10n-${PV}
-"
-
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# /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 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"
-
-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}/${PN}-${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() {
-	default
-
-	local LNG DIR
-	# add all linguas to cmake
-	if [[ -n ${A} ]]; then
-		for LNG in ${LINGUAS}; do
-			DIR="${PN}-${LNG}-${PV}"
-			if [[ -d "${DIR}" ]] ; then
-				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
-
-				# Drop KDE4-based part
-				sed -e '/add_subdirectory(4)/ s/^/#/'\
-					-i "${S}"/${DIR}/CMakeLists.txt || die
-
-				# Remove kdepim translations (part of kde-apps/kdepim-l10n)
-				for subdir in kdepim kdepimlibs kdepim-runtime pim; do
-					find "${S}/${DIR}" -name CMakeLists.txt -type f \
-						-exec sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#/" {} +
-				done
-
-				# Remove ktp translations (part of kde-apps/ktp-l10n)
-				# Drop that hack (and kde-apps/ktp-l10n) after ktp:4 removal
-				find "${S}"/${DIR}/5/${LNG}/messages/kdenetwork -type f \
-					\( -name kaccounts*po -o -name kcm_ktp*po -o -name kcmtelepathy*po \
-					-o -name kded_ktp*po -o -name ktp*po -o -name plasma*ktp*po \) \
-					-delete
-
-				# Handbook optional
-				sed -e '/KF5DocTools/ s/ REQUIRED//'\
-					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				if ! use handbook ; then
-					sed -e '/add_subdirectory(docs)/ s/^/#/'\
-						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				fi
-			fi
-		done
-	fi
-}
-
-src_configure() {
-	[[ -n ${A} ]] && kde5_src_configure
-}
-
-src_compile() {
-	[[ -n ${A} ]] && kde5_src_compile
-}
-
-src_test() {
-	[[ -n ${A} ]] && kde5_src_test
-}
-
-src_install() {
-	[[ -n ${A} ]] && kde5_src_install
-}

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
deleted file mode 100644
index 2fdbf33..0000000
--- a/kde-apps/kde-l10n/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>kde@gentoo.org</email>
-		<name>Gentoo KDE Project</name>
-	</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-03-29 19:23 Alexey Shvetsov
  0 siblings, 0 replies; 33+ messages in thread
From: Alexey Shvetsov @ 2016-03-29 19:23 UTC (permalink / raw
  To: gentoo-commits

commit:     761861eafdcf9e75384f9967d444f61d45665e18
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 29 19:23:22 2016 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Tue Mar 29 19:23:22 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=761861ea

kde-apps/kde-l10n: add for 16.03.80

Package-Manager: portage-2.2.28

 kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild | 112 +++++++++++++++++++++++++++++
 kde-apps/kde-l10n/metadata.xml             |   8 +++
 2 files changed, 120 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild b/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild
new file mode 100644
index 0000000..d85e48b
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-16.03.80.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+inherit kde5
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+DEPEND="
+	$(add_frameworks_dep ki18n)
+	$(add_qt_dep linguist-tools)
+	sys-devel/gettext
+"
+RDEPEND="
+	!<kde-apps/kde4-l10n-${PV}
+	!kde-apps/kde4-l10n[-minimal]
+	!<kde-apps/kdepim-l10n-${PV}
+	!<kde-apps/ktp-l10n-${PV}
+"
+
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# /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 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"
+
+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}/${PN}-${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() {
+	default
+
+	local LNG DIR
+	# add all linguas to cmake
+	if [[ -n ${A} ]]; then
+		for LNG in ${LINGUAS}; do
+			DIR="${PN}-${LNG}-${PV}"
+			if [[ -d "${DIR}" ]] ; then
+				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+
+				# Drop KDE4-based part
+				sed -e '/add_subdirectory(4)/ s/^/#/'\
+					-i "${S}"/${DIR}/CMakeLists.txt || die
+
+				# Remove kdepim translations (part of kde-apps/kdepim-l10n)
+				for subdir in kdepim kdepimlibs kdepim-runtime pim; do
+					find "${S}/${DIR}" -name CMakeLists.txt -type f \
+						-exec sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#/" {} +
+				done
+
+				# Remove ktp translations (part of kde-apps/ktp-l10n)
+				# Drop that hack (and kde-apps/ktp-l10n) after ktp:4 removal
+				find "${S}"/${DIR}/5/${LNG}/messages/kdenetwork -type f \
+					\( -name kaccounts*po -o -name kcm_ktp*po -o -name kcmtelepathy*po \
+					-o -name kded_ktp*po -o -name ktp*po -o -name plasma*ktp*po \) \
+					-delete
+
+				# Handbook optional
+				sed -e '/KF5DocTools/ s/ REQUIRED//'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				if ! use handbook ; then
+					sed -e '/add_subdirectory(docs)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				fi
+			fi
+		done
+	fi
+}
+
+src_configure() {
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde5_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
new file mode 100644
index 0000000..2fdbf33
--- /dev/null
+++ b/kde-apps/kde-l10n/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2016-03-20 20:43 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2016-03-20 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     ad95d05f038387bc7397481f276abb71bb35256b
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 20:15:00 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 20:15:00 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ad95d05f

kde-apps/kde-l10n: Remove empty

 kde-apps/kde-l10n/metadata.xml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
deleted file mode 100644
index 2fdbf33..0000000
--- a/kde-apps/kde-l10n/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>kde@gentoo.org</email>
-		<name>Gentoo KDE Project</name>
-	</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-12-06 15:22 Alexey Shvetsov
  0 siblings, 0 replies; 33+ messages in thread
From: Alexey Shvetsov @ 2015-12-06 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     e044c88c186aeefb9481562e75b557e9953e070d
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  6 15:20:23 2015 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sun Dec  6 15:20:23 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e044c88c

kde-apps/kde-l10n: Add version for 15.11.90

Package-Manager: portage-2.2.26

 kde-apps/kde-l10n/kde-l10n-15.11.90.ebuild | 119 +++++++++++++++++++++++++++++
 1 file changed, 119 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.11.90.ebuild b/kde-apps/kde-l10n/kde-l10n-15.11.90.ebuild
new file mode 100644
index 0000000..c866661
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-15.11.90.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+inherit kde5
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+DEPEND="
+	$(add_frameworks_dep ki18n)
+	dev-qt/linguist-tools:5
+	sys-devel/gettext
+"
+RDEPEND="
+	!<kde-apps/kde4-l10n-${PV}
+	!kde-apps/kde4-l10n[-minimal]
+	!<kde-apps/kdepim-l10n-${PV}
+	!<kde-apps/ktp-l10n-${PV}
+"
+
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# /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 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"
+
+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}/${PN}-${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="${PN}-${LNG}-${PV}"
+			if [[ -d "${DIR}" ]] ; then
+				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+
+				# Drop KDE4-based part
+				sed -e '/add_subdirectory(4)/ s/^/#/'\
+					-i "${S}"/${DIR}/CMakeLists.txt || die
+
+				# Remove kdepim translations (part of kde-apps/kdepim-l10n)
+				for subdir in kdepim kdepimlibs kdepim-runtime pim; do
+					find "${S}/${DIR}" -name CMakeLists.txt -type f \
+						-exec sed -i -e "/add_subdirectory( *${subdir} *)/ s/^/#/" {} +
+				done
+
+				# Remove ktp translations (part of kde-apps/ktp-l10n)
+				# Drop that hack (and kde-apps/ktp-l10n) after ktp:4 removal
+				find "${S}"/${DIR}/5/${LNG}/messages/kdenetwork -type f \
+					\( -name kaccounts*po -o -name kcm_ktp*po -o -name kcmtelepathy*po \
+					-o -name kded_ktp*po -o -name ktp*po -o -name plasma*ktp*po \) \
+					-delete
+
+				# Handbook optional
+				sed -e '/KF5DocTools/ s/ REQUIRED//'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				if ! use handbook ; then
+					sed -e '/add_subdirectory(docs)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				fi
+
+				# Fix broken LINGUAS=sr (KDE4 leftover)
+				if [[ ${LNG} = "sr" ]] ; then
+					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
+				fi
+			fi
+		done
+	fi
+}
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_find_package handbook KF5DocTools)
+	)
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde5_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-09-19 14:05 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-09-19 14:05 UTC (permalink / raw
  To: gentoo-commits

commit:     b8aa3008f8ca119f322bc2077cdd1a8bd40a8433
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Sep 19 09:21:55 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 14:05:26 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b8aa3008

kde-apps/kde-l10n: Add missing DEPEND, fixes bug 560814

https://bugs.gentoo.org/show_bug.cgi?id=560814

Package-Manager: portage-2.2.20.1

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

diff --git a/kde-apps/kde-l10n/kde-l10n-15.08.1.ebuild b/kde-apps/kde-l10n/kde-l10n-15.08.1.ebuild
index 4c2dbb9..569b1c3 100644
--- a/kde-apps/kde-l10n/kde-l10n-15.08.1.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-15.08.1.ebuild
@@ -11,6 +11,7 @@ DESCRIPTION="KDE internationalization package"
 HOMEPAGE="http://l10n.kde.org"
 
 DEPEND="
+	$(add_frameworks_dep ki18n)
 	sys-devel/gettext
 "
 RDEPEND="


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-08-25 22:20 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2015-08-25 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     be5d7b247945c0a6acc70f337b59f8b938a85b6f
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 25 22:19:48 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Aug 25 22:19:48 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=be5d7b24

kde-apps/kde-l10n: Remove package

Moved to gentoo main repo.

 kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild |  98 -----------------------------
 kde-apps/kde-l10n/kde-l10n-15.08.0.ebuild | 101 ------------------------------
 kde-apps/kde-l10n/metadata.xml            |   5 --
 3 files changed, 204 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild
deleted file mode 100644
index 1961511..0000000
--- a/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_HANDBOOK="true"
-inherit kde5
-
-DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org"
-
-DEPEND="
-	sys-devel/gettext
-"
-
-KEYWORDS=" ~amd64 ~x86"
-IUSE=""
-
-# /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 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"
-
-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}/${PN}-${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="${PN}-${LNG}-${PV}"
-			if [[ -d "${DIR}" ]] ; then
-				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
-
-				# Drop KDE4-based part
-				sed -e '/add_subdirectory(4)/ s/^/#/'\
-					-i "${S}"/${DIR}/CMakeLists.txt || die
-
-				# Handbook optional
-				sed -e '/KF5DocTools/ s/ REQUIRED//'\
-					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				if ! use handbook ; then
-					sed -e '/add_subdirectory(docs)/ s/^/#/'\
-						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				fi
-
-				# Fix broken LINGUAS=sr (KDE4 leftover)
-				if [[ ${LNG} = "sr" ]] ; then
-					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
-						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
-				fi
-			fi
-		done
-	fi
-}
-
-src_configure() {
-	mycmakeargs=(
-		$(cmake-utils_use_find_package handbook KF5DocTools)
-	)
-	[[ -n ${A} ]] && kde5_src_configure
-}
-
-src_compile() {
-	[[ -n ${A} ]] && kde5_src_compile
-}
-
-src_test() {
-	[[ -n ${A} ]] && kde5_src_test
-}
-
-src_install() {
-	[[ -n ${A} ]] && kde5_src_install
-}

diff --git a/kde-apps/kde-l10n/kde-l10n-15.08.0.ebuild b/kde-apps/kde-l10n/kde-l10n-15.08.0.ebuild
deleted file mode 100644
index 4e52751..0000000
--- a/kde-apps/kde-l10n/kde-l10n-15.08.0.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_HANDBOOK="true"
-inherit kde5
-
-DESCRIPTION="KDE internationalization package"
-HOMEPAGE="http://l10n.kde.org"
-
-DEPEND="
-	sys-devel/gettext
-"
-RDEPEND="
-	!<kde-apps/kde4-l10n-${PV}
-"
-
-KEYWORDS=" ~amd64 ~x86"
-IUSE=""
-
-# /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 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"
-
-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}/${PN}-${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="${PN}-${LNG}-${PV}"
-			if [[ -d "${DIR}" ]] ; then
-				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
-
-				# Drop KDE4-based part
-				sed -e '/add_subdirectory(4)/ s/^/#/'\
-					-i "${S}"/${DIR}/CMakeLists.txt || die
-
-				# Handbook optional
-				sed -e '/KF5DocTools/ s/ REQUIRED//'\
-					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				if ! use handbook ; then
-					sed -e '/add_subdirectory(docs)/ s/^/#/'\
-						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				fi
-
-				# Fix broken LINGUAS=sr (KDE4 leftover)
-				if [[ ${LNG} = "sr" ]] ; then
-					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
-						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
-				fi
-			fi
-		done
-	fi
-}
-
-src_configure() {
-	mycmakeargs=(
-		$(cmake-utils_use_find_package handbook KF5DocTools)
-	)
-	[[ -n ${A} ]] && kde5_src_configure
-}
-
-src_compile() {
-	[[ -n ${A} ]] && kde5_src_compile
-}
-
-src_test() {
-	[[ -n ${A} ]] && kde5_src_test
-}
-
-src_install() {
-	[[ -n ${A} ]] && kde5_src_install
-}

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
deleted file mode 100644
index a23f444..0000000
--- a/kde-apps/kde-l10n/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<herd>kde</herd>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-08-08 12:28 Johannes Huber
  0 siblings, 0 replies; 33+ messages in thread
From: Johannes Huber @ 2015-08-08 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     99b86e3faec5ab32f725a1d870fbbf29d0d2823d
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Fri Aug  7 21:01:47 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sat Aug  8 12:30:22 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=99b86e3f

[kde-apps/kde-l10n] Always block older kde4-l10n

Package-Manager: portage-2.2.20

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

diff --git a/kde-apps/kde-l10n/kde-l10n-15.07.90.ebuild b/kde-apps/kde-l10n/kde-l10n-15.07.90.ebuild
index a0d8818..9cb020a 100644
--- a/kde-apps/kde-l10n/kde-l10n-15.07.90.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-15.07.90.ebuild
@@ -14,7 +14,7 @@ DEPEND="
 	sys-devel/gettext
 "
 RDEPEND="
-	!<kde-apps/kde4-l10n-15.07.80
+	!<kde-apps/kde4-l10n-${PV}
 "
 
 KEYWORDS=" ~amd64 ~x86"


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-08-01  2:13 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-08-01  2:13 UTC (permalink / raw
  To: gentoo-commits

commit:     5f2c5199d69955a2cd54d18f91d48c85d55f9b64
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Aug  1 00:43:23 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Aug  1 00:43:23 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=5f2c5199

[kde-apps/kde-l10n] Add block against old kde-apps/kde4-l10n

Package-Manager: portage-2.2.20

 kde-apps/kde-l10n/kde-l10n-15.07.80.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.07.80.ebuild b/kde-apps/kde-l10n/kde-l10n-15.07.80.ebuild
index 890095b..a0d8818 100644
--- a/kde-apps/kde-l10n/kde-l10n-15.07.80.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-15.07.80.ebuild
@@ -13,6 +13,9 @@ HOMEPAGE="http://l10n.kde.org"
 DEPEND="
 	sys-devel/gettext
 "
+RDEPEND="
+	!<kde-apps/kde4-l10n-15.07.80
+"
 
 KEYWORDS=" ~amd64 ~x86"
 IUSE=""


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-06-27 13:53 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-06-27 13:53 UTC (permalink / raw
  To: gentoo-commits

commit:     a096036fc7c2b5f23b92d87c3e89ff389ec64753
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 27 13:53:29 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jun 27 13:53:29 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a096036f

[kde-apps/kde-l10n] Version bump.

Package-Manager: portage-2.2.20

 kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild | 98 +++++++++++++++++++++++++++++++
 1 file changed, 98 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild
new file mode 100644
index 0000000..890095b
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-15.04.3.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+inherit kde5
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+DEPEND="
+	sys-devel/gettext
+"
+
+KEYWORDS=" ~amd64 ~x86"
+IUSE=""
+
+# /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 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"
+
+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}/${PN}-${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="${PN}-${LNG}-${PV}"
+			if [[ -d "${DIR}" ]] ; then
+				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+
+				# Drop KDE4-based part
+				sed -e '/add_subdirectory(4)/ s/^/#/'\
+					-i "${S}"/${DIR}/CMakeLists.txt || die
+
+				# Handbook optional
+				sed -e '/KF5DocTools/ s/ REQUIRED//'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				if ! use handbook ; then
+					sed -e '/add_subdirectory(docs)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				fi
+
+				# Fix broken LINGUAS=sr (KDE4 leftover)
+				if [[ ${LNG} = "sr" ]] ; then
+					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
+				fi
+			fi
+		done
+	fi
+}
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_find_package handbook KF5DocTools)
+	)
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde5_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-05-31 19:09 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-05-31 19:09 UTC (permalink / raw
  To: gentoo-commits

commit:     73b3bcd55de14984543fa62b85dd4aa8eee1bf35
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun May 31 19:07:28 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun May 31 19:07:28 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=73b3bcd5

[kde-apps/kde-l10n] Version bump

Package-Manager: portage-2.2.20

 kde-apps/kde-l10n/kde-l10n-15.04.2.ebuild | 98 +++++++++++++++++++++++++++++++
 1 file changed, 98 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.2.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.2.ebuild
new file mode 100644
index 0000000..890095b
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-15.04.2.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+inherit kde5
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+DEPEND="
+	sys-devel/gettext
+"
+
+KEYWORDS=" ~amd64 ~x86"
+IUSE=""
+
+# /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 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"
+
+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}/${PN}-${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="${PN}-${LNG}-${PV}"
+			if [[ -d "${DIR}" ]] ; then
+				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+
+				# Drop KDE4-based part
+				sed -e '/add_subdirectory(4)/ s/^/#/'\
+					-i "${S}"/${DIR}/CMakeLists.txt || die
+
+				# Handbook optional
+				sed -e '/KF5DocTools/ s/ REQUIRED//'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				if ! use handbook ; then
+					sed -e '/add_subdirectory(docs)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				fi
+
+				# Fix broken LINGUAS=sr (KDE4 leftover)
+				if [[ ${LNG} = "sr" ]] ; then
+					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
+				fi
+			fi
+		done
+	fi
+}
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_find_package handbook KF5DocTools)
+	)
+	[[ -n ${A} ]] && kde5_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde5_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde5_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde5_src_install
+}


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-05-27 12:07 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2015-05-27 12:07 UTC (permalink / raw
  To: gentoo-commits

commit:     b3884925015a347337f384147202650bd841e9ef
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Mon May 25 13:06:33 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed May 27 12:07:04 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b3884925

[kde-apps/kde-l10n] Fix LINGUAS=sr

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
index 98eb79e..890095b 100644
--- a/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
@@ -55,14 +55,24 @@ src_prepare() {
 			DIR="${PN}-${LNG}-${PV}"
 			if [[ -d "${DIR}" ]] ; then
 				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+
 				# Drop KDE4-based part
 				sed -e '/add_subdirectory(4)/ s/^/#/'\
 					-i "${S}"/${DIR}/CMakeLists.txt || die
+
 				# Handbook optional
 				sed -e '/KF5DocTools/ s/ REQUIRED//'\
 					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
-				use handbook || sed -e '/add_subdirectory(docs)/ s/^/#/'\
-					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || dies
+				if ! use handbook ; then
+					sed -e '/add_subdirectory(docs)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				fi
+
+				# Fix broken LINGUAS=sr (KDE4 leftover)
+				if [[ ${LNG} = "sr" ]] ; then
+					sed -e '/add_subdirectory(lokalize)/ s/^/#/'\
+						-i "${S}"/${DIR}/5/${LNG}/data/kdesdk/CMakeLists.txt || die
+				fi
 			fi
 		done
 	fi


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-05-23 17:16 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2015-05-23 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     85edc485df5344741a8eef57674fb1d2e8079442
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat May  9 15:34:11 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat May 23 17:15:51 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=85edc485

[kde-apps/kde-l10n] Build only KF5-based part

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild | 126 +++++-------------------------
 1 file changed, 19 insertions(+), 107 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
index 1bbe307..98eb79e 100644
--- a/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-15.04.1.ebuild
@@ -4,8 +4,8 @@
 
 EAPI=5
 
-KDE_HANDBOOK="optional"
-inherit kde4-base
+KDE_HANDBOOK="true"
+inherit kde5
 
 DESCRIPTION="KDE internationalization package"
 HOMEPAGE="http://l10n.kde.org"
@@ -15,7 +15,7 @@ DEPEND="
 "
 
 KEYWORDS=" ~amd64 ~x86"
-IUSE="minimal"
+IUSE=""
 
 # /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 eo es et eu fa fi fr ga gl
@@ -33,7 +33,6 @@ done
 S="${WORKDIR}"
 
 src_unpack() {
-	local LNG DIR
 	if [[ -z ${A} ]]; then
 		elog
 		elog "You either have the LINGUAS variable unset, or it only"
@@ -46,111 +45,24 @@ src_unpack() {
 	fi
 
 	[[ -n ${A} ]] && unpack ${A}
-	cd "${S}"
+}
 
+src_prepare() {
+	local LNG DIR
 	# add all linguas to cmake
 	if [[ -n ${A} ]]; then
 		for LNG in ${LINGUAS}; do
 			DIR="${PN}-${LNG}-${PV}"
 			if [[ -d "${DIR}" ]] ; then
 				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
-				# Drop translations that get installed with plasma 5 and kde apps 5 packages
-				if use minimal; then
-
-					# KDE Workspace 4
-					rm -f "${S}"/${DIR}/4/${LNG}/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}"/${DIR}/4/${LNG}/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 Addons 4
-					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdeplasma-addons/{konqprofiles,\
-konsoleprofiles,lancelot,liblancelot-datamodels,libplasma_groupingcontainment,\
-libplasmaweather,plasma_applet_binaryclock,plasma_applet_bookmarks,\
-plasma_applet_bubblemon,plasma_applet_CharSelectApplet,plasma_applet_comic,\
-plasma_applet_fifteenPuzzle,plasma_applet_fileWatcher,plasma_applet_frame,\
-plasma_applet_groupingpanel,plasma_applet_incomingmsg,\
-plasma_applet_knowledgebase,plasma_applet_kolourpicker,plasma_applet_leavenote,\
-plasma_applet_life,plasma_applet_luna,plasma_applet_magnifique,\
-plasma_applet_microblog,plasma_applet_news,plasma_applet_plasmaboard,\
-plasma_applet_previewer,plasma_applet_qalculate,plasma_applet_qstardict,\
-plasma_applet_rssnow,plasma_applet_showdashboard,plasma_applet_showdesktop,\
-plasma_applet_spellcheck,plasma_applet_unitconverter,plasma_applet_weather,\
-plasma_applet_weatherstation,plasma_applet_webslice,\
-plasma_packagestructure_comic,plasma_runner_audioplayercontrol,\
-plasma_runner_browserhistory,plasma_runner_CharacterRunner,\
-plasma_runner_contacts,plasma_runner_converterrunner,plasma_runner_datetime,\
-plasma_runner_events,plasma_runner_katesessions,\
-plasma_runner_konquerorsessions,plasma_runner_konsolesessions,\
-plasma_runner_kopete,plasma_runner_krunner_dictionary,plasma_runner_mediawiki,\
-plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.po
-
-					# KDELIBS 4
-					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
-baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,kfilemetadata,\
-kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
-
-					# KDE Applications 4
-					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
-
-					# Plasma 5.3 
-					# kdesu, ksysguard, kio-extras, khelpcenter, systemsettings, kinfocenter, kmenuedit, plasma-desktop
-					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/'\
-						-e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
-						-e '/knetattach/ s/^/#/'\
-						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
-
-					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/'\
-						-e '/kinfocenter/ s/^/#/' -e '/kmenuedit/ s/^/#/'\
-						-e '/kfontview/ s/^/#/' -e '/plasma-desktop/ s/^/#/'\
-						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
-
-					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/' -e '/bookmarks/ s/^/#/'\
-						-e '/cookies/ s/^/#/' -e '/ebrowsing/ s/^/#/' -e '/emoticons/ s/^/#/'\
-						-e '/icons/ s/^/#/' -e '/khtml/ s/^/#/' -e '/smb/ s/^/#/'\
-						-e '/useragent/ s/^/#/'\
-						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/kcontrol/CMakeLists.txt
-
-					sed -i -e '/joystick/ s/^/#/' -e '/kcmaccess/ s/^/#/'\
-						-e '/kcmstyle/ s/^/#/' -e '/solid-actions/ s/^/#/'\
-						-e '/splashscreen/ s/^/#/' -e '/clock/ s/^/#/' -e '/colors/ s/^/#/'\
-						-e '/desktopthemedetails/ s/^/#/'\
-						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/kcontrol/CMakeLists.txt
-
-					sed -i -e '/docbook/ s/^/#/'\
-						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/klipper/CMakeLists.txt
-
-				fi
+				# Drop KDE4-based part
+				sed -e '/add_subdirectory(4)/ s/^/#/'\
+					-i "${S}"/${DIR}/CMakeLists.txt || die
+				# Handbook optional
+				sed -e '/KF5DocTools/ s/ REQUIRED//'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || die
+				use handbook || sed -e '/add_subdirectory(docs)/ s/^/#/'\
+					-i "${S}"/${DIR}/5/${LNG}/CMakeLists.txt || dies
 			fi
 		done
 	fi
@@ -158,19 +70,19 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 
 src_configure() {
 	mycmakeargs=(
-		$(cmake-utils_use_build handbook docs)
+		$(cmake-utils_use_find_package handbook KF5DocTools)
 	)
-	[[ -n ${A} ]] && kde4-base_src_configure
+	[[ -n ${A} ]] && kde5_src_configure
 }
 
 src_compile() {
-	[[ -n ${A} ]] && kde4-base_src_compile
+	[[ -n ${A} ]] && kde5_src_compile
 }
 
 src_test() {
-	[[ -n ${A} ]] && kde4-base_src_test
+	[[ -n ${A} ]] && kde5_src_test
 }
 
 src_install() {
-	[[ -n ${A} ]] && kde4-base_src_install
+	[[ -n ${A} ]] && kde5_src_install
 }


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-26  2:06 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-26  2:06 UTC (permalink / raw
  To: gentoo-commits

commit:     46fc5f1b83afe0cde73dbc2ad3ebda266a8fa88b
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Mon Apr 20 20:18:22 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 20 20:18:22 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=46fc5f1b

[kde-apps/kde-l10n] 15.04.0 version bump

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-15.04.0.ebuild | 176 ++++++++++++++++++++++++++++++
 1 file changed, 176 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-15.04.0.ebuild b/kde-apps/kde-l10n/kde-l10n-15.04.0.ebuild
new file mode 100644
index 0000000..1bbe307
--- /dev/null
+++ b/kde-apps/kde-l10n/kde-l10n-15.04.0.ebuild
@@ -0,0 +1,176 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="KDE internationalization package"
+HOMEPAGE="http://l10n.kde.org"
+
+DEPEND="
+	sys-devel/gettext
+"
+
+KEYWORDS=" ~amd64 ~x86"
+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 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"
+
+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}/${PN}-${MY_LANG}-${PV}.tar.xz )"
+done
+
+S="${WORKDIR}"
+
+src_unpack() {
+	local LNG DIR
+	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}
+	cd "${S}"
+
+	# add all linguas to cmake
+	if [[ -n ${A} ]]; then
+		for LNG in ${LINGUAS}; do
+			DIR="${PN}-${LNG}-${PV}"
+			if [[ -d "${DIR}" ]] ; then
+				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+				# Drop translations that get installed with plasma 5 and kde apps 5 packages
+				if use minimal; then
+
+					# KDE Workspace 4
+					rm -f "${S}"/${DIR}/4/${LNG}/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}"/${DIR}/4/${LNG}/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 Addons 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdeplasma-addons/{konqprofiles,\
+konsoleprofiles,lancelot,liblancelot-datamodels,libplasma_groupingcontainment,\
+libplasmaweather,plasma_applet_binaryclock,plasma_applet_bookmarks,\
+plasma_applet_bubblemon,plasma_applet_CharSelectApplet,plasma_applet_comic,\
+plasma_applet_fifteenPuzzle,plasma_applet_fileWatcher,plasma_applet_frame,\
+plasma_applet_groupingpanel,plasma_applet_incomingmsg,\
+plasma_applet_knowledgebase,plasma_applet_kolourpicker,plasma_applet_leavenote,\
+plasma_applet_life,plasma_applet_luna,plasma_applet_magnifique,\
+plasma_applet_microblog,plasma_applet_news,plasma_applet_plasmaboard,\
+plasma_applet_previewer,plasma_applet_qalculate,plasma_applet_qstardict,\
+plasma_applet_rssnow,plasma_applet_showdashboard,plasma_applet_showdesktop,\
+plasma_applet_spellcheck,plasma_applet_unitconverter,plasma_applet_weather,\
+plasma_applet_weatherstation,plasma_applet_webslice,\
+plasma_packagestructure_comic,plasma_runner_audioplayercontrol,\
+plasma_runner_browserhistory,plasma_runner_CharacterRunner,\
+plasma_runner_contacts,plasma_runner_converterrunner,plasma_runner_datetime,\
+plasma_runner_events,plasma_runner_katesessions,\
+plasma_runner_konquerorsessions,plasma_runner_konsolesessions,\
+plasma_runner_kopete,plasma_runner_krunner_dictionary,plasma_runner_mediawiki,\
+plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.po
+
+					# KDELIBS 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
+baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,kfilemetadata,\
+kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
+
+					# KDE Applications 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
+
+					# Plasma 5.3 
+					# kdesu, ksysguard, kio-extras, khelpcenter, systemsettings, kinfocenter, kmenuedit, plasma-desktop
+					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/'\
+						-e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
+						-e '/knetattach/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
+
+					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/'\
+						-e '/kinfocenter/ s/^/#/' -e '/kmenuedit/ s/^/#/'\
+						-e '/kfontview/ s/^/#/' -e '/plasma-desktop/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
+
+					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/' -e '/bookmarks/ s/^/#/'\
+						-e '/cookies/ s/^/#/' -e '/ebrowsing/ s/^/#/' -e '/emoticons/ s/^/#/'\
+						-e '/icons/ s/^/#/' -e '/khtml/ s/^/#/' -e '/smb/ s/^/#/'\
+						-e '/useragent/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/kcontrol/CMakeLists.txt
+
+					sed -i -e '/joystick/ s/^/#/' -e '/kcmaccess/ s/^/#/'\
+						-e '/kcmstyle/ s/^/#/' -e '/solid-actions/ s/^/#/'\
+						-e '/splashscreen/ s/^/#/' -e '/clock/ s/^/#/' -e '/colors/ s/^/#/'\
+						-e '/desktopthemedetails/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/kcontrol/CMakeLists.txt
+
+					sed -i -e '/docbook/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/klipper/CMakeLists.txt
+
+				fi
+			fi
+		done
+	fi
+}
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_build handbook docs)
+	)
+	[[ -n ${A} ]] && kde4-base_src_configure
+}
+
+src_compile() {
+	[[ -n ${A} ]] && kde4-base_src_compile
+}
+
+src_test() {
+	[[ -n ${A} ]] && kde4-base_src_test
+}
+
+src_install() {
+	[[ -n ${A} ]] && kde4-base_src_install
+}


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-26  2:06 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-26  2:06 UTC (permalink / raw
  To: gentoo-commits

commit:     10e76ae53f1d52c6de054f37cc33390e9ca0100f
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Apr 19 23:21:59 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 23:21:59 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=10e76ae5

[kde-apps/kde-l10n] Drop klipper handbook

File collision with plasma-workspace-5.3

Package-Manager: portage-2.2.14

 kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
index ba76461..26eaed8 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
@@ -147,6 +147,9 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 						-e '/desktopthemedetails/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/kcontrol/CMakeLists.txt
 
+					sed -i -e '/docbook/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/klipper/CMakeLists.txt
+
 				fi
 			fi
 		done


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-13 15:22 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-13 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     be79f58bb4b9e235442233f0d70288369224df31
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 15:22:04 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 15:22:04 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=be79f58b

[kde-apps/kde-l10n] Drop files due to collisions with plasma-5.3. Revision bump so everyone gets the change.

Package-Manager: portage-2.2.18

 .../kde-l10n/{kde-l10n-14.12.3.ebuild => kde-l10n-14.12.3-r1.ebuild}   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
similarity index 98%
rename from kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
rename to kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
index cef5758..ba76461 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3-r1.ebuild
@@ -143,7 +143,8 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 
 					sed -i -e '/joystick/ s/^/#/' -e '/kcmaccess/ s/^/#/'\
 						-e '/kcmstyle/ s/^/#/' -e '/solid-actions/ s/^/#/'\
-						-e '/splashscreen/ s/^/#/'\
+						-e '/splashscreen/ s/^/#/' -e '/clock/ s/^/#/' -e '/colors/ s/^/#/'\
+						-e '/desktopthemedetails/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/kcontrol/CMakeLists.txt
 
 				fi


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-13 15:08 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-13 15:08 UTC (permalink / raw
  To: gentoo-commits

commit:     fbc140451e2e8a9e2f7f21fe3703d4ae69296895
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 15:08:45 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 15:08:45 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fbc14045

[kde-apps/kde-l10n] Drop files due to collisions with plasma-5.3

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
index cd48f8e..cef5758 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
@@ -123,16 +123,29 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 					# KDE Applications 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
 
-					# Plasma 5.3 - kdesu, ksysguard, kio-extras, khelpcenter, systemsettings, kinfocenter
-					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/' -e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
+					# Plasma 5.3 
+					# kdesu, ksysguard, kio-extras, khelpcenter, systemsettings, kinfocenter, kmenuedit, plasma-desktop
+					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/'\
+						-e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
+						-e '/knetattach/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
 
-					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/' -e '/kinfocenter/ s/^/#/'\
+					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/'\
+						-e '/kinfocenter/ s/^/#/' -e '/kmenuedit/ s/^/#/'\
+						-e '/kfontview/ s/^/#/' -e '/plasma-desktop/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
 
-					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/'\
+					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/' -e '/bookmarks/ s/^/#/'\
+						-e '/cookies/ s/^/#/' -e '/ebrowsing/ s/^/#/' -e '/emoticons/ s/^/#/'\
+						-e '/icons/ s/^/#/' -e '/khtml/ s/^/#/' -e '/smb/ s/^/#/'\
+						-e '/useragent/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/kcontrol/CMakeLists.txt
 
+					sed -i -e '/joystick/ s/^/#/' -e '/kcmaccess/ s/^/#/'\
+						-e '/kcmstyle/ s/^/#/' -e '/solid-actions/ s/^/#/'\
+						-e '/splashscreen/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/kcontrol/CMakeLists.txt
+
 				fi
 			fi
 		done


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-13 14:43 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-13 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     be875eb60665c233c9b168065e22c5f54f48f520
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 14:42:53 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 14:42:53 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=be875eb6

[kde-apps/kde-l10n] Drop files due to collisions with plasma-5.3

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
index 210bc04..cd48f8e 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
@@ -123,11 +123,11 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 					# KDE Applications 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
 
-					# Plasma 5.3 - kdesu, ksysguard, kio-extras, khelpcenter, systemsettings
+					# Plasma 5.3 - kdesu, ksysguard, kio-extras, khelpcenter, systemsettings, kinfocenter
 					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/' -e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
 
-					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/'\
+					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/' -e '/kinfocenter/ s/^/#/'\
 						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
 
 					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/'\


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-13 14:18 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-13 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ecbbc3d7b659febb9da3aae0d12baa3c4c3a1750
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 14:18:25 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 14:18:25 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ecbbc3d7

[kde-apps/kde-l10n] Drop files due to collisions with plasma-5.3

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
index bab7cae..210bc04 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
@@ -123,9 +123,15 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 					# KDE Applications 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
 
-					# Plasma 5.3 - kdesu
-					sed -i -e '/kdesu/ s/^/#/' "${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
-					sed -i -e '/ksysguard/ s/^/#/' "${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
+					# Plasma 5.3 - kdesu, ksysguard, kio-extras, khelpcenter, systemsettings
+					sed -i -e '/kdesu/ s/^/#/' -e '/fundamentals/ s/^/#/' -e '/onlinehelp/ s/^/#/' -e '/khelpcenter/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
+
+					sed -i -e '/ksysguard/ s/^/#/' -e '/systemsettings/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
+
+					sed -i -e '/kcmcgi/ s/^/#/' -e '/trash/ s/^/#/'\
+						"${S}"/${DIR}/4/${LNG}/docs/kde-runtime/kcontrol/CMakeLists.txt
 
 				fi
 			fi


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-04-13 13:23 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-04-13 13:23 UTC (permalink / raw
  To: gentoo-commits

commit:     457f9132a30f13cda6f25160f1c84e284de7298c
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 13:23:21 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 13:23:21 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=457f9132

[kde-apps/kde-l10n] Drop files due to collisions with plasma-5.3

Package-Manager: portage-2.2.18

 kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
index 408ec15..bab7cae 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.3.ebuild
@@ -122,6 +122,11 @@ kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 
 					# KDE Applications 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
+
+					# Plasma 5.3 - kdesu
+					sed -i -e '/kdesu/ s/^/#/' "${S}"/${DIR}/4/${LNG}/docs/kde-runtime/CMakeLists.txt
+					sed -i -e '/ksysguard/ s/^/#/' "${S}"/${DIR}/4/${LNG}/docs/kde-workspace/CMakeLists.txt
+
 				fi
 			fi
 		done


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-01-14  0:36 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-01-14  0:36 UTC (permalink / raw
  To: gentoo-commits

commit:     1bfc1792830def2f0c6feae58513c562d76a6e79
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 14 00:36:39 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 14 00:36:39 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1bfc1792

[kde-apps/kde-l10n] Fix build.

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

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
index 6575ec2..408ec15 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
@@ -117,7 +117,7 @@ plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.p
 
 					# KDELIBS 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
-baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,kfilemetadata\
+baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,kfilemetadata,\
 kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 
 					# KDE Applications 4


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2015-01-14  0:30 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2015-01-14  0:30 UTC (permalink / raw
  To: gentoo-commits

commit:     694cfa05851abe8aa7a82793586c6159377edc15
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 14 00:30:20 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jan 14 00:30:20 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=694cfa05

[kde-apps/kde-l10n] Drop additional file collisions.

---
 .../kde-l10n/{kde-l10n-14.12.0.ebuild => kde-l10n-14.12.0-r1.ebuild}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.12.0.ebuild b/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
similarity index 99%
rename from kde-apps/kde-l10n/kde-l10n-14.12.0.ebuild
rename to kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
index 7afe92c..6575ec2 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.12.0.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.12.0-r1.ebuild
@@ -117,7 +117,7 @@ plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.p
 
 					# KDELIBS 4
 					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
-baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,\
+baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,kfilemetadata\
 kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
 
 					# KDE Applications 4


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2014-12-12 23:08 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2014-12-12 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     b57f03358574897327756e3ebdb34d1dc7ff4bad
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 12 23:08:22 2014 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Dec 12 23:08:22 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b57f0335

[kde-apps/kde-l10n] Make removal non-fatal.

Package-Manager: portage-2.2.15

---
 kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild | 31 ++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild b/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
index db2fea0..944eea8 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
@@ -56,7 +56,9 @@ src_unpack() {
 				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
 				# Drop translations that get installed with plasma 5 and kde apps 5 packages
 				if use minimal; then
-					rm "${S}"/${DIR}/4/${LNG}/messages/kde-workspace/{freespacenotifier,\
+
+					# KDE Workspace 4
+					rm -f "${S}"/${DIR}/4/${LNG}/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,\
@@ -80,16 +82,19 @@ 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\
-|| die "Removing kde-workspace translations failed."
-					rm "${S}"/${DIR}/4/${LNG}/messages/kde-runtime/{attica_kde,drkonqi,\
+powerdevilprofilesconfig,processcore,processui,systemsettings}.po
+
+					# KDE Runtime 4
+					rm -f "${S}"/${DIR}/4/${LNG}/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 || die "Removing kde-runtime translations failed."
-					rm "${S}"/${DIR}/4/${LNG}/messages/kdeplasma-addons/{konqprofiles,\
+ktraderclient,phonon_kde,soliduiserver}.po
+
+					# KDE Plasma Addons 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdeplasma-addons/{konqprofiles,\
 konsoleprofiles,lancelot,liblancelot-datamodels,libplasma_groupingcontainment,\
 libplasmaweather,plasma_applet_binaryclock,plasma_applet_bookmarks,\
 plasma_applet_bubblemon,plasma_applet_CharSelectApplet,plasma_applet_comic,\
@@ -108,13 +113,15 @@ plasma_runner_contacts,plasma_runner_converterrunner,plasma_runner_datetime,\
 plasma_runner_events,plasma_runner_katesessions,\
 plasma_runner_konquerorsessions,plasma_runner_konsolesessions,\
 plasma_runner_kopete,plasma_runner_krunner_dictionary,plasma_runner_mediawiki,\
-plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.po\
-|| die "Removing kdeplasma-addons translations failed."
-					rm "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
+plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.po
+
+					# KDELIBS 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
 baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,\
-kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po ||\
-die "Removing kdelibs translations failed."
-					rm "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po || die "Removing applications translation failed."
+kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po
+
+					# KDE Applications 4
+					rm -f "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po
 				fi
 			fi
 		done


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2014-12-12 20:58 Manuel Rüger
  0 siblings, 0 replies; 33+ messages in thread
From: Manuel Rüger @ 2014-12-12 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     771f83ce5e6a3339c9e2df2dc3e3448590f5d8fd
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 12 20:58:13 2014 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Dec 12 20:58:13 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=771f83ce

[kde-apps/kde-l10n] Add minimal useflag to remove blocking kde sc 4 translations for coinstalled plasma5, that use their own translations.

Package-Manager: portage-2.2.15

---
 kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild | 64 +++++++++++++++++++++++++++++-
 1 file changed, 63 insertions(+), 1 deletion(-)

diff --git a/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild b/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
index 6bd94cc..db2fea0 100644
--- a/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-14.11.97.ebuild
@@ -15,7 +15,7 @@ DEPEND="
 "
 
 KEYWORDS=" ~amd64 ~x86"
-IUSE=""
+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
@@ -54,6 +54,68 @@ src_unpack() {
 			DIR="${PN}-${LNG}-${PV}"
 			if [[ -d "${DIR}" ]] ; then
 				echo "add_subdirectory( ${DIR} )" >> "${S}"/CMakeLists.txt
+				# Drop translations that get installed with plasma 5 and kde apps 5 packages
+				if use minimal; then
+					rm "${S}"/${DIR}/4/${LNG}/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\
+|| die "Removing kde-workspace translations failed."
+					rm "${S}"/${DIR}/4/${LNG}/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 || die "Removing kde-runtime translations failed."
+					rm "${S}"/${DIR}/4/${LNG}/messages/kdeplasma-addons/{konqprofiles,\
+konsoleprofiles,lancelot,liblancelot-datamodels,libplasma_groupingcontainment,\
+libplasmaweather,plasma_applet_binaryclock,plasma_applet_bookmarks,\
+plasma_applet_bubblemon,plasma_applet_CharSelectApplet,plasma_applet_comic,\
+plasma_applet_fifteenPuzzle,plasma_applet_fileWatcher,plasma_applet_frame,\
+plasma_applet_groupingpanel,plasma_applet_incomingmsg,\
+plasma_applet_knowledgebase,plasma_applet_kolourpicker,plasma_applet_leavenote,\
+plasma_applet_life,plasma_applet_luna,plasma_applet_magnifique,\
+plasma_applet_microblog,plasma_applet_news,plasma_applet_plasmaboard,\
+plasma_applet_previewer,plasma_applet_qalculate,plasma_applet_qstardict,\
+plasma_applet_rssnow,plasma_applet_showdashboard,plasma_applet_showdesktop,\
+plasma_applet_spellcheck,plasma_applet_unitconverter,plasma_applet_weather,\
+plasma_applet_weatherstation,plasma_applet_webslice,\
+plasma_packagestructure_comic,plasma_runner_audioplayercontrol,\
+plasma_runner_browserhistory,plasma_runner_CharacterRunner,\
+plasma_runner_contacts,plasma_runner_converterrunner,plasma_runner_datetime,\
+plasma_runner_events,plasma_runner_katesessions,\
+plasma_runner_konquerorsessions,plasma_runner_konsolesessions,\
+plasma_runner_kopete,plasma_runner_krunner_dictionary,plasma_runner_mediawiki,\
+plasma_runner_spellcheckrunner,plasma_runner_translator,plasma_runner_youtube}.po\
+|| die "Removing kdeplasma-addons translations failed."
+					rm "${S}"/${DIR}/4/${LNG}/messages/kdelibs/{akonadi_baloo_indexer,\
+baloo_file,baloo_file_extractor,baloosearch,balooshow,kcm_baloofile,\
+kio_baloosearch,kio_tags,kio_timeline,plasma_runner_baloosearchrunner}.po ||\
+die "Removing kdelibs translations failed."
+					rm "${S}"/${DIR}/4/${LNG}/messages/applications/useraccount.po || die "Removing applications translation failed."
+				fi
 			fi
 		done
 	fi


^ permalink raw reply related	[flat|nested] 33+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/
@ 2014-11-24 12:38 Michael Palimaka
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Palimaka @ 2014-11-24 12:38 UTC (permalink / raw
  To: gentoo-commits

commit:     0131fe4dd35445e878240413165246da537b944f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 24 12:38:32 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Nov 24 12:38:32 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0131fe4d

[kde-apps/kde-l10n] Add missing metadata.

Package-Manager: portage-2.2.14

---
 kde-apps/kde-l10n/metadata.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kde-apps/kde-l10n/metadata.xml b/kde-apps/kde-l10n/metadata.xml
new file mode 100644
index 0000000..a23f444
--- /dev/null
+++ b/kde-apps/kde-l10n/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>kde</herd>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2016-10-16 18:44 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-07 17:01 [gentoo-commits] proj/kde:master commit in: kde-apps/kde-l10n/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2016-10-16 18:44 Michael Palimaka
2016-10-13  9:05 Johannes Huber
2016-07-13 18:23 Johannes Huber
2016-07-08 17:29 Michael Palimaka
2016-06-26 16:50 Michael Palimaka
2016-04-15 19:06 Johannes Huber
2016-04-08 22:12 Andreas Hüttel
2016-04-07 19:19 Michael Palimaka
2016-03-30 16:05 Johannes Huber
2016-03-29 19:23 Alexey Shvetsov
2016-03-20 20:43 Johannes Huber
2015-12-06 15:22 Alexey Shvetsov
2015-09-19 14:05 Manuel Rüger
2015-08-25 22:20 Johannes Huber
2015-08-08 12:28 Johannes Huber
2015-08-01  2:13 Manuel Rüger
2015-06-27 13:53 Manuel Rüger
2015-05-31 19:09 Manuel Rüger
2015-05-27 12:07 Michael Palimaka
2015-05-23 17:16 Michael Palimaka
2015-04-26  2:06 Manuel Rüger
2015-04-26  2:06 Manuel Rüger
2015-04-13 15:22 Manuel Rüger
2015-04-13 15:08 Manuel Rüger
2015-04-13 14:43 Manuel Rüger
2015-04-13 14:18 Manuel Rüger
2015-04-13 13:23 Manuel Rüger
2015-01-14  0:36 Manuel Rüger
2015-01-14  0:30 Manuel Rüger
2014-12-12 23:08 Manuel Rüger
2014-12-12 20:58 Manuel Rüger
2014-11-24 12:38 Michael Palimaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox