mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-30 22:01:42 +01:00
py-setuptools includes the pkg_resources which is used by pygments to discover and load plugins. It is therefore insufficient to include it only as a build dependency. Also python-dev is only required as a build dependency when building c libs against python, not for packagaging plain python modules.
63 lines
1.9 KiB
Plaintext
63 lines
1.9 KiB
Plaintext
# Contributor: Peter Bui <pnutzh4x0r@gmail.com>
|
|
# Maintainer: Matt Smith <mcs@darkregion.net>
|
|
pkgname=py-pygments
|
|
_pkgname=Pygments
|
|
pkgver=2.0.2
|
|
pkgrel=2
|
|
pkgdesc="A syntax highlighting package written in Python."
|
|
url="http://pygments.org/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python py-setuptools"
|
|
makedepends=""
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root "$pkgdir" || return 1
|
|
}
|
|
|
|
doc() {
|
|
cd "$_builddir"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname || return 1
|
|
for _doc in AUTHORS CHANGES LICENSE TODO; do
|
|
install -Dm644 $_doc "$subpkgdir"/usr/share/doc/$pkgname/$_doc \
|
|
|| return 1
|
|
done
|
|
|
|
install -Dm644 doc/pygmentize.1 \
|
|
"$subpkgdir"/usr/share/man/man1/pygmentize.1 || return 1
|
|
|
|
# Note: The documentation in the doc directory needs to be generated
|
|
# by py-sphinx
|
|
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/docs || return 1
|
|
cp -R ./doc/* "$subpkgdir"/usr/share/doc/$pkgname/docs/ || return 1
|
|
chmod -R 644 "$subpkgdir"/usr/share/doc/$pkgname/docs/ || return 1
|
|
rm -f "$subpkgdir"/usr/share/doc/$pkgname/docs/make.bat || return 1
|
|
rm -f "$subpkgdir"/usr/share/doc/$pkgname/docs/pygmentize.1 || return 1
|
|
|
|
# Fix subdir perms
|
|
find "$subpkgdir"/usr/share/doc/$pkgname/ -type d \
|
|
-exec chmod 755 '{}' \; || return 1
|
|
default_doc
|
|
}
|
|
|
|
md5sums="238587a1370d62405edabd0794b3ec4a Pygments-2.0.2.tar.gz"
|
|
sha256sums="7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51 Pygments-2.0.2.tar.gz"
|
|
sha512sums="b58e2cc535ba3f1fda7cb147e12af128bc2755de56cf465f8f1d642730eaef50c06551cc4cc44f25f726b00f3f1c9c2078977233b11c0b6a7e1add6a4069c27e Pygments-2.0.2.tar.gz"
|