Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/apachetop/
Date: Tue, 13 Feb 2018 16:29:27
Message-Id: 1518539355.6b266a983c7d94e83ba264d78892effbf17eeb9f.candrews@gentoo
1 commit: 6b266a983c7d94e83ba264d78892effbf17eeb9f
2 Author: Oleksandr Trotsenko <oleksandr.trotsenko <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 12 11:24:27 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 13 16:29:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b266a98
7
8 app-admin/apachetop: Bumping the version
9
10 Bumping to the latest available version of the package.
11
12 Closes: https://bugs.gentoo.org/647116
13 Package-Manager: Portage-2.3.23, Repoman-2.3.6
14
15 app-admin/apachetop/Manifest | 1 +
16 app-admin/apachetop/apachetop-0.17.4.ebuild | 36 +++++++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/app-admin/apachetop/Manifest b/app-admin/apachetop/Manifest
20 index d99f1ce1305..49111859f76 100644
21 --- a/app-admin/apachetop/Manifest
22 +++ b/app-admin/apachetop/Manifest
23 @@ -1 +1,2 @@
24 DIST apachetop-0.12.6.tar.gz 126930 BLAKE2B 06d12cc72791920c959fa4ef8e18aa90f1f29a616389329685abf445f416cde9ce6edd2db5aaadaba51488033148e8109245200086a11422436ffe0aab1b4a40 SHA512 35081772f817c6a83a1fcf78790d2a288a9e4e48234c4b3163a09ad15f49a78d649b77f41aa002940fb9416c263cea159c5092a9b87285488eb450964c823c3a
25 +DIST apachetop-0.17.4.tar.gz 128153 BLAKE2B 7601ce98618d041f6fc67e528775ce79b63a726b765ff298d1d74a1dd22a4451be6c36669c7ab9bf82fb8c120a6930d2bbf03823de02a216c558c358c53c07be SHA512 b5115048f79c694344fd341631fe7739567ba3ce6e18514d0be250cb6f42e04c54d35cc023dea5258725fcbfbb6debdaa51b91d64ae3120e70f5b78a7989a330
26
27 diff --git a/app-admin/apachetop/apachetop-0.17.4.ebuild b/app-admin/apachetop/apachetop-0.17.4.ebuild
28 new file mode 100644
29 index 00000000000..2f5954eb82b
30 --- /dev/null
31 +++ b/app-admin/apachetop/apachetop-0.17.4.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit autotools
39 +
40 +DESCRIPTION="A realtime Apache log analyzer"
41 +HOMEPAGE="https://github.com/tessus/apachetop"
42 +SRC_URI="https://github.com/tessus/${PN}/releases/download/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
47 +IUSE="fam pcre"
48 +
49 +RDEPEND="
50 + sys-libs/ncurses:0=
51 + sys-libs/readline:0=
52 + fam? ( virtual/fam )
53 + pcre? ( dev-libs/libpcre )"
54 +DEPEND="${RDEPEND}
55 + virtual/pkgconfig"
56 +
57 +src_prepare() {
58 + default
59 + eautoreconf
60 +}
61 +
62 +src_configure() {
63 + econf \
64 + --with-logfile="${EPREFIX}"/var/log/apache2/access_log \
65 + --without-adns \
66 + $(use_with fam) \
67 + $(use_with pcre)
68 +}