public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-10-12 22:04 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-12 22:04 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/10/12 22:04:09

  Modified:             ChangeLog
  Added:                icu-4.8.1-r2.ebuild
  Log:
  Backport an upstream patch to fix Gentoo bug #380827 by Piotr Mitas.
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.160                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.160&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.160&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.159&r2=1.160

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog	5 Sep 2011 16:50:52 -0000	1.159
+++ ChangeLog	12 Oct 2011 22:04:09 -0000	1.160
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.159 2011/09/05 16:50:52 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.160 2011/10/12 22:04:09 phajdan.jr Exp $
+
+*icu-4.8.1-r2 (12 Oct 2011)
+
+  12 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> +icu-4.8.1-r2.ebuild,
+  +files/icu-4.8.1-fix_nan.patch:
+  Backport an upstream patch to fix Gentoo bug #380827 by Piotr Mitas.
 
 *icu-4.8.1-r1 (05 Sep 2011)
 



1.1                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.1&content-type=text/plain

Index: icu-4.8.1-r2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.1 2011/10/12 22:04:09 phajdan.jr Exp $

EAPI="3"

inherit versionator

MAJOR_VERSION="$(get_version_component_range 1)"
MINOR_VERSION="$(get_version_component_range 2)"
if [[ "${PV}" =~ ^[[:digit:]]+\.[[:digit:]]+(_rc[[:digit:]]*)?$ ]]; then
	MICRO_VERSION="0"
else
	MICRO_VERSION="$(get_version_component_range 3)"
fi

DESCRIPTION="International Components for Unicode"
HOMEPAGE="http://www.icu-project.org/"

BASE_URI="http://download.icu-project.org/files/icu4c/${PV/_/}"
SRC_ARCHIVE="icu4c-${PV//./_}-src.tgz"
DOCS_ARCHIVE="icu4c-${PV//./_}-docs.zip"

SRC_URI="${BASE_URI}/${SRC_ARCHIVE}
	doc? ( ${BASE_URI}/${DOCS_ARCHIVE} )"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="debug doc examples static-libs"

DEPEND="doc? ( app-arch/unzip )"
RDEPEND=""

S="${WORKDIR}/${PN}/source"

QA_DT_NEEDED="/usr/lib.*/libicudata\.so\.${MAJOR_VERSION}${MINOR_VERSION}\.${MICRO_VERSION}"

src_unpack() {
	unpack "${SRC_ARCHIVE}"
	if use doc; then
		mkdir docs
		pushd docs > /dev/null
		unpack "${DOCS_ARCHIVE}"
		popd > /dev/null
	fi
}

src_prepare() {
	# Do not hardcode flags into icu-config.
	# https://ssl.icu-project.org/trac/ticket/6102
	local variable
	for variable in CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do
		sed -i -e "/^${variable} =.*/s:@${variable}@::" config/Makefile.inc.in || die "sed failed"
	done

	epatch "${FILESDIR}/icu-4.8.1-fix_binformat_fonts.patch"
	epatch "${FILESDIR}/icu-4.8.1-fix_nan.patch"
}

src_configure() {
	econf \
		$(use_enable debug) \
		$(use_enable examples samples) \
		$(use_enable static-libs static)
}

src_test() {
	# INTLTEST_OPTS: intltest options
	#   -e: Exhaustive testing
	#   -l: Reporting of memory leaks
	#   -v: Increased verbosity
	# IOTEST_OPTS: iotest options
	#   -e: Exhaustive testing
	#   -v: Increased verbosity
	# CINTLTST_OPTS: cintltst options
	#   -e: Exhaustive testing
	#   -v: Increased verbosity
	emake -j1 check || die "emake check failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dohtml ../readme.html
	dodoc ../unicode-license.txt
	if use doc; then
		insinto /usr/share/doc/${PF}/html/api
		doins -r "${WORKDIR}/docs/"* || die "doins failed"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-10-18  6:36 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-18  6:36 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/10/18 06:36:36

  Modified:             ChangeLog icu-4.8.1-r2.ebuild
  Log:
  x86 stable wrt bug #387259
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.162                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.162&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.162&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.161&r2=1.162

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog	17 Oct 2011 22:15:12 -0000	1.161
+++ ChangeLog	18 Oct 2011 06:36:36 -0000	1.162
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.161 2011/10/17 22:15:12 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.162 2011/10/18 06:36:36 phajdan.jr Exp $
+
+  18 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> icu-4.8.1-r2.ebuild:
+  x86 stable wrt bug #387259
 
   17 Oct 2011; Markos Chandras <hwoarang@gentoo.org> icu-4.8.1-r2.ebuild:
   Stable on amd64 wrt bug #387259



1.3                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?r1=1.2&r2=1.3

Index: icu-4.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icu-4.8.1-r2.ebuild	17 Oct 2011 22:15:12 -0000	1.2
+++ icu-4.8.1-r2.ebuild	18 Oct 2011 06:36:36 -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/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.2 2011/10/17 22:15:12 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.3 2011/10/18 06:36:36 phajdan.jr Exp $
 
 EAPI="3"
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="doc? ( app-arch/unzip )"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-10-19  0:25 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-19  0:25 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/19 00:25:15

  Modified:             ChangeLog icu-4.8.1-r2.ebuild
  Log:
  Stable for HPPA (bug #387259).
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.163                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.163&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.163&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.162&r2=1.163

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	18 Oct 2011 06:36:36 -0000	1.162
+++ ChangeLog	19 Oct 2011 00:25:15 -0000	1.163
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.162 2011/10/18 06:36:36 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.163 2011/10/19 00:25:15 jer Exp $
+
+  19 Oct 2011; Jeroen Roovers <jer@gentoo.org> icu-4.8.1-r2.ebuild:
+  Stable for HPPA (bug #387259).
 
   18 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> icu-4.8.1-r2.ebuild:
   x86 stable wrt bug #387259



1.4                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?r1=1.3&r2=1.4

Index: icu-4.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- icu-4.8.1-r2.ebuild	18 Oct 2011 06:36:36 -0000	1.3
+++ icu-4.8.1-r2.ebuild	19 Oct 2011 00:25:15 -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/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.3 2011/10/18 06:36:36 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.4 2011/10/19 00:25:15 jer Exp $
 
 EAPI="3"
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="doc? ( app-arch/unzip )"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-10-29 19:21 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2011-10-29 19:21 UTC (permalink / raw
  To: gentoo-commits

maekke      11/10/29 19:21:24

  Modified:             ChangeLog icu-4.8.1-r2.ebuild
  Log:
  arm stable, bug #387259
  
  (Portage version: 2.1.10.31/cvs/Linux i686)

Revision  Changes    Path
1.164                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.163&r2=1.164

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	19 Oct 2011 00:25:15 -0000	1.163
+++ ChangeLog	29 Oct 2011 19:21:24 -0000	1.164
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.163 2011/10/19 00:25:15 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.164 2011/10/29 19:21:24 maekke Exp $
+
+  29 Oct 2011; Markus Meier <maekke@gentoo.org> icu-4.8.1-r2.ebuild:
+  arm stable, bug #387259
 
   19 Oct 2011; Jeroen Roovers <jer@gentoo.org> icu-4.8.1-r2.ebuild:
   Stable for HPPA (bug #387259).



1.5                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?r1=1.4&r2=1.5

Index: icu-4.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- icu-4.8.1-r2.ebuild	19 Oct 2011 00:25:15 -0000	1.4
+++ icu-4.8.1-r2.ebuild	29 Oct 2011 19:21:24 -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/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.4 2011/10/19 00:25:15 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.5 2011/10/29 19:21:24 maekke Exp $
 
 EAPI="3"
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="doc? ( app-arch/unzip )"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-12-17 17:35 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2011-12-17 17:35 UTC (permalink / raw
  To: gentoo-commits

armin76     11/12/17 17:35:36

  Modified:             ChangeLog icu-4.8.1-r2.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #387259
  
  (Portage version: 2.1.10.38/cvs/Linux ia64)

Revision  Changes    Path
1.166                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.165&r2=1.166

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	30 Oct 2011 12:02:54 -0000	1.165
+++ ChangeLog	17 Dec 2011 17:35:35 -0000	1.166
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.165 2011/10/30 12:02:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.166 2011/12/17 17:35:35 armin76 Exp $
+
+  17 Dec 2011; Raúl Porcel <armin76@gentoo.org> icu-4.8.1-r2.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #387259
 
 *icu-4.8.1.1 (30 Oct 2011)
 



1.6                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?r1=1.5&r2=1.6

Index: icu-4.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- icu-4.8.1-r2.ebuild	29 Oct 2011 19:21:24 -0000	1.5
+++ icu-4.8.1-r2.ebuild	17 Dec 2011 17:35:35 -0000	1.6
@@ -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/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.5 2011/10/29 19:21:24 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.6 2011/12/17 17:35:35 armin76 Exp $
 
 EAPI="3"
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="doc? ( app-arch/unzip )"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild
@ 2011-12-28 19:14 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-12-28 19:14 UTC (permalink / raw
  To: gentoo-commits

halcy0n     11/12/28 19:14:10

  Modified:             ChangeLog icu-4.8.1-r2.ebuild
  Log:
  Stable for ppc/ppc64; bug #387259
  
  (Portage version: 2.1.10.11/cvs/Linux ppc)

Revision  Changes    Path
1.168                dev-libs/icu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.167&r2=1.168

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	18 Dec 2011 17:17:13 -0000	1.167
+++ ChangeLog	28 Dec 2011 19:14:10 -0000	1.168
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.167 2011/12/18 17:17:13 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.168 2011/12/28 19:14:10 halcy0n Exp $
+
+  28 Dec 2011; Mark Loeser <halcy0n@gentoo.org> icu-4.8.1-r2.ebuild:
+  Stable for ppc/ppc64; bug #387259
 
   18 Dec 2011; Mark Loeser <halcy0n@gentoo.org> icu-4.8.1-r1.ebuild:
   Stable for ppc; bug #387259



1.7                  dev-libs/icu/icu-4.8.1-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild?r1=1.6&r2=1.7

Index: icu-4.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- icu-4.8.1-r2.ebuild	17 Dec 2011 17:35:35 -0000	1.6
+++ icu-4.8.1-r2.ebuild	28 Dec 2011 19:14:10 -0000	1.7
@@ -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/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.6 2011/12/17 17:35:35 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.8.1-r2.ebuild,v 1.7 2011/12/28 19:14:10 halcy0n Exp $
 
 EAPI="3"
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="doc? ( app-arch/unzip )"






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

end of thread, other threads:[~2011-12-28 19:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-29 19:21 [gentoo-commits] gentoo-x86 commit in dev-libs/icu: ChangeLog icu-4.8.1-r2.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-28 19:14 Mark Loeser (halcy0n)
2011-12-17 17:35 Raul Porcel (armin76)
2011-10-19  0:25 Jeroen Roovers (jer)
2011-10-18  6:36 PaweA Hajdan (phajdan.jr)
2011-10-12 22:04 PaweA Hajdan (phajdan.jr)

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