From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33A44138350 for ; Sun, 12 Jan 2020 13:43:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A96BE0D16; Sun, 12 Jan 2020 13:43:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1CC86E0D16 for ; Sun, 12 Jan 2020 13:43:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C49334DFA1 for ; Sun, 12 Jan 2020 13:43:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FCD1BD for ; Sun, 12 Jan 2020 13:43:34 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1578836596.63ed0010e337b5b37e4054b800f9f47248aa513b.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/compton/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/compton/compton-9999.ebuild X-VCS-Directories: x11-misc/compton/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 63ed0010e337b5b37e4054b800f9f47248aa513b X-VCS-Branch: master Date: Sun, 12 Jan 2020 13:43:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c478867d-d3e3-4e13-948e-129cf81269d9 X-Archives-Hash: 7de7020ef73e3c0d242627332d18ccc2 commit: 63ed0010e337b5b37e4054b800f9f47248aa513b Author: Johannes Huber gentoo org> AuthorDate: Sun Jan 12 13:43:16 2020 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Jan 12 13:43:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ed0010 x11-misc/compton: Remove live Dead upstream will be replaced by x11-misc/picom when stable. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Johannes Huber gentoo.org> x11-misc/compton/compton-9999.ebuild | 66 ------------------------------------ 1 file changed, 66 deletions(-) diff --git a/x11-misc/compton/compton-9999.ebuild b/x11-misc/compton/compton-9999.ebuild deleted file mode 100644 index 0f7593c40e9..00000000000 --- a/x11-misc/compton/compton-9999.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) -inherit toolchain-funcs python-r1 git-r3 - -DESCRIPTION="A compositor for X, and a fork of xcompmgr-dana" -HOMEPAGE="https://github.com/chjj/compton" -SRC_URI="" - -EGIT_REPO_URI="https://github.com/chjj/compton.git" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="dbus +drm opengl +pcre xinerama" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -COMMON_DEPEND="${PYTHON_DEPS} - dev-libs/libconfig:= - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libXrender - dbus? ( sys-apps/dbus ) - opengl? ( virtual/opengl ) - pcre? ( dev-libs/libpcre:3 ) - xinerama? ( x11-libs/libXinerama )" -RDEPEND="${COMMON_DEPEND} - x11-apps/xprop - x11-apps/xwininfo" -DEPEND="${COMMON_DEPEND} - app-text/asciidoc - virtual/pkgconfig - x11-base/xorg-proto - drm? ( x11-libs/libdrm )" - -nobuildit() { use $1 || echo yes ; } - -src_compile() { - tc-export CC - emake docs - - NO_DBUS=$(nobuildit dbus) \ - NO_XINERAMA=$(nobuildit xinerama) \ - NO_VSYNC_DRM=$(nobuildit drm) \ - NO_VSYNC_OPENGL=$(nobuildit opengl) \ - NO_REGEX_PCRE=$(nobuildit pcre) \ - emake compton -} - -src_install() { - NO_DBUS=$(nobuildit dbus) \ - NO_VSYNC_DRM=$(nobuildit drm) \ - NO_VSYNC_OPENGL=$(nobuildit opengl) \ - NO_REGEX_PCRE=$(nobuildit pcre) \ - default - docinto examples - dodoc compton.sample.conf dbus-examples/* - python_foreach_impl python_newscript bin/compton-convgen.py compton-convgen -}