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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 07B9A15808B for ; Fri, 8 Apr 2022 15:23:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9FA3E0848; Fri, 8 Apr 2022 15:23:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1266CE0848 for ; Fri, 8 Apr 2022 15:23:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FEDF340F26 for ; Fri, 8 Apr 2022 15:23:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DE3F303 for ; Fri, 8 Apr 2022 15:23:09 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1649431383.d43436eade2df2c2481863c3d577390d828c6251.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/notify-webhook/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/notify-webhook/notify-webhook-0.1.0-r1.ebuild dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild X-VCS-Directories: dev-vcs/notify-webhook/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d43436eade2df2c2481863c3d577390d828c6251 X-VCS-Branch: master Date: Fri, 8 Apr 2022 15:23:09 +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: 56198d1d-f942-4f13-96a6-bdc9cf635b83 X-Archives-Hash: 182cce39d42648beddb412ececab983e commit: d43436eade2df2c2481863c3d577390d828c6251 Author: Ulrich Müller gentoo org> AuthorDate: Fri Apr 8 15:22:00 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Apr 8 15:23:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43436ea dev-vcs/notify-webhook: Bump to EAPI 8, fix python eclass usage Closes: https://bugs.gentoo.org/828738 Closes: https://bugs.gentoo.org/832262 Signed-off-by: Ulrich Müller gentoo.org> ...ify-webhook-0.1.0.ebuild => notify-webhook-0.1.0-r1.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild b/dev-vcs/notify-webhook/notify-webhook-0.1.0-r1.ebuild similarity index 79% rename from dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild rename to dev-vcs/notify-webhook/notify-webhook-0.1.0-r1.ebuild index d28f6b8bbff9..ee355547cbda 100644 --- a/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild +++ b/dev-vcs/notify-webhook/notify-webhook-0.1.0-r1.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 PYTHON_COMPAT=( pypy3 ) +inherit python-single-r1 + DESCRIPTION="Git post-receive web hook notifier in Python" HOMEPAGE="https://github.com/metajack/notify-webhook" #COMMIT='c571160f155122446e97bb01c1150b4d14ea69d6' @@ -13,10 +15,10 @@ SRC_URI="https://github.com/metajack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="dev-python/simplejson" -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} ${PYTHON_DEPS}" #MY_P="${PN}-${COMMIT}" #S="${WORKDIR}/${MY_P}"