From d377f455addf3380d2fb153241e37ee72ecb16e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20T=C3=BD=C4=8D?= Date: Tue, 20 May 2025 22:11:03 +0200 Subject: [PATCH 1/2] Use readthedocs theme when on readthedocs --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index e7346be..aeb0d21 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -123,7 +123,7 @@ html_theme = 'alabaster' if ON_RTD: - html_theme = 'default' + html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the From 75fb02428f443988df548e651b3700bf2f0bf4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20T=C3=BD=C4=8D?= Date: Tue, 20 May 2025 22:15:17 +0200 Subject: [PATCH 2/2] Remove Archlinux package template In Archlinux, the package has a maintainer so any code in the project would just duplicate the effort --- resources/packages/arch/PKGBUILD.in | 48 ----------------------------- 1 file changed, 48 deletions(-) delete mode 100644 resources/packages/arch/PKGBUILD.in diff --git a/resources/packages/arch/PKGBUILD.in b/resources/packages/arch/PKGBUILD.in deleted file mode 100644 index 9efa3ac..0000000 --- a/resources/packages/arch/PKGBUILD.in +++ /dev/null @@ -1,48 +0,0 @@ -# This is an example PKGBUILD file. Use this as a start to creating your own, -# and remove these comments. For more information, see 'man PKGBUILD'. -# NOTE: Please fill out the license field for your package! If it is unknown, -# then please put 'unknown'. - -# Maintainer: Matěj Týč -pkgname=argbash -pkgver=@VERSION@ -pkgrel=@PKGREL@ -epoch= -pkgdesc="@DESC@" -arch=(any) -url="@URL@" -license=('BSD') -groups=() -depends=('autoconf') -makedepends=('make') -checkdepends=() -optdepends=() -provides=() -conflicts=() -replaces=() -backup=() -options=() -install= -changelog= -source=("https://github.com/matejak/$pkgname/archive/$pkgver.tar.gz" LICENSE) -noextract=() -sha256sums=('@SHA256SUM@' '@LIC_SHA256SUM@') -validpgpkeys=() - -build() { - true -} - -check() { - cd "$pkgname-$pkgver/resources" - make check -} - -package() { - LICENSES="$pkgdir/usr/share/licenses/$pkgname" - mkdir -p "$LICENSES" - cp LICENSE "$LICENSES" - - cd "$pkgname-$pkgver/resources" - make ROOT="$pkgdir" PREFIX="/usr" BASH_COMPLETION_DIRECTORY=/usr/share/bash-completion/completions/ INSTALL_COMPLETION=yes install -}