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

Evangelos Foutras foutrelis at archlinux.org
Sat Jun 30 17:58:51 UTC 2018


    Date: Saturday, June 30, 2018 @ 17:58:51
  Author: foutrelis
Revision: 348794

archrelease: copy trunk to community-staging-any

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

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

Copied: python-blessings/repos/community-staging-any/PKGBUILD (from rev 348793, python-blessings/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-06-30 17:58:51 UTC (rev 348794)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Andrey Mikhaylenko <neithere at gmail dot com>
+
+pkgbase=python-blessings
+pkgname=(python-blessings python2-blessings)
+_pkgname=blessings
+pkgver=1.6.1
+pkgrel=2
+pkgdesc="A thin, practical wrapper around terminal coloring, styling, and positioning"
+url="https://github.com/erikrose/blessings"
+arch=('any')
+license=('MIT')
+depends=('python')
+makedepends=('python-distribute' 'python2-distribute')
+#options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/b/$_pkgname/$_pkgname-$pkgver.tar.gz")
+md5sums=('548a69d43c991fa85fdaa24806884e7b')
+
+prepare() {
+  cd "$srcdir"
+  cp -r blessings-$pkgver blessings2-$pkgver
+}
+
+package_python-blessings() {
+  cd "$srcdir/blessings-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-blessings/LICENSE"
+}
+
+package_python2-blessings() {
+  depends=('python2')
+  cd "$srcdir/blessings2-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-blessings/LICENSE"
+}
+



More information about the arch-commits mailing list