mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 23:47:19 +08:00
95246b57f5
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.
32 lines
914 B
Bash
32 lines
914 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: Cilyan Olowen <gaknar@gmail.com>
|
|
|
|
pkgname=python2-nose
|
|
_pkgname=nose
|
|
pkgver=1.2.1
|
|
pkgrel=1
|
|
pkgdesc="A discovery-based unittest extension"
|
|
arch=('any')
|
|
url="http://www.somethingaboutorange.com/mrl/projects/nose/"
|
|
license=('LGPL2')
|
|
depends=('setuptools')
|
|
conflicts=('python-nose')
|
|
replaces=('python-nose')
|
|
source=("http://pypi.python.org/packages/source/n/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('7f1dc53750811f78bedef9e14a4bc5a5')
|
|
|
|
build() {
|
|
cd "$srcdir/${_pkgname}-$pkgver"
|
|
sed -i -e "s:man/man1:share/man/man1:g" setup.py
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/${_pkgname}-$pkgver"
|
|
python setup.py install --prefix=/usr --root=${pkgdir}
|
|
}
|
|
md5sums=('735e3f1ce8b07e70ee1b742a8a53585a')
|