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 41E21158095 for ; Fri, 24 Jun 2022 10:21:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADC0CE088F; Fri, 24 Jun 2022 10:21:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 90EA9E0894 for ; Fri, 24 Jun 2022 10:21:47 +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 8AFB43419A6 for ; Fri, 24 Jun 2022 10:21:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A54CF512 for ; Fri, 24 Jun 2022 10:21:44 +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: <1656066099.715345b04b9827e8a27baee425ad694d145cf4ed.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/munch/files/, dev-python/munch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/munch/files/munch-2.5.0-revert-pbr.patch dev-python/munch/munch-2.5.0-r1.ebuild X-VCS-Directories: dev-python/munch/files/ dev-python/munch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 715345b04b9827e8a27baee425ad694d145cf4ed X-VCS-Branch: master Date: Fri, 24 Jun 2022 10:21:44 +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: a0c5563c-93cc-4318-9eb2-c9c2fdedacae X-Archives-Hash: 337ce6f4e7029487b1cbc572cb40bf5f commit: 715345b04b9827e8a27baee425ad694d145cf4ed Author: Michał Górny gentoo org> AuthorDate: Fri Jun 24 09:46:56 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 24 10:21:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=715345b0 dev-python/munch: Remove old Signed-off-by: Michał Górny gentoo.org> .../munch/files/munch-2.5.0-revert-pbr.patch | 39 ---------------------- dev-python/munch/munch-2.5.0-r1.ebuild | 32 ------------------ 2 files changed, 71 deletions(-) diff --git a/dev-python/munch/files/munch-2.5.0-revert-pbr.patch b/dev-python/munch/files/munch-2.5.0-revert-pbr.patch deleted file mode 100644 index 450020cc2c19..000000000000 --- a/dev-python/munch/files/munch-2.5.0-revert-pbr.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/setup.py b/setup.py -index 31f229c..9046e38 100644 ---- a/setup.py -+++ b/setup.py -@@ -1,9 +1,29 @@ --from setuptools import setup -- -+from setuptools import setup, find_packages - - setup( -- setup_requires=['pbr>=3.0', 'setuptools>=17.1'], -- pbr=True, -- long_description_content_type='text/markdown; charset=UTF-8', -+ name="munch", -+ version=__version__, -+ description="A dot-accessible dictionary (a la JavaScript objects).", -+ url="http://github.com/Infinidat/munch", -+ author="Rotem Yaari", -+ author_email="vmalloc@gmail.com", -+ install_requires=[ -+ 'six', -+ ], -+ packages=find_packages(exclude=["tests"]), - keywords=['munch', 'dict', 'mapping', 'container', 'collection'], -+ classifiers=[ -+ 'Development Status :: 5 - Production/Stable', -+ 'Intended Audience :: Developers', -+ 'Operating System :: OS Independent', -+ 'Programming Language :: Python', -+ "Programming Language :: Python :: 2.7", -+ "Programming Language :: Python :: 3.5", -+ "Programming Language :: Python :: 3.6", -+ 'Topic :: Software Development', -+ 'Topic :: Software Development :: Libraries', -+ 'Topic :: Utilities', -+ 'License :: OSI Approved :: MIT License', -+ ], -+ license='MIT', - ) diff --git a/dev-python/munch/munch-2.5.0-r1.ebuild b/dev-python/munch/munch-2.5.0-r1.ebuild deleted file mode 100644 index ef1adba8f2dc..000000000000 --- a/dev-python/munch/munch-2.5.0-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="A dot-accessible dictionary (a la JavaScript objects)" -HOMEPAGE="https://github.com/Infinidat/munch" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" -SLOT="0" - -BDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - test? ( >=dev-python/pyyaml-5.1[${PYTHON_USEDEP}] ) -" - -PATCHES=( - "${FILESDIR}/munch-2.5.0-revert-pbr.patch" -) - -distutils_enable_tests pytest - -python_prepare_all() { - distutils-r1_python_prepare_all - - sed -i "s:__version__:'${PV}':" setup.py || die -}