Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/
Date: Sat, 26 Jun 2021 12:09:41
Message-Id: 1624709374.75daffe0ace3e5cedff64e01182b77fd98989982.slyfox@gentoo
1 commit: 75daffe0ace3e5cedff64e01182b77fd98989982
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 26 12:09:34 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 26 12:09:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75daffe0
7
8 net-dns/libidn2: drop old
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 net-dns/libidn2/Manifest | 1 -
14 net-dns/libidn2/libidn2-2.3.0.ebuild | 54 ------------------------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/net-dns/libidn2/Manifest b/net-dns/libidn2/Manifest
18 index 46939a1db36..b26509ac5d4 100644
19 --- a/net-dns/libidn2/Manifest
20 +++ b/net-dns/libidn2/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST libidn2-2.3.0.tar.gz 2164993 BLAKE2B 3c103831c39fa3fd0340c9c45f3f683483207ade9cadc8d85b046a698f75bbe5ce6829de69a5cb238404d243b7a39ef44d69ea4ea80c22b813eafbacae615a8b SHA512 a2bf6d2249948bce14fbbc802f8af1c9b427fc9bf64203a2f3d7239d8e6061d0a8e7970a23e8e5889110a654a321e0504c7a6d049bb501e7f6a23d42b50b6187
23 DIST libidn2-2.3.1.tar.gz 2188338 BLAKE2B 323840b0d84f41cc746ca9b5a24169a374e95bd4669b96d7b62ac3304f6d78195acef7739628cf7e31cf7b230ffb60f74961c3e22693571fd2fc7cbb35f1ac23 SHA512 4d77a4a79e08a05e46fc14827f987b9e7645ebf5d0c0869eb96f9902c2f6b73ea69fd6f9f97b80a9f07cce84f7aa299834df91485d4e7c16500d31a4b9865fe4
24 DIST libidn2-2.3.1.tar.gz.sig 488 BLAKE2B 2e1428ec240964fcdc1dbe96afa69920e5f5439ebf9c58e134832ceab932aef57176744a8fdf76ca29e73650c18406ec894b8e92dd95d52cb712bf7f823ca820 SHA512 2db4bb3a11562634276664fb857306271c6ebc96cf5e90b39b404c3fe47190ec65ce3866cebcfa0c1216d29d7aed8c7907b869e602a722db1cf8f6ab94da9c78
25
26 diff --git a/net-dns/libidn2/libidn2-2.3.0.ebuild b/net-dns/libidn2/libidn2-2.3.0.ebuild
27 deleted file mode 100644
28 index 7af65a4869d..00000000000
29 --- a/net-dns/libidn2/libidn2-2.3.0.ebuild
30 +++ /dev/null
31 @@ -1,54 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -inherit multilib-minimal toolchain-funcs
37 -
38 -DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)"
39 -HOMEPAGE="https://www.gnu.org/software/libidn/#libidn2 https://gitlab.com/libidn/libidn2"
40 -SRC_URI="
41 - mirror://gnu/libidn/${P}.tar.gz
42 -"
43 -
44 -LICENSE="GPL-2+ LGPL-3+"
45 -SLOT="0/2"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~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"
47 -IUSE="static-libs"
48 -
49 -RDEPEND="
50 - dev-libs/libunistring:=[${MULTILIB_USEDEP}]
51 -"
52 -DEPEND="${RDEPEND}"
53 -BDEPEND="
54 - dev-lang/perl
55 - sys-apps/help2man
56 -"
57 -S=${WORKDIR}/${P/a/}
58 -
59 -src_prepare() {
60 - default
61 -
62 - if [[ ${CHOST} == *-darwin* ]] ; then
63 - # Darwin ar chokes when TMPDIR doesn't exist (as done for some
64 - # reason in the Makefile)
65 - sed -i -e '/^TMPDIR = /d' Makefile.in || die
66 - export TMPDIR="${T}"
67 - fi
68 -
69 - multilib_copy_sources
70 -}
71 -
72 -multilib_src_configure() {
73 - econf \
74 - CC_FOR_BUILD="$(tc-getBUILD_CC)" \
75 - $(use_enable static-libs static) \
76 - --disable-doc \
77 - --disable-gcc-warnings \
78 - --disable-gtk-doc
79 -}
80 -
81 -multilib_src_install() {
82 - default
83 -
84 - find "${D}" -name '*.la' -delete || die
85 -}