diff options
author | Joonas Niilola <juippis@gmail.com> | 2018-12-19 09:35:36 +0200 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2018-12-19 01:25:33 -0800 |
commit | 4e8f99fdfca0c36420ca2841382b79369752e534 (patch) | |
tree | 087771165c05376fe3c992ff06b7a18d46e4fa6b /x11-terms | |
parent | games-board/gnome-mines: 3.30.0 → 3.30.1.1 (diff) | |
download | gentoo-4e8f99fdfca0c36420ca2841382b79369752e534.tar.gz gentoo-4e8f99fdfca0c36420ca2841382b79369752e534.tar.bz2 gentoo-4e8f99fdfca0c36420ca2841382b79369752e534.zip |
x11-terms/terminology: bump to 1.3.2 (CVE-2018-20167)
- https://nvd.nist.gov/vuln/detail/CVE-2018-20167
Bug: https://bugs.gentoo.org/673404
Package-Manager: Portage[mgorny]-2.3.51.1
Closes: https://github.com/gentoo/gentoo/pull/10663
Signed-off-by: Joonas Niilola <juippis@gmail.com>
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/terminology/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/terminology/terminology-1.3.2.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest index bc204e7bb700..e550a348f8b8 100644 --- a/x11-terms/terminology/Manifest +++ b/x11-terms/terminology/Manifest @@ -1,2 +1,3 @@ DIST terminology-1.1.1.tar.xz 4989940 BLAKE2B 946476fbe7b0f6c5e15e3d2cd6b90e1f77ace4f25541d2c433ccf45f674a4b498b1b289ff17ae079a38a4cc959075087c99d3230c96df43aaf1c36f427bcc446 SHA512 034f061374462bc4c596ed2fbcbf16b77071459595a86cbacb6f4fd613e93b412ce0c61a77770b919f731a559632e897bc378a9bf6dbe2aaa41d1bca8c50215f DIST terminology-1.3.0.tar.xz 4849268 BLAKE2B 6765838d54273cc726684b477effaedfd7ac1be5474b71609d5890ad87ef02edd662dab5d794572547cb130d1a95f1d16f9a7458a82da2f00a8d72646b416ad8 SHA512 ac8b9dee8167365c7127cb01a0511a1aacfd28926b950142052998f2d33e86a3c80024408d3053e4e7f7047455153f3c8fdf23b329faec0313c42005e6213f50 +DIST terminology-1.3.2.tar.xz 4849832 BLAKE2B db03ab8d40a432e42d645a53a02b96afa37a6d238cb26bea55de6153969164e53986d70091239235ba724556feaa32bc8de68aba5fb766543f1719791f0c5ab6 SHA512 e41e413348451e0df90634af06fb49ec830f9b1454eec2601977e6e35385bd1a62a385a9ab7fc02fc6c3750f5b73785e4f40f14bb36acd58d4c296074b5f32c8 diff --git a/x11-terms/terminology/terminology-1.3.2.ebuild b/x11-terms/terminology/terminology-1.3.2.ebuild new file mode 100644 index 000000000000..138366b8ef42 --- /dev/null +++ b/x11-terms/terminology/terminology-1.3.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation Libraries" +HOMEPAGE="https://www.enlightenment.org/about-terminology" +SRC_URI="https://fau.re/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="nls" + +RDEPEND=" + || ( dev-libs/efl[egl] dev-libs/efl[opengl] ) + || ( dev-libs/efl[X] dev-libs/efl[wayland] ) + app-arch/lz4 + dev-libs/efl[eet,fontconfig] +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_configure() { + local emesonargs=( + $(meson_use nls) + ) + + meson_src_configure +} |