diff options
author | Tim Biermann <tbier@posteo.de> | 2021-07-14 23:20:26 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-07-14 23:20:26 +0200 |
commit | 37b61859b11283ac5e2f21a685551efeee80f7ad (patch) | |
tree | 204ba11d953361edaf44a2cf56e8e559b5057bf6 /python3-platformdirs | |
parent | 5ed058522a81342fde2c7ce07ce3a128b7b27b4c (diff) | |
download | contrib-37b61859b11283ac5e2f21a685551efeee80f7ad.tar.gz contrib-37b61859b11283ac5e2f21a685551efeee80f7ad.tar.xz |
python3-platformdirs: initial commit, version 2.0.2
Diffstat (limited to 'python3-platformdirs')
-rw-r--r-- | python3-platformdirs/.footprint | 12 | ||||
-rw-r--r-- | python3-platformdirs/.signature | 5 | ||||
-rw-r--r-- | python3-platformdirs/Pkgfile | 17 |
3 files changed, 34 insertions, 0 deletions
diff --git a/python3-platformdirs/.footprint b/python3-platformdirs/.footprint new file mode 100644 index 000000000..dc41edde8 --- /dev/null +++ b/python3-platformdirs/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/python3.9/ +drwxr-xr-x root/root usr/lib/python3.9/site-packages/ +drwxr-xr-x root/root usr/lib/python3.9/site-packages/__pycache__/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/platformdirs.cpython-39.pyc +drwxr-xr-x root/root usr/lib/python3.9/site-packages/platformdirs-2.0.2-py3.9.egg-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/platformdirs-2.0.2-py3.9.egg-info/PKG-INFO +-rw-r--r-- root/root usr/lib/python3.9/site-packages/platformdirs-2.0.2-py3.9.egg-info/SOURCES.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/platformdirs-2.0.2-py3.9.egg-info/dependency_links.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/platformdirs-2.0.2-py3.9.egg-info/top_level.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/platformdirs.py diff --git a/python3-platformdirs/.signature b/python3-platformdirs/.signature new file mode 100644 index 000000000..507fa12b6 --- /dev/null +++ b/python3-platformdirs/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3765ZZSsPYVWfnsmYmtaqCk6F5fVaItEp8oaSJUOyNvL8QApZEfgcBK2XVeeK5gjuuXXsqvZzx5CKDfwEjb7ywc= +SHA256 (Pkgfile) = fc1f392ae81ef724bcd235c17e16f13a57fc677e9cae51dcd6b10c6e69c14b90 +SHA256 (.footprint) = b763fa4cba5c355c4e9aa9b95e1221ad7d4fcf79cab283c73f16a408be562f49 +SHA256 (platformdirs-2.0.2.tar.gz) = 3b00d081227d9037bbbca521a5787796b5ef5000faea1e43fd76f1d44b06fcfa diff --git a/python3-platformdirs/Pkgfile b/python3-platformdirs/Pkgfile new file mode 100644 index 000000000..1583c122c --- /dev/null +++ b/python3-platformdirs/Pkgfile @@ -0,0 +1,17 @@ +# Description: A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir" +# URL: https://pypi.org/project/platformdirs/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-setuptools + +name=python3-platformdirs +version=2.0.2 +release=1 +source=(https://pypi.python.org/packages/source/p/platformdirs/platformdirs-$version.tar.gz) + +build() { + cd platformdirs-$version + /usr/bin/python3 setup.py build + /usr/bin/python3 setup.py install --prefix=/usr \ + --root=$PKG \ + --skip-build +} |