libraries/rarfile: Version bump to 4.2
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
6222e28079
commit
b3a9b60b68
|
@ -3,11 +3,13 @@ RAR archive reader for Python.
|
|||
This is Python module for RAR archive reading. The interface
|
||||
is made as zipfile like as possible. Licensed under ISC
|
||||
license.
|
||||
- Supports both RAR 2.x and 3.x archives.
|
||||
- Supports both RAR3 and RAR5 format archives.
|
||||
- Supports multi volume archives.
|
||||
- Supports Unicode filenames.
|
||||
- Supports password-protected archives.
|
||||
- Supports archive and file comments.
|
||||
- Archive parsing and non-compressed files handled in pure Python code.
|
||||
- For compressed files runs ``unrar`` utility.
|
||||
- Works with both Python 2.x and 3.x.
|
||||
|
||||
NOTE: Can swap unrar dependency for unrar-free, with whatever
|
||||
limitations unrar-free has over the proprietary unrar.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Slackware build script for rarfile
|
||||
|
||||
# Copyright 2014-2019 Dimitris Zlatanidis Orestiada, Greece
|
||||
# Copyright 2023 Jeremy Hansen jebrhansen+SBo@gmail.com
|
||||
# Copyright 2023-2024 Jeremy Hansen <jebrhansen+SBo@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -26,7 +26,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=rarfile
|
||||
VERSION=${VERSION:-4.1}
|
||||
VERSION=${VERSION:-4.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -63,7 +63,6 @@ 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 {} \;
|
||||
|
||||
python2 setup.py install --root=$PKG
|
||||
python3 setup.py install --root=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="rarfile"
|
||||
VERSION="4.1"
|
||||
VERSION="4.2"
|
||||
HOMEPAGE="https://github.com/markokr/rarfile"
|
||||
DOWNLOAD="https://github.com/markokr/rarfile/archive/refs/tags/v4.1/rarfile-4.1.tar.gz"
|
||||
MD5SUM="8d5c4d1665148a979d6d5a5cb529da1d"
|
||||
DOWNLOAD="https://github.com/markokr/rarfile/archive/refs/tags/v4.2/rarfile-4.2.tar.gz"
|
||||
MD5SUM="19d557536f63d4894332a5746c09dfa7"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
REQUIRES="unrar"
|
||||
MAINTAINER="Jeremy Hansen"
|
||||
EMAIL="jebrhansen+SBo@gmail.com"
|
||||
|
|
Loading…
Reference in New Issue