Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/terminator/files/, x11-terms/terminator/
Date: Fri, 05 Jun 2020 09:43:38
Message-Id: 1591350200.fa86a9e1dfcf443daaef7ae276e15318d6dfa8d7.asturm@gentoo
1 commit: fa86a9e1dfcf443daaef7ae276e15318d6dfa8d7
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 5 09:33:46 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 5 09:43:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa86a9e1
7
8 x11-terms/terminator: Drop 1.91
9
10 Bug: https://bugs.gentoo.org/716446
11 Package-Manager: Portage-2.3.100, Repoman-2.3.22
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 x11-terms/terminator/Manifest | 1 -
15 .../terminator/files/0.90-without-icon-cache.patch | 11 ----
16 x11-terms/terminator/terminator-1.91.ebuild | 67 ----------------------
17 3 files changed, 79 deletions(-)
18
19 diff --git a/x11-terms/terminator/Manifest b/x11-terms/terminator/Manifest
20 index 5de1326fab2..b7d3b02a41b 100644
21 --- a/x11-terms/terminator/Manifest
22 +++ b/x11-terms/terminator/Manifest
23 @@ -1,2 +1 @@
24 -DIST terminator-1.91.tar.gz 910536 BLAKE2B 887eef489dc3eb73f7ae8f6284104ee5e6a23b33bc8486b203f9b53c7de5a11a43fdc6a344b02f269c0d4ce71cfc82f0c8285440900870870a43cd10d99326b9 SHA512 6feee96cda08f913601d3b01e51632bed87712ddb5ce577df1daa8a5fe4e8dc39075d5e21f87b865d1f007c7e1070ee2c0c814540c9c7786f0f24fbee762a03d
25 DIST terminator-1.92.tar.gz 910613 BLAKE2B d7a665f81011b21da14837492f04204158e95d846aaf876d2393fe4a236113d9718be9b3946f38e1385168bbcec72fd65b895b5f476727c8a67bbc6e51016a63 SHA512 9a63d1993582d94711b7be6cad0ecde3969b3a5d297ab388677b485161fae308a93d559f84bc4cb7ff71c8755cac6c2511b3677a8ab1da3da6427c53c68529f1
26
27 diff --git a/x11-terms/terminator/files/0.90-without-icon-cache.patch b/x11-terms/terminator/files/0.90-without-icon-cache.patch
28 deleted file mode 100644
29 index c7862def3ea..00000000000
30 --- a/x11-terms/terminator/files/0.90-without-icon-cache.patch
31 +++ /dev/null
32 @@ -1,11 +0,0 @@
33 ---- setup.py.orig 2009-08-12 22:22:53.000000000 -0400
34 -+++ setup.py 2009-08-12 22:22:57.000000000 -0400
35 -@@ -25,7 +25,7 @@
36 -
37 - def __init__ (self, *args):
38 - self.without_gettext = False
39 -- self.without_icon_cache = False
40 -+ self.without_icon_cache = True
41 - Distribution.__init__(self, *args)
42 -
43 -
44
45 diff --git a/x11-terms/terminator/terminator-1.91.ebuild b/x11-terms/terminator/terminator-1.91.ebuild
46 deleted file mode 100644
47 index 835d3640e10..00000000000
48 --- a/x11-terms/terminator/terminator-1.91.ebuild
49 +++ /dev/null
50 @@ -1,67 +0,0 @@
51 -# Copyright 1999-2020 Gentoo Authors
52 -# Distributed under the terms of the GNU General Public License v2
53 -
54 -EAPI=5
55 -PYTHON_COMPAT=( python2_7 )
56 -inherit eutils gnome2 distutils-r1 virtualx
57 -
58 -DESCRIPTION="Multiple GNOME terminals in one window"
59 -HOMEPAGE="https://launchpad.net/terminator/"
60 -SRC_URI="https://launchpad.net/${PN}/gtk3/${PV}/+download/${P}.tar.gz"
61 -
62 -LICENSE="GPL-2"
63 -SLOT="0"
64 -KEYWORDS="amd64 ~ppc x86"
65 -IUSE="dbus +libnotify"
66 -
67 -RDEPEND="
68 - >=x11-libs/gtk+-3.16:3
69 - >=dev-libs/glib-2.32:2
70 - dev-libs/keybinder:3[introspection]
71 - dev-python/psutil
72 - x11-libs/vte:2.91[introspection]
73 - dbus? ( sys-apps/dbus )
74 - dev-python/pycairo[${PYTHON_USEDEP}]
75 - dev-python/pygobject:3[${PYTHON_USEDEP}]
76 - libnotify? (
77 - dev-python/notify-python[${PYTHON_USEDEP}]
78 - x11-libs/libnotify[introspection]
79 - )
80 -"
81 -DEPEND="
82 - dev-util/intltool
83 -"
84 -
85 -python_prepare_all() {
86 - local PATCHES=(
87 - "${FILESDIR}"/0.90-without-icon-cache.patch
88 - "${FILESDIR}"/${P}-desktop.patch
89 - )
90 -
91 - local i p
92 - if [[ -n "${LINGUAS+x}" ]] ; then
93 - pushd "${S}"/po > /dev/null
94 - strip-linguas -i .
95 - for i in *.po; do
96 - if ! has ${i%.po} ${LINGUAS} ; then
97 - rm ${i} || die
98 - fi
99 - done
100 - popd > /dev/null
101 - fi
102 -
103 - distutils-r1_python_prepare_all
104 -}
105 -
106 -python_test() {
107 - VIRTUALX_COMMAND="esetup.py"
108 - virtualmake test
109 -}
110 -
111 -pkg_postinst() {
112 - gnome2_pkg_postinst
113 -}
114 -
115 -pkg_postrm() {
116 - gnome2_pkg_postrm
117 -}