[arch-commits] Commit in python-ordered-set/repos (testing-any testing-any/PKGBUILD)

Felix Yan felixonmars at archlinux.org
Sun Jul 19 11:11:00 UTC 2020


    Date: Sunday, July 19, 2020 @ 11:11:00
  Author: felixonmars
Revision: 392280

archrelease: copy trunk to testing-any

Added:
  python-ordered-set/repos/testing-any/
  python-ordered-set/repos/testing-any/PKGBUILD
    (from rev 392279, python-ordered-set/trunk/PKGBUILD)

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

Copied: python-ordered-set/repos/testing-any/PKGBUILD (from rev 392279, python-ordered-set/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2020-07-19 11:11:00 UTC (rev 392280)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Tobias Roettger <toroettg at gmail.com>
+
+pkgname=python-ordered-set
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='A MutableSet that remembers its order, so that every entry has an index'
+arch=('any')
+url="https://github.com/LuminosoInsight/ordered-set"
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/o/ordered-set/ordered-set-$pkgver.tar.gz")
+md5sums=('5d88f3870c32d4868b28c8fe833f7e74')
+
+build() {
+  cd ordered-set-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd ordered-set-$pkgver
+  pytest --doctest-modules test.py ordered_set.py README.md --doctest-glob=README.md --ignore=setup.py
+}
+
+package() {
+  cd ordered-set-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 MIT-LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list