forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-libs/libuv: Bump to version 1.10.0
Package-Manager: portage-2.3.2
- Loading branch information
Lars Wendler
committed
Nov 13, 2016
1 parent
9301e93
commit a4244c6
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST libuv-1.10.0.tar.gz 1072589 SHA256 50f4ed57d65af4ab634e2cbdd90c49213020e15b4d77d3631feb633cbba9239f SHA512 bbe661911ffbb9d3b9ff2e1475812c03f620859f6e794717968f4817e427c38f42a92579ff6450cf6641da60e5156bcd189b3f184cc204a39527b1700327c747 WHIRLPOOL 4f3e26de63e3c061034c87076772d2c0603c4129fd08f5659040c415e9593a33926499cfcfd964240e06d0e29ddb4c1c59e9e0ab0655da6c47cb1b9d99b2c0b8 | ||
DIST libuv-1.4.2.tar.gz 1017992 SHA256 b9e424f69db0d1c3035c5f871cd9d7a3f4bace0a4db3e974bdbfa0cf95f6b741 SHA512 a2ee23d957b4b2c486c01a8ca0814cb42853d3496edcf2c39228fe9259317699954bd222abbcc4e7fda81b936ecfd64be3472230b319e8caab8e4bba0c835ced WHIRLPOOL 53727ec56b274523e445b23160a6a42d8b7fdf5b298480f0819a0cd4a19d811b59d00756eec2c9d69a34d8add96ff6103b44752df06d1346a13f2c979f52cc4a | ||
DIST libuv-1.8.0.tar.gz 1048022 SHA256 906e1a5c673c95cb261adeacdb7308a65b4a8f7c9c50d85f3021364951fa9cde SHA512 51d5940873a771278c24a697f0da5c9cb7f42c192daa14254cff9309af600a1b343f1f39272f88d4cd0158f7b15bc966fb7e0b67b9590295fe4d9f0a7c6572b4 WHIRLPOOL ce9c49d5ba646458daa60e3f935d2f53483570d6dc34a8515c875115377929271bbc113c4c382054e9b1dbe4c04e04c2381f90d0776d69b064fb72169b6b4060 | ||
DIST libuv-1.9.1.tar.gz 1060134 SHA256 a6ca9f0648973d1463f46b495ce546ddcbe7cce2f04b32e802a15539e46c57ad SHA512 ad5f274f75c4c19bedbdeed8204ef8561b8c6a2697650402bf21cbf40ace35c104e089b42adc737d27b4a105283d9463ac02b6dadaec29aa6469f10b69ab3d0a WHIRLPOOL 0b653dc69255596cd7ce7e8ba505f39aa95a0ca08d0fc20dbad56796a5588f2d90fd920fe8977dc36d3eec11706c8ebc4f5e1730bc4171d979b11f7a9615faaf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit autotools eutils multilib-minimal | ||
|
||
DESCRIPTION="Cross-platform asychronous I/O" | ||
HOMEPAGE="https://github.com/libuv/libuv" | ||
SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="BSD BSD-2 ISC MIT" | ||
SLOT="0/1" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" | ||
IUSE="static-libs" | ||
RESTRICT="test" | ||
|
||
DEPEND="sys-devel/libtool | ||
virtual/pkgconfig[${MULTILIB_USEDEP}]" | ||
|
||
src_prepare() { | ||
default | ||
|
||
echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \ | ||
> m4/libuv-extra-automake-flags.m4 || die | ||
|
||
eautoreconf | ||
} | ||
|
||
multilib_src_configure() { | ||
ECONF_SOURCE="${S}" econf \ | ||
cc_cv_cflags__g=no \ | ||
$(use_enable static-libs static) | ||
} | ||
|
||
multilib_src_test() { | ||
mkdir "${BUILD_DIR}"/test || die | ||
cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die | ||
default | ||
} | ||
|
||
multilib_src_install_all() { | ||
einstalldocs | ||
prune_libtool_files | ||
} |