aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-07-10 20:47:27 +0200
committerDanilo M. <danix@danix.xyz>2026-07-10 20:47:27 +0200
commitf0d66a9c421a4911cf182aea43a107fcb146ebfe (patch)
tree171c7612ced3708e5ad60ba89f837f9eaf362523
parent3128547e4235e1ad9cc573d0a337401efcf65927 (diff)
downloadmy-slackbuilds-f0d66a9c421a4911cf182aea43a107fcb146ebfe.tar.gz
my-slackbuilds-f0d66a9c421a4911cf182aea43a107fcb146ebfe.zip
click: fix doc install for 8.4.2 (rst docs moved to md)main
Upstream 8.4.2 dropped CHANGES.rst and converted docs/*.rst to markdown. The old cp list failed on the missing paths and was masked with || true, which silently shipped incomplete docs. Copy the files 8.4.2 actually has (LICENSE.txt, README.md, docs/*.md) and drop the || true mask.
-rw-r--r--click/click.SlackBuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/click/click.SlackBuild b/click/click.SlackBuild
index 6e997bd..a3e3dd4 100644
--- a/click/click.SlackBuild
+++ b/click/click.SlackBuild
@@ -73,7 +73,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a CHANGES.rst LICENSE.txt README.md docs/*.rst $PKG/usr/doc/$PRGNAM-$VERSION || true
+cp -a LICENSE.txt README.md docs/*.md $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install