Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/guake/
Date: Tue, 19 Oct 2021 23:22:49
Message-Id: 1634685424.c0c97b16cb4e20d130fffdfea3aee9597b6027ae.ionen@gentoo
1 commit: c0c97b16cb4e20d130fffdfea3aee9597b6027ae
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 19 18:44:55 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 19 23:17:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0c97b16
7
8 x11-terms/guake: drop live ebuild
9
10 Without a proper maintainer, keeping -9999 updated does not seem
11 worth it (especially with the fickle Makefile operations and
12 paths that are likely to require fine tuning not to break).
13
14 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
15
16 x11-terms/guake/guake-9999.ebuild | 69 ---------------------------------------
17 1 file changed, 69 deletions(-)
18
19 diff --git a/x11-terms/guake/guake-9999.ebuild b/x11-terms/guake/guake-9999.ebuild
20 deleted file mode 100644
21 index 0c37d44a1ac..00000000000
22 --- a/x11-terms/guake/guake-9999.ebuild
23 +++ /dev/null
24 @@ -1,69 +0,0 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI=7
29 -
30 -PYTHON_COMPAT=( python3_{8..9} )
31 -DISTUTILS_SINGLE_IMPL=1
32 -
33 -inherit distutils-r1 gnome2-utils xdg-utils
34 -
35 -if [[ ${PV} == *9999 ]]; then
36 - inherit git-r3
37 - EGIT_REPO_URI="https://github.com/Guake/guake.git"
38 -else
39 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 - KEYWORDS="~amd64 ~arm ~x86"
41 -fi
42 -
43 -DESCRIPTION="Drop-down terminal for GNOME"
44 -HOMEPAGE="
45 - https://github.com/Guake/guake/
46 - https://pypi.org/project/guake/"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -IUSE="utempter"
51 -
52 -RDEPEND="
53 - dev-libs/glib
54 - dev-libs/keybinder:3[introspection]
55 - $(python_gen_cond_dep '
56 - dev-python/dbus-python[${PYTHON_USEDEP}]
57 - dev-python/pbr[${PYTHON_USEDEP}]
58 - dev-python/pycairo[${PYTHON_USEDEP}]
59 - dev-python/pygobject:3[${PYTHON_USEDEP}]
60 - ')
61 - x11-libs/libnotify[introspection]
62 - x11-libs/libwnck:3[introspection]
63 - x11-libs/vte:2.91[introspection]
64 - utempter? ( sys-libs/libutempter )"
65 -DEPEND="${RDEPEND}"
66 -BDEPEND="
67 - gnome-base/gsettings-desktop-schemas
68 - sys-devel/gettext"
69 -
70 -PATCHES=(
71 - "${FILESDIR}"/${PN}-3.3.2-paths.patch
72 -)
73 -
74 -python_compile_all() {
75 - emake prepare-install PREFIX=/usr
76 - emake generate-paths PREFIX=/usr DATA_DIR='$(datadir)/guake' DEV_SCHEMA_DIR='$(gsettingsschemadir)'
77 - default
78 -}
79 -
80 -python_install_all() {
81 - emake install-schemas install-locale PREFIX=/usr DESTDIR="${D}"
82 - distutils-r1_python_install_all
83 -}
84 -
85 -pkg_postinst() {
86 - gnome2_schemas_update
87 - xdg_desktop_database_update
88 -}
89 -
90 -pkg_postrm() {
91 - gnome2_schemas_update
92 - xdg_desktop_database_update
93 -}