pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/finance/py-eth-utils



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Apr 18 11:38:04 UTC 2025

Modified Files:
        pkgsrc/finance/py-eth-utils: Makefile PLIST distinfo

Log Message:
py-eth-utils: updated to 5.3.0

eth-utils v5.3.0 (2025-04-14)

Bugfixes

Replace arg["name"] with arg.get("name") to correctly handle optional names.

Features

Add new methods: to_wei_decimals, and from_wei_decimals which take a number instead of a string
Add CamelModel pydantic model for validating objects and serializing to camelCase when used with by_alias=True, with the general expectation of a well-formed JSON-RPC object.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/finance/py-eth-utils/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/finance/py-eth-utils/PLIST
cvs rdiff -u -r1.14 -r1.15 pkgsrc/finance/py-eth-utils/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/finance/py-eth-utils/Makefile
diff -u pkgsrc/finance/py-eth-utils/Makefile:1.17 pkgsrc/finance/py-eth-utils/Makefile:1.18
--- pkgsrc/finance/py-eth-utils/Makefile:1.17   Tue Feb  4 13:48:01 2025
+++ pkgsrc/finance/py-eth-utils/Makefile        Fri Apr 18 11:38:04 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2025/02/04 13:48:01 adam Exp $
+# $NetBSD: Makefile,v 1.18 2025/04/18 11:38:04 adam Exp $
 
-DISTNAME=      eth_utils-5.2.0
+DISTNAME=      eth_utils-5.3.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
 CATEGORIES=    finance python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=e/eth-utils/}
@@ -10,7 +10,7 @@ HOMEPAGE=     https://github.com/ethereum/et
 COMMENT=       Common utility functions for ethereum codebases
 LICENSE=       mit
 
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=60:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-cytoolz>=0.10.1:../../devel/py-cytoolz
 DEPENDS+=      ${PYPKGPREFIX}-eth-hash>=0.3.1:../../finance/py-eth-hash
 DEPENDS+=      ${PYPKGPREFIX}-eth-typing>=5.0.0:../../finance/py-eth-typing

Index: pkgsrc/finance/py-eth-utils/PLIST
diff -u pkgsrc/finance/py-eth-utils/PLIST:1.4 pkgsrc/finance/py-eth-utils/PLIST:1.5
--- pkgsrc/finance/py-eth-utils/PLIST:1.4       Fri Nov 10 19:01:33 2023
+++ pkgsrc/finance/py-eth-utils/PLIST   Fri Apr 18 11:38:04 2025
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.4 2023/11/10 19:01:33 adam Exp $
-${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+@comment $NetBSD: PLIST,v 1.5 2025/04/18 11:38:04 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/eth_utils/__init__.py
 ${PYSITELIB}/eth_utils/__init__.pyc
@@ -66,6 +66,9 @@ ${PYSITELIB}/eth_utils/numeric.py
 ${PYSITELIB}/eth_utils/numeric.pyc
 ${PYSITELIB}/eth_utils/numeric.pyo
 ${PYSITELIB}/eth_utils/py.typed
+${PYSITELIB}/eth_utils/pydantic.py
+${PYSITELIB}/eth_utils/pydantic.pyc
+${PYSITELIB}/eth_utils/pydantic.pyo
 ${PYSITELIB}/eth_utils/toolz.py
 ${PYSITELIB}/eth_utils/toolz.pyc
 ${PYSITELIB}/eth_utils/toolz.pyo

Index: pkgsrc/finance/py-eth-utils/distinfo
diff -u pkgsrc/finance/py-eth-utils/distinfo:1.14 pkgsrc/finance/py-eth-utils/distinfo:1.15
--- pkgsrc/finance/py-eth-utils/distinfo:1.14   Tue Feb  4 13:48:01 2025
+++ pkgsrc/finance/py-eth-utils/distinfo        Fri Apr 18 11:38:04 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.14 2025/02/04 13:48:01 adam Exp $
+$NetBSD: distinfo,v 1.15 2025/04/18 11:38:04 adam Exp $
 
-BLAKE2s (eth_utils-5.2.0.tar.gz) = 21f597dda0db6373ca65967b7b1f42032100d3aea53c131056910cc3ddc44557
-SHA512 (eth_utils-5.2.0.tar.gz) = 6e9cb7cb547a9d2aa5b5700aa2314cb69dfd44df43b088aaa870a9ba36d7edb9badd26855649d3f38a3e894e73721faa039db73a64530b69b5963307ffd466e0
-Size (eth_utils-5.2.0.tar.gz) = 120366 bytes
+BLAKE2s (eth_utils-5.3.0.tar.gz) = 961cd0b426af90cbb2383949a483525f061e3b8dc55de97b3dc8ac64afcbd68f
+SHA512 (eth_utils-5.3.0.tar.gz) = 1f54c7babda64d24e59d21bc963488da0111d44083e7821dbc83d53e9ed5ac91210e745782f27d0bcd72c6a1477236817124fa791c8dccbe1d24ebd12e1d8dec
+Size (eth_utils-5.3.0.tar.gz) = 123753 bytes



Home | Main Index | Thread Index | Old Index