Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=vLyqW8Om; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=yozV5JE7 Received: by mail.netbsd.org (Postfix, from userid 605) id 63F2384F76; Wed, 15 May 2024 08:11:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715760702; bh=DuG5T9H1VA/xtY0N6IztmT8HaNZl82sfTqAwu3MWTOs=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=vLyqW8OmwZH2m7HgsYnEC8h/0jmNEW++G0o42cUNpNAWsduDP5MLGfbDA5w5ssSbk /GKrmBzOqxPq/2sAc9fgw0NOrsslXf9oG/3wIzBSKSZk5WWSQzOqEMVvB88KSemI/Q xrCRHjaXHlw0YUp8ia9dWiGd86JMHhecaqhJywCE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5429B84F73 for ; Wed, 15 May 2024 08:11:41 +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 ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id rXWq86OqHl2j for ; Wed, 15 May 2024 08:11:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B102284F52 for ; Wed, 15 May 2024 08:11:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715760700; bh=DuG5T9H1VA/xtY0N6IztmT8HaNZl82sfTqAwu3MWTOs=; h=Date:From:Subject:To:Reply-To; b=yozV5JE7LrQ7ftfAbDDyHJgkAFDCkxGNXM0x6QiOjXBsOsVTmr9NvGV4jZXqX2Z6+ K5z8JBwTwcEmDxvJE7wPssixKcv5xMglBJ4XK7eB1Q7bDHf8mUyLayIGk5rbawcbKj PcsgyiGpwT+JWLf9a9HbvKQmzYPO9SRRU4cxVTNw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id A8018FA2C; Wed, 15 May 2024 08:11:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171576070030630" MIME-Version: 1.0 Date: Wed, 15 May 2024 08:11:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-poetry-plugin-export To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240515081140.A8018FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171576070030630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed May 15 08:11:40 UTC 2024 Modified Files: pkgsrc/devel/py-poetry-plugin-export: Makefile distinfo Log Message: py-poetry-plugin-export: updated to 1.8.0 1.8.0 Changed Relax the constraint on poetry and poetry-core to allow (future) 2.* versions. Fixed Fix an issue where editable installs where not exported correctly To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-poetry-plugin-export/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-poetry-plugin-export/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171576070030630 Content-Disposition: inline Content-Length: 2445 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-poetry-plugin-export/Makefile diff -u pkgsrc/devel/py-poetry-plugin-export/Makefile:1.9 pkgsrc/devel/py-poetry-plugin-export/Makefile:1.10 --- pkgsrc/devel/py-poetry-plugin-export/Makefile:1.9 Wed Mar 20 11:40:05 2024 +++ pkgsrc/devel/py-poetry-plugin-export/Makefile Wed May 15 08:11:40 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2024/03/20 11:40:05 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2024/05/15 08:11:40 adam Exp $ -DISTNAME= poetry_plugin_export-1.7.1 +DISTNAME= poetry_plugin_export-1.8.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/g} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/poetry-plugin-export/} @@ -10,8 +10,8 @@ HOMEPAGE= https://python-poetry.org/ COMMENT= Poetry plugin to export the dependencies to various formats LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.6.0:../../devel/py-poetry-core -TEST_DEPENDS+= ${PYPKGPREFIX}-poetry>=1.5.0:../../devel/py-poetry +DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.7.0:../../devel/py-poetry-core +TEST_DEPENDS+= ${PYPKGPREFIX}-poetry>=1.8.0:../../devel/py-poetry TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=4.0:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=3.9:../../devel/py-test-mock TEST_DEPENDS+= ${PYPKGPREFIX}-test-randomly>=3.12:../../devel/py-test-randomly Index: pkgsrc/devel/py-poetry-plugin-export/distinfo diff -u pkgsrc/devel/py-poetry-plugin-export/distinfo:1.5 pkgsrc/devel/py-poetry-plugin-export/distinfo:1.6 --- pkgsrc/devel/py-poetry-plugin-export/distinfo:1.5 Wed Mar 20 11:40:05 2024 +++ pkgsrc/devel/py-poetry-plugin-export/distinfo Wed May 15 08:11:40 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2024/03/20 11:40:05 wiz Exp $ +$NetBSD: distinfo,v 1.6 2024/05/15 08:11:40 adam Exp $ -BLAKE2s (poetry_plugin_export-1.7.1.tar.gz) = 805b2f8c5e3353e0933679c14ab900bba023f76f0b0c77fcea6251941ac73206 -SHA512 (poetry_plugin_export-1.7.1.tar.gz) = d472d8e4d6eb803587722854be912009a9bc0a8f86ee0e3ef0046f385ed59236af229109dae85198e3a205702cff86780576939e518fa797f3e5093537a0d2f1 -Size (poetry_plugin_export-1.7.1.tar.gz) = 29656 bytes +BLAKE2s (poetry_plugin_export-1.8.0.tar.gz) = c0ebe493f89995c89d16a6f3ad61dbcada2ddb2e00a402b999bc85c92797f190 +SHA512 (poetry_plugin_export-1.8.0.tar.gz) = 90cbf0e79787611a4d78c6ce637d4087d375aa25e65489d770d13f2a769d9919d76512b3fad70073073a83fe41ec42a8925c8b27983d84458007356b3ec8409d +Size (poetry_plugin_export-1.8.0.tar.gz) = 29840 bytes --_----------=_171576070030630--