python3-shellingham: initial commit, version 1.4.0

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

View File

@ -0,0 +1,35 @@
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/shellingham-1.4.0-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham-1.4.0-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham-1.4.0-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham-1.4.0-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham-1.4.0-py3.9.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham-1.4.0-py3.9.egg-info/zip-safe
drwxr-xr-x root/root usr/lib/python3.9/site-packages/shellingham/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/_core.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/_core.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/nt.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/__pycache__/nt.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/_core.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/nt.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/shellingham/posix/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/_core.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/_core.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/proc.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/proc.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/ps.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/__pycache__/ps.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/_core.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/proc.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/shellingham/posix/ps.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3305fzkTlnJjY9uBWUwous/OUH6Zhnt6VTA8BKbuArbPNd+crBKPoy6cJyYsVUcH7U6OMvR4IrxJZG+EZO/vow0=
SHA256 (Pkgfile) = fd2d3befde53d03a1a5ace7065a745d1321933adb7c8a7e08103bccad46c5ef5
SHA256 (.footprint) = 488b92d094e699a4d7f44a2f5060720dfa29636b5c2e7d12361e62a2da514d2d

View File

@ -0,0 +1,18 @@
# Description: Tool to Detect Surrounding Shell
# URL: https://github.com/sarugaku/shellingham
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-shellingham
version=1.4.0
release=1
source=(https://github.com/sarugaku/shellingham/archive/$version/$name-$version.tar.gz)
build() {
cd shellingham-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
-O1 \
--skip-build
}