Package Details: python-pyvips 2.2.2-2

Git Clone URL: https://aur.archlinux.org/python-pyvips.git (read-only, click to copy)
Package Base: python-pyvips
Description: Python binding for libvips using cffi
Upstream URL: https://github.com/libvips/pyvips
Keywords: libvips python pyvips vips
Licenses: MIT
Submitter: hxss
Maintainer: aliu (hottea)
Last Packager: hottea
Votes: 2
Popularity: 0.010495
First Submitted: 2020-11-28 16:09 (UTC)
Last Updated: 2024-03-06 14:40 (UTC)

Latest Comments

« First ‹ Previous 1 2

motherofmilk commented on 2021-08-13 19:26 (UTC)

I updated the package to use v2.1.15 and fixed the LICENSE issue.

hxss commented on 2020-12-02 22:24 (UTC) (edited on 2020-12-02 22:24 (UTC) by hxss)

FirstAirBender, why you remove pkgver function?

FirstAirBender commented on 2020-12-02 00:56 (UTC)

Proposed PKGBUILD

# Maintainer: Sergey Khobta <hxss@ya.ru>

pipname=pyvips
pkgname=python-$pipname
pkgver=2.1.13
pkgrel=3
pkgdesc="binding for the libvips image processing library, API mode"
arch=(any)
url="https://github.com/libvips/pyvips"
license=(MIT)
depends=("libvips" "python" "python-cffi" "python-pkgconfig")
makedepends=("python-pip")

package() {
    PIP_CONFIG_FILE=/dev/null pip install "${pipname}==${pkgver}" \
        --root=$pkgdir \
        --isolated \
        --no-user \
        --no-deps \
        --ignore-installed \
        --quiet

    python -O -m compileall "$pkgdir"
}