Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libh2oxx: ChangeLog libh2oxx-0.2.ebuild
Date: Thu, 07 Jun 2012 15:21:41
Message-Id: 20120607152127.702972004B@flycatcher.gentoo.org
1 mgorny 12/06/07 15:21:27
2
3 Modified: ChangeLog
4 Added: libh2oxx-0.2.ebuild
5 Log:
6 Version bump. The new version introduces properties for heat capacity & speed of sound. It also introduces initialized() property and is more strict regarding invalid use.
7
8 (Portage version: 2.2.0_alpha109_p1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sci-libs/libh2oxx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2oxx/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2oxx/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2oxx/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libh2oxx/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 5 Jun 2012 18:06:23 -0000 1.1
24 +++ ChangeLog 7 Jun 2012 15:21:27 -0000 1.2
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-libs/libh2oxx
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2oxx/ChangeLog,v 1.1 2012/06/05 18:06:23 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2oxx/ChangeLog,v 1.2 2012/06/07 15:21:27 mgorny Exp $
30 +
31 +*libh2oxx-0.2 (07 Jun 2012)
32 +
33 + 07 Jun 2012; Michał Górny <mgorny@g.o> +libh2oxx-0.2.ebuild:
34 + Version bump. The new version introduces properties for heat capacity & speed
35 + of sound. It also introduces initialized() property and is more strict
36 + regarding invalid use.
37
38 *libh2oxx-0.1 (05 Jun 2012)
39
40
41
42
43 1.1 sci-libs/libh2oxx/libh2oxx-0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2oxx/libh2oxx-0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2oxx/libh2oxx-0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libh2oxx-0.2.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/sci-libs/libh2oxx/libh2oxx-0.2.ebuild,v 1.1 2012/06/07 15:21:27 mgorny Exp $
53
54 EAPI=4
55
56 inherit autotools-utils
57
58 DESCRIPTION="C++ bindings for libh2o"
59 HOMEPAGE="https://bitbucket.org/mgorny/libh2oxx/"
60 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug static-libs"
66
67 RDEPEND=">=sci-libs/libh2o-0.2"
68 DEPEND="${RDEPEND}"
69
70 src_configure() {
71 local myeconfargs=(
72 $(use_enable debug)
73 )
74
75 autotools-utils_src_configure
76 }