pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   js
Date:           Sat Sep 14 23:48:23 UTC 2024

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/py-mnemonic: DESCR Makefile PLIST distinfo

Log Message:
Add devel/py-mnemonic 0.21

Reference implementation of BIP-0039: Mnemonic code for generating
deterministic keys.

This BIP describes the implementation of a mnemonic code or mnemonic sentence –
a group of easy to remember words – for the generation of deterministic
wallets.

It consists of two parts: generating the mnenomic, and converting it into a
binary seed. This seed can be later used to generate deterministic wallets
using BIP-0032 or similar methods.

See https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki for full
specification.


To generate a diff of this commit:
cvs rdiff -u -r1.4339 -r1.4340 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-mnemonic/DESCR \
    pkgsrc/devel/py-mnemonic/Makefile pkgsrc/devel/py-mnemonic/PLIST \
    pkgsrc/devel/py-mnemonic/distinfo

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

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.4339 pkgsrc/devel/Makefile:1.4340
--- pkgsrc/devel/Makefile:1.4339        Mon Sep  2 06:14:22 2024
+++ pkgsrc/devel/Makefile       Sat Sep 14 23:48:23 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4339 2024/09/02 06:14:22 pin Exp $
+# $NetBSD: Makefile,v 1.4340 2024/09/14 23:48:23 js Exp $
 #
 
 COMMENT=       Development utilities
@@ -2743,6 +2743,7 @@ SUBDIR+=  py-minidump
 SUBDIR+=       py-minimock
 SUBDIR+=       py-mixbox
 SUBDIR+=       py-mmh3
+SUBDIR+=       py-mnemonic
 SUBDIR+=       py-mock
 SUBDIR+=       py-mocket
 SUBDIR+=       py-modulegraph

Added files:

Index: pkgsrc/devel/py-mnemonic/DESCR
diff -u /dev/null pkgsrc/devel/py-mnemonic/DESCR:1.1
--- /dev/null   Sat Sep 14 23:48:23 2024
+++ pkgsrc/devel/py-mnemonic/DESCR      Sat Sep 14 23:48:23 2024
@@ -0,0 +1,13 @@
+Reference implementation of BIP-0039: Mnemonic code for generating
+deterministic keys.
+
+This BIP describes the implementation of a mnemonic code or mnemonic sentence –
+a group of easy to remember words – for the generation of deterministic
+wallets.
+
+It consists of two parts: generating the mnenomic, and converting it into a
+binary seed. This seed can be later used to generate deterministic wallets
+using BIP-0032 or similar methods.
+
+See https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki for full
+specification.
Index: pkgsrc/devel/py-mnemonic/Makefile
diff -u /dev/null pkgsrc/devel/py-mnemonic/Makefile:1.1
--- /dev/null   Sat Sep 14 23:48:23 2024
+++ pkgsrc/devel/py-mnemonic/Makefile   Sat Sep 14 23:48:23 2024
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2024/09/14 23:48:23 js Exp $
+
+DISTNAME=      mnemonic-0.21
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    devel python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=m/mnemonic/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://pypi.org/project/mnemonic/
+COMMENT=       Reference implementation of BIP-0039
+LICENSE=       mit
+
+TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core-[0-9]*:../../devel/py-poetry-core
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/py-mnemonic/PLIST
diff -u /dev/null pkgsrc/devel/py-mnemonic/PLIST:1.1
--- /dev/null   Sat Sep 14 23:48:23 2024
+++ pkgsrc/devel/py-mnemonic/PLIST      Sat Sep 14 23:48:23 2024
@@ -0,0 +1,25 @@
+@comment $NetBSD: PLIST,v 1.1 2024/09/14 23:48:23 js Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/mnemonic/__init__.py
+${PYSITELIB}/mnemonic/__init__.pyc
+${PYSITELIB}/mnemonic/__init__.pyo
+${PYSITELIB}/mnemonic/mnemonic.py
+${PYSITELIB}/mnemonic/mnemonic.pyc
+${PYSITELIB}/mnemonic/mnemonic.pyo
+${PYSITELIB}/mnemonic/py.typed
+${PYSITELIB}/mnemonic/wordlist/chinese_simplified.txt
+${PYSITELIB}/mnemonic/wordlist/chinese_traditional.txt
+${PYSITELIB}/mnemonic/wordlist/czech.txt
+${PYSITELIB}/mnemonic/wordlist/english.txt
+${PYSITELIB}/mnemonic/wordlist/french.txt
+${PYSITELIB}/mnemonic/wordlist/italian.txt
+${PYSITELIB}/mnemonic/wordlist/japanese.txt
+${PYSITELIB}/mnemonic/wordlist/korean.txt
+${PYSITELIB}/mnemonic/wordlist/portuguese.txt
+${PYSITELIB}/mnemonic/wordlist/russian.txt
+${PYSITELIB}/mnemonic/wordlist/spanish.txt
+${PYSITELIB}/mnemonic/wordlist/turkish.txt
Index: pkgsrc/devel/py-mnemonic/distinfo
diff -u /dev/null pkgsrc/devel/py-mnemonic/distinfo:1.1
--- /dev/null   Sat Sep 14 23:48:23 2024
+++ pkgsrc/devel/py-mnemonic/distinfo   Sat Sep 14 23:48:23 2024
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2024/09/14 23:48:23 js Exp $
+
+BLAKE2s (mnemonic-0.21.tar.gz) = 8aadcf04a601f9f5505eb202a29a8413b7c305d4994ad464805264f0accd43c6
+SHA512 (mnemonic-0.21.tar.gz) = 595e33968733267a91935de9df2ec4f4a1ef801129ec8aa5f1ae001b671595c569a9ba760d5cb828bdff3b51e50f63c3b5ecd508677dca2f3cc7b54586716b7f
+Size (mnemonic-0.21.tar.gz) = 152462 bytes



Home | Main Index | Thread Index | Old Index