diff options
author | 2020-08-24 14:46:35 -0700 | |
---|---|---|
committer | 2020-08-24 15:23:44 -0700 | |
commit | 9c333a3bb89790ac2eb3d4798acf1a4114cf8473 (patch) | |
tree | d001bf00c59978b50539781423fd6f05c5c28d75 /app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild | |
parent | dev-libs/libreport: Version bump to 2.13.1 (diff) | |
download | gentoo-9c333a3bb89790ac2eb3d4798acf1a4114cf8473.tar.gz gentoo-9c333a3bb89790ac2eb3d4798acf1a4114cf8473.tar.bz2 gentoo-9c333a3bb89790ac2eb3d4798acf1a4114cf8473.zip |
app-admin/gnome-abrt: Version bump to 1.3.6
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild')
-rw-r--r-- | app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild b/app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild new file mode 100644 index 000000000000..b9ff00b24a57 --- /dev/null +++ b/app-admin/gnome-abrt/gnome-abrt-1.3.6.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) + +inherit meson python-r1 + +DESCRIPTION="A utility for viewing problems that have occurred with the system" +HOMEPAGE="https://github.com/abrt/gnome-abrt" +SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="doc" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=x11-libs/gtk+-3.10.0:3 + >=dev-libs/libreport-2.0.20[python,${PYTHON_USEDEP}] + >=app-admin/abrt-2.10.10-r1 + >=dev-python/pygobject-3.29.1:3[${PYTHON_USEDEP}] + >=dev-python/pyxdg-0.19[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( + app-text/asciidoc + app-text/xmlto + ) + virtual/pkgconfig + >=sys-devel/gettext-0.17 +" + +src_configure() { + local emesonargs=( + $(meson_use doc docs) + -Dlint=false + ) + + python_foreach_impl meson_src_configure +} + +src_compile() { + python_foreach_impl meson_src_compile +} + +src_install() { + python_foreach_impl meson_src_install + python_foreach_impl python_optimize +} + +src_test() { + python_foreach_impl meson_src_test +} |