Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/
Date: Tue, 22 Dec 2020 22:31:30
Message-Id: 1608676284.92e21586473eff92ce8f2b3381487477df39dd60.whissi@gentoo
1 commit: 92e21586473eff92ce8f2b3381487477df39dd60
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 22:31:10 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 22:31:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e21586
7
8 net-dns/c-ares: security cleanup (bug #754939)
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 net-dns/c-ares/Manifest | 1 -
14 net-dns/c-ares/c-ares-1.16.1.ebuild | 42 -------------------------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest
18 index e3cae6e2612..8eec62a363a 100644
19 --- a/net-dns/c-ares/Manifest
20 +++ b/net-dns/c-ares/Manifest
21 @@ -1,2 +1 @@
22 -DIST c-ares-1.16.1.tar.gz 1374637 BLAKE2B 0d87538f5d6cac5b6b9c92d6ba5525af0e580e6506bee9270318f0951aaccdc7e135b446381e8150241d367789ccf2f73dbb333d45de4dbb5a87af05483063a8 SHA512 4ac2a5d5c6da74eb1d6155c4eadc7127ab1b53a8d13caec41bd6172db5417a79f3ab022e77ba37d8b13da6893d7ced5fd8baf5cc3950a4154b4de8743ad31471
23 DIST c-ares-1.17.1.tar.gz 1518701 BLAKE2B 31dac21ecae231e2a201dc1ba954c1a0663a06f93eb8e7e033ca3c6d385f53e07af0b04854739f1ee8a7f0693f67f620143e152ef092b49342c62279a0480905 SHA512 b11887bcc9274d368088e1a8b6aca62414f20675cf0bc58e948f54fa04c327c39dd23cefe7509eec6397db14b550a3f6b77f5c18b3d735b3eef48ce2da1dcd00
24
25 diff --git a/net-dns/c-ares/c-ares-1.16.1.ebuild b/net-dns/c-ares/c-ares-1.16.1.ebuild
26 deleted file mode 100644
27 index b2ec52821ee..00000000000
28 --- a/net-dns/c-ares/c-ares-1.16.1.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools eutils 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 ~x86-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 -src_prepare() {
56 - eapply "${FILESDIR}"/${PN}-1.12.0-remove-tests.patch
57 - eapply_user
58 - eautoreconf
59 -}
60 -
61 -multilib_src_configure() {
62 - ECONF_SOURCE=${S} \
63 - econf \
64 - --enable-nonblocking \
65 - --enable-symbol-hiding \
66 - $(use_enable static-libs static)
67 -}
68 -
69 -multilib_src_install_all() {
70 - einstalldocs
71 - find "${ED}" -name "*.la" -delete || die
72 -}