Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/
Date: Tue, 07 Sep 2021 18:17:51
Message-Id: 1631038654.5e49c8223e622489b8b1f38377a014f950bcbbc1.blueness@gentoo
1 commit: 5e49c8223e622489b8b1f38377a014f950bcbbc1
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 7 18:17:34 2021 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 7 18:17:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e49c822
7
8 net-dns/c-ares: remove vulnerable version, bug #807775
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 net-dns/c-ares/Manifest | 1 -
14 net-dns/c-ares/c-ares-1.17.1.ebuild | 37 -------------------------------------
15 2 files changed, 38 deletions(-)
16
17 diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest
18 index 99b1551d21e..38e443759ab 100644
19 --- a/net-dns/c-ares/Manifest
20 +++ b/net-dns/c-ares/Manifest
21 @@ -1,2 +1 @@
22 -DIST c-ares-1.17.1.tar.gz 1518701 BLAKE2B 31dac21ecae231e2a201dc1ba954c1a0663a06f93eb8e7e033ca3c6d385f53e07af0b04854739f1ee8a7f0693f67f620143e152ef092b49342c62279a0480905 SHA512 b11887bcc9274d368088e1a8b6aca62414f20675cf0bc58e948f54fa04c327c39dd23cefe7509eec6397db14b550a3f6b77f5c18b3d735b3eef48ce2da1dcd00
23 DIST c-ares-1.17.2.tar.gz 1538276 BLAKE2B c6f5ad65ca75f8467b624daf3caaee2f35d6e4714ce46ebe1bbf79447feecf8615915b00fa5e7bd1e97c6232864e06c53a792fbadf36a5399883529769273e24 SHA512 f625e0ef8508af6475d3e83b51ab29be8a4878e2a87e7f518bea046b76a74bfde7043ca6ec2a9e714c898ab9e5d4a5a678c3347a9f9eb68980438f7ca8ae3fc8
24
25 diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild b/net-dns/c-ares/c-ares-1.17.1.ebuild
26 deleted file mode 100644
27 index 7a5e47f1060..00000000000
28 --- a/net-dns/c-ares/c-ares-1.17.1.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools multilib-minimal
37 -
38 -DESCRIPTION="C library that resolves names asynchronously"
39 -HOMEPAGE="https://c-ares.haxx.se/"
40 -SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -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"
44 -IUSE="static-libs"
45 -
46 -# Subslot = SONAME of libcares.so.2
47 -SLOT="0/2"
48 -
49 -DOCS=( AUTHORS CHANGES NEWS README.md RELEASE-NOTES TODO )
50 -
51 -MULTILIB_WRAPPED_HEADERS=(
52 - /usr/include/ares_build.h
53 -)
54 -
55 -multilib_src_configure() {
56 - ECONF_SOURCE=${S} \
57 - econf \
58 - --enable-nonblocking \
59 - --enable-symbol-hiding \
60 - --disable-tests \
61 - $(use_enable static-libs static)
62 -}
63 -
64 -multilib_src_install_all() {
65 - einstalldocs
66 - find "${ED}" -name "*.la" -delete || die
67 -}