From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 26705139694 for ; Sun, 26 Mar 2017 17:01:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D833021C039; Sun, 26 Mar 2017 17:01:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B00D321C039 for ; Sun, 26 Mar 2017 17:01:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70F4E34163C for ; Sun, 26 Mar 2017 17:01:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6703F70B7 for ; Sun, 26 Mar 2017 17:01:04 +0000 (UTC) From: "Michael Orlitzky" 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 Orlitzky" Message-ID: <1490547639.cd88be4ccda831de74c8650828c8252a9212d4d0.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/wmctrl/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/wmctrl/wmctrl-1.07-r1.ebuild X-VCS-Directories: x11-misc/wmctrl/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: cd88be4ccda831de74c8650828c8252a9212d4d0 X-VCS-Branch: master Date: Sun, 26 Mar 2017 17:01:04 +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: 13b930f1-fe5d-4d9e-ac69-f234c14bb9c2 X-Archives-Hash: f4b74e17c41d754d56f93e281116c592 commit: cd88be4ccda831de74c8650828c8252a9212d4d0 Author: Michael Orlitzky gentoo org> AuthorDate: Sun Mar 26 17:00:39 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Mar 26 17:00:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd88be4c x11-misc/wmctrl: remove unused version 1.07-r1. Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-misc/wmctrl/wmctrl-1.07-r1.ebuild | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/x11-misc/wmctrl/wmctrl-1.07-r1.ebuild b/x11-misc/wmctrl/wmctrl-1.07-r1.ebuild deleted file mode 100644 index ac96fe4f4f7..00000000000 --- a/x11-misc/wmctrl/wmctrl-1.07-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -DESCRIPTION="command line tool to interact with an EWMH/NetWM compatible X Window Manager" -HOMEPAGE="http://tomas.styblo.name/wmctrl/" -SRC_URI="http://tomas.styblo.name/${PN}/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86 ~x86-linux" -IUSE="" - -RDEPEND=">=dev-libs/glib-2 - x11-libs/libX11 - x11-libs/libXt - x11-libs/libXmu" -DEPEND="${RDEPEND} - virtual/pkgconfig - x11-proto/xproto" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/amd64-Xlib.patch" || die "Patch failed" -} - -src_install () { - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog NEWS README -}