diff --git a/fastfetch/alr.sh b/fastfetch/alr.sh index c90ca31..51a74fc 100644 --- a/fastfetch/alr.sh +++ b/fastfetch/alr.sh @@ -1,5 +1,5 @@ name='fastfetch' -version='2.27.1' +version='2.28.0' release='1' desc='Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way. It is written mainly in C, with performance and customizability in mind. Currently, Linux, Android, FreeBSD, MacOS and Windows 7+ are supported.' homepage='https://github.com/fastfetch-cli/fastfetch' diff --git a/python3-rich/alr.sh b/python3-rich/alr.sh index fa515d8..cf6a741 100644 --- a/python3-rich/alr.sh +++ b/python3-rich/alr.sh @@ -1,5 +1,5 @@ name='python3-rich' -version='13.8.1' +version='13.9.3' release='1' desc='Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal.' homepage='Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal' diff --git a/python3-sphinx/alr.sh b/python3-sphinx/alr.sh index 4d8a871..1cb0131 100644 --- a/python3-sphinx/alr.sh +++ b/python3-sphinx/alr.sh @@ -11,15 +11,15 @@ provides=('sphinx') conflicts=('sphinx') deps=( - python3-babel - python3-docutils - python3-imagesize - python3-jinja - python3-packaging - python3-pygments - python3-requests - python3-snowballstemmer - python3-sphinx-alabaster-theme + 'python3-babel' + 'python3-docutils' + 'python3-imagesize' + 'python3-jinja' + 'python3-packaging' + 'python3-pygments' + 'python3-requests' + 'python3-snowballstemmer' + 'python3-sphinx-alabaster-theme' python3-sphinxcontrib-{{apple,dev,html}help,jsmath,qthelp,serializinghtml} ) @@ -62,12 +62,12 @@ check() { } package() { - cd $_name - python -m installer --destdir="$pkgdir" dist/*.whl + site_packages=$(python -c "import site; print(site.getsitepackages()[0])") + install -d "$pkgdir"/usr/share/licenses/$name + ln -s "$site_packages"/"$_name"-$version.dist-info/LICENSE.rst \ + "$pkgdir"/usr/share/licenses/$name/LICENSE.rst - # Symlink license file - local site_packages=$(python -c "import site; print(site.getsitepackages()[0])") - install -d "$pkgdir"/usr/share/licenses/python3-setuptools-scm - ln -s "$site_packages"/$_name-$version.dist-info/LICENSE \ - "$pkgdir"/usr/share/licenses/python3-setuptools-scm/LICENSE + cd "$_name" + python -m installer --destdir="$pkgdir" dist/*.whl + install -Dt "$pkgdir"/usr/share/man/man1 doc/_build/man/"$_name"-*.1 }