Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libreport/
Date: Tue, 28 Jan 2020 09:39:17
Message-Id: 1580204060.adb049af09c9c7de2585def08090c4d72a557f4f.leio@gentoo
1 commit: adb049af09c9c7de2585def08090c4d72a557f4f
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 09:22:56 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 09:34:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb049af
7
8 dev-libs/libreport: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-libs/libreport/Manifest | 1 -
14 dev-libs/libreport/libreport-2.9.5.ebuild | 89 -------------------------------
15 2 files changed, 90 deletions(-)
16
17 diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
18 index 78869811184..1c1906dd4ca 100644
19 --- a/dev-libs/libreport/Manifest
20 +++ b/dev-libs/libreport/Manifest
21 @@ -1,2 +1 @@
22 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a SHA512 978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
23 -DIST libreport-2.9.5.tar.gz 2271742 BLAKE2B e74d694c0012e984aab8044e99fee8e12a197c0a2edb933e78f045260043d40557509056b1093bc13cbe983976d5525cde1f7596a942760df10c857e99d6b56e SHA512 f207710d88f39870d08e3a5fdfa3e1d5a808625bd36b1dcce363cefd39e582bad6be6dc4224db5e1df4404734c3dd69c437c377303fe978ae21b608fceb833ce
24
25 diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild b/dev-libs/libreport/libreport-2.9.5.ebuild
26 deleted file mode 100644
27 index ff234bf99f2..00000000000
28 --- a/dev-libs/libreport/libreport-2.9.5.ebuild
29 +++ /dev/null
30 @@ -1,89 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit autotools python-r1 user
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"
45 -KEYWORDS="amd64 x86"
46 -
47 -IUSE="+gtk python"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -COMMON_DEPEND="${PYTHON_DEPS}
51 - app-admin/augeas
52 - >=dev-libs/glib-2.43:2
53 - dev-libs/satyr
54 - dev-libs/json-c:=
55 - dev-libs/libtar
56 - dev-libs/libxml2:2
57 - dev-libs/newt:=
58 - dev-libs/xmlrpc-c:=
59 - net-libs/libproxy:=
60 - net-misc/curl:=[ssl]
61 - sys-apps/dbus
62 - sys-apps/systemd
63 - gtk? ( >=x11-libs/gtk+-3.3.12:3 )
64 - python? ( ${PYTHON_DEPS} )
65 - x11-misc/xdg-utils
66 -"
67 -RDEPEND="${COMMON_DEPEND}"
68 -
69 -DEPEND="${COMMON_DEPEND}
70 - app-text/asciidoc
71 - app-text/xmlto
72 - >=dev-util/intltool-0.3.50
73 - >=sys-devel/gettext-0.17
74 - virtual/pkgconfig
75 -"
76 -
77 -# Tests require python-meh, which is highly redhat-specific.
78 -RESTRICT="test"
79 -
80 -pkg_setup() {
81 - enewgroup abrt
82 - enewuser abrt -1 -1 -1 abrt
83 -}
84 -
85 -src_prepare() {
86 - default
87 - ./gen-version || die # Needed to be run before autoreconf
88 - eautoreconf
89 - use python && python_copy_sources
90 -}
91 -
92 -src_configure() {
93 - local myargs=(
94 - --localstatedir="${EPREFIX}/var"
95 - --without-bugzilla
96 - # Fixes "syntax error in VERSION script" and we aren't supporting Python2 anyway
97 - --without-python2
98 - $(usex python "--with-python3" "--without-python3")
99 - )
100 - if use python; then
101 - python_foreach_impl run_in_build_dir \
102 - econf "${myargs[@]}"
103 - else
104 - econf "${myargs[@]}"
105 - fi
106 -}
107 -
108 -src_compile() {
109 - use python && python_foreach_impl run_in_build_dir default
110 -}
111 -
112 -src_install() {
113 - use python && python_foreach_impl run_in_build_dir default
114 - # Need to set correct ownership for use by app-admin/abrt
115 - diropts -o abrt -g abrt
116 - keepdir /var/spool/abrt
117 -
118 - find "${D}" -name '*.la' -exec rm -f {} + || die
119 -}