Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gnome-abrt/
Date: Thu, 26 May 2022 09:44:11
Message-Id: 1653558231.ce17c634ebe53738fbb681964305049bc6d0dff5.pacho@gentoo
1 commit: ce17c634ebe53738fbb681964305049bc6d0dff5
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 09:11:38 2022 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 09:43:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce17c634
7
8 app-admin/gnome-abrt: drop 1.4.0
9
10 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
11
12 app-admin/gnome-abrt/Manifest | 1 -
13 app-admin/gnome-abrt/gnome-abrt-1.4.0.ebuild | 57 ----------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-admin/gnome-abrt/Manifest b/app-admin/gnome-abrt/Manifest
17 index 7f8e997d2782..6036cc9a445d 100644
18 --- a/app-admin/gnome-abrt/Manifest
19 +++ b/app-admin/gnome-abrt/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST gnome-abrt-1.4.0.tar.gz 112129 BLAKE2B f3f45c1793c59f4453ef17fd7e24877143cc5d87bdf8cfd6d778d9178005ff6083ce1564f06bb98d9027628bcdd4feb9d98edcbdcc76432c813065d518d0f91a SHA512 eb66040f23a8cba4e015f4f72dee56d782aa3d8bdd90644dce2e7fa1776edc4dc14d69c3722503825db5ff75fa80bde09bbc5bcd9eb6f20209e7e579d8c33a21
22 DIST gnome-abrt-1.4.1.tar.gz 115107 BLAKE2B 6706e65f099056118b40e821325aa7861ef256bdf17d824a5222eeaa3355761bfc8f188e7b0a35305f47b66000c0992daa164d955bdf9d3f6005a1eb85b2a3c2 SHA512 c14397f94d39ce1a94247215679a36c0d1db5fee6a162956d5d87a4585207dbc1cafc60bd9b6b5e3cd5f8437a398ab4a983002d6d2a241a01d7d4da6b93060ae
23 DIST gnome-abrt-1.4.2.tar.gz 115442 BLAKE2B b98a67619a9ca69708eef099614d936c015bfbe2b9cc2e9090f5a60dcd34a7d4eaa37aa7769ce04e52b400f0c8bebac3a933c1c323b11e8b84e347557ff0cc36 SHA512 41639ef3ee7ba090cd62da45d029c9f59613d6b844d59768385f0fc5a074185f6f350a4100aa35aad9a4c528524d2905f130904f6b4c31a4df22d621e0395253
24
25 diff --git a/app-admin/gnome-abrt/gnome-abrt-1.4.0.ebuild b/app-admin/gnome-abrt/gnome-abrt-1.4.0.ebuild
26 deleted file mode 100644
27 index 44eb462bbfbd..000000000000
28 --- a/app-admin/gnome-abrt/gnome-abrt-1.4.0.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -PYTHON_COMPAT=( python3_{7..10} )
36 -
37 -inherit meson python-r1
38 -
39 -DESCRIPTION="A utility for viewing problems that have occurred with the system"
40 -HOMEPAGE="https://github.com/abrt/gnome-abrt"
41 -SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -
47 -IUSE="doc"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -RDEPEND="${PYTHON_DEPS}
51 - >=x11-libs/gtk+-3.10.0:3
52 - >=dev-libs/libreport-2.14.0:0=[python,${PYTHON_USEDEP}]
53 - >=app-admin/abrt-2.14.0
54 - >=dev-python/pygobject-3.29.1:3[${PYTHON_USEDEP}]
55 - >=dev-python/pyxdg-0.19[${PYTHON_USEDEP}]
56 -"
57 -DEPEND="${RDEPEND}"
58 -BDEPEND="
59 - doc? (
60 - app-text/asciidoc
61 - app-text/xmlto
62 - )
63 - virtual/pkgconfig
64 - >=sys-devel/gettext-0.17
65 -"
66 -
67 -src_configure() {
68 - local emesonargs=(
69 - $(meson_use doc docs)
70 - -Dlint=false
71 - )
72 -
73 - python_foreach_impl meson_src_configure
74 -}
75 -
76 -src_compile() {
77 - python_foreach_impl meson_src_compile
78 -}
79 -
80 -src_install() {
81 - python_foreach_impl meson_src_install
82 - python_foreach_impl python_optimize
83 -}
84 -
85 -src_test() {
86 - python_foreach_impl meson_src_test
87 -}