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/libh2o: metadata.xml ChangeLog libh2o-0.1.ebuild
Date: Tue, 05 Jun 2012 15:38:00
Message-Id: 20120605153748.B24032004B@flycatcher.gentoo.org
1 mgorny 12/06/05 15:37:48
2
3 Added: metadata.xml ChangeLog libh2o-0.1.ebuild
4 Log:
5 Initial commit of libh2o, a lightweight library for properties of water and steam.
6
7 (Portage version: 2.2.0_alpha109_p1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-libs/libh2o/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>mgorny@g.o</email>
22 <name>Michał Górny</name>
23 </maintainer>
24 <upstream>
25 <maintainer status="active">
26 <email>mgorny@g.o</email>
27 <name>Michał Górny</name>
28 </maintainer>
29 <bugs-to>https://github.com/mgorny/libh2o/issues/</bugs-to>
30 </upstream>
31 </pkgmetadata>
32
33
34
35 1.1 sci-libs/libh2o/ChangeLog
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/ChangeLog?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/ChangeLog?rev=1.1&content-type=text/plain
39
40 Index: ChangeLog
41 ===================================================================
42 # ChangeLog for sci-libs/libh2o
43 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
44 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2o/ChangeLog,v 1.1 2012/06/05 15:37:48 mgorny Exp $
45
46 *libh2o-0.1 (05 Jun 2012)
47
48 05 Jun 2012; Michał Górny <mgorny@g.o> +libh2o-0.1.ebuild,
49 +metadata.xml:
50 Initial commit of libh2o, a lightweight library for properties of water and
51 steam.
52
53
54
55
56 1.1 sci-libs/libh2o/libh2o-0.1.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/libh2o-0.1.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libh2o/libh2o-0.1.ebuild?rev=1.1&content-type=text/plain
60
61 Index: libh2o-0.1.ebuild
62 ===================================================================
63 # Copyright 1999-2012 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libh2o/libh2o-0.1.ebuild,v 1.1 2012/06/05 15:37:48 mgorny Exp $
66
67 EAPI=4
68
69 inherit autotools-utils
70
71 DESCRIPTION="Library of routines for IF97 water & steam properties"
72 HOMEPAGE="https://bitbucket.org/mgorny/libh2o/"
73 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
74
75 LICENSE="BSD"
76 SLOT="0"
77 KEYWORDS="~amd64 ~x86"
78 IUSE="debug static-libs"
79
80 src_configure() {
81 local myeconfargs=(
82 $(use_enable debug)
83 )
84
85 autotools-utils_src_configure
86 }