Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/
Date: Sun, 29 Jan 2023 07:45:40
Message-Id: 1674977717.6cf9b5a3e7090b114c9111fb29676908a91e6b6b.sam@gentoo
1 commit: 6cf9b5a3e7090b114c9111fb29676908a91e6b6b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 07:35:17 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 07:35:17 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf9b5a3
7
8 net-dns/c-ares: drop 1.17.2
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-dns/c-ares/Manifest | 1 -
13 net-dns/c-ares/c-ares-1.17.2.ebuild | 62 -------------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest
17 index 5cde624b8679..8191d14c6a84 100644
18 --- a/net-dns/c-ares/Manifest
19 +++ b/net-dns/c-ares/Manifest
20 @@ -1,2 +1 @@
21 -DIST c-ares-1.17.2.tar.gz 1538276 BLAKE2B c6f5ad65ca75f8467b624daf3caaee2f35d6e4714ce46ebe1bbf79447feecf8615915b00fa5e7bd1e97c6232864e06c53a792fbadf36a5399883529769273e24 SHA512 f625e0ef8508af6475d3e83b51ab29be8a4878e2a87e7f518bea046b76a74bfde7043ca6ec2a9e714c898ab9e5d4a5a678c3347a9f9eb68980438f7ca8ae3fc8
22 DIST c-ares-1.18.1.tar.gz 1560165 BLAKE2B c03a572726c6bbb24a3e4773673d0c87f4833bb9582aed57a424eea8c965beb6e232f502b61922b124d37403d91ebfefe0db7373673fc22e0d752c4e5036eb07 SHA512 1276ec0799916019f8c0af6b55a139701bd15e0ca4a00811d07963893978bc96c107b980f0fd49f81aa70bc8b3b8cd671195ba357c390772d4c2c5643c50c5a5
23
24 diff --git a/net-dns/c-ares/c-ares-1.17.2.ebuild b/net-dns/c-ares/c-ares-1.17.2.ebuild
25 deleted file mode 100644
26 index 631a0a16598d..000000000000
27 --- a/net-dns/c-ares/c-ares-1.17.2.ebuild
28 +++ /dev/null
29 @@ -1,62 +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 multilib-minimal
36 -
37 -DESCRIPTION="C library that resolves names asynchronously"
38 -HOMEPAGE="https://c-ares.haxx.se/"
39 -SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz"
40 -
41 -# Subslot = SONAME of libcares.so.2
42 -SLOT="0/2"
43 -LICENSE="MIT"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc64-solaris"
45 -IUSE="static-libs test"
46 -RESTRICT="!test? ( test )"
47 -
48 -DOCS=( AUTHORS CHANGES NEWS README.md RELEASE-NOTES TODO )
49 -
50 -MULTILIB_WRAPPED_HEADERS=(
51 - /usr/include/ares_build.h
52 -)
53 -
54 -multilib_src_configure() {
55 - # Needed for running unit tests only
56 - # Violates sandbox and tests pass fine without
57 - ax_cv_uts_namespace=no \
58 - ax_cv_user_namespace=no \
59 - ECONF_SOURCE="${S}" \
60 - econf \
61 - --enable-nonblocking \
62 - --enable-symbol-hiding \
63 - $(use_enable static-libs static) \
64 - $(use_enable test tests)
65 -}
66 -
67 -multilib_src_test() {
68 - cd "${BUILD_DIR}"/test || die
69 -
70 - # We're skipping the "real" network tests with the filter
71 - # see https://github.com/c-ares/c-ares/tree/main/test
72 - local network_tests=(
73 - # Most live tests have Live in the name
74 - *Live*
75 - # These don't but are still in ares-test-live.cc => live
76 - *GetTCPSock*
77 - *TimeoutValue*
78 - *GetSock*
79 - *GetSock_virtualized*
80 - )
81 -
82 - # The format for disabling test1, test2, and test3 looks like:
83 - # -test1:test2:test3
84 - ./arestest --gtest_filter=-$(echo $(IFS=:; echo "${network_tests[*]}")) || die "arestest failed!"
85 -}
86 -
87 -multilib_src_install_all() {
88 - einstalldocs
89 -
90 - find "${ED}" -name "*.la" -delete || die
91 -}