Package Details: i3ipc-python-git r268-1

Git Clone URL: https://aur.archlinux.org/i3ipc-python-git.git (read-only, click to copy)
Package Base: i3ipc-python-git
Description: An improved Python library to control i3wm
Upstream URL: https://github.com/acrisci/i3ipc-python
Licenses: custom:BSD
Conflicts: i3ipc-python
Provides: i3ipc-python
Submitter: nfnty
Maintainer: None
Last Packager: nfnty
Votes: 15
Popularity: 0.000000
First Submitted: 2014-10-21 23:35 (UTC)
Last Updated: 2019-06-07 12:17 (UTC)

Dependencies (4)

Required by (5)

Sources (1)

Latest Comments

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

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