author | Chih-Hsuan Yen
<yan12125@archlinux.org> 2020-10-05 16:27:46 UTC |
committer | Chih-Hsuan Yen
<yan12125@archlinux.org> 2020-10-05 16:27:46 UTC |
parent | 3823e1f0045f2a4a605610fa41e47b013d9fd96e |
PKGBUILD | +8 | -13 |
diff --git a/PKGBUILD b/PKGBUILD index 435532e..9621444 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org> pkgname=nvchecker -pkgver=2.0 +pkgver=2.1 pkgrel=1 pkgdesc="New version checker for software releases" arch=('any') @@ -10,24 +10,20 @@ url="https://github.com/lilydjwg/nvchecker" license=('MIT') # setuptools is in depends as pkg_resources is used in sortversion.py depends=('python' 'python-setuptools' 'python-toml' 'python-structlog' 'python-appdirs' 'python-tornado' 'python-pycurl') +makedepends=('python-docutils') checkdepends=('python-pytest' 'python-pytest-asyncio' 'python-pytest-httpbin' 'python-flaky' 'git') optdepends=( 'pyalpm: allow using "sort_version_key = vercmp" in configuration files' 'git: support for git repositories' ) -source=("https://github.com/lilydjwg/nvchecker/archive/v$pkgver/$pkgname-$pkgver.tar.gz" - "$pkgname-exclude-docs.patch::https://github.com/lilydjwg/nvchecker/commit/b3bc7ec04975ab43a651b78cd708e8c32f974293.patch") -sha512sums=('1ae9b52c01ac683e5f74d9a10b7b26d5bad62b54a905f9372afea31fc084f4ff6e426a01634b0ff040270d1dff256f8385426bfe470d434a7f694446f1656ebb' - 'f6a131501d3249e6de23b345d9be70dc7209a638af50bcb9c4e5928f9d19ef85e377bdc6ca97dcc90cc868859f9bfc35c8e3a6cd1abf9f5c022e894119d6cb32') - -prepare() { - cd nvchecker-$pkgver - patch -Np1 -i ../$pkgname-exclude-docs.patch -} +source=("https://github.com/lilydjwg/nvchecker/archive/v$pkgver/$pkgname-$pkgver.tar.gz") +sha512sums=('c9c000b0b648996888a7263fb722779287b5d94e4eb377caf115baa3d4efc9c7c334c1ead43855df057801a22cc86021a314b7c987f0b5596eee972526aba7f9') build() { cd nvchecker-$pkgver python setup.py build + + make -C docs man } check() { @@ -44,9 +40,8 @@ package() { # bash completion scripts & docs install -Dm644 scripts/nvtake.bash_completion "$pkgdir"/usr/share/bash-completion/completions/nvtake install -Dm644 docs/usage.rst -t "$pkgdir"/usr/share/doc/$pkgname/ - # Installed with a different filename as it is renamed soon after the release - # https://github.com/lilydjwg/nvchecker/commit/854399a30aaafed37bdfcf2c8fe561f4702124b7 - install -Dm644 sample_source.toml "$pkgdir"/usr/share/doc/$pkgname/sample_config.toml + install -Dm644 sample_config.toml -t "$pkgdir"/usr/share/doc/$pkgname/ + install -Dm644 docs/_build/man/nvchecker.1 -t "$pkgdir"/usr/share/man/man1/ } # vim:set ts=2 sw=2 et: