pkgsrc-Changes archive

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

CVS commit: pkgsrc/comms/py-esptool



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Apr 15 15:42:11 UTC 2025

Modified Files:
        pkgsrc/comms/py-esptool: Makefile PLIST distinfo

Log Message:
py-esptool: updated to 4.8.1

4.8.1

packaging: Fixed failing esptool imports on Windows
packaging: Fixed unwanted Python scripts being included in the distribution
ESP32-C2: Fixed ECO4 magic number


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/comms/py-esptool/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/comms/py-esptool/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/comms/py-esptool/distinfo

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

Modified files:

Index: pkgsrc/comms/py-esptool/Makefile
diff -u pkgsrc/comms/py-esptool/Makefile:1.17 pkgsrc/comms/py-esptool/Makefile:1.18
--- pkgsrc/comms/py-esptool/Makefile:1.17       Mon Nov 11 07:27:54 2024
+++ pkgsrc/comms/py-esptool/Makefile    Tue Apr 15 15:42:11 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2024/11/11 07:27:54 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2025/04/15 15:42:11 adam Exp $
 
-DISTNAME=      esptool-4.8.0
+DISTNAME=      esptool-4.8.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    comms python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=e/esptool/}
@@ -10,22 +10,20 @@ HOMEPAGE=   https://github.com/espressif/e
 COMMENT=       Firmware tool for ESP8266/ESP32
 LICENSE=       gnu-gpl-v2
 
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
-DEPENDS+=      ${PYPKGPREFIX}-bitstring>=3.1.6:../../devel/py-bitstring
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
+DEPENDS+=      ${PYPKGPREFIX}-argcomplete>=3:../../devel/py-argcomplete
+DEPENDS+=      ${PYPKGPREFIX}-bitstring>=4.2.1:../../devel/py-bitstring
 DEPENDS+=      ${PYPKGPREFIX}-ecdsa>=0.16.0:../../security/py-ecdsa
 DEPENDS+=      ${PYPKGPREFIX}-intelhex-[0-9]*:../../devel/py-intelhex
 DEPENDS+=      ${PYPKGPREFIX}-reedsolo>=1.5.3:../../converters/py-reedsolo
-DEPENDS+=      ${PYPKGPREFIX}-serial>=3.0:../../comms/py-serial
+DEPENDS+=      ${PYPKGPREFIX}-serial>=3.3:../../comms/py-serial
 DEPENDS+=      ${PYPKGPREFIX}-yaml>=5.1:../../textproc/py-yaml
 
-PYTHON_VERSIONED_DEPENDENCIES+=        cryptography
-
 USE_LANGUAGES= # none
 
 PYTHON_SELF_CONFLICT=  yes
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
-.include "../../lang/python/wheel.mk"
+PYTHON_VERSIONED_DEPENDENCIES+=        cryptography
 .include "../../lang/python/versioned_dependencies.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/comms/py-esptool/PLIST
diff -u pkgsrc/comms/py-esptool/PLIST:1.9 pkgsrc/comms/py-esptool/PLIST:1.10
--- pkgsrc/comms/py-esptool/PLIST:1.9   Sat Sep 21 13:19:49 2024
+++ pkgsrc/comms/py-esptool/PLIST       Tue Apr 15 15:42:11 2025
@@ -1,8 +1,13 @@
-@comment $NetBSD: PLIST,v 1.9 2024/09/21 13:19:49 gdt Exp $
+@comment $NetBSD: PLIST,v 1.10 2025/04/15 15:42:11 adam Exp $
 bin/esp_rfc2217_server.py
 bin/espefuse.py
 bin/espsecure.py
 bin/esptool.py
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/esp_rfc2217_server/__init__.py
 ${PYSITELIB}/esp_rfc2217_server/__init__.pyc
 ${PYSITELIB}/esp_rfc2217_server/__init__.pyo
@@ -260,11 +265,6 @@ ${PYSITELIB}/espsecure/esp_hsm_sign/__in
 ${PYSITELIB}/espsecure/esp_hsm_sign/exceptions.py
 ${PYSITELIB}/espsecure/esp_hsm_sign/exceptions.pyc
 ${PYSITELIB}/espsecure/esp_hsm_sign/exceptions.pyo
-${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
-${PYSITELIB}/${WHEEL_INFODIR}/METADATA
-${PYSITELIB}/${WHEEL_INFODIR}/RECORD
-${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
-${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/esptool/__init__.py
 ${PYSITELIB}/esptool/__init__.pyc
 ${PYSITELIB}/esptool/__init__.pyo

Index: pkgsrc/comms/py-esptool/distinfo
diff -u pkgsrc/comms/py-esptool/distinfo:1.12 pkgsrc/comms/py-esptool/distinfo:1.13
--- pkgsrc/comms/py-esptool/distinfo:1.12       Sat Sep 21 13:19:49 2024
+++ pkgsrc/comms/py-esptool/distinfo    Tue Apr 15 15:42:11 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2024/09/21 13:19:49 gdt Exp $
+$NetBSD: distinfo,v 1.13 2025/04/15 15:42:11 adam Exp $
 
-BLAKE2s (esptool-4.8.0.tar.gz) = 120a360cd699ebf85b51d44eda8858a85e475edc1dfce97d370b7f5d891696ab
-SHA512 (esptool-4.8.0.tar.gz) = d4c34c73a2d942f29f3ac7072afd4f2f2d4c0e5c42d898f32f753090d6c8f899e282c2e807767e484669d39ea859aedf56d063d6e639b67d4b3b1c39cf87103d
-Size (esptool-4.8.0.tar.gz) = 409538 bytes
+BLAKE2s (esptool-4.8.1.tar.gz) = 202045bc330c4cd76c2d4e26fcb1fb9211cc2ece7899f9598bb8bcfe4dabe307
+SHA512 (esptool-4.8.1.tar.gz) = 584d73d2ca501194db782cdb1bc3655e8f7655c4dcbf461877900dc5e0f85934b97712ce9be908d8ee44d8bcca233c6cfc91e63e54305bc9bc08d565eb515b5a
+Size (esptool-4.8.1.tar.gz) = 409512 bytes



Home | Main Index | Thread Index | Old Index