From dfa48314b8c775728e87f185f75bec712bf725f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=A5=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Thu, 24 Oct 2024 10:07:21 +0300 Subject: [PATCH] fastfetch, python3-rich, python3-sphinx --- fastfetch/alr.sh | 2 +- python3-rich/alr.sh | 2 +- python3-sphinx/alr.sh | 32 ++++++++++++++++---------------- 3 files changed, 18 insertions(+), 18 deletions(-) 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 }