From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1242118-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 876751382C5
	for <garchives@archives.gentoo.org>; Sat, 16 Jan 2021 19:03:24 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 758C3E084A;
	Sat, 16 Jan 2021 19:03:23 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 072D9E084A
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Jan 2021 19:03:23 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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 B6915340DA7
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Jan 2021 19:03:21 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D1F6476
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Jan 2021 19:03:20 +0000 (UTC)
From: "Michał Górny" <mgorny@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, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1610823791.959c521394e5cfb40e73f6af4c174b7502d4b386.mgorny@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.2-r300.ebuild
X-VCS-Directories: dev-libs/keybinder/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 959c521394e5cfb40e73f6af4c174b7502d4b386
X-VCS-Branch: master
Date: Sat, 16 Jan 2021 19:03:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: bdc155e2-87f9-45ca-a1f0-05fa11bfce01
X-Archives-Hash: f0dd348e52f55d3a5c32409c2c2ea452

commit:     959c521394e5cfb40e73f6af4c174b7502d4b386
Author:     David Michael <fedora.dm0 <AT> gmail <DOT> com>
AuthorDate: Sat Jan 16 14:28:05 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 19:03:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959c5213

dev-libs/keybinder: EAPI 7

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/keybinder/keybinder-0.3.2-r300.ebuild | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
index bf14d929fcf..dae19793427 100644
--- a/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
+++ b/dev-libs/keybinder/keybinder-0.3.2-r300.ebuild
@@ -1,12 +1,13 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 MY_P=${PN}-3.0-${PV}
 DESCRIPTION="A library for registering global keyboard shortcuts"
 HOMEPAGE="https://github.com/kupferlauncher/keybinder"
 SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/${PN}-3.0-v${PV}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="3"
@@ -16,12 +17,10 @@ IUSE="+introspection"
 RDEPEND="x11-libs/gtk+:3[X]
 	x11-libs/libX11
 	x11-libs/libXext
-	x11-libs/libXrender
+	x11-libs/libXrender"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
 	introspection? ( dev-libs/gobject-introspection )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
 
 src_configure() {
 	local myconf=(
@@ -39,7 +38,7 @@ src_install() {
 pkg_preinst() {
 	# remove old symlink as otherwise the files will be installed
 	# in the wrong directory
-	if [[ -h ${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0 ]]; then
-		rm "${EROOT%/}/usr/share/gtk-doc/html/keybinder-3.0" || die
+	if [[ -h ${EROOT}/usr/share/gtk-doc/html/keybinder-3.0 ]]; then
+		rm "${EROOT}/usr/share/gtk-doc/html/keybinder-3.0" || die
 	fi
 }