commit: c4b09ca28d9aea9e3cf88be1f16f02fb13c277a2 Author: orbea <orbea <AT> riseup <DOT> net> AuthorDate: Sat Jul 2 23:11:24 2022 +0000 Commit: Quentin Retornaz <gentoo <AT> retornaz <DOT> com> CommitDate: Sun Jul 3 17:46:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=c4b09ca2
app-benchmarks/httperf: Remove package Works with libressl-3.5.x and httperf-0.9.1_p20181111::gentoo. Signed-off-by: orbea <orbea <AT> riseup.net> Signed-off-by: Quentin Retornaz <gentoo <AT> retornaz.com> app-benchmarks/httperf/Manifest | 1 - .../files/httperf-0.9.1_p20181111-libressl.patch | 49 ---------------------- .../httperf/httperf-0.9.1_p20181111-r1.ebuild | 41 ------------------ app-benchmarks/httperf/metadata.xml | 28 ------------- 4 files changed, 119 deletions(-) diff --git a/app-benchmarks/httperf/Manifest b/app-benchmarks/httperf/Manifest deleted file mode 100644 index 2c7c897..0000000 --- a/app-benchmarks/httperf/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST httperf-0.9.1_p20181111.tar.gz 107070 BLAKE2B 044f45b0d4b17bc714a718835be1e713092fe7f6d6573df237ba87791e5783e8f60d1218f29e01473ccdeec3b461d3ab7d35d68a1037ee693865a37fd78b7ea5 SHA512 34cc92f3de6d1dadc3fedc5b5f617538b76787496f9dd28b7800866abaf96c7410765d4bb0989000910bf2b51433292c0a7009fe64ba4fd29889ce96cc4d10fc diff --git a/app-benchmarks/httperf/files/httperf-0.9.1_p20181111-libressl.patch b/app-benchmarks/httperf/files/httperf-0.9.1_p20181111-libressl.patch deleted file mode 100644 index e1c0c90..0000000 --- a/app-benchmarks/httperf/files/httperf-0.9.1_p20181111-libressl.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 1c4277eb9288c719b009aacb4bd71ca543f51cbd Mon Sep 17 00:00:00 2001 -From: Stefan Strogin <[email protected]> -Date: Mon, 3 Jun 2019 16:18:21 +0300 -Subject: [PATCH] Use correct ifdefs for checking TLS 1.3 - -TLS 1.3 is not ready yet in LibreSSL. Also there is a theoretical -possibility of OpenSSL >=1.1.1 built without TLS 1.3 support - -Upstream-Status: Submitted -[https://github.com/httperf/httperf/pull/66] -Signed-off-by: Stefan Strogin <[email protected]> ---- - src/httperf.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/httperf.c b/src/httperf.c -index af6f568..5dbba07 100755 ---- a/src/httperf.c -+++ b/src/httperf.c -@@ -687,7 +687,7 @@ main(int argc, char **argv) - param.ssl_protocol = 5; - else if (strcasecmp (optarg, "TLSv1.2") == 0 || strcasecmp (optarg, "TLSv1_2") == 0) - param.ssl_protocol = 6; --#if (OPENSSL_VERSION_NUMBER >= 0x10101000L) -+#ifdef TLS1_3_VERSION - else if (strcasecmp (optarg, "TLSv1.3") == 0 || strcasecmp (optarg, "TLSv1_3") == 0) - param.ssl_protocol = 7; - #endif -@@ -1104,7 +1104,7 @@ main(int argc, char **argv) - SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1); break; - #endif - --#if (OPENSSL_VERSION_NUMBER >= 0x10101000L) -+#ifdef TLS1_3_VERSION - /* 7/TLSv1.3 */ - case 7: - ssl_ctx = SSL_CTX_new (TLS_client_method ()); -@@ -1329,7 +1329,7 @@ main(int argc, char **argv) - case 4: printf (" --ssl-protocol=TLSv1.0"); break; - case 5: printf (" --ssl-protocol=TLSv1.1"); break; - case 6: printf (" --ssl-protocol=TLSv1.2"); break; --#if (OPENSSL_VERSION_NUMBER >= 0x10101000L) -+#ifdef TLS1_3_VERSION - case 7: printf (" --ssl-protocol=TLSv1.3"); break; - #endif - } --- -2.21.0 - diff --git a/app-benchmarks/httperf/httperf-0.9.1_p20181111-r1.ebuild b/app-benchmarks/httperf/httperf-0.9.1_p20181111-r1.ebuild deleted file mode 100644 index 7172926..0000000 --- a/app-benchmarks/httperf/httperf-0.9.1_p20181111-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -COMMIT="00bf5dab6fd284aa559f125964f5fe6dc0f23595" -inherit autotools - -DESCRIPTION="A tool from HP for measuring web server performance" -HOMEPAGE="https://github.com/httperf/httperf" -SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+-with-openssl-exception" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86 ~amd64-linux ~x64-macos" -IUSE="debug idleconn" - -DEPEND=" - idleconn? ( dev-libs/libevent:0= ) - dev-libs/openssl:0= -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-${COMMIT}" - -PATCHES=( "${FILESDIR}"/${P}-libressl.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --bindir="${EPREFIX}"/usr/bin - $(use_enable debug) - $(use_enable idleconn) - ) - - econf "${myeconfargs[@]}" -} diff --git a/app-benchmarks/httperf/metadata.xml b/app-benchmarks/httperf/metadata.xml deleted file mode 100644 index 629cc32..0000000 --- a/app-benchmarks/httperf/metadata.xml +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>[email protected]</email> - <name>Göktürk Yüksek</name> - </maintainer> - <maintainer type="person"> - <email>[email protected]</email> - <name>Taha Göktuğ Yüksek</name> - </maintainer> - <longdescription lang="en">Httperf is a tool for measuring web server - performance. It provides a flexible facility for generating various HTTP - workloads and for measuring server performance. The focus of httperf is - not on implementing one particular benchmark but on providing a robust, - high-performance tool that facilitates the construction of both micro- - and macro-level benchmarks. The three distinguishing characteristics of - httperf are its robustness, which includes the ability to generate and - sustain server overload, support for the HTTP/1.1 and SSL protocols, and - its extensibility to new workload generators and performance - measurements.</longdescription> - <use> - <flag name="idleconn">Build with the idleconn program</flag> - </use> - <upstream> - <remote-id type="github">httperf/httperf</remote-id> - </upstream> -</pkgmetadata>
