[arch-commits] Commit in python-pillow/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Mon Nov 9 17:07:38 UTC 2020
Date: Monday, November 9, 2020 @ 17:07:38
Author: foutrelis
Revision: 747778
archrelease: copy trunk to community-staging-x86_64
Added:
python-pillow/repos/community-staging-x86_64/
python-pillow/repos/community-staging-x86_64/PKGBUILD
(from rev 747777, python-pillow/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: python-pillow/repos/community-staging-x86_64/PKGBUILD (from rev 747777, python-pillow/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-11-09 17:07:38 UTC (rev 747778)
@@ -0,0 +1,49 @@
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: minder
+
+pkgname=python-pillow
+pkgver=7.2.0
+pkgrel=2
+_appname=Pillow
+_py3basever=3.9
+pkgdesc="Python Imaging Library (PIL) fork."
+arch=('x86_64')
+url="https://python-pillow.github.io/"
+license=('BSD')
+depends=('python' 'lcms2' 'libtiff' 'openjpeg2' 'libimagequant' 'libxcb')
+optdepends=('freetype2: for the ImageFont module'
+ 'libraqm: for complex text scripts'
+ 'libwebp: for webp images'
+ 'tk: for the ImageTK module'
+ 'python-olefile: OLE2 file support'
+ 'python-pyqt5: for the ImageQt module')
+makedepends=('python-setuptools' 'freetype2' 'libraqm' 'libwebp' 'tk')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz")
+md5sums=('3da1c992ce9fcc67597d83036f591712')
+
+prepare() {
+ cd "$srcdir/$_appname-$pkgver"
+}
+
+build() {
+ cd "$srcdir/$_appname-$pkgver"
+ python setup.py build
+}
+
+check() {
+ cd "$srcdir/$_appname-$pkgver"
+
+ export PYTHONPATH="$PWD/build/lib.linux-$CARCH-${_py3basever%m}"
+ python selftest.py
+ pytest -k 'not test_complex_unicode_text and not TestImageFont'
+}
+
+package() {
+ cd "$srcdir/$_appname-$pkgver"
+ python3 setup.py install --root="$pkgdir/" --optimize=1
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+ install -dm755 "$pkgdir/usr/include/python$_py3basever/"
+ install -m644 -t "$pkgdir/usr/include/python$_py3basever/" src/libImaging/*.h
+}
More information about the arch-commits
mailing list