python3-et_xmlfile: initial commit

This commit is contained in:
John McQuah 2022-10-15 08:39:43 -04:00
parent 3ea446fe31
commit 531bf518e2
3 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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/et_xmlfile/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/et_xmlfile-1.1.0-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile-1.1.0-py3.10.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile-1.1.0-py3.10.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile-1.1.0-py3.10.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile-1.1.0-py3.10.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/__init__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/et_xmlfile/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/__pycache__/__init__.cpython-310.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/__pycache__/__init__.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-310.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/et_xmlfile/xmlfile.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxNlCLun6GIM22FbFcnO2EFIpckcabLCUVZKe+JAaJXOtoKpQz+pjG712HOg826/BYhIu+cPaC5F1Zqmt2MPaZAA=
SHA256 (Pkgfile) = 571cd56479efc74f16138f23010a08885fe7be45c5d9670d03268eb46f7f330a
SHA256 (.footprint) = 74a12e8843dc2bb21716ec92b9f6f4726291dad6895494de91f521bf72af23e0
SHA256 (et_xmlfile-1.1.tar.gz) = 707c2211ba4a041fd866ef6a60966f4ff82c89f4d4dfabf5aea59aaf97f9be4f

View File

@ -0,0 +1,18 @@
# Description: python module for creating large XML files
# URL: https://foss.heptapod.net/openpyxl/et_xmlfile
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: python3-lxml python3-tox
name=python3-et_xmlfile
version=1.1
release=1
source=(https://foss.heptapod.net/openpyxl/${name#*-}/-/archive/$version/${name#*-}-$version.tar.gz)
build() {
cd ${name#*-}-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --skip-build \
--optimize=1 --prefix=/usr --root=$PKG
}