python3-pefile: initial commit, version 2023.2.7

This commit is contained in:
Tim Biermann 2024-03-02 15:47:03 +01:00
parent b299172b77
commit 037f1e8b1b
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 44 additions and 0 deletions

23
python3-pefile/.footprint Normal file
View File

@ -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

View File

@ -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

16
python3-pefile/Pkgfile Normal file
View File

@ -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
}