Package Details: python-imageio 2.36.1-2

Git Clone URL: https://aur.archlinux.org/python-imageio.git (read-only, click to copy)
Package Base: python-imageio
Description: a Python library that provides an easy interface to read and write a wide range of image data
Upstream URL: https://github.com/imageio/imageio
Licenses: BSD
Submitter: Francois_B
Maintainer: leomao
Last Packager: leomao
Votes: 33
Popularity: 1.54
First Submitted: 2015-07-08 00:42 (UTC)
Last Updated: 2024-12-09 13:40 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

StefanH commented on 2019-04-27 04:56 (UTC)

Hi Leo, thanks for maintaining this package! Could you please add a small fix to prevent source file conflicts? Change

source=("https://github.com/imageio/imageio/archive/v${pkgver}.tar.gz")

to:

source=("$pkgname-$pkgver.tar.gz::https://github.com/imageio/imageio/archive/v${pkgver}.tar.gz")

so the downloaded file will have a package-specific name (see warning at https://wiki.archlinux.org/index.php/PKGBUILD#Sources).

leomao commented on 2019-03-02 03:42 (UTC)

Thanks for notifying me. Add it as an optional dependency.

oysstu commented on 2019-03-01 17:28 (UTC)

Usage of ffmpeg now seems to depend on a separate library. I've added it here https://aur.archlinux.org/packages/python-imageio-ffmpeg/

sl1pkn07 commented on 2019-01-25 18:00 (UTC)

BTW. you can talk with the python2-imageio maintainer and join the two packages in one? for use one pkgbuild for the two packages (split pkgbuild)

greetings

sl1pkn07 commented on 2019-01-25 17:56 (UTC)

if is only for download/install/uninstall dependencies. seems can be get rid it

greetings

leomao commented on 2019-01-05 03:00 (UTC) (edited on 2019-01-26 03:09 (UTC) by leomao)

@sl1pkn07 After checking what these binaries do, it seems that these binaries are just helper scripts to download/remove the binary dependencies: avbin, ffmpeg. These two dependencies are already listed in the optdepends. If one wants to use the binaries provided by imageio, one can install imageio via pip install --user (or install it in virtualenv) and download these dependencies instead of using this package.

So, I am going to remove them in PKGBUILD. What do you think?

sl1pkn07 commented on 2019-01-04 20:33 (UTC) (edited on 2019-01-04 20:35 (UTC) by sl1pkn07)

seems the binary

error: failed to commit transaction (conflicting files)
python-imageio: /usr/bin/imageio_download_bin exists in filesystem (owned by python2-imageio)
python-imageio: /usr/bin/imageio_remove_bin exists in filesystem (owned by python2-imageio)
Errors occurred, no packages were upgraded.

is also provided by python2-imageio

conrad784 commented on 2018-09-09 17:39 (UTC)

@Francois_B do you mind updating this package to 2.4.1 I wouldn't mind comaintaining this package.

oysstu commented on 2018-08-06 19:24 (UTC)

To update to 2.3.0, update the version number and replace .zip with .tar.gz in the source URL.

gypaetus commented on 2017-03-24 01:21 (UTC)

Please find below updated PKGBUILD # Contributor: Francois Boulogne <fboulogne at april dot org> # Maintainer: Francois Boulogne <fboulogne at april dot org> pkgname=python-imageio pkgver=2.1.2 pkgrel=1 pkgdesc="Library for reading and writing a wide range of image, video, scientific, and volumetric data formats" arch=('any') url="https://pypi.python.org/pypi/imageio/" license=('MIT') depends=('python' 'python-numpy' 'freeimage' 'ffmpeg' 'avbin') makedepends=('python-setuptools') optdepends=('python-astropy' 'simpleitk') source=("https://files.pythonhosted.org/packages/source/i/imageio/imageio-${pkgver}.zip") sha256sums=('89d7692d9f513aa21665af7de94948bc1ef110d812fa66c34bfd486590d986bb') package() { cd "$srcdir/imageio-$pkgver" python setup.py install --root="${pkgdir}" --optimize=1 } # vim:ts=2:sw=2:et: