[arch-commits] Commit in python-pyinotify/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Fri Oct 25 15:55:55 UTC 2019
Date: Friday, October 25, 2019 @ 15:55:54
Author: foutrelis
Revision: 519279
archrelease: copy trunk to community-staging-any
Added:
python-pyinotify/repos/community-staging-any/
python-pyinotify/repos/community-staging-any/PKGBUILD
(from rev 519278, python-pyinotify/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: python-pyinotify/repos/community-staging-any/PKGBUILD (from rev 519278, python-pyinotify/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-25 15:55:54 UTC (rev 519279)
@@ -0,0 +1,55 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+# Contributor: Evangelos Foutras <foutrelis at gmail.com>
+
+pkgname=('python-pyinotify' 'python2-pyinotify')
+pkgver=0.9.6
+pkgrel=5
+pkgdesc='Python module used for monitoring filesystems events on Linux platforms with inotify.'
+arch=('any')
+url="https://github.com/seb-m/pyinotify"
+license=('custom:MIT')
+makedepends=('python' 'python2')
+source=("https://github.com/seb-m/pyinotify/archive/${pkgver}.tar.gz")
+md5sums=('33f4e599c22a3ac31b684335b4a535a0')
+
+build() {
+ cp -r $srcdir/pyinotify-$pkgver $srcdir/pyinotify2-$pkgver
+
+ cd $srcdir/pyinotify2-$pkgver
+
+ python2 setup.py build
+
+ cd $srcdir/pyinotify-$pkgver
+
+ python3 setup.py build
+}
+
+package_python-pyinotify() {
+ depends=('python')
+
+ cd $srcdir/pyinotify-$pkgver
+
+ python3 setup.py install --root=${pkgdir} -O1
+
+ install -d ${pkgdir}/usr/share/licenses/python-pyinotify
+ install -m644 COPYING \
+ ${pkgdir}/usr/share/licenses/python-pyinotify
+}
+
+package_python2-pyinotify() {
+ depends=('python2')
+ replaces=('pyinotify')
+
+ cd $srcdir/pyinotify2-$pkgver
+
+ sed \
+ -e 's_#!/usr/bin/env python_&2_' \
+ -i python2/pyinotify.py
+
+ python2 setup.py install --root=${pkgdir} -O1
+
+ install -d ${pkgdir}/usr/share/licenses/python2-pyinotify
+ install -m644 COPYING \
+ ${pkgdir}/usr/share/licenses/python2-pyinotify
+}
More information about the arch-commits
mailing list