[arch-commits] Commit in python-blessed/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Sun Mar 6 15:34:01 UTC 2022


    Date: Sunday, March 6, 2022 @ 15:34:01
  Author: felixonmars
Revision: 1142404

archrelease: copy trunk to community-staging-any

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

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

Copied: python-blessed/repos/community-staging-any/PKGBUILD (from rev 1142403, python-blessed/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2022-03-06 15:34:01 UTC (rev 1142404)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Tatsuyuki Ishi <ishitatsuyuki at gmail.com>
+
+pkgname=python-blessed
+pkgver=1.19.1
+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=7078fadc7502cda371f848a369fecbe0e47e4ee4
+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 py310
+}
+
+package() {
+  cd blessed
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list