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 571681382C5 for ; Wed, 7 Apr 2021 08:06:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C85B3E09D9; Wed, 7 Apr 2021 08:06:50 +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 EE9DCE09DA for ; Wed, 7 Apr 2021 08:06:46 +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 E7B37335DAB for ; Wed, 7 Apr 2021 08:06:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C3F4702 for ; Wed, 7 Apr 2021 08:06:42 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1617782792.b98629e8da336b3c9a8bf40b6d1868c0349b8864.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/webapp-config/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/webapp-config/webapp-config-1.55-r1.ebuild app-admin/webapp-config/webapp-config-1.55-r2.ebuild app-admin/webapp-config/webapp-config-9999.ebuild X-VCS-Directories: app-admin/webapp-config/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b98629e8da336b3c9a8bf40b6d1868c0349b8864 X-VCS-Branch: master Date: Wed, 7 Apr 2021 08:06: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 63ecea7b-eb67-4d67-b674-c31c184b02e7 X-Archives-Hash: cef2e027ed337502c48b812418d69888 commit: b98629e8da336b3c9a8bf40b6d1868c0349b8864 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 7 08:04:45 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 7 08:06:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b98629e8 app-admin/webapp-config: Bump to EAPI 7 Closes: https://bugs.gentoo.org/756874 Closes: https://bugs.gentoo.org/745879 Signed-off-by: Michał Górny gentoo.org> ...{webapp-config-1.55-r1.ebuild => webapp-config-1.55-r2.ebuild} | 8 ++++---- app-admin/webapp-config/webapp-config-9999.ebuild | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app-admin/webapp-config/webapp-config-1.55-r1.ebuild b/app-admin/webapp-config/webapp-config-1.55-r2.ebuild similarity index 91% rename from app-admin/webapp-config/webapp-config-1.55-r1.ebuild rename to app-admin/webapp-config/webapp-config-1.55-r2.ebuild index 49c4a106875..08e686f810c 100644 --- a/app-admin/webapp-config/webapp-config-1.55-r1.ebuild +++ b/app-admin/webapp-config/webapp-config-1.55-r2.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 prefix @@ -51,12 +52,11 @@ python_install_all() { dodoc AUTHORS doman doc/*.[58] - dohtml doc/*.[58].html } python_test() { - PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \ - || die "Testing failed with ${EPYTHON}" + PYTHONPATH="." "${EPYTHON}" WebappConfig/tests/external.py -v || + die "Testing failed with ${EPYTHON}" } pkg_postinst() { diff --git a/app-admin/webapp-config/webapp-config-9999.ebuild b/app-admin/webapp-config/webapp-config-9999.ebuild index 37cef6a134c..611a6da21ac 100644 --- a/app-admin/webapp-config/webapp-config-9999.ebuild +++ b/app-admin/webapp-config/webapp-config-9999.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 prefix @@ -57,12 +58,11 @@ python_install_all() { dodoc AUTHORS doman doc/*.[58] - dohtml doc/*.[58].html } python_test() { - PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \ - || die "Testing failed with ${EPYTHON}" + PYTHONPATH="." "${EPYTHON}" WebappConfig/tests/external.py -v || + die "Testing failed with ${EPYTHON}" } pkg_postinst() {