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 44D961580B9 for ; Sun, 22 Aug 2021 21:53:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88E33E088B; Sun, 22 Aug 2021 21:53:58 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72FBDE088B for ; Sun, 22 Aug 2021 21:53:58 +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 3293B340D36 for ; Sun, 22 Aug 2021 21:53:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 668A58DC for ; Sun, 22 Aug 2021 21:53:54 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1629669220.c6d092f7ce8a1a487d4e20cd181b5fc30e89813f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quasselgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild X-VCS-Directories: net-irc/quasselgrep/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c6d092f7ce8a1a487d4e20cd181b5fc30e89813f X-VCS-Branch: master Date: Sun, 22 Aug 2021 21:53:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e4ac4642-b634-4845-ac1a-33f51c1cdd45 X-Archives-Hash: 798ea8fd96eb165be36c63dbcb14427d commit: c6d092f7ce8a1a487d4e20cd181b5fc30e89813f Author: Jakov Smolic sartura hr> AuthorDate: Sun Aug 22 21:53:40 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 22 21:53:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d092f7 net-irc/quasselgrep: Port to EAPI 8, fix DISTUTILS_USE_SETUPTOOLS Closes: https://github.com/gentoo/gentoo/pull/22044 Closes: https://bugs.gentoo.org/809128 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild index 2e651cfc5a8..831039aeb81 100644 --- a/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild +++ b/net-irc/quasselgrep/quasselgrep-0_p20200830.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) -PYTHON_REQ_USE=( sqlite ) -DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{8..9} ) +PYTHON_REQ_USE="sqlite" inherit distutils-r1 optfeature @@ -15,14 +14,16 @@ HOMEPAGE="https://github.com/fish-face/quasselgrep" MY_COMMIT="9b6b0bc1252daa6e574363d87d04eebd981215a5" SRC_URI="https://github.com/fish-face/quasselgrep/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${PN}-${MY_COMMIT}" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" LICENSE="GPL-2" SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" -RDEPEND="dev-python/future[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/future[${PYTHON_USEDEP}] dev-python/pycryptodome[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}]" + dev-python/python-dateutil[${PYTHON_USEDEP}] +" pkg_postinst() { optfeature "access postgres db" dev-python/psycopg:2