Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/compton/
Date: Fri, 28 Oct 2016 01:35:11
Message-Id: 1477618400.d217be39551506b11ca9f076a433029285ae2e97.floppym@gentoo
1 commit: d217be39551506b11ca9f076a433029285ae2e97
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 28 01:17:17 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 01:33:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d217be39
7
8 x11-misc/compton: remove old
9
10 Package-Manager: portage-2.3.2
11
12 x11-misc/compton/Manifest | 1 -
13 x11-misc/compton/compton-0.1_beta1.ebuild | 67 -------------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/x11-misc/compton/Manifest b/x11-misc/compton/Manifest
17 index d7a0fbc..691cb27 100644
18 --- a/x11-misc/compton/Manifest
19 +++ b/x11-misc/compton/Manifest
20 @@ -1,2 +1 @@
21 -DIST compton-0.1_beta1.tar.gz 140466 SHA256 28a770e81ae9e33d759044a75cd2b57329b17bf211cf0e795bc73e56933df8d6 SHA512 fa3e9eb8d85071ac38aa2834f7a14679fce95e1367f6c58987e2d56c5d90e7dd6e3945557e91512199a78bc38eba7f22bdd6efa872d8b108cb33c4579501ae95 WHIRLPOOL faa3a2c23ab1af3f340615bb7593cbd0e81edd36398fb58293ddc543df80ecc13a7e2f2ff8f281cb478f94713896b081b39607c0918d524dfa931a4a1b1c412f
22 DIST compton-0.1_beta2.tar.gz 144239 SHA256 7b9cd52a57326116fb5db3f5f89b7d50e17715252d9fd79b70b45ace30a6b009 SHA512 c3a019d90e32559d44e3a4969bcc15a15837db9c9519ce8cc70b1bd3d0cb16d29449f68cc2f6a8d834569c9620ec6533ab85c1586da957c69b1ae341d9584535 WHIRLPOOL 39ca9718bc79d4542d73cce39bb51fc9b9c0497a30914ab044b920f72a3c2f8cbd315c5dc97c999c1f0ca798ae692ada4626f069914b6835f0c225638b486422
23
24 diff --git a/x11-misc/compton/compton-0.1_beta1.ebuild b/x11-misc/compton/compton-0.1_beta1.ebuild
25 deleted file mode 100644
26 index 9eb10e7..00000000
27 --- a/x11-misc/compton/compton-0.1_beta1.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python3_3 )
37 -inherit toolchain-funcs python-r1
38 -
39 -DESCRIPTION="A compositor for X, and a fork of xcompmgr-dana"
40 -HOMEPAGE="https://github.com/chjj/compton"
41 -SRC_URI="https://github.com/chjj/compton/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="dbus +drm opengl +pcre"
47 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 -
49 -COMMON_DEPEND="${PYTHON_DEPS}
50 - dev-libs/libconfig
51 - x11-libs/libX11
52 - x11-libs/libXcomposite
53 - x11-libs/libXdamage
54 - x11-libs/libXext
55 - x11-libs/libXfixes
56 - x11-libs/libXrandr
57 - x11-libs/libXrender
58 - dbus? ( sys-apps/dbus )
59 - opengl? ( virtual/opengl )
60 - pcre? ( dev-libs/libpcre:3 )"
61 -RDEPEND="${COMMON_DEPEND}
62 - x11-apps/xprop
63 - x11-apps/xwininfo"
64 -DEPEND="${COMMON_DEPEND}
65 - app-text/asciidoc
66 - virtual/pkgconfig
67 - x11-proto/xproto
68 - drm? ( x11-libs/libdrm )"
69 -
70 -nobuildit() { use $1 || echo yes ; }
71 -
72 -pkg_setup() {
73 - if [[ ${MERGE_TYPE} != binary ]]; then
74 - tc-export CC
75 - fi
76 -}
77 -
78 -src_compile() {
79 - emake docs
80 - NO_DBUS=$(nobuildit dbus) \
81 - NO_VSYNC_DRM=$(nobuildit drm) \
82 - NO_VSYNC_OPENGL=$(nobuildit opengl) \
83 - NO_REGEX_PCRE=$(nobuildit pcre) \
84 - emake compton
85 -}
86 -
87 -src_install() {
88 - NO_DBUS=$(nobuildit dbus) \
89 - NO_VSYNC_DRM=$(nobuildit drm) \
90 - NO_VSYNC_OPENGL=$(nobuildit opengl) \
91 - NO_REGEX_PCRE=$(nobuildit pcre) \
92 - default
93 - docinto examples
94 - dodoc compton.sample.conf dbus-examples/*
95 - python_foreach_impl python_newscript bin/compton-convgen.py compton-convgen
96 -}