Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=HeD83pF4; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Vb/sv75n Received: by mail.netbsd.org (Postfix, from userid 605) id F352484EE8; Tue, 14 May 2024 14:37:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715697446; bh=YSBTwfGAbtR1agJYP+QqkQ2QmVNry1L8Djs20zn/L8Y=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=HeD83pF4rLeoMldWIiQNxuWnTRkqtyRrDjfVYvhhUavR7Zk15kfvFyQajCBgbLSyM DeWiWab3S3iZ9YsScU82v/51T+zXUUqoIHxD2pwgvU8NRzRBf6BeHonYPUwxf5RwE3 Z4XoDHyWOAIXCvL5VoxYD7USIeB5a0csSjluEawQ= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E485A84ECD for ; Tue, 14 May 2024 14:37:24 +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 zlyvdy4PWxwP for ; Tue, 14 May 2024 14:37:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A444584D44 for ; Tue, 14 May 2024 14:37:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715697423; bh=YSBTwfGAbtR1agJYP+QqkQ2QmVNry1L8Djs20zn/L8Y=; h=Date:From:Subject:To:Reply-To; b=Vb/sv75n2XfN+zO4mzUvVoektDn7xioxU4Lo8p9fzIT4aGXyCBE+jp816nttYs+bu U36mG/i5X7NwxLc4uQcLj+knFL4OHSluKj5VgcZ+BEho9g/vDaFUmrbKxDO12kBVC0 j7Gw/AGKapUujhsnHfbSTNtt5sOcoCEp8aHC605Q= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 98D9FFA2C; Tue, 14 May 2024 14:37:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715697423291540" MIME-Version: 1.0 Date: Tue, 14 May 2024 14:37:03 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-django-import-export To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240514143703.98D9FFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715697423291540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 14 14:37:03 UTC 2024 Modified Files: pkgsrc/www/py-django-import-export: Makefile distinfo Log Message: py-django-import-export: updated to 4.0.2 4.0.2 (2024-05-13) fix export with custom column name (1821) fix allow column_name to be declared in fields list (1822) fix clash between key_is_id and use_natural_foreign_keys (1824) remove unreachable code (1825) fix issue with widget assignment for custom ForeignKey subclasses (1826) performance: select of valid pks for export restricted to action exports (1827) fix crash on export with custom column name (1828) remove outdated datetime formatting logic (1830) To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/www/py-django-import-export/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/www/py-django-import-export/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715697423291540 Content-Disposition: inline Content-Length: 1796 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-django-import-export/Makefile diff -u pkgsrc/www/py-django-import-export/Makefile:1.26 pkgsrc/www/py-django-import-export/Makefile:1.27 --- pkgsrc/www/py-django-import-export/Makefile:1.26 Mon May 13 09:15:36 2024 +++ pkgsrc/www/py-django-import-export/Makefile Tue May 14 14:37:03 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2024/05/13 09:15:36 adam Exp $ +# $NetBSD: Makefile,v 1.27 2024/05/14 14:37:03 adam Exp $ -DISTNAME= django_import_export-4.0.1 +DISTNAME= django_import_export-4.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/g} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-import-export/} Index: pkgsrc/www/py-django-import-export/distinfo diff -u pkgsrc/www/py-django-import-export/distinfo:1.23 pkgsrc/www/py-django-import-export/distinfo:1.24 --- pkgsrc/www/py-django-import-export/distinfo:1.23 Mon May 13 09:15:36 2024 +++ pkgsrc/www/py-django-import-export/distinfo Tue May 14 14:37:03 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.23 2024/05/13 09:15:36 adam Exp $ +$NetBSD: distinfo,v 1.24 2024/05/14 14:37:03 adam Exp $ -BLAKE2s (django_import_export-4.0.1.tar.gz) = 22982db31672bac310c157102e699edd31750fe3ed8545c21663c1f27e49f762 -SHA512 (django_import_export-4.0.1.tar.gz) = 3d40b75521e693e99704244b8a3209f0a1033fead76d84b81687aac1c6186a30565ab0722a442e8b4a703d068d6d59e4137f6f159c4b780859d6a3922c8f01d4 -Size (django_import_export-4.0.1.tar.gz) = 551153 bytes +BLAKE2s (django_import_export-4.0.2.tar.gz) = df5d5b1aa1e6dcffecf1369aea0c6664c72be76d228ce5ff521b196c7c926ec1 +SHA512 (django_import_export-4.0.2.tar.gz) = c16121f68a05a4259f0ceddac432faddfd9e7c60cd9558e5f234a3f8cba4b1ad203c64a9f78ff89150cf7672a9b9fff0ee201be162fbcd29fcc323ce05edc00a +Size (django_import_export-4.0.2.tar.gz) = 553737 bytes --_----------=_1715697423291540--