public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/
Date: Mon, 25 Nov 2024 14:30:55 +0000 (UTC)	[thread overview]
Message-ID: <1732545052.a6ce9086703374404f7212c90cd239cae874b2a5.candrews@gentoo> (raw)

commit:     a6ce9086703374404f7212c90cd239cae874b2a5
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 25 14:30:43 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Nov 25 14:30:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ce9086

net-libs/ngtcp2: add 1.9.1

Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/ngtcp2/Manifest            |  1 +
 net-libs/ngtcp2/ngtcp2-1.9.1.ebuild | 53 +++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/net-libs/ngtcp2/Manifest b/net-libs/ngtcp2/Manifest
index b154d8084ca4..c4eb2fa96b6b 100644
--- a/net-libs/ngtcp2/Manifest
+++ b/net-libs/ngtcp2/Manifest
@@ -3,3 +3,4 @@ DIST ngtcp2-1.7.0.tar.xz 631072 BLAKE2B 1a1ce134c54974418c0cf0bacc09a770e29cd7c7
 DIST ngtcp2-1.8.0.tar.xz 632052 BLAKE2B efa8de7e8405c1360de1c8043e66e236024cacebd8be7564e2575cc568daede15ca6ceafa415b7c579a4fc205a507d6731cbff5c5a88dfab70e356f846012150 SHA512 4bb838ed94977515ad7fcd86bbafddfb9733264999b268c109b8f487caf01967b0e6d9d0791f19aa549177a375a7d4182662f14b09e7dc5240fa03b68de16235
 DIST ngtcp2-1.8.1.tar.xz 625204 BLAKE2B c86e975d0c41971c3671d31e152a1b65950135ea8a7c120665ef8466484da1c7d4543afd5552a917dae7bc241c9e66a4729c06be4d9e101952b9e5ce7d4ab66e SHA512 18728ee0376de319a99c3c5a294a7250a8fefa82fd530f0f2882540da2bada2451644898561be6bb6d95e6c8b7e129337edefe3e71d5ca820beb67db0db7d331
 DIST ngtcp2-1.9.0.tar.xz 636976 BLAKE2B 333dba2ca972dc9a119f118014fb7879d78f2a919e4c9905f2e11dc3fde09fe9ac114f83a9024b9465d360dea4f3f9f190dd2f06469e940689b5f11c068c6035 SHA512 2ecec2ec968878caa41df621a9054cca00b1b7b96dedc7c9c6f46b3c5e7534d9b07c985bdfc5e762ee68751e40ba06318aa54948ec01219eee4156f717e85b8c
+DIST ngtcp2-1.9.1.tar.xz 633404 BLAKE2B ee0802acbfc5b1e2dd601090c3a8cd58494132a144c3532c61b8b78e1e0f34ca554c3a351d479db0bd04dea8088c52073871ae29dd1027157eb8c354f856bd8c SHA512 2f1ea7c97b248cbcfc2d616c2285e8d105176d94642649e4629fba279ebdd92424bcc6a96517e17e12005cb64bc2e9bbc0c54bb9da7f49337b6d8257e5be963b

diff --git a/net-libs/ngtcp2/ngtcp2-1.9.1.ebuild b/net-libs/ngtcp2/ngtcp2-1.9.1.ebuild
new file mode 100644
index 000000000000..789b94518acb
--- /dev/null
+++ b/net-libs/ngtcp2/ngtcp2-1.9.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib
+
+if [[ ${PV} == 9999 ]] ; then
+	EGIT_REPO_URI="https://github.com/ngtcp2/ngtcp2.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/ngtcp2/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+fi
+
+DESCRIPTION="Implementation of the IETF QUIC Protocol"
+HOMEPAGE="https://github.com/ngtcp2/ngtcp2/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="+gnutls openssl +ssl static-libs test"
+REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	ssl? (
+		gnutls? ( >=net-libs/gnutls-3.7.2:0= )
+		openssl? (
+			>=dev-libs/openssl-1.1.1:0=
+		)
+	)"
+DEPEND="${RDEPEND}
+	test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_GNUTLS=$(usex gnutls)
+		-DENABLE_OPENSSL=$(usex openssl)
+		-DENABLE_BORINGSSL=OFF
+		-DENABLE_PICOTLS=OFF
+		-DENABLE_WOLFSSL=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_Libev=ON
+		-DCMAKE_DISABLE_FIND_PACKAGE_Libnghttp3=ON
+		-DBUILD_TESTING=$(usex test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


             reply	other threads:[~2024-11-25 14:30 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-25 14:30 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-19 15:10 [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/ Craig Andrews
2024-10-30 22:09 Sam James
2024-10-17 17:38 Craig Andrews
2024-10-17 17:38 Craig Andrews
2024-10-13 19:27 Arthur Zamarin
2024-10-07 13:37 Craig Andrews
2024-10-04 17:37 Andreas Sturmlechner
2024-09-23  8:18 Arthur Zamarin
2024-09-23  7:13 Arthur Zamarin
2024-09-23  7:13 Arthur Zamarin
2024-09-23  0:32 Sam James
2024-08-26 16:29 Arthur Zamarin
2024-08-25 22:20 Craig Andrews
2024-08-14 10:16 Jakov Smolić
2024-08-14  1:38 Matt Jolly
2024-07-29 19:39 Arthur Zamarin
2024-07-29 19:37 Arthur Zamarin
2024-07-04  3:43 Sam James
2024-06-26  5:43 Arthur Zamarin
2024-06-25 23:16 Sam James
2024-06-13 14:01 Craig Andrews
2024-05-24  2:46 Ionen Wolkens
2024-05-23 21:55 Craig Andrews
2024-05-17  3:57 Sam James
2024-05-12  4:51 Sam James
2024-05-09 14:21 Craig Andrews
2024-03-18 13:52 Craig Andrews
2024-02-17  4:16 Craig Andrews
2024-01-21 22:00 Craig Andrews
2023-11-26 15:54 Craig Andrews
2023-11-26 15:35 Craig Andrews
2023-11-26 15:35 Craig Andrews
2023-11-26 15:35 Craig Andrews
2023-10-23 13:19 Craig Andrews
2023-10-23 13:19 Craig Andrews
2023-10-16 13:10 Craig Andrews
2023-10-16 12:47 Craig Andrews
2023-10-16 12:47 Craig Andrews
2023-09-06 16:13 Craig Andrews
2023-09-05 12:53 Craig Andrews
2023-08-01 20:10 Craig Andrews
2023-07-20 21:04 Sam James
2023-07-10 13:50 Craig Andrews
2023-06-05 14:15 Craig Andrews
2023-04-29 15:48 Arthur Zamarin
2023-04-26 14:42 Craig Andrews
2023-04-26 14:42 Craig Andrews
2023-04-26 14:32 Craig Andrews
2023-04-26 14:32 Craig Andrews
2023-04-16 16:35 Arthur Zamarin
2023-03-30 13:55 Craig Andrews
2023-03-30 13:55 Craig Andrews
2023-03-27 13:38 Craig Andrews
2023-03-27 13:38 Craig Andrews
2023-02-09 13:57 Craig Andrews
2023-02-09 13:57 Craig Andrews
2023-01-31 15:01 Craig Andrews
2023-01-31 14:48 Craig Andrews
2023-01-31 14:17 Craig Andrews
2023-01-31 14:17 Craig Andrews
2023-01-31 14:17 Craig Andrews
2023-01-06 14:04 Craig Andrews
2023-01-06 14:04 Craig Andrews
2022-12-24 17:34 Craig Andrews
2022-12-11 18:33 Arthur Zamarin
2022-11-15 17:44 Craig Andrews
2022-11-05  6:57 Yixun Lan
2022-10-18 13:40 Craig Andrews
2022-10-18 13:40 Craig Andrews
2022-09-20 13:51 Craig Andrews
2022-09-01 13:54 Craig Andrews
2022-08-23  0:21 Craig Andrews
2022-07-21 16:40 Craig Andrews
2022-07-21 16:40 Craig Andrews
2022-06-21 13:24 Craig Andrews
2022-05-16 16:58 Craig Andrews
2022-04-25 14:09 Craig Andrews
2022-04-12 20:06 Craig Andrews
2022-04-04 13:35 Craig Andrews
2022-03-25 18:13 Craig Andrews
2022-01-18 14:06 Craig Andrews
2019-10-08 15:16 Jeroen Roovers
2019-09-15 13:33 Craig Andrews
2019-09-15  0:34 Craig Andrews

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1732545052.a6ce9086703374404f7212c90cd239cae874b2a5.candrews@gentoo \
    --to=candrews@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox