pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/py-magic-wormhole



Module Name:    pkgsrc
Committed By:   gdt
Date:           Sat Apr  5 20:02:29 UTC 2025

Modified Files:
        pkgsrc/net/py-magic-wormhole: Makefile PLIST distinfo

Log Message:
net/py-magic-wormhole: Update to 0.18.0

## Release 0.18.0 (11-Mar-2025)

* Improve the example to act more like send/receive (#558, @OndrewBot)
* Display a QR code by default for "wormhole send" (#555, @ferada + @meejah)
  This encodes "wormhole-transfer:M-word0-word1" per the spec:
  https://github.com/magic-wormhole/magic-wormhole-protocols/blob/main/uri-scheme.md
* Add sequence diagram
* Support Read the Docs pull-request builds
* Drop support for Python 3.8 (#556)
* Add broken-link checker (#588, https://github.com/Cycloctane)
* Preemptively fix Click 8.2 (#584, @cjwatson)
* Basic support for PEP518 (#579, @SnoopJ)
* Add WORMHOLE_ACCEPT_FILE (#570, @haatveit)

## Release 0.17.0 (23-Oct-2024)

* Bump magic-wormhole-transit-relay to 0.3.1 for testing, and fix (#543)
* Fix test regression under Twisted 24.10.0 (#553)

## Release 0.16.0 (3-Oct-2024)

* Updated to python-spake2 version 0.9
* Removed more Python2-isms


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/py-magic-wormhole/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/py-magic-wormhole/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/py-magic-wormhole/distinfo

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

Modified files:

Index: pkgsrc/net/py-magic-wormhole/Makefile
diff -u pkgsrc/net/py-magic-wormhole/Makefile:1.11 pkgsrc/net/py-magic-wormhole/Makefile:1.12
--- pkgsrc/net/py-magic-wormhole/Makefile:1.11  Thu Sep  5 00:07:18 2024
+++ pkgsrc/net/py-magic-wormhole/Makefile       Sat Apr  5 20:02:29 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2024/09/05 00:07:18 gdt Exp $
+# $NetBSD: Makefile,v 1.12 2025/04/05 20:02:29 gdt Exp $
 
-DISTNAME=      magic-wormhole-0.15.0
+DISTNAME=      magic-wormhole-0.18.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    net python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=m/magic-wormhole/}
@@ -10,29 +10,28 @@ HOMEPAGE=   https://github.com/warner/magi
 COMMENT=       Securely transfer data between computers
 LICENSE=       mit
 
+# in setup.py order
+DEPENDS+=      ${PYPKGPREFIX}-spake2>=0.9:../../security/py-spake2
+DEPENDS+=      ${PYPKGPREFIX}-nacl-[0-9]*:../../security/py-nacl
+DEPENDS+=      ${PYPKGPREFIX}-iterable-io>=1.0.0:../../devel/py-iterable-io
 DEPENDS+=      ${PYPKGPREFIX}-attrs>=16.3.0:../../devel/py-attrs
+DEPENDS+=      ${PYPKGPREFIX}-twisted>=17.5.0:../../net/py-twisted
 DEPENDS+=      ${PYPKGPREFIX}-autobahn>=0.14.1:../../www/py-autobahn
 DEPENDS+=      ${PYPKGPREFIX}-automat-[0-9]*:../../devel/py-automat
+DEPENDS+=      ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography
+DEPENDS+=      ${PYPKGPREFIX}-tqdm>=4.13.0:../../misc/py-tqdm
 DEPENDS+=      ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click
 DEPENDS+=      ${PYPKGPREFIX}-humanize-[0-9]*:../../textproc/py-humanize
-#DEPENDS+=     ${PYPKGPREFIX}-hkdf-[0-9]*:../../security/py-hkdf
-DEPENDS+=      ${PYPKGPREFIX}-nacl-[0-9]*:../../security/py-nacl
-DEPENDS+=      ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
-DEPENDS+=      ${PYPKGPREFIX}-spake2>=0.8:../../security/py-spake2
-DEPENDS+=      ${PYPKGPREFIX}-tqdm>=4.13.0:../../misc/py-tqdm
-DEPENDS+=      ${PYPKGPREFIX}-twisted>=17.5.0:../../net/py-twisted
 DEPENDS+=      ${PYPKGPREFIX}-txtorcon>=18.0.2:../../net/py-txtorcon
+DEPENDS+=      ${PYPKGPREFIX}-zipstream-ng>=1.7.1:../../archivers/py-zipstream-ng
 
+# \todo Align these to setup.py
 TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
 TEST_DEPENDS+= ${PYPKGPREFIX}-magic-wormhole-transit-relay-[0-9]*:../../net/py-magic-wormhole-transit-relay
 TEST_DEPENDS+= ${PYPKGPREFIX}-magic-wormhole-mailbox-server-[0-9]*:../../net/py-magic-wormhole-mailbox-server
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=          27
-
-USE_PKG_RESOURCES=     yes
-
 post-install:
        cd ${DESTDIR}${PREFIX}/bin && \
        ${MV} wormhole wormhole-${PYVERSSUFFIX} || ${TRUE}

Index: pkgsrc/net/py-magic-wormhole/PLIST
diff -u pkgsrc/net/py-magic-wormhole/PLIST:1.4 pkgsrc/net/py-magic-wormhole/PLIST:1.5
--- pkgsrc/net/py-magic-wormhole/PLIST:1.4      Thu Sep  5 00:07:18 2024
+++ pkgsrc/net/py-magic-wormhole/PLIST  Sat Apr  5 20:02:29 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2024/09/05 00:07:18 gdt Exp $
+@comment $NetBSD: PLIST,v 1.5 2025/04/05 20:02:29 gdt Exp $
 bin/wormhole-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -87,9 +87,6 @@ ${PYSITELIB}/wormhole/_rlcompleter.pyo
 ${PYSITELIB}/wormhole/_send.py
 ${PYSITELIB}/wormhole/_send.pyc
 ${PYSITELIB}/wormhole/_send.pyo
-${PYSITELIB}/wormhole/_status.py
-${PYSITELIB}/wormhole/_status.pyc
-${PYSITELIB}/wormhole/_status.pyo
 ${PYSITELIB}/wormhole/_terminator.py
 ${PYSITELIB}/wormhole/_terminator.pyc
 ${PYSITELIB}/wormhole/_terminator.pyo

Index: pkgsrc/net/py-magic-wormhole/distinfo
diff -u pkgsrc/net/py-magic-wormhole/distinfo:1.6 pkgsrc/net/py-magic-wormhole/distinfo:1.7
--- pkgsrc/net/py-magic-wormhole/distinfo:1.6   Thu Sep  5 00:07:18 2024
+++ pkgsrc/net/py-magic-wormhole/distinfo       Sat Apr  5 20:02:29 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2024/09/05 00:07:18 gdt Exp $
+$NetBSD: distinfo,v 1.7 2025/04/05 20:02:29 gdt Exp $
 
-BLAKE2s (magic-wormhole-0.15.0.tar.gz) = b4fb8e878a5a254edf2fb12bafd16d030b0205488085802902654728c1c2902c
-SHA512 (magic-wormhole-0.15.0.tar.gz) = 4afd8f1a84651e9fdb516b64c182112adb80ae37e01d89e5255c1c928f3b22c7a034d5fd77191965c34dd004c02c379d469a0c82ac5238fda2a0fb8a2d2477a9
-Size (magic-wormhole-0.15.0.tar.gz) = 283096 bytes
+BLAKE2s (magic-wormhole-0.18.0.tar.gz) = 324f9537135847eae873408038550c391c356264fe75e4fa36f4fcd850647470
+SHA512 (magic-wormhole-0.18.0.tar.gz) = 095be448fb654a32ea45808f03b1a0bffd74ee683448085f1e6f14f054c0d2f19f9048270be4ec7b6a0b46872d20613a36e984a0a137bd68ba3d0a237a83d1b2
+Size (magic-wormhole-0.18.0.tar.gz) = 289799 bytes



Home | Main Index | Thread Index | Old Index