Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/uthash: ChangeLog uthash-1.9.9.ebuild
Date: Wed, 02 Jul 2014 05:51:38
Message-Id: 20140702055134.D34BC2004E@flycatcher.gentoo.org
1 dlan 14/07/02 05:51:34
2
3 Modified: ChangeLog
4 Added: uthash-1.9.9.ebuild
5 Log:
6 bump, fix bug #500490, thanks Johan Bergström
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
9
10 Revision Changes Path
11 1.12 dev-libs/uthash/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 26 Jun 2013 17:08:12 -0000 1.11
24 +++ ChangeLog 2 Jul 2014 05:51:34 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/uthash
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.11 2013/06/26 17:08:12 blueness Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.12 2014/07/02 05:51:34 dlan Exp $
31 +
32 +*uthash-1.9.9 (02 Jul 2014)
33 +
34 + 02 Jul 2014; Yixun Lan <dlan@g.o> +uthash-1.9.9.ebuild:
35 + bump, fix bug #500490, thanks Johan Bergström
36
37 26 Jun 2013; Anthony G. Basile <blueness@g.o> uthash-1.9.7.ebuild:
38 Keyword ~arm for bfgminer
39
40
41
42 1.1 dev-libs/uthash/uthash-1.9.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uthash-1.9.9.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild,v 1.1 2014/07/02 05:51:34 dlan Exp $
52
53 EAPI="5"
54
55 inherit toolchain-funcs
56
57 DESCRIPTION="An easy-to-use hash implementation for C programmers"
58 HOMEPAGE="http://troydhanson.github.io/uthash/index.html"
59 SRC_URI="https://github.com/troydhanson/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="BSD-1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="test"
65
66 DEPEND="sys-apps/sed
67 test? ( dev-lang/perl )"
68 RDEPEND=""
69
70 src_test() {
71 cd tests || die
72 sed -i "/CFLAGS/s/-O3/${CFLAGS}/" Makefile || die
73 emake CC="$(tc-getCC)"
74 }
75
76 src_install() {
77 insinto /usr/include
78 doins src/*.h
79
80 dodoc doc/{ChangeLog,todo,userguide,ut*}.txt
81 }