diff options
Diffstat (limited to 'python/cryptography/cryptography.SlackBuild')
-rw-r--r-- | python/cryptography/cryptography.SlackBuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/python/cryptography/cryptography.SlackBuild b/python/cryptography/cryptography.SlackBuild index 1b3de44f9fac..f62a8e83d34a 100644 --- a/python/cryptography/cryptography.SlackBuild +++ b/python/cryptography/cryptography.SlackBuild @@ -26,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=cryptography -VERSION=${VERSION:-43.0.1} -BUILD=${BUILD:-2} +VERSION=${VERSION:-43.0.3} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} VSBUILD=${VSBUILD:-1} @@ -81,6 +81,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +sed -i "s|!=74.1.2,||g" pyproject.toml +sed -i "s|,!=75.2.0||g" pyproject.toml + # prevent cargo from using the network. # this only works because we have a vendored sources tarball with # everything cargo would have downloaded. @@ -107,7 +110,7 @@ python3 -m installer -d "$PKG" dist/*.whl find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -rm -rf docs/_static/ # 20220408 bkw: empty dir +rm -rf docs/_static/ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -ar LICENSE* *.rst docs/ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |