diff options
author | Tim Biermann <tbier@posteo.de> | 2021-06-14 19:51:54 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-06-14 19:51:54 +0000 |
commit | 608d50c3cdf05d6d74f1e2a0576dffd40548d170 (patch) | |
tree | 3dca64b6957e17ac1b5c9ab96fe206c48dee79c7 /python3-tabulate | |
parent | 94123fb9376f826c9da9e258fe5fd06f9ec5baa4 (diff) | |
download | contrib-608d50c3cdf05d6d74f1e2a0576dffd40548d170.tar.gz contrib-608d50c3cdf05d6d74f1e2a0576dffd40548d170.tar.xz |
python3-tabulate: initial commit, version 0.8.9
Diffstat (limited to 'python3-tabulate')
-rw-r--r-- | python3-tabulate/.footprint | 17 | ||||
-rw-r--r-- | python3-tabulate/.signature | 4 | ||||
-rw-r--r-- | python3-tabulate/Pkgfile | 19 |
3 files changed, 40 insertions, 0 deletions
diff --git a/python3-tabulate/.footprint b/python3-tabulate/.footprint new file mode 100644 index 000000000..f31184241 --- /dev/null +++ b/python3-tabulate/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/tabulate +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__/tabulate.cpython-39.opt-1.pyc +-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/tabulate.cpython-39.pyc +drwxr-xr-x root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/ +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/PKG-INFO +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/SOURCES.txt +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/dependency_links.txt +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/entry_points.txt +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/requires.txt +-rw-rw-rw- root/root usr/lib/python3.9/site-packages/tabulate-0.8.9-py3.9.egg-info/top_level.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/tabulate.py diff --git a/python3-tabulate/.signature b/python3-tabulate/.signature new file mode 100644 index 000000000..6f0a8bf7f --- /dev/null +++ b/python3-tabulate/.signature @@ -0,0 +1,4 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF34AK64mKeUUyjEb9vQ/nJMaiqT77gEn2fYt//i/jC8a2qOVoRobqTOz3woU/TfPzp80bV0Yk+Dk1af0bMb3sRgg= +SHA256 (Pkgfile) = a01fed29f03a9bee8710bd7d8703830658598b3674b2c351b7b3ae1c90d30dea +SHA256 (.footprint) = 4ca5c42eec8106e3698a2c2121ce557933003f445496d43f398ead1fec180b01 diff --git a/python3-tabulate/Pkgfile b/python3-tabulate/Pkgfile new file mode 100644 index 000000000..bd83efa4e --- /dev/null +++ b/python3-tabulate/Pkgfile @@ -0,0 +1,19 @@ +# Description: Pretty-print tabular data in Python, a library and a command-line utility. +# URL: https://bitbucket.org/astanin/python-tabulate +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-setuptools +# Optional: python3-numpy python3-pandas + +name=python3-tabulate +version=0.8.9 +release=1 +source=(https://files.pythonhosted.org/packages/source/t/tabulate/tabulate-$version.tar.gz) + +build() { + cd tabulate-$version + /usr/bin/python3 setup.py build + /usr/bin/python3 setup.py install --prefix=/usr \ + --root=$PKG \ + --skip-build \ + -O1 +} |