From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-benchmarks/httperf/Manifest | 1 + .../httperf/files/httperf-0.8-optional-ssl.diff | 20 +++++++++++++ .../httperf/files/httperf-0.8-respect-DESTDIR.diff | 17 +++++++++++ app-benchmarks/httperf/httperf-0.9.0-r2.ebuild | 33 ++++++++++++++++++++++ app-benchmarks/httperf/metadata.xml | 18 ++++++++++++ 5 files changed, 89 insertions(+) create mode 100644 app-benchmarks/httperf/Manifest create mode 100644 app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff create mode 100644 app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff create mode 100644 app-benchmarks/httperf/httperf-0.9.0-r2.ebuild create mode 100644 app-benchmarks/httperf/metadata.xml (limited to 'app-benchmarks/httperf') diff --git a/app-benchmarks/httperf/Manifest b/app-benchmarks/httperf/Manifest new file mode 100644 index 000000000000..6d19b0abf959 --- /dev/null +++ b/app-benchmarks/httperf/Manifest @@ -0,0 +1 @@ +DIST httperf-0.9.0.tar.gz 425297 SHA256 e1a0bf56bcb746c04674c47b6cfa531fad24e45e9c6de02aea0d1c5f85a2bf1c SHA512 58ea6a3b8a82181a89e5df22fdf18d5be8c7b533c404108702cc03fc727fb1599a43e620d83d41630f8a951d80e48ed99d0c3dd8469ee1fc7626449b777971e1 WHIRLPOOL 7b36e636a063c9af7ff142f7a81947f5b693bb1a3bdbe98c5dfd1f5ac11edb380e97f19c3ad2a0a8d8505c0d63d8d714fe935a6e326f2373cbbb11a940431a7e diff --git a/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff b/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff new file mode 100644 index 000000000000..018fa03cabe4 --- /dev/null +++ b/app-benchmarks/httperf/files/httperf-0.8-optional-ssl.diff @@ -0,0 +1,20 @@ +diff --exclude='*~' --exclude='.*' -I '$Id:' -urN httperf-0.8.orig/configure.in httperf-0.8/configure.in +--- httperf-0.8.orig/configure.in 2005-08-17 15:51:17.000000000 -0400 ++++ httperf-0.8/configure.in 2005-08-17 16:06:20.000000000 -0400 +@@ -39,8 +39,14 @@ + dnl Checks for libraries. + dnl Replace `main' with a function in -lm: + AC_CHECK_LIB(m, main) +-AC_CHECK_LIB(crypto, main) +-AC_CHECK_LIB(ssl, SSL_version) ++ ++AC_MSG_CHECKING([whether to enable SSL support]) ++AC_ARG_ENABLE(ssl, [ --enable-ssl Enable SSL support]) ++AC_MSG_RESULT([$enable_ssl]) ++if test "$enable_ssl" = yes; then ++ AC_CHECK_LIB(crypto, main) ++ AC_CHECK_LIB(ssl, SSL_version) ++fi + + + dnl Checks for header files. diff --git a/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff b/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff new file mode 100644 index 000000000000..f905224e2de3 --- /dev/null +++ b/app-benchmarks/httperf/files/httperf-0.8-respect-DESTDIR.diff @@ -0,0 +1,17 @@ +diff --exclude='*~' --exclude='.*' -I '$Id:' -urN httperf-0.8.orig/Makefile.in httperf-0.8/Makefile.in +--- httperf-0.8.orig/Makefile.in 2005-08-17 16:07:21.000000000 -0400 ++++ httperf-0.8/Makefile.in 2005-08-17 16:34:50.000000000 -0400 +@@ -51,9 +51,10 @@ + $(LINK) idleconn.o $(LIBS) + + install: install-recursive httperf +- $(MKDIR) $(bindir) $(mandir)/man1 +- $(INSTALL_PROGRAM) httperf $(bindir)/httperf +- $(INSTALL_DATA) $(srcdir)/httperf.man $(mandir)/man1/httperf.1 ++ $(MKDIR) $(DESTDIR)$(bindir) $(mandir)/man1 ++ $(INSTALL_PROGRAM) httperf $(DESTDIR)$(bindir)/httperf ++ $(MKDIR) $(DESTDIR)$(mandir)/man1 ++ $(INSTALL_DATA) $(srcdir)/httperf.man $(DESTDIR)$(mandir)/man1/httperf.1 + + ttest: ttest.o timer.o + diff --git a/app-benchmarks/httperf/httperf-0.9.0-r2.ebuild b/app-benchmarks/httperf/httperf-0.9.0-r2.ebuild new file mode 100644 index 000000000000..b7114d031003 --- /dev/null +++ b/app-benchmarks/httperf/httperf-0.9.0-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils toolchain-funcs + +DESCRIPTION="A tool from HP for measuring web server performance" +HOMEPAGE="http://code.google.com/p/httperf/" +SRC_URI="http://httperf.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~mips x86 ~amd64-linux ~x64-macos" +IUSE="debug" + +DEPEND="dev-libs/openssl" +RDEPEND="dev-libs/openssl" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +src_configure() { + econf --bindir="${EPREFIX}"/usr/bin \ + $(use_enable debug) +} + +src_compile() { + emake CC="$(tc-getCC)" -j1 +} diff --git a/app-benchmarks/httperf/metadata.xml b/app-benchmarks/httperf/metadata.xml new file mode 100644 index 000000000000..870f412e6dea --- /dev/null +++ b/app-benchmarks/httperf/metadata.xml @@ -0,0 +1,18 @@ + + + + benchmarks + 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. + + httperf + + -- cgit v1.2.3-18-g5258