Received: by mail.netbsd.org (Postfix, from userid 605) id D8E8284D6F; Tue, 2 May 2023 16:34:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0EADE84D68 for ; Tue, 2 May 2023 16:34:18 +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 k0kQ8Mtgzkpj for ; Tue, 2 May 2023 16:34:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 515DF84C13 for ; Tue, 2 May 2023 16:34:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4597BFA87; Tue, 2 May 2023 16:34:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168304525773460" MIME-Version: 1.0 Date: Tue, 2 May 2023 16:34:17 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-blosxom To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230502163417.4597BFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168304525773460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue May 2 16:34:17 UTC 2023 Modified Files: pkgsrc/www/py-blosxom: Makefile Log Message: py-blosxom: remove two build dependencies that are not actually used Same PLIST before and after. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/www/py-blosxom/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168304525773460 Content-Disposition: inline Content-Length: 1268 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-blosxom/Makefile diff -u pkgsrc/www/py-blosxom/Makefile:1.29 pkgsrc/www/py-blosxom/Makefile:1.30 --- pkgsrc/www/py-blosxom/Makefile:1.29 Tue Jan 4 20:55:16 2022 +++ pkgsrc/www/py-blosxom/Makefile Tue May 2 16:34:17 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2022/01/04 20:55:16 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2023/05/02 16:34:17 wiz Exp $ PYBLOXSOMVERS= 1.5.3 DISTNAME= pyblosxom-${PYBLOXSOMVERS} @@ -9,8 +9,7 @@ MASTER_SITES= http://pyblosxom.github.co MAINTAINER= hauke@NetBSD.org HOMEPAGE= https://pyblosxom.github.com/ -COMMENT= PyBlosxom is a lightweight file-based weblog system - +COMMENT= Lightweight file-based weblog system LICENSE= mit DIST_SUBDIR= ${DISTNAME} # upstream reissued tarball with no changes @@ -21,8 +20,8 @@ DOC_SUBDIR= share/doc/pyblosxom DOCDIR= ${PREFIX}/${DOC_SUBDIR} DOCFILES= AUTHORS INSTALL LICENSE README.rst UPGRADE WHATSNEW -BUILD_DEPENDS+= ${PYPKGPREFIX}-pygments<2.6:../../textproc/py-pygments25 -BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils>=0.12:../../textproc/py-docutils +#BUILD_DEPENDS+= ${PYPKGPREFIX}-pygments<2.6:../../textproc/py-pygments25 +#BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils>=0.12:../../textproc/py-docutils INSTALLATION_DIRS= ${DOC_SUBDIR} --_----------=_168304525773460--