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 4F90D158092 for ; Fri, 10 Jun 2022 14:30:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 120FDE095D; Fri, 10 Jun 2022 14:30:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 EADAEE095D for ; Fri, 10 Jun 2022 14:30:13 +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 2ECFC34173F for ; Fri, 10 Jun 2022 14:30:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 647164FF for ; Fri, 10 Jun 2022 14:30:11 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1654871400.d5731755018dc3548022aa0592012c928b1973d3.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/check-manifest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/check-manifest/Manifest dev-python/check-manifest/check-manifest-0.48.ebuild dev-python/check-manifest/metadata.xml X-VCS-Directories: dev-python/check-manifest/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: d5731755018dc3548022aa0592012c928b1973d3 X-VCS-Branch: master Date: Fri, 10 Jun 2022 14:30:11 +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: 0c97b2f2-3631-4e6f-a587-fb095430a127 X-Archives-Hash: 4bfdee5f2e75b23a254fec667b3a5fc4 commit: d5731755018dc3548022aa0592012c928b1973d3 Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Jun 10 14:08:57 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Jun 10 14:30:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5731755 dev-python/check-manifest: import from ::guru Closes: https://bugs.gentoo.org/848147 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/check-manifest/Manifest | 1 + .../check-manifest/check-manifest-0.48.ebuild | 37 ++++++++++++++++++++++ dev-python/check-manifest/metadata.xml | 16 ++++++++++ 3 files changed, 54 insertions(+) diff --git a/dev-python/check-manifest/Manifest b/dev-python/check-manifest/Manifest new file mode 100644 index 000000000000..3b26630be303 --- /dev/null +++ b/dev-python/check-manifest/Manifest @@ -0,0 +1 @@ +DIST check-manifest-0.48.tar.gz 34732 BLAKE2B 9142ec4b4fb4ea96662ae5f1335127b2adb2c148e29d287384335e4b15f82597451bd7cfde856e80c485e00de20bd5591551b0e0a8446870c57d7ea3eb658708 SHA512 79df1ef54e2af669ce08b87d3ca9eb58bc02c6541687be11b270a30f83d89982583a470aff2c6bde0454476b27258c268cabfbb0f90c1188212375d0f95328d9 diff --git a/dev-python/check-manifest/check-manifest-0.48.ebuild b/dev-python/check-manifest/check-manifest-0.48.ebuild new file mode 100644 index 000000000000..2b989bb74fbb --- /dev/null +++ b/dev-python/check-manifest/check-manifest-0.48.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Tool to check the completeness of MANIFEST.in for Python packages" +HOMEPAGE=" + https://github.com/mgedmin/check-manifest + https://pypi.org/project/check-manifest/ +" +SRC_URI="https://github.com/mgedmin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/build[${PYTHON_USEDEP}] + dev-python/tomli[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +EPYTEST_DESELECT=( + # Need internet + tests.py::Tests::test_build_sdist_pep517_isolated +) + +distutils_enable_tests pytest diff --git a/dev-python/check-manifest/metadata.xml b/dev-python/check-manifest/metadata.xml new file mode 100644 index 000000000000..5257512406a0 --- /dev/null +++ b/dev-python/check-manifest/metadata.xml @@ -0,0 +1,16 @@ + + + + + + python@gentoo.org + + + mgedmin/check-manifest + check-manifest + + + Are you a Python developer? Have you uploaded packages to the Python Package Index? Have you accidentally uploaded broken packages with some files missing? If so, check-manifest is for you. + + +