31 lines
964 B
Bash
31 lines
964 B
Bash
# Template file for 'thefuck'
|
|
pkgname=thefuck
|
|
version=3.26
|
|
revision=2
|
|
noarch=yes
|
|
build_style=python3-module
|
|
pycompile_module="thefuck"
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-setuptools python3-colorama python3-decorator python3-psutil
|
|
python3-pyte python3-requests"
|
|
checkdepends="python3-colorama python3-decorator python3-psutil python3-pyte
|
|
python3-pytest-mock python3-requests"
|
|
short_desc="Magnificent app which corrects your previous console command"
|
|
maintainer="Benjamin 'Doctors' Hoffmeyer <hoffmeyer25@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/nvbn/thefuck"
|
|
distfiles="https://github.com/nvbn/thefuck/archive/${version}.tar.gz"
|
|
checksum=37d8cd1b578cbf473e337490d8e050a63a0a9defa2b0cb1619ffa4198b70b435
|
|
|
|
do_check() {
|
|
# on python3 mock is unittest.mock
|
|
sed -i 's|from mock|from unittest.mock|g' tests/**.py
|
|
sed -i 's|from mock|from unittest.mock|g' tests/**/*.py
|
|
|
|
python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.md
|
|
}
|