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, 16 Oct 2023 12:47:55 +0000 (UTC)	[thread overview]
Message-ID: <1697460470.7c9b89e1557a7ca7d135019e73c8f8727dac2531.candrews@gentoo> (raw)

commit:     7c9b89e1557a7ca7d135019e73c8f8727dac2531
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 16 12:41:45 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 12:47:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9b89e1

net-libs/ngtcp2: add 1.0.0

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

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

diff --git a/net-libs/ngtcp2/Manifest b/net-libs/ngtcp2/Manifest
index 813f0261d17a..6b7ede9c4d77 100644
--- a/net-libs/ngtcp2/Manifest
+++ b/net-libs/ngtcp2/Manifest
@@ -5,3 +5,4 @@ DIST ngtcp2-0.17.0.tar.xz 590752 BLAKE2B 584dc4137ff572f1e433420d8dfb4a91eb8c505
 DIST ngtcp2-0.18.0.tar.xz 588876 BLAKE2B 24fecf24482de95b120a4a4cbb6627f09b528ab75e47964d17392f67b46144d8b5edaff1d6a4ac587ad62b6445db1b7186cdf27fe24e3fa71baa613ff95807c3 SHA512 f147f45ad0be4b45a3c3fcf2c61fc3a23e721702f19ad857e6bad93bbad5a4920f0fdcf59d3a0dd1226f5e3940e3cd3614fea21edd343e05381fb50acfe1eead
 DIST ngtcp2-0.19.0.tar.xz 595388 BLAKE2B 0a6c41909863eb4bece5bc960c114de6c1242f489cfc472ecc4b1c3477c37efb25eee5c8007687013a05e80e9d5c66d8b1c48f8fefd429a3b677fdecffaf2d84 SHA512 827f2da27daa61a34bac4b752ae29272c532c2c6b9432168276c5280534dedd3bf6ebcec3a1649ac0322b23d4300404080d20ffb4face36c8ccef17d611ab65f
 DIST ngtcp2-0.19.1.tar.xz 590532 BLAKE2B 6e80c3dab41bcd979ecaf45e248998f7bd33a669bc130ac2f92f73132328f6bab516051b99163e2ed61068a3b773b3d001c62b1ec15d395550df44993469cbf8 SHA512 eff10b28d3ee8ac39af9b8db5867f4bdeb16ae0553b97ce098d33cfff9b6f6c1c72b836550c0acce936cf4e9bf0c3e8d5ea3fe883b48d1f352a595ef709749bf
+DIST ngtcp2-1.0.0.tar.xz 595696 BLAKE2B 02caa4533b85d16d7fbf0a463fd7fc47aadc0d3873b70491c1dd408dbc43d0e7728d270cbb081cda39e713e59e5b6dee7cbdbb4b3f2c32c06db15086e06a707f SHA512 7bed2345d479b2efc6ca16166782889ae9cd91a0a5485c1c9bc16ac0a785e0089443baac5ed71029c86837438cf030a96964f71e7611caa18c34aef77cb9b4ce

diff --git a/net-libs/ngtcp2/ngtcp2-1.0.0.ebuild b/net-libs/ngtcp2/ngtcp2-1.0.0.ebuild
new file mode 100644
index 000000000000..c50194288f25
--- /dev/null
+++ b/net-libs/ngtcp2/ngtcp2-1.0.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 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 ~arm64 ~hppa ~riscv ~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 ) )"
+
+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
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


             reply	other threads:[~2023-10-16 12:47 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-16 12:47 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-26 16:29 [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/ 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-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=1697460470.7c9b89e1557a7ca7d135019e73c8f8727dac2531.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