public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/goaccess/
Date: Thu, 18 Jul 2024 07:41:18 +0000 (UTC)	[thread overview]
Message-ID: <1721288324.42f0da4ca77cdf3ee9f2e83b7dd7134a81088332.juippis@gentoo> (raw)

commit:     42f0da4ca77cdf3ee9f2e83b7dd7134a81088332
Author:     Vladimir Pavljuchenkov <spiderx <AT> spiderx <DOT> dp <DOT> ua>
AuthorDate: Mon Jun 10 06:47:35 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 07:38:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42f0da4c

net-analyzer/goaccess: drop 1.6.3, 1.7.2

Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-analyzer/goaccess/Manifest              |  2 -
 net-analyzer/goaccess/goaccess-1.6.3.ebuild | 70 ----------------------------
 net-analyzer/goaccess/goaccess-1.7.2.ebuild | 71 -----------------------------
 3 files changed, 143 deletions(-)

diff --git a/net-analyzer/goaccess/Manifest b/net-analyzer/goaccess/Manifest
index 4fe953157e67..09885a439bea 100644
--- a/net-analyzer/goaccess/Manifest
+++ b/net-analyzer/goaccess/Manifest
@@ -1,3 +1 @@
-DIST goaccess-1.6.3.tar.gz 658827 BLAKE2B 48378235a75c11e7392bcaca98c64689032e74377696cf6fd3e0e230dd35a2e0f78e5f4283da2c4693ec072942ae6be4d3dc27f91f23d8390f81a330d9955c93 SHA512 7890fc35700db9ce1d3c720607cce6008a3140a14d143fcdd02f11a79f5344a26c648c9b7e6316a21d3ff07f588815bcdfb33072b5e0a18c429e9bfdb8bf99f4
-DIST goaccess-1.7.2.tar.gz 679321 BLAKE2B a423553fcbac76eb1358bffda9ec413da48241f9702d01872cede4999fa2baef60758f48ad621986789ddf2f514ca77ac72a4d367469ec493d792dea01c3f957 SHA512 0e057c9d49d5a9189af0b8f12e867d4402326ca0d2f562771b4d2c73fcfc2e5d79a826465ee56e03e036fbcddb7c6171005cd06ba28a2c25fc1683fe37bd59a7
 DIST goaccess-1.8.1.tar.gz 740177 BLAKE2B cc1f17c72adeeaf50d3b6c7bef47a044a3bbf06fb44d73da9b1ae68ea71d8e276dbe02c6a89cf0a72f3327e817e8d59235f788d29aeb7c7c889bacf81b64292a SHA512 96f0b73f13cfb77ad57748bce7d8791f8486bfd5ce47420d1c0016826a4deb9ab2d2742f4afd5d8b0eed003f9b596aae51f232fa71bf47f823b6ff8119f91354

diff --git a/net-analyzer/goaccess/goaccess-1.6.3.ebuild b/net-analyzer/goaccess/goaccess-1.6.3.ebuild
deleted file mode 100644
index 52788637826a..000000000000
--- a/net-analyzer/goaccess/goaccess-1.6.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools optfeature systemd tmpfiles
-
-DESCRIPTION="A real-time web log analyzer and interactive viewer in a terminal"
-HOMEPAGE="https://goaccess.io"
-SRC_URI="https://tar.goaccess.io/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug geoip geoipv2 getline ssl unicode"
-REQUIRED_USE="geoipv2? ( geoip )"
-
-RDEPEND="acct-group/goaccess
-	acct-user/goaccess
-	sys-libs/ncurses:=[unicode(+)?]
-	geoip? (
-		!geoipv2? ( dev-libs/geoip )
-		geoipv2? ( dev-libs/libmaxminddb:0= )
-	)
-	ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	# Enable log-format, define log file and db path,
-	# change path to GeoIP bases in config
-	sed -i  -e '/log-format COMBINED/s/#//' \
-		-e '/log-file/s/#//' \
-		-e '/db-path/s|tmp|var/lib/goaccess|' \
-		-e '/geoip-database/s|local/||' config/goaccess.conf \
-		|| die "sed failed for goaccess.conf"
-
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=()
-	readarray -t myeconfargs < <(
-		use_enable debug
-		use_enable geoip geoip "$(usex geoipv2 mmdb legacy)"
-		use_enable unicode utf8
-		use_with getline
-		use_with ssl openssl
-	)
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	newinitd "${FILESDIR}"/goaccess.initd goaccess
-	newconfd "${FILESDIR}"/goaccess.confd goaccess
-	systemd_dounit "${FILESDIR}"/goaccess.service
-	newtmpfiles "${FILESDIR}"/goaccess.tmpfile goaccess.conf
-
-	diropts -o goaccess -g goaccess -m 0700
-	keepdir /var/lib/goaccess/db /var/log/goaccess
-}
-
-pkg_postinst() {
-	optfeature "update GeoIP databases" net-misc/geoipupdate
-	tmpfiles_process goaccess.conf
-}

diff --git a/net-analyzer/goaccess/goaccess-1.7.2.ebuild b/net-analyzer/goaccess/goaccess-1.7.2.ebuild
deleted file mode 100644
index 483e675fa316..000000000000
--- a/net-analyzer/goaccess/goaccess-1.7.2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# shellcheck disable=SC2207
-
-EAPI=8
-
-inherit autotools optfeature systemd tmpfiles
-
-DESCRIPTION="A real-time web log analyzer and interactive viewer in a terminal"
-HOMEPAGE="https://goaccess.io"
-SRC_URI="https://tar.goaccess.io/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug geoip geoipv2 getline ssl unicode"
-REQUIRED_USE="geoipv2? ( geoip )"
-
-RDEPEND="acct-group/goaccess
-	acct-user/goaccess
-	sys-libs/ncurses:=[unicode(+)?]
-	geoip? (
-		!geoipv2? ( dev-libs/geoip )
-		geoipv2? ( dev-libs/libmaxminddb:0= )
-	)
-	ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	# Enable log-format, define log file and db path,
-	# change path to GeoIP bases in config
-	sed -i  -e '/log-format COMBINED/s/#//' \
-		-e '/log-file/s/#//' \
-		-e '/db-path/s|tmp|var/lib/goaccess|' \
-		-e '/geoip-database/s|local/||' config/goaccess.conf \
-		|| die "sed failed for goaccess.conf"
-
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable debug)
-		$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")
-		$(use_enable unicode utf8)
-		$(use_with getline)
-		$(use_with ssl openssl)
-	)
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	newinitd "${FILESDIR}"/goaccess.initd goaccess
-	newconfd "${FILESDIR}"/goaccess.confd goaccess
-	systemd_dounit "${FILESDIR}"/goaccess.service
-	newtmpfiles "${FILESDIR}"/goaccess.tmpfile goaccess.conf
-
-	diropts -o goaccess -g goaccess -m 0700
-	keepdir /var/lib/goaccess/db /var/log/goaccess
-}
-
-pkg_postinst() {
-	optfeature "update GeoIP databases" net-misc/geoipupdate
-	tmpfiles_process goaccess.conf
-}


             reply	other threads:[~2024-07-18  7:41 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-18  7:41 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-18  7:41 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/goaccess/ Joonas Niilola
2024-07-18  7:41 Joonas Niilola
2023-12-04  3:00 Yixun Lan
2023-07-14  6:50 Joonas Niilola
2023-07-14  6:50 Joonas Niilola
2023-02-16  4:18 Sam James
2022-09-27 12:12 Joonas Niilola
2022-09-27 12:12 Joonas Niilola
2022-09-27 12:12 Joonas Niilola
2022-08-17 16:43 Joonas Niilola
2021-07-17 21:30 David Seifert
2021-04-30 18:46 Mikle Kolyada
2021-01-02 21:55 David Seifert
2021-01-02 21:43 David Seifert
2020-11-20 12:07 Joonas Niilola
2020-11-20 12:07 Joonas Niilola
2020-11-20 12:07 Joonas Niilola
2020-11-20 12:07 Joonas Niilola
2018-12-04 22:53 Patrice Clement
2017-11-05 15:37 Patrice Clement
2017-01-16 18:08 David Seifert
2017-01-16 18:08 David Seifert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1721288324.42f0da4ca77cdf3ee9f2e83b7dd7134a81088332.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox