Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdo/
Date: Tue, 22 Aug 2017 15:18:18
Message-Id: 1503414964.2c3a8709f92c0f5ad765a7714ae7f0765a8ee539.radhermit@gentoo
1 commit: 2c3a8709f92c0f5ad765a7714ae7f0765a8ee539
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 22 15:16:04 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 22 15:16:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c3a8709
7
8 x11-misc/xdo: version bump to 0.5.6
9
10 x11-misc/xdo/Manifest | 1 +
11 x11-misc/xdo/xdo-0.5.6.ebuild | 26 ++++++++++++++++++++++++++
12 2 files changed, 27 insertions(+)
13
14 diff --git a/x11-misc/xdo/Manifest b/x11-misc/xdo/Manifest
15 index d343cb8f406..420526fd596 100644
16 --- a/x11-misc/xdo/Manifest
17 +++ b/x11-misc/xdo/Manifest
18 @@ -1 +1,2 @@
19 +DIST xdo-0.5.6.tar.gz 7191 SHA256 cd2c1a672a02f288cfc08a05a0aadc716a170e27332d9db9d39d1ab7717f3a18 SHA512 0366f1eb473db32909619b9d7059e6528b071d920a3148c6f31b8911fc0cc5e0c9f8de56d95a0dfce29d554c76cdf967438d99c267826416bb03487efb78346d WHIRLPOOL f41ee47df8b26069d34a0f1776664f066f97a268b121f1c276c40535778c060209b8248352502a522afb6b432771fc8bede2186e4d7aebb603a7c4a8d05d29cc
20 DIST xdo-0.5.tar.gz 6853 SHA256 2686cfbe3727586fae770a033731a92abd35146951961a5e0bf781288296566a SHA512 a33a1480d45b641e471a65b93ac6d5b8c1922559370590a49dd27f5ff139ad59484e4c82266f1a0c2e2c8d6d237a56fc7122424d1270f34f7b9ba616fd04e486 WHIRLPOOL d239fda4bc970c04aa03e0815d598a451b633d023a6277a6c1b330d18246ea36899c1e4c1095de3e8a0fc79a67771a674992331028c154347c7edae5ed1e3024
21
22 diff --git a/x11-misc/xdo/xdo-0.5.6.ebuild b/x11-misc/xdo/xdo-0.5.6.ebuild
23 new file mode 100644
24 index 00000000000..785b54546ac
25 --- /dev/null
26 +++ b/x11-misc/xdo/xdo-0.5.6.ebuild
27 @@ -0,0 +1,26 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +inherit toolchain-funcs
33 +
34 +DESCRIPTION="Small X utility to perform elementary actions on windows"
35 +HOMEPAGE="https://github.com/baskerville/xdo/"
36 +SRC_URI="https://github.com/baskerville/xdo/archive/${PV}.tar.gz -> ${P}.tar.gz"
37 +
38 +LICENSE="BSD-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +
42 +DEPEND="x11-libs/libxcb
43 + x11-libs/xcb-util
44 + x11-libs/xcb-util-wm"
45 +RDEPEND="${DEPEND}"
46 +
47 +src_compile() {
48 + emake CC="$(tc-getCC)" PREFIX=/usr
49 +}
50 +
51 +src_install() {
52 + emake PREFIX=/usr DESTDIR="${D}" install
53 +}