Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/compton/
Date: Sun, 12 Jan 2020 13:43:39
Message-Id: 1578836596.63ed0010e337b5b37e4054b800f9f47248aa513b.johu@gentoo
1 commit: 63ed0010e337b5b37e4054b800f9f47248aa513b
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 13:43:16 2020 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 12 13:43:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ed0010
7
8 x11-misc/compton: Remove live
9
10 Dead upstream will be replaced by x11-misc/picom when stable.
11
12 Package-Manager: Portage-2.3.84, Repoman-2.3.20
13 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
14
15 x11-misc/compton/compton-9999.ebuild | 66 ------------------------------------
16 1 file changed, 66 deletions(-)
17
18 diff --git a/x11-misc/compton/compton-9999.ebuild b/x11-misc/compton/compton-9999.ebuild
19 deleted file mode 100644
20 index 0f7593c40e9..00000000000
21 --- a/x11-misc/compton/compton-9999.ebuild
22 +++ /dev/null
23 @@ -1,66 +0,0 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=6
28 -
29 -PYTHON_COMPAT=( python3_6 )
30 -inherit toolchain-funcs python-r1 git-r3
31 -
32 -DESCRIPTION="A compositor for X, and a fork of xcompmgr-dana"
33 -HOMEPAGE="https://github.com/chjj/compton"
34 -SRC_URI=""
35 -
36 -EGIT_REPO_URI="https://github.com/chjj/compton.git"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS=""
41 -IUSE="dbus +drm opengl +pcre xinerama"
42 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
43 -
44 -COMMON_DEPEND="${PYTHON_DEPS}
45 - dev-libs/libconfig:=
46 - x11-libs/libX11
47 - x11-libs/libXcomposite
48 - x11-libs/libXdamage
49 - x11-libs/libXext
50 - x11-libs/libXfixes
51 - x11-libs/libXrandr
52 - x11-libs/libXrender
53 - dbus? ( sys-apps/dbus )
54 - opengl? ( virtual/opengl )
55 - pcre? ( dev-libs/libpcre:3 )
56 - xinerama? ( x11-libs/libXinerama )"
57 -RDEPEND="${COMMON_DEPEND}
58 - x11-apps/xprop
59 - x11-apps/xwininfo"
60 -DEPEND="${COMMON_DEPEND}
61 - app-text/asciidoc
62 - virtual/pkgconfig
63 - x11-base/xorg-proto
64 - drm? ( x11-libs/libdrm )"
65 -
66 -nobuildit() { use $1 || echo yes ; }
67 -
68 -src_compile() {
69 - tc-export CC
70 - emake docs
71 -
72 - NO_DBUS=$(nobuildit dbus) \
73 - NO_XINERAMA=$(nobuildit xinerama) \
74 - NO_VSYNC_DRM=$(nobuildit drm) \
75 - NO_VSYNC_OPENGL=$(nobuildit opengl) \
76 - NO_REGEX_PCRE=$(nobuildit pcre) \
77 - emake compton
78 -}
79 -
80 -src_install() {
81 - NO_DBUS=$(nobuildit dbus) \
82 - NO_VSYNC_DRM=$(nobuildit drm) \
83 - NO_VSYNC_OPENGL=$(nobuildit opengl) \
84 - NO_REGEX_PCRE=$(nobuildit pcre) \
85 - default
86 - docinto examples
87 - dodoc compton.sample.conf dbus-examples/*
88 - python_foreach_impl python_newscript bin/compton-convgen.py compton-convgen
89 -}