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.27.ebuild ChangeLog
Date: Fri, 01 Aug 2014 22:07:19
Message-Id: 20140801220651.317902004E@flycatcher.gentoo.org
1 hasufell 14/08/01 22:06:50
2
3 Modified: ChangeLog
4 Added: libuv-0.11.27.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.22 dev-libs/libuv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 1 Jul 2014 13:29:00 -0000 1.21
24 +++ ChangeLog 1 Aug 2014 22:06:50 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libuv
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.21 2014/07/01 13:29:00 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.22 2014/08/01 22:06:50 hasufell Exp $
30 +
31 +*libuv-0.11.27 (01 Aug 2014)
32 +
33 + 01 Aug 2014; Julian Ospald <hasufell@g.o> +libuv-0.11.27.ebuild:
34 + version bump
35
36 *libuv-0.11.26 (01 Jul 2014)
37
38
39
40
41 1.1 dev-libs/libuv/libuv-0.11.27.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.27.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.27.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libuv-0.11.27.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/libuv-0.11.27.ebuild,v 1.1 2014/08/01 22:06:50 hasufell Exp $
51
52 EAPI=5
53
54 inherit eutils autotools multilib-minimal
55
56 DESCRIPTION="A new platform layer for Node"
57 HOMEPAGE="https://github.com/joyent/libuv"
58 SRC_URI="https://github.com/joyent/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="BSD BSD-2 ISC MIT"
61 SLOT="0/11"
62 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
63 IUSE="static-libs"
64
65 DEPEND="virtual/pkgconfig"
66
67 src_prepare() {
68 echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
69 > m4/libuv-extra-automake-flags.m4 || die
70
71 eautoreconf
72 }
73
74 multilib_src_configure() {
75 ECONF_SOURCE="${S}" econf \
76 $(use_enable static-libs static)
77 }
78
79 multilib_src_test() {
80 mkdir "${BUILD_DIR}"/test || die
81 cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
82 default
83 }
84
85 multilib_src_install_all() {
86 einstalldocs
87 prune_libtool_files
88 }