Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libreport/
Date: Sun, 26 Sep 2021 10:19:00
Message-Id: 1632651181.6b74615163204a296cbc05b1957ce9fe2e364bd1.pacho@gentoo
1 commit: 6b74615163204a296cbc05b1957ce9fe2e364bd1
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 26 10:13:01 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 26 10:13:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b746151
7
8 dev-libs/libreport: Drop old
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-libs/libreport/Manifest | 1 -
14 dev-libs/libreport/libreport-2.15.1.ebuild | 100 -----------------------------
15 2 files changed, 101 deletions(-)
16
17 diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
18 index c75d817e335..7116c7dea91 100644
19 --- a/dev-libs/libreport/Manifest
20 +++ b/dev-libs/libreport/Manifest
21 @@ -1,2 +1 @@
22 -DIST libreport-2.15.1.tar.gz 1860410 BLAKE2B 43743fc7a7698851e247956621286cc94dbfcc451b8d95aaff9263e65f787b23f7bbf5d7ec087196d5f9f30a697c66e547bbccdc913b3ea2a17ea4c7bf77ee02 SHA512 70f947690173a0afa57981c9755a18bdd0ad44c888c00713de74624296b81ff25203d5dda5d5c57eac85da4a1631585184b77715c7adf6688b469e32d4113cf4
23 DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b SHA512 c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc
24
25 diff --git a/dev-libs/libreport/libreport-2.15.1.ebuild b/dev-libs/libreport/libreport-2.15.1.ebuild
26 deleted file mode 100644
27 index 2cdc5d5a57d..00000000000
28 --- a/dev-libs/libreport/libreport-2.15.1.ebuild
29 +++ /dev/null
30 @@ -1,100 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit autotools python-r1
38 -
39 -DESCRIPTION="Generic library for reporting software bugs"
40 -HOMEPAGE="https://github.com/abrt/libreport"
41 -SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0/1"
45 -KEYWORDS="~amd64 ~x86"
46 -
47 -IUSE="gtk +python"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -DEPEND="${PYTHON_DEPS}
51 - app-admin/augeas
52 - app-arch/libarchive:0=
53 - >=dev-libs/glib-2.43.4:2
54 - dev-libs/satyr:0=
55 - dev-libs/json-c:=
56 - dev-libs/libxml2:2
57 - dev-libs/nettle:=
58 - dev-libs/newt:=
59 - dev-libs/xmlrpc-c:=
60 - net-libs/libproxy:=
61 - net-misc/curl:=[ssl]
62 - sys-apps/dbus
63 - sys-apps/systemd
64 - gtk? ( >=x11-libs/gtk+-3.3.12:3 )
65 - python? ( ${PYTHON_DEPS} )
66 - x11-misc/xdg-utils
67 -"
68 -RDEPEND="${DEPEND}
69 - acct-user/abrt
70 - acct-group/abrt
71 -"
72 -BDEPEND="
73 - app-text/asciidoc
74 - app-text/xmlto
75 - >=dev-util/intltool-0.3.50
76 - >=sys-devel/gettext-0.17
77 - virtual/pkgconfig
78 -"
79 -
80 -# Tests require python-meh, which is highly redhat-specific.
81 -RESTRICT="test"
82 -
83 -src_prepare() {
84 - default
85 - ./gen-version || die # Needed to be run before autoreconf
86 - eautoreconf
87 - use python && python_copy_sources
88 -}
89 -
90 -src_configure() {
91 - use python && python_setup
92 -
93 - local myargs=(
94 - --localstatedir="${EPREFIX}/var"
95 - --without-bugzilla
96 - $(use_with gtk)
97 - $(use_with python python3)
98 - )
99 - if use python; then
100 - python_foreach_impl run_in_build_dir econf "${myargs[@]}"
101 - else
102 - econf "${myargs[@]}"
103 - fi
104 -}
105 -
106 -src_compile() {
107 - if use python; then
108 - python_foreach_impl run_in_build_dir default
109 - else
110 - default
111 - fi
112 -}
113 -
114 -src_install() {
115 - if use python; then
116 - python_install() {
117 - default
118 - python_optimize
119 - }
120 - python_foreach_impl run_in_build_dir python_install
121 - else
122 - default
123 - fi
124 -
125 - # Need to set correct ownership for use by app-admin/abrt
126 - diropts -o abrt -g abrt
127 - keepdir /var/spool/abrt
128 -
129 - find "${D}" -name '*.la' -exec rm -f {} + || die
130 -}