public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-01-10  4:21 Chris Reffett (creffett)
  0 siblings, 0 replies; 6+ messages in thread
From: Chris Reffett (creffett) @ 2014-01-10  4:21 UTC (permalink / raw
  To: gentoo-commits

creffett    14/01/10 04:21:50

  Modified:             ChangeLog
  Added:                kde-l10n-4.11.5.ebuild
  Log:
  Bump KDE SC 4.11.5
  
  (Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 42618354)

Revision  Changes    Path
1.219                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -r1.218 -r1.219
--- ChangeLog	18 Dec 2013 19:57:32 -0000	1.218
+++ ChangeLog	10 Jan 2014 04:21:50 -0000	1.219
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/kde-l10n
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.218 2013/12/18 19:57:32 johu Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.219 2014/01/10 04:21:50 creffett Exp $
+
+*kde-l10n-4.11.5 (10 Jan 2014)
+
+  10 Jan 2014; Chris Reffett <creffett@gentoo.org> +kde-l10n-4.11.5.ebuild:
+  Bump KDE SC 4.11.5
 
 *kde-l10n-4.12.0 (18 Dec 2013)
 



1.1                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild?rev=1.1&content-type=text/plain

Index: kde-l10n-4.11.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.1 2014/01/10 04:21:50 creffett Exp $

EAPI=5

KDE_HANDBOOK="optional"
inherit kde4-base

DESCRIPTION="KDE internationalization package"
HOMEPAGE="http://l10n.kde.org"

DEPEND="
	sys-devel/gettext
"
RDEPEND="!<kde-base/konq-plugins-4.6"

KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
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 es et eu fa fi fr ga gl he
hi hr hu ia is it ja kk km ko lt lv mr nb nds nl nn pa pl pt pt_BR ro ru sk sl
sr sv tg tr ug uk vi 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
			fi
		done
	fi
}

src_prepare() {
	find "${S}" -name CMakeLists.txt -type f \
		-exec sed -i -e 's:^ *add_subdirectory( *kdepim-runtime *):# no kdepim-runtime:g' {} +
	find "${S}" -name CMakeLists.txt -type f \
		-exec sed -i -e 's:^ *add_subdirectory( *kdepim *):# no kdepim:g' {} +

	# quick workaround for bug 493278
	find "${S}" -name "akonadi_knut_resource*" -delete

	kde4-base_src_prepare
}

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	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-01-20  8:00 Michael Palimaka (kensington)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Palimaka (kensington) @ 2014-01-20  8:00 UTC (permalink / raw
  To: gentoo-commits

kensington    14/01/20 08:00:57

  Modified:             kde-l10n-4.11.5.ebuild ChangeLog
  Log:
  Restore keywords that were accidentally omitted.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)

Revision  Changes    Path
1.2                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

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

Index: kde-l10n-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kde-l10n-4.11.5.ebuild	10 Jan 2014 04:21:50 -0000	1.1
+++ kde-l10n-4.11.5.ebuild	20 Jan 2014 08:00:57 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.1 2014/01/10 04:21:50 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.2 2014/01/20 08:00:57 kensington Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 "
 RDEPEND="!<kde-base/konq-plugins-4.6"
 
-KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '



1.222                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- ChangeLog	18 Jan 2014 11:23:33 -0000	1.221
+++ ChangeLog	20 Jan 2014 08:00:57 -0000	1.222
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kde-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.221 2014/01/18 11:23:33 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.222 2014/01/20 08:00:57 kensington Exp $
+
+  20 Jan 2014; Michael Palimaka <kensington@gentoo.org> kde-l10n-4.11.5.ebuild:
+  Restore keywords that were accidentally omitted.
 
 *kde-l10n-4.12.1 (18 Jan 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-02-09 10:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-09 10:05 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/09 10:05:24

  Modified:             kde-l10n-4.11.5.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #493782
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

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

Index: kde-l10n-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kde-l10n-4.11.5.ebuild	20 Jan 2014 08:00:57 -0000	1.2
+++ kde-l10n-4.11.5.ebuild	9 Feb 2014 10:05:23 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.2 2014/01/20 08:00:57 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.3 2014/02/09 10:05:23 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 "
 RDEPEND="!<kde-base/konq-plugins-4.6"
 
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '



1.225                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- ChangeLog	6 Feb 2014 23:20:02 -0000	1.224
+++ ChangeLog	9 Feb 2014 10:05:23 -0000	1.225
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kde-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.224 2014/02/06 23:20:02 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.225 2014/02/09 10:05:23 ago Exp $
+
+  09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
+  Stable for amd64, wrt bug #493782
 
 *kde-l10n-4.12.2 (06 Feb 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-02-16  7:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-16  7:19 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/16 07:19:15

  Modified:             kde-l10n-4.11.5.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #493782
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

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

Index: kde-l10n-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kde-l10n-4.11.5.ebuild	9 Feb 2014 10:05:23 -0000	1.3
+++ kde-l10n-4.11.5.ebuild	16 Feb 2014 07:19:15 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.3 2014/02/09 10:05:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.4 2014/02/16 07:19:15 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 "
 RDEPEND="!<kde-base/konq-plugins-4.6"
 
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '



1.227                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.226
retrieving revision 1.227
diff -u -r1.226 -r1.227
--- ChangeLog	14 Feb 2014 12:22:50 -0000	1.226
+++ ChangeLog	16 Feb 2014 07:19:15 -0000	1.227
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kde-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.226 2014/02/14 12:22:50 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.227 2014/02/16 07:19:15 ago Exp $
+
+  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
+  Stable for x86, wrt bug #493782
 
   14 Feb 2014; Johannes Huber <johu@gentoo.org> -kde-l10n-4.12.1.ebuild:
   Remove KDE SC 4.12.1





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

* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-02-20  9:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-20  9:27 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/20 09:27:59

  Modified:             kde-l10n-4.11.5.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #493782
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

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

Index: kde-l10n-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- kde-l10n-4.11.5.ebuild	16 Feb 2014 07:19:15 -0000	1.4
+++ kde-l10n-4.11.5.ebuild	20 Feb 2014 09:27:59 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.4 2014/02/16 07:19:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.5 2014/02/20 09:27:59 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 "
 RDEPEND="!<kde-base/konq-plugins-4.6"
 
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '



1.228                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -r1.227 -r1.228
--- ChangeLog	16 Feb 2014 07:19:15 -0000	1.227
+++ ChangeLog	20 Feb 2014 09:27:59 -0000	1.228
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kde-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.227 2014/02/16 07:19:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.228 2014/02/20 09:27:59 ago Exp $
+
+  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
+  Stable for ppc, wrt bug #493782
 
   16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
   Stable for x86, wrt bug #493782





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

* [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog
@ 2014-02-23  9:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-23  9:08 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/23 09:08:12

  Modified:             kde-l10n-4.11.5.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #493782
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  kde-base/kde-l10n/kde-l10n-4.11.5.ebuild

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

Index: kde-l10n-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- kde-l10n-4.11.5.ebuild	20 Feb 2014 09:27:59 -0000	1.5
+++ kde-l10n-4.11.5.ebuild	23 Feb 2014 09:08:12 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.5 2014/02/20 09:27:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.11.5.ebuild,v 1.6 2014/02/23 09:08:12 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 "
 RDEPEND="!<kde-base/konq-plugins-4.6"
 
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 # /usr/portage/distfiles $ ls -1 kde-l10n-*-${PV}.* |sed -e 's:-${PV}.tar.xz::' -e 's:kde-l10n-::' |tr '\n' ' '



1.229                kde-base/kde-l10n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v
retrieving revision 1.228
retrieving revision 1.229
diff -u -r1.228 -r1.229
--- ChangeLog	20 Feb 2014 09:27:59 -0000	1.228
+++ ChangeLog	23 Feb 2014 09:08:12 -0000	1.229
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/kde-l10n
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.228 2014/02/20 09:27:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.229 2014/02/23 09:08:12 ago Exp $
+
+  23 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
+  Stable for ppc64, wrt bug #493782
 
   20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> kde-l10n-4.11.5.ebuild:
   Stable for ppc, wrt bug #493782





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

end of thread, other threads:[~2014-02-23  9:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-23  9:08 [gentoo-commits] gentoo-x86 commit in kde-base/kde-l10n: kde-l10n-4.11.5.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-20  9:27 Agostino Sarubbo (ago)
2014-02-16  7:19 Agostino Sarubbo (ago)
2014-02-09 10:05 Agostino Sarubbo (ago)
2014-01-20  8:00 Michael Palimaka (kensington)
2014-01-10  4:21 Chris Reffett (creffett)

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