Package Details: python-posix_ipc 1.1.1-1

Git Clone URL: https://aur.archlinux.org/python-posix_ipc.git (read-only, click to copy)
Package Base: python-posix_ipc
Description: POSIX IPC primitives (semaphores, shared memory and message queues) for Python
Upstream URL: https://github.com/osvenskan/posix_ipc
Licenses: BSD
Submitter: tom5760
Maintainer: mroethke
Last Packager: mroethke
Votes: 5
Popularity: 0.000000
First Submitted: 2009-12-13 23:55 (UTC)
Last Updated: 2024-03-12 10:32 (UTC)

Latest Comments

fmotsch commented on 2021-03-01 05:22 (UTC)

I'm no longer using Arch in favor for NetBSD. That's why I disowned the package.

haawda commented on 2021-02-25 16:06 (UTC)

please update, change arch to 'x86_64' and add a license file.


# Maintainer: Frank Motsch <frank@motschsoft.de>
pkgname=python-posix_ipc
pkgver=1.0.5
pkgrel=1
pkgdesc="POSIX IPC primitives (semaphores, shared memory and message queues) for Python"
arch=('x86_64')
url="http://semanchuk.com/philip/posix_ipc/"
license=('BSD')
depends=('python')
makedepends=('python-distribute')
options=(!emptydirs)
source=("http://semanchuk.com/philip/posix_ipc/posix_ipc-$pkgver.tar.gz")
sha1sums=('08b095e560b7514b9e2b7de2d791c4f9d578cda9')

package() {
  cd "$srcdir/posix_ipc-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

fmotsch commented on 2015-04-18 08:42 (UTC)

done

fmotsch commented on 2015-04-18 08:08 (UTC)

Upstream raised their version to 1.0.0. So I'll do the 2 things together and provide a python2-posix_ipc (if nobody else did it before).

tom5760 commented on 2015-04-17 15:15 (UTC)

You can probably pretty easily modify this PKGBUILD and submit it to the AUR yourself to get this.

sarahetmoi commented on 2015-04-17 11:12 (UTC)

I want the python2 library Please make "python2-posix_ipc".

tom5760 commented on 2013-09-29 19:23 (UTC)

Ok, disowned.

fmotsch commented on 2013-09-29 19:14 (UTC)

I'd like to maintain it.

tom5760 commented on 2013-09-29 15:43 (UTC)

I've just updated the package, seems to work for me. I don't actually use this package really anymore, if you (or anyone else) is interested in maintaining it, let me know.

fmotsch commented on 2013-09-21 06:32 (UTC)

This package doesn't work. I suggest doing it in a similar way is in python-sysv-ipc. Since the source obviously comes from the same developer but the PKGBUILDs are maintained by different contributors the PKGBUILDs differ. The PKGBUILD would look as follows : ============================================================================= pkgname=python-posix-ipc pkgver=0.9.3 pkgrel=1 pkgdesc="POSIX IPC primitives (semaphores, shared memory and message queues) for Python" arch=('any') url="http://semanchuk.com/philip/posix_ipc/" license=('BSD') groups=() depends=('python') makedepends=('python-distribute') options=(!emptydirs) source=("http://semanchuk.com/philip/posix_ipc/posix_ipc-$pkgver.tar.gz") md5sums=('f0ab54a88e2a18beb012a5d1631826ac') package() { cd "$srcdir/posix_ipc-$pkgver" python setup.py install --root="$pkgdir/" --optimize=1 } ============================================================================= What's not working in the current package is when the user issues makepkg -s as non-root user the directory pkg is created without permissions causing a failure. Thus the standard procedure in creating a package will fail, e.g. makepkg -s [user] pacman -U <package> [as root] Anyway maintaining this package similar to the one python-sysv-ipc would be appropriate.