Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/siege/
Date: Sat, 26 Jan 2019 20:27:45
Message-Id: 1548533957.6ce7d2b4cae9fad81d788cdfcc75f0867a466ea0.pacho@gentoo
1 commit: 6ce7d2b4cae9fad81d788cdfcc75f0867a466ea0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 26 20:19:17 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 26 20:19:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce7d2b4
7
8 app-benchmarks/siege: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 app-benchmarks/siege/Manifest | 1 -
14 app-benchmarks/siege/siege-3.1.4.ebuild | 52 ---------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/app-benchmarks/siege/Manifest b/app-benchmarks/siege/Manifest
18 index 0357b73a4e1..0594c1e22e3 100644
19 --- a/app-benchmarks/siege/Manifest
20 +++ b/app-benchmarks/siege/Manifest
21 @@ -1,2 +1 @@
22 -DIST siege-3.1.4.tar.gz 530149 BLAKE2B 3721387fa1ace745ce7748612849b84c07e84456bd903460930ab407cba1e24f493d4a251bacd3e509aafbc653e5d74e96509bf74f0a2a8066a0ec2b7ad2e9ee SHA512 8e8b4c1e9c20833f4c3538e8929e47d1c9113cd1faf395e5f07734fb7f4291061cb7554cf500a80d8b1b6be0d6f4c8194b054f632f35533837220702784ee068
23 DIST siege-4.0.4.tar.gz 523102 BLAKE2B 2d69dd37fea7ff35e05b41d500d4efb5b4fe60d9389b7bd98ec360148af781a24b6ebaa213b59ffc36cfcc8421efea14d8ec9f5742a53e019b2221584b5af17e SHA512 a8361ac0e2514626d794e7e4a345b178462409a1f3b53a9318adf171b511c408508acdb07652ad38f34021ac4a614dc5e6d2ea3c6a4ffd261ceef36d3226e573
24
25 diff --git a/app-benchmarks/siege/siege-3.1.4.ebuild b/app-benchmarks/siege/siege-3.1.4.ebuild
26 deleted file mode 100644
27 index 46104f68a61..00000000000
28 --- a/app-benchmarks/siege/siege-3.1.4.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -#WANT_AUTOMAKE=1.9
37 -
38 -inherit eutils bash-completion-r1 libtool autotools
39 -
40 -DESCRIPTION="A HTTP regression testing and benchmarking utility"
41 -HOMEPAGE="https://www.joedog.org/siege-home/"
42 -SRC_URI="http://download.joedog.org/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -KEYWORDS="amd64 ~hppa ~mips ppc x86 ~x64-macos"
46 -SLOT="0"
47 -IUSE="libressl ssl"
48 -
49 -RDEPEND="ssl? (
50 - !libressl? ( dev-libs/openssl:0= )
51 - libressl? ( dev-libs/libressl:0= )
52 - )"
53 -DEPEND="${RDEPEND}
54 - sys-devel/libtool"
55 -
56 -src_prepare() {
57 - # bundled macros break recent libtool
58 - sed -i -e 's/AC_PROG_SHELL//' configure.ac || die
59 - rm *.m4 || die "failed to remove bundled macros"
60 - eautoreconf
61 -}
62 -
63 -src_configure() {
64 - local myconf
65 - use ssl && myconf="--with-ssl=${EPREFIX}/usr" || myconf="--without-ssl"
66 - econf ${myconf}
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${D}" install
71 -
72 - dodoc AUTHORS ChangeLog INSTALL README* KNOWNBUGS \
73 - doc/siegerc doc/urls.txt
74 -
75 - newbashcomp "${FILESDIR}"/${PN}.bash-completion ${PN}
76 -}
77 -
78 -pkg_postinst() {
79 - echo
80 - elog "An example ~/.siegerc file has been installed in"
81 - elog "${EPREFIX}/usr/share/doc/${PF}/"
82 -}