svn commit: r527833 - in head/devel: . py-minidump

Mateusz Piotrowski 0mp at FreeBSD.org
Thu Mar 5 14:03:19 UTC 2020


Author: 0mp
Date: Thu Mar  5 14:03:18 2020
New Revision: 527833
URL: https://svnweb.freebsd.org/changeset/ports/527833

Log:
  New port: devel/py-minidump
  
  Python library to parse and read Microsoft minidump file format. Can create
  minidumps on Windows machines using the windows API (implemented with
  ctypes).
  
  This module is primarily intended to be used as a library, however for the
  sake of demonstrating its capabilities there is a command line tool
  implemented called minidump. This tool has the following modes of
  operation:
  
  - Console, for one-shot parsing and information retrieval.
  - Shell, where a user may use an interactive command shell to get all info
    (modules, threads, exceptions etc) and browse the virtual memory of the
    process dumped (read/read int/read uint/move/peek/tell)
  
  WWW: https://github.com/skelsec/minidump
  
  PR:		244562

Added:
  head/devel/py-minidump/
  head/devel/py-minidump/Makefile   (contents, props changed)
  head/devel/py-minidump/distinfo   (contents, props changed)
  head/devel/py-minidump/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar  5 13:38:00 2020	(r527832)
+++ head/devel/Makefile	Thu Mar  5 14:03:18 2020	(r527833)
@@ -4594,6 +4594,7 @@
     SUBDIR += py-meliae
     SUBDIR += py-memory-profiler
     SUBDIR += py-microversion_parse
+    SUBDIR += py-minidump
     SUBDIR += py-minimongo
     SUBDIR += py-minio
     SUBDIR += py-mock

Added: head/devel/py-minidump/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-minidump/Makefile	Thu Mar  5 14:03:18 2020	(r527833)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	minidump
+DISTVERSION=	0.0.12
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	0mp at FreeBSD.org
+COMMENT=	Python library to parse windows minidump file format
+
+LICENSE=	MIT
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-minidump/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-minidump/distinfo	Thu Mar  5 14:03:18 2020	(r527833)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1583416247
+SHA256 (minidump-0.0.12.tar.gz) = 35fcd30d7e564c918430354483d9e6e6c1152bf506d45a3921ba11e528999562
+SIZE (minidump-0.0.12.tar.gz) = 46418

Added: head/devel/py-minidump/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-minidump/pkg-descr	Thu Mar  5 14:03:18 2020	(r527833)
@@ -0,0 +1,13 @@
+Python library to parse and read Microsoft minidump file format. Can create
+minidumps on Windows machines using the windows API (implemented with ctypes).
+
+This module is primarily intended to be used as a library, however for the sake
+of demonstrating its capabilities there is a command line tool implemented
+called minidump. This tool has the following modes of operation:
+
+- Console, for one-shot parsing and information retrieval.
+- Shell, where a user may use an interactive command shell to get all info
+  (modules, threads, exceptions etc) and browse the virtual memory of the
+  process dumped (read/read int/read uint/move/peek/tell)
+
+WWW: https://github.com/skelsec/minidump


More information about the svn-ports-all mailing list