blob: 10bfcc6dca3ec9ef3388e279619e8f233d8f3c07 (
plain)
1 # Description: Safe code refactoring for modern Python
2 # URL: https://github.com/facebookincubator/bowler
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-attrs python3-click python3-fissix python3-sh
5
6 name=python3-bowler
7 version=0.9.0
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/b/bowler/bowler-$version.tar.gz)
10
11 build() {
12 cd bowler-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|