Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/picom/
Date: Thu, 22 Apr 2021 10:32:40
Message-Id: 1619087472.4cc853353fc4670c19bf1698e8584b0ef7b4844e.voyageur@gentoo
1 commit: 4cc853353fc4670c19bf1698e8584b0ef7b4844e
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 22 10:31:12 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 22 10:31:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc85335
7
8 x11-misc/picom: drop old ~arch rev
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 x11-misc/picom/picom-8.2-r1.ebuild | 60 --------------------------------------
14 1 file changed, 60 deletions(-)
15
16 diff --git a/x11-misc/picom/picom-8.2-r1.ebuild b/x11-misc/picom/picom-8.2-r1.ebuild
17 deleted file mode 100644
18 index 2fae5bbe96d..00000000000
19 --- a/x11-misc/picom/picom-8.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,60 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8,9} )
28 -inherit meson python-any-r1 virtualx xdg
29 -
30 -DESCRIPTION="A lightweight compositor for X11 (previously a compton fork)"
31 -HOMEPAGE="https://github.com/yshui/picom"
32 -SRC_URI="https://github.com/yshui/picom/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="MPL-2.0 MIT"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~ppc64 ~x86"
37 -IUSE="+config-file dbus +doc +drm opengl pcre test"
38 -
39 -REQUIRED_USE="test? ( dbus )" # avoid "DBus support not compiled in!"
40 -RESTRICT="test" # but tests require dbus_next
41 -
42 -RDEPEND="
43 - dev-libs/libev
44 - dev-libs/uthash
45 - x11-libs/libX11
46 - x11-libs/libxcb
47 - x11-libs/libXext
48 - x11-libs/pixman
49 - x11-libs/xcb-util-image
50 - x11-libs/xcb-util-renderutil
51 - config-file? (
52 - dev-libs/libconfig:=
53 - dev-libs/libxdg-basedir
54 - )
55 - dbus? ( sys-apps/dbus )
56 - drm? ( x11-libs/libdrm )
57 - opengl? ( virtual/opengl )
58 - pcre? ( dev-libs/libpcre )
59 - !x11-misc/compton"
60 -DEPEND="${RDEPEND}
61 - x11-base/xorg-proto"
62 -BDEPEND="virtual/pkgconfig
63 - doc? ( app-text/asciidoc )
64 - test? ( $(python_gen_any_dep 'dev-python/xcffib[${PYTHON_USEDEP}]') )
65 -"
66 -
67 -src_configure() {
68 - local emesonargs=(
69 - $(meson_use config-file config_file)
70 - $(meson_use dbus)
71 - $(meson_use doc with_docs)
72 - $(meson_use opengl)
73 - $(meson_use pcre regex)
74 - )
75 -
76 - meson_src_configure
77 -}
78 -
79 -src_test() {
80 - virtx "${S}/tests/run_tests.sh" "${BUILD_DIR}/src/${PN}"
81 -}