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/sxhkd/
Date: Sat, 24 Aug 2019 05:51:05
Message-Id: 1566625846.4c87381169e5da96cc195675eeb651da005ca54a.radhermit@gentoo
1 commit: 4c87381169e5da96cc195675eeb651da005ca54a
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 24 05:48:12 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 24 05:50:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c873811
7
8 x11-misc/sxhkd: version bump to 0.6.1
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 x11-misc/sxhkd/Manifest | 1 +
13 x11-misc/sxhkd/sxhkd-0.6.1.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/x11-misc/sxhkd/Manifest b/x11-misc/sxhkd/Manifest
17 index ceaaf277891..4fc9dce06ff 100644
18 --- a/x11-misc/sxhkd/Manifest
19 +++ b/x11-misc/sxhkd/Manifest
20 @@ -1,2 +1,3 @@
21 DIST sxhkd-0.5.9.tar.gz 34649 BLAKE2B e07d9a7a99cd3ab1436ece589a57023de87c6a1e74ef509e9bfc9db3bcda9680f826dc2edad1474004775cf307b9280dc60e18060a803deb801022c004bf0e8c SHA512 32ee7261b4fa10d5a62a7fa61e689977d12afd654e81123711bda1f006e4b6baa7524352086037594e6ef1989dd8fcb6eddc1114085ee91546a69f6d1146924e
22 DIST sxhkd-0.6.0.tar.gz 34756 BLAKE2B e0bf9cc50893baa345ea0dcfae096b5f76408bf1c5e8b5405a2175f33c6201c14c3683da2202cc2a9eaa07327df484f921863178b464164cdf931ca3a0c21848 SHA512 0ccafa2b29b87dcf6bdcb45b67b8aeb5f70c2855fe99c0cd2b271052cd7b6bbf5186b3ae2da3ae9b411f0766a8ab85a35b3a325442a80527a7c959280d36b46b
23 +DIST sxhkd-0.6.1.tar.gz 34808 BLAKE2B b25ff934d0a7f28b3950152ef800da90c5f990f2efd92e9178fef8a77939dc1ed1bbde55bb5a990c33fd3d0be7490dfb2e799ca56abf3c3c6f20c258169eb100 SHA512 d8cd6166ff7e7bc800ed79c5d63cbdfad4f9824c5a5e19b6a315b2ec570295150600651376265932f5fde8b6127f629a553337c6454a1c78c62b3395aaeb55a2
24
25 diff --git a/x11-misc/sxhkd/sxhkd-0.6.1.ebuild b/x11-misc/sxhkd/sxhkd-0.6.1.ebuild
26 new file mode 100644
27 index 00000000000..72d597e8986
28 --- /dev/null
29 +++ b/x11-misc/sxhkd/sxhkd-0.6.1.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit toolchain-funcs systemd
36 +
37 +DESCRIPTION="Simple X hotkey daemon"
38 +HOMEPAGE="https://github.com/baskerville/sxhkd/"
39 +SRC_URI="https://github.com/baskerville/sxhkd/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +RDEPEND="x11-libs/libxcb
46 + x11-libs/xcb-util-keysyms"
47 +DEPEND="${RDEPEND}
48 + x11-libs/xcb-util"
49 +
50 +src_compile() {
51 + emake CC="$(tc-getCC)" PREFIX=/usr
52 +}
53 +
54 +src_install() {
55 + emake PREFIX=/usr DESTDIR="${D}" install
56 + systemd_dounit contrib/systemd/${PN}.service
57 +}