public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in kde-base/kdepim-l10n: ChangeLog kdepim-l10n-4.4.10.ebuild
@ 2011-04-05 23:32 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-04-05 23:32 UTC (permalink / raw
  To: gentoo-commits

dilfridge    11/04/05 23:32:48

  Modified:             ChangeLog kdepim-l10n-4.4.10.ebuild
  Log:
  Fix case where subdirs dont exist, bug 362245
  
  (Portage version: 2.1.9.45/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  kde-base/kdepim-l10n/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	5 Apr 2011 22:17:51 -0000	1.1
+++ ChangeLog	5 Apr 2011 23:32:48 -0000	1.2
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kdepim-l10n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.1 2011/04/05 22:17:51 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.2 2011/04/05 23:32:48 dilfridge Exp $
+
+  05 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+  kdepim-l10n-4.4.10.ebuild:
+  Fix case where subdirs dont exist, bug 362245
 
 *kdepim-l10n-4.4.10 (05 Apr 2011)
 



1.2                  kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?r1=1.1&r2=1.2

Index: kdepim-l10n-4.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdepim-l10n-4.4.10.ebuild	5 Apr 2011 22:17:51 -0000	1.1
+++ kdepim-l10n-4.4.10.ebuild	5 Apr 2011 23:32:48 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.1 2011/04/05 22:17:51 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.2 2011/04/05 23:32:48 dilfridge Exp $
 
 EAPI=3
 
@@ -63,8 +63,10 @@
 
 			# remove everything except kdepim
 			for SUBDIR in data docs messages scripts ; do
-				echo > "${S}/${DIR}/${SUBDIR}/CMakeLists.txt"
-				[[ -d "${S}/${DIR}/${SUBDIR}/kdepim" ]] && ( echo "add_subdirectory(kdepim)" >> "${S}/${DIR}/${SUBDIR}/CMakeLists.txt" )
+				if [[ -d "${S}/${DIR}/${SUBDIR}" ]] ; then
+					echo > "${S}/${DIR}/${SUBDIR}/CMakeLists.txt"
+					[[ -d "${S}/${DIR}/${SUBDIR}/kdepim" ]] && ( echo "add_subdirectory(kdepim)" >> "${S}/${DIR}/${SUBDIR}/CMakeLists.txt" )
+				fi
 			done
 		done
 	fi






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

* [gentoo-commits] gentoo-x86 commit in kde-base/kdepim-l10n: ChangeLog kdepim-l10n-4.4.10.ebuild
@ 2011-04-06  7:18 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-04-06  7:18 UTC (permalink / raw
  To: gentoo-commits

dilfridge    11/04/06 07:18:57

  Modified:             ChangeLog kdepim-l10n-4.4.10.ebuild
  Log:
  Fix case where LINGUAS is unset or contains no supported language
  
  (Portage version: 2.1.9.45/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  kde-base/kdepim-l10n/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	5 Apr 2011 23:32:48 -0000	1.2
+++ ChangeLog	6 Apr 2011 07:18:57 -0000	1.3
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kdepim-l10n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.2 2011/04/05 23:32:48 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.3 2011/04/06 07:18:57 dilfridge Exp $
+
+  06 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+  kdepim-l10n-4.4.10.ebuild:
+  Fix case where LINGUAS is unset or contains no supported language
 
   05 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
   kdepim-l10n-4.4.10.ebuild:



1.3                  kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?r1=1.2&r2=1.3

Index: kdepim-l10n-4.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kdepim-l10n-4.4.10.ebuild	5 Apr 2011 23:32:48 -0000	1.2
+++ kdepim-l10n-4.4.10.ebuild	6 Apr 2011 07:18:57 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.2 2011/04/05 23:32:48 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.3 2011/04/06 07:18:57 dilfridge Exp $
 
 EAPI=3
 
@@ -72,6 +72,10 @@
 	fi
 }
 
+src_prepare() {
+	[[ -n ${A} ]] && kde4-base_src_prepare
+}
+
 src_configure() {
 	mycmakeargs="${mycmakeargs}
 		$(cmake-utils_use_build handbook docs)"






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

* [gentoo-commits] gentoo-x86 commit in kde-base/kdepim-l10n: ChangeLog kdepim-l10n-4.4.10.ebuild
@ 2011-04-06 20:35 Andreas HAttel (dilfridge)
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-04-06 20:35 UTC (permalink / raw
  To: gentoo-commits

dilfridge    11/04/06 20:35:43

  Modified:             ChangeLog kdepim-l10n-4.4.10.ebuild
  Log:
  Add code to fix docbook variant, disable french temporarily since it uses old DTD features
  
  (Portage version: 2.1.9.45/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  kde-base/kdepim-l10n/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	6 Apr 2011 07:18:57 -0000	1.3
+++ ChangeLog	6 Apr 2011 20:35:43 -0000	1.4
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/kdepim-l10n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.3 2011/04/06 07:18:57 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.4 2011/04/06 20:35:43 dilfridge Exp $
+
+  06 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+  kdepim-l10n-4.4.10.ebuild:
+  Add code to fix docbook variant, disable french temporarily since it uses
+  old DTD features
 
   06 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
   kdepim-l10n-4.4.10.ebuild:



1.4                  kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?r1=1.3&r2=1.4

Index: kdepim-l10n-4.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdepim-l10n-4.4.10.ebuild	6 Apr 2011 07:18:57 -0000	1.3
+++ kdepim-l10n-4.4.10.ebuild	6 Apr 2011 20:35:43 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.3 2011/04/06 07:18:57 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.4 2011/04/06 20:35:43 dilfridge Exp $
 
 EAPI=3
 
@@ -20,9 +20,10 @@
 IUSE="+handbook"
 
 MY_LANGS="ar bg ca ca@valencia cs csb da de el en_GB eo es et eu
-		fi fr fy ga gl gu he hi hr hu id is it ja kk km kn ko lt lv
+		fi fy ga gl gu he hi hr hu id is it ja kk km kn ko lt lv
 		mai mk ml nb nds nl nn pa pl pt pt_BR ro ru si sk sl sr sv tg
 		tr uk wa zh_CN zh_TW"
+# french translation is broken, needs more work
 
 URI_BASE="${SRC_URI/-${PV}.tar.bz2/}"
 SRC_URI=""
@@ -74,6 +75,12 @@
 
 src_prepare() {
 	[[ -n ${A} ]] && kde4-base_src_prepare
+
+	# the translations still contain some VERY old files
+	find "${S}" -name "*.docbook" \
+		-exec sed -i -r \
+			-e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \
+				|| die 'failed to fix DocBook variant version'
 }
 
 src_configure() {






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

* [gentoo-commits] gentoo-x86 commit in kde-base/kdepim-l10n: ChangeLog kdepim-l10n-4.4.10.ebuild
@ 2011-04-11 11:38 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 4+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-04-11 11:38 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/04/11 11:38:46

  Modified:             ChangeLog kdepim-l10n-4.4.10.ebuild
  Log:
  Do not generate handbooks as whole, be happy at least translations work.
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  kde-base/kdepim-l10n/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	6 Apr 2011 20:35:43 -0000	1.4
+++ ChangeLog	11 Apr 2011 11:38:46 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for kde-base/kdepim-l10n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.4 2011/04/06 20:35:43 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/ChangeLog,v 1.5 2011/04/11 11:38:46 scarabeus Exp $
+
+  11 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org>
+  kdepim-l10n-4.4.10.ebuild:
+  Do not generate handbooks as whole, be happy at least translations work.
 
   06 Apr 2011; Andreas K. Huettel <dilfridge@gentoo.org>
   kdepim-l10n-4.4.10.ebuild:



1.5                  kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild?r1=1.4&r2=1.5

Index: kdepim-l10n-4.4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- kdepim-l10n-4.4.10.ebuild	6 Apr 2011 20:35:43 -0000	1.4
+++ kdepim-l10n-4.4.10.ebuild	11 Apr 2011 11:38:46 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.4 2011/04/06 20:35:43 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-l10n/kdepim-l10n-4.4.10.ebuild,v 1.5 2011/04/11 11:38:46 scarabeus Exp $
 
 EAPI=3
 
@@ -17,13 +17,12 @@
 add_blocker kde-l10n 0 :4.4
 
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="+handbook"
+IUSE=""
 
 MY_LANGS="ar bg ca ca@valencia cs csb da de el en_GB eo es et eu
-		fi fy ga gl gu he hi hr hu id is it ja kk km kn ko lt lv
+		fi fr fy ga gl gu he hi hr hu id is it ja kk km kn ko lt lv
 		mai mk ml nb nds nl nn pa pl pt pt_BR ro ru si sk sl sr sv tg
 		tr uk wa zh_CN zh_TW"
-# french translation is broken, needs more work
 
 URI_BASE="${SRC_URI/-${PV}.tar.bz2/}"
 SRC_URI=""
@@ -75,17 +74,11 @@
 
 src_prepare() {
 	[[ -n ${A} ]] && kde4-base_src_prepare
-
-	# the translations still contain some VERY old files
-	find "${S}" -name "*.docbook" \
-		-exec sed -i -r \
-			-e 's:-//KDE//DTD DocBook XML V4\.1(\..)?-Based Variant V1\.[01]//EN:-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN:g' {} + \
-				|| die 'failed to fix DocBook variant version'
 }
 
 src_configure() {
 	mycmakeargs="${mycmakeargs}
-		$(cmake-utils_use_build handbook docs)"
+		-DBUILD_docs=OFF"
 	[[ -n ${A} ]] && kde4-base_src_configure
 }
 






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

end of thread, other threads:[~2011-04-11 11:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-06 20:35 [gentoo-commits] gentoo-x86 commit in kde-base/kdepim-l10n: ChangeLog kdepim-l10n-4.4.10.ebuild Andreas HAttel (dilfridge)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-11 11:38 Tomas Chvatal (scarabeus)
2011-04-06  7:18 Andreas HAttel (dilfridge)
2011-04-05 23:32 Andreas HAttel (dilfridge)

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