Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libhtmlparse: libhtmlparse-0.1.13-r1.ebuild ChangeLog
Date: Fri, 02 Nov 2012 11:09:52
Message-Id: 20121102110934.21B2D21600@flycatcher.gentoo.org
1 pinkbyte 12/11/02 11:09:34
2
3 Modified: ChangeLog
4 Added: libhtmlparse-0.1.13-r1.ebuild
5 Log:
6 Revision bump: EAPI 4, add missing 'die' statements, add 'static-libs' USE flag, keyword ~amd64 wrt bug #440734. Thanks to Vicente Olivert Riera
7
8 (Portage version: 2.2.0_alpha141/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.12 dev-libs/libhtmlparse/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhtmlparse/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhtmlparse/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhtmlparse/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 2 Nov 2012 10:58:06 -0000 1.11
24 +++ ChangeLog 2 Nov 2012 11:09:34 -0000 1.12
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/libhtmlparse
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/ChangeLog,v 1.11 2012/11/02 10:58:06 pinkbyte Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/ChangeLog,v 1.12 2012/11/02 11:09:34 pinkbyte Exp $
30 +
31 +*libhtmlparse-0.1.13-r1 (02 Nov 2012)
32 +
33 + 02 Nov 2012; Sergey Popov <pinkbyte@g.o>
34 + +libhtmlparse-0.1.13-r1.ebuild:
35 + Revision bump: EAPI 4, add missing 'die' statements, add 'static-libs' USE
36 + flag, keyword ~amd64 wrt bug #440734. Thanks to Vicente Olivert Riera
37
38 02 Nov 2012; Sergey Popov <pinkbyte@g.o> libhtmlparse-0.1.13.ebuild:
39 Fix description and other minor QA issues
40
41
42
43 1.1 dev-libs/libhtmlparse/libhtmlparse-0.1.13-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhtmlparse/libhtmlparse-0.1.13-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhtmlparse/libhtmlparse-0.1.13-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libhtmlparse-0.1.13-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/libhtmlparse-0.1.13-r1.ebuild,v 1.1 2012/11/02 11:09:34 pinkbyte Exp $
53
54 EAPI=4
55
56 DESCRIPTION="HTML parsing library. It takes HTML tags, text, and calls callbacks for each type of token"
57 HOMEPAGE="http://msalem.translator.cx/libhtmlparse.html"
58 SRC_URI="http://msalem.translator.cx/dist/${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="static-libs"
64
65 RDEPEND="virtual/libc"
66 DEPEND="${RDEPEND}"
67
68 DOCS=( AUTHORS BUGS INSTALL ChangeLog NEWS README TODO )
69
70 src_unpack() {
71 # for some reason, we get a "this does not look like a tar archive" error
72 # but the following works... go figure.
73 gunzip -c "${DISTDIR}"/${P}.tar.gz > ${P}.tar || die 'gunzip failed'
74 tar xf ${P}.tar || die "failed to unpack ${P}.tar"
75 rm ${P}.tar || die "rm failed"
76 }
77
78 src_configure() {
79 econf \
80 $(use_enable static-libs static)
81 }