public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-03-16 21:28 Mike Frysinger (vapier)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2009-03-16 21:28 UTC (permalink / raw
  To: gentoo-commits

vapier      09/03/16 21:28:20

  Modified:             ChangeLog
  Added:                timezone-data-2009c.ebuild
  Log:
  Version bump #262665 by Rodrigo Severo.
  (Portage version: 2.2_rc25/cvs/Linux x86_64)

Revision  Changes    Path
1.168                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.167&r2=1.168

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	16 Mar 2009 13:37:42 -0000	1.167
+++ ChangeLog	16 Mar 2009 21:28:20 -0000	1.168
@@ -1,6 +1,12 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.167 2009/03/16 13:37:42 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.168 2009/03/16 21:28:20 vapier Exp $
+
+*timezone-data-2009c (16 Mar 2009)
+
+  16 Mar 2009; Mike Frysinger <vapier@gentoo.org>
+  +timezone-data-2009c.ebuild:
+  Version bump #262665 by Rodrigo Severo.
 
   16 Mar 2009; Thomas Anderson <gentoofan23@gentoo.org>
   timezone-data-2009b.ebuild:



1.1                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.1&content-type=text/plain

Index: timezone-data-2009c.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.1 2009/03/16 21:28:20 vapier Exp $

inherit eutils toolchain-funcs flag-o-matic

code_ver=${PV/c/b}
data_ver=${PV}
DESCRIPTION="Timezone data (/usr/share/zoneinfo) and utilities (tzselect/zic/zdump)"
HOMEPAGE="ftp://elsie.nci.nih.gov/pub/"
SRC_URI="ftp://elsie.nci.nih.gov/pub/tzdata${data_ver}.tar.gz
	ftp://elsie.nci.nih.gov/pub/tzcode${code_ver}.tar.gz
	mirror://gentoo/tzdata${data_ver}.tar.gz
	mirror://gentoo/tzcode${code_ver}.tar.gz"

LICENSE="BSD public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="nls elibc_FreeBSD elibc_glibc"

RDEPEND="!<sys-libs/glibc-2.3.5"

S=${WORKDIR}

src_unpack() {
	unpack ${A}
	epatch "${FILESDIR}"/${PN}-2008h-makefile.patch
	tc-is-cross-compiler && cp -pR "${S}" "${S}"-native
}

src_compile() {
	local LDLIBS
	tc-export CC
	use elibc_FreeBSD && append-flags -DSTD_INSPIRED #138251
	if use nls ; then
		use elibc_glibc || LDLIBS="${LDLIBS} -lintl" #154181
		export NLS=1
	else
		export NLS=0
	fi
	# Makefile uses LBLIBS for the libs (which defaults to LDFLAGS)
	# But it also uses LFLAGS where it expects the real LDFLAGS
	emake \
		LDLIBS="${LDLIBS}" \
		|| die "emake failed"
	if tc-is-cross-compiler ; then
		emake -C "${S}"-native \
			CC=$(tc-getBUILD_CC) \
			CFLAGS="${BUILD_CFLAGS}" \
			LDFLAGS="${BUILD_LDFLAGS}" \
			LDLIBS="${LDLIBS}" \
			zic || die
	fi
}

src_install() {
	local zic=""
	tc-is-cross-compiler && zic="zic=${S}-native/zic"
	emake install ${zic} DESTDIR="${D}" || die
	rm -rf "${D}"/usr/share/zoneinfo-leaps
	dodoc README Theory
	dohtml *.htm *.jpg
}

pkg_config() {
	# make sure the /etc/localtime file does not get stale #127899
	local tz src

	if has_version '<sys-apps/baselayout-2' ; then
		src="/etc/conf.d/clock"
		tz=$(unset TIMEZONE ; source "${ROOT}"/etc/conf.d/clock ; echo ${TIMEZONE-FOOKABLOIE})
	else
		src="/etc/timezone"
		if [[ -e ${ROOT}/etc/timezone ]] ; then
			tz=$(<"${ROOT}"/etc/timezone)
		else
			tz="FOOKABLOIE"
		fi
	fi
	[[ -z ${tz} ]] && return 0

	if [[ ${tz} == "FOOKABLOIE" ]] ; then
		elog "You do not have TIMEZONE set in ${src}."

		if [[ ! -e ${ROOT}/etc/localtime ]] ; then
			cp -f "${ROOT}"/usr/share/zoneinfo/Factory "${ROOT}"/etc/localtime
			elog "Setting /etc/localtime to Factory."
		else
			elog "Skipping auto-update of /etc/localtime."
		fi
		return 0
	fi

	if [[ ! -e ${ROOT}/usr/share/zoneinfo/${tz} ]] ; then
		elog "You have an invalid TIMEZONE setting in ${src}"
		elog "Your /etc/localtime has been reset to Factory; enjoy!"
		tz="Factory"
	fi
	einfo "Updating /etc/localtime with /usr/share/zoneinfo/${tz}"
	[[ -L ${ROOT}/etc/localtime ]] && rm -f "${ROOT}"/etc/localtime
	cp -f "${ROOT}"/usr/share/zoneinfo/"${tz}" "${ROOT}"/etc/localtime
}

pkg_postinst() {
	pkg_config
}






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-04-09 12:15 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 6+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-04-09 12:15 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/04/09 12:15:28

  Modified:             timezone-data-2009c.ebuild ChangeLog
  Log:
  Sparc stable, Bug #265522.
  (Portage version: 2.2_rc28/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?r1=1.1&r2=1.2

Index: timezone-data-2009c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- timezone-data-2009c.ebuild	16 Mar 2009 21:28:20 -0000	1.1
+++ timezone-data-2009c.ebuild	9 Apr 2009 12:15:28 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.1 2009/03/16 21:28:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.2 2009/04/09 12:15:28 fmccor Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="nls elibc_FreeBSD elibc_glibc"
 
 RDEPEND="!<sys-libs/glibc-2.3.5"



1.175                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	9 Apr 2009 09:42:50 -0000	1.174
+++ ChangeLog	9 Apr 2009 12:15:28 -0000	1.175
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.174 2009/04/09 09:42:50 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.175 2009/04/09 12:15:28 fmccor Exp $
+
+  09 Apr 2009; Ferris McCormick <fmccor@gentoo.org>
+  timezone-data-2009c.ebuild:
+  Sparc stable, Bug #265522.
 
 *timezone-data-2009e (09 Apr 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-04-09 13:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2009-04-09 13:52 UTC (permalink / raw
  To: gentoo-commits

jer         09/04/09 13:52:51

  Modified:             timezone-data-2009c.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #265522).
  (Portage version: 2.2_rc28/cvs/Linux i686)

Revision  Changes    Path
1.3                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?r1=1.2&r2=1.3

Index: timezone-data-2009c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- timezone-data-2009c.ebuild	9 Apr 2009 12:15:28 -0000	1.2
+++ timezone-data-2009c.ebuild	9 Apr 2009 13:52:51 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.2 2009/04/09 12:15:28 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.3 2009/04/09 13:52:51 jer Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="nls elibc_FreeBSD elibc_glibc"
 
 RDEPEND="!<sys-libs/glibc-2.3.5"



1.176                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	9 Apr 2009 12:15:28 -0000	1.175
+++ ChangeLog	9 Apr 2009 13:52:51 -0000	1.176
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.175 2009/04/09 12:15:28 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.176 2009/04/09 13:52:51 jer Exp $
+
+  09 Apr 2009; Jeroen Roovers <jer@gentoo.org> timezone-data-2009c.ebuild:
+  Stable for HPPA (bug #265522).
 
   09 Apr 2009; Ferris McCormick <fmccor@gentoo.org>
   timezone-data-2009c.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-04-10  4:05 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2009-04-10  4:05 UTC (permalink / raw
  To: gentoo-commits

darkside    09/04/10 04:05:58

  Modified:             timezone-data-2009c.ebuild ChangeLog
  Log:
  amd64 stable, bug 265522
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?r1=1.3&r2=1.4

Index: timezone-data-2009c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- timezone-data-2009c.ebuild	9 Apr 2009 13:52:51 -0000	1.3
+++ timezone-data-2009c.ebuild	10 Apr 2009 04:05:58 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.3 2009/04/09 13:52:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.4 2009/04/10 04:05:58 darkside Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="nls elibc_FreeBSD elibc_glibc"
 
 RDEPEND="!<sys-libs/glibc-2.3.5"



1.177                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.177&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.177&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	9 Apr 2009 13:52:51 -0000	1.176
+++ ChangeLog	10 Apr 2009 04:05:58 -0000	1.177
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.176 2009/04/09 13:52:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.177 2009/04/10 04:05:58 darkside Exp $
+
+  10 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
+  timezone-data-2009c.ebuild:
+  amd64 stable, bug 265522
 
   09 Apr 2009; Jeroen Roovers <jer@gentoo.org> timezone-data-2009c.ebuild:
   Stable for HPPA (bug #265522).






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-04-10 13:40 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2009-04-10 13:40 UTC (permalink / raw
  To: gentoo-commits

armin76     09/04/10 13:40:51

  Modified:             timezone-data-2009c.ebuild ChangeLog
  Log:
  alpha/arm/ia64/m68k/s390/sh/x86 stable wrt #265522
  (Portage version: 2.1.6.7/cvs/Linux ia64)

Revision  Changes    Path
1.5                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?r1=1.4&r2=1.5

Index: timezone-data-2009c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- timezone-data-2009c.ebuild	10 Apr 2009 04:05:58 -0000	1.4
+++ timezone-data-2009c.ebuild	10 Apr 2009 13:40:51 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.4 2009/04/10 04:05:58 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.5 2009/04/10 13:40:51 armin76 Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
 IUSE="nls elibc_FreeBSD elibc_glibc"
 
 RDEPEND="!<sys-libs/glibc-2.3.5"



1.178                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	10 Apr 2009 04:05:58 -0000	1.177
+++ ChangeLog	10 Apr 2009 13:40:51 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.177 2009/04/10 04:05:58 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.178 2009/04/10 13:40:51 armin76 Exp $
+
+  10 Apr 2009; Raúl Porcel <armin76@gentoo.org> timezone-data-2009c.ebuild:
+  alpha/arm/ia64/m68k/s390/sh/x86 stable wrt #265522
 
   10 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
   timezone-data-2009c.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog
@ 2009-04-12 18:12 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2009-04-12 18:12 UTC (permalink / raw
  To: gentoo-commits

ranger      09/04/12 18:12:33

  Modified:             timezone-data-2009c.ebuild ChangeLog
  Log:
  stable ppc64, bug 265522
  (Portage version: 2.1.6.11/cvs/Linux ppc64)

Revision  Changes    Path
1.6                  sys-libs/timezone-data/timezone-data-2009c.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild?r1=1.5&r2=1.6

Index: timezone-data-2009c.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- timezone-data-2009c.ebuild	10 Apr 2009 13:40:51 -0000	1.5
+++ timezone-data-2009c.ebuild	12 Apr 2009 18:12:33 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.5 2009/04/10 13:40:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009c.ebuild,v 1.6 2009/04/12 18:12:33 ranger Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
 IUSE="nls elibc_FreeBSD elibc_glibc"
 
 RDEPEND="!<sys-libs/glibc-2.3.5"



1.181                sys-libs/timezone-data/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.180&r2=1.181

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	11 Apr 2009 16:38:20 -0000	1.180
+++ ChangeLog	12 Apr 2009 18:12:33 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/timezone-data
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.180 2009/04/11 16:38:20 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.181 2009/04/12 18:12:33 ranger Exp $
+
+  12 Apr 2009; Brent Baude <ranger@gentoo.org> timezone-data-2009c.ebuild:
+  stable ppc64, bug 265522
 
   11 Apr 2009; nixnut <nixnut@gentoo.org> timezone-data-2009e.ebuild:
   ppc stable #265522






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

end of thread, other threads:[~2009-04-12 18:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-10  4:05 [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: timezone-data-2009c.ebuild ChangeLog Jeremy Olexa (darkside)
  -- strict thread matches above, loose matches on Subject: below --
2009-04-12 18:12 Brent Baude (ranger)
2009-04-10 13:40 Raul Porcel (armin76)
2009-04-09 13:52 Jeroen Roovers (jer)
2009-04-09 12:15 Ferris McCormick (fmccor)
2009-03-16 21:28 Mike Frysinger (vapier)

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