update dependencies and add tests
This commit is contained in:
parent
85b8efb24e
commit
57d9ffe084
20
.SRCINFO
20
.SRCINFO
@ -3,18 +3,32 @@ pkgbase = mokuro
|
|||||||
pkgver = 0.2.2
|
pkgver = 0.2.2
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/kha-white/mokuro
|
url = https://github.com/kha-white/mokuro
|
||||||
arch = any
|
arch = x86_64
|
||||||
license = GPL3
|
license = GPL-3.0
|
||||||
|
checkdepends = python-pytest
|
||||||
makedepends = python-pip
|
makedepends = python-pip
|
||||||
makedepends = python-build
|
makedepends = python-build
|
||||||
makedepends = python-wheel
|
makedepends = python-wheel
|
||||||
makedepends = python-installer
|
makedepends = python-installer
|
||||||
|
makedepends = python-setuptools
|
||||||
depends = python>=3.6
|
depends = python>=3.6
|
||||||
depends = python-opencv
|
depends = python-opencv
|
||||||
depends = python-torch-summary
|
depends = python-torch-summary
|
||||||
depends = python-shapely
|
depends = python-shapely
|
||||||
depends = python-yattag
|
depends = python-yattag
|
||||||
optdepends = python-pytorch: for gpu acceleration
|
depends = python-tqdm
|
||||||
|
depends = python-loguru
|
||||||
|
depends = python-scipy
|
||||||
|
depends = python-pytorch
|
||||||
|
depends = python-torchvision
|
||||||
|
depends = python-pyclipper
|
||||||
|
depends = python-fire
|
||||||
|
depends = python-natsort
|
||||||
|
depends = python-numpy
|
||||||
|
depends = python-pillow>=7.1.2
|
||||||
|
depends = python-transformers>=4.25.0
|
||||||
|
depends = python-safetensors>=0.4.1
|
||||||
|
depends = python-manga-ocr
|
||||||
source = https://files.pythonhosted.org/packages/source/m/mokuro/mokuro-0.2.2.tar.gz
|
source = https://files.pythonhosted.org/packages/source/m/mokuro/mokuro-0.2.2.tar.gz
|
||||||
sha256sums = 7534d32d1e25ac7be8a828d328be9aceb06a05d3c3392721120410f4cff02fe3
|
sha256sums = 7534d32d1e25ac7be8a828d328be9aceb06a05d3c3392721120410f4cff02fe3
|
||||||
|
|
||||||
|
28
PKGBUILD
28
PKGBUILD
@ -4,23 +4,39 @@ _name=mokuro
|
|||||||
pkgver=0.2.2
|
pkgver=0.2.2
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Read Japanese manga inside browser with selectable text. "
|
pkgdesc="Read Japanese manga inside browser with selectable text. "
|
||||||
arch=('any')
|
arch=('x86_64')
|
||||||
url="https://github.com/kha-white/mokuro"
|
url="https://github.com/kha-white/mokuro"
|
||||||
license=('GPL3')
|
license=('GPL-3.0')
|
||||||
depends=(
|
depends=(
|
||||||
'python>=3.6'
|
'python>=3.6'
|
||||||
'python-opencv'
|
'python-opencv'
|
||||||
'python-torch-summary'
|
'python-torch-summary'
|
||||||
'python-shapely'
|
'python-shapely'
|
||||||
'python-yattag'
|
'python-yattag'
|
||||||
|
'python-tqdm'
|
||||||
|
'python-loguru'
|
||||||
|
'python-scipy'
|
||||||
|
'python-pytorch'
|
||||||
|
'python-torchvision'
|
||||||
|
'python-pyclipper'
|
||||||
|
'python-fire'
|
||||||
|
'python-natsort'
|
||||||
|
'python-numpy'
|
||||||
|
'python-pillow>=7.1.2'
|
||||||
|
'python-transformers>=4.25.0'
|
||||||
|
'python-safetensors>=0.4.1'
|
||||||
|
'python-manga-ocr'
|
||||||
)
|
)
|
||||||
optdepends=(
|
makedepends=('python-pip' 'python-build' 'python-wheel' 'python-installer' 'python-setuptools')
|
||||||
'python-pytorch: for gpu acceleration'
|
checkdepends=('python-pytest')
|
||||||
)
|
|
||||||
makedepends=('python-pip' 'python-build' 'python-wheel' 'python-installer')
|
|
||||||
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name//-/_}/${_name//-/_}-$pkgver.tar.gz")
|
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name//-/_}/${_name//-/_}-$pkgver.tar.gz")
|
||||||
sha256sums=('7534d32d1e25ac7be8a828d328be9aceb06a05d3c3392721120410f4cff02fe3')
|
sha256sums=('7534d32d1e25ac7be8a828d328be9aceb06a05d3c3392721120410f4cff02fe3')
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "$_name-$pkgver"
|
||||||
|
pytest -o addopts=""
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$_name-$pkgver"
|
cd "$_name-$pkgver"
|
||||||
python -m pip wheel . --no-deps --wheel-dir dist
|
python -m pip wheel . --no-deps --wheel-dir dist
|
||||||
|
Loading…
x
Reference in New Issue
Block a user