git-revise: use github tarball.

This commit is contained in:
Leah Neukirchen 2019-08-07 11:09:12 +02:00
parent 08694284b0
commit 4cc3f14f47

View file

@ -1,7 +1,7 @@
# Template file for 'git-revise' # Template file for 'git-revise'
pkgname=git-revise pkgname=git-revise
version=0.4.2 version=0.4.2
revision=1 revision=2
build_style=python3-module build_style=python3-module
pycompile_module="gitrevise" pycompile_module="gitrevise"
hostmakedepends="python3 python3-setuptools" hostmakedepends="python3 python3-setuptools"
@ -10,9 +10,12 @@ short_desc="Git subcommand to efficiently update, split, and rearrange commits"
maintainer="Leah Neukirchen <leah@vuxu.org>" maintainer="Leah Neukirchen <leah@vuxu.org>"
license="MIT" license="MIT"
homepage="https://github.com/mystor/git-revise" homepage="https://github.com/mystor/git-revise"
distfiles="${PYPI_SITE}/g/git-revise/git-revise-${version}.tar.gz" distfiles="https://github.com/mystor/git-revise/archive/${version}.tar.gz"
checksum=7aa3c572afb88d08ac6c307fa480c011a233e87d2c04d44401b44b53117401d7 checksum=217b1bb9a3b34d0c7e7544b516a9eed5bc061b9bafd3a97bc7edfd83ea54c0d6
post_extract() { post_extract() {
vsed -e 's|"man/man1"|"share/man/man1"|g' -i setup.py vsed -e 's|"man/man1"|"share/man/man1"|g' -i setup.py
} }
post_install() {
vlicense LICENSE
}