Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/expat: ChangeLog expat-2.0.1-r3.ebuild
Date: Wed, 17 Feb 2010 12:01:28
Message-Id: E1Nhiaq-0001BS-90@stork.gentoo.org
1 ssuominen 10/02/17 12:01:24
2
3 Modified: ChangeLog
4 Added: expat-2.0.1-r3.ebuild
5 Log:
6 Revision bump for security #303727 (CVE-2009-3560).
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.90 dev-libs/expat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/expat/ChangeLog?rev=1.90&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/expat/ChangeLog?rev=1.90&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/expat/ChangeLog?r1=1.89&r2=1.90
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v
19 retrieving revision 1.89
20 retrieving revision 1.90
21 diff -u -r1.89 -r1.90
22 --- ChangeLog 25 Aug 2009 16:24:47 -0000 1.89
23 +++ ChangeLog 17 Feb 2010 12:01:23 -0000 1.90
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/expat
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.89 2009/08/25 16:24:47 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.90 2010/02/17 12:01:23 ssuominen Exp $
30 +
31 +*expat-2.0.1-r3 (17 Feb 2010)
32 +
33 + 17 Feb 2010; Samuli Suominen <ssuominen@g.o>
34 + +expat-2.0.1-r3.ebuild, +files/expat-2.0.1-CVE-2009-3560-revised.patch:
35 + Revision bump for security #303727 (CVE-2009-3560).
36
37 25 Aug 2009; Raúl Porcel <armin76@g.o> expat-2.0.1-r2.ebuild:
38 arm/ia64/m68k/s390/sh/sparc stable wrt #280615
39
40
41
42 1.1 dev-libs/expat/expat-2.0.1-r3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/expat/expat-2.0.1-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/expat/expat-2.0.1-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: expat-2.0.1-r3.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.0.1-r3.ebuild,v 1.1 2010/02/17 12:01:23 ssuominen Exp $
52
53 inherit eutils libtool
54
55 DESCRIPTION="XML parsing libraries"
56 HOMEPAGE="http://expat.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/expat/${P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
62 IUSE=""
63
64 src_unpack() {
65 unpack ${A}
66 cd "${S}"
67
68 # fix segmentation fault in python tests (bug #197043)
69 epatch "${FILESDIR}/${P}-check_stopped_parser.patch"
70
71 epatch "${FILESDIR}"/${P}-fix_bug_1990430.patch \
72 "${FILESDIR}"/${P}-CVE-2009-3560-revised.patch
73
74 elibtoolize
75 epunt_cxx
76 }
77
78 src_install() {
79 emake install DESTDIR="${D}" || die
80 dodoc Changes README || die
81 dohtml doc/* || die
82 }