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 960071382C5 for ; Wed, 23 Jun 2021 20:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6A0EE090E; Wed, 23 Jun 2021 20:03:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C1B23E090E for ; Wed, 23 Jun 2021 20:03:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CBD18335CD7 for ; Wed, 23 Jun 2021 20:03:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F8AC7A0 for ; Wed, 23 Jun 2021 20:03:16 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1624478534.99d116d5b8d243aa4ed5365cbde05fa9e90bf6eb.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: MANIFEST.in X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 99d116d5b8d243aa4ed5365cbde05fa9e90bf6eb X-VCS-Branch: master Date: Wed, 23 Jun 2021 20:03:16 +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: 086b02a6-d656-4a39-8fc0-46718e59a7c4 X-Archives-Hash: fd6b255d8ae1f03dc0d731d6e84629c0 commit: 99d116d5b8d243aa4ed5365cbde05fa9e90bf6eb Author: Zac Medico gentoo org> AuthorDate: Wed Jun 23 19:42:54 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jun 23 20:02:14 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=99d116d5 MANIFEST.in: include setup.py to fix python -m build It's necessary to include setup.py here so that source distributions built by python -m build ("A simple, correct PEP 517 package builder") will include setup.py. I've deleted portage-3.0.21.tar.gz from PyPi because it was missing the setup.py file. It's not possible to re-upload a new file of the same name, so the portage-3.0.21 release will only have the whl file available for download now: portage-3.0.21-py3-none-any.whl See: https://pypi.org/project/portage/3.0.21/#files Signed-off-by: Zac Medico gentoo.org> MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 4a5248084..7d9ea761a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ +include setup.py + # docs include DEVELOPING include LICENSE