Date: Wednesday, December 17, 2014 @ 22:04:47 Author: arodseth Revision: 124051
Moving python-rope (30 votes in AUR) Added: python-rope/ python-rope/repos/ python-rope/repos/community-any/ python-rope/trunk/ python-rope/trunk/PKGBUILD ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Added: python-rope/trunk/PKGBUILD =================================================================== --- python-rope/trunk/PKGBUILD (rev 0) +++ python-rope/trunk/PKGBUILD 2014-12-17 21:04:47 UTC (rev 124051) @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 64151 2012-02-09 14:12:07Z arodseth $ +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Nicolás de la torre <[email protected]> +# Contributor: Ryan Coyner <[email protected]> +# Contributor: Jens Maucher <[email protected]> + +pkgname=python-rope +pkgver=0.9.4_1 +pkgrel=2 +pkgdesc='Refactoring library' +arch=('any') +url='http://pypi.python.org/pypi/rope_py3k' +license=('GPL') +depends=('python') +source=("http://pypi.python.org/packages/source/r/rope_py3k/rope_py3k-${pkgver/_/-}.tar.gz") +sha256sums=('feb95047cdb9d94e59414aefce7668920e35cba6d1e3c4d4390c2888c98207fa') + +build() { + cd "rope_py3k-${pkgver/_/-}" + + python setup.py build +} + +package() { + cd "rope_py3k-${pkgver/_/-}" + + python setup.py install --root="$pkgdir" --optimize=1 +} + +# vim:set ts=2 sw=2 et:
