From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BB391138335 for ; Fri, 13 Sep 2019 20:38:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5199E0993; Fri, 13 Sep 2019 20:38:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDDB9E0993 for ; Fri, 13 Sep 2019 20:38:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A18CC34B12E for ; Fri, 13 Sep 2019 20:38:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3FC67E7 for ; Fri, 13 Sep 2019 20:38:25 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1568407085.7ba0adcf1567d832bf81026b28c0105a705a2d96.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nghttp3/Manifest net-libs/nghttp3/metadata.xml net-libs/nghttp3/nghttp3-0_pre20190912.ebuild net-libs/nghttp3/nghttp3-9999.ebuild X-VCS-Directories: net-libs/nghttp3/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 7ba0adcf1567d832bf81026b28c0105a705a2d96 X-VCS-Branch: master Date: Fri, 13 Sep 2019 20:38:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9af7fd05-db34-42fd-a87d-53bff9c2d622 X-Archives-Hash: b4654d436e7791c951b0ca212da55eb1 commit: 7ba0adcf1567d832bf81026b28c0105a705a2d96 Author: Craig Andrews gentoo org> AuthorDate: Fri Sep 13 15:53:43 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Sep 13 20:38:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ba0adcf net-libs/nghttp3: HTTP/3 library written in C Closes: https://bugs.gentoo.org/694304 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Craig Andrews gentoo.org> net-libs/nghttp3/Manifest | 1 + net-libs/nghttp3/metadata.xml | 11 ++++++++ net-libs/nghttp3/nghttp3-0_pre20190912.ebuild | 40 +++++++++++++++++++++++++++ net-libs/nghttp3/nghttp3-9999.ebuild | 38 +++++++++++++++++++++++++ 4 files changed, 90 insertions(+) diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest new file mode 100644 index 00000000000..6280de1439d --- /dev/null +++ b/net-libs/nghttp3/Manifest @@ -0,0 +1 @@ +DIST nghttp3-0_pre20190912.tar.gz 155172 BLAKE2B fabd472e429222502288b7a4030b4aa51f8a1b609590d63b51ab3f918b8cdb462b766a40911986b3f72f2f1b0debee1f0ebdf8802991bf4fc5d4a6d14297bdcc SHA512 89c7b40843bde9d2c2ab24211794b6ae0e1fa15413e92dcf2238b876552f29bb2f0db724d9a205c2a1c98f25a14ef570c9e53df52fb519230b6f78dcc04d2117 diff --git a/net-libs/nghttp3/metadata.xml b/net-libs/nghttp3/metadata.xml new file mode 100644 index 00000000000..d47d5faabf8 --- /dev/null +++ b/net-libs/nghttp3/metadata.xml @@ -0,0 +1,11 @@ + + + + + candrews@integralblue.com + Craig Andrews + + + ngtcp2/ngtcp2 + + diff --git a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild new file mode 100644 index 00000000000..6489dde91d8 --- /dev/null +++ b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-multilib + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/ngtcp2/nghttp3.git" + inherit autotools git-r3 +else + GIT_COMMIT="51379a041174ad953dc6ad437712f3b279f81919" + SRC_URI="https://github.com/ngtcp2/nghttp3/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${GIT_COMMIT}" + KEYWORDS="~amd64" +fi + +DESCRIPTION="HTTP/3 library written in C" +HOMEPAGE="https://github.com/ngtcp2/nghttp3/" + +LICENSE="MIT" +SLOT="0/0" +IUSE="test" + +BDEPEND="virtual/pkgconfig" +DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" +RDEPEND="" + +multilib_src_configure() { + local mycmakeargs=( + -DENABLE_LIB_ONLY=ON + -DENABLE_EXAMPLES=OFF + -DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test) + ) + cmake-utils_src_configure +} + +multilib_src_test() { + cmake-utils_src_make check +} diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild new file mode 100644 index 00000000000..62a48b643ad --- /dev/null +++ b/net-libs/nghttp3/nghttp3-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-multilib + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/ngtcp2/nghttp3.git" + inherit autotools git-r3 +else + SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="HTTP/3 library written in C" +HOMEPAGE="https://github.com/ngtcp2/nghttp3/" + +LICENSE="MIT" +SLOT="0/0" +IUSE="test" + +BDEPEND="virtual/pkgconfig" +DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" +RDEPEND="" + +multilib_src_configure() { + local mycmakeargs=( + -DENABLE_LIB_ONLY=ON + -DENABLE_EXAMPLES=OFF + -DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test) + ) + cmake-utils_src_configure +} + +multilib_src_test() { + cmake-utils_src_make check +}