Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/
Date: Tue, 31 Jan 2023 14:17:52
Message-Id: 1675174665.1550b0b6a0695e7e68c403a50ac37bf0a9aa78f3.candrews@gentoo
1 commit: 1550b0b6a0695e7e68c403a50ac37bf0a9aa78f3
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 14:16:06 2023 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 14:17:45 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1550b0b6
7
8 net-libs/ngtcp2: drop 0.10.0
9
10 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
11
12 net-libs/ngtcp2/Manifest | 1 -
13 net-libs/ngtcp2/ngtcp2-0.10.0.ebuild | 51 ------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/net-libs/ngtcp2/Manifest b/net-libs/ngtcp2/Manifest
17 index 781b439d76a4..df930f0f92bd 100644
18 --- a/net-libs/ngtcp2/Manifest
19 +++ b/net-libs/ngtcp2/Manifest
20 @@ -1,2 +1 @@
21 -DIST ngtcp2-0.10.0.tar.xz 582248 BLAKE2B 11c7153742657afc2df3b339e95e66e1ebc657ac251e6f1c742fb091277a4f3364e57322994f7a947e97cb0fdaa786fb48635e35b33346f1c04ef3f73d9a8128 SHA512 40ace3188ad53293df80a0f3fb144ced21897089026a18f90f45fe2aaa0d0f18ad184666a08d96263942573ed96ffa65b5f1837a008bd348a9c68c82e7508310
22 DIST ngtcp2-0.13.0.tar.xz 583788 BLAKE2B bf704f546560695831ce38f75639201f77e32704040bdf4241d1cf8251b308490a833de543772c040853dba314fcd916974958f6619dda500ee9f199f7a71d0f SHA512 a14b0363edabdce595bf7eeb04a5664c69c87d43ffeb1ec1b1b801c6428a65e3fb202fddedb0696ced6511ad94793b3cd75972148b144d52606a1da944487b80
23
24 diff --git a/net-libs/ngtcp2/ngtcp2-0.10.0.ebuild b/net-libs/ngtcp2/ngtcp2-0.10.0.ebuild
25 deleted file mode 100644
26 index b46e1455bcb4..000000000000
27 --- a/net-libs/ngtcp2/ngtcp2-0.10.0.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit cmake-multilib
36 -
37 -if [[ ${PV} == 9999 ]] ; then
38 - EGIT_REPO_URI="https://github.com/ngtcp2/ngtcp2.git"
39 - inherit git-r3
40 -else
41 - SRC_URI="https://github.com/ngtcp2/ngtcp2/releases/download/v${PV}/${P}.tar.xz"
42 - KEYWORDS="~amd64 ~hppa ~riscv ~x86"
43 -fi
44 -
45 -DESCRIPTION="Implementation of the IETF QUIC Protocol"
46 -HOMEPAGE="https://github.com/ngtcp2/ngtcp2/"
47 -
48 -LICENSE="MIT"
49 -SLOT="0/0"
50 -IUSE="+gnutls openssl +ssl test"
51 -REQUIRED_USE="ssl? ( || ( gnutls openssl ) )"
52 -
53 -BDEPEND="virtual/pkgconfig"
54 -RDEPEND="
55 - ssl? (
56 - gnutls? ( >=net-libs/gnutls-3.7.2:0= )
57 - openssl? (
58 - >=dev-libs/openssl-1.1.1:0=
59 - )
60 - )"
61 -DEPEND="${RDEPEND}
62 - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
63 -RESTRICT="!test? ( test )"
64 -
65 -multilib_src_configure() {
66 - local mycmakeargs=(
67 - -DENABLE_GNUTLS=$(usex gnutls)
68 - -DENABLE_OPENSSL=$(usex openssl)
69 - -DENABLE_BORINGSSL=OFF
70 - -DENABLE_PICOTLS=OFF
71 - -DENABLE_WOLFSSL=OFF
72 - -DCMAKE_DISABLE_FIND_PACKAGE_Libev=ON
73 - -DCMAKE_DISABLE_FIND_PACKAGE_Libnghttp3=ON
74 - )
75 - cmake_src_configure
76 -}
77 -
78 -multilib_src_test() {
79 - cmake_build check
80 -}