python3-vdf: initial commit, version 3.3

This commit is contained in:
Tim Biermann 2020-11-19 08:57:51 +00:00
parent 4834017bf6
commit dadb7bf0c1
3 changed files with 38 additions and 0 deletions

18
python3-vdf/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.7/
drwxr-xr-x root/root usr/lib/python3.7/site-packages/
drwxr-xr-x root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/
-rw-r----- root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/PKG-INFO
-rw-r----- root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/SOURCES.txt
-rw-r----- root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/dependency_links.txt
-rw-r----- root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/top_level.txt
-rw-r----- root/root usr/lib/python3.7/site-packages/vdf-3.3-py3.7.egg-info/zip-safe
drwxr-xr-x root/root usr/lib/python3.7/site-packages/vdf/
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/__init__.py
drwxr-xr-x root/root usr/lib/python3.7/site-packages/vdf/__pycache__/
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/__pycache__/__init__.cpython-37.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/__pycache__/__init__.cpython-37.pyc
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/__pycache__/vdict.cpython-37.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/__pycache__/vdict.cpython-37.pyc
-rw-r--r-- root/root usr/lib/python3.7/site-packages/vdf/vdict.py

5
python3-vdf/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF36SkzJRtkGCUMZUHHEoqGjsCERMP5YtdW5UhvnAJNzcmAFuwygev4OnNH/qhNLVG1VDGxtvcNIGs8ubkOzrCtgU=
SHA256 (Pkgfile) = e4fb341e85d67bf52e336fa2ac25be22d966a11ae3b1dc9955e4205a9080b9ed
SHA256 (.footprint) = 2af08f06c60a83dd2b092438e5a040651f9cdc42051710b1a7388e081d951042
SHA256 (vdf-3.3.tar.gz) = 9193901ce20ee08391c1d5044234b5da021d939b00ce879f5aae0a1a759577bc

15
python3-vdf/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Pure python module for (de)serialization to and from VDF that works just like json
# URL: https://github.com/ValvePython/vdf
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-vdf
version=3.3
release=1
source=(https://pypi.python.org/packages/source/v/vdf/vdf-$version.tar.gz)
build() {
cd vdf-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install -O2 --root=$PKG --skip-build
}