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: x11-misc/mozo/
Date: Mon, 31 May 2021 21:07:27
Message-Id: 1622495184.d4af6b3ba6ba9cc562bf3d66ac00deecbdac315b.mgorny@gentoo
1 commit: d4af6b3ba6ba9cc562bf3d66ac00deecbdac315b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 21:06:24 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 21:06:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4af6b3b
7
8 x11-misc/mozo: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-misc/mozo/mozo-1.24.0.ebuild | 69 ----------------------------------------
13 1 file changed, 69 deletions(-)
14
15 diff --git a/x11-misc/mozo/mozo-1.24.0.ebuild b/x11-misc/mozo/mozo-1.24.0.ebuild
16 deleted file mode 100644
17 index 44cf4f3240e..00000000000
18 --- a/x11-misc/mozo/mozo-1.24.0.ebuild
19 +++ /dev/null
20 @@ -1,69 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_7 )
27 -PYTHON_REQ_USE="xml"
28 -
29 -inherit python-r1 mate
30 -
31 -if [[ ${PV} != 9999 ]]; then
32 - KEYWORDS="amd64 ~arm ~arm64 x86"
33 -fi
34 -
35 -DESCRIPTION="Mozo menu editor for MATE"
36 -LICENSE="GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
37 -SLOT="0"
38 -IUSE=""
39 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
40 -
41 -COMMON_DEPEND="${PYTHON_DEPS}
42 - >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
43 - >=mate-base/mate-menus-1.21.0[introspection]
44 - x11-libs/gdk-pixbuf:2[introspection]
45 - >=x11-libs/gtk+-3.22:3[introspection]
46 - !!x11-misc/mate-menu-editor
47 -"
48 -
49 -RDEPEND="${COMMON_DEPEND}
50 - virtual/libintl
51 -"
52 -
53 -DEPEND="${COMMON_DEPEND}
54 - >=sys-devel/gettext-0.19.8:*
55 - virtual/pkgconfig:*
56 -"
57 -
58 -src_prepare() {
59 - mate_src_prepare
60 - python_copy_sources
61 -}
62 -
63 -src_configure() {
64 - python_foreach_impl run_in_build_dir mate_src_configure \
65 - --disable-icon-update
66 -}
67 -
68 -src_compile() {
69 - python_foreach_impl run_in_build_dir default
70 -}
71 -
72 -src_test() {
73 - python_foreach_impl run_in_build_dir emake check
74 -}
75 -
76 -src_install() {
77 - installing() {
78 - mate_src_install
79 -
80 - # Massage shebang to make python_doscript happy
81 - sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \
82 - -i mozo || die
83 -
84 - python_doscript mozo
85 - python_optimize
86 - }
87 -
88 - python_foreach_impl run_in_build_dir installing
89 -}