diff options
author | Craig Andrews <candrews@gentoo.org> | 2023-01-06 09:03:50 -0500 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2023-01-06 09:04:47 -0500 |
commit | 5ab036cebfccee1d0ad1f1b434bfaad26be8119e (patch) | |
tree | 6612a234d58fdb10e93330860d9408790f0e78fa /net-libs/ngtcp2 | |
parent | dev-libs/libsecp256k1: always delete pre-generated files (diff) | |
download | gentoo-5ab036cebfccee1d0ad1f1b434bfaad26be8119e.tar.gz gentoo-5ab036cebfccee1d0ad1f1b434bfaad26be8119e.tar.bz2 gentoo-5ab036cebfccee1d0ad1f1b434bfaad26be8119e.zip |
net-libs/ngtcp2: add 0.12.1
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'net-libs/ngtcp2')
-rw-r--r-- | net-libs/ngtcp2/Manifest | 1 | ||||
-rw-r--r-- | net-libs/ngtcp2/ngtcp2-0.12.1.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/net-libs/ngtcp2/Manifest b/net-libs/ngtcp2/Manifest index a8ddbe8be5e4..2b1d682f8e43 100644 --- a/net-libs/ngtcp2/Manifest +++ b/net-libs/ngtcp2/Manifest @@ -1,3 +1,4 @@ DIST ngtcp2-0.10.0.tar.xz 582248 BLAKE2B 11c7153742657afc2df3b339e95e66e1ebc657ac251e6f1c742fb091277a4f3364e57322994f7a947e97cb0fdaa786fb48635e35b33346f1c04ef3f73d9a8128 SHA512 40ace3188ad53293df80a0f3fb144ced21897089026a18f90f45fe2aaa0d0f18ad184666a08d96263942573ed96ffa65b5f1837a008bd348a9c68c82e7508310 DIST ngtcp2-0.11.0.tar.xz 583024 BLAKE2B 761f248a4f5e12f75d018f5285b894d8294edf102547306cb44498f97533b3e8929192c6c3a36671a4543536881b1471dd788aafe976da2efce191901af14923 SHA512 f652cb0189c485d3d007dda93f8441ea6d9a4f95d658ab763bd6d3e2e46985c0800e7fc3291c6fb4e07a0e5e0d4117d19631214a53f687f40913485182202057 DIST ngtcp2-0.12.0.tar.xz 582996 BLAKE2B f1182e712ad68671fea3a588e4b2f09a815395ac6551eeaed5a734a3c3210f035d5b19a99a2ff5c296305de38b6bae7983b4ef5e595dadc651a6ae4d25497186 SHA512 805697fedb0dc9178fd5a8eac2ee63a9fdadda6e439e509a21544d3af5c2cca76acde7b53a4ec450eef1dff17c60d57468b5b8518103de50ba00039c969a481d +DIST ngtcp2-0.12.1.tar.xz 581500 BLAKE2B f3dfb00301eb75b997bdcc27d9bf32807181a115bf5639159892fa19deab96a3acfee485b79b7edaf0b06032c28899efce40d1c07574670cd07a65edd3a694cb SHA512 ca1bd05b5469e7d88980eafdb2d84cffe6b21d394fcc86d94c6e57685bb779d225b944d42f6558af67e2cd4058dfeba3c963f0249654d7ebe69e20d75cb6f606 diff --git a/net-libs/ngtcp2/ngtcp2-0.12.1.ebuild b/net-libs/ngtcp2/ngtcp2-0.12.1.ebuild new file mode 100644 index 000000000000..aa53d73cfc95 --- /dev/null +++ b/net-libs/ngtcp2/ngtcp2-0.12.1.ebuild @@ -0,0 +1,51 @@ +# 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 ~hppa ~riscv" +fi + +DESCRIPTION="Implementation of the IETF QUIC Protocol" +HOMEPAGE="https://github.com/ngtcp2/ngtcp2/" + +LICENSE="MIT" +SLOT="0/0" +IUSE="+gnutls openssl +ssl 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_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 +} |