* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-14 9:50 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-10-14 9:50 UTC (permalink / raw
To: gentoo-commits
robbat2 08/10/14 09:50:56
Modified: ChangeLog
Added: timezone-data-2008g-r1.ebuild
Log:
Fix bug #226929 with linking fun.
(Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
Revision Changes Path
1.150 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -p -w -b -B -u -u -r1.149 -r1.150
--- ChangeLog 9 Oct 2008 05:41:29 -0000 1.149
+++ ChangeLog 14 Oct 2008 09:50:56 -0000 1.150
@@ -1,6 +1,13 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.149 2008/10/09 05:41:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.150 2008/10/14 09:50:56 robbat2 Exp $
+
+*timezone-data-2008g-r1 (14 Oct 2008)
+
+ 14 Oct 2008; Robin H. Johnson <robbat2@gentoo.org>
+ +files/timezone-data-2008f-makefile-libs-not-flags.patch,
+ +timezone-data-2008g-r1.ebuild:
+ Fix bug #226929 with linking fun.
*timezone-data-2008g (09 Oct 2008)
1.1 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.1&content-type=text/plain
Index: timezone-data-2008g-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.1 2008/10/14 09:50:56 robbat2 Exp $
inherit eutils toolchain-funcs flag-o-matic
code_ver=${PV}
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="GPL-2"
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"
DEPEND=""
S=${WORKDIR}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PN}-2005n-makefile.patch
epatch "${FILESDIR}"/${PN}-2008f-makefile-libs-not-flags.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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-26 0:23 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2008-10-26 0:23 UTC (permalink / raw
To: gentoo-commits
jer 08/10/26 00:23:33
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
Stable for HPPA (bug #244391).
(Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7-JeR i686)
Revision Changes Path
1.152 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.151&r2=1.152
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog 25 Oct 2008 23:34:22 -0000 1.151
+++ ChangeLog 26 Oct 2008 00:23:33 -0000 1.152
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.151 2008/10/25 23:34:22 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.152 2008/10/26 00:23:33 jer Exp $
+
+ 26 Oct 2008; Jeroen Roovers <jer@gentoo.org>
+ timezone-data-2008g-r1.ebuild:
+ Stable for HPPA (bug #244391).
*timezone-data-2008h (25 Oct 2008)
1.2 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.1&r2=1.2
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- timezone-data-2008g-r1.ebuild 14 Oct 2008 09:50:56 -0000 1.1
+++ timezone-data-2008g-r1.ebuild 26 Oct 2008 00:23:33 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.1 2008/10/14 09:50:56 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.2 2008/10/26 00:23:33 jer Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-26 10:44 Torsten Veller (tove)
0 siblings, 0 replies; 7+ messages in thread
From: Torsten Veller (tove) @ 2008-10-26 10:44 UTC (permalink / raw
To: gentoo-commits
tove 08/10/26 10:44:54
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
Stable on x86 (#244391)
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-tuxonice i686)
Revision Changes Path
1.153 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.153&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.153&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.152&r2=1.153
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog 26 Oct 2008 00:23:33 -0000 1.152
+++ ChangeLog 26 Oct 2008 10:44:54 -0000 1.153
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.152 2008/10/26 00:23:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.153 2008/10/26 10:44:54 tove Exp $
+
+ 26 Oct 2008; Torsten Veller <tove@gentoo.org>
+ timezone-data-2008g-r1.ebuild:
+ Stable on x86 (#244391)
26 Oct 2008; Jeroen Roovers <jer@gentoo.org>
timezone-data-2008g-r1.ebuild:
1.3 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.2&r2=1.3
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- timezone-data-2008g-r1.ebuild 26 Oct 2008 00:23:33 -0000 1.2
+++ timezone-data-2008g-r1.ebuild 26 Oct 2008 10:44:54 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.2 2008/10/26 00:23:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.3 2008/10/26 10:44:54 tove Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-26 12:42 Raul Porcel (armin76)
0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2008-10-26 12:42 UTC (permalink / raw
To: gentoo-commits
armin76 08/10/26 12:42:55
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
alpha/ia64/sparc/x86 stable wrt #244391
(Portage version: 2.1.4.5)
Revision Changes Path
1.154 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.154&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.154&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.153&r2=1.154
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog 26 Oct 2008 10:44:54 -0000 1.153
+++ ChangeLog 26 Oct 2008 12:42:55 -0000 1.154
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.153 2008/10/26 10:44:54 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.154 2008/10/26 12:42:55 armin76 Exp $
+
+ 26 Oct 2008; Raúl Porcel <armin76@gentoo.org>
+ timezone-data-2008g-r1.ebuild:
+ alpha/ia64/sparc/x86 stable wrt #244391
26 Oct 2008; Torsten Veller <tove@gentoo.org>
timezone-data-2008g-r1.ebuild:
1.4 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.3&r2=1.4
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- timezone-data-2008g-r1.ebuild 26 Oct 2008 10:44:54 -0000 1.3
+++ timezone-data-2008g-r1.ebuild 26 Oct 2008 12:42:55 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.3 2008/10/26 10:44:54 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.4 2008/10/26 12:42:55 armin76 Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-26 14:07 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-10-26 14:07 UTC (permalink / raw
To: gentoo-commits
nixnut 08/10/26 14:07:03
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
Stable on ppc wrt bug 244391
(Portage version: 2.1.4.5)
Revision Changes Path
1.155 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.155&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.155&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.154&r2=1.155
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog 26 Oct 2008 12:42:55 -0000 1.154
+++ ChangeLog 26 Oct 2008 14:07:03 -0000 1.155
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.154 2008/10/26 12:42:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.155 2008/10/26 14:07:03 nixnut Exp $
+
+ 26 Oct 2008; nixnut <nixnut@gentoo.org> timezone-data-2008g-r1.ebuild:
+ Stable on ppc wrt bug 244391
26 Oct 2008; Raúl Porcel <armin76@gentoo.org>
timezone-data-2008g-r1.ebuild:
1.5 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.4&r2=1.5
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- timezone-data-2008g-r1.ebuild 26 Oct 2008 12:42:55 -0000 1.4
+++ timezone-data-2008g-r1.ebuild 26 Oct 2008 14:07:03 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.4 2008/10/26 12:42:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.5 2008/10/26 14:07:03 nixnut Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-27 2:29 Jeremy Olexa (darkside)
0 siblings, 0 replies; 7+ messages in thread
From: Jeremy Olexa (darkside) @ 2008-10-27 2:29 UTC (permalink / raw
To: gentoo-commits
darkside 08/10/27 02:29:20
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
amd64 stable, bug 244391
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-git6 x86_64)
Revision Changes Path
1.156 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.156&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.156&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.155&r2=1.156
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog 26 Oct 2008 14:07:03 -0000 1.155
+++ ChangeLog 27 Oct 2008 02:29:20 -0000 1.156
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.155 2008/10/26 14:07:03 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.156 2008/10/27 02:29:20 darkside Exp $
+
+ 27 Oct 2008; Jeremy Olexa <darkside@gentoo.org>
+ timezone-data-2008g-r1.ebuild:
+ amd64 stable, bug 244391
26 Oct 2008; nixnut <nixnut@gentoo.org> timezone-data-2008g-r1.ebuild:
Stable on ppc wrt bug 244391
1.6 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.5&r2=1.6
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- timezone-data-2008g-r1.ebuild 26 Oct 2008 14:07:03 -0000 1.5
+++ timezone-data-2008g-r1.ebuild 27 Oct 2008 02:29:20 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.5 2008/10/26 14:07:03 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.6 2008/10/27 02:29:20 darkside Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild
@ 2008-10-28 1:33 Brent Baude (ranger)
0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2008-10-28 1:33 UTC (permalink / raw
To: gentoo-commits
ranger 08/10/28 01:33:29
Modified: ChangeLog timezone-data-2008g-r1.ebuild
Log:
stable ppc64, bug 244391
(Portage version: 2.2_rc12/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)
Revision Changes Path
1.157 sys-libs/timezone-data/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.157&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?rev=1.157&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/ChangeLog?r1=1.156&r2=1.157
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -r1.156 -r1.157
--- ChangeLog 27 Oct 2008 02:29:20 -0000 1.156
+++ ChangeLog 28 Oct 2008 01:33:29 -0000 1.157
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/timezone-data
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.156 2008/10/27 02:29:20 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/ChangeLog,v 1.157 2008/10/28 01:33:29 ranger Exp $
+
+ 28 Oct 2008; Brent Baude <ranger@gentoo.org>
+ timezone-data-2008g-r1.ebuild:
+ stable ppc64, bug 244391
27 Oct 2008; Jeremy Olexa <darkside@gentoo.org>
timezone-data-2008g-r1.ebuild:
1.8 sys-libs/timezone-data/timezone-data-2008g-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild?r1=1.7&r2=1.8
Index: timezone-data-2008g-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- timezone-data-2008g-r1.ebuild 27 Oct 2008 06:06:46 -0000 1.7
+++ timezone-data-2008g-r1.ebuild 28 Oct 2008 01:33:29 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.7 2008/10/27 06:06:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/timezone-data/timezone-data-2008g-r1.ebuild,v 1.8 2008/10/28 01:33:29 ranger Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
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"
DEPEND=""
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-10-28 1:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-27 2:29 [gentoo-commits] gentoo-x86 commit in sys-libs/timezone-data: ChangeLog timezone-data-2008g-r1.ebuild Jeremy Olexa (darkside)
-- strict thread matches above, loose matches on Subject: below --
2008-10-28 1:33 Brent Baude (ranger)
2008-10-26 14:07 Gysbert Wassenaar (nixnut)
2008-10-26 12:42 Raul Porcel (armin76)
2008-10-26 10:44 Torsten Veller (tove)
2008-10-26 0:23 Jeroen Roovers (jer)
2008-10-14 9:50 Robin H. Johnson (robbat2)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox