Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

27 lines
795 B
Bash

# Template file for 'python-neovim'
pkgname=python-neovim
version=0.2.0
revision=1
noarch=yes
wrksrc="python-client-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="neovim python-msgpack python-greenlet python-trollius"
short_desc="Python2 client for Neovim"
pycompile_module="neovim"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/neovim/python-client"
distfiles="${homepage}/archive/${version}.tar.gz"
checksum=936b8c5a137436499328362da165f7ef16492a628d5a6d9f7b7f182c0200f8ab
python3-neovim_package() {
noarch=yes
depends="neovim python3-msgpack python3-greenlet"
pycompile_module="neovim"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
}
}