[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH v3 01/14] gnu: Add python-itanium-demangle.
From: |
soeren |
Subject: |
[bug#69074] [PATCH v3 01/14] gnu: Add python-itanium-demangle. |
Date: |
Thu, 4 Jul 2024 22:05:10 +0200 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-itanium-demangle): New variable.
---
gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 36f75b4b40..a727f1c0ba 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33804,6 +33804,36 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
+(define-public python-itanium-demangle
+ (package
+ (name "python-itanium-demangle")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/whitequark/python-itanium_demangler";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1q47aqm5z3db6pasdzw05d6236vnb8hnapfy88fcmn9dr5ym98r3"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "tests"
+ (invoke "python" "-m" "unittest"))))))))
+ (home-page "https://github.com/whitequark/python-itanium_demangler";)
+ (synopsis "Pure Python Itanium C++ ABI demangler")
+ (description
+ "This Python module provides an implementation of the Itanium C++
+ABI symbol mangling language. The demangler generates an abstract
+syntax tree from mangled symbols, which can be used for directly
+extracting type information.")
+ (license license:bsd-0)))
+
(define-public python-peachpy
;; There is no tag in this repo.
(let ((commit "913d74c35a6b1d330e90bfc055208ce5b06b35a0")
base-commit: eeb24a50d2f1f78095bdb16b40ddb93bb51474bc
- [bug#69074] [PATCH v3 01/14] gnu: Add python-itanium-demangle.,
soeren <=
- [bug#69074] [PATCH v3 02/14] gnu: Add python-keystone-engine., soeren, 2024/07/04
- [bug#69074] [PATCH v3 05/14] gnu: Add python-rpyc., soeren, 2024/07/04
- [bug#69074] [PATCH v3 03/14] gnu: Add python-mulpyplexer., soeren, 2024/07/04
- [bug#69074] [PATCH v3 04/14] gnu: Add python-nampa., soeren, 2024/07/04
- [bug#69074] [PATCH v3 08/14] gnu: Add python-archinfo., soeren, 2024/07/04
- [bug#69074] [PATCH v3 12/14] gnu: unicorn: Update to 2.0.1.post1., soeren, 2024/07/04
- [bug#69074] [PATCH v3 06/14] gnu: Add python-pysmt., soeren, 2024/07/04
- [bug#69074] [PATCH v3 13/14] gnu: capstone: Backport upstream fix for Python bindings., soeren, 2024/07/04
- [bug#69074] [PATCH v3 07/14] gnu: Add python-claripy., soeren, 2024/07/04
- [bug#69074] [PATCH v3 11/14] gnu: Add python-ailment., soeren, 2024/07/04