Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/
Date: Sun, 02 Feb 2020 19:38:00
Message-Id: 1580672273.899777c4c99a27b77428f1919a906a83d80990c7.jer@gentoo
1 commit: 899777c4c99a27b77428f1919a906a83d80990c7
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 2 16:09:05 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 2 19:37:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899777c4
7
8 x11-misc/xdotool: Old
9
10 Package-Manager: Portage-2.3.87, Repoman-2.3.20
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-misc/xdotool/Manifest | 1 -
14 x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild | 50 -------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/x11-misc/xdotool/Manifest b/x11-misc/xdotool/Manifest
18 index cccf7358d88..c38e8bdfa60 100644
19 --- a/x11-misc/xdotool/Manifest
20 +++ b/x11-misc/xdotool/Manifest
21 @@ -1,2 +1 @@
22 -DIST xdotool-3.20150503.1.tar.gz 102125 BLAKE2B 3b34b69ab7843d49a5cc76129dca96664b8e548abd01acda03399d06b1a146169c78dff302932000fe72c578be60bc774e3e503980b408cab4bf17d71630151c SHA512 d8eb411490d2f4936d63cd459e3319f76faf6dd415a3c2c68446b5a98d24290794dbffd22fbccfef5acc7d8aec6ce92b2135ecb3e1178607fc7d5b1e1767ede1
23 DIST xdotool-3.20160805.1.tar.gz 105388 BLAKE2B b836bd9c408bc4f7de562a1dd1fe18142155dc486b01912462b6d1cebc5f3f4094a407556c9f50cafb4ca3a17149e6f69303706730aabdaf94abc6d4b817d351 SHA512 e27b1029ee954ea17643ed489a00a1856e5687b03772c0f10a8e50cde3c3c957b57a3ba9890005474a744a228ef4827a83770d6890479c37a1f98f4fd7b1ff6c
24
25 diff --git a/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild b/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild
26 deleted file mode 100644
27 index eebea7adaab..00000000000
28 --- a/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit toolchain-funcs flag-o-matic multilib
37 -
38 -DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows"
39 -HOMEPAGE="https://www.semicomplete.com/projects/xdotool/"
40 -SRC_URI="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm ppc x86"
45 -IUSE="examples"
46 -
47 -RDEPEND="x11-libs/libXtst
48 - x11-libs/libX11
49 - x11-libs/libXinerama
50 - x11-libs/libxkbcommon"
51 -DEPEND="${RDEPEND}"
52 -
53 -# The test wants to manualy start Xvfb, wont use VirtualX and it tries
54 -# to run a full gnome-session. For such a tiny application i consider
55 -# it overkill to rewrite the test scripts to not use it's own X server
56 -# and add a full blown gnome just to run the tests.
57 -RESTRICT="test"
58 -
59 -src_prepare() {
60 - default
61 - sed -i \
62 - -e "s/installheader post-install$/installheader/" \
63 - -e 's:\<pkg-config\>:$(PKG_CONFIG):' \
64 - Makefile || die "sed failed"
65 -}
66 -
67 -src_compile() {
68 - tc-export CC LD PKG_CONFIG
69 - default
70 -}
71 -
72 -src_install() {
73 - emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install
74 -
75 - dodoc CHANGELIST README
76 - if use examples; then
77 - insinto /usr/share/doc/${PF}/examples
78 - doins examples/*
79 - fi
80 -}