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

Felix Yan felixonmars at gemini.archlinux.org
Fri Aug 13 12:26:02 UTC 2021


    Date: Friday, August 13, 2021 @ 12:26:02
  Author: felixonmars
Revision: 997971

archrelease: copy trunk to community-any

Added:
  python-wiktionaryparser/repos/community-any/
  python-wiktionaryparser/repos/community-any/PKGBUILD
    (from rev 997970, python-wiktionaryparser/trunk/PKGBUILD)

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

Copied: python-wiktionaryparser/repos/community-any/PKGBUILD (from rev 997970, python-wiktionaryparser/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2021-08-13 12:26:02 UTC (rev 997971)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-wiktionaryparser
+pkgver=0.0.97.20210613
+_commit=71f396ef6e915b3d1461a41e8a7aec35063d30bf
+pkgrel=1
+pkgdesc="A tool to parse word data from wiktionary.com into a JSON object"
+url="https://github.com/Suyash458/WiktionaryParser"
+license=('MIT')
+arch=('any')
+depends=('python-beautifulsoup4' 'python-requests')
+makedepends=('python-setuptools')
+checkdepends=('python-deepdiff' 'python-parameterized' 'python-pytest')
+source=("https://github.com/Suyash458/WiktionaryParser/archive/$_commit/$pkgname-$_commit.tar.gz")
+sha512sums=('533219d357c10e893cfc5504bd96dfbc34c1597afe98c4d20f7d49c1b66a8975636200f7c161ac116464df3a02ca9524aa63763c5dd804b516bf89274d4e94bb')
+
+prepare() {
+  cd WiktionaryParser-$_commit
+  sed -i 's/import mock/from unittest import mock/' tests/test_core.py
+}
+
+build() {
+  cd WiktionaryParser-$_commit
+  python setup.py build
+}
+
+check() {
+  cd WiktionaryParser-$_commit
+  pytest
+}
+
+package() {
+  cd WiktionaryParser-$_commit
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+
+  rm -r "$pkgdir"/usr/{readme,requirements,testOutput}
+}



More information about the arch-commits mailing list