Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libuv/
Date: Tue, 17 May 2022 06:52:37
Message-Id: 1652770349.c304fb1f0395212d750491cbb75a4ada4804e73f.jsmolic@gentoo
1 commit: c304fb1f0395212d750491cbb75a4ada4804e73f
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 17 06:52:09 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Tue May 17 06:52:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c304fb1f
7
8 dev-libs/libuv: drop 1.43.0
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-libs/libuv/Manifest | 1 -
13 dev-libs/libuv/libuv-1.43.0.ebuild | 58 --------------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest
17 index 44d80aff8dd1..655848b12f86 100644
18 --- a/dev-libs/libuv/Manifest
19 +++ b/dev-libs/libuv/Manifest
20 @@ -1,2 +1 @@
21 -DIST libuv-1.43.0.tar.gz 1295972 BLAKE2B 82cf4a0eff25aaf941eaa1b04030af1d21b758c0a99ba9cd3a13753879dcbea4f167d94b8e67de4d5674e02f84f9902198faa3159fc7e8f51d52391e842f46b8 SHA512 66ee11f8f6fc1313c432858572789cf67acd6364b29a06c73323ab20626e2d6e3d3dcea748cf5d9d4368b40ad7fe0d5fd35e9369c22e531db523703f005248d3
22 DIST libuv-1.44.1.tar.gz 1301786 BLAKE2B 34418fbf8ddffe368b4df8f8b668888ec9f3e369c0d8794efa993ace5c37a3359a020d7868b9287b31abece6d0d3cf839ca412e959a4ee970650755f37247c29 SHA512 050b5f91540d126bef0a35681f8dd347296d3be32671b1c785494e78f5367b4ab064ece3f594523e09b08bcac284377d5fb123ba441fb570d25c5146aa484c8e
23
24 diff --git a/dev-libs/libuv/libuv-1.43.0.ebuild b/dev-libs/libuv/libuv-1.43.0.ebuild
25 deleted file mode 100644
26 index f257414de42a..000000000000
27 --- a/dev-libs/libuv/libuv-1.43.0.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=7
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 ~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 -}