Package Details: python-sphinx_design-doc 0.6.1-1

Git Clone URL: https://aur.archlinux.org/python-sphinx_design.git (read-only, click to copy)
Package Base: python-sphinx_design
Description: Documentation for sphinx_design
Upstream URL: https://sphinx-design.readthedocs.io
Licenses: MIT
Submitter: Universebenzene
Maintainer: Universebenzene
Last Packager: Universebenzene
Votes: 2
Popularity: 0.000009
First Submitted: 2022-06-17 04:06 (UTC)
Last Updated: 2024-10-25 03:22 (UTC)

Latest Comments

gesh commented on 2025-01-28 14:38 (UTC)

It's nicer to have prepare() be idempotent so even if the old srcdir is still around the build still works. Also, why are you shipping an entire sphinx-quickstart makefile? It'd be clearer to just extract the command run for make -C doc html directly into the PKGBUILD.

So either:

if test -f docs/Makefile; then
    diff docs/Makefile "$srcdir"/Makefile && return
    printf 'docs/Makefile differs from our %s/Makefile\n' "$srcdir"
    exit 1
else
    ln -s ${srcdir}/Makefile docs
fi

or

env -C docs sphinx-build -b html -d _build/doctrees . _build/html

gesh commented on 2024-12-23 14:56 (UTC)

Note: Package needs to be rebuilt for Python 3.13 (a bump to pkgrel suffices)

Universebenzene commented on 2023-12-19 04:09 (UTC)

@carlosal1015 While this package was submitted 15 months earlier than yours 😶

So should I use provides variable to refer your package or do we need a merging?

carlosal1015 commented on 2023-12-19 03:36 (UTC)

Duplicate https://aur.archlinux.org/packages/python-sphinx-design ?

anonion commented on 2023-03-13 19:26 (UTC)

Had issues updating my system this morning. Needed to change the depends to depends=('python-sphinx<7')

Seems that there should be no problems with sphinx version 6. https://github.com/executablebooks/sphinx-design/pull/106 & https://github.com/executablebooks/sphinx-design/issues/118#issuecomment-1461967898