void-packages/srcpkgs/thefuck/template
2021-10-09 08:01:15 -04:00

32 lines
976 B
Bash

# Template file for 'thefuck'
pkgname=thefuck
version=3.31
revision=2
build_style=python3-module
hostmakedepends="python3-setuptools"
depends="python3-colorama python3-decorator python3-psutil python3-pyte
python3-requests"
checkdepends="python3-pytest-mock $depends"
short_desc="Magnificent app which corrects your previous console command"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://github.com/nvbn/thefuck"
distfiles="https://github.com/nvbn/thefuck/archive/${version}.tar.gz"
checksum=ac12705b95e22b356f23b20181a34d549267b7b1702523a1f0a22ba7ba3d30df
case "$XBPS_TARGET_MACHINE" in
# archs where go is available - the test suite uses it
x86_64*|i686*|armv[67]*|aarch64*|ppc64le*) checkdepends+=" go" ;;
*) make_check=no ;;
esac
pre_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
}
post_install() {
vlicense LICENSE.md
}