Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/
Date: Thu, 29 Sep 2022 13:42:04
Message-Id: 1664458087.0ee230b800453fe60225f424f14e717a28a9bdc9.asturm@gentoo
1 commit: 0ee230b800453fe60225f424f14e717a28a9bdc9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 29 13:28:07 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 13:28:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee230b8
7
8 dev-libs/libuv: drop 1.44.1
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 dev-libs/libuv/Manifest | 1 -
13 dev-libs/libuv/libuv-1.44.1.ebuild | 58 --------------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest
17 index 8d0248811d5a..6103274ae2f3 100644
18 --- a/dev-libs/libuv/Manifest
19 +++ b/dev-libs/libuv/Manifest
20 @@ -1,2 +1 @@
21 -DIST libuv-1.44.1.tar.gz 1301786 BLAKE2B 34418fbf8ddffe368b4df8f8b668888ec9f3e369c0d8794efa993ace5c37a3359a020d7868b9287b31abece6d0d3cf839ca412e959a4ee970650755f37247c29 SHA512 050b5f91540d126bef0a35681f8dd347296d3be32671b1c785494e78f5367b4ab064ece3f594523e09b08bcac284377d5fb123ba441fb570d25c5146aa484c8e
22 DIST libuv-1.44.2.tar.gz 1309062 BLAKE2B 883a1fbffcd8f55bf28ea5a79ed18aa3e2f2fac126285e8aca2ef9370eafc62f69f95ddb8bf27d4159e038bfb0a01abafdf0dadbc4309e5d31f0e77057ee84ac SHA512 d21c890787b0b364fafa5fc0cbbff296bc2ca269e1991d2f7f35fcb37b8634da377466f5af5a4245425fcf876ae6870d100ab32b12bce64f8e0b01fd25a1bc83
23
24 diff --git a/dev-libs/libuv/libuv-1.44.1.ebuild b/dev-libs/libuv/libuv-1.44.1.ebuild
25 deleted file mode 100644
26 index b71cb1bbda54..000000000000
27 --- a/dev-libs/libuv/libuv-1.44.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit autotools multilib-minimal
36 -
37 -DESCRIPTION="Cross-platform asychronous I/O"
38 -HOMEPAGE="https://github.com/libuv/libuv"
39 -
40 -if [[ ${PV} = 9999* ]]; then
41 - EGIT_REPO_URI="https://github.com/libuv/libuv.git"
42 - inherit git-r3
43 -else
44 - SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -fi
47 -
48 -LICENSE="BSD BSD-2 ISC MIT"
49 -SLOT="0/1"
50 -
51 -BDEPEND="
52 - sys-devel/libtool
53 - virtual/pkgconfig
54 -"
55 -
56 -src_prepare() {
57 - default
58 -
59 - echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
60 - > m4/libuv-extra-automake-flags.m4 || die
61 -
62 - if [[ ${CHOST} == *-darwin* && ${CHOST##*darwin} -le 9 ]] ; then
63 - eapply "${FILESDIR}"/${PN}-1.41.0-darwin.patch
64 - fi
65 -
66 - # upstream fails to ship a configure script
67 - eautoreconf
68 -}
69 -
70 -multilib_src_configure() {
71 - local myeconfargs=(
72 - --disable-static
73 - cc_cv_cflags__g=no
74 - )
75 -
76 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
77 -}
78 -
79 -multilib_src_test() {
80 - cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
81 - default
82 -}
83 -
84 -multilib_src_install_all() {
85 - einstalldocs
86 - find "${ED}" -name '*.la' -delete || die
87 -}