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