From c5bd4593724c018031dd4f82a700bf271359600a Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 20 Jan 2024 18:43:05 +0100 Subject: [PATCH] python3-dom-toml: initial commit, version 0.6.1 --- python3-dom-toml/.footprint | 20 ++++++++++++++++++++ python3-dom-toml/.signature | 5 +++++ python3-dom-toml/Pkgfile | 16 ++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 python3-dom-toml/.footprint create mode 100644 python3-dom-toml/.signature create mode 100644 python3-dom-toml/Pkgfile diff --git a/python3-dom-toml/.footprint b/python3-dom-toml/.footprint new file mode 100644 index 000000000..9b1ed8258 --- /dev/null +++ b/python3-dom-toml/.footprint @@ -0,0 +1,20 @@ +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/dom_toml-0.6.1.dist-info/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml-0.6.1.dist-info/LICENSE +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml-0.6.1.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml-0.6.1.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml-0.6.1.dist-info/WHEEL +drwxr-xr-x root/root usr/lib/python3.10/site-packages/dom_toml/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/__init__.py +drwxr-xr-x root/root usr/lib/python3.10/site-packages/dom_toml/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/__pycache__/__init__.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/__pycache__/decoder.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/__pycache__/encoder.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/__pycache__/parser.cpython-310.opt-2.pyc +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/decoder.py +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/encoder.py +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/parser.py +-rw-r--r-- root/root usr/lib/python3.10/site-packages/dom_toml/py.typed (EMPTY) diff --git a/python3-dom-toml/.signature b/python3-dom-toml/.signature new file mode 100644 index 000000000..c9e59a6d5 --- /dev/null +++ b/python3-dom-toml/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3x8oLInwnqCQVSTkm+ieU5VZJqaLEI5vd8FyFqunu1jlEG9KRdx7vp+bR0k+nnV2lYKfbOZzlwUB4GIkW+yUGgI= +SHA256 (Pkgfile) = ab806c8ac9af58a1fad806f1d26059e811af01a82952af6d475f5ca1e0b8abbd +SHA256 (.footprint) = 52bf16791b2d6701d7c580a95b9949e390f116821453067fae9ab2319bc8047c +SHA256 (dom_toml-0.6.1.tar.gz) = a0bfc204ae32c72ed36e526dce56108a3b20741ac3c055207206ce3b2f302868 diff --git a/python3-dom-toml/Pkgfile b/python3-dom-toml/Pkgfile new file mode 100644 index 000000000..3ee0ff114 --- /dev/null +++ b/python3-dom-toml/Pkgfile @@ -0,0 +1,16 @@ +# Description: Dom's tools for Tom's Obvious, Minimal Language +# URL: https://github.com/domdfcoding/dom_toml +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-domdf-python-tools python3-toml python3-wheel + +name=python3-dom-toml +version=0.6.1 +release=1 +source=(https://pypi.org/packages/source/d/dom_toml/dom_toml-$version.tar.gz) + +build() { + cd dom_toml-$version + + /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation + /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl +}