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-1.1.0.ebuild ChangeLog
Date: Tue, 30 Dec 2014 15:23:39
Message-Id: 20141230152333.43A78E804@oystercatcher.gentoo.org
1 hasufell 14/12/30 15:23:33
2
3 Modified: ChangeLog
4 Added: libuv-1.1.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.28 dev-libs/libuv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 29 Aug 2014 01:33:49 -0000 1.27
24 +++ ChangeLog 30 Dec 2014 15:23:33 -0000 1.28
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.27 2014/08/29 01:33:49 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libuv/ChangeLog,v 1.28 2014/12/30 15:23:33 hasufell Exp $
30 +
31 +*libuv-1.1.0 (30 Dec 2014)
32 +
33 + 30 Dec 2014; Julian Ospald <hasufell@g.o> +libuv-1.1.0.ebuild:
34 + version bump
35
36 29 Aug 2014; Anthony G. Basile <blueness@g.o> libuv-0.11.25-r1.ebuild,
37 libuv-0.11.26.ebuild, libuv-0.11.27.ebuild, libuv-0.11.29.ebuild:
38
39
40
41 1.1 dev-libs/libuv/libuv-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libuv/libuv-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libuv-1.1.0.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-1.1.0.ebuild,v 1.1 2014/12/30 15:23:33 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/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="BSD BSD-2 ISC MIT"
61 SLOT="0/1"
62 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~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 sed -i \
72 -e '/libuv_la_CFLAGS/s#-g##' \
73 Makefile.am || die "fixing CFLAGS failed!"
74
75 eautoreconf
76 }
77
78 multilib_src_configure() {
79 ECONF_SOURCE="${S}" econf \
80 $(use_enable static-libs static)
81 }
82
83 multilib_src_test() {
84 mkdir "${BUILD_DIR}"/test || die
85 cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
86 default
87 }
88
89 multilib_src_install_all() {
90 einstalldocs
91 prune_libtool_files
92 }