summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-05-10 16:36:58 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-05-10 18:22:10 +0200
commitfec199864ceeeab0f9bebc0cc437271e3701f9d9 (patch)
treeaaee890fcee1b49672e8241e393316cbc75fbf67 /app-benchmarks
parentapp-benchmarks/wrk: Fix luajit deps (diff)
downloadgentoo-fec199864ceeeab0f9bebc0cc437271e3701f9d9.tar.gz
gentoo-fec199864ceeeab0f9bebc0cc437271e3701f9d9.tar.bz2
gentoo-fec199864ceeeab0f9bebc0cc437271e3701f9d9.zip
app-benchmarks/wrk: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/wrk/wrk-4.1.0-r1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/app-benchmarks/wrk/wrk-4.1.0-r1.ebuild b/app-benchmarks/wrk/wrk-4.1.0-r1.ebuild
deleted file mode 100644
index 37187a92ca5c..000000000000
--- a/app-benchmarks/wrk/wrk-4.1.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="A HTTP benchmarking tool"
-HOMEPAGE="https://www.github.com/wg/wrk"
-SRC_URI="https://www.github.com/wg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="Apache-2.0 BSD MIT"
-SLOT="0"
-IUSE="libressl"
-
-RDEPEND="
- dev-lang/lua:0
- dev-lang/luajit:2
- libressl? ( dev-libs/libressl:0= )
- !libressl? ( dev-libs/openssl:0= )
-"
-
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=(
- "CHANGES"
- "NOTICE"
- "README.md"
- "SCRIPTING"
-)
-
-PATCHES=( "${FILESDIR}/${P}-r1-makefile.patch" )
-
-src_compile() {
- myemakeargs=(
- CC="$(tc-getCC)"
- VER="${PV}"
- WITH_LUAJIT="/usr"
- WITH_OPENSSL="/usr"
- )
-
- emake "${myemakeargs[@]}"
-}
-
-src_install() {
- dobin wrk
-
- insinto /usr/share/wrk
- doins -r scripts
-
- einstalldocs
-}