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 DDCDB158003 for ; Tue, 20 Sep 2022 10:59:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6755E0AA7; Tue, 20 Sep 2022 10:59:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF226E0A9F for ; Tue, 20 Sep 2022 10:59:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C0581340D2F for ; Tue, 20 Sep 2022 10:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2303F5A2 for ; Tue, 20 Sep 2022 10:59:28 +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: <1663671436.47ce5bcc1befd00df617486c13090d96eca2fc2b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ini2toml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ini2toml/ini2toml-0.11.ebuild X-VCS-Directories: dev-python/ini2toml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 47ce5bcc1befd00df617486c13090d96eca2fc2b X-VCS-Branch: master Date: Tue, 20 Sep 2022 10:59:28 +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: 561720f8-1460-4390-9ab8-9d0192870964 X-Archives-Hash: 4e54b185305ba51d91780e1c0c718472 commit: 47ce5bcc1befd00df617486c13090d96eca2fc2b Author: Michał Górny gentoo org> AuthorDate: Tue Sep 20 10:57:16 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 20 10:57:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ce5bcc dev-python/ini2toml: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/ini2toml/ini2toml-0.11.ebuild | 64 -------------------------------- 1 file changed, 64 deletions(-) diff --git a/dev-python/ini2toml/ini2toml-0.11.ebuild b/dev-python/ini2toml/ini2toml-0.11.ebuild deleted file mode 100644 index 16baf50290cb..000000000000 --- a/dev-python/ini2toml/ini2toml-0.11.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{8..11} ) - -inherit distutils-r1 - -DESCRIPTION="Automatically conversion of .ini/.cfg files to TOML equivalents" -HOMEPAGE=" - https://pypi.org/project/ini2toml/ - https://github.com/abravalheri/ini2toml/ -" -SRC_URI=" - https://github.com/abravalheri/ini2toml/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND=" - >=dev-python/packaging-20.7[${PYTHON_USEDEP}] - >=dev-python/tomli-w-0.4.0[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/tomli[${PYTHON_USEDEP}] - dev-python/tomlkit[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - -EPYTEST_DESELECT=( - # pyproject_fmt is not packaged - tests/test_cli.py::test_auto_formatting - - # fails on whitespace/comments/formatting - tests/test_translator.py::test_simple_example - tests/test_translator.py::test_parser_opts - tests/plugins/test_setuptools_pep621.py::test_move_entry_points_and_apply_value_processing - tests/plugins/test_setuptools_pep621.py::test_split_subtables - tests/plugins/test_setuptools_pep621.py::test_entrypoints_and_split_subtables - tests/plugins/test_setuptools_pep621.py::test_handle_dynamic -) - -EPYTEST_IGNORE=( - # configupdater is not packaged - tests/test_examples.py - tests/test_transformations.py - tests/drivers/test_configupdater.py -) - -src_prepare() { - sed -i -e 's:--cov ini2toml --cov-report term-missing::' setup.cfg || die - distutils-r1_src_prepare -}