git » python-pyinotify.git » commit ae7bc67

Remove python2

author Jelle van der Waa
2020-02-13 17:22:20 UTC
committer Jelle van der Waa
2020-02-13 17:22:20 UTC
parent 9a1464a6a413ae23bceb0a7a3175cdc54997a5ed

Remove python2

PKGBUILD +8 -34

diff --git a/PKGBUILD b/PKGBUILD
index 257493d..b6135e9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,54 +2,28 @@
 # Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
 # Contributor: Evangelos Foutras <foutrelis@gmail.com>
 
-pkgname=('python-pyinotify' 'python2-pyinotify')
+pkgname=python-pyinotify
 pkgver=0.9.6
-pkgrel=6
+pkgrel=7
 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')
+depends=('python')
+makedepends=('python')
 source=("https://github.com/seb-m/pyinotify/archive/${pkgver}.tar.gz")
-md5sums=('33f4e599c22a3ac31b684335b4a535a0')
+sha512sums=('144db691c1cdfd4e52b838b8ed839b8d50d84d26a91a59b7460c3170f58a1c96b3ce4f51e6273835835291781215a87b8f2d2d87d1abf012e4c14b2cd4b3f4cf')
 
 build() {
-  cp -r $srcdir/pyinotify-$pkgver  $srcdir/pyinotify2-$pkgver
-
-  cd $srcdir/pyinotify2-$pkgver
-
-  python2 setup.py build
-
-  cd $srcdir/pyinotify-$pkgver
-
+  cd pyinotify-$pkgver
   python3 setup.py build
 }
 
-package_python-pyinotify() {
-  depends=('python')
-
-  cd $srcdir/pyinotify-$pkgver
-
+package() {
+  cd 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
-}