Date: Friday, August 13, 2021 @ 12:25:42 Author: felixonmars Revision: 997970
addpkg: python-wiktionaryparser 0.0.97.20210613-1 Added: python-wiktionaryparser/ python-wiktionaryparser/repos/ python-wiktionaryparser/trunk/ python-wiktionaryparser/trunk/PKGBUILD ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Added: python-wiktionaryparser/trunk/PKGBUILD =================================================================== --- python-wiktionaryparser/trunk/PKGBUILD (rev 0) +++ python-wiktionaryparser/trunk/PKGBUILD 2021-08-13 12:25:42 UTC (rev 997970) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan <felixonm...@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} +}