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 BBE95138341 for ; Tue, 18 Oct 2016 19:27:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9213E0B69; Tue, 18 Oct 2016 19:26:52 +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 ADE21E0B69 for ; Tue, 18 Oct 2016 19:26:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 774FE341660 for ; Tue, 18 Oct 2016 19:26:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBC6E24B0 for ; Tue, 18 Oct 2016 19:26:42 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1476818787.2eb521bf0eb6ce9f936f3937755735126ff2ad29.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/keybinder/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/keybinder/keybinder-0.3.0-r201.ebuild X-VCS-Directories: dev-libs/keybinder/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 2eb521bf0eb6ce9f936f3937755735126ff2ad29 X-VCS-Branch: master Date: Tue, 18 Oct 2016 19:26:42 +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: c22fbbd5-6008-4bf1-8e38-381a230dbdd2 X-Archives-Hash: 7bad79c7c026572173691e06b915be27 commit: 2eb521bf0eb6ce9f936f3937755735126ff2ad29 Author: Pacho Ramos gentoo org> AuthorDate: Tue Oct 18 19:19:26 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Oct 18 19:26:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb521bf dev-libs/keybinder: Drop old Package-Manager: portage-2.3.1 dev-libs/keybinder/keybinder-0.3.0-r201.ebuild | 53 -------------------------- 1 file changed, 53 deletions(-) diff --git a/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild b/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild deleted file mode 100644 index 8727375..00000000 --- a/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit eutils python-single-r1 - -DESCRIPTION="A library for registering global keyboard shortcuts" -HOMEPAGE="https://github.com/engla/keybinder" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86" -IUSE="+introspection lua python" - -RDEPEND=">=x11-libs/gtk+-2.20:2 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXrender - introspection? ( dev-libs/gobject-introspection ) - lua? ( >=dev-lang/lua-5.1 ) - python? ( ${PYTHON_DEPS} - >=dev-python/pygobject-2.15.3:2[${PYTHON_USEDEP}] - >=dev-python/pygtk-2.12[${PYTHON_USEDEP}] - )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS NEWS README" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure() { - local myconf - use lua || myconf='--disable-lua' - - econf \ - $(use_enable introspection) \ - $(use_enable python) \ - ${myconf} -} - -src_install() { - default - prune_libtool_files --all -}