From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8149F1395E4 for ; Sun, 13 Nov 2016 19:48:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC7B321C06D; Sun, 13 Nov 2016 19:48:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9448821C073 for ; Sun, 13 Nov 2016 19:48:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 383E9341592 for ; Sun, 13 Nov 2016 19:48:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6690324BB for ; Sun, 13 Nov 2016 19:48:41 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1479066503.0b91fffd27a0db4a12eecfa951059f26098096f7.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libuv/libuv-1.9.1.ebuild X-VCS-Directories: dev-libs/libuv/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 0b91fffd27a0db4a12eecfa951059f26098096f7 X-VCS-Branch: master Date: Sun, 13 Nov 2016 19:48:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31ffc453-9991-416e-950e-93405ad2889d X-Archives-Hash: 17c6d76b568f6df6d902ebce50c8d6dc commit: 0b91fffd27a0db4a12eecfa951059f26098096f7 Author: Lars Wendler gentoo org> AuthorDate: Sun Nov 13 19:33:08 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Nov 13 19:48:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b91fffd dev-libs/libuv: Removed old. Package-Manager: portage-2.3.2 dev-libs/libuv/libuv-1.9.1.ebuild | 44 --------------------------------------- 1 file changed, 44 deletions(-) diff --git a/dev-libs/libuv/libuv-1.9.1.ebuild b/dev-libs/libuv/libuv-1.9.1.ebuild deleted file mode 100644 index 82c4950..00000000 --- a/dev-libs/libuv/libuv-1.9.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -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() { - 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 -}