Upgraded the expat Portage package

Upgraded dev-libs/expat to version 2.0.1-r5 on amd64, arm, x86

BUG=chromium-os:21465
TEST=trybots:
x86-generic-pre-flight-queue
arm-generic-bin
chromiumos-sdk

Change-Id: I2425e67dd8e86ab8e61d37f73375067289f7a2b1
Reviewed-on: http://gerrit.chromium.org/gerrit/9794
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Reviewed-by: David James <davidjames@chromium.org>
Tested-by: Matt Tennant <mtennant@chromium.org>
Commit-Ready: Matt Tennant <mtennant@chromium.org>
This commit is contained in:
Matt Tennant 2011-10-10 11:13:04 -07:00
parent c75f97498a
commit 058e477264
4 changed files with 116 additions and 0 deletions

View File

@ -0,0 +1,72 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.0.1-r5.ebuild,v 1.6 2011/10/05 05:55:18 maekke Exp $
EAPI=4
inherit eutils libtool toolchain-funcs
DESCRIPTION="XML parsing libraries"
HOMEPAGE="http://expat.sourceforge.net/"
SRC_URI="mirror://sourceforge/expat/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD examples static-libs"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-check_stopped_parser.patch \
"${FILESDIR}"/${P}-fix_bug_1990430.patch \
"${FILESDIR}"/${P}-CVE-2009-3560-revised.patch
elibtoolize
epunt_cxx
mkdir "${S}"-build{,u,w} || die
}
src_configure() {
local myconf="$(use_enable static-libs static)"
local d
for d in build buildu buildw; do
pushd "${S}"-${d}
[[ ${d} == buildu ]] && export GENTOO_CPPFLAGS="-UXML_UNICODE"
[[ ${d} == buildw ]] && export GENTOO_CPPFLAGS="-UXML_UNICODE -DXML_UNICODE_WCHAR_T"
CPPFLAGS="${CPPFLAGS} ${GENTOO_CPPFLAGS}" ECONF_SOURCE="${S}" econf ${myconf}
popd
done
}
src_compile() {
cd "${S}"-build
emake
cd "${S}"-buildu
emake buildlib LIBRARY=libexpatu.la
cd "${S}"-buildw
emake buildlib LIBRARY=libexpatw.la
}
src_install() {
dodoc Changes README
dohtml doc/*
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.c
fi
cd "${S}"-build
emake install DESTDIR="${D}"
cd "${S}"-buildu
emake installlib DESTDIR="${D}" LIBRARY=libexpatu.la
cd "${S}"-buildw
emake installlib DESTDIR="${D}" LIBRARY=libexpatw.la
use static-libs || rm -f "${D}"usr/lib*/libexpat{,u,w}.la
# libgeom in /lib and ifconfig in /sbin require it on FreeBSD since we
# stripped the libbsdxml copy starting from freebsd-lib-8.2-r1
use elibc_FreeBSD && gen_usr_ldscript -a expat{,u,w}
}

View File

@ -0,0 +1,16 @@
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2009-3560
http://bugs.gentoo.org/show_bug.cgi?id=303727
http://cvs.fedoraproject.org/viewvc/rpms/expat/devel/
--- lib/xmlparse.c
+++ lib/xmlparse.c
@@ -3703,6 +3703,9 @@ doProlog(XML_Parser parser,
return XML_ERROR_UNCLOSED_TOKEN;
case XML_TOK_PARTIAL_CHAR:
return XML_ERROR_PARTIAL_CHAR;
+ case -XML_TOK_PROLOG_S:
+ tok = -tok;
+ break;
case XML_TOK_NONE:
#ifdef XML_DTD
/* for internal PE NOT referenced between declarations */

View File

@ -0,0 +1,14 @@
Fix segmentation fault in python tests
http://bugs.gentoo.org/197043
--- lib/xmlparse.c
+++ lib/xmlparse.c
@@ -2563,6 +2563,8 @@
(int)(dataPtr - (ICHAR *)dataBuf));
if (s == next)
break;
+ if (ps_parsing == XML_FINISHED || ps_parsing == XML_SUSPENDED)
+ break;
*eventPP = s;
}
}

View File

@ -0,0 +1,14 @@
http://expat.cvs.sourceforge.net/viewvc/expat/expat/lib/xmltok_impl.c?view=log (1.13 -> 1.15)
http://svn.python.org/view?view=rev&revision=74429
--- lib/xmltok_impl.c
+++ lib/xmltok_impl.c
@@ -1744,7 +1744,7 @@
const char *end,
POSITION *pos)
{
- while (ptr != end) {
+ while (ptr < end) {
switch (BYTE_TYPE(enc, ptr)) {
#define LEAD_CASE(n) \
case BT_LEAD ## n: \