blob: 3e98714a2a1f1ccabb46d3c0d23edc59cbca2be3 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python-ablog
_pyname=${pkgbase#python-}
pkgname=("python-${_pyname}" "python-${_pyname}-doc")
pkgver=0.11.13
pkgrel=1
pkgdesc=" ABlog for blogging with Sphinx"
arch=('any')
url="https://ablog.readthedocs.io"
license=('MIT')
makedepends=('python-setuptools-scm'
'python-build'
'python-installer'
'python-sphinx-automodapi'
'python-nbsphinx'
'python-myst-parser'
'python-feedgen'
'python-invoke'
'python-watchdog'
'pandoc'
'graphviz') # wheel required by new setuptools
checkdepends=('python-pytest')
# 'python-defusedxml'
# sphinx dateutil <- feedgen already in makedepends, feedgen depends on lxml
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
#source=("https://github.com/sunpy/ablog/archive/refs/tags/v${pkgver}.tar.gz")
md5sums=('8eaa0b949726b5164a7ef31002e55f75')
#get_pyver() {
# python -c "import sys; print('$1'.join(map(str, sys.version_info[:2])))"
#}
#
prepare() {
cd ${srcdir}/${_pyname}-${pkgver}
# sed -i "/ignore:'imghdr'/a \ ignore:'sphinx.testing.path' is deprecated:sphinx.deprecation.RemovedInSphinx90Warning" setup.cfg
sed -i "/ignore:'imghdr'/a \ ignore:Argument \"parser_name\" will be removed:PendingDeprecationWarning:" setup.cfg
}
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python -m build --wheel --no-isolation
msg "Building Docs"
# ln -rs ${srcdir}/${_pyname}-${pkgver}/src/${_pyname/-/_}*egg-info \
# build/lib/${_pyname/-/_}-${pkgver}-py$(get_pyver .).egg-info
PYTHONPATH="../build/lib" make -C docs html
}
check() {
cd ${srcdir}/${_pyname}-${pkgver}
# PYTHONPATH="build/lib" pytest -vv -l -ra --color=yes -o console_output_style=count # || warning "Tests failed" # -vv -l -ra --color=yes -o console_output_style=count #
pytest || warning "Tests failed" # -vv -l -ra --color=yes -o console_output_style=count #
}
package_python-ablog() {
depends=('python-sphinx>=7.0.0'
'python-feedgen>=0.9.0'
'python-invoke>=1.6.0'
'python-watchdog>=2.1.0'
'python-packaging>=19.0') # dateutil pulled by feedgen; docutils by sphinx
optdepends=('ipython>=7.30.0: notebook'
'python-nbsphinx>=0.8.0: notebook'
'python-myst-parser>=0.17.0: markdown'
'python-ablog-doc: Documentation')
cd ${srcdir}/${_pyname}-${pkgver}
install -D -m644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -D -m644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
package_python-ablog-doc() {
pkgdesc="Documentation for ABlog"
cd ${srcdir}/${_pyname}-${pkgver}/docs/_build
install -D -m644 -t "${pkgdir}/usr/share/licenses/${pkgname}" ../../LICENSE.rst
install -d -m755 "${pkgdir}/usr/share/doc/${pkgbase}"
cp -a html "${pkgdir}/usr/share/doc/${pkgbase}"
}
|