35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Template file for 'python-gitlab'
|
|
pkgname=python-gitlab
|
|
version=1.4.0
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python-module
|
|
pycompile_module="gitlab"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-requests python-six"
|
|
checkdepends="${depends} python-httmock python-mock"
|
|
short_desc="Wrapper for GitLab's API (Python2)"
|
|
maintainer="Joseph LaFreniere <joseph@lafreniere.xyz>"
|
|
license="LGPL-3.0-or-later"
|
|
homepage="https://github.com/gpocentek/python-gitlab"
|
|
changelog="https://raw.githubusercontent.com/python-gitlab/python-gitlab/master/ChangeLog.rst"
|
|
distfiles="${PYPI_SITE}/p/python-gitlab/python-gitlab-${version}.tar.gz"
|
|
checksum=34a5eb1704e68a23bafb9b122c456ff72b3e1a2d3bdcd44346bbde6a5d7af511
|
|
alternatives="python-gitlab:gitlab:/usr/bin/gitlab2"
|
|
|
|
do_check() {
|
|
python setup.py test
|
|
}
|
|
|
|
python3-gitlab_package() {
|
|
noarch=yes
|
|
depends="python3-setuptools python3-requests python3-six"
|
|
pycompile_module="gitlab"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="python-gitlab:gitlab:/usr/bin/gitlab3"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|