diff options
author | 2014-10-25 20:58:45 +0000 | |
---|---|---|
committer | 2014-10-25 20:58:45 +0000 | |
commit | 1a9c7ecba97b187414c27365fa73b274a29f0048 (patch) | |
tree | e6f40524a0e793911e99a37625eb40cce60e592c | |
parent | Cleanup KDE SC 4.14.0 (diff) | |
download | gentoo-2-1a9c7ecba97b187414c27365fa73b274a29f0048.tar.gz gentoo-2-1a9c7ecba97b187414c27365fa73b274a29f0048.tar.bz2 gentoo-2-1a9c7ecba97b187414c27365fa73b274a29f0048.zip |
app-portage/elogv: 0.7.6.3, locale issue (bug #464962)
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
-rw-r--r-- | app-portage/elogv/ChangeLog | 7 | ||||
-rw-r--r-- | app-portage/elogv/elogv-0.7.6.3.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/app-portage/elogv/ChangeLog b/app-portage/elogv/ChangeLog index 8714e3d092fe..97aa8eb7f17c 100644 --- a/app-portage/elogv/ChangeLog +++ b/app-portage/elogv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-portage/elogv # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.81 2014/10/24 23:10:53 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/ChangeLog,v 1.82 2014/10/25 20:58:45 sping Exp $ + +*elogv-0.7.6.3 (25 Oct 2014) + + 25 Oct 2014; Sebastian Pipping <sping@gentoo.org> +elogv-0.7.6.3.ebuild: + Bump to 0.7.6.3, fixes ja_JP locale issue (bug #464962) 24 Oct 2014; Sebastian Pipping <sping@gentoo.org> elogv-0.7.4.ebuild, elogv-0.7.4-r1.ebuild, -elogv-0.7.5.ebuild, -elogv-0.7.5-r1.ebuild, diff --git a/app-portage/elogv/elogv-0.7.6.3.ebuild b/app-portage/elogv/elogv-0.7.6.3.ebuild new file mode 100644 index 000000000000..9e6cb1edba39 --- /dev/null +++ b/app-portage/elogv/elogv-0.7.6.3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/elogv/elogv-0.7.6.3.ebuild,v 1.1 2014/10/25 20:58:45 sping Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_6 python2_7 ) +PYTHON_REQ_USE="ncurses" +inherit distutils-r1 prefix + +DESCRIPTION="Curses based utility to parse the contents of elogs created by Portage" +HOMEPAGE="https://github.com/gentoo/elogv" +SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="linguas_de linguas_es linguas_it linguas_pl" + +DOCS=( README ) + +src_install() { + distutils-r1_src_install + + # unset LINGUAS => install all languages + # empty LINGUAS => install none + local i + if [[ -n "${LINGUAS+x}" ]] ; then + for i in $(ls "${ED}"/usr/share/locale/) ; do + if ! has ${i} ${LINGUAS} ; then + rm -rf "${ED}"/usr/share/{locale,man}/${i} + fi + done + fi +} + +pkg_postinst() { + elog "Optional dependencies:" + elog " dev-python/pyliblzma (for xz compressed elog files)" + elog + 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 +} |