diff options
author | Dhruvin Gandhi <contact@dhruvin.dev> | 2021-12-13 08:59:38 +0530 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-13 03:38:35 +0000 |
commit | 405a9753ca5174ae285306c7544ae59e19e0f8d6 (patch) | |
tree | b9ed71ad14642252da378eae14b18e100a373374 | |
parent | 4916970125eefe39527f0c7f013122c34ead9119 (diff) | |
download | aports-patches/3802.tar.gz aports-patches/3802.tar.bz2 aports-patches/3802.tar.xz |
testing/py3-sphinx-autorun: add aportpatches/3802
-rw-r--r-- | testing/py3-sphinx-autorun/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/py3-sphinx-autorun/APKBUILD b/testing/py3-sphinx-autorun/APKBUILD new file mode 100644 index 0000000000..d19ac7cce3 --- /dev/null +++ b/testing/py3-sphinx-autorun/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Dhruvin Gandhi <contact@dhruvin.dev> +# Maintainer: Dhruvin Gandhi <contact@dhruvin.dev> +pkgname=py3-sphinx-autorun +_pyname=sphinx-autorun +pkgver=1.1.1 +pkgrel=0 +pkgdesc="Sphinx extension to attach the output of runblock directive to the document" +url="https://github.com/WhyNotHugo/sphinx-autorun" +arch="noarch" +license="BSD-2-Clause" +depends="python3 py3-sphinx" +makedepends="py3-setuptools py3-setuptools_scm" +options="!check" # no tests +source="https://files.pythonhosted.org/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums=" +cfe99a9cd249d142fa52986964bca7fa392d15036e69f504b3ea0fdabd37a7c43329101df7cb5d02ff614b9da9cbef15a39f519bf416daa0589829fb7b21a482 sphinx-autorun-1.1.1.tar.gz +" |