mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 12:47:13 +08:00
Removed larch, larch-live and liblarch, replaced by Chakra’s a-setup.sh script. python2-cairo 1.10.0 python2-gobject 2.28.6 python2-crypto 2.6 python2-zope-interface 4.0.1 python2-twisted 12.2.0 python2-nose 1.2.1 python2-urwid 1.1.0 Rebuilt because of time reasons: python2-imaging, qt-assistant-compat.
24 lines
697 B
Bash
24 lines
697 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=python2-zope-interface
|
|
_pkgname=zope.interface
|
|
pkgver=4.0.1
|
|
pkgrel=1
|
|
pkgdesc="Separate distribution of the zope.interface package used in Zope 3"
|
|
license=('ZPL')
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.zope.org/Products/ZopeInterface/"
|
|
depends=('python2')
|
|
conflicts=('zope-interface')
|
|
replaces=('zope-interface')
|
|
source=(http://pypi.python.org/packages/source/z/${_pkgname}/${_pkgname}-$pkgver.tar.gz)
|
|
md5sums=('d171f8f8a6997409c7680f1dbb3b7e45')
|
|
|
|
build() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
python2 setup.py install --prefix=/usr --root=$pkgdir
|
|
}
|