Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 427461A9239 for ; Mon, 10 Jan 2022 22:43:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 79ECD84D93; Mon, 10 Jan 2022 22:43:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B299384D66 for ; Mon, 10 Jan 2022 22:43:42 +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 6tqUHZQWa6hj for ; Mon, 10 Jan 2022 22:43:41 +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 D225384D4C for ; Mon, 10 Jan 2022 22:43:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C99B5FB24; Mon, 10 Jan 2022 22:43:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641854621259860" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 22:43:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/mitmproxy To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220110224341.C99B5FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641854621259860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 10 22:43:41 UTC 2022 Modified Files: pkgsrc/net/mitmproxy: Makefile PLIST Log Message: mitmproxy: convert to egg.mk To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/net/mitmproxy/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/mitmproxy/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641854621259860 Content-Disposition: inline Content-Length: 1793 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/mitmproxy/Makefile diff -u pkgsrc/net/mitmproxy/Makefile:1.37 pkgsrc/net/mitmproxy/Makefile:1.38 --- pkgsrc/net/mitmproxy/Makefile:1.37 Thu Dec 30 13:05:40 2021 +++ pkgsrc/net/mitmproxy/Makefile Mon Jan 10 22:43:41 2022 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.37 2021/12/30 13:05:40 adam Exp $ +# $NetBSD: Makefile,v 1.38 2022/01/10 22:43:41 wiz Exp $ DISTNAME= mitmproxy-7.0.3 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=mitmproxy/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -51,5 +52,5 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 37 .include "../../lang/python/application.mk" -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/mitmproxy/PLIST diff -u pkgsrc/net/mitmproxy/PLIST:1.18 pkgsrc/net/mitmproxy/PLIST:1.19 --- pkgsrc/net/mitmproxy/PLIST:1.18 Sat Jul 17 14:14:47 2021 +++ pkgsrc/net/mitmproxy/PLIST Mon Jan 10 22:43:41 2022 @@ -1,13 +1,13 @@ -@comment $NetBSD: PLIST,v 1.18 2021/07/17 14:14:47 leot Exp $ +@comment $NetBSD: PLIST,v 1.19 2022/01/10 22:43:41 wiz Exp $ bin/mitmdump bin/mitmproxy bin/mitmweb -${PYSITELIB}/${EGG_FILE}/PKG-INFO -${PYSITELIB}/${EGG_FILE}/SOURCES.txt -${PYSITELIB}/${EGG_FILE}/dependency_links.txt -${PYSITELIB}/${EGG_FILE}/entry_points.txt -${PYSITELIB}/${EGG_FILE}/requires.txt -${PYSITELIB}/${EGG_FILE}/top_level.txt +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/mitmproxy/__init__.py ${PYSITELIB}/mitmproxy/__init__.pyc ${PYSITELIB}/mitmproxy/__init__.pyo --_----------=_1641854621259860--