From: "Sebastian Pipping" <sping@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/elogv/
Date: Thu, 5 Oct 2023 15:07:55 +0000 (UTC) [thread overview]
Message-ID: <1696518391.dcc1d963f8e426f623b26158ed2b8df5bf882f5d.sping@gentoo> (raw)
commit: dcc1d963f8e426f623b26158ed2b8df5bf882f5d
Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 5 15:06:04 2023 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Thu Oct 5 15:06:31 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc1d963
app-portage/elogv: 0.8.1
Closes: https://bugs.gentoo.org/841134
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
app-portage/elogv/Manifest | 1 +
app-portage/elogv/elogv-0.8.1.ebuild | 56 ++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/app-portage/elogv/Manifest b/app-portage/elogv/Manifest
index b4cf6716120a..06ddc5a9aeed 100644
--- a/app-portage/elogv/Manifest
+++ b/app-portage/elogv/Manifest
@@ -1,2 +1,3 @@
DIST elogv-0.7.9.tar.gz 19556 BLAKE2B 5d5f1a4adab09cf8b56ca3433b2a1cd0d3572345ff92f34b6b3ad175178161c36531bf9211563f4ad18191c6ff99c2cdcf9c3d188eca293a1698157e0a9f04a2 SHA512 703d1e8f55f5ee17a393f3a331ee38ef1d4e4c918c316055d5e2297b96dbe7de0ca6df864f462520f2087ed1a7bb7f43db56bfd3864a865d349516694522a686
DIST elogv-0.8.0.tar.gz 19563 BLAKE2B 1483f1973f0d18470484f8b4861f9301f5a2cc5e813709c3783127d0ed61db952c7edb1e5c12a3ba2066aa09bfd9c7547bc695ea9b46f106996b3036abc32d2d SHA512 75c1bce6dae36f5720e36a92d08c9469a54b31ff50321cc6fc250aa5a3039f2b4ce7ad518d261acb2d653e20783d375ec2c88bc2b86cc1400b6a49cfbb14647b
+DIST elogv-0.8.1.tar.gz 19289 BLAKE2B e88e7383661e0a6336ffbb9027ee9d5540f14db7dd00e385afeb732925487a5cf9e73aa56cead2e11c6ae893a92006b3c75231dfb8918d8102af5988c10a480a SHA512 36f4eb237a8811d3720862d0551a84a0abce36cf565c810d25457ec5b1b2735897be69856ab50be2ad08be77b3761435aae87ac377407374c7643d05fe592f27
diff --git a/app-portage/elogv/elogv-0.8.1.ebuild b/app-portage/elogv/elogv-0.8.1.ebuild
new file mode 100644
index 000000000000..7f7f37ff6174
--- /dev/null
+++ b/app-portage/elogv/elogv-0.8.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_REQ_USE="ncurses"
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="Curses based utility to parse the contents of elogs created by Portage"
+HOMEPAGE="https://gitweb.gentoo.org/proj/elogv.git/"
+SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+PLOCALES=( "de" "es" "it" "pl" )
+IUSE="${PLOCALES[*]/#/l10n_}"
+
+RDEPEND="sys-apps/portage[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+DOCS=( README )
+
+src_install() {
+ distutils-r1_src_install
+
+ elog 'Deleting unwanted language files...'
+ for i in ${PLOCALES[@]}; do
+ if use "l10n_${i}"; then
+ # Keep and fix man page filename (bug #869905)
+ mv "${ED}"/usr/share/man/${i}/man1/${PN}.1{.${i},} || die
+ else
+ rm -r "${ED}"/usr/share/{locale,man}/"${i}" || die
+ elog "- Language \"${i}\" deleted"
+ fi
+ done
+}
+
+pkg_postinst() {
+ elog "In order to use this software, you need to activate"
+ elog "Portage's elog features. Required is"
+ elog " PORTAGE_ELOG_SYSTEM=\"save\" "
+ elog "and at least one out of "
+ elog " PORTAGE_ELOG_CLASSES=\"warn error info log qa\""
+ elog "More information on the elog system can be found"
+ elog "in ${EPREFIX}/usr/share/portage/config/make.conf.example"
+ elog
+ elog "To operate properly this software needs the directory"
+ elog "${PORT_LOGDIR:-${EPREFIX}/var/log/portage}/elog created, belonging to group portage."
+ elog "To start the software as a user, add yourself to the portage"
+ elog "group."
+ elog
+}
next reply other threads:[~2023-10-05 15:07 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-05 15:07 Sebastian Pipping [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-11-08 12:48 [gentoo-commits] repo/gentoo:master commit in: app-portage/elogv/ Sebastian Pipping
2023-11-08 8:08 Arthur Zamarin
2023-11-07 17:09 Sam James
2023-11-07 17:09 Sam James
2023-11-07 17:09 Sam James
2023-10-12 9:47 Sam James
2023-10-06 22:14 Sebastian Pipping
2023-10-06 18:04 Sebastian Pipping
2023-10-05 18:42 Sebastian Pipping
2023-10-05 15:07 Sebastian Pipping
2023-09-28 6:17 Sam James
2023-09-28 0:21 Sam James
2023-09-27 5:47 Sam James
2023-07-08 14:30 Sebastian Pipping
2023-04-20 5:01 Sam James
2023-04-20 4:38 Arthur Zamarin
2023-04-20 4:17 Sam James
2023-04-20 4:14 Arthur Zamarin
2022-11-28 20:37 Sebastian Pipping
2022-09-17 13:36 Sebastian Pipping
2022-05-22 16:17 Zac Medico
2022-04-30 18:08 Sebastian Pipping
2021-10-30 22:31 Georgy Yakovlev
2021-02-18 17:12 Sam James
2021-02-17 20:54 Sam James
2021-02-17 15:55 Sergei Trofimovich
2021-02-16 19:22 Sam James
2021-01-06 13:23 Fabian Groffen
2020-11-23 10:22 Sebastian Pipping
2020-10-07 9:55 Georgy Yakovlev
2020-08-21 22:05 Georgy Yakovlev
2020-07-06 0:32 Sebastian Pipping
2020-04-20 9:48 Agostino Sarubbo
2020-04-19 23:55 Sergei Trofimovich
2020-04-19 18:23 Agostino Sarubbo
2020-04-19 17:08 Agostino Sarubbo
2020-03-05 14:46 Sebastian Pipping
2019-11-30 18:59 Sebastian Pipping
2019-11-30 18:59 Sebastian Pipping
2019-11-19 19:45 Sergei Trofimovich
2019-11-19 12:48 Agostino Sarubbo
2019-11-19 7:38 Agostino Sarubbo
2019-10-13 20:29 Zac Medico
2019-10-13 20:29 Zac Medico
2018-07-08 16:36 Sebastian Pipping
2018-05-18 17:44 Sebastian Pipping
2018-05-16 18:38 Sebastian Pipping
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=1696518391.dcc1d963f8e426f623b26158ed2b8df5bf882f5d.sping@gentoo \
--to=sping@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