From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2A0DD139B2A for ; Sun, 13 Sep 2015 18:49:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF439E089A; Sun, 13 Sep 2015 18:49:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 467DFE089A for ; Sun, 13 Sep 2015 18:49:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5675C340A3B for ; Sun, 13 Sep 2015 18:49:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEF7F187 for ; Sun, 13 Sep 2015 18:49:51 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1442170176.3716fdb64f6349613a360508ed0e995ca6d04b58.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xdotool/Manifest x11-misc/xdotool/xdotool-2.20101012.3049.ebuild X-VCS-Directories: x11-misc/xdotool/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 3716fdb64f6349613a360508ed0e995ca6d04b58 X-VCS-Branch: master Date: Sun, 13 Sep 2015 18:49:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4ce757f9-b62a-42a0-ae98-fffe45834e34 X-Archives-Hash: 2d53806a52ee049938bb60b485aa6193 commit: 3716fdb64f6349613a360508ed0e995ca6d04b58 Author: Manuel Rüger gentoo org> AuthorDate: Sun Sep 13 18:49:36 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Sep 13 18:49:36 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3716fdb6 x11-misc/xdotool: Remove old Package-Manager: portage-2.2.20.1 x11-misc/xdotool/Manifest | 1 - x11-misc/xdotool/xdotool-2.20101012.3049.ebuild | 46 ------------------------- 2 files changed, 47 deletions(-) diff --git a/x11-misc/xdotool/Manifest b/x11-misc/xdotool/Manifest index d1951fd..d90ca0e 100644 --- a/x11-misc/xdotool/Manifest +++ b/x11-misc/xdotool/Manifest @@ -1,2 +1 @@ -DIST xdotool-2.20101012.3049.tar.gz 99573 SHA256 9a9a03701018be6ca82f60c636f37d1749bfb24a5ce6a1f6910fccb67f58b32a DIST xdotool-2.20110530.1.tar.gz 107204 SHA256 e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67 SHA512 0b2f71203c41e320aac152e1376b30bb9f5ea2067572299ad4c32f49b2505566275f0b377b4f443c3520751d71a9b270325cd676e63ee2a153de3213e128f2cb WHIRLPOOL c4bb185e59237917ddeb86d433ca1fbbea1ace2e1cc46c7d949cef748a7765b01300fdd3826537135798a646d4672a1607b6cc60acc7539e46994d974a5e1dad diff --git a/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild b/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild deleted file mode 100644 index fd16023..0000000 --- a/x11-misc/xdotool/xdotool-2.20101012.3049.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=2 - -inherit eutils toolchain-funcs flag-o-matic multilib - -DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows" -HOMEPAGE="http://www.semicomplete.com/projects/xdotool/" -SRC_URI="https://semicomplete.googlecode.com/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples" - -DEPEND="x11-libs/libXtst - x11-libs/libX11" -RDEPEND="${DEPEND}" - -# The test wants to manualy start Xvfb, wont use VirtualX and it tries -# to run a full gnome-session. For such a tiny application i consider -# it overkill to rewrite the test scripts to not use it's own X server -# and add a full blown gnome just to run the tests. -RESTRICT="test" - -src_prepare() { - sed -e "s/installheader post-install$/installheader/" \ - -i Makefile || die "sed failed" -} - -src_compile() { - tc-export CC LD - default -} - -src_install() { - emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install || die - - dodoc CHANGELIST README - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/* - fi -}