public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-04-29  8:23 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2021-04-29  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     777a2e51f6495562019be6561c8c089e42611bfc
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Apr 28 20:48:36 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 28 21:07:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=777a2e51

dev-cpp/fizz: new package

thanks @telans

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2021.04.19.00.ebuild | 46 ++++++++++++++++++++++++++++++++++
 dev-cpp/fizz/metadata.xml              | 13 ++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
new file mode 100644
index 000000000..23013ecdd
--- /dev/null
+++ b/dev-cpp/fizz/Manifest
@@ -0,0 +1 @@
+DIST fizz-2021.04.19.00.tar.gz 532228 BLAKE2B 980d501fb7bb67ed01711f1c0dd685ea9416912ef6bb818be3fb6e6ba9c9bd28a10edd16903a244044733ed8fe85486ab4296626445b09f22b928c8041cebcfa SHA512 dda187865b02c5f7e131fb70ed47c2a63d7024decfe94a70bbdd0ae02b6709801e2ea00f23280c50f392f91305cf11197be9204145f664dc227a7400831a9a01

diff --git a/dev-cpp/fizz/fizz-2021.04.19.00.ebuild b/dev-cpp/fizz/fizz-2021.04.19.00.ebuild
new file mode 100644
index 000000000..ce8b93c27
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2021.04.19.00.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+CMAKE_USE_DIR="${S}/fizz"
+
+RDEPEND="
+	~dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+#TODO: discover if gtest is linked
+DEPEND="
+	${RDEPEND}
+	dev-cpp/gtest
+"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}

diff --git a/dev-cpp/fizz/metadata.xml b/dev-cpp/fizz/metadata.xml
new file mode 100644
index 000000000..4bdd21df7
--- /dev/null
+++ b/dev-cpp/fizz/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<longdescription lang="en">
+The core protocol implementations are in ClientProtocol and ServerProtocol. FizzClientContext and FizzServerContext provide configuration options. FizzClient and FizzServer (which both inherit from FizzBase) provide applications with an interface to interact with the state machine. FizzClient/FizzServer receives events from the application layer, invokes the correct event handler, and invokes the application ActionVisitor to process the actions.
+
+AsyncFizzClient and AsyncFizzServer provide implementations of the folly AsyncTransportWrapper interface. They own an underlying transport (for example AsyncSocket) and perform the TLS handshake and encrypt/decrypt application data.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/facebookincubator/fizz/issues</bugs-to>
+		<remote-id type="github">facebookincubator/fizz</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-05-05  8:33 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-05-05  8:33 UTC (permalink / raw
  To: gentoo-commits

commit:     6b9e0a8b32f34fb3ef6680963e92f4d15c106b87
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed May  5 07:25:41 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed May  5 07:32:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b9e0a8b

dev-cpp/fizz: comaintainers welcome

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-cpp/fizz/metadata.xml b/dev-cpp/fizz/metadata.xml
index 4bdd21df7..44dd63454 100644
--- a/dev-cpp/fizz/metadata.xml
+++ b/dev-cpp/fizz/metadata.xml
@@ -1,6 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
 <pkgmetadata>
+	<maintainer type="person">
+		<email>lssndrbarbieri@gmail.com</email>
+		<name>Alessandro Barbieri</name>
+	</maintainer>
 	<longdescription lang="en">
 The core protocol implementations are in ClientProtocol and ServerProtocol. FizzClientContext and FizzServerContext provide configuration options. FizzClient and FizzServer (which both inherit from FizzBase) provide applications with an interface to interact with the state machine. FizzClient/FizzServer receives events from the application layer, invokes the correct event handler, and invokes the application ActionVisitor to process the actions.
 


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-05-28 10:28 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-05-28 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     64ec18e6fc8f4ef20d2218f6f8bf7c83f0b3c531
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu May 27 10:17:29 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu May 27 10:17:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64ec18e6

dev-cpp/fizz: add 2021.05.24.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2021.05.24.00.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 23013ecdd..68fd37a17 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1 +1,2 @@
 DIST fizz-2021.04.19.00.tar.gz 532228 BLAKE2B 980d501fb7bb67ed01711f1c0dd685ea9416912ef6bb818be3fb6e6ba9c9bd28a10edd16903a244044733ed8fe85486ab4296626445b09f22b928c8041cebcfa SHA512 dda187865b02c5f7e131fb70ed47c2a63d7024decfe94a70bbdd0ae02b6709801e2ea00f23280c50f392f91305cf11197be9204145f664dc227a7400831a9a01
+DIST fizz-2021.05.24.00.tar.gz 537533 BLAKE2B 68cfefd30f9a395fee32af0d98a53b9c176b6f05a0ab551943ab5d2905d0c8dc4ed82c25d081542cb1c7b5610c519a0b251bfaa684d8ad63fceb9e3ddd6acc31 SHA512 618bdf798cfb560d4c06c6eec678af4c2f9c4fa9e1b0ce3d13f440e268472c388a511e762372991202c1cd9db936f1fbd3faaea0d90b8f41027162022cce1933

diff --git a/dev-cpp/fizz/fizz-2021.05.24.00.ebuild b/dev-cpp/fizz/fizz-2021.05.24.00.ebuild
new file mode 100644
index 000000000..ce8b93c27
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2021.05.24.00.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+CMAKE_USE_DIR="${S}/fizz"
+
+RDEPEND="
+	~dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+#TODO: discover if gtest is linked
+DEPEND="
+	${RDEPEND}
+	dev-cpp/gtest
+"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-06-17  5:55 Theo Anderson
  0 siblings, 0 replies; 13+ messages in thread
From: Theo Anderson @ 2021-06-17  5:55 UTC (permalink / raw
  To: gentoo-commits

commit:     6257556318a771b2a51d0cfb49cb3e6ce3d18b71
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jun 15 23:30:52 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Jun 15 23:30:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=62575563

dev-cpp/fizz: add 2021.06.14.00, drop 2021.06.07.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                                                 | 2 +-
 dev-cpp/fizz/{fizz-2021.06.07.00.ebuild => fizz-2021.06.14.00.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index fe01170df..e92838676 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,3 +1,3 @@
 DIST fizz-2021.04.19.00.tar.gz 532228 BLAKE2B 980d501fb7bb67ed01711f1c0dd685ea9416912ef6bb818be3fb6e6ba9c9bd28a10edd16903a244044733ed8fe85486ab4296626445b09f22b928c8041cebcfa SHA512 dda187865b02c5f7e131fb70ed47c2a63d7024decfe94a70bbdd0ae02b6709801e2ea00f23280c50f392f91305cf11197be9204145f664dc227a7400831a9a01
 DIST fizz-2021.05.24.00.tar.gz 537533 BLAKE2B 68cfefd30f9a395fee32af0d98a53b9c176b6f05a0ab551943ab5d2905d0c8dc4ed82c25d081542cb1c7b5610c519a0b251bfaa684d8ad63fceb9e3ddd6acc31 SHA512 618bdf798cfb560d4c06c6eec678af4c2f9c4fa9e1b0ce3d13f440e268472c388a511e762372991202c1cd9db936f1fbd3faaea0d90b8f41027162022cce1933
-DIST fizz-2021.06.07.00.tar.gz 537590 BLAKE2B b3a4855ef306bfcd15da802b80039db86406f7e4781d0bda7aaaa51ca91e84d9464040aa73324c3069fd4d5492241c170a38860d292f9e5b9ca5027991402114 SHA512 2164ed700c76970fb6581b89e0c6be1478c3367acb968564ddd2f1644daa81a7c1fa8e481af0644ad7e5462a592544a560c8615819930d250bbcc05bc5fb66da
+DIST fizz-2021.06.14.00.tar.gz 537571 BLAKE2B 2a5782ed37556739351b7492f713d415c15608cc7a85ce773c1eafbb6ecfbcaf7fffe61384dc92a803225d2587e8ff49d6b643038d9e22a38dd98d25a54f6f38 SHA512 ff55f933d55031128b5355707fd025649ad90d261d91ec5f9d793433a77e63d3c2527a7f0111d6a3151667ab29f4117f96a505bcb80c1a4a99bd60346f05f4de

diff --git a/dev-cpp/fizz/fizz-2021.06.07.00.ebuild b/dev-cpp/fizz/fizz-2021.06.14.00.ebuild
similarity index 100%
rename from dev-cpp/fizz/fizz-2021.06.07.00.ebuild
rename to dev-cpp/fizz/fizz-2021.06.14.00.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-07-05 15:48 Haelwenn Monnier
  0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2021-07-05 15:48 UTC (permalink / raw
  To: gentoo-commits

commit:     62fce3c0085b4b655ebae8ec6ca8749cbefc00dc
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Jul  5 08:44:11 2021 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Jul  5 08:44:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=62fce3c0

dev-cpp/fizz: add 2021.06.28.00, drop 2021.05.24.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                                                 | 2 +-
 dev-cpp/fizz/{fizz-2021.05.24.00.ebuild => fizz-2021.06.28.00.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 2f41b621b..79fe735f7 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,2 +1,2 @@
-DIST fizz-2021.05.24.00.tar.gz 537533 BLAKE2B 68cfefd30f9a395fee32af0d98a53b9c176b6f05a0ab551943ab5d2905d0c8dc4ed82c25d081542cb1c7b5610c519a0b251bfaa684d8ad63fceb9e3ddd6acc31 SHA512 618bdf798cfb560d4c06c6eec678af4c2f9c4fa9e1b0ce3d13f440e268472c388a511e762372991202c1cd9db936f1fbd3faaea0d90b8f41027162022cce1933
 DIST fizz-2021.06.14.00.tar.gz 537571 BLAKE2B 2a5782ed37556739351b7492f713d415c15608cc7a85ce773c1eafbb6ecfbcaf7fffe61384dc92a803225d2587e8ff49d6b643038d9e22a38dd98d25a54f6f38 SHA512 ff55f933d55031128b5355707fd025649ad90d261d91ec5f9d793433a77e63d3c2527a7f0111d6a3151667ab29f4117f96a505bcb80c1a4a99bd60346f05f4de
+DIST fizz-2021.06.28.00.tar.gz 539820 BLAKE2B 862be65dedcf26b2faff8df51b41f650262f221ca8f2d000b4402899db257fec663e6317ac1febe20079513d7a9ea21200f56713499198e6a9e6b6158c5ce054 SHA512 5d160666e6dbe3696b9bd3dbea160406e3bfc21d9a3bd2f33005b57211af4e7fde2f392a981d7c57aecd8db71753d212dd89555652bcd4f8f188a01608eae887

diff --git a/dev-cpp/fizz/fizz-2021.05.24.00.ebuild b/dev-cpp/fizz/fizz-2021.06.28.00.ebuild
similarity index 100%
rename from dev-cpp/fizz/fizz-2021.05.24.00.ebuild
rename to dev-cpp/fizz/fizz-2021.06.28.00.ebuild


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-10-06  1:13 Theo Anderson
  0 siblings, 0 replies; 13+ messages in thread
From: Theo Anderson @ 2021-10-06  1:13 UTC (permalink / raw
  To: gentoo-commits

commit:     fdebc7fd66a5963b51dd76b76d1b1bef3f06df33
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Oct  5 20:47:27 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Oct  5 20:50:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fdebc7fd

dev-cpp/fizz: add 2021.10.04.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2021.10.04.00.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 8400375e1..caf1d015b 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1 +1,2 @@
 DIST fizz-2021.08.02.00.tar.gz 540357 BLAKE2B 6edb14ea4b981a7b9fe076570e583c8b875929e63135d4848b1c1a2aa109e1258fd541376bc9346dc229f2dba0e2c346cebb5b486c8a33bcc54f6746ff3de5f0 SHA512 59c734127d9a1dfb7975929f20ae27a11ee3f2a35fb73ef1ba311b347457339a524194459023e2fb038cc7bf688e13beb6391227bec1ecdb12397344e45f051f
+DIST fizz-2021.10.04.00.tar.gz 543594 BLAKE2B d024f3a7d7ea4fd03f6525e225e6f33dbe931a7c8ff5b01fb572b22f09286d606897c091f63ebecd1b1558667b21bae635b1b555b1ca82b610d152160eb0f11e SHA512 be99b9abd8b832af22411ab894ee82285a637c79176955cd0cf242aed77de1883f98eaaeeef7391a75b42f7c3a4e8c2b26a11a242554688adde84a02f87261c9

diff --git a/dev-cpp/fizz/fizz-2021.10.04.00.ebuild b/dev-cpp/fizz/fizz-2021.10.04.00.ebuild
new file mode 100644
index 000000000..a1908fcff
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2021.10.04.00.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+CMAKE_USE_DIR="${S}/fizz"
+
+RDEPEND="
+	~dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+#TODO: discover if gtest is linked
+DEPEND="
+	${RDEPEND}
+	dev-cpp/gtest
+"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-10-25 11:56 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-10-25 11:56 UTC (permalink / raw
  To: gentoo-commits

commit:     f484113482deedce03f48803917c070487169625
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Oct 23 14:17:45 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Oct 23 14:18:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f4841134

dev-cpp/fizz: add 2021.10.18.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2021.10.18.00.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index caf1d015b..2e7c15501 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,2 +1,3 @@
 DIST fizz-2021.08.02.00.tar.gz 540357 BLAKE2B 6edb14ea4b981a7b9fe076570e583c8b875929e63135d4848b1c1a2aa109e1258fd541376bc9346dc229f2dba0e2c346cebb5b486c8a33bcc54f6746ff3de5f0 SHA512 59c734127d9a1dfb7975929f20ae27a11ee3f2a35fb73ef1ba311b347457339a524194459023e2fb038cc7bf688e13beb6391227bec1ecdb12397344e45f051f
 DIST fizz-2021.10.04.00.tar.gz 543594 BLAKE2B d024f3a7d7ea4fd03f6525e225e6f33dbe931a7c8ff5b01fb572b22f09286d606897c091f63ebecd1b1558667b21bae635b1b555b1ca82b610d152160eb0f11e SHA512 be99b9abd8b832af22411ab894ee82285a637c79176955cd0cf242aed77de1883f98eaaeeef7391a75b42f7c3a4e8c2b26a11a242554688adde84a02f87261c9
+DIST fizz-2021.10.18.00.tar.gz 566606 BLAKE2B 3ebbc88578f7490d221ca1b883cd449c976646c3c8b2aebbe167b862e5293fb524a347ac0385be265be978c13984f92c418428529904a69a0702d1ffe485159e SHA512 4a8a4e71b49ea08136b3788007b48af9aa77e5cc1f25bb603dd6140a3fd7f100d98a84d99bb688cb918a6b48ab10f59187f24cc90e8fa4d6e9266a9414ff2e1a

diff --git a/dev-cpp/fizz/fizz-2021.10.18.00.ebuild b/dev-cpp/fizz/fizz-2021.10.18.00.ebuild
new file mode 100644
index 000000000..a1908fcff
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2021.10.18.00.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+CMAKE_USE_DIR="${S}/fizz"
+
+RDEPEND="
+	~dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+#TODO: discover if gtest is linked
+DEPEND="
+	${RDEPEND}
+	dev-cpp/gtest
+"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-10-25 11:56 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-10-25 11:56 UTC (permalink / raw
  To: gentoo-commits

commit:     c4b52ce4a842ae5b438f97b22ce511e79d6eee44
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Oct 25 11:18:48 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Oct 25 11:20:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c4b52ce4

dev-cpp/fizz: add 2021.10.25.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2021.10.25.00.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 2e7c15501..f5aec6727 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,3 +1,4 @@
 DIST fizz-2021.08.02.00.tar.gz 540357 BLAKE2B 6edb14ea4b981a7b9fe076570e583c8b875929e63135d4848b1c1a2aa109e1258fd541376bc9346dc229f2dba0e2c346cebb5b486c8a33bcc54f6746ff3de5f0 SHA512 59c734127d9a1dfb7975929f20ae27a11ee3f2a35fb73ef1ba311b347457339a524194459023e2fb038cc7bf688e13beb6391227bec1ecdb12397344e45f051f
 DIST fizz-2021.10.04.00.tar.gz 543594 BLAKE2B d024f3a7d7ea4fd03f6525e225e6f33dbe931a7c8ff5b01fb572b22f09286d606897c091f63ebecd1b1558667b21bae635b1b555b1ca82b610d152160eb0f11e SHA512 be99b9abd8b832af22411ab894ee82285a637c79176955cd0cf242aed77de1883f98eaaeeef7391a75b42f7c3a4e8c2b26a11a242554688adde84a02f87261c9
 DIST fizz-2021.10.18.00.tar.gz 566606 BLAKE2B 3ebbc88578f7490d221ca1b883cd449c976646c3c8b2aebbe167b862e5293fb524a347ac0385be265be978c13984f92c418428529904a69a0702d1ffe485159e SHA512 4a8a4e71b49ea08136b3788007b48af9aa77e5cc1f25bb603dd6140a3fd7f100d98a84d99bb688cb918a6b48ab10f59187f24cc90e8fa4d6e9266a9414ff2e1a
+DIST fizz-2021.10.25.00.tar.gz 566738 BLAKE2B 05a501b86a0db406e40cd6c9f12dd596f902bbcb77c34934a4121ec8e2a7fb1bbebf6bf6349435d9d290a81372688f8cbbdfae2fbb313349ae7d07d9ca90ad3f SHA512 30a8a9577b71a97fec8648e92defbd4485e7ff184847fa1b671f3d7c8b247cf35a543275a3519b5794973442be064e2bdf359920faf016e7bd57aa501e3f605d

diff --git a/dev-cpp/fizz/fizz-2021.10.25.00.ebuild b/dev-cpp/fizz/fizz-2021.10.25.00.ebuild
new file mode 100644
index 000000000..a1908fcff
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2021.10.25.00.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+CMAKE_USE_DIR="${S}/fizz"
+
+RDEPEND="
+	~dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+#TODO: discover if gtest is linked
+DEPEND="
+	${RDEPEND}
+	dev-cpp/gtest
+"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-10-27  6:18 Florian Schmaus
  0 siblings, 0 replies; 13+ messages in thread
From: Florian Schmaus @ 2021-10-27  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     7b5b7a5652d0d637c1538474374a24c2480fe347
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Oct 26 15:58:12 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Oct 26 16:35:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b5b7a56

dev-cpp/fizz: fix build error with latest gtest

Closes: https://bugs.gentoo.org/820290
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/fizz-2021.10.25.00.ebuild | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/fizz/fizz-2021.10.25.00.ebuild b/dev-cpp/fizz/fizz-2021.10.25.00.ebuild
index a1908fcff..12e7ec567 100644
--- a/dev-cpp/fizz/fizz-2021.10.25.00.ebuild
+++ b/dev-cpp/fizz/fizz-2021.10.25.00.ebuild
@@ -7,14 +7,12 @@ inherit cmake
 
 DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
 HOMEPAGE="https://github.com/facebookincubator/fizz"
-
 SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
-
-CMAKE_USE_DIR="${S}/fizz"
+IUSE="examples test"
 
 RDEPEND="
 	~dev-cpp/folly-${PV}:=
@@ -29,9 +27,12 @@ RDEPEND="
 #TODO: discover if gtest is linked
 DEPEND="
 	${RDEPEND}
-	dev-cpp/gtest
+	test? ( <dev-cpp/gtest-1.11.0 )
 "
 
+RESTRICT="!test? ( test )"
+CMAKE_USE_DIR="${S}/fizz"
+
 src_prepare() {
 	cmake_src_prepare
 	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
@@ -39,6 +40,8 @@ src_prepare() {
 
 src_configure() {
 	local mycmakeargs=(
+		-DBUILD_EXAMPLES=$(usex examples)
+		-DBUILD_TESTS=$(usex test)
 		-DLIB_INSTALL_DIR=$(get_libdir)
 	)
 


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2021-10-27  6:18 Florian Schmaus
  0 siblings, 0 replies; 13+ messages in thread
From: Florian Schmaus @ 2021-10-27  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     be851805499d69655f11e3d44b31f488f6a781fa
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Oct 26 15:58:37 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Oct 26 16:35:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be851805

dev-cpp/fizz: drop 2021.08.02.00, 2021.10.04.00, 2021.10.18.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  3 ---
 dev-cpp/fizz/fizz-2021.08.02.00.ebuild | 46 ----------------------------------
 dev-cpp/fizz/fizz-2021.10.04.00.ebuild | 46 ----------------------------------
 dev-cpp/fizz/fizz-2021.10.18.00.ebuild | 46 ----------------------------------
 4 files changed, 141 deletions(-)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index f5aec6727..48575617b 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,4 +1 @@
-DIST fizz-2021.08.02.00.tar.gz 540357 BLAKE2B 6edb14ea4b981a7b9fe076570e583c8b875929e63135d4848b1c1a2aa109e1258fd541376bc9346dc229f2dba0e2c346cebb5b486c8a33bcc54f6746ff3de5f0 SHA512 59c734127d9a1dfb7975929f20ae27a11ee3f2a35fb73ef1ba311b347457339a524194459023e2fb038cc7bf688e13beb6391227bec1ecdb12397344e45f051f
-DIST fizz-2021.10.04.00.tar.gz 543594 BLAKE2B d024f3a7d7ea4fd03f6525e225e6f33dbe931a7c8ff5b01fb572b22f09286d606897c091f63ebecd1b1558667b21bae635b1b555b1ca82b610d152160eb0f11e SHA512 be99b9abd8b832af22411ab894ee82285a637c79176955cd0cf242aed77de1883f98eaaeeef7391a75b42f7c3a4e8c2b26a11a242554688adde84a02f87261c9
-DIST fizz-2021.10.18.00.tar.gz 566606 BLAKE2B 3ebbc88578f7490d221ca1b883cd449c976646c3c8b2aebbe167b862e5293fb524a347ac0385be265be978c13984f92c418428529904a69a0702d1ffe485159e SHA512 4a8a4e71b49ea08136b3788007b48af9aa77e5cc1f25bb603dd6140a3fd7f100d98a84d99bb688cb918a6b48ab10f59187f24cc90e8fa4d6e9266a9414ff2e1a
 DIST fizz-2021.10.25.00.tar.gz 566738 BLAKE2B 05a501b86a0db406e40cd6c9f12dd596f902bbcb77c34934a4121ec8e2a7fb1bbebf6bf6349435d9d290a81372688f8cbbdfae2fbb313349ae7d07d9ca90ad3f SHA512 30a8a9577b71a97fec8648e92defbd4485e7ff184847fa1b671f3d7c8b247cf35a543275a3519b5794973442be064e2bdf359920faf016e7bd57aa501e3f605d

diff --git a/dev-cpp/fizz/fizz-2021.08.02.00.ebuild b/dev-cpp/fizz/fizz-2021.08.02.00.ebuild
deleted file mode 100644
index ce8b93c27..000000000
--- a/dev-cpp/fizz/fizz-2021.08.02.00.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
-HOMEPAGE="https://github.com/facebookincubator/fizz"
-
-SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-CMAKE_USE_DIR="${S}/fizz"
-
-RDEPEND="
-	~dev-cpp/folly-${PV}:=
-	dev-cpp/gflags
-	dev-cpp/glog
-	dev-libs/double-conversion
-	dev-libs/libevent
-	dev-libs/libfmt
-	dev-libs/libsodium
-	dev-libs/openssl:0=
-"
-#TODO: discover if gtest is linked
-DEPEND="
-	${RDEPEND}
-	dev-cpp/gtest
-"
-
-src_prepare() {
-	cmake_src_prepare
-	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DLIB_INSTALL_DIR=$(get_libdir)
-	)
-
-	cmake_src_configure
-}

diff --git a/dev-cpp/fizz/fizz-2021.10.04.00.ebuild b/dev-cpp/fizz/fizz-2021.10.04.00.ebuild
deleted file mode 100644
index a1908fcff..000000000
--- a/dev-cpp/fizz/fizz-2021.10.04.00.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
-HOMEPAGE="https://github.com/facebookincubator/fizz"
-
-SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-CMAKE_USE_DIR="${S}/fizz"
-
-RDEPEND="
-	~dev-cpp/folly-${PV}:=
-	dev-cpp/gflags
-	dev-cpp/glog
-	dev-libs/double-conversion
-	dev-libs/libevent
-	dev-libs/libfmt
-	dev-libs/libsodium
-	dev-libs/openssl:0=
-"
-#TODO: discover if gtest is linked
-DEPEND="
-	${RDEPEND}
-	dev-cpp/gtest
-"
-
-src_prepare() {
-	cmake_src_prepare
-	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DLIB_INSTALL_DIR=$(get_libdir)
-	)
-
-	cmake_src_configure
-}

diff --git a/dev-cpp/fizz/fizz-2021.10.18.00.ebuild b/dev-cpp/fizz/fizz-2021.10.18.00.ebuild
deleted file mode 100644
index a1908fcff..000000000
--- a/dev-cpp/fizz/fizz-2021.10.18.00.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
-HOMEPAGE="https://github.com/facebookincubator/fizz"
-
-SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-CMAKE_USE_DIR="${S}/fizz"
-
-RDEPEND="
-	~dev-cpp/folly-${PV}:=
-	dev-cpp/gflags
-	dev-cpp/glog
-	dev-libs/double-conversion
-	dev-libs/libevent
-	dev-libs/libfmt
-	dev-libs/libsodium
-	dev-libs/openssl:0=
-"
-#TODO: discover if gtest is linked
-DEPEND="
-	${RDEPEND}
-	dev-cpp/gtest
-"
-
-src_prepare() {
-	cmake_src_prepare
-	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DLIB_INSTALL_DIR=$(get_libdir)
-	)
-
-	cmake_src_configure
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2022-03-07 21:21 Ronny Gutbrod
  0 siblings, 0 replies; 13+ messages in thread
From: Ronny Gutbrod @ 2022-03-07 21:21 UTC (permalink / raw
  To: gentoo-commits

commit:     7175e9abcb726c9d7ae26ab4bc835d3853ab45cf
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Mar  7 04:16:44 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Mar  7 04:16:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7175e9ab

dev-cpp/fizz: drop 2021.11.15.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                  |  1 -
 dev-cpp/fizz/fizz-2021.11.15.00.ebuild | 49 ----------------------------------
 2 files changed, 50 deletions(-)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 7bfbd48f6..33a7067a2 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1,2 +1 @@
-DIST fizz-2021.11.15.00.tar.gz 567214 BLAKE2B 943d740e483ab5c47b0c4aa3bd9516cf708a357532411d70e4e571ecb6b566d38cf1518ff29764fb18f372170ee06e6855200ade771be91a4f4a6936c50863ac SHA512 c215011e417d211b7859b47294831922caeb9c26a24804697af38b55f62d42ef0a52b2f318a930fc18e86d44fac90bf9909b0979ff5a522041cad26bbb9d2b77
 DIST fizz-2022.02.28.00.tar.gz 581059 BLAKE2B 31b086ca41db7919abdfc1fb8f88efe93f09ad59b5727ada2d04bd95f22f03bec7346de3944dad44d688b1281a5d789df2e134c0990dd1c751723b60791c1770 SHA512 ccfd493b04cca5e8e76e64dea2659b88ec1fe0dcdfa3b1133d46fe8d37abc4fc78710c0831c2038ce0806f7ebad47607aa7597f9ee8577b9bbd11436ff1cdeaf

diff --git a/dev-cpp/fizz/fizz-2021.11.15.00.ebuild b/dev-cpp/fizz/fizz-2021.11.15.00.ebuild
deleted file mode 100644
index 12e7ec567..000000000
--- a/dev-cpp/fizz/fizz-2021.11.15.00.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
-HOMEPAGE="https://github.com/facebookincubator/fizz"
-SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="examples test"
-
-RDEPEND="
-	~dev-cpp/folly-${PV}:=
-	dev-cpp/gflags
-	dev-cpp/glog
-	dev-libs/double-conversion
-	dev-libs/libevent
-	dev-libs/libfmt
-	dev-libs/libsodium
-	dev-libs/openssl:0=
-"
-#TODO: discover if gtest is linked
-DEPEND="
-	${RDEPEND}
-	test? ( <dev-cpp/gtest-1.11.0 )
-"
-
-RESTRICT="!test? ( test )"
-CMAKE_USE_DIR="${S}/fizz"
-
-src_prepare() {
-	cmake_src_prepare
-	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_EXAMPLES=$(usex examples)
-		-DBUILD_TESTS=$(usex test)
-		-DLIB_INSTALL_DIR=$(get_libdir)
-	)
-
-	cmake_src_configure
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
@ 2022-04-17 18:13 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2022-04-17 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     803cbb5f620564ce9cb2a47423b2203e9313d1d7
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 16 18:40:55 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 18:40:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=803cbb5f

dev-cpp/fizz: add 2022.04.11.00, drop 2022.03.21.00

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-cpp/fizz/Manifest                                                 | 2 +-
 dev-cpp/fizz/{fizz-2022.03.21.00.ebuild => fizz-2022.04.11.00.ebuild} | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 7e54932b0..d9cf2728e 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1 +1 @@
-DIST fizz-2022.03.21.00.tar.gz 581670 BLAKE2B 2dc9691abfaf646db56e047a74894b745102764c773b9f244c4b357b74b6d00d1a2548664a5e343f2c5f84458de36d453e99b9901c89bc621c54840a7b45b5e4 SHA512 81a7b764c2c2e17fd5df32a69ecb368eb01df04df6dbd1155a40b68fc39cda4f86ce81afc5c89425a5751ef7f4dbb8a40df8b5095685e72ce5e9043c0a74682e
+DIST fizz-2022.04.11.00.tar.gz 591060 BLAKE2B 5d773af07c70244f54b46927cf28677ef7eb7a9a822a47d497c0ddc9ee4abac34a13462cbcae5372dae5bb3370b7eafc3528c3b63c7b50c564d88c59d6a878f9 SHA512 94278ccda36c0781512a3f9245637573891c8b51d35e5b991d62aad86f2883a9a85406e004e88fd342f0a4020365a19e068ba975e0bf826bf7c360916862a1c8

diff --git a/dev-cpp/fizz/fizz-2022.03.21.00.ebuild b/dev-cpp/fizz/fizz-2022.04.11.00.ebuild
similarity index 93%
rename from dev-cpp/fizz/fizz-2022.03.21.00.ebuild
rename to dev-cpp/fizz/fizz-2022.04.11.00.ebuild
index 12e7ec567..0c689e15b 100644
--- a/dev-cpp/fizz/fizz-2022.03.21.00.ebuild
+++ b/dev-cpp/fizz/fizz-2022.04.11.00.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -24,7 +24,6 @@ RDEPEND="
 	dev-libs/libsodium
 	dev-libs/openssl:0=
 "
-#TODO: discover if gtest is linked
 DEPEND="
 	${RDEPEND}
 	test? ( <dev-cpp/gtest-1.11.0 )


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/
  2024-05-15 15:45 [gentoo-commits] repo/proj/guru:dev " Julien Roy
@ 2024-05-15 16:06 ` Julien Roy
  0 siblings, 0 replies; 13+ messages in thread
From: Julien Roy @ 2024-05-15 16:06 UTC (permalink / raw
  To: gentoo-commits

commit:     406f613982ff2a127e0fa730f4885fa9fab74411
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 15:44:30 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 15:44:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=406f6139

dev-cpp/fizz: add 2023.06.19.00

Closes: https://bugs.gentoo.org/927797
Bug: https://bugs.gentoo.org/900000
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-cpp/fizz/Manifest                  |  1 +
 dev-cpp/fizz/fizz-2023.06.19.00.ebuild | 48 ++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
index 9dedb363e4..30c2dc5114 100644
--- a/dev-cpp/fizz/Manifest
+++ b/dev-cpp/fizz/Manifest
@@ -1 +1,2 @@
 DIST fizz-2023.02.06.00.tar.gz 649362 BLAKE2B a77f90a9d8eca9fb934aacbc903f5af702d8e22b33b0884c742dd40b51f1993f2015758e62ee815eed0f3570a608768914d4f2077d9da0a69c50e78270a64085 SHA512 88cd3d3198442ea0cd2d5098c53fef55d9a7a6b998ddeb6e2e32f7dd26827682dabe1def9bef6f321da5dbb8c48675cb3045a20733fcc7191cc7b81248d8176e
+DIST fizz-2023.06.19.00.tar.gz 671983 BLAKE2B 196b117c59c1d1442d22a77192f81f8c934bafe632b56cca45cf428c6bd73ac791b88d7642d27f4fc0074c27a327842442c157f4c7966c7226420b4f83b57f46 SHA512 55397a5916a313ebedf0ccfbe60f44ee3de59fbf47513c88ec325e005d971b309a182de44a53e612984f698c12d182212328f835a4a227bcc7abe80be99de96c

diff --git a/dev-cpp/fizz/fizz-2023.06.19.00.ebuild b/dev-cpp/fizz/fizz-2023.06.19.00.ebuild
new file mode 100644
index 0000000000..597703566a
--- /dev/null
+++ b/dev-cpp/fizz/fizz-2023.06.19.00.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
+HOMEPAGE="https://github.com/facebookincubator/fizz"
+SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="examples test"
+
+RDEPEND="
+	>=dev-cpp/folly-${PV}:=
+	dev-cpp/gflags
+	dev-cpp/glog
+	dev-libs/double-conversion
+	dev-libs/libevent
+	dev-libs/libfmt
+	dev-libs/libsodium
+	dev-libs/openssl:0=
+"
+DEPEND="
+	${RDEPEND}
+	test? ( >=dev-cpp/gtest-1.11.0 )
+"
+
+RESTRICT="!test? ( test )"
+CMAKE_USE_DIR="${S}/fizz"
+
+src_prepare() {
+	cmake_src_prepare
+	sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_EXAMPLES=$(usex examples)
+		-DBUILD_TESTS=$(usex test)
+		-DLIB_INSTALL_DIR=$(get_libdir)
+	)
+
+	cmake_src_configure
+}


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

end of thread, other threads:[~2024-05-15 16:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-27  6:18 [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fizz/ Florian Schmaus
  -- strict thread matches above, loose matches on Subject: below --
2024-05-15 15:45 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-15 16:06 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
2022-04-17 18:13 Arthur Zamarin
2022-03-07 21:21 Ronny Gutbrod
2021-10-27  6:18 Florian Schmaus
2021-10-25 11:56 Andrew Ammerlaan
2021-10-25 11:56 Andrew Ammerlaan
2021-10-06  1:13 Theo Anderson
2021-07-05 15:48 Haelwenn Monnier
2021-06-17  5:55 Theo Anderson
2021-05-28 10:28 Andrew Ammerlaan
2021-05-05  8:33 Andrew Ammerlaan
2021-04-29  8:23 Michał Górny

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