33 lines
975 B
Bash
33 lines
975 B
Bash
# Template file for 'python-github3'
|
|
pkgname=python-github3
|
|
version=1.2.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="github3.py-${version}"
|
|
build_style=python-module
|
|
pycompile_module="github3"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-requests python-uritemplate"
|
|
short_desc="Wrapper for GitHub's API (Python2)"
|
|
maintainer="Joseph LaFreniere <joseph@lafreniere.xyz>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github3py.readthedocs.org"
|
|
changelog="https://raw.githubusercontent.com/sigmavirus24/github3.py/master/docs/source/release-notes/${version}.rst"
|
|
distfiles="${PYPI_SITE}/g/github3.py/github3.py-${version}.tar.gz"
|
|
checksum=35fea5bf3567a8e88d3660686d83f96ef164e698ce6fb30f9e2b0edded7357af
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-github3_package() {
|
|
noarch=yes
|
|
depends="python3-requests python3-uritemplate"
|
|
pycompile_module="github3"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|