mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01:00 
			
		
		
		
	this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
		
			
				
	
	
		
			35 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Maintainer:
 | |
| pkgname=py3-oauth2client
 | |
| _pkgname=oauth2client
 | |
| pkgver=4.1.3
 | |
| pkgrel=6
 | |
| pkgdesc="A client library for OAuth 2.0"
 | |
| options="!check" # Requires 'sqlalchemy' , 'fasteners' and 'flask'
 | |
| url="https://github.com/googleapis/oauth2client"
 | |
| arch="noarch"
 | |
| license="Apache-2.0"
 | |
| depends="python3 py3-asn1 py3-httplib2 py3-asn1-modules py3-rsa py3-six"
 | |
| makedepends="py3-setuptools"
 | |
| checkdepends="py3-mock py3-openssl py3-django"
 | |
| source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
 | |
| builddir="$srcdir"/$_pkgname-$pkgver
 | |
| 
 | |
| replaces="py-oauth2client" # Backwards compatibility
 | |
| provides="py-oauth2client=$pkgver-r$pkgrel" # Backwards compatibility
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	python3 setup.py test
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 6ca6830c0461295b60598ef3e7ee047aa9fa463d1d2c19c18d6b8606a5b30b11f0798e06c51bd5be63afd8d408442fd846c2867f112655186f55c7dc8e0b7786  oauth2client-4.1.3.tar.gz
 | |
| "
 |