From 037f1e8b1b1c1e37ccd321078ef2156189a56820 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 2 Mar 2024 15:47:03 +0100 Subject: [PATCH] python3-pefile: initial commit, version 2023.2.7 --- python3-pefile/.footprint | 23 +++++++++++++++++++++++ python3-pefile/.signature | 5 +++++ python3-pefile/Pkgfile | 16 ++++++++++++++++ 3 files changed, 44 insertions(+) create mode 100644 python3-pefile/.footprint create mode 100644 python3-pefile/.signature create mode 100644 python3-pefile/Pkgfile diff --git a/python3-pefile/.footprint b/python3-pefile/.footprint new file mode 100644 index 000000000..1d90deeaa --- /dev/null +++ b/python3-pefile/.footprint @@ -0,0 +1,23 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/python3.10/ +drwxr-xr-x root/root usr/lib/python3.10/site-packages/ +drwxr-xr-x root/root usr/lib/python3.10/site-packages/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/pefile.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/peutils.cpython-310.opt-2.pyc +drwxr-xr-x root/root usr/lib/python3.10/site-packages/ordlookup/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/__init__.py +drwxr-xr-x root/root usr/lib/python3.10/site-packages/ordlookup/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/__pycache__/__init__.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/__pycache__/oleaut32.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/__pycache__/ws2_32.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/oleaut32.py +-rw-r--r-- root/root usr/lib/python3.10/site-packages/ordlookup/ws2_32.py +drwxr-xr-x root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/LICENSE +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/WHEEL +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile-2023.2.7.dist-info/top_level.txt +-rw-r--r-- root/root usr/lib/python3.10/site-packages/pefile.py +-rw-r--r-- root/root usr/lib/python3.10/site-packages/peutils.py diff --git a/python3-pefile/.signature b/python3-pefile/.signature new file mode 100644 index 000000000..da3948665 --- /dev/null +++ b/python3-pefile/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF314qKgZTkomwG5njkJ/sIf67hi4xCGK+u2E1EltDHLw5k9VyE97luZa6V7xCA+jzifF70MlFOrrDPglvIHz/jAs= +SHA256 (Pkgfile) = db9f272d59c01324763686de3d1fa391ec2551790d4de9965730fe2b05eb8247 +SHA256 (.footprint) = 2389666f90a306a735410f4f45ab16a2e81ac593a1e7a565935b52bc05001f4b +SHA256 (python3-pefile-2023.2.7.tar.gz) = 0748ae46a3b93c5d393620c827874266c86ac81f52bf25fc08e7e95efff9e8f0 diff --git a/python3-pefile/Pkgfile b/python3-pefile/Pkgfile new file mode 100644 index 000000000..fe140861a --- /dev/null +++ b/python3-pefile/Pkgfile @@ -0,0 +1,16 @@ +# Description: Python PE parsing module +# URL: https://github.com/erocarrera/pefile +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-build python3-installer python3-wheel + +name=python3-pefile +version=2023.2.7 +release=1 +source=(https://github.com/erocarrera/pefile/archive/v$version/$name-$version.tar.gz) + +build() { + cd pefile-$version + + /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation + /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl +}