Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/
Date: Mon, 04 Oct 2021 12:03:18
Message-Id: 1633348986.875e2ca931d4ef9191ca46c7568604f1e2ed1e73.marecki@gentoo
1 commit: 875e2ca931d4ef9191ca46c7568604f1e2ed1e73
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 11:59:40 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 12:03:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=875e2ca9
7
8 x11-misc/xdotool: drop 3.20160805.1
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 x11-misc/xdotool/Manifest | 1 -
13 x11-misc/xdotool/xdotool-3.20160805.1.ebuild | 57 ----------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/x11-misc/xdotool/Manifest b/x11-misc/xdotool/Manifest
17 index eac87a44ba3..45d358a5880 100644
18 --- a/x11-misc/xdotool/Manifest
19 +++ b/x11-misc/xdotool/Manifest
20 @@ -1,2 +1 @@
21 -DIST xdotool-3.20160805.1.tar.gz 105388 BLAKE2B b836bd9c408bc4f7de562a1dd1fe18142155dc486b01912462b6d1cebc5f3f4094a407556c9f50cafb4ca3a17149e6f69303706730aabdaf94abc6d4b817d351 SHA512 e27b1029ee954ea17643ed489a00a1856e5687b03772c0f10a8e50cde3c3c957b57a3ba9890005474a744a228ef4827a83770d6890479c37a1f98f4fd7b1ff6c
22 DIST xdotool-3.20210903.1.tar.gz 115051 BLAKE2B d1be4fc2f5c86991804b63b85c95748dc04098f85a515b3427d980dac3d355133da0408d3e91a39e5363ae6242b02d268a8b5bc014fdd5faf51e43e24fb54176 SHA512 446ba8d354031df6a21957df92220c7dcaae5bacbb8878568a57f31097db72a88701717ec8bcd35cca3f5356bfaf47eb3ed65d2159f03b0c7a7ae5550a9b1dce
23
24 diff --git a/x11-misc/xdotool/xdotool-3.20160805.1.ebuild b/x11-misc/xdotool/xdotool-3.20160805.1.ebuild
25 deleted file mode 100644
26 index b4c2443540b..00000000000
27 --- a/x11-misc/xdotool/xdotool-3.20160805.1.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit toolchain-funcs flag-o-matic multilib
36 -
37 -DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows"
38 -HOMEPAGE="https://www.semicomplete.com/projects/xdotool/"
39 -SRC_URI="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
44 -IUSE="examples"
45 -
46 -RDEPEND="
47 - x11-libs/libXtst
48 - x11-libs/libX11
49 - x11-libs/libXinerama
50 - x11-libs/libxkbcommon
51 -"
52 -DEPEND="
53 - ${RDEPEND}
54 - virtual/pkgconfig
55 - x11-base/xorg-proto
56 -"
57 -
58 -# The test wants to manualy start Xvfb, wont use VirtualX and it tries
59 -# to run a full gnome-session. For such a tiny application i consider
60 -# it overkill to rewrite the test scripts to not use it's own X server
61 -# and add a full blown gnome just to run the tests.
62 -RESTRICT="test"
63 -
64 -src_prepare() {
65 - default
66 -
67 - sed -i \
68 - -e "s/installheader post-install$/installheader/" \
69 - -e 's:\<pkg-config\>:$(PKG_CONFIG):' \
70 - Makefile || die
71 -}
72 -
73 -src_compile() {
74 - tc-export CC LD PKG_CONFIG
75 -
76 - emake PREFIX="${EPREFIX}/usr"
77 -}
78 -
79 -src_install() {
80 - emake PREFIX="${ED}usr" INSTALLMAN="${ED}usr/share/man" INSTALLLIB="${ED}usr/$(get_libdir)" install
81 -
82 - dodoc CHANGELIST README
83 - if use examples; then
84 - dodoc -r examples
85 - fi
86 -}