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

Evangelos Foutras foutrelis at gemini.archlinux.org
Thu Dec 2 23:41:30 UTC 2021


    Date: Thursday, December 2, 2021 @ 23:41:29
  Author: foutrelis
Revision: 1063257

archrelease: copy trunk to community-staging-any

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

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

Copied: python-wiktionaryparser/repos/community-staging-any/PKGBUILD (from rev 1063256, python-wiktionaryparser/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2021-12-02 23:41:29 UTC (rev 1063257)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-wiktionaryparser
+pkgver=0.0.97.20210613
+_commit=71f396ef6e915b3d1461a41e8a7aec35063d30bf
+pkgrel=2
+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