Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=VHEazeJr; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=C1F38x8z Received: by mail.netbsd.org (Postfix, from userid 605) id 4EC3584D84; Mon, 15 Apr 2024 05:38:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713159516; bh=5kfo+2gGIqul/AP/PbgeLv/k68o9HWCVgIkgffZiTG4=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=VHEazeJrV4NmgLK68Eia+1SCkPq/zRkattAFL+ldr0bpk4cNktHB/SOx2GcOlYiFZ ugtDzSyAw1XDHT7NMV0l56JuTWzhJaCo2eKkdqIF1FvO915FBqKAvEJBb5PBMqrueS 89sbMN0JsGm//mK1Ng6w0P9myI5UpfNneLyINmOE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3DBEA84D4C for ; Mon, 15 Apr 2024 05:38:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id iynfKBLuJ1Kr for ; Mon, 15 Apr 2024 05:38:34 +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 9FA6C84CD9 for ; Mon, 15 Apr 2024 05:38:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713159514; bh=5kfo+2gGIqul/AP/PbgeLv/k68o9HWCVgIkgffZiTG4=; h=Date:From:Subject:To:Reply-To; b=C1F38x8zVim9GxpKVxc+ERCQAcmEGgGgMkgWfUtcE6AQ9p37a0jFoWPJ5reTSrdRj paP/eBQ/v6J3stSEKxPJv3s71FqFntnjSVOR6rLlKMPRMOpHnGaZ2I966OMypxK06R Rjuqyu4QXdKhJIMcKKQExPPKVE1RWmzT3savxHzU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04E6DFA2C; Mon, 15 Apr 2024 05:38:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1713159513254340" MIME-Version: 1.0 Date: Mon, 15 Apr 2024 05:38:33 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-sphinx-automodapi To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240415053834.04E6DFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1713159513254340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 15 05:38:33 UTC 2024 Modified Files: pkgsrc/textproc/py-sphinx-automodapi: Makefile PLIST Log Message: py-sphinx-automodapi: fix PLIST To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/py-sphinx-automodapi/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-sphinx-automodapi/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1713159513254340 Content-Disposition: inline Content-Length: 2187 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=utf-8 Modified files: Index: pkgsrc/textproc/py-sphinx-automodapi/Makefile diff -u pkgsrc/textproc/py-sphinx-automodapi/Makefile:1.7 pkgsrc/textproc/py-sphinx-automodapi/Makefile:1.8 --- pkgsrc/textproc/py-sphinx-automodapi/Makefile:1.7 Tue Apr 9 16:43:21 2024 +++ pkgsrc/textproc/py-sphinx-automodapi/Makefile Mon Apr 15 05:38:33 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2024/04/09 16:43:21 adam Exp $ +# $NetBSD: Makefile,v 1.8 2024/04/15 05:38:33 adam Exp $ DISTNAME= sphinx-automodapi-0.17.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -20,5 +20,9 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 38 +# Filenames with non-ASCII characters are not portable. +post-extract: + ${RM} ${WRKSRC}/sphinx_automodapi/tests/cases/non_ascii/output/api/sphinx_automodapi.tests.example_module.nonascii.* + .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-sphinx-automodapi/PLIST diff -u pkgsrc/textproc/py-sphinx-automodapi/PLIST:1.4 pkgsrc/textproc/py-sphinx-automodapi/PLIST:1.5 --- pkgsrc/textproc/py-sphinx-automodapi/PLIST:1.4 Sun Apr 14 15:44:59 2024 +++ pkgsrc/textproc/py-sphinx-automodapi/PLIST Mon Apr 15 05:38:33 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2024/04/14 15:44:59 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2024/04/15 05:38:33 adam Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.rst ${PYSITELIB}/${WHEEL_INFODIR}/METADATA ${PYSITELIB}/${WHEEL_INFODIR}/RECORD @@ -116,7 +116,6 @@ ${PYSITELIB}/sphinx_automodapi/tests/cas ${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/input/index.rst ${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/output/api/sphinx_automodapi.tests.example_module.functions.add.rst ${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/output/api/sphinx_automodapi.tests.example_module.functions.multiply.rst -${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/output/api/sphinx_automodapi.tests.example_module.nonascii.NonAsciiÄöüßő.rst ${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/output/index.rst.automodapi ${PYSITELIB}/sphinx_automodapi/tests/cases/non_ascii/output/index.rst.automodsumm ${PYSITELIB}/sphinx_automodapi/tests/cases/slots/README.md --_----------=_1713159513254340--