add net-analyzer/h2spec, a http/2 conformance tester

This commit is contained in:
Florian Tham
2017-11-28 13:39:45 +01:00
parent 6078fa34d0
commit 276b3f44d1
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Conformance testing tool for HTTP/2 implementation"
HOMEPAGE="https://github.com/summerwind/h2spec/"
SRC_URI="https://github.com/summerwind/h2spec/releases/download/v${PV}/h2spec_linux_amd64.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_install() {
dobin h2spec
}