diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-02-02 01:39:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-02-02 01:39:05 +0000 |
commit | fcc5224904648a8e6eb528d7603154160a20022f (patch) | |
tree | 3bfce096b38a9cea8eed13fc70c1526c456e9abd /app-admin/gnome-abrt | |
parent | 2fd57282f0262ca084e05b0f2c63fbada395d02b (diff) |
gentoo resync : 02.02.2022
Diffstat (limited to 'app-admin/gnome-abrt')
-rw-r--r-- | app-admin/gnome-abrt/Manifest | 2 | ||||
-rw-r--r-- | app-admin/gnome-abrt/gnome-abrt-1.4.1.ebuild | 57 |
2 files changed, 59 insertions, 0 deletions
diff --git a/app-admin/gnome-abrt/Manifest b/app-admin/gnome-abrt/Manifest index 72a23e98789c..ec32a4035cbd 100644 --- a/app-admin/gnome-abrt/Manifest +++ b/app-admin/gnome-abrt/Manifest @@ -1,3 +1,5 @@ DIST gnome-abrt-1.4.0.tar.gz 112129 BLAKE2B f3f45c1793c59f4453ef17fd7e24877143cc5d87bdf8cfd6d778d9178005ff6083ce1564f06bb98d9027628bcdd4feb9d98edcbdcc76432c813065d518d0f91a SHA512 eb66040f23a8cba4e015f4f72dee56d782aa3d8bdd90644dce2e7fa1776edc4dc14d69c3722503825db5ff75fa80bde09bbc5bcd9eb6f20209e7e579d8c33a21 +DIST gnome-abrt-1.4.1.tar.gz 115107 BLAKE2B 6706e65f099056118b40e821325aa7861ef256bdf17d824a5222eeaa3355761bfc8f188e7b0a35305f47b66000c0992daa164d955bdf9d3f6005a1eb85b2a3c2 SHA512 c14397f94d39ce1a94247215679a36c0d1db5fee6a162956d5d87a4585207dbc1cafc60bd9b6b5e3cd5f8437a398ab4a983002d6d2a241a01d7d4da6b93060ae EBUILD gnome-abrt-1.4.0.ebuild 1158 BLAKE2B c89c5fdc6fbd7bc28a0cad48e9cf1d9ab43b54e6783e01a9912c9eb0293cbc963dd0fef8ddcb6be11dd3ea29be5005c829ed956cfaaaf878aa60cafbdc73e61a SHA512 f6d4fd37809b1e4382ae8035b1b522c574b80a9b68f6f764aa78c5b69838224ada61961e8a720f0da2ea55bda7175de4bd2755918d76125561c111960bd82728 +EBUILD gnome-abrt-1.4.1.ebuild 1158 BLAKE2B 72f2ff7a66cd07acc9c7e5e73e7e97003bdfb95ac561425970a3aa12d4d371472f480e2802e007f7a4cc829a064fb71508674af5cd5bf9d2a4ae10bddc28222a SHA512 1ba7d6b0146a4e813af830db6f14a8fc5593e7e97db916b6224c3571ee346fd1f50c44a1dccafeef05abfb46ec1392cce790fc76b7f2c2243cce3f5e1baf9e8a MISC metadata.xml 324 BLAKE2B 1ffb7c15745814f3cd31a57d21c31626168e535f993691109ea2f5fafd53b6e5951b6ac86ef1a4542e8074d20fb197a211208373b218b4a3821577413fcbf3ef SHA512 5c2c35dc69f9560490724309a8039ef989d69ba3452db590292363e349070075efc9f6fa0c3c2dba3d459a09b59751f4c28a4058ba8bbef175397c106cb2ab95 diff --git a/app-admin/gnome-abrt/gnome-abrt-1.4.1.ebuild b/app-admin/gnome-abrt/gnome-abrt-1.4.1.ebuild new file mode 100644 index 000000000000..f86e1b32f7a0 --- /dev/null +++ b/app-admin/gnome-abrt/gnome-abrt-1.4.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{7..10} ) + +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.14.0:0=[python,${PYTHON_USEDEP}] + >=app-admin/abrt-2.14.0 + >=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 +} |