[arch-commits] Commit in python-pyotp/trunk (PKGBUILD)

Levente Polyak anthraxx at archlinux.org
Sun May 9 10:17:46 UTC 2021


    Date: Sunday, May 9, 2021 @ 10:17:46
  Author: anthraxx
Revision: 929027

upgpkg: python-pyotp 2.6.0-2

Modified:
  python-pyotp/trunk/PKGBUILD

----------+
 PKGBUILD |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-05-09 10:13:52 UTC (rev 929026)
+++ PKGBUILD	2021-05-09 10:17:46 UTC (rev 929027)
@@ -5,13 +5,13 @@
 _pkgname=pyotp
 _gitcommit=a50b2701e1ecaaafc62b90a7424f602ce8edfceb
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Python library for generating and verifying one-time passwords'
 url='https://pyotp.readthedocs.io/'
 arch=('any')
 license=('MIT')
 depends=('python')
-makedepends=('git' 'python-setuptools')
+makedepends=('git' 'python-setuptools' 'python-sphinx' 'python-guzzle-sphinx-theme')
 options=('!makeflags')
 source=("git+https://github.com/pyotp/pyotp#commit=${_gitcommit}?signed")
 sha512sums=('SKIP')
@@ -25,6 +25,8 @@
 build() {
   cd ${_pkgname}
   python setup.py build
+  sphinx-build -b text docs docs/_build/text
+  sphinx-build -b man docs docs/_build/man
 }
 
 check() {
@@ -35,7 +37,9 @@
 package() {
   cd ${_pkgname}
   python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 README.rst ./docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 ./docs/_build/man/1/${_pkgname}.1 -t "${pkgdir}/usr/share/man/man1"
+  ln -s /usr/share/man/man1/${_pkgname}.1.gz "${pkgdir}/usr/share/man/man1/${pkgname}.1.gz"
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 



More information about the arch-commits mailing list