* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild
@ 2009-04-29 21:49 Mike Frysinger (vapier)
0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2009-04-29 21:49 UTC (permalink / raw
To: gentoo-commits
vapier 09/04/29 21:49:10
Modified: ChangeLog
Added: timezone-data-2009g.ebuild
Log:
Version bump #267651 by Rodrigo Severo.
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Revision Changes Path
1.183 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.183&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.183&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.182&r2=1.183
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog 14 Apr 2009 01:56:52 -0000 1.182
+++ ChangeLog 29 Apr 2009 21:49:10 -0000 1.183
@@ -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.182 2009/04/14 01:56:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.183 2009/04/29 21:49:10 vapier Exp $
+
+*timezone-data-2009g (29 Apr 2009)
+
+ 29 Apr 2009; Mike Frysinger <vapier@gentoo.org>
+ +timezone-data-2009g.ebuild:
+ Version bump #267651 by Rodrigo Severo.
*timezone-data-2009f (14 Apr 2009)
1.1 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.1&content-type=text/plain
Index: timezone-data-2009g.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-2009g.ebuild,v 1.1 2009/04/29 21:49:10 vapier Exp $
inherit eutils toolchain-funcs flag-o-matic
code_ver=${PV/g/e}
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=$(sed -e 's:#.*::' -e 's:[[:space:]]*::g' -e '/^$/d' "${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: ChangeLog timezone-data-2009g.ebuild
@ 2009-06-22 4:37 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2009-06-22 4:37 UTC (permalink / raw
To: gentoo-commits
jer 09/06/22 04:37:27
Modified: ChangeLog timezone-data-2009g.ebuild
Log:
Stable for HPPA (bug #274842).
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.186 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.185&r2=1.186
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog 20 Jun 2009 18:28:15 -0000 1.185
+++ ChangeLog 22 Jun 2009 04:37:27 -0000 1.186
@@ -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.185 2009/06/20 18:28:15 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.186 2009/06/22 04:37:27 jer Exp $
+
+ 22 Jun 2009; Jeroen Roovers <jer@gentoo.org> timezone-data-2009g.ebuild:
+ Stable for HPPA (bug #274842).
*timezone-data-2009j (20 Jun 2009)
1.2 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?r1=1.1&r2=1.2
Index: timezone-data-2009g.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- timezone-data-2009g.ebuild 29 Apr 2009 21:49:10 -0000 1.1
+++ timezone-data-2009g.ebuild 22 Jun 2009 04:37:27 -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-2009g.ebuild,v 1.1 2009/04/29 21:49:10 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v 1.2 2009/06/22 04:37:27 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 ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="nls elibc_FreeBSD elibc_glibc"
RDEPEND="!<sys-libs/glibc-2.3.5"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild
@ 2009-06-22 13:54 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2009-06-22 13:54 UTC (permalink / raw
To: gentoo-commits
armin76 09/06/22 13:54:01
Modified: ChangeLog timezone-data-2009g.ebuild
Log:
alpha/arm/ia64/m68k/s390/sh/sparc/x86 stable wrt #274842
(Portage version: 2.1.6.13/cvs/Linux ia64)
Revision Changes Path
1.187 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.186&r2=1.187
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog 22 Jun 2009 04:37:27 -0000 1.186
+++ ChangeLog 22 Jun 2009 13:54:01 -0000 1.187
@@ -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.186 2009/06/22 04:37:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.187 2009/06/22 13:54:01 armin76 Exp $
+
+ 22 Jun 2009; Raúl Porcel <armin76@gentoo.org> timezone-data-2009g.ebuild:
+ alpha/arm/ia64/m68k/s390/sh/sparc/x86 stable wrt #274842
22 Jun 2009; Jeroen Roovers <jer@gentoo.org> timezone-data-2009g.ebuild:
Stable for HPPA (bug #274842).
1.3 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?r1=1.2&r2=1.3
Index: timezone-data-2009g.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- timezone-data-2009g.ebuild 22 Jun 2009 04:37:27 -0000 1.2
+++ timezone-data-2009g.ebuild 22 Jun 2009 13:54:01 -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-2009g.ebuild,v 1.2 2009/06/22 04:37:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v 1.3 2009/06/22 13:54:01 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 ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="nls elibc_FreeBSD elibc_glibc"
RDEPEND="!<sys-libs/glibc-2.3.5"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild
@ 2009-06-27 21:59 Richard Freeman (rich0)
0 siblings, 0 replies; 6+ messages in thread
From: Richard Freeman (rich0) @ 2009-06-27 21:59 UTC (permalink / raw
To: gentoo-commits
rich0 09/06/27 21:59:57
Modified: ChangeLog timezone-data-2009g.ebuild
Log:
amd64 stable - 274842
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.188 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.188&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.188&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.187&r2=1.188
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog 22 Jun 2009 13:54:01 -0000 1.187
+++ ChangeLog 27 Jun 2009 21:59:57 -0000 1.188
@@ -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.187 2009/06/22 13:54:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.188 2009/06/27 21:59:57 rich0 Exp $
+
+ 27 Jun 2009; Richard Freeman <rich0@gentoo.org>
+ timezone-data-2009g.ebuild:
+ amd64 stable - 274842
22 Jun 2009; Raúl Porcel <armin76@gentoo.org> timezone-data-2009g.ebuild:
alpha/arm/ia64/m68k/s390/sh/sparc/x86 stable wrt #274842
1.4 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?r1=1.3&r2=1.4
Index: timezone-data-2009g.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- timezone-data-2009g.ebuild 22 Jun 2009 13:54:01 -0000 1.3
+++ timezone-data-2009g.ebuild 27 Jun 2009 21:59:57 -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-2009g.ebuild,v 1.3 2009/06/22 13:54:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v 1.4 2009/06/27 21:59:57 rich0 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 x86 ~sparc-fbsd ~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"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild
@ 2009-07-04 12:46 Brent Baude (ranger)
0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2009-07-04 12:46 UTC (permalink / raw
To: gentoo-commits
ranger 09/07/04 12:46:44
Modified: ChangeLog timezone-data-2009g.ebuild
Log:
Marking timezone-data-2009g ppc64 for bug 274842
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.189 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.188&r2=1.189
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog 27 Jun 2009 21:59:57 -0000 1.188
+++ ChangeLog 4 Jul 2009 12:46:44 -0000 1.189
@@ -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.188 2009/06/27 21:59:57 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.189 2009/07/04 12:46:44 ranger Exp $
+
+ 04 Jul 2009; Brent Baude <ranger@gentoo.org> timezone-data-2009g.ebuild:
+ Marking timezone-data-2009g ppc64 for bug 274842
27 Jun 2009; Richard Freeman <rich0@gentoo.org>
timezone-data-2009g.ebuild:
1.5 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?r1=1.4&r2=1.5
Index: timezone-data-2009g.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- timezone-data-2009g.ebuild 27 Jun 2009 21:59:57 -0000 1.4
+++ timezone-data-2009g.ebuild 4 Jul 2009 12:46:44 -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-2009g.ebuild,v 1.4 2009/06/27 21:59:57 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v 1.5 2009/07/04 12:46:44 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"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild
@ 2009-07-17 18:08 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-07-17 18:08 UTC (permalink / raw
To: gentoo-commits
nixnut 09/07/17 18:08:54
Modified: ChangeLog timezone-data-2009g.ebuild
Log:
ppc stable #274842
(Portage version: 2.1.6.13/cvs/Linux ppc)
Revision Changes Path
1.190 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.190&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.190&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.189&r2=1.190
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog 4 Jul 2009 12:46:44 -0000 1.189
+++ ChangeLog 17 Jul 2009 18:08:54 -0000 1.190
@@ -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.189 2009/07/04 12:46:44 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.190 2009/07/17 18:08:54 nixnut Exp $
+
+ 17 Jul 2009; nixnut <nixnut@gentoo.org> timezone-data-2009g.ebuild:
+ ppc stable #274842
04 Jul 2009; Brent Baude <ranger@gentoo.org> timezone-data-2009g.ebuild:
Marking timezone-data-2009g ppc64 for bug 274842
1.6 sys-libs/timezone-data/timezone-data-2009g.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild?r1=1.5&r2=1.6
Index: timezone-data-2009g.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- timezone-data-2009g.ebuild 4 Jul 2009 12:46:44 -0000 1.5
+++ timezone-data-2009g.ebuild 17 Jul 2009 18:08:54 -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-2009g.ebuild,v 1.5 2009/07/04 12:46:44 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2009g.ebuild,v 1.6 2009/07/17 18:08:54 nixnut 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"
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-07-17 18:10 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-17 18:08 [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2009g.ebuild Gysbert Wassenaar (nixnut)
-- strict thread matches above, loose matches on Subject: below --
2009-07-04 12:46 Brent Baude (ranger)
2009-06-27 21:59 Richard Freeman (rich0)
2009-06-22 13:54 Raul Porcel (armin76)
2009-06-22 4:37 Jeroen Roovers (jer)
2009-04-29 21:49 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