Gentoo Archives: gentoo-commits

From: Ben de Groot <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/yngwin:master commit in: dev-libs/libuv/
Date: Thu, 27 Feb 2014 14:56:54
Message-Id: 1393507427.e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f.yngwin@gentoo
1 commit: e542305b6158c2ab7e6daa9f6e1fc38eadc15f1f
2 Author: Ben de Groot <yngwin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 27 13:23:47 2014 +0000
4 Commit: Ben de Groot <yngwin <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 27 13:23:47 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/yngwin.git;a=commit;h=e542305b
7
8 dev-libs/libuv version bump
9
10 ---
11 dev-libs/libuv/Manifest | 1 +
12 dev-libs/libuv/libuv-0.11.21.ebuild | 33 +++++++++++++++++++++++++++++++++
13 2 files changed, 34 insertions(+)
14
15 diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest
16 new file mode 100644
17 index 0000000..cbe23a7
18 --- /dev/null
19 +++ b/dev-libs/libuv/Manifest
20 @@ -0,0 +1 @@
21 +DIST libuv-0.11.21.tar.gz 380948 SHA256 f8da8e8c76b39550dbc4c5ea6cb99bfe961445079e67b6f5fb8c909fd4a026f9 SHA512 511bec3d69f22c506034705cc97936abda7bfa847ecd367a5063edec917b52c65712249c2a9eccf5ebbbb4b0c1e9c0139c451b27f9b69c2a8c45436e77e3f250 WHIRLPOOL 264597939f38407bc9e4b63c5193891556085b73cc7850eb3a4c8190d8d39750105e1e649978d3860e18b8d27e2738bed807517b9d98d75b22b56f752eec1979
22
23 diff --git a/dev-libs/libuv/libuv-0.11.21.ebuild b/dev-libs/libuv/libuv-0.11.21.ebuild
24 new file mode 100644
25 index 0000000..2c130c4
26 --- /dev/null
27 +++ b/dev-libs/libuv/libuv-0.11.21.ebuild
28 @@ -0,0 +1,33 @@
29 +# Copyright 1999-2014 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.18.ebuild,v 1.2 2014/02/16 21:17:10 maekke Exp $
32 +
33 +EAPI=5
34 +inherit eutils autotools
35 +
36 +DESCRIPTION="A new platform layer for Node"
37 +HOMEPAGE="https://github.com/joyent/libuv"
38 +SRC_URI="https://github.com/joyent/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="BSD BSD-2 ISC MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~x86"
43 +IUSE="static-libs"
44 +
45 +DEPEND="virtual/pkgconfig"
46 +
47 +src_prepare() {
48 + echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
49 + > m4/libuv-extra-automake-flags.m4 || die
50 +
51 + eautoreconf
52 +}
53 +
54 +src_configure() {
55 + econf $(use_enable static-libs static)
56 +}
57 +
58 +src_install() {
59 + default
60 + prune_libtool_files
61 +}