19 lines
546 B
Plaintext
19 lines
546 B
Plaintext
|
# Description: Find changelog for github repository, local dir, parse changelog
|
||
|
# URL: https://github.com/dephell/dephell_changelogs
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-requests
|
||
|
|
||
|
name=python3-dephell-changelogs
|
||
|
version=0.0.1
|
||
|
release=1
|
||
|
source=(https://pypi.io/packages/source/d/dephell_changelogs/dephell_changelogs-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd dephell_changelogs-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build \
|
||
|
-O1
|
||
|
}
|