Received: by mail.netbsd.org (Postfix, from userid 605) id 6B7F084E8F; Thu, 25 Aug 2022 19:52:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A3B4884E63 for ; Thu, 25 Aug 2022 19:52:00 +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 7jSqRvu-NWPM for ; Thu, 25 Aug 2022 19:52:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0729384CF8 for ; Thu, 25 Aug 2022 19:52:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF021F9EA; Thu, 25 Aug 2022 19:51:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1661457119262690" MIME-Version: 1.0 Date: Thu, 25 Aug 2022 19:51:59 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/pkgtools/url2pkg To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20220825195159.EF021F9EA@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1661457119262690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Aug 25 19:51:59 UTC 2022 Modified Files: pkgsrc/pkgtools/url2pkg: Makefile PLIST pkgsrc/pkgtools/url2pkg/files/python/setuptools: __init__.py Added Files: pkgsrc/pkgtools/url2pkg/files/python/setuptools/command: test.py Log Message: pkgtools/url2pkg: support Python with setuptools.command.test Needed for www/py-pook 1.0.2. To generate a diff of this commit: cvs rdiff -u -r1.128 -r1.129 pkgsrc/pkgtools/url2pkg/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/pkgtools/url2pkg/PLIST cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py cvs rdiff -u -r0 -r1.1 \ pkgsrc/pkgtools/url2pkg/files/python/setuptools/command/test.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1661457119262690 Content-Disposition: inline Content-Length: 2900 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/url2pkg/Makefile diff -u pkgsrc/pkgtools/url2pkg/Makefile:1.128 pkgsrc/pkgtools/url2pkg/Makefile:1.129 --- pkgsrc/pkgtools/url2pkg/Makefile:1.128 Tue Jul 26 21:50:10 2022 +++ pkgsrc/pkgtools/url2pkg/Makefile Thu Aug 25 19:51:59 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.128 2022/07/26 21:50:10 rillig Exp $ +# $NetBSD: Makefile,v 1.129 2022/08/25 19:51:59 rillig Exp $ -PKGNAME= url2pkg-22.2.0 +PKGNAME= url2pkg-22.2.1 CATEGORIES= pkgtools MAINTAINER= rillig@NetBSD.org Index: pkgsrc/pkgtools/url2pkg/PLIST diff -u pkgsrc/pkgtools/url2pkg/PLIST:1.10 pkgsrc/pkgtools/url2pkg/PLIST:1.11 --- pkgsrc/pkgtools/url2pkg/PLIST:1.10 Sat Jul 16 08:59:38 2022 +++ pkgsrc/pkgtools/url2pkg/PLIST Thu Aug 25 19:51:59 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2022/07/16 08:59:38 rillig Exp $ +@comment $NetBSD: PLIST,v 1.11 2022/08/25 19:51:59 rillig Exp $ bin/url2pkg lib/url2pkg/ExtUtils/MakeMaker.pm lib/url2pkg/Module/Build.pm @@ -11,6 +11,7 @@ lib/url2pkg/python/setuptools/command/__ lib/url2pkg/python/setuptools/command/build_ext.py lib/url2pkg/python/setuptools/command/install.py lib/url2pkg/python/setuptools/command/sdist.py +lib/url2pkg/python/setuptools/command/test.py lib/url2pkg/python/setuptools/dist.py lib/url2pkg/python/url2pkg.py man/man8/url2pkg.8 Index: pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py diff -u pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py:1.1 pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py:1.2 --- pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py:1.1 Sat Jul 16 08:59:39 2022 +++ pkgsrc/pkgtools/url2pkg/files/python/setuptools/__init__.py Thu Aug 25 19:51:59 2022 @@ -1,4 +1,4 @@ -# $NetBSD: __init__.py,v 1.1 2022/07/16 08:59:39 rillig Exp $ +# $NetBSD: __init__.py,v 1.2 2022/08/25 19:51:59 rillig Exp $ # # This is a drop-in replacement for the setuptools Python module. Instead # of actually searching for the dependencies, it extracts the dependency @@ -26,6 +26,10 @@ def find_packages(where='.', exclude=(), return [] +# used by pkgsrc package www/py-pook 1.0.2 +class Command: + pass + # used by pkgsrc package devel/py-pysha3 1.0.2 # used by pkgsrc package wip/py-torch 1.12.0 class Extension: Added files: Index: pkgsrc/pkgtools/url2pkg/files/python/setuptools/command/test.py diff -u /dev/null pkgsrc/pkgtools/url2pkg/files/python/setuptools/command/test.py:1.1 --- /dev/null Thu Aug 25 19:51:59 2022 +++ pkgsrc/pkgtools/url2pkg/files/python/setuptools/command/test.py Thu Aug 25 19:51:59 2022 @@ -0,0 +1,13 @@ +# $NetBSD: test.py,v 1.1 2022/08/25 19:51:59 rillig Exp $ +# +# Fake implementation of setuptools.command.test. +# +# https://github.com/pypa/setuptools/blob/main/setuptools/command/test.py + +# used by pkgsrc package www/py-pook 1.0.2 + +from setuptools import Command + + +class test(Command): + pass --_----------=_1661457119262690--