Received: by mail.netbsd.org (Postfix, from userid 605) id C0BB084DA5; Wed, 15 Jun 2022 22:25:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0456984D36 for ; Wed, 15 Jun 2022 22:25:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ZEeGaZicKh2S for ; Wed, 15 Jun 2022 22:25:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4DF1184C71 for ; Wed, 15 Jun 2022 22:25:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74E80FB1A; Wed, 15 Jun 2022 22:26:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655332005175600" MIME-Version: 1.0 Date: Wed, 15 Jun 2022 22:26:45 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/doc/guide/files To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20220615222645.74E80FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655332005175600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Wed Jun 15 22:26:45 UTC 2022 Modified Files: pkgsrc/doc/guide/files: creating.xml Log Message: guide/creating: Clarify Python naming Specify that PKGNAME should match "pip install" for things in PyPi. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/doc/guide/files/creating.xml Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655332005175600 Content-Disposition: inline Content-Length: 942 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/guide/files/creating.xml diff -u pkgsrc/doc/guide/files/creating.xml:1.36 pkgsrc/doc/guide/files/creating.xml:1.37 --- pkgsrc/doc/guide/files/creating.xml:1.36 Sun Feb 6 21:21:08 2022 +++ pkgsrc/doc/guide/files/creating.xml Wed Jun 15 22:26:45 2022 @@ -1,4 +1,4 @@ - + Creating a new pkgsrc package from scratch @@ -187,7 +187,10 @@ to include ../../lang/p DISTNAME= foopymodule-1.2.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} - + +For software in PyPi, the name should match what PyPi specifies for +"pip install software". + If it is an application, include ../../lang/python/application.mk. --_----------=_1655332005175600--