2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Python paketlerindeki scm verilerinin yönetimini sağlayan setuptools eklentisi
|
2017-06-17 16:55:05 +02:00
|
|
|
|
# URL: https://github.com/pypa/setuptools_scm
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: python sqlite python-setuptools
|
2017-06-17 16:55:05 +02:00
|
|
|
|
|
|
|
|
|
name=python-setuptools-scm
|
|
|
|
|
version=1.15.6
|
|
|
|
|
release=1
|
|
|
|
|
|
|
|
|
|
source=(https://github.com/pypa/setuptools_scm/archive/v$version.tar.gz)
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-06-17 16:55:05 +02:00
|
|
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$version
|
|
|
|
|
cd "$SRC"/setuptools_scm-$version
|
|
|
|
|
python2 setup.py build
|
|
|
|
|
python2 setup.py egg_info
|
|
|
|
|
python2 setup.py install --root "$PKG"
|
|
|
|
|
}
|