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/ccsm/, x11-misc/ccsm/files/
Date: Fri, 26 Jan 2018 22:33:00
Message-Id: 1517005970.1e3b263b4d2589abb5bd6f701380c6ee87555e56.zlogene@gentoo
1 commit: 1e3b263b4d2589abb5bd6f701380c6ee87555e56
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 26 22:32:50 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 22:32:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3b263b
7
8 x11-misc/ccsm: remove last rited package
9
10 x11-misc/ccsm/Manifest | 1 -
11 x11-misc/ccsm/ccsm-0.8.4-r5.ebuild | 53 ----------------------
12 .../ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch | 16 -------
13 x11-misc/ccsm/metadata.xml | 6 ---
14 4 files changed, 76 deletions(-)
15
16 diff --git a/x11-misc/ccsm/Manifest b/x11-misc/ccsm/Manifest
17 deleted file mode 100644
18 index 0459bd4e7a2..00000000000
19 --- a/x11-misc/ccsm/Manifest
20 +++ /dev/null
21 @@ -1 +0,0 @@
22 -DIST ccsm-0.8.4.tar.bz2 475864 BLAKE2B 6ccfaa4329dd33b78efd43f98e08d10c5909e1ef36a9fe096c4a1f123f92bf7623f7a73b724ec8146e544dd523022170ba83f4d35d0cd486bdbeabdcddea90ee SHA512 1991f25ca4f04363006bacd5267cb54c7e24817b263996c7172f58180ca0acf94050220938d4fa87081c93fde23ca0b44a333f9b675950e4c5187903a03692c5
23
24 diff --git a/x11-misc/ccsm/ccsm-0.8.4-r5.ebuild b/x11-misc/ccsm/ccsm-0.8.4-r5.ebuild
25 deleted file mode 100644
26 index 235de9f1687..00000000000
27 --- a/x11-misc/ccsm/ccsm-0.8.4-r5.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="5"
34 -
35 -PYTHON_COMPAT=( python2_7 )
36 -DISTUTILS_IN_SOURCE_BUILD=1
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Compizconfig Settings Manager"
40 -HOMEPAGE="http://www.compiz.org/"
41 -SRC_URI="http://releases.compiz.org/${PV}/${P}.tar.bz2"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
46 -
47 -RDEPEND="
48 - >=dev-python/compizconfig-python-${PV}[${PYTHON_USEDEP}]
49 - >=dev-python/pygtk-2.12:2[${PYTHON_USEDEP}]
50 - gnome-base/librsvg
51 -"
52 -
53 -# missing icons and text fix, bug #487106
54 -PATCHES=( "${FILESDIR}/${P}-pygobject-glib-fix.patch" )
55 -
56 -DOCS=( AUTHORS )
57 -
58 -python_prepare_all() {
59 - # return error if wrong arguments passed to setup.py
60 - sed -i -e 's/raise SystemExit/\0(1)/' setup.py || die 'sed on setup.py failed'
61 - # fix desktop file
62 - sed -i \
63 - -e '/Categories/s/Compiz/X-\0/' \
64 - -e '/Encoding/d' \
65 - ccsm.desktop.in || die 'sed on ccsm.desktop.in failed'
66 -
67 - # correct gettext behavior
68 - if [[ -n "${LINGUAS+x}" ]] ; then
69 - for i in $(cd po ; echo *po | sed 's/\.po//g') ; do
70 - if ! has ${i} ${LINGUAS} ; then
71 - rm po/${i}.po || die
72 - fi
73 - done
74 - fi
75 -
76 - distutils-r1_python_prepare_all
77 -}
78 -
79 -python_configure_all() {
80 - #set prefix
81 - mydistutilsargs=( build --prefix=/usr )
82 -}
83
84 diff --git a/x11-misc/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch b/x11-misc/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch
85 deleted file mode 100644
86 index 9b325af7f34..00000000000
87 --- a/x11-misc/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch
88 +++ /dev/null
89 @@ -1,16 +0,0 @@
90 -Fix missing icon and text with new PyGObject
91 -Gentoo bugreport - https://bugs.gentoo.org/show_bug.cgi?id=487106
92 -Patch by Small_Penguin <dark.shadow AT gmx.at>
93 -
94 -diff -Naur ccsm-0.8.4~/ccm/Utils.py ccsm-0.8.4/ccm/Utils.py
95 ---- ccsm-0.8.4~/ccm/Utils.py 2009-10-14 03:05:30.000000000 +0200
96 -+++ ccsm-0.8.4/ccm/Utils.py 2013-10-05 10:16:10.050030522 +0200
97 -@@ -184,7 +184,7 @@
98 - if has_focus:
99 - self.unset_flags (gtk.HAS_FOCUS)
100 -
101 -- ret = super (PrettyButton, self).do_expose_event (self, event)
102 -+ ret = gtk.Button.do_expose_event (self, event)
103 -
104 - if has_focus:
105 - self.set_flags (gtk.HAS_FOCUS)
106
107 diff --git a/x11-misc/ccsm/metadata.xml b/x11-misc/ccsm/metadata.xml
108 deleted file mode 100644
109 index 3f57497447f..00000000000
110 --- a/x11-misc/ccsm/metadata.xml
111 +++ /dev/null
112 @@ -1,6 +0,0 @@
113 -<?xml version="1.0" encoding="UTF-8"?>
114 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
115 -<pkgmetadata>
116 - <!-- maintainer-needed -->
117 - <longdescription lang="en">Compizconfig Settings Manager.</longdescription>
118 -</pkgmetadata>