python3-deprecation: initial commit, version 2.1.0

This commit is contained in:
Tim Biermann 2024-01-20 18:43:16 +01:00
parent 0ac2553046
commit 3d5fe279a5
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 36 additions and 0 deletions

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.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/deprecation.cpython-310.pyc
drwxr-xr-x root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation-2.1.0-py3.10.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/deprecation.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35vBzPqMArD+L6y/HN2ghVzXUj+o3eHzREZbjMih8d4UmKKEDzIYL7eD36xYh9Jk5WC0Z99n4CvBohG/OLYFTwk=
SHA256 (Pkgfile) = 0d42e2cd1535f2fb6e41074d881fd2bf8f122e6692bb350e708720443376a252
SHA256 (.footprint) = 00739ffc34ecdb9304ea76c0e30d5c74999200eb75b783091762fb071b0839f3
SHA256 (deprecation-2.1.0.tar.gz) = 72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff

View File

@ -0,0 +1,18 @@
# Description: A library to handle automated deprecations
# URL: https://github.com/briancurtin/deprecation
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-packaging
name=python3-deprecation
version=2.1.0
release=1
source=(https://pypi.org/packages/source/d/deprecation/deprecation-$version.tar.gz)
build() {
cd deprecation-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}