diff options
author | B. Watson <urchlay@slackware.uk> | 2023-12-20 01:06:07 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-12-22 08:00:28 +0700 |
commit | 1daae877ba7de63669140fe90d310d51a0de21a9 (patch) | |
tree | 4684e9c95997cb785f60129fd2962aea410b5d28 | |
parent | 25fd618211deae7dcb5928590640fdb43efa1c83 (diff) |
network/transmission: Updated for version 4.0.5, fix manpages.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/transmission/transmission.SlackBuild | 13 | ||||
-rw-r--r-- | network/transmission/transmission.info | 6 |
2 files changed, 15 insertions, 4 deletions
diff --git a/network/transmission/transmission.SlackBuild b/network/transmission/transmission.SlackBuild index ef4b57e2159f9..5ccebeb9b784f 100644 --- a/network/transmission/transmission.SlackBuild +++ b/network/transmission/transmission.SlackBuild @@ -24,6 +24,7 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20231219 bkw: update for v4.0.5, minor man page tweaks. # 20230912 bkw: update for v4.0.4. # 20230510 bkw: update for v4.0.3. remove the warning about D-Bus from README, # it no longer applies (transmission-gtk works without it). @@ -51,7 +52,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=transmission -VERSION=${VERSION:-4.0.4} +VERSION=${VERSION:-4.0.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -125,6 +126,16 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ +# 20231219 bkw: make the man pages slightly nicer looking: replace +# 'BSD General Commands Manual' with 'SlackBuilds.org', and replace +# the 'BSD' at the bottom with the version number. +for i in $( find . -maxdepth 2 -name 'transmission*.1' ); do + sed -i -e '/^\.Os/d' \ + -e '/^\.Dt/s,1 *$,\\\&1 "SlackBuilds.org",' \ + -e '/^\.Dt/a.Os '$VERSION \ + $i +done + mkdir -p build cd build cmake \ diff --git a/network/transmission/transmission.info b/network/transmission/transmission.info index 2879d2e04d969..89363cfcd1741 100644 --- a/network/transmission/transmission.info +++ b/network/transmission/transmission.info @@ -1,8 +1,8 @@ PRGNAM="transmission" -VERSION="4.0.4" +VERSION="4.0.5" HOMEPAGE="https://www.transmissionbt.com/" -DOWNLOAD="https://github.com/transmission/transmission/releases/download/4.0.4/transmission-4.0.4.tar.xz" -MD5SUM="a9985ff897d060d40b80e763263ffaf9" +DOWNLOAD="https://github.com/transmission/transmission/releases/download/4.0.5/transmission-4.0.5.tar.xz" +MD5SUM="d3cda868215246644c429b18a30f7e47" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |