From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/
Date: Fri, 6 Jan 2023 14:04:50 +0000 (UTC) [thread overview]
Message-ID: <1673013887.aeb878a8484547349883331a1fbe8635b18500d2.candrews@gentoo> (raw)
commit: aeb878a8484547349883331a1fbe8635b18500d2
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 14:04:13 2023 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 14:04:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb878a8
net-libs/ngtcp2: drop 0.11.0, 0.12.0
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
net-libs/ngtcp2/Manifest | 2 --
net-libs/ngtcp2/ngtcp2-0.11.0.ebuild | 51 ------------------------------------
net-libs/ngtcp2/ngtcp2-0.12.0.ebuild | 51 ------------------------------------
3 files changed, 104 deletions(-)
diff --git a/net-libs/ngtcp2/Manifest b/net-libs/ngtcp2/Manifest
index 2b1d682f8e43..1b2d9168b391 100644
--- a/net-libs/ngtcp2/Manifest
+++ b/net-libs/ngtcp2/Manifest
@@ -1,4 +1,2 @@
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.11.0.ebuild b/net-libs/ngtcp2/ngtcp2-0.11.0.ebuild
deleted file mode 100644
index 707656ab86a7..000000000000
--- a/net-libs/ngtcp2/ngtcp2-0.11.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 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
-}
diff --git a/net-libs/ngtcp2/ngtcp2-0.12.0.ebuild b/net-libs/ngtcp2/ngtcp2-0.12.0.ebuild
deleted file mode 100644
index 707656ab86a7..000000000000
--- a/net-libs/ngtcp2/ngtcp2-0.12.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 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
-}
next reply other threads:[~2023-01-06 14:04 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-06 14:04 Craig Andrews [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-25 3:40 [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/ Matt Turner
2025-01-24 2:23 Sam James
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-03 11:32 Sam James
2025-01-03 1:50 Sam James
2025-01-03 1:47 Sam James
2025-01-01 9:52 Sam James
2025-01-01 9:51 Sam James
2025-01-01 9:51 Sam James
2024-12-19 14:18 Craig Andrews
2024-11-25 14:30 Craig Andrews
2024-11-19 15:10 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
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=1673013887.aeb878a8484547349883331a1fbe8635b18500d2.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