diff options
author | Klaus Alexander Seistrup | 2025-03-02 15:18:00 +0100 |
---|---|---|
committer | Klaus Alexander Seistrup | 2025-03-02 15:18:00 +0100 |
commit | 1380c285e37eef4724976a744e085b05eb97b9c9 (patch) | |
tree | 6ae11e80facf204c705c5c0e5f2cef917850dba2 | |
parent | 2d2c11bb67bff98ee52ca709759a1e34d063362e (diff) | |
download | aur-1380c285e37eef4724976a744e085b05eb97b9c9.tar.gz |
Add missing make dependency: python-setuptools
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,12 +1,13 @@ pkgbase = python-sphinx-markdown-tables pkgdesc = Sphinx extension for rendering tables written in markdown pkgver = 0.0.17 - pkgrel = 9 + pkgrel = 10 url = https://github.com/ryanfox/sphinx-markdown-tables arch = any license = GPL-3.0-or-later makedepends = python-build makedepends = python-installer + makedepends = python-setuptools makedepends = python-wheel depends = python depends = python-markdown @@ -2,11 +2,12 @@ # Maintainer: Klaus Alexander Seistrup <$(echo 0x1fd+d59decfa=40 | tr 0-9+a-f=x ka-i@p-u.l)> # Contributor: Luis Martinez <luis dot martinez at disroot dot org> +# Contributor: Vitalii Kuzhdin <vitaliikuzhdin at gmail dot com> pkgname='python-sphinx-markdown-tables' _pkgname="${pkgname##python-}" pkgver=0.0.17 -pkgrel=9 +pkgrel=10 arch=('any') license=('GPL-3.0-or-later') # SPDX-License-Identifier: GPL-3.0-or-later pkgdesc='Sphinx extension for rendering tables written in markdown' @@ -20,6 +21,7 @@ depends=( makedepends=( 'python-build' 'python-installer' + 'python-setuptools' 'python-wheel' ) |