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-apps/fusion-icon/, x11-apps/fusion-icon/files/
Date: Fri, 26 Jan 2018 22:39:32
Message-Id: 1517006362.7c1dc55c81e01a738bd4b278bd7cce28022b5e55.zlogene@gentoo
1 commit: 7c1dc55c81e01a738bd4b278bd7cce28022b5e55
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 26 22:39:22 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 22:39:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c1dc55c
7
8 x11-apps/fusion-icon: remove last rited package
9
10 x11-apps/fusion-icon/Manifest | 2 -
11 ...on-icon-0.1-qt4-interface-subprocess-call.patch | 22 -----------
12 x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild | 46 ----------------------
13 x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild | 40 -------------------
14 x11-apps/fusion-icon/metadata.xml | 5 ---
15 5 files changed, 115 deletions(-)
16
17 diff --git a/x11-apps/fusion-icon/Manifest b/x11-apps/fusion-icon/Manifest
18 deleted file mode 100644
19 index f047bac81a9..00000000000
20 --- a/x11-apps/fusion-icon/Manifest
21 +++ /dev/null
22 @@ -1,2 +0,0 @@
23 -DIST fusion-icon-0.1.tar.gz 30508 BLAKE2B 8ab8c0eb1ff63c7d6dce128a8e20983028e8ef5bae6a5a7affcbcf2da87a552046fc57afaf9c469a566b7cd7f93322b8e277b67cab2a4072b2acf6371b50c7a6 SHA512 0c22d0c7a22a9c20f1285114f8b785aff6cf863d4fe3ea1198618b13d7144f459f131dccf885442908fcd82ab4ff69e5fc42e95314836725b0e51fa3190c2bcc
24 -DIST fusion-icon-0.2.4.tar.xz 29264 BLAKE2B 0c236c04ec870ee1d583bb4bcc3efcfa26c218af55214b214fc79c528decb0fe1a2c8a00646c52d64afe4c8dd67fab4bd6495fa5b2846894161aa54d6b5bdcb1 SHA512 dbdc68abef3ed243db30a72f367dc0ed8f875fa614c85e24235cbf06a8e1433bc30b175d43abbd8b5adf3150275f619a992602f1475cbdf235ae9cd9e1545848
25
26 diff --git a/x11-apps/fusion-icon/files/fusion-icon-0.1-qt4-interface-subprocess-call.patch b/x11-apps/fusion-icon/files/fusion-icon-0.1-qt4-interface-subprocess-call.patch
27 deleted file mode 100644
28 index 4829e18e60e..00000000000
29 --- a/x11-apps/fusion-icon/files/fusion-icon-0.1-qt4-interface-subprocess-call.patch
30 +++ /dev/null
31 @@ -1,22 +0,0 @@
32 ---- FusionIcon/interface_qt4/main.py.orig 2012-06-05 17:54:13.000000000 +0400
33 -+++ FusionIcon/interface_qt4/main.py 2012-06-05 18:01:13.000000000 +0400
34 -@@ -19,6 +19,7 @@
35 - import sys, os, time
36 - from PyQt4 import QtGui, QtCore
37 - from FusionIcon.start import wms, apps, options, decorators, init
38 -+import subprocess
39 -
40 - class Build(QtGui.QApplication):
41 - def reload_wm(self):
42 -@@ -63,9 +64,9 @@
43 - actionWD.setChecked(True)
44 - self.Tray.menu = QtGui.QMenu()
45 - if 'ccsm' in apps:
46 -- self.Tray.menu.addAction(apps['ccsm'].label, lambda: run(['ccsm']))
47 -+ self.Tray.menu.addAction(apps['ccsm'].label, lambda: subprocess.call(['ccsm']))
48 - if 'emerald theme manager' in apps:
49 -- self.Tray.menu.addAction(apps['emerald theme manager'].label, lambda: run(apps['emerald theme manager'].command))
50 -+ self.Tray.menu.addAction(apps['emerald theme manager'].label, lambda: subprocess.call(apps['emerald theme manager'].command))
51 - if 'ccsm' in apps or 'emerald theme manager' in apps:
52 - self.Tray.menu.addSeparator()
53 - self.Tray.menu.addAction("Reload Window Manager", self.reload_wm)
54
55 diff --git a/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild b/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild
56 deleted file mode 100644
57 index d781541f333..00000000000
58 --- a/x11-apps/fusion-icon/fusion-icon-0.1-r4.ebuild
59 +++ /dev/null
60 @@ -1,46 +0,0 @@
61 -# Copyright 1999-2015 Gentoo Foundation
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI="5"
65 -PYTHON_COMPAT=( python2_7 )
66 -
67 -inherit distutils-r1 eutils gnome2-utils
68 -
69 -MINIMUM_COMPIZ_RELEASE=0.6.0
70 -
71 -DESCRIPTION="Compiz Fusion Tray Icon and Manager"
72 -HOMEPAGE="http://compiz.org"
73 -SRC_URI="mirror://gentoo/${P}.tar.gz"
74 -
75 -LICENSE="GPL-2"
76 -SLOT="0"
77 -KEYWORDS="~amd64 ~x86"
78 -IUSE="+gtk qt4"
79 -
80 -REQUIRED_USE="|| ( gtk qt4 )"
81 -
82 -RDEPEND="
83 - >=dev-python/compizconfig-python-${MINIMUM_COMPIZ_RELEASE}
84 - >=x11-wm/compiz-${MINIMUM_COMPIZ_RELEASE}
85 - x11-apps/xvinfo
86 - gtk? ( >=dev-python/pygtk-2.10:2[${PYTHON_USEDEP}] )
87 - qt4? ( dev-python/PyQt4[X,${PYTHON_USEDEP}] )"
88 -DEPEND="${RDEPEND}"
89 -
90 -S="${WORKDIR}/${PN}"
91 -
92 -PATCHES=( "${FILESDIR}"/${P}-qt4-interface-subprocess-call.patch )
93 -
94 -python_install() {
95 - distutils-r1_python_install
96 - use gtk || rm -r "${D}$(python_get_sitedir)/FusionIcon/interface_gtk" || die
97 - use qt4 || rm -r "${D}$(python_get_sitedir)/FusionIcon/interface_qt4" || die
98 -}
99 -
100 -pkg_postinst() {
101 - use gtk && gnome2_icon_cache_update
102 -}
103 -
104 -pkg_postrm() {
105 - use gtk && gnome2_icon_cache_update
106 -}
107
108 diff --git a/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild b/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild
109 deleted file mode 100644
110 index 16d20246532..00000000000
111 --- a/x11-apps/fusion-icon/fusion-icon-0.2.4.ebuild
112 +++ /dev/null
113 @@ -1,40 +0,0 @@
114 -# Copyright 1999-2017 Gentoo Foundation
115 -# Distributed under the terms of the GNU General Public License v2
116 -
117 -EAPI="6"
118 -PYTHON_COMPAT=( python2_7 )
119 -
120 -inherit distutils-r1 gnome2-utils
121 -
122 -DESCRIPTION="Compiz Fusion Tray Icon and Manager"
123 -HOMEPAGE="http://compiz.org"
124 -SRC_URI="https://github.com/compiz-reloaded/${PN}/releases/download/v${PV}/${P}.tar.xz"
125 -
126 -LICENSE="GPL-2+"
127 -SLOT="0"
128 -KEYWORDS="~amd64 ~x86"
129 -IUSE="+gtk qt5"
130 -
131 -REQUIRED_USE="|| ( gtk qt5 )"
132 -
133 -RDEPEND="
134 - dev-python/compizconfig-python[${PYTHON_USEDEP}]
135 - x11-apps/xvinfo
136 - x11-wm/compiz
137 - gtk? ( dev-python/pygobject:3[${PYTHON_USEDEP}] )
138 - qt5? ( dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}] )"
139 -DEPEND="${RDEPEND}"
140 -
141 -python_configure_all() {
142 - esetup.py build \
143 - $(use gtk && echo --with-gtk=3) \
144 - $(use qt5 && echo --with-qt=5)
145 -}
146 -
147 -pkg_postinst() {
148 - gnome2_icon_cache_update
149 -}
150 -
151 -pkg_postrm() {
152 - gnome2_icon_cache_update
153 -}
154
155 diff --git a/x11-apps/fusion-icon/metadata.xml b/x11-apps/fusion-icon/metadata.xml
156 deleted file mode 100644
157 index 7a38bb90096..00000000000
158 --- a/x11-apps/fusion-icon/metadata.xml
159 +++ /dev/null
160 @@ -1,5 +0,0 @@
161 -<?xml version="1.0" encoding="UTF-8"?>
162 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
163 -<pkgmetadata>
164 - <!-- maintainer-needed -->
165 -</pkgmetadata>