Date: Monday, November 9, 2020 @ 16:58:11
  Author: felixonmars
Revision: 747742

archrelease: copy trunk to community-staging-any

Added:
  python-blessed/repos/community-staging-any/
  python-blessed/repos/community-staging-any/PKGBUILD
    (from rev 747741, python-blessed/trunk/PKGBUILD)

----------+
 PKGBUILD |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

Copied: python-blessed/repos/community-staging-any/PKGBUILD (from rev 747741, 
python-blessed/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2020-11-09 16:58:11 UTC (rev 747742)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Tatsuyuki Ishi <[email protected]>
+
+pkgname=python-blessed
+pkgver=1.17.11
+pkgrel=2
+pkgdesc='A thin, practical wrapper around terminal styling, screen 
positioning, and keyboard input'
+arch=(any)
+url=https://github.com/jquast/blessed
+license=(GPL)
+depends=(
+  python-six
+  python-wcwidth
+)
+makedepends=(
+  git
+  python-setuptools
+)
+checkdepends=(
+  python-tox
+)
+_tag=5a8219087b51c183cf34952cdbcf1794d0c7ce59
+source=(git+https://github.com/jquast/blessed.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd blessed
+
+  git describe --tags
+}
+
+build() {
+  cd blessed
+
+  python setup.py build
+}
+
+check() {
+  cd blessed
+
+  tox -e py39
+}
+
+package() {
+  cd blessed
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to