public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2019-09-13 20:38 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2019-09-13 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     7ba0adcf1567d832bf81026b28c0105a705a2d96
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 15:53:43 2019 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> 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 <candrews <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>candrews@integralblue.com</email>
+		<name>Craig Andrews</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">ngtcp2/ngtcp2</remote-id>
+	</upstream>
+</pkgmetadata>

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
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2019-09-15  0:34 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2019-09-15  0:34 UTC (permalink / raw
  To: gentoo-commits

commit:     695cc83c22ff44287f5f69e69d842566dafe7a8a
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 21:43:39 2019 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 00:34:11 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=695cc83c

net-libs/nghttp3: Use my @gentoo.org email address

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/metadata.xml b/net-libs/nghttp3/metadata.xml
index d47d5faabf8..c31617286fe 100644
--- a/net-libs/nghttp3/metadata.xml
+++ b/net-libs/nghttp3/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>candrews@integralblue.com</email>
+		<email>candrews@gentoo.org</email>
 		<name>Craig Andrews</name>
 	</maintainer>
 	<upstream>


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2019-09-15 13:33 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2019-09-15 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     9ea6e8d213ac21da1e528b0bc650da852c041967
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 15 13:13:48 2019 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 13:33:08 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ea6e8d2

net-libs/nghttp3: Disable test phase when test USE flag is disabled

Bug: https://bugs.gentoo.org/show_bug.cgi?id=694342
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-0_pre20190912.ebuild | 1 +
 net-libs/nghttp3/nghttp3-9999.ebuild          | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
index 6489dde91d8..48b5fc1f285 100644
--- a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
+++ b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
@@ -25,6 +25,7 @@ IUSE="test"
 BDEPEND="virtual/pkgconfig"
 DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
 RDEPEND=""
+RESTRICT="!test? ( test )"
 
 multilib_src_configure() {
 	local mycmakeargs=(

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 62a48b643ad..9bc601bc031 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -23,6 +23,7 @@ IUSE="test"
 BDEPEND="virtual/pkgconfig"
 DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
 RDEPEND=""
+RESTRICT="!test? ( test )"
 
 multilib_src_configure() {
 	local mycmakeargs=(


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2019-10-08 15:16 Jeroen Roovers
  0 siblings, 0 replies; 63+ messages in thread
From: Jeroen Roovers @ 2019-10-08 15:16 UTC (permalink / raw
  To: gentoo-commits

commit:     782aa9dcf22439fdb1698038035e4bca46ee595c
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  8 04:29:04 2019 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Oct  8 15:16:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782aa9dc

net-libs/nghttp3: Mark ~hppa too

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-0_pre20190912.ebuild | 2 +-
 net-libs/nghttp3/nghttp3-9999.ebuild          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
index 48b5fc1f285..82c8375e72b 100644
--- a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
+++ b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
@@ -12,7 +12,7 @@ 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"
+	KEYWORDS="~amd64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 9bc601bc031..7df7eb88b3a 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-02-19  2:40 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-02-19  2:40 UTC (permalink / raw
  To: gentoo-commits

commit:     8ff9c4a8b08f3a60abc53ca3b24d0408713a425e
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 02:36:47 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 02:40:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff9c4a8

net-libs/nghttp3: add 0.8.0, EAPI=88888888

Closes: https://bugs.gentoo.org/895280
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/Manifest                                      | 1 +
 net-libs/nghttp3/{nghttp3-9999.ebuild => nghttp3-0.8.0.ebuild} | 4 ++--
 net-libs/nghttp3/nghttp3-9999.ebuild                           | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 6280de1439df..00ab146d630c 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
+DIST nghttp3-0.8.0.tar.xz 365072 BLAKE2B 132332f785f015a5e62e751ad6fe6d1dae49911837ef26cb24453245ca2cd5a80c92092db4b712f1fb515caa900ac190c2fa586fbf7314df9e60928595791679 SHA512 dab545aff7f85ee10c0f43985cb7f937e33a793c4bb0ca8e7878652f8d0b2500497cdd435256f401bf35a0c7af21aec08cd821beddff3e96b4810efb4c798591
 DIST nghttp3-0_pre20190912.tar.gz 155172 BLAKE2B fabd472e429222502288b7a4030b4aa51f8a1b609590d63b51ab3f918b8cdb462b766a40911986b3f72f2f1b0debee1f0ebdf8802991bf4fc5d4a6d14297bdcc SHA512 89c7b40843bde9d2c2ab24211794b6ae0e1fa15413e92dcf2238b876552f29bb2f0db724d9a205c2a1c98f25a14ef570c9e53df52fb519230b6f78dcc04d2117

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-0.8.0.ebuild
similarity index 94%
copy from net-libs/nghttp3/nghttp3-9999.ebuild
copy to net-libs/nghttp3/nghttp3-0.8.0.ebuild
index c6ed60a92ab9..3685e3ee33ca 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-0.8.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake-multilib
 

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index c6ed60a92ab9..3685e3ee33ca 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake-multilib
 


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-02-19 20:43 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-02-19 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     789ffad64bc72115c0252d442e367fe7c9177bb1
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 20:41:27 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 20:43:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789ffad6

net-libs/nghttp3: drop 0_pre20190912, 0.8.0

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

 net-libs/nghttp3/Manifest                     |  1 -
 net-libs/nghttp3/nghttp3-0.8.0.ebuild         | 39 -------------------------
 net-libs/nghttp3/nghttp3-0_pre20190912.ebuild | 41 ---------------------------
 3 files changed, 81 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 00ab146d630c..44d9b41aa074 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1 @@
 DIST nghttp3-0.8.0.tar.xz 365072 BLAKE2B 132332f785f015a5e62e751ad6fe6d1dae49911837ef26cb24453245ca2cd5a80c92092db4b712f1fb515caa900ac190c2fa586fbf7314df9e60928595791679 SHA512 dab545aff7f85ee10c0f43985cb7f937e33a793c4bb0ca8e7878652f8d0b2500497cdd435256f401bf35a0c7af21aec08cd821beddff3e96b4810efb4c798591
-DIST nghttp3-0_pre20190912.tar.gz 155172 BLAKE2B fabd472e429222502288b7a4030b4aa51f8a1b609590d63b51ab3f918b8cdb462b766a40911986b3f72f2f1b0debee1f0ebdf8802991bf4fc5d4a6d14297bdcc SHA512 89c7b40843bde9d2c2ab24211794b6ae0e1fa15413e92dcf2238b876552f29bb2f0db724d9a205c2a1c98f25a14ef570c9e53df52fb519230b6f78dcc04d2117

diff --git a/net-libs/nghttp3/nghttp3-0.8.0.ebuild b/net-libs/nghttp3/nghttp3-0.8.0.ebuild
deleted file mode 100644
index 3685e3ee33ca..000000000000
--- a/net-libs/nghttp3/nghttp3-0.8.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-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=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild b/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
deleted file mode 100644
index 13c321f3927c..000000000000
--- a/net-libs/nghttp3/nghttp3-0_pre20190912.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 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 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 ~hppa"
-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=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-02-19 20:43 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-02-19 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     5ced10b3df6a847902e9bb6d532ecf46ba815a3d
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 20:40:30 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 20:43:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ced10b3

net-libs/nghttp3: add USE=static-libs

Closes: https://bugs.gentoo.org/895354
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/{nghttp3-9999.ebuild => nghttp3-0.8.0-r1.ebuild} | 3 ++-
 net-libs/nghttp3/nghttp3-9999.ebuild                              | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild
similarity index 92%
copy from net-libs/nghttp3/nghttp3-9999.ebuild
copy to net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild
index 3685e3ee33ca..719966f4eab6 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="test"
+IUSE="static-libs test"
 
 BDEPEND="virtual/pkgconfig"
 DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
@@ -28,6 +28,7 @@ RESTRICT="!test? ( test )"
 multilib_src_configure() {
 	local mycmakeargs=(
 		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
 		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
 	)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 3685e3ee33ca..719966f4eab6 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="test"
+IUSE="static-libs test"
 
 BDEPEND="virtual/pkgconfig"
 DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
@@ -28,6 +28,7 @@ RESTRICT="!test? ( test )"
 multilib_src_configure() {
 	local mycmakeargs=(
 		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
 		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
 	)


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-02-24 14:51 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-02-24 14:51 UTC (permalink / raw
  To: gentoo-commits

commit:     fac4c16411df02ffcbf051fef4e281402c15aa8f
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 24 14:51:14 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Feb 24 14:51:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac4c164

net-libs/nghttp3: add 0.9.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-0.9.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 44d9b41aa074..d1664e675897 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-0.8.0.tar.xz 365072 BLAKE2B 132332f785f015a5e62e751ad6fe6d1dae49911837ef26cb24453245ca2cd5a80c92092db4b712f1fb515caa900ac190c2fa586fbf7314df9e60928595791679 SHA512 dab545aff7f85ee10c0f43985cb7f937e33a793c4bb0ca8e7878652f8d0b2500497cdd435256f401bf35a0c7af21aec08cd821beddff3e96b4810efb4c798591
+DIST nghttp3-0.9.0.tar.xz 365884 BLAKE2B 92365e268d7644154f9a400ff0de9e153bdc4acad3a23d2c70936dc4c1105edb2866b81aaad35806ab25992f22501afdb7ddf5d41fa17963183e92c2548c72cb SHA512 68b57f62128dca0d4ced1c63c2c8cdda65a62fdca7bacc2aa3e8826863dad8c7e0d6d715df2bcb09da737fad8ae24c9365e01c07e066d6fd33f4b94190d252ed

diff --git a/net-libs/nghttp3/nghttp3-0.9.0.ebuild b/net-libs/nghttp3/nghttp3-0.9.0.ebuild
new file mode 100644
index 000000000000..719966f4eab6
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.9.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-03-27 13:38 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-03-27 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     6a1db46ece4a748364bfdded2f22c0acaee24c7e
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 13:38:38 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 13:38:38 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a1db46e

net-libs/nghttp3: drop 0.8.0-r1, 0.9.0

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

 net-libs/nghttp3/Manifest                |  2 --
 net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild | 40 --------------------------------
 net-libs/nghttp3/nghttp3-0.9.0.ebuild    | 40 --------------------------------
 3 files changed, 82 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 0ab735f72fa7..157c8cad420d 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,3 +1 @@
 DIST nghttp3-0.10.0.tar.xz 367700 BLAKE2B 9f2a68d245d5b09eea3eeee1a3dd88fd1a88d44bb33e2d69fbf44d3e7a7edbd24de28ca974a64ee5351338cb790de2a6f6dba38a520a64196ec85264eebafbd3 SHA512 8854bb213c5ef5907260b087e192847d6a0be7421207092497842cf014026426f2e184ae2a1d5575774592d7e29dcbd509d06eff54c52b9aa7451d33b23a3270
-DIST nghttp3-0.8.0.tar.xz 365072 BLAKE2B 132332f785f015a5e62e751ad6fe6d1dae49911837ef26cb24453245ca2cd5a80c92092db4b712f1fb515caa900ac190c2fa586fbf7314df9e60928595791679 SHA512 dab545aff7f85ee10c0f43985cb7f937e33a793c4bb0ca8e7878652f8d0b2500497cdd435256f401bf35a0c7af21aec08cd821beddff3e96b4810efb4c798591
-DIST nghttp3-0.9.0.tar.xz 365884 BLAKE2B 92365e268d7644154f9a400ff0de9e153bdc4acad3a23d2c70936dc4c1105edb2866b81aaad35806ab25992f22501afdb7ddf5d41fa17963183e92c2548c72cb SHA512 68b57f62128dca0d4ced1c63c2c8cdda65a62fdca7bacc2aa3e8826863dad8c7e0d6d715df2bcb09da737fad8ae24c9365e01c07e066d6fd33f4b94190d252ed

diff --git a/net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild b/net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild
deleted file mode 100644
index 719966f4eab6..000000000000
--- a/net-libs/nghttp3/nghttp3-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0.9.0.ebuild b/net-libs/nghttp3/nghttp3-0.9.0.ebuild
deleted file mode 100644
index 719966f4eab6..000000000000
--- a/net-libs/nghttp3/nghttp3-0.9.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-03-27 13:38 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-03-27 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     73a10013f50891535302182ddb73f8fbb0861abe
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 13:38:30 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 13:38:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a10013

net-libs/nghttp3: add 0.10.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.10.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index d1664e675897..0ab735f72fa7 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1,3 @@
+DIST nghttp3-0.10.0.tar.xz 367700 BLAKE2B 9f2a68d245d5b09eea3eeee1a3dd88fd1a88d44bb33e2d69fbf44d3e7a7edbd24de28ca974a64ee5351338cb790de2a6f6dba38a520a64196ec85264eebafbd3 SHA512 8854bb213c5ef5907260b087e192847d6a0be7421207092497842cf014026426f2e184ae2a1d5575774592d7e29dcbd509d06eff54c52b9aa7451d33b23a3270
 DIST nghttp3-0.8.0.tar.xz 365072 BLAKE2B 132332f785f015a5e62e751ad6fe6d1dae49911837ef26cb24453245ca2cd5a80c92092db4b712f1fb515caa900ac190c2fa586fbf7314df9e60928595791679 SHA512 dab545aff7f85ee10c0f43985cb7f937e33a793c4bb0ca8e7878652f8d0b2500497cdd435256f401bf35a0c7af21aec08cd821beddff3e96b4810efb4c798591
 DIST nghttp3-0.9.0.tar.xz 365884 BLAKE2B 92365e268d7644154f9a400ff0de9e153bdc4acad3a23d2c70936dc4c1105edb2866b81aaad35806ab25992f22501afdb7ddf5d41fa17963183e92c2548c72cb SHA512 68b57f62128dca0d4ced1c63c2c8cdda65a62fdca7bacc2aa3e8826863dad8c7e0d6d715df2bcb09da737fad8ae24c9365e01c07e066d6fd33f4b94190d252ed

diff --git a/net-libs/nghttp3/nghttp3-0.10.0.ebuild b/net-libs/nghttp3/nghttp3-0.10.0.ebuild
new file mode 100644
index 000000000000..719966f4eab6
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.10.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-04-26 14:32 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-04-26 14:32 UTC (permalink / raw
  To: gentoo-commits

commit:     136e31ebf3f1d59b0ad54f9bc3c50cdffc8f3a74
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 26 14:30:59 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 14:32:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136e31eb

net-libs/nghttp3: drop 0.10.0

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

 net-libs/nghttp3/Manifest              |  1 -
 net-libs/nghttp3/nghttp3-0.10.0.ebuild | 40 ----------------------------------
 2 files changed, 41 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index f94c60f6c841..f474123694de 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1 @@
-DIST nghttp3-0.10.0.tar.xz 367700 BLAKE2B 9f2a68d245d5b09eea3eeee1a3dd88fd1a88d44bb33e2d69fbf44d3e7a7edbd24de28ca974a64ee5351338cb790de2a6f6dba38a520a64196ec85264eebafbd3 SHA512 8854bb213c5ef5907260b087e192847d6a0be7421207092497842cf014026426f2e184ae2a1d5575774592d7e29dcbd509d06eff54c52b9aa7451d33b23a3270
 DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd

diff --git a/net-libs/nghttp3/nghttp3-0.10.0.ebuild b/net-libs/nghttp3/nghttp3-0.10.0.ebuild
deleted file mode 100644
index 719966f4eab6..000000000000
--- a/net-libs/nghttp3/nghttp3-0.10.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-04-26 14:32 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-04-26 14:32 UTC (permalink / raw
  To: gentoo-commits

commit:     0899fdbe95cabb3d471770185dfb17e3ecfd09dd
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 26 14:30:49 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 14:32:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0899fdbe

net-libs/nghttp3: add 0.11.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.11.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 157c8cad420d..f94c60f6c841 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-0.10.0.tar.xz 367700 BLAKE2B 9f2a68d245d5b09eea3eeee1a3dd88fd1a88d44bb33e2d69fbf44d3e7a7edbd24de28ca974a64ee5351338cb790de2a6f6dba38a520a64196ec85264eebafbd3 SHA512 8854bb213c5ef5907260b087e192847d6a0be7421207092497842cf014026426f2e184ae2a1d5575774592d7e29dcbd509d06eff54c52b9aa7451d33b23a3270
+DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd

diff --git a/net-libs/nghttp3/nghttp3-0.11.0.ebuild b/net-libs/nghttp3/nghttp3-0.11.0.ebuild
new file mode 100644
index 000000000000..719966f4eab6
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.11.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-06-05 14:15 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-06-05 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     c95731f15c5da4892086d0b3d11b0cef394d2150
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  5 14:07:35 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Jun  5 14:15:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c95731f1

net-libs/nghttp3: add 0.12.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.12.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index f474123694de..fbb664e63b09 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd
+DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae32e6347e9915d743daa217ce2d6d201e3ab8f1cf00072e80f489e8bb7af648d46f9805816923b8e7ccd8319bc44 SHA512 4bfde5506bbd193107cac3f548952ae692934b7b9e5639fa843ee99a7da5ee7ca816880fc5575efd57959770e633cdba1efb4fd60ba39fff043e62a6358f721b

diff --git a/net-libs/nghttp3/nghttp3-0.12.0.ebuild b/net-libs/nghttp3/nghttp3-0.12.0.ebuild
new file mode 100644
index 000000000000..719966f4eab6
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.12.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-07-10 13:50 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-07-10 13:50 UTC (permalink / raw
  To: gentoo-commits

commit:     58c633286a7fa7b3b0002fba7fef02ff12572ffe
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 13:44:41 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Jul 10 13:44:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c63328

net-libs/nghttp3: add 0.13.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.13.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index fbb664e63b09..c4b2bd717472 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1,3 @@
 DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd
 DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae32e6347e9915d743daa217ce2d6d201e3ab8f1cf00072e80f489e8bb7af648d46f9805816923b8e7ccd8319bc44 SHA512 4bfde5506bbd193107cac3f548952ae692934b7b9e5639fa843ee99a7da5ee7ca816880fc5575efd57959770e633cdba1efb4fd60ba39fff043e62a6358f721b
+DIST nghttp3-0.13.0.tar.xz 367992 BLAKE2B 381677866a327cbb5638aa2e6f4a770d15879d05ca432c3fca7e92a8a815ae62857c386ba660805e97f649f9bc7c9c4c7077a92d2296b3303347e3d1dff12b6c SHA512 63de094ae62c641388ea909b28df2cce58df5e372237519fb6ef62bbd937ff20f6e571cb99f0fac8b8781e619fc229ec931fb5c6a1165727829d6b0c3a779ef8

diff --git a/net-libs/nghttp3/nghttp3-0.13.0.ebuild b/net-libs/nghttp3/nghttp3-0.13.0.ebuild
new file mode 100644
index 000000000000..719966f4eab6
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.13.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-07-20 21:04 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2023-07-20 21:04 UTC (permalink / raw
  To: gentoo-commits

commit:     c3d7b5905be6b7163e50c540076bbea31e715810
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 20 21:04:35 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 20 21:04:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d7b590

net-libs/nghttp3: Keyword 0.13.0 arm64, #910548

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-0.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-0.13.0.ebuild b/net-libs/nghttp3/nghttp3-0.13.0.ebuild
index 719966f4eab6..7f4078fba594 100644
--- a/net-libs/nghttp3/nghttp3-0.13.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-0.13.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-08-01 20:10 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-08-01 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     fbfa692e071135f17130f1a0f3a51fd1694ce697
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 20:03:44 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 20:10:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbfa692e

net-libs/nghttp3: add 0.14.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.14.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index c4b2bd717472..ae2d3e2d1aca 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,3 +1,4 @@
 DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd
 DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae32e6347e9915d743daa217ce2d6d201e3ab8f1cf00072e80f489e8bb7af648d46f9805816923b8e7ccd8319bc44 SHA512 4bfde5506bbd193107cac3f548952ae692934b7b9e5639fa843ee99a7da5ee7ca816880fc5575efd57959770e633cdba1efb4fd60ba39fff043e62a6358f721b
 DIST nghttp3-0.13.0.tar.xz 367992 BLAKE2B 381677866a327cbb5638aa2e6f4a770d15879d05ca432c3fca7e92a8a815ae62857c386ba660805e97f649f9bc7c9c4c7077a92d2296b3303347e3d1dff12b6c SHA512 63de094ae62c641388ea909b28df2cce58df5e372237519fb6ef62bbd937ff20f6e571cb99f0fac8b8781e619fc229ec931fb5c6a1165727829d6b0c3a779ef8
+DIST nghttp3-0.14.0.tar.xz 367992 BLAKE2B a7109d735b4fd9117caaec128bb9631e1a75514475bebcf039b605fcac4d68faa4bfa51c77123d456cba19c52e9436839adccd7449a126b5befe445860a3d5d3 SHA512 163bf8dee3e100dd95e73fbe0176d0dc9c86e9139d96cc98fa7e7c279dbcc699cee79998b2784fb21f8da745be98ba8e86c7387f8166907d89eace8f97176779

diff --git a/net-libs/nghttp3/nghttp3-0.14.0.ebuild b/net-libs/nghttp3/nghttp3-0.14.0.ebuild
new file mode 100644
index 000000000000..7f4078fba594
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.14.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-09-05 12:53 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-09-05 12:53 UTC (permalink / raw
  To: gentoo-commits

commit:     12f0d6e85ce9a91c4d4355580e1babcdd8335bad
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  5 12:48:08 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Tue Sep  5 12:53:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12f0d6e8

net-libs/nghttp3: add 0.15.0

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

 net-libs/nghttp3/Manifest              |  1 +
 net-libs/nghttp3/nghttp3-0.15.0.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index ae2d3e2d1aca..f163cf6f2c84 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -2,3 +2,4 @@ DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58
 DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae32e6347e9915d743daa217ce2d6d201e3ab8f1cf00072e80f489e8bb7af648d46f9805816923b8e7ccd8319bc44 SHA512 4bfde5506bbd193107cac3f548952ae692934b7b9e5639fa843ee99a7da5ee7ca816880fc5575efd57959770e633cdba1efb4fd60ba39fff043e62a6358f721b
 DIST nghttp3-0.13.0.tar.xz 367992 BLAKE2B 381677866a327cbb5638aa2e6f4a770d15879d05ca432c3fca7e92a8a815ae62857c386ba660805e97f649f9bc7c9c4c7077a92d2296b3303347e3d1dff12b6c SHA512 63de094ae62c641388ea909b28df2cce58df5e372237519fb6ef62bbd937ff20f6e571cb99f0fac8b8781e619fc229ec931fb5c6a1165727829d6b0c3a779ef8
 DIST nghttp3-0.14.0.tar.xz 367992 BLAKE2B a7109d735b4fd9117caaec128bb9631e1a75514475bebcf039b605fcac4d68faa4bfa51c77123d456cba19c52e9436839adccd7449a126b5befe445860a3d5d3 SHA512 163bf8dee3e100dd95e73fbe0176d0dc9c86e9139d96cc98fa7e7c279dbcc699cee79998b2784fb21f8da745be98ba8e86c7387f8166907d89eace8f97176779
+DIST nghttp3-0.15.0.tar.xz 368348 BLAKE2B 2488a944beb0165e8cad26ddc37b79eb50f7c16807902fc43f97afc57c46a9bb5857eb041c870dbdcd3d817c3b45e1849c325cbea5ef67c9198adec7421e38d6 SHA512 f65cb3b2de1abb12b13b214a60b83c9570a265f99e082cc62b6791a32c929cd78c3a228e38ccd5edd36c12998486633b660b6737fe6c1fbe1b03acdb9ca033dd

diff --git a/net-libs/nghttp3/nghttp3-0.15.0.ebuild b/net-libs/nghttp3/nghttp3-0.15.0.ebuild
new file mode 100644
index 000000000000..7f4078fba594
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-0.15.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-10-16 12:47 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-10-16 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     2bde5d6fc69648d800c64c7f813393d64c53bb44
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 16 12:45:13 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 12:47:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bde5d6f

net-libs/nghttp3: drop 0.11.0, 0.12.0, 0.13.0, 0.14.0, 0.15.0

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

 net-libs/nghttp3/Manifest              |  5 -----
 net-libs/nghttp3/nghttp3-0.11.0.ebuild | 40 ----------------------------------
 net-libs/nghttp3/nghttp3-0.12.0.ebuild | 40 ----------------------------------
 net-libs/nghttp3/nghttp3-0.13.0.ebuild | 40 ----------------------------------
 net-libs/nghttp3/nghttp3-0.14.0.ebuild | 40 ----------------------------------
 net-libs/nghttp3/nghttp3-0.15.0.ebuild | 40 ----------------------------------
 6 files changed, 205 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index bf11ceb41181..972d55ba9cc5 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,6 +1 @@
-DIST nghttp3-0.11.0.tar.xz 367392 BLAKE2B 908da41e168e83d82de7649051c66866682c58e93e3da6a2f4b85a1765b04ccbb06888df3e9b87b5cd6d1eb51d95af9bbb02955e47fde6194b169bb7ef78f756 SHA512 752adffcd5b8d26ea89e040597474e1b6d91a87a5feda445b637fd17255768e570570c0786984e3eaf36dac94df1f32659d9991d3bbf9a02b060c63aadb708fd
-DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae32e6347e9915d743daa217ce2d6d201e3ab8f1cf00072e80f489e8bb7af648d46f9805816923b8e7ccd8319bc44 SHA512 4bfde5506bbd193107cac3f548952ae692934b7b9e5639fa843ee99a7da5ee7ca816880fc5575efd57959770e633cdba1efb4fd60ba39fff043e62a6358f721b
-DIST nghttp3-0.13.0.tar.xz 367992 BLAKE2B 381677866a327cbb5638aa2e6f4a770d15879d05ca432c3fca7e92a8a815ae62857c386ba660805e97f649f9bc7c9c4c7077a92d2296b3303347e3d1dff12b6c SHA512 63de094ae62c641388ea909b28df2cce58df5e372237519fb6ef62bbd937ff20f6e571cb99f0fac8b8781e619fc229ec931fb5c6a1165727829d6b0c3a779ef8
-DIST nghttp3-0.14.0.tar.xz 367992 BLAKE2B a7109d735b4fd9117caaec128bb9631e1a75514475bebcf039b605fcac4d68faa4bfa51c77123d456cba19c52e9436839adccd7449a126b5befe445860a3d5d3 SHA512 163bf8dee3e100dd95e73fbe0176d0dc9c86e9139d96cc98fa7e7c279dbcc699cee79998b2784fb21f8da745be98ba8e86c7387f8166907d89eace8f97176779
-DIST nghttp3-0.15.0.tar.xz 368348 BLAKE2B 2488a944beb0165e8cad26ddc37b79eb50f7c16807902fc43f97afc57c46a9bb5857eb041c870dbdcd3d817c3b45e1849c325cbea5ef67c9198adec7421e38d6 SHA512 f65cb3b2de1abb12b13b214a60b83c9570a265f99e082cc62b6791a32c929cd78c3a228e38ccd5edd36c12998486633b660b6737fe6c1fbe1b03acdb9ca033dd
 DIST nghttp3-1.0.0.tar.xz 369384 BLAKE2B a36b0c75e3c3c44b76652ef7c344831abe6cc160724203b9cb0951416d19df5630ac09c4a5eaf60203a6afcb5eab452d53546d97082f06e4761533b5f7518556 SHA512 84d3207346da3807e56a6f9d7f826ae4174d5a0ba6c4bf1e71dd3f6a7e694eb8f2b9607ed862ffac7b29509521f8216aef3e0910425a65bc4e94ffa879f4d3d8

diff --git a/net-libs/nghttp3/nghttp3-0.11.0.ebuild b/net-libs/nghttp3/nghttp3-0.11.0.ebuild
deleted file mode 100644
index 719966f4eab6..000000000000
--- a/net-libs/nghttp3/nghttp3-0.11.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0.12.0.ebuild b/net-libs/nghttp3/nghttp3-0.12.0.ebuild
deleted file mode 100644
index 719966f4eab6..000000000000
--- a/net-libs/nghttp3/nghttp3-0.12.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0.13.0.ebuild b/net-libs/nghttp3/nghttp3-0.13.0.ebuild
deleted file mode 100644
index 7f4078fba594..000000000000
--- a/net-libs/nghttp3/nghttp3-0.13.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0.14.0.ebuild b/net-libs/nghttp3/nghttp3-0.14.0.ebuild
deleted file mode 100644
index 7f4078fba594..000000000000
--- a/net-libs/nghttp3/nghttp3-0.14.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-0.15.0.ebuild b/net-libs/nghttp3/nghttp3-0.15.0.ebuild
deleted file mode 100644
index 7f4078fba594..000000000000
--- a/net-libs/nghttp3/nghttp3-0.15.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-10-16 12:47 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-10-16 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     930ca541bc9b234269df6ba8beb6e5b25cf7e460
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 16 12:45:05 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 12:47:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=930ca541

net-libs/nghttp3: add 1.0.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.0.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index f163cf6f2c84..bf11ceb41181 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -3,3 +3,4 @@ DIST nghttp3-0.12.0.tar.xz 369576 BLAKE2B 552fab00de7c6d1917ac1b680547aa57e02ae3
 DIST nghttp3-0.13.0.tar.xz 367992 BLAKE2B 381677866a327cbb5638aa2e6f4a770d15879d05ca432c3fca7e92a8a815ae62857c386ba660805e97f649f9bc7c9c4c7077a92d2296b3303347e3d1dff12b6c SHA512 63de094ae62c641388ea909b28df2cce58df5e372237519fb6ef62bbd937ff20f6e571cb99f0fac8b8781e619fc229ec931fb5c6a1165727829d6b0c3a779ef8
 DIST nghttp3-0.14.0.tar.xz 367992 BLAKE2B a7109d735b4fd9117caaec128bb9631e1a75514475bebcf039b605fcac4d68faa4bfa51c77123d456cba19c52e9436839adccd7449a126b5befe445860a3d5d3 SHA512 163bf8dee3e100dd95e73fbe0176d0dc9c86e9139d96cc98fa7e7c279dbcc699cee79998b2784fb21f8da745be98ba8e86c7387f8166907d89eace8f97176779
 DIST nghttp3-0.15.0.tar.xz 368348 BLAKE2B 2488a944beb0165e8cad26ddc37b79eb50f7c16807902fc43f97afc57c46a9bb5857eb041c870dbdcd3d817c3b45e1849c325cbea5ef67c9198adec7421e38d6 SHA512 f65cb3b2de1abb12b13b214a60b83c9570a265f99e082cc62b6791a32c929cd78c3a228e38ccd5edd36c12998486633b660b6737fe6c1fbe1b03acdb9ca033dd
+DIST nghttp3-1.0.0.tar.xz 369384 BLAKE2B a36b0c75e3c3c44b76652ef7c344831abe6cc160724203b9cb0951416d19df5630ac09c4a5eaf60203a6afcb5eab452d53546d97082f06e4761533b5f7518556 SHA512 84d3207346da3807e56a6f9d7f826ae4174d5a0ba6c4bf1e71dd3f6a7e694eb8f2b9607ed862ffac7b29509521f8216aef3e0910425a65bc4e94ffa879f4d3d8

diff --git a/net-libs/nghttp3/nghttp3-1.0.0.ebuild b/net-libs/nghttp3/nghttp3-1.0.0.ebuild
new file mode 100644
index 000000000000..7f4078fba594
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.0.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-11-26 15:35 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-11-26 15:35 UTC (permalink / raw
  To: gentoo-commits

commit:     2472eb44c7a45ad2fe842673a796ce7b219773d3
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 15:34:03 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 15:35:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2472eb44

net-libs/nghttp3: add 1.1.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.1.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 972d55ba9cc5..9ebf023d8ba5 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-1.0.0.tar.xz 369384 BLAKE2B a36b0c75e3c3c44b76652ef7c344831abe6cc160724203b9cb0951416d19df5630ac09c4a5eaf60203a6afcb5eab452d53546d97082f06e4761533b5f7518556 SHA512 84d3207346da3807e56a6f9d7f826ae4174d5a0ba6c4bf1e71dd3f6a7e694eb8f2b9607ed862ffac7b29509521f8216aef3e0910425a65bc4e94ffa879f4d3d8
+DIST nghttp3-1.1.0.tar.xz 369832 BLAKE2B d6b5ddf7d5809159f4f4d4f8b1750009d05d686bdfdaa882d242cf729f6cc7a950d6095aa0ab22b18d2d9dd7132d0f493bacc635617b5c74f993052bcbb964ce SHA512 30330a8002a296be4441f88f444436baba5e989b8c07dc95c55b43c85de8c2f995b000e88c6d44dc98449c10d9648dd45f641b8b24c0577c3b93e90faeba78b4

diff --git a/net-libs/nghttp3/nghttp3-1.1.0.ebuild b/net-libs/nghttp3/nghttp3-1.1.0.ebuild
new file mode 100644
index 000000000000..7f4078fba594
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.1.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2023-11-26 15:35 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2023-11-26 15:35 UTC (permalink / raw
  To: gentoo-commits

commit:     cdff62ce84c3e6ebd6fa2398deb1497bb8dc0b54
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 15:34:05 2023 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 15:35:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdff62ce

net-libs/nghttp3: drop 1.0.0

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

 net-libs/nghttp3/Manifest             |  1 -
 net-libs/nghttp3/nghttp3-1.0.0.ebuild | 40 -----------------------------------
 2 files changed, 41 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 9ebf023d8ba5..031a268d09b2 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1 @@
-DIST nghttp3-1.0.0.tar.xz 369384 BLAKE2B a36b0c75e3c3c44b76652ef7c344831abe6cc160724203b9cb0951416d19df5630ac09c4a5eaf60203a6afcb5eab452d53546d97082f06e4761533b5f7518556 SHA512 84d3207346da3807e56a6f9d7f826ae4174d5a0ba6c4bf1e71dd3f6a7e694eb8f2b9607ed862ffac7b29509521f8216aef3e0910425a65bc4e94ffa879f4d3d8
 DIST nghttp3-1.1.0.tar.xz 369832 BLAKE2B d6b5ddf7d5809159f4f4d4f8b1750009d05d686bdfdaa882d242cf729f6cc7a950d6095aa0ab22b18d2d9dd7132d0f493bacc635617b5c74f993052bcbb964ce SHA512 30330a8002a296be4441f88f444436baba5e989b8c07dc95c55b43c85de8c2f995b000e88c6d44dc98449c10d9648dd45f641b8b24c0577c3b93e90faeba78b4

diff --git a/net-libs/nghttp3/nghttp3-1.0.0.ebuild b/net-libs/nghttp3/nghttp3-1.0.0.ebuild
deleted file mode 100644
index 7f4078fba594..000000000000
--- a/net-libs/nghttp3/nghttp3-1.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-02-17  4:16 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-02-17  4:16 UTC (permalink / raw
  To: gentoo-commits

commit:     b2ae6054fdd15dc6220484ab0a1f1ff30c3b1995
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 17 04:14:52 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Feb 17 04:16:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2ae6054

net-libs/nghttp3: add 1.2.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.2.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 031a268d09b2..f328e6aa2949 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-1.1.0.tar.xz 369832 BLAKE2B d6b5ddf7d5809159f4f4d4f8b1750009d05d686bdfdaa882d242cf729f6cc7a950d6095aa0ab22b18d2d9dd7132d0f493bacc635617b5c74f993052bcbb964ce SHA512 30330a8002a296be4441f88f444436baba5e989b8c07dc95c55b43c85de8c2f995b000e88c6d44dc98449c10d9648dd45f641b8b24c0577c3b93e90faeba78b4
+DIST nghttp3-1.2.0.tar.xz 387592 BLAKE2B b3ad897fda5d616a93f063bafde760eda6f597c90de6c81793abef3ff30de05bb2a06388fa868f95c0871a6592331d17a2d344c63817179ad21c6390bc0e499b SHA512 51ade6b17215eb15c92b18ad7a94b70e0a442d5968aee31ec734e5826d09ca34197e64407a1ac3f7bfb4ed1a0b3c3b58afc4a152542bacdcc4c71140931a7652

diff --git a/net-libs/nghttp3/nghttp3-1.2.0.ebuild b/net-libs/nghttp3/nghttp3-1.2.0.ebuild
new file mode 100644
index 000000000000..c93630cc9fef
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.2.0.ebuild
@@ -0,0 +1,40 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs test"
+
+BDEPEND="virtual/pkgconfig"
+DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-04-05 15:08 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-04-05 15:08 UTC (permalink / raw
  To: gentoo-commits

commit:     3c9d5c9ce6dbf1dc41413ba829f51ee73d5b11cb
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 15:05:05 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 15:08:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c9d5c9c

net-libs/nghttp3: no longer uses cunit

Closes: https://bugs.gentoo.org/924750
See: https://github.com/ngtcp2/nghttp3/releases/tag/v1.2.0
See: https://github.com/ngtcp2/nghttp3/commit/67f39861a81d8d19ea085b62655353e484d2080f
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/{nghttp3-9999.ebuild => nghttp3-1.2.0-r1.ebuild} | 5 ++---
 net-libs/nghttp3/nghttp3-9999.ebuild                              | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild
similarity index 87%
copy from net-libs/nghttp3/nghttp3-9999.ebuild
copy to net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild
index 719966f4eab6..3a8480492ead 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"
@@ -30,7 +30,6 @@ multilib_src_configure() {
 		-DENABLE_LIB_ONLY=ON
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
 	)
 	cmake_src_configure
 }

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 719966f4eab6..3a8480492ead 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~hppa"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"
@@ -30,7 +30,6 @@ multilib_src_configure() {
 		-DENABLE_LIB_ONLY=ON
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
 	)
 	cmake_src_configure
 }


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-04-05 15:26 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-04-05 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     6a7e149e6d77f55f533d008915838cdbab8ea459
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 15:25:58 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 15:26:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7e149e

net-libs/nghttp3: drop 1.1.0, 1.2.0, 1.2.0-r1

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

 net-libs/nghttp3/Manifest                |  1 -
 net-libs/nghttp3/nghttp3-1.1.0.ebuild    | 40 --------------------------------
 net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild | 39 -------------------------------
 net-libs/nghttp3/nghttp3-1.2.0.ebuild    | 40 --------------------------------
 4 files changed, 120 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index f328e6aa2949..de40c8a844fc 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1 @@
-DIST nghttp3-1.1.0.tar.xz 369832 BLAKE2B d6b5ddf7d5809159f4f4d4f8b1750009d05d686bdfdaa882d242cf729f6cc7a950d6095aa0ab22b18d2d9dd7132d0f493bacc635617b5c74f993052bcbb964ce SHA512 30330a8002a296be4441f88f444436baba5e989b8c07dc95c55b43c85de8c2f995b000e88c6d44dc98449c10d9648dd45f641b8b24c0577c3b93e90faeba78b4
 DIST nghttp3-1.2.0.tar.xz 387592 BLAKE2B b3ad897fda5d616a93f063bafde760eda6f597c90de6c81793abef3ff30de05bb2a06388fa868f95c0871a6592331d17a2d344c63817179ad21c6390bc0e499b SHA512 51ade6b17215eb15c92b18ad7a94b70e0a442d5968aee31ec734e5826d09ca34197e64407a1ac3f7bfb4ed1a0b3c3b58afc4a152542bacdcc4c71140931a7652

diff --git a/net-libs/nghttp3/nghttp3-1.1.0.ebuild b/net-libs/nghttp3/nghttp3-1.1.0.ebuild
deleted file mode 100644
index 7f4078fba594..000000000000
--- a/net-libs/nghttp3/nghttp3-1.1.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild b/net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild
deleted file mode 100644
index 3a8480492ead..000000000000
--- a/net-libs/nghttp3/nghttp3-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-1.2.0.ebuild b/net-libs/nghttp3/nghttp3-1.2.0.ebuild
deleted file mode 100644
index c93630cc9fef..000000000000
--- a/net-libs/nghttp3/nghttp3-1.2.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs test"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-		-DCMAKE_DISABLE_FIND_PACKAGE_CUnit=$(usex !test)
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-04-05 15:26 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-04-05 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     b3c7d3a5d415467c36a739d4dea24f59f8c30c9f
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 15:24:43 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 15:26:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c7d3a5

net-libs/nghttp3: remove unused cunit dependency

Bug: https://bugs.gentoo.org/924750
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 net-libs/nghttp3/{nghttp3-9999.ebuild => nghttp3-1.2.0-r2.ebuild} | 4 +---
 net-libs/nghttp3/nghttp3-9999.ebuild                              | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
similarity index 86%
copy from net-libs/nghttp3/nghttp3-9999.ebuild
copy to net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
index 3a8480492ead..6715be902969 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
@@ -18,12 +18,10 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="static-libs test"
+IUSE="static-libs"
 
 BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
 RDEPEND=""
-RESTRICT="!test? ( test )"
 
 multilib_src_configure() {
 	local mycmakeargs=(

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 3a8480492ead..6715be902969 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -18,12 +18,10 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="static-libs test"
+IUSE="static-libs"
 
 BDEPEND="virtual/pkgconfig"
-DEPEND="test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
 RDEPEND=""
-RESTRICT="!test? ( test )"
 
 multilib_src_configure() {
 	local mycmakeargs=(


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-05-09 14:21 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-05-09 14:21 UTC (permalink / raw
  To: gentoo-commits

commit:     09740a12db553a583a5a8675495375c4b899ef88
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu May  9 14:20:33 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu May  9 14:21:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09740a12

net-libs/nghttp3: add 1.3.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 37 +++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index de40c8a844fc..8a065c0e7ab8 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1 +1,2 @@
 DIST nghttp3-1.2.0.tar.xz 387592 BLAKE2B b3ad897fda5d616a93f063bafde760eda6f597c90de6c81793abef3ff30de05bb2a06388fa868f95c0871a6592331d17a2d344c63817179ad21c6390bc0e499b SHA512 51ade6b17215eb15c92b18ad7a94b70e0a442d5968aee31ec734e5826d09ca34197e64407a1ac3f7bfb4ed1a0b3c3b58afc4a152542bacdcc4c71140931a7652
+DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
new file mode 100644
index 000000000000..6715be902969
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -0,0 +1,37 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~hppa"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND=""
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-06-01  1:15 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-06-01  1:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8c741361508cce23f5f75cc7161c7f6a5ead79ad
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  1 01:11:04 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  1 01:14:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c741361

net-libs/nghttp3: update upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/metadata.xml b/net-libs/nghttp3/metadata.xml
index 71f915056b8c..05702b121fc6 100644
--- a/net-libs/nghttp3/metadata.xml
+++ b/net-libs/nghttp3/metadata.xml
@@ -6,6 +6,6 @@
 		<name>Craig Andrews</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">ngtcp2/ngtcp2</remote-id>
+		<remote-id type="github">ngtcp2/nghttp3</remote-id>
 	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-06-01  3:56 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-06-01  3:56 UTC (permalink / raw
  To: gentoo-commits

commit:     57ad8f5e96a020400dc4fa2f741585e554241a0d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  1 03:56:07 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  1 03:56:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ad8f5e

net-libs/nghttp3: Keyword 1.3.0 arm, #933292

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
index e8ce0259cf2f..1e4141b9d1a0 100644
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm64 ~hppa"
+	KEYWORDS="amd64 ~arm arm64 ~hppa"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-06-01  6:22 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-06-01  6:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f1f196b24ef4224dd0b0f904b7839f311c9cca16
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  1 06:22:44 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  1 06:22:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f196b2

net-libs/nghttp3: Keyword 1.3.0 x86, #933292

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
index 1e4141b9d1a0..fe7d3db77a65 100644
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm arm64 ~hppa"
+	KEYWORDS="amd64 ~arm arm64 ~hppa ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-06-05  9:01 Yixun Lan
  0 siblings, 0 replies; 63+ messages in thread
From: Yixun Lan @ 2024-06-05  9:01 UTC (permalink / raw
  To: gentoo-commits

commit:     206644eafa93f02c5b31f5d5c0b52aaf7f26eaf8
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Jun  5 08:38:57 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Jun  5 09:01:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206644ea

net-libs/nghttp3: Keyword 1.3.0 riscv, #933292

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
index fe7d3db77a65..3e88aaed40b1 100644
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm arm64 ~hppa ~x86"
+	KEYWORDS="amd64 ~arm arm64 ~hppa ~riscv ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-06-13 14:01 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-06-13 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     d5730dbbf8ee7aa4860e01200224f7391d4c6fcd
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 13:56:00 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 14:00:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5730dbb

net-libs/nghttp3: add 1.4.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 37 +++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 8a065c0e7ab8..5d0fcd1e879f 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1,3 @@
 DIST nghttp3-1.2.0.tar.xz 387592 BLAKE2B b3ad897fda5d616a93f063bafde760eda6f597c90de6c81793abef3ff30de05bb2a06388fa868f95c0871a6592331d17a2d344c63817179ad21c6390bc0e499b SHA512 51ade6b17215eb15c92b18ad7a94b70e0a442d5968aee31ec734e5826d09ca34197e64407a1ac3f7bfb4ed1a0b3c3b58afc4a152542bacdcc4c71140931a7652
 DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c
+DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
new file mode 100644
index 000000000000..2c11c586801a
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -0,0 +1,37 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~riscv ~x86"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+IUSE="static-libs"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND=""
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+	)
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-07-08  9:16 Matt Jolly
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Jolly @ 2024-07-08  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     319194338d8e709133b86b054c3d284bd899c178
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  8 09:14:20 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Mon Jul  8 09:16:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31919433

net-libs/nghttp3: fix tests; sync 9999.

For 1.4.0 upstream changed the build system to both require an
additional option to enable tests _and_ requires USE=static-libs
for that flag to take effect.

This commit re-enables tests for 1.4.0 and syncs the live ebuild.

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 11 ++++++++---
 net-libs/nghttp3/nghttp3-9999.ebuild  | 13 +++++++++----
 2 files changed, 17 insertions(+), 7 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
index 0d2dcc6e27ff..b342674b4fa5 100644
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -18,10 +18,14 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="static-libs"
+
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+	test? ( static-libs )
+"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND=""
 
 multilib_src_configure() {
 	local mycmakeargs=(
@@ -29,9 +33,10 @@ multilib_src_configure() {
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
 	)
+	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
 	cmake_src_configure
 }
 
 multilib_src_test() {
-	cmake_build check
+	multilib_is_native_abi && cmake_build check
 }

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 6715be902969..b342674b4fa5 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"
@@ -18,10 +18,14 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-IUSE="static-libs"
+
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+	test? ( static-libs )
+"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND=""
 
 multilib_src_configure() {
 	local mycmakeargs=(
@@ -29,9 +33,10 @@ multilib_src_configure() {
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
 	)
+	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
 	cmake_src_configure
 }
 
 multilib_src_test() {
-	cmake_build check
+	multilib_is_native_abi && cmake_build check
 }


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-07-08  9:16 Matt Jolly
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Jolly @ 2024-07-08  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     257bebb002132330671fa149489624746dc2e492
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  8 09:15:33 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Mon Jul  8 09:16:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257bebb0

net-libs/nghttp3: drop 1.2.0-r2

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 net-libs/nghttp3/Manifest                |  1 -
 net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild | 36 --------------------------------
 2 files changed, 37 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 5d0fcd1e879f..02d07708fed4 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,3 +1,2 @@
-DIST nghttp3-1.2.0.tar.xz 387592 BLAKE2B b3ad897fda5d616a93f063bafde760eda6f597c90de6c81793abef3ff30de05bb2a06388fa868f95c0871a6592331d17a2d344c63817179ad21c6390bc0e499b SHA512 51ade6b17215eb15c92b18ad7a94b70e0a442d5968aee31ec734e5826d09ca34197e64407a1ac3f7bfb4ed1a0b3c3b58afc4a152542bacdcc4c71140931a7652
 DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c
 DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895

diff --git a/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild b/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
deleted file mode 100644
index e24776773f1f..000000000000
--- a/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~hppa"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs"
-
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-07-08  9:16 Matt Jolly
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Jolly @ 2024-07-08  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     38c7703a247c6d44961d222865fafad66c14cf30
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  8 09:15:05 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Mon Jul  8 09:16:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c7703a

net-libs/nghttp3: fix QA issues

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild | 1 -
 net-libs/nghttp3/nghttp3-1.3.0.ebuild    | 1 -
 2 files changed, 2 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild b/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
index 6715be902969..e24776773f1f 100644
--- a/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.2.0-r2.ebuild
@@ -21,7 +21,6 @@ SLOT="0/0"
 IUSE="static-libs"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND=""
 
 multilib_src_configure() {
 	local mycmakeargs=(

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
index 3e88aaed40b1..610121890c67 100644
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -21,7 +21,6 @@ SLOT="0/0"
 IUSE="static-libs"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND=""
 
 multilib_src_configure() {
 	local mycmakeargs=(


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-14  1:38 Matt Jolly
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Jolly @ 2024-08-14  1:38 UTC (permalink / raw
  To: gentoo-commits

commit:     29b8b1e52db05f7356adada19c90231bad6f6165
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 13 23:46:06 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Wed Aug 14 01:26:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29b8b1e5

net-libs/nghttp3: keyword 1.4.0 for ~sparc

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
index b342674b4fa5..111b9ebebcb4 100644
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-20  7:22 WANG Xuerui
  0 siblings, 0 replies; 63+ messages in thread
From: WANG Xuerui @ 2024-08-20  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     eff1a7652091e2697d87cf98b5a56cc50ccca4ae
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 20 07:14:31 2024 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue Aug 20 07:22:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eff1a765

net-libs/nghttp3: keyword 1.4.0 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
index 111b9ebebcb4..5d4c61ea8172 100644
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-20  7:22 WANG Xuerui
  0 siblings, 0 replies; 63+ messages in thread
From: WANG Xuerui @ 2024-08-20  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     a3bd631ba46d1755a79871bc7bfa3f7aefce8fe3
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 20 07:14:44 2024 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue Aug 20 07:22:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3bd631b

net-libs/nghttp3: forward ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index b342674b4fa5..6f21ea803a4e 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-20  8:20 Fabian Groffen
  0 siblings, 0 replies; 63+ messages in thread
From: Fabian Groffen @ 2024-08-20  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     b97cffe881a2c46948975c210e40f43ed3ef0513
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 20 08:19:00 2024 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue Aug 20 08:19:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b97cffe8

net-libs/nghttp3: keyworded for Prefix solaris/macos

Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
index 5d4c61ea8172..689f8a212cbe 100644
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-25 22:20 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-08-25 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     5f2dc7f0e02b0bf2f89b0e5e17c010dbeb4580e2
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 25 22:19:34 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Aug 25 22:19:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f2dc7f0

net-libs/nghttp3: add 1.5.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 42 +++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 02d07708fed4..26fda781349a 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,2 +1,3 @@
 DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c
 DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895
+DIST nghttp3-1.5.0.tar.xz 391668 BLAKE2B cbafd1e927bc39db78e238c0a7330170ec8e7a6fad96489fe754088cd40def9ddff7f7eef64bc9dc6efc729acbd4dfe2779bb5ac72092bfe91e3e6aab5b97456 SHA512 76a089fb0dd88b9aced41fccf36758c6504f8faf68c143ca81c260c017ac6dfd83fe678c401304de8bf65e859b0559dc5e8fcb37e88e547076d0ba9fd2c4a59c

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
new file mode 100644
index 000000000000..689f8a212cbe
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -0,0 +1,42 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+	test? ( static-libs )
+"
+
+BDEPEND="virtual/pkgconfig"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+	)
+	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	multilib_is_native_abi && cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-26  8:00 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-08-26  8:00 UTC (permalink / raw
  To: gentoo-commits

commit:     ab1a55d1bceadb3d62069f6112d7c263b8c02a25
Author:     Henry Chen <chenx97 <AT> aosc <DOT> io>
AuthorDate: Tue Aug 20 08:35:33 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 07:51:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1a55d1

net-libs/nghttp3: keyword 1.4.0 for ~mips

Signed-off-by: Henry Chen <chenx97 <AT> aosc.io>
Closes: https://github.com/gentoo/gentoo/pull/38216
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
index 689f8a212cbe..c543c530dd7e 100644
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-08-29  5:16 Jakov Smolić
  0 siblings, 0 replies; 63+ messages in thread
From: Jakov Smolić @ 2024-08-29  5:16 UTC (permalink / raw
  To: gentoo-commits

commit:     cdac30b56ef0a5cced319073758f11cce34f4d9e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 05:16:18 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 05:16:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdac30b5

net-libs/nghttp3: Stabilize 1.3.0 x86, #938641

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
index a6b153cf21d0..090a05628f65 100644
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm arm64 ~hppa ~riscv ~x86"
+	KEYWORDS="amd64 arm arm64 ~hppa ~riscv x86"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-09-11 18:12 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-09-11 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e2154f05803d9ac7cf5fe7d439b30450271360c9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 11 18:11:32 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 11 18:11:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2154f05

net-libs/nghttp3: Keyword 1.5.0 ppc64, #933292

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 689f8a212cbe..4a0974d256ea 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc64 ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-09-29 19:37 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-09-29 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     b615a3f18baacc33e538b68bf25b427d65ee73fd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 19:37:31 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 19:37:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b615a3f1

net-libs/nghttp3: Stabilize 1.5.0 amd64, #939557

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index e42255d6c59f..2dfdcd40da85 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-09-29 19:37 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-09-29 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c3cc956609205c7fbff149960233dd0be1bde06a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 19:37:32 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 19:37:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3cc9566

net-libs/nghttp3: Stabilize 1.5.0 x86, #939557

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 2dfdcd40da85..66acd755e80f 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-09-29 22:59 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-09-29 22:59 UTC (permalink / raw
  To: gentoo-commits

commit:     df8b8f9c9de90f6077b6505b7874659218533bfc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 22:58:45 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 22:58:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8b8f9c

net-libs/nghttp3: Stabilize 1.5.0 ppc64, #939552

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 66acd755e80f..73e1a756bf6f 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-03  1:00 Matt Jolly
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Jolly @ 2024-10-03  1:00 UTC (permalink / raw
  To: gentoo-commits

commit:     9c1e1c850d18d188ad5ca58f2be9069b6df8c4a1
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  3 00:58:24 2024 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Thu Oct  3 00:58:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1e1c85

net-libs/nghttp3: keyword 1.5.0 for ~mips

Bring the keyword forward to 1.5.0.

1.4.0 had the ~mips keyword added just as 1.5.0 was
added to the tree.

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 73e1a756bf6f..fa5295e5a950 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-03 16:11 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-10-03 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     d3ba8d7c7cedb47a25e4c116f12ede670da3031a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  3 16:10:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Oct  3 16:10:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ba8d7c

net-libs/nghttp3: Stabilize 1.5.0 arm, #939557

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index fa5295e5a950..02d9cb56acae 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-04 17:30 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-10-04 17:30 UTC (permalink / raw
  To: gentoo-commits

commit:     293f9410d471bc735044cbc8e3806b7de8adcf28
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  4 17:29:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  4 17:29:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293f9410

net-libs/nghttp3: Keyword 1.5.0 ppc, #937892

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 02d9cb56acae..c653227312aa 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-07 13:37 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-10-07 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     77d883fb1d5eccfaa4be4b5ea78801453c073958
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  7 13:35:12 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 13:37:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d883fb

net-libs/nghttp3: add 1.6.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.6.0.ebuild | 42 +++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index 26fda781349a..c5b5b202a735 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,3 +1,4 @@
 DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c
 DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895
 DIST nghttp3-1.5.0.tar.xz 391668 BLAKE2B cbafd1e927bc39db78e238c0a7330170ec8e7a6fad96489fe754088cd40def9ddff7f7eef64bc9dc6efc729acbd4dfe2779bb5ac72092bfe91e3e6aab5b97456 SHA512 76a089fb0dd88b9aced41fccf36758c6504f8faf68c143ca81c260c017ac6dfd83fe678c401304de8bf65e859b0559dc5e8fcb37e88e547076d0ba9fd2c4a59c
+DIST nghttp3-1.6.0.tar.xz 392480 BLAKE2B 43cedaaddaf450a8c3cac4be2353605c85230ef394a94bd40d74f1561fb3593d022f865da41aa05d301de43ccc0aade69f015866cfb93501c4c9083808ef81cf SHA512 d0f585cf388a48d391f803897b0998c12c39e118ca380ecc48c4d3dfd3ff4588a5e456dc89a96f2f5ffd5afc261a2d60a71fd4d8ebb82af35bfe6668737538d8

diff --git a/net-libs/nghttp3/nghttp3-1.6.0.ebuild b/net-libs/nghttp3/nghttp3-1.6.0.ebuild
new file mode 100644
index 000000000000..73e1a756bf6f
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.6.0.ebuild
@@ -0,0 +1,42 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+	test? ( static-libs )
+"
+
+BDEPEND="virtual/pkgconfig"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+	)
+	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	multilib_is_native_abi && cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-13 19:27 Arthur Zamarin
  0 siblings, 0 replies; 63+ messages in thread
From: Arthur Zamarin @ 2024-10-13 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     3fb04f1f4eaa803d7ea99f0ac75fc9125be6318f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 13 19:27:24 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 19:27:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb04f1f

net-libs/nghttp3: Stabilize 1.5.0 sparc, #939552

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 1cd64fc96429..6d2ee31381c3 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-10-30 22:09 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2024-10-30 22:09 UTC (permalink / raw
  To: gentoo-commits

commit:     9bedc5d37687e67ce3051c85dddc4eaa96e0a712
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 30 22:08:22 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 30 22:08:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bedc5d3

net-libs/nghttp3: Stabilize 1.5.0 hppa, #939552

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.5.0.ebuild b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
index 6d2ee31381c3..dd7323b616ea 100644
--- a/net-libs/nghttp3/nghttp3-1.5.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.5.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm arm64 hppa ~loong ~mips ~ppc ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-11-10 17:06 James Le Cuirot
  0 siblings, 0 replies; 63+ messages in thread
From: James Le Cuirot @ 2024-11-10 17:06 UTC (permalink / raw
  To: gentoo-commits

commit:     aea2e004101db8211ee99e7ee85e0e153b165dfa
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 10 17:05:27 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Nov 10 17:05:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea2e004

net-libs/nghttp3: Keyword 1.6.0 for ~m68k

The tests pass.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.6.0.ebuild b/net-libs/nghttp3/nghttp3-1.6.0.ebuild
index 73e1a756bf6f..435f7754e75c 100644
--- a/net-libs/nghttp3/nghttp3-1.6.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.6.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2024-12-19 14:18 Craig Andrews
  0 siblings, 0 replies; 63+ messages in thread
From: Craig Andrews @ 2024-12-19 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     75493c987b917f2188a8c82689f71b3a7fc9e3fd
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 19 14:18:06 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Dec 19 14:18:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75493c98

net-libs/nghttp3: add 1.7.0

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

 net-libs/nghttp3/Manifest             |  1 +
 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 42 +++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index c5b5b202a735..d961d50a879c 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -2,3 +2,4 @@ DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd9
 DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895
 DIST nghttp3-1.5.0.tar.xz 391668 BLAKE2B cbafd1e927bc39db78e238c0a7330170ec8e7a6fad96489fe754088cd40def9ddff7f7eef64bc9dc6efc729acbd4dfe2779bb5ac72092bfe91e3e6aab5b97456 SHA512 76a089fb0dd88b9aced41fccf36758c6504f8faf68c143ca81c260c017ac6dfd83fe678c401304de8bf65e859b0559dc5e8fcb37e88e547076d0ba9fd2c4a59c
 DIST nghttp3-1.6.0.tar.xz 392480 BLAKE2B 43cedaaddaf450a8c3cac4be2353605c85230ef394a94bd40d74f1561fb3593d022f865da41aa05d301de43ccc0aade69f015866cfb93501c4c9083808ef81cf SHA512 d0f585cf388a48d391f803897b0998c12c39e118ca380ecc48c4d3dfd3ff4588a5e456dc89a96f2f5ffd5afc261a2d60a71fd4d8ebb82af35bfe6668737538d8
+DIST nghttp3-1.7.0.tar.xz 395808 BLAKE2B 2a13747518883a0f11005ee1189dc6a32a73fdf390416f6e3c352a7be76cccd68522581c2148c6a86c24f14ba13fc21a7c6d6815ab3ad724c08a8088d1421d3b SHA512 77510e2056206e3e149bc3535a0e7e6095afb0a0358a9dda48c8be82199eaefd0dadbba7e027c5c14eb46572d2dbc929a99c3b9c6d27c83a1c80428263ccecab

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
new file mode 100644
index 000000000000..435f7754e75c
--- /dev/null
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -0,0 +1,42 @@
+# 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/nghttp3.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="HTTP/3 library written in C"
+HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
+
+LICENSE="MIT"
+SLOT="0/0"
+
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+	test? ( static-libs )
+"
+
+BDEPEND="virtual/pkgconfig"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_LIB_ONLY=ON
+		-DENABLE_STATIC_LIB=$(usex static-libs)
+		-DENABLE_EXAMPLES=OFF
+	)
+	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
+	cmake_src_configure
+}
+
+multilib_src_test() {
+	multilib_is_native_abi && cmake_build check
+}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-03  1:47 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-03  1:47 UTC (permalink / raw
  To: gentoo-commits

commit:     252c4bec5c2c759402c9eeb911a56493b9d69333
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 01:45:36 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 01:45:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=252c4bec

net-libs/nghttp3: add note above REQUIRED_USE wrt tests

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 1 +
 net-libs/nghttp3/nghttp3-9999.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index 86f7b5d1f125..ddeee7aee2f3 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -20,6 +20,7 @@ LICENSE="MIT"
 SLOT="0/0"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
+# Without static-libs, src_test just won't run any tests and "pass".
 REQUIRED_USE="
 	test? ( static-libs )
 "

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 17b289e52ca1..75bde0f87eca 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -20,6 +20,7 @@ LICENSE="MIT"
 SLOT="0/0"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
+# Without static-libs, src_test just won't run any tests and "pass".
 REQUIRED_USE="
 	test? ( static-libs )
 "


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-03  1:47 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-03  1:47 UTC (permalink / raw
  To: gentoo-commits

commit:     382e8109881dac3f6ade3465a3e2ab0e0310bf13
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 01:44:01 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 01:44:01 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382e8109

net-libs/nghttp3: run tests for multilib too

This constraint was added in 319194338d8e709133b86b054c3d284bd899c178 but
I'm not sure why. ngtcp2 and nghttp3 both work fine with multilib tests
and nghttp3 seems to as well.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild |  5 ++---
 net-libs/nghttp3/nghttp3-9999.ebuild  | 13 ++++++++-----
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index 70addd2e8479..86f7b5d1f125 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -18,7 +18,6 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="
@@ -36,11 +35,11 @@ multilib_src_configure() {
 		-DENABLE_LIB_ONLY=ON
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
+		-DBUILD_TESTING=$(usex test)
 	)
-	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
 	cmake_src_configure
 }
 
 multilib_src_test() {
-	multilib_is_native_abi && cmake_build check
+	cmake_build check
 }

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 42309a43581b..17b289e52ca1 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~riscv ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~ppc64 ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"
@@ -18,7 +18,6 @@ HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
 
 LICENSE="MIT"
 SLOT="0/0"
-
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="
@@ -27,16 +26,20 @@ REQUIRED_USE="
 
 BDEPEND="virtual/pkgconfig"
 
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.7.0-munit-c23.patch
+)
+
 multilib_src_configure() {
 	local mycmakeargs=(
 		-DENABLE_LIB_ONLY=ON
 		-DENABLE_STATIC_LIB=$(usex static-libs)
 		-DENABLE_EXAMPLES=OFF
+		-DBUILD_TESTING=$(usex test)
 	)
-	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
 	cmake_src_configure
 }
 
 multilib_src_test() {
-	multilib_is_native_abi && cmake_build check
+	cmake_build check
 }


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-03  1:50 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-03  1:50 UTC (permalink / raw
  To: gentoo-commits

commit:     b0f2d4b7b8ae2b534d0d7708019919ea940d78f4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 01:49:08 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 01:49:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f2d4b7

net-libs/nghttp3: drop 1.3.0, 1.4.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/Manifest             |  2 --
 net-libs/nghttp3/nghttp3-1.3.0.ebuild | 36 ------------------------------
 net-libs/nghttp3/nghttp3-1.4.0.ebuild | 42 -----------------------------------
 3 files changed, 80 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index d961d50a879c..d7b5186b2812 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,5 +1,3 @@
-DIST nghttp3-1.3.0.tar.xz 390176 BLAKE2B 8ff17da3e53efb27b13e9ab17dba4ca27cc8fd948b160a36a0b0496f61a49c2729f1281f9a29cb8fecd4dd2c274696885a3c5e001be3dcfc30f5f1c9b6339467 SHA512 a862e7a3c3f6722b07d5437976850b2998032d1f7b9da7a49e6863d59c611ff7204c9923e8e570301a9bfbd91931a30f8f85e96cfb35481783adfc2f955a8b8c
-DIST nghttp3-1.4.0.tar.xz 389036 BLAKE2B f8292aded56c0778dc285cf7d8261494c89e70e1e2128b0196be97706b1ce45edfd885031d069990429ef82c56c4922e0fe07d7471d4851642ce5e8afaf02bb9 SHA512 39ff9418009dcf84ae58d8297f53427da91509a69ecc4fc78c4c00f0fe6bbe348f7afffeafe535ae4c02ff9f0413016b4f51de6a87d8e8c8f6b415bb7f2b0895
 DIST nghttp3-1.5.0.tar.xz 391668 BLAKE2B cbafd1e927bc39db78e238c0a7330170ec8e7a6fad96489fe754088cd40def9ddff7f7eef64bc9dc6efc729acbd4dfe2779bb5ac72092bfe91e3e6aab5b97456 SHA512 76a089fb0dd88b9aced41fccf36758c6504f8faf68c143ca81c260c017ac6dfd83fe678c401304de8bf65e859b0559dc5e8fcb37e88e547076d0ba9fd2c4a59c
 DIST nghttp3-1.6.0.tar.xz 392480 BLAKE2B 43cedaaddaf450a8c3cac4be2353605c85230ef394a94bd40d74f1561fb3593d022f865da41aa05d301de43ccc0aade69f015866cfb93501c4c9083808ef81cf SHA512 d0f585cf388a48d391f803897b0998c12c39e118ca380ecc48c4d3dfd3ff4588a5e456dc89a96f2f5ffd5afc261a2d60a71fd4d8ebb82af35bfe6668737538d8
 DIST nghttp3-1.7.0.tar.xz 395808 BLAKE2B 2a13747518883a0f11005ee1189dc6a32a73fdf390416f6e3c352a7be76cccd68522581c2148c6a86c24f14ba13fc21a7c6d6815ab3ad724c08a8088d1421d3b SHA512 77510e2056206e3e149bc3535a0e7e6095afb0a0358a9dda48c8be82199eaefd0dadbba7e027c5c14eb46572d2dbc929a99c3b9c6d27c83a1c80428263ccecab

diff --git a/net-libs/nghttp3/nghttp3-1.3.0.ebuild b/net-libs/nghttp3/nghttp3-1.3.0.ebuild
deleted file mode 100644
index 090a05628f65..000000000000
--- a/net-libs/nghttp3/nghttp3-1.3.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm arm64 ~hppa ~riscv x86"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-IUSE="static-libs"
-
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-	)
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	cmake_build check
-}

diff --git a/net-libs/nghttp3/nghttp3-1.4.0.ebuild b/net-libs/nghttp3/nghttp3-1.4.0.ebuild
deleted file mode 100644
index b25dc423857e..000000000000
--- a/net-libs/nghttp3/nghttp3-1.4.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~riscv ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-
-IUSE="static-libs test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
-	test? ( static-libs )
-"
-
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-	)
-	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	multilib_is_native_abi && cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-03  1:50 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-03  1:50 UTC (permalink / raw
  To: gentoo-commits

commit:     e53a9ae0aefa9b1f154a9537e9cdb2e0cf14a794
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 01:50:05 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 01:50:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e53a9ae0

net-libs/nghttp3: drop 1.6.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/Manifest             |  1 -
 net-libs/nghttp3/nghttp3-1.6.0.ebuild | 42 -----------------------------------
 2 files changed, 43 deletions(-)

diff --git a/net-libs/nghttp3/Manifest b/net-libs/nghttp3/Manifest
index d7b5186b2812..384c60757774 100644
--- a/net-libs/nghttp3/Manifest
+++ b/net-libs/nghttp3/Manifest
@@ -1,3 +1,2 @@
 DIST nghttp3-1.5.0.tar.xz 391668 BLAKE2B cbafd1e927bc39db78e238c0a7330170ec8e7a6fad96489fe754088cd40def9ddff7f7eef64bc9dc6efc729acbd4dfe2779bb5ac72092bfe91e3e6aab5b97456 SHA512 76a089fb0dd88b9aced41fccf36758c6504f8faf68c143ca81c260c017ac6dfd83fe678c401304de8bf65e859b0559dc5e8fcb37e88e547076d0ba9fd2c4a59c
-DIST nghttp3-1.6.0.tar.xz 392480 BLAKE2B 43cedaaddaf450a8c3cac4be2353605c85230ef394a94bd40d74f1561fb3593d022f865da41aa05d301de43ccc0aade69f015866cfb93501c4c9083808ef81cf SHA512 d0f585cf388a48d391f803897b0998c12c39e118ca380ecc48c4d3dfd3ff4588a5e456dc89a96f2f5ffd5afc261a2d60a71fd4d8ebb82af35bfe6668737538d8
 DIST nghttp3-1.7.0.tar.xz 395808 BLAKE2B 2a13747518883a0f11005ee1189dc6a32a73fdf390416f6e3c352a7be76cccd68522581c2148c6a86c24f14ba13fc21a7c6d6815ab3ad724c08a8088d1421d3b SHA512 77510e2056206e3e149bc3535a0e7e6095afb0a0358a9dda48c8be82199eaefd0dadbba7e027c5c14eb46572d2dbc929a99c3b9c6d27c83a1c80428263ccecab

diff --git a/net-libs/nghttp3/nghttp3-1.6.0.ebuild b/net-libs/nghttp3/nghttp3-1.6.0.ebuild
deleted file mode 100644
index 435f7754e75c..000000000000
--- a/net-libs/nghttp3/nghttp3-1.6.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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/nghttp3.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
-fi
-
-DESCRIPTION="HTTP/3 library written in C"
-HOMEPAGE="https://github.com/ngtcp2/nghttp3/"
-
-LICENSE="MIT"
-SLOT="0/0"
-
-IUSE="static-libs test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
-	test? ( static-libs )
-"
-
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-	local mycmakeargs=(
-		-DENABLE_LIB_ONLY=ON
-		-DENABLE_STATIC_LIB=$(usex static-libs)
-		-DENABLE_EXAMPLES=OFF
-	)
-	use test && mycmakeargs+=( -DBUILD_TESTING=ON )
-	cmake_src_configure
-}
-
-multilib_src_test() {
-	multilib_is_native_abi && cmake_build check
-}


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-03 11:32 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-03 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a3d55e284a6bed738a2fc9e7478a80bb523c0bde
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 11:31:49 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 11:31:49 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d55e28

net-libs/nghttp3: drop munit patch from live

Fixed upstream.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-9999.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/net-libs/nghttp3/nghttp3-9999.ebuild b/net-libs/nghttp3/nghttp3-9999.ebuild
index 75bde0f87eca..9e1fdeb754e4 100644
--- a/net-libs/nghttp3/nghttp3-9999.ebuild
+++ b/net-libs/nghttp3/nghttp3-9999.ebuild
@@ -27,10 +27,6 @@ REQUIRED_USE="
 
 BDEPEND="virtual/pkgconfig"
 
-PATCHES=(
-	"${FILESDIR}"/${PN}-1.7.0-munit-c23.patch
-)
-
 multilib_src_configure() {
 	local mycmakeargs=(
 		-DENABLE_LIB_ONLY=ON


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-04 17:26 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-04 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     8893b6b9003e9a8fa4964c12151d856cab719725
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  4 17:26:06 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 17:26:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8893b6b9

net-libs/nghttp3: Keyword 1.7.0 mips, #947367

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index ddeee7aee2f3..07ab2fa343e1 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-23 22:43 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-23 22:43 UTC (permalink / raw
  To: gentoo-commits

commit:     870499b8b4a1daff52e73d0fa3d3c70e08239fca
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 22:43:09 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 22:43:09 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870499b8

net-libs/nghttp3: Stabilize 1.7.0 sparc, #948627

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index 07ab2fa343e1..e775f0c7b027 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-23 22:43 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-23 22:43 UTC (permalink / raw
  To: gentoo-commits

commit:     b2ddfd3c5eace3d6b99f51a60bf352f19a0ad169
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 22:43:10 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 22:43:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2ddfd3c

net-libs/nghttp3: Stabilize 1.7.0 arm, #948627

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index e775f0c7b027..267a4950aab0 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-23 22:43 Sam James
  0 siblings, 0 replies; 63+ messages in thread
From: Sam James @ 2025-01-23 22:43 UTC (permalink / raw
  To: gentoo-commits

commit:     ba890606240a15d314fd6e71e8583ba51dfb0152
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 22:43:11 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 22:43:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba890606

net-libs/nghttp3: Stabilize 1.7.0 arm64, #948627

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index 267a4950aab0..3346836f2df6 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/
@ 2025-01-25  3:40 Matt Turner
  0 siblings, 0 replies; 63+ messages in thread
From: Matt Turner @ 2025-01-25  3:40 UTC (permalink / raw
  To: gentoo-commits

commit:     8cafc82365121c28aabdfe60a948b2ccf58a8d41
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 03:37:57 2025 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Jan 25 03:40:13 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cafc823

net-libs/nghttp3: Stabilize 1.7.0 hppa, #948627

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/nghttp3/nghttp3-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/nghttp3/nghttp3-1.7.0.ebuild b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
index 3346836f2df6..82670074d0c0 100644
--- a/net-libs/nghttp3/nghttp3-1.7.0.ebuild
+++ b/net-libs/nghttp3/nghttp3-1.7.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]] ; then
 	inherit git-r3
 else
 	SRC_URI="https://github.com/ngtcp2/nghttp3/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+	KEYWORDS="amd64 arm arm64 hppa ~loong ~m68k ~mips ppc64 ~riscv sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="HTTP/3 library written in C"


^ permalink raw reply related	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2025-01-25  3:40 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-05 14:15 [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp3/ Craig Andrews
  -- strict thread matches above, loose matches on Subject: below --
2025-01-25  3:40 Matt Turner
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-23 22:43 Sam James
2025-01-04 17:26 Sam James
2025-01-03 11:32 Sam James
2025-01-03  1:50 Sam James
2025-01-03  1:50 Sam James
2025-01-03  1:47 Sam James
2025-01-03  1:47 Sam James
2024-12-19 14:18 Craig Andrews
2024-11-10 17:06 James Le Cuirot
2024-10-30 22:09 Sam James
2024-10-13 19:27 Arthur Zamarin
2024-10-07 13:37 Craig Andrews
2024-10-04 17:30 Arthur Zamarin
2024-10-03 16:11 Arthur Zamarin
2024-10-03  1:00 Matt Jolly
2024-09-29 22:59 Sam James
2024-09-29 19:37 Sam James
2024-09-29 19:37 Sam James
2024-09-11 18:12 Arthur Zamarin
2024-08-29  5:16 Jakov Smolić
2024-08-26  8:00 Arthur Zamarin
2024-08-25 22:20 Craig Andrews
2024-08-20  8:20 Fabian Groffen
2024-08-20  7:22 WANG Xuerui
2024-08-20  7:22 WANG Xuerui
2024-08-14  1:38 Matt Jolly
2024-07-08  9:16 Matt Jolly
2024-07-08  9:16 Matt Jolly
2024-07-08  9:16 Matt Jolly
2024-06-13 14:01 Craig Andrews
2024-06-05  9:01 Yixun Lan
2024-06-01  6:22 Arthur Zamarin
2024-06-01  3:56 Sam James
2024-06-01  1:15 Sam James
2024-05-09 14:21 Craig Andrews
2024-04-05 15:26 Craig Andrews
2024-04-05 15:26 Craig Andrews
2024-04-05 15:08 Craig Andrews
2024-02-17  4:16 Craig Andrews
2023-11-26 15:35 Craig Andrews
2023-11-26 15:35 Craig Andrews
2023-10-16 12:47 Craig Andrews
2023-10-16 12:47 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-04-26 14:32 Craig Andrews
2023-04-26 14:32 Craig Andrews
2023-03-27 13:38 Craig Andrews
2023-03-27 13:38 Craig Andrews
2023-02-24 14:51 Craig Andrews
2023-02-19 20:43 Craig Andrews
2023-02-19 20:43 Craig Andrews
2023-02-19  2:40 Craig Andrews
2019-10-08 15:16 Jeroen Roovers
2019-09-15 13:33 Craig Andrews
2019-09-15  0:34 Craig Andrews
2019-09-13 20:38 Craig Andrews

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox