pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel devel/py-intelhex: Import py-intelhex 2.3.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/ae657180375a
branches: trunk
changeset: 442992:ae657180375a
user: riastradh <riastradh%pkgsrc.org@localhost>
date: Fri Dec 04 23:30:29 2020 +0000
description:
devel/py-intelhex: Import py-intelhex 2.3.0
Python library for Intel HEX files manipulations
The Intel HEX file format is widely used in microprocessors and
microcontrollers area (embedded systems etc) as the de facto standard
for representation of code to be programmed into microelectronic
devices.
This work implements an intelhex Python library to read, write, create
from scratch and manipulate data from Intel HEX file format.
The distribution package also includes several convenience Python
scripts, including "classic" hex2bin and bin2hex converters and more,
those based on the library itself. Check the docs to know more.
diffstat:
devel/Makefile | 3 ++-
devel/py-intelhex/DESCR | 11 +++++++++++
devel/py-intelhex/Makefile | 20 ++++++++++++++++++++
devel/py-intelhex/PLIST | 32 ++++++++++++++++++++++++++++++++
devel/py-intelhex/distinfo | 6 ++++++
5 files changed, 71 insertions(+), 1 deletions(-)
diffs (102 lines):
diff -r 20ecc3f68a16 -r ae657180375a devel/Makefile
--- a/devel/Makefile Fri Dec 04 23:29:32 2020 +0000
+++ b/devel/Makefile Fri Dec 04 23:30:29 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3282 2020/12/04 23:29:32 riastradh Exp $
+# $NetBSD: Makefile,v 1.3283 2020/12/04 23:30:29 riastradh Exp $
#
COMMENT= Development utilities
@@ -2331,6 +2331,7 @@
SUBDIR+= py-incremental
SUBDIR+= py-iniconfig
SUBDIR+= py-inquirer
+SUBDIR+= py-intelhex
SUBDIR+= py-intervaltree
SUBDIR+= py-iowait
SUBDIR+= py-ipaddr
diff -r 20ecc3f68a16 -r ae657180375a devel/py-intelhex/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-intelhex/DESCR Fri Dec 04 23:30:29 2020 +0000
@@ -0,0 +1,11 @@
+The Intel HEX file format is widely used in microprocessors and
+microcontrollers area (embedded systems etc) as the de facto standard
+for representation of code to be programmed into microelectronic
+devices.
+
+This work implements an intelhex Python library to read, write, create
+from scratch and manipulate data from Intel HEX file format.
+
+The distribution package also includes several convenience Python
+scripts, including "classic" hex2bin and bin2hex converters and more,
+those based on the library itself. Check the docs to know more.
diff -r 20ecc3f68a16 -r ae657180375a devel/py-intelhex/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-intelhex/Makefile Fri Dec 04 23:30:29 2020 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2020/12/04 23:30:30 riastradh Exp $
+
+GITHUB_PROJECT= intelhex
+GITHUB_TAG= 2.3.0
+DISTNAME= ${GITHUB_TAG}
+PKGNAME= ${PYPKGPREFIX}-${GITHUB_PROJECT}-${DISTNAME}
+CATEGORIES= devel python
+MASTER_SITES= ${MASTER_SITE_GITHUB:=python-intelhex/}
+DIST_SUBDIR= ${GITHUB_PROJECT}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/python-intelhex/intelhex
+COMMENT= Python library for Intel HEX files manipulations
+LICENSE= modified-bsd
+
+WRKSRC= ${WRKDIR}/intelhex-2.3.0
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 20ecc3f68a16 -r ae657180375a devel/py-intelhex/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-intelhex/PLIST Fri Dec 04 23:30:29 2020 +0000
@@ -0,0 +1,32 @@
+@comment $NetBSD: PLIST,v 1.1 2020/12/04 23:30:30 riastradh Exp $
+bin/bin2hex.py
+bin/hex2bin.py
+bin/hex2dump.py
+bin/hexdiff.py
+bin/hexinfo.py
+bin/hexmerge.py
+${PYSITELIB}/intelhex-${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/intelhex-${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/intelhex-${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/intelhex-${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/intelhex/__init__.py
+${PYSITELIB}/intelhex/__init__.pyc
+${PYSITELIB}/intelhex/__init__.pyo
+${PYSITELIB}/intelhex/__main__.py
+${PYSITELIB}/intelhex/__main__.pyc
+${PYSITELIB}/intelhex/__main__.pyo
+${PYSITELIB}/intelhex/__version__.py
+${PYSITELIB}/intelhex/__version__.pyc
+${PYSITELIB}/intelhex/__version__.pyo
+${PYSITELIB}/intelhex/bench.py
+${PYSITELIB}/intelhex/bench.pyc
+${PYSITELIB}/intelhex/bench.pyo
+${PYSITELIB}/intelhex/compat.py
+${PYSITELIB}/intelhex/compat.pyc
+${PYSITELIB}/intelhex/compat.pyo
+${PYSITELIB}/intelhex/getsizeof.py
+${PYSITELIB}/intelhex/getsizeof.pyc
+${PYSITELIB}/intelhex/getsizeof.pyo
+${PYSITELIB}/intelhex/test.py
+${PYSITELIB}/intelhex/test.pyc
+${PYSITELIB}/intelhex/test.pyo
diff -r 20ecc3f68a16 -r ae657180375a devel/py-intelhex/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-intelhex/distinfo Fri Dec 04 23:30:29 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/12/04 23:30:30 riastradh Exp $
+
+SHA1 (intelhex/2.3.0.tar.gz) = bf6abaacd764d255d84e6cbb30e9a2cc7fe1236d
+RMD160 (intelhex/2.3.0.tar.gz) = f91914ce380a00c3b05add33f0de998a26d5593e
+SHA512 (intelhex/2.3.0.tar.gz) = bf9a7e29641959e26d8ac2ae2702ed5f4f0003f45793b70cd4cd99454d25304b90749e91a73a794a8363e4bc948ba91f274fc9c448567090c581d91f043f4ee9
+Size (intelhex/2.3.0.tar.gz) = 74864 bytes
Home |
Main Index |
Thread Index |
Old Index