[arch-commits] Commit in python-termstyle/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Jul 3 10:30:31 UTC 2018
Date: Tuesday, July 3, 2018 @ 10:30:31
Author: felixonmars
Revision: 350759
archrelease: copy trunk to community-staging-any
Added:
python-termstyle/repos/community-staging-any/
python-termstyle/repos/community-staging-any/PKGBUILD
(from rev 350758, python-termstyle/trunk/PKGBUILD)
----------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
Copied: python-termstyle/repos/community-staging-any/PKGBUILD (from rev 350758, python-termstyle/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-07-03 10:30:31 UTC (rev 350759)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-termstyle
+pkgname=(python-termstyle python2-termstyle)
+pkgver=0.1.11
+_commit=ed18c5ed4bfee21267843f758094a5620d5f7929
+pkgrel=2
+pkgdesc="Console colouring for python"
+url="https://github.com/timbertson/termstyle"
+license=('BSD')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/timbertson/termstyle/archive/$_commit.tar.gz")
+sha512sums=('02849055614caf37d3b836bef52b6c5ad281570ad5577aa253e079ecd3d82ed1f2168394edbf4760e1a9ba16e7f23aecd7191c39d3dc1de2aeb4ab9599b0717a')
+
+prepare() {
+ mv termstyle-{$_commit,$pkgver}
+ cp -a termstyle-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/termstyle-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/termstyle-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/termstyle-$pkgver
+ python test3.py
+
+ cd "$srcdir"/termstyle-$pkgver-py2
+ PYTHONIOENCODING=UTF-8 python2 test2.py
+}
+
+package_python-termstyle() {
+ depends=('python-setuptools')
+
+ cd termstyle-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-termstyle() {
+ depends=('python2-setuptools')
+
+ cd termstyle-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list