python3-texttable: initial import, version 1.6.2

This commit is contained in:
Matt Housh 2020-03-19 12:49:30 -05:00
parent 47085d06ee
commit 9e87394ed5
3 changed files with 32 additions and 0 deletions

View File

@ -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.7/
drwxr-xr-x root/root usr/lib/python3.7/site-packages/
drwxr-xr-x root/root usr/lib/python3.7/site-packages/__pycache__/
-rw-r--r-- root/root usr/lib/python3.7/site-packages/__pycache__/texttable.cpython-37.pyc
drwxr-xr-x root/root usr/lib/python3.7/site-packages/texttable-1.6.2-py3.7.egg-info/
-rw-r--r-- root/root usr/lib/python3.7/site-packages/texttable-1.6.2-py3.7.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.7/site-packages/texttable-1.6.2-py3.7.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.7/site-packages/texttable-1.6.2-py3.7.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.7/site-packages/texttable-1.6.2-py3.7.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.7/site-packages/texttable.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+ZqsXSFCj3+AN/fQ/WfitmQlHC9rCv9ifylH40aVJV+GHxC+u8MUqjWYhnh4jYtuf58XvAjMaDzOHiEXNH2qw0=
SHA256 (Pkgfile) = 563e8038cdc4989db0df8a154cd72fea9d8d52ae0a95c604b466e8c163858b9e
SHA256 (.footprint) = 3cef422ce25ff601615d613d4017616cad5ce4224dd3270b815bb7e7d1b15e34
SHA256 (texttable-1.6.2.tar.gz) = eff3703781fbc7750125f50e10f001195174f13825a92a45e9403037d539b4f4

15
python3-texttable/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: module for creating simple ASCII tables
# URL: https://pypi.org/project/texttable/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: python3-setuptools
name=python3-texttable
version=1.6.2
release=1
source=(https://files.pythonhosted.org/packages/82/a8/60df592e3a100a1f83928795aca210414d72cebdc6e4e0c95a6d8ac632fe/texttable-$version.tar.gz)
build() {
cd texttable-$version
python3 setup.py build
python3 setup.py install --root=$PKG
}