Package Details: python-pyvips 2.2.3-1

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: aliu
Votes: 3
Popularity: 0.026281
First Submitted: 2020-11-28 16:09 (UTC)
Last Updated: 2024-06-20 01:49 (UTC)

Latest Comments

« First ‹ Previous 1 2

motherofmilk commented on 2021-10-04 13:26 (UTC)

Are you getting this when installing for the first time, or when updating? Could you clear your pikaur cache or try with a different aur helper?

hrehfeld commented on 2021-10-04 10:42 (UTC)

install: will not overwrite just-created '/home/hrehfeld/.cache/pikaur/build/python-pyvips/pkg/python-pyvips/usr/share/licenses/python-pyvips/LICENSE.txt' with '/home/hrehfeld/.cache/pikaur/build/python-pyvips/pkg/python-pyvips/usr/lib/python3.9/site-packages/pyvips-2.1.15.dist-info/LICENSE.txt'

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"
}