Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mugshot/
Date: Sun, 15 Dec 2019 13:10:47
Message-Id: 1576415329.a37befed6d9c850fe0fe838aeca6c7b1f8b77a04.conikost@gentoo
1 commit: a37befed6d9c850fe0fe838aeca6c7b1f8b77a04
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 13:08:49 2019 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 13:08:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a37befed
7
8 x11-misc/mugshot: drop old version
9
10 Package-Manager: Portage-2.3.81, Repoman-2.3.20
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 x11-misc/mugshot/mugshot-0.4.2.ebuild | 70 -----------------------------------
14 1 file changed, 70 deletions(-)
15
16 diff --git a/x11-misc/mugshot/mugshot-0.4.2.ebuild b/x11-misc/mugshot/mugshot-0.4.2.ebuild
17 deleted file mode 100644
18 index d554083db4a..00000000000
19 --- a/x11-misc/mugshot/mugshot-0.4.2.ebuild
20 +++ /dev/null
21 @@ -1,70 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{5,6,7} )
28 -
29 -inherit distutils-r1 gnome2-utils xdg-utils
30 -
31 -DESCRIPTION="A lightweight user-configuration application"
32 -HOMEPAGE="https://github.com/bluesabre/mugshot"
33 -SRC_URI="https://github.com/bluesabre/${PN}/archive/${P}.tar.gz"
34 -
35 -LICENSE="GPL-3+"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 -IUSE="gnome libreoffice webcam"
39 -
40 -RDEPEND="
41 - dev-libs/gobject-introspection
42 - dev-python/dbus-python[${PYTHON_USEDEP}]
43 - dev-python/pexpect[${PYTHON_USEDEP}]
44 - dev-python/pycairo[${PYTHON_USEDEP}]
45 - dev-python/pygobject:3[${PYTHON_USEDEP}]
46 - sys-apps/accountsservice
47 - x11-libs/gtk+:3
48 - gnome? ( gnome-base/gnome-control-center )
49 - libreoffice? (
50 - || (
51 - app-office/libreoffice-bin
52 - app-office/libreoffice
53 - )
54 - )
55 - webcam? (
56 - media-libs/gstreamer:1.0
57 - media-libs/gst-plugins-good:1.0
58 - gnome? (
59 - media-libs/clutter-gtk[introspection]
60 - media-video/cheese[introspection]
61 - )
62 - )
63 -"
64 -
65 -DEPEND="
66 - ${RDEPEND}
67 - dev-python/python-distutils-extra[${PYTHON_USEDEP}]
68 -"
69 -
70 -BDEPEND="
71 - dev-util/intltool
72 -"
73 -
74 -S="${WORKDIR}/${PN}-${P}"
75 -
76 -python_install() {
77 - distutils-r1_python_install
78 -
79 - # Since DOCS are installed twice, remove the wrong path
80 - rm -r "${ED}"/usr/share/doc/mugshot || die
81 -}
82 -
83 -pkg_postinst() {
84 - gnome2_schemas_update
85 - xdg_icon_cache_update
86 -}
87 -
88 -pkg_postrm() {
89 - gnome2_schemas_update
90 - xdg_icon_cache_update
91 -}