Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mozo/
Date: Sun, 14 Apr 2019 21:25:10
Message-Id: 1555277089.cf0e8d7c0e20bbca875e9145822ac80d3868f554.zlogene@gentoo
1 commit: cf0e8d7c0e20bbca875e9145822ac80d3868f554
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 14 21:21:15 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 14 21:24:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf0e8d7c
7
8 x11-misc/mozo: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 x11-misc/mozo/Manifest | 1 -
14 x11-misc/mozo/mozo-1.18.0.ebuild | 66 ----------------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/x11-misc/mozo/Manifest b/x11-misc/mozo/Manifest
18 index 50086e353ff..6af2e557fc5 100644
19 --- a/x11-misc/mozo/Manifest
20 +++ b/x11-misc/mozo/Manifest
21 @@ -1,2 +1 @@
22 -DIST mozo-1.18.0.tar.xz 173432 BLAKE2B 46c791b056c3fb8bb768599f4b474cd9434d6918d9deb740e2d65bef5853199822818e02a7cf9b653d3ef49453aff413b09ad92cda218f70db950b19b5f74363 SHA512 e333c572e5bc1d0905daed17eacd3dda10df5f80ed5b5b01ca3478d345a8c724e0161ccf51914f4982f16df71f252a3b08b194bec18e6aee05eb7af021369a12
23 DIST mozo-1.22.0.tar.xz 178924 BLAKE2B 6cc74cbdb7342d926483948391798cc9b0be66b63bba758b7ec8cea3f5555ae01f1ecf279053612ed060a283076bdac1a9ef8bd15e3cfe61d96685aeee168ae0 SHA512 f3d60e94d9bf5fdd435320856563622f0687cc2844a3d51473bcef5c442f4938a4030533271ead2fd88fb0ce805c16b40d629e5a69fc642e7e670a1afd5745db
24
25 diff --git a/x11-misc/mozo/mozo-1.18.0.ebuild b/x11-misc/mozo/mozo-1.18.0.ebuild
26 deleted file mode 100644
27 index 8a7e1c796b2..00000000000
28 --- a/x11-misc/mozo/mozo-1.18.0.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -PYTHON_REQ_USE="xml"
38 -
39 -inherit python-r1 mate
40 -
41 -if [[ ${PV} != 9999 ]]; then
42 - KEYWORDS="amd64 ~arm ~arm64 x86"
43 -fi
44 -
45 -DESCRIPTION="Mozo menu editor for MATE"
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -
49 -IUSE=""
50 -
51 -COMMON_DEPEND="${PYTHON_DEPS}
52 - >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
53 - >=mate-base/mate-menus-1.6[introspection,python]
54 - x11-libs/gdk-pixbuf:2[introspection]
55 - x11-libs/gtk+:3[introspection]
56 - virtual/libintl:0
57 - !!x11-misc/mate-menu-editor"
58 -
59 -RDEPEND="${COMMON_DEPEND}"
60 -
61 -DEPEND="${COMMON_DEPEND}
62 - >=dev-util/intltool-0.40:*
63 - sys-devel/gettext:*
64 - virtual/pkgconfig:*"
65 -
66 -src_prepare() {
67 - mate_src_prepare
68 - python_copy_sources
69 -}
70 -
71 -src_configure() {
72 - python_foreach_impl run_in_build_dir mate_src_configure \
73 - --disable-icon-update
74 -}
75 -
76 -src_compile() {
77 - python_foreach_impl run_in_build_dir default
78 -}
79 -
80 -src_test() {
81 - python_foreach_impl run_in_build_dir emake check
82 -}
83 -
84 -src_install() {
85 - installing() {
86 - mate_src_install
87 -
88 - # Massage shebang to make python_doscript happy
89 - sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \
90 - -i mozo || die
91 -
92 - python_doscript mozo
93 - }
94 -
95 - python_foreach_impl run_in_build_dir installing
96 -}