Package Details: python-i3ipc-git r404.1662929327.9de8e88-1

Git Clone URL: https://aur.archlinux.org/python-i3ipc-git.git (read-only, click to copy)
Package Base: python-i3ipc-git
Description: An improved Python library to control i3wm
Upstream URL: https://github.com/altdesktop/i3ipc-python
Licenses: custom:BSD
Conflicts: python-i3ipc
Provides: i3ipc-python, i3ipc-python-git, python-i3ipc
Replaces: i3ipc-python-git
Submitter: A43
Maintainer: A43
Last Packager: A43
Votes: 16
Popularity: 0.74
First Submitted: 2026-04-29 16:56 (UTC)
Last Updated: 2026-05-03 08:31 (UTC)

Dependencies (4)

Required by (46)

Sources (1)

Pinned Comments

A43 commented on 2026-04-29 16:52 (UTC)

@BlackLotus89, I have adopted this package and applied your patch. I'll also be attempting to get this package renamed to python-i3ipc-git to follow Arch package naming guidelines.

Latest Comments

A43 commented on 2026-04-29 16:52 (UTC)

@BlackLotus89, I have adopted this package and applied your patch. I'll also be attempting to get this package renamed to python-i3ipc-git to follow Arch package naming guidelines.

BlackLotus89 commented on 2024-02-08 21:12 (UTC) (edited on 2024-02-08 21:12 (UTC) by BlackLotus89)

Should add

provides=("${pkgname[0]%-git}" "python-i3ipc")

to the PKGBUILD to avoid some problems/offer better conflict resolution

maxbaz commented on 2018-04-29 22:59 (UTC)

Submitted a non-git version on AUR in case anyone is interested.

nfnty commented on 2017-01-08 15:34 (UTC)

@S13ntist This is a git package. Do not flag this package unless it's broken. It's up to you to keep up with rebuilds and upstream.

nfnty commented on 2016-02-24 09:46 (UTC)

Issues and pull requests at https://github.com/nfnty/pkgbuilds

nfnty commented on 2015-05-06 15:14 (UTC)

Fixed. Please report back if everything works. Send a pull request over at https://github.com/nfnty/pkgbuilds otherwise. Thanks.

jebaum commented on 2015-05-06 09:41 (UTC)

also, python-setuptools is a dependency

jebaum commented on 2015-05-06 09:36 (UTC)

the pkgbuild is broken, this patch fixed it for me: @@ -24,11 +24,10 @@ pkgver() { build() { cd "$srcdir/$srcname" - ./autogen.sh --prefix=/usr - make + python setup.py build } package() { cd "$srcdir/$srcname" - make DESTDIR="$pkgdir" install + python setup.py install --root="${pkgdir}" --optimize=1 }