Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/
Date: Tue, 17 Jul 2018 14:15:47
Message-Id: 1531836921.bfaa9f12ebe84877d137b4f37d37512044e00d96.mattst88@gentoo
1 commit: bfaa9f12ebe84877d137b4f37d37512044e00d96
2 Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
3 AuthorDate: Tue Jul 17 00:31:37 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 17 14:15:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfaa9f12
7
8 x11-drivers/xf86-input-libinput: version bump to 0.28.0
9
10 Package-Manager: Portage-2.3.42, Repoman-2.3.9
11
12 x11-drivers/xf86-input-libinput/Manifest | 1 +
13 .../xf86-input-libinput-0.28.0.ebuild | 50 ++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-drivers/xf86-input-libinput/Manifest b/x11-drivers/xf86-input-libinput/Manifest
17 index 80d35bdaec3..1e136185f34 100644
18 --- a/x11-drivers/xf86-input-libinput/Manifest
19 +++ b/x11-drivers/xf86-input-libinput/Manifest
20 @@ -1 +1,2 @@
21 DIST xf86-input-libinput-0.27.1.tar.bz2 373248 BLAKE2B 499c5c1b33f5159374775317777741db361620583f9d647ab5ee63193f5b82ecbbe5c124a447509c6b7de281cf6330f9747032d8bad8c2b1dbbcdd4517cf4f82 SHA512 01379f5d71bf39214c4dff428173512df57fd12e782f3fcde757be923aa0dbf4e010a0395a81bd8e4fb518edc7e05ca1ee64b1e313eb4df5d4990315580609a1
22 +DIST xf86-input-libinput-0.28.0.tar.bz2 374318 BLAKE2B b8629115fce658d9d432c05a983227aa1fa40da51e14c366bc0880b9d7c81c971abcb4c4b60ec37b756efad60be8eef061c0d3dcdd86f4fdb8b56e13f4ed9409 SHA512 4276b6aea87ddc83fa1f5e8d8949e34ad117186a6b5b599549231cb90424cd0fa69f3a4701ce529739c676665bb5c936eb447817c9420511d23bc048f6be92a4
23
24 diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.28.0.ebuild b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.28.0.ebuild
25 new file mode 100644
26 index 00000000000..b3ca6c70ccb
27 --- /dev/null
28 +++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.28.0.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit linux-info
36 +
37 +DESCRIPTION="X.org input driver based on libinput"
38 +HOMEPAGE="https://www.x.org/wiki/ https://cgit.freedesktop.org/"
39 +
40 +if [[ ${PV} == 9999 ]]; then
41 + EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/driver/xf86-input-libinput.git"
42 + inherit autotools git-r3
43 + LIVE_DEPEND=">=x11-misc/util-macros-1.18"
44 +else
45 + SRC_URI="mirror://xorg/driver/${P}.tar.bz2"
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
47 +fi
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +BDEPEND="
54 + virtual/pkgconfig
55 +"
56 +RDEPEND="
57 + >=x11-base/xorg-server-1.10:=
58 + >=dev-libs/libinput-1.5.0:0=
59 +"
60 +DEPEND="
61 + ${LIVE_DEPEND}
62 + ${RDEPEND}
63 + x11-base/xorg-proto
64 +"
65 +
66 +pkg_pretend() {
67 + CONFIG_CHECK="~TIMERFD"
68 + check_extra_config
69 +}
70 +
71 +src_prepare() {
72 + default
73 + [[ ${PV} == 9999 ]] && eautoreconf
74 +}
75 +
76 +src_install() {
77 + default
78 + find "${D}" -name '*.la' -delete || die
79 +}