Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/pluma/
Date: Mon, 31 May 2021 21:31:01
Message-Id: 1622496654.88671200a8d1cb61018f3e5b49debddb65db4232.mgorny@gentoo
1 commit: 88671200a8d1cb61018f3e5b49debddb65db4232
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 21:30:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 21:30:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88671200
7
8 app-editors/pluma: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-editors/pluma/Manifest | 1 -
13 app-editors/pluma/pluma-1.24.0.ebuild | 81 -----------------------------------
14 2 files changed, 82 deletions(-)
15
16 diff --git a/app-editors/pluma/Manifest b/app-editors/pluma/Manifest
17 index 181c8877b29..106b02fab9a 100644
18 --- a/app-editors/pluma/Manifest
19 +++ b/app-editors/pluma/Manifest
20 @@ -1,2 +1 @@
21 -DIST pluma-1.24.0.tar.xz 3717544 BLAKE2B fd9375fd05566c11c24d5bdf55ab0d4619143127a5e48c4e91d18421f50340775d58c3e2264382aa3bbd8aad0569c559e87381a9ece07ce1592d1bc1a5315db1 SHA512 390bf2949549baa0e3dc706526217fbc1513e2f9778917710da806e58cdfb0b7a36e95ed2186442490996cf76783acd4e0f4b8f1fedacee9ba356c0d466510be
22 DIST pluma-1.24.1.tar.xz 3679636 BLAKE2B e792433b93862c8b0c47145255311c3a3386c1b99ec1ac87ed91608d839ece4430205f83fcc3c0f5145f986105d4c5d8803393035fcaaea08155197bbcf15d03 SHA512 0cfd6a035fc95993dce3e556c49641e799888f20159b29f2c0712c54ee772aa6df1ce755f329414c94efdb2cb3819ce633b92e6559b0c8cb064dab3c74729ab3
23
24 diff --git a/app-editors/pluma/pluma-1.24.0.ebuild b/app-editors/pluma/pluma-1.24.0.ebuild
25 deleted file mode 100644
26 index 66163bb8d8a..00000000000
27 --- a/app-editors/pluma/pluma-1.24.0.ebuild
28 +++ /dev/null
29 @@ -1,81 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -MATE_LA_PUNT="yes"
36 -
37 -PYTHON_COMPAT=( python3_7 )
38 -
39 -inherit mate python-single-r1 virtualx
40 -
41 -if [[ ${PV} != 9999 ]]; then
42 - KEYWORDS="amd64 ~arm ~arm64 x86"
43 -fi
44 -
45 -DESCRIPTION="Pluma text editor for the MATE desktop"
46 -LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
47 -SLOT="0"
48 -
49 -IUSE="+introspection spell test"
50 -
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -# Tests require gvfs sftp fs mounted and schema's installed. Disable tests.
54 -# https://github.com/mate-desktop/mate-text-editor/issues/33
55 -RESTRICT="test"
56 -
57 -COMMON_DEPEND="dev-libs/atk
58 - >=dev-libs/glib-2.50:2
59 - >=dev-libs/libpeas-1.2.0[gtk]
60 - >=dev-libs/libxml2-2.5:2
61 - x11-libs/cairo
62 - x11-libs/gdk-pixbuf:2
63 - >=x11-libs/gtk+-3.22:3[introspection?]
64 - >=x11-libs/gtksourceview-3.0.0:3.0
65 - x11-libs/libICE
66 - x11-libs/libX11
67 - >=x11-libs/libSM-1.0
68 - x11-libs/pango
69 - introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
70 - spell? (
71 - >=app-text/enchant-1.6:=
72 - >=app-text/iso-codes-0.35
73 - )
74 - !!app-editors/mate-text-editor
75 -"
76 -
77 -RDEPEND="${PYTHON_DEPS}
78 - ${COMMON_DEPEND}
79 - >=mate-base/mate-desktop-1.9[introspection?]
80 - virtual/libintl
81 -"
82 -
83 -DEPEND="${COMMON_DEPEND}
84 - ~app-text/docbook-xml-dtd-4.1.2
85 - app-text/rarian
86 - >=app-text/scrollkeeper-dtd-1:1.0
87 - app-text/yelp-tools
88 - dev-util/glib-utils
89 - dev-util/gtk-doc
90 - dev-util/gtk-doc-am
91 - >=sys-devel/libtool-2.2.6:2
92 - >=sys-devel/gettext-0.19.8
93 - virtual/pkgconfig
94 -"
95 -
96 -src_configure() {
97 - mate_src_configure \
98 - $(use_enable introspection) \
99 - $(use_enable spell) \
100 - $(use_enable test tests)
101 -}
102 -
103 -src_test() {
104 - # FIXME: This should be handled at eclass level.
105 - "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
106 -
107 - unset DBUS_SESSION_BUS_ADDRESS
108 -
109 - GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check
110 -}