Date: Sunday, April 9, 2023 @ 13:31:41
  Author: felixonmars
Revision: 1443240

archrelease: copy trunk to community-staging-any

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

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

Copied: python-wiktionaryparser/repos/community-staging-any/PKGBUILD (from rev 
1443239, python-wiktionaryparser/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-09 13:31:41 UTC (rev 1443240)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Caleb Maclennan <[email protected]>
+
+pkgname=python-wiktionaryparser
+pkgver=0.0.97.20210613
+_commit=71f396ef6e915b3d1461a41e8a7aec35063d30bf
+pkgrel=4
+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 --skip-build
+
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+
+  rm -r "$pkgdir"/usr/{readme,requirements,testOutput}
+
+  local _py3_ver=$(python --version | cut -d " " -f2)
+  rm -rf "$pkgdir/usr/lib/python${_py3_ver%.*}/site-packages/tests"
+}

Reply via email to