19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
|
# 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
|
||
|
}
|