41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Template file for 'python-zope.interface'
 | |
| pkgname=python-zope.interface
 | |
| version=4.4.2
 | |
| revision=1
 | |
| wrksrc="${pkgname#*-}-${version}"
 | |
| build_style=python-module
 | |
| pycompile_module="zope"
 | |
| hostmakedepends="python-setuptools python3-setuptools"
 | |
| makedepends="python-devel python3-devel"
 | |
| depends="python-setuptools"
 | |
| short_desc="Zope interfaces for Python2"
 | |
| maintainer="Juan RP <xtraeme@voidlinux.eu>"
 | |
| homepage="https://github.com/zopefoundation/zope.interface"
 | |
| license="ZPL-2.1"
 | |
| distfiles="${PYPI_SITE}/z/zope.interface/zope.interface-${version}.tar.gz"
 | |
| checksum=4e59e427200201f69ef82956ddf9e527891becf5b7cde8ec3ce39e1d0e262eb0
 | |
| 
 | |
| post_install() {
 | |
| 	# zope.interface provides the zope namespace
 | |
| 	for py_sitelib in $py2_sitelib $py3_sitelib; do
 | |
| 		vinstall src/zope/__init__.py 644 ${py_sitelib}/zope
 | |
| 	done
 | |
| 	vlicense LICENSE.txt LICENSE
 | |
| }
 | |
| 
 | |
| python3-zope.interface_package() {
 | |
| 	pycompile_module="zope"
 | |
| 	replaces="python3.4-zope.interface>=0"
 | |
| 	depends="python3-setuptools"
 | |
| 	short_desc="${short_desc/Python2/Python3}"
 | |
| 	pkg_install() {
 | |
| 		vmove usr/lib/python3*
 | |
| 		vlicense LICENSE.txt LICENSE
 | |
| 	}
 | |
| }
 | |
| python3.4-zope.interface_package() {
 | |
| 	build_style=meta
 | |
| 	short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
 | |
| 	depends="python3-zope.interface>=${version}_${revision}"
 | |
| }
 | 
