mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-04 23:42:07 +01:00
60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
# Contributor: Matt Smith <mcs@darkregion.net>
|
|
# Maintainer: Matt Smith <mcs@darkregion.net>
|
|
pkgname=py3-docutils
|
|
pkgver=0.16
|
|
pkgrel=3
|
|
pkgdesc="Documentation Utilities for Python3"
|
|
url="https://pypi.python.org/pypi/docutils"
|
|
arch="noarch"
|
|
license="BSD-2-Clause AND GPL-3.0-or-later AND Python-2.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
subpackages="$pkgname-doc::noarch"
|
|
source="https://files.pythonhosted.org/packages/source/d/docutils/docutils-$pkgver.tar.gz"
|
|
builddir="$srcdir/docutils-$pkgver"
|
|
|
|
replaces="py-docutils" # Backwards compatibility
|
|
provides="py-docutils=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 test/alltests.py
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
|
|
# Remove .py extension and add version suffix to executable files.
|
|
local path; for path in "$pkgdir"/usr/bin/*.py; do
|
|
mv "$path" "${path/.py/-3}"
|
|
done
|
|
|
|
cd "$pkgdir"/usr/bin
|
|
local bin; for bin in *-3; do
|
|
ln -s "$bin" "$pkgdir"/usr/bin/"${bin/-3/}"
|
|
done
|
|
}
|
|
|
|
doc() {
|
|
replaces=""
|
|
provides=""
|
|
pkgdesc="$pkgdesc (documentation)"
|
|
local docdir="$subpkgdir/usr/share/doc/$pkgname"
|
|
local licdir="$subpkgdir/usr/share/licenses/$pkgname"
|
|
|
|
cd "$builddir"
|
|
|
|
mkdir -p "$docdir"
|
|
cp -R docs/* "$docdir"/
|
|
cp ./*.txt "$docdir"/
|
|
|
|
mkdir -p "$licdir"
|
|
rm -f licenses/docutils.conf
|
|
cp licenses/* "$licdir"/
|
|
}
|
|
|
|
sha512sums="4e0c6662924cac6b8f28bb77a4f50eafd637c1083990a23dbd905d8a05362a18dae96e63408ed43b595b693ca755c7961d1282129d3215ed3774af0dddcc0466 docutils-0.16.tar.gz"
|