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.29.ebuild ChangeLog libuv-0.11.22-r1.ebuild libuv-0.11.24.ebuild libuv-0.11.22.ebuild
Date: Sun, 24 Aug 2014 16:35:09
Message-Id: 20140824163504.D50403CF7@oystercatcher.gentoo.org
1 hasufell 14/08/24 16:35:04
2
3 Modified: ChangeLog
4 Added: libuv-0.11.29.ebuild
5 Removed: libuv-0.11.22-r1.ebuild libuv-0.11.24.ebuild
6 libuv-0.11.22.ebuild
7 Log:
8 version bump, rm old
9
10 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
11
12 Revision Changes Path
13 1.25 dev-libs/libuv/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.25&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.25&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?r1=1.24&r2=1.25
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
22 retrieving revision 1.24
23 retrieving revision 1.25
24 diff -u -r1.24 -r1.25
25 --- ChangeLog 21 Aug 2014 12:51:36 -0000 1.24
26 +++ ChangeLog 24 Aug 2014 16:35:04 -0000 1.25
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-libs/libuv
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.24 2014/08/21 12:51:36 armin76 Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.25 2014/08/24 16:35:04 hasufell Exp $
32 +
33 +*libuv-0.11.29 (24 Aug 2014)
34 +
35 + 24 Aug 2014; Julian Ospald <hasufell@g.o> -libuv-0.11.22.ebuild,
36 + -libuv-0.11.22-r1.ebuild, -libuv-0.11.24.ebuild, +libuv-0.11.29.ebuild:
37 + version bump, rm old
38
39 21 Aug 2014; Raúl Porcel <armin76@g.o> libuv-0.11.22.ebuild,
40 libuv-0.11.22-r1.ebuild, libuv-0.11.24.ebuild, libuv-0.11.25-r1.ebuild,
41
42
43
44 1.1 dev-libs/libuv/libuv-0.11.29.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.29.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-0.11.29.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libuv-0.11.29.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.29.ebuild,v 1.1 2014/08/24 16:35:04 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 ~sparc ~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 eautoreconf
75 }
76
77 multilib_src_configure() {
78 ECONF_SOURCE="${S}" econf \
79 $(use_enable static-libs static)
80 }
81
82 multilib_src_test() {
83 mkdir "${BUILD_DIR}"/test || die
84 cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
85 default
86 }
87
88 multilib_src_install_all() {
89 einstalldocs
90 prune_libtool_files
91 }