From a7e3aec0b30fe04a7596e90d7aafb83c3aa33186 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 11 Aug 2020 15:07:50 +0200 Subject: gnu: libtorrent-rasterbar: Fix typo in description. * gnu/packages/bittorrent.scm (libtorrent-rasterbar)[synopsis] [description]: Add missing hyphen. --- gnu/packages/bittorrent.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/bittorrent.scm') diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 9cf8e2eb40..a5f0598d64 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -402,9 +402,9 @@ and will take advantage of multiple processor cores where possible.") (native-inputs `(("python" ,python-wrapper) ("pkg-config" ,pkg-config))) (home-page "https://www.libtorrent.org/") - (synopsis "Feature complete BitTorrent implementation") + (synopsis "Feature-complete BitTorrent implementation") (description - "libtorrent-rasterbar is a feature complete C++ BitTorrent implementation + "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation focusing on efficiency and scalability. It runs on embedded devices as well as desktops.") (license l:bsd-2))) -- cgit v1.2.3 From 2d25c635f2e4c126667be5ac88c9503eeef92c12 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 11 Aug 2020 15:08:28 +0200 Subject: gnu: libtorrent-rasterbar: Update to 1.2.8. * gnu/packages/bittorrent.scm (libtorrent-rasterbar): Update to 1.2.8. --- gnu/packages/bittorrent.scm | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'gnu/packages/bittorrent.scm') diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index a5f0598d64..f54e568b55 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -375,17 +375,16 @@ and will take advantage of multiple processor cores where possible.") (define-public libtorrent-rasterbar (package (name "libtorrent-rasterbar") - (version "1.2.7") - (source (origin - (method url-fetch) - (uri - (string-append - "https://github.com/arvidn/libtorrent/releases/download/libtorrent_" - (string-join (string-split version #\.) "_") - "/libtorrent-rasterbar-" version ".tar.gz")) - (sha256 - (base32 - "001g35janbxi20c7jzsf3ii9mkagz4kdsp7f3sz5r0n0cng0c05w")))) + (version "1.2.8") + (source + (origin + (method url-fetch) + (uri + (string-append "https://github.com/arvidn/libtorrent/" + "releases/download/libtorrent-" version "/" + "libtorrent-rasterbar-" version ".tar.gz")) + (sha256 + (base32 "1phn4klzvfzvidv5g566pnrrxj8l0givpy6s4r17d45wznqxc006")))) (build-system gnu-build-system) (arguments `(#:configure-flags -- cgit v1.2.3