[arch-commits] Commit in python-baron/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Mon Nov 9 16:48:43 UTC 2020
Date: Monday, November 9, 2020 @ 16:48:42
Author: foutrelis
Revision: 747556
archrelease: copy trunk to community-staging-any
Added:
python-baron/repos/community-staging-any/
python-baron/repos/community-staging-any/PKGBUILD
(from rev 747555, python-baron/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: python-baron/repos/community-staging-any/PKGBUILD (from rev 747555, python-baron/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-09 16:48:42 UTC (rev 747556)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-baron
+pkgver=0.9
+pkgrel=4
+pkgdesc="Full Syntax Tree for python to make writing refactoring code a realist task"
+url="https://github.com/PyCQA/baron"
+license=('LGPL')
+arch=('any')
+depends=('python-rply')
+makedepends=('python-setuptools' 'python-pypandoc')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/baron/archive/$pkgver.tar.gz")
+sha512sums=('ed31bad1442b8d868ab9872f057db31ad8730654a7e8d49119c75d5631c881b074baf5754b0b0b5023dad62eda1f40461e4445321695248cfa3530b608d48c8e')
+
+build() {
+ cd baron-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd baron-$pkgver
+ python setup.py pytest
+}
+
+package() {
+ cd baron-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+}
More information about the arch-commits
mailing list