Date: Wednesday, December 1, 2021 @ 14:55:22
Author: foutrelis
Revision: 1059534
archrelease: copy trunk to community-staging-any
Added:
python-rope/repos/community-staging-any/
python-rope/repos/community-staging-any/PKGBUILD
(from rev 1059533, python-rope/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: python-rope/repos/community-staging-any/PKGBUILD (from rev 1059533,
python-rope/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2021-12-01 14:55:22 UTC (rev 1059534)
@@ -0,0 +1,34 @@
+# Maintainer: Alexander F Rødseth <[email protected]>
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: Thomas Dziedzic <[email protected]>
+# Contributor: Nicolás de la torre <[email protected]>
+# Contributor: Ryan Coyner <[email protected]>
+# Contributor: Jens Maucher <[email protected]>
+
+pkgname=python-rope
+pkgver=0.22.0
+pkgrel=2
+pkgdesc='Refactoring library'
+arch=('any')
+url='https://github.com/python-rope/rope'
+license=('GPL')
+makedepends=('python' 'python-setuptools')
+source=("https://pypi.io/packages/source/r/rope/rope-$pkgver.tar.gz")
+sha256sums=('b00fbc064a26fc62d7220578a27fd639b2fad57213663cc396c137e92d73f10f')
+
+build(){
+ cd "rope-$pkgver"
+ python setup.py build
+}
+
+check(){
+ cd "rope-$pkgver"
+ python -m unittest
+}
+
+package() {
+ cd "rope-$pkgver"
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et: