1
0
forked from ports/contrib

python3-sh: initial commit, version 1.14.2

This commit is contained in:
Tim Biermann 2021-06-14 19:51:54 +00:00
parent e35f2c6600
commit 0ab178b2d3
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 35 additions and 0 deletions

13
python3-sh/.footprint Normal file
View File

@ -0,0 +1,13 @@
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__/sh.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/sh.cpython-39.pyc
drwxr-xr-x root/root usr/lib/python3.9/site-packages/sh-1.14.2-py3.9.egg-info/
-rw-rw-r-- root/root usr/lib/python3.9/site-packages/sh-1.14.2-py3.9.egg-info/PKG-INFO
-rw-rw-r-- root/root usr/lib/python3.9/site-packages/sh-1.14.2-py3.9.egg-info/SOURCES.txt
-rw-rw-r-- root/root usr/lib/python3.9/site-packages/sh-1.14.2-py3.9.egg-info/dependency_links.txt
-rw-rw-r-- root/root usr/lib/python3.9/site-packages/sh-1.14.2-py3.9.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/sh.py

4
python3-sh/.signature Normal file
View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+fgFkfDT51JskWFLAS1OL0FQAIEJ0MeI0LsqCgWTUiw5lbnbSP50drUY44PhuGuYLTnDMKsEWcrz111yrYWYwk=
SHA256 (Pkgfile) = d182452d126f2085151c864a751c8524fa205777c3be4bc134bef80053481305
SHA256 (.footprint) = 04bacf7ae55a46e7baecc4e8020cf33a20b0ab117bdc0d27c9a0f817b8756a85

18
python3-sh/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Python subprocess replacement
# URL: https://pypi.python.org/pypi/sh
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-sh
version=1.14.2
release=1
source=(https://pypi.io/packages/source/s/sh/sh-$version.tar.gz)
build() {
cd sh-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
-O1 \
--skip-build
}