From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-929749-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2C3E139085 for <garchives@archives.gentoo.org>; Mon, 6 Feb 2017 10:12:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74DF2E0D29; Mon, 6 Feb 2017 10:12:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55AA2E0D29 for <gentoo-commits@lists.gentoo.org>; Mon, 6 Feb 2017 10:12:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 432B9341586 for <gentoo-commits@lists.gentoo.org>; Mon, 6 Feb 2017 10:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 693C83DC6 for <gentoo-commits@lists.gentoo.org>; Mon, 6 Feb 2017 10:12:08 +0000 (UTC) From: "Michael Palimaka" <kensington@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" <kensington@gentoo.org> Message-ID: <1486375912.50c2f53f347ea0ac231a627fb321bfda4e59bb35.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xdotool/xdotool-3.20150503.1.ebuild X-VCS-Directories: x11-misc/xdotool/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 50c2f53f347ea0ac231a627fb321bfda4e59bb35 X-VCS-Branch: master Date: Mon, 6 Feb 2017 10:12:08 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 220df135-02b3-45b9-9be3-b424ebb1aee3 X-Archives-Hash: 07331d45d7859c5f45329436d7da4f7b commit: 50c2f53f347ea0ac231a627fb321bfda4e59bb35 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com> AuthorDate: Mon Feb 6 09:04:50 2017 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Mon Feb 6 10:11:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c2f53f x11-misc/xdotool: Drop old Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-misc/xdotool/xdotool-3.20150503.1.ebuild | 50 ---------------------------- 1 file changed, 50 deletions(-) diff --git a/x11-misc/xdotool/xdotool-3.20150503.1.ebuild b/x11-misc/xdotool/xdotool-3.20150503.1.ebuild deleted file mode 100644 index 247db09..00000000 --- a/x11-misc/xdotool/xdotool-3.20150503.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 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://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" -IUSE="examples" - -RDEPEND="x11-libs/libXtst - x11-libs/libX11 - x11-libs/libXinerama - x11-libs/libxkbcommon" -DEPEND="${RDEPEND}" - -# 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 -i \ - -e "s/installheader post-install$/installheader/" \ - -e 's:\<pkg-config\>:$(PKG_CONFIG):' \ - Makefile || die "sed failed" -} - -src_compile() { - tc-export CC LD PKG_CONFIG - 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 -}