blob: 5f14a46d4b4de3568a5120c64425b50b4a34c1cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python-stsci.sphinxext
_pyname=${pkgbase#python-}
pkgname=("python-${_pyname}")
pkgver=1.2.1
pkgrel=2
pkgdesc="A set of tools and templates to customize Sphinx for use in STScI projects"
arch=('i686' 'x86_64')
url="http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python"
license=('BSD' 'LPPL')
makedepends=('python-setuptools' 'python-d2to1' 'python-stsci.distutils')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz"
'fix_new_sphinx.patch')
md5sums=('d23f6ad057a4af86a6ce3771bddb1754'
'fafd43af38820f2c7ea301287909e16e')
prepare() {
cd ${srcdir}/${_pyname}-${pkgver}
patch -Np1 -i "${srcdir}/fix_new_sphinx.patch"
}
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python setup.py build
}
#check() {
# cd ${srcdir}/${_pyname}-${pkgver}
# msg "Checking Python3"
# python setup.py test
# msg "Checking Python2"
# cd ${srcdir}/${_pyname}-${pkgver}-py2
# python2 setup.py test
#}
package_python-stsci.sphinxext() {
depends=('python-sphinx>=0.6.3' 'python-numpydoc' 'python-matplotlib')
optdepends=('python-sphinx>=0.6.3'
'python-numpydoc: Provides support for Numpy-style docstring syntax'
'python-matplotlib: Provides matplotlib extensions for inline plotting')
cd ${srcdir}/${_pyname}-${pkgver}
install -D -m644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -D -m644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
python setup.py install --root=${pkgdir} --prefix=/usr --optimize=1
}
|