Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libuv: libuv-0.11.18.ebuild ChangeLog
Date: Mon, 27 Jan 2014 01:01:50
Message-Id: 20140127010146.0AE482004C@flycatcher.gentoo.org
1 hasufell 14/01/27 01:01:43
2
3 Modified: ChangeLog
4 Added: libuv-0.11.18.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.10 dev-libs/libuv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 14 Dec 2013 12:15:29 -0000 1.9
24 +++ ChangeLog 27 Jan 2014 01:01:43 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libuv
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.9 2013/12/14 12:15:29 hasufell Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.10 2014/01/27 01:01:43 hasufell Exp $
31 +
32 +*libuv-0.11.18 (27 Jan 2014)
33 +
34 + 27 Jan 2014; Julian Ospald <hasufell@g.o> +libuv-0.11.18.ebuild:
35 + version bump
36
37 *libuv-0.11.16 (14 Dec 2013)
38
39
40
41
42 1.1 dev-libs/libuv/libuv-0.11.18.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.18.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.18.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libuv-0.11.18.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/libuv/libuv-0.11.18.ebuild,v 1.1 2014/01/27 01:01:43 hasufell Exp $
52
53 EAPI=5
54
55 inherit eutils autotools
56
57 DESCRIPTION="A new platform layer for Node"
58 HOMEPAGE="https://github.com/joyent/libuv"
59 SRC_URI="https://github.com/joyent/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="BSD BSD-2 ISC MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="static-libs"
65
66 DEPEND="virtual/pkgconfig"
67
68 src_prepare() {
69 echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
70 > m4/libuv-extra-automake-flags.m4 || die
71
72 eautoreconf
73 }
74
75 src_configure() {
76 econf \
77 $(use_enable static-libs static)
78 }
79
80 src_install() {
81 default
82 prune_libtool_files
83 }