[info=3c27bde2b8d43376bb9a8d6b87a62e8bd56d68e0e4c72be255a5cb2a975870e8]
OBS-URL: https://build.opensuse.org/package/show/filesharing/rtorrent?expand=0&rev=12
This commit is contained in:
parent
ca511e2c06
commit
5268083a13
@ -1,4 +1,4 @@
|
||||
mtime: 1655972653
|
||||
commit: 996bd0eaa3bc7151c98213b917856f677a69a9ecf16576e232fbf3c230bb6b01
|
||||
mtime: 1727623519
|
||||
commit: 3c27bde2b8d43376bb9a8d6b87a62e8bd56d68e0e4c72be255a5cb2a975870e8
|
||||
url: https://src.opensuse.org/jengelh/rtorrent
|
||||
revision: master
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b01da27f42234995d46c88f2ea47430ddd90dd8b816f930ed7c85f9e639785cb
|
||||
oid sha256:50d7d839306c945d3ace23323aa21578991c24b42cbce76451ee352086229708
|
||||
size 256
|
||||
|
BIN
rtorrent-0.10.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
rtorrent-0.10.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9edf0304bf142215d3bc85a0771446b6a72d0ad8218efbe184b41e4c9c7542af
|
||||
size 647523
|
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 29 12:10:54 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 0.10.0
|
||||
* librtorrent:
|
||||
* Significant performance improvements to improve throughput and
|
||||
reduce CPU usage.
|
||||
* A fix for a torrent client crash with the socket address object.
|
||||
* Support for 33 Gbit/s throttles on ruTorrent.
|
||||
* rotrrent:
|
||||
* A fix for a torrent client stack overflow crash with the lockfile
|
||||
buffer.
|
||||
* New trackers.delay_scrape command for .rtorrent.rc to avoid
|
||||
crashes with thousands of torrents and allow instant startups.
|
||||
* A fix for a critical memory leak with RPC commands which may
|
||||
waste an alarming amount of memory.
|
||||
* A fix for critical torrent client breakage if a power
|
||||
outage/failure occurs during a session saving interval
|
||||
- Delete 0001-utils-lockfile-avoid-stack-overflow-for-lockfile-buf.patch
|
||||
(merged)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 21 00:28:35 UTC 2022 - Aleksa Sarai <asarai@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package rtorrent
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,9 +17,9 @@
|
||||
|
||||
|
||||
Name: rtorrent
|
||||
Version: 0.9.8
|
||||
Version: 0.10.0
|
||||
Release: 0
|
||||
Summary: Console-based BitTorrent Client
|
||||
Summary: Console-based BitTorrent client
|
||||
License: SUSE-GPL-2.0+-with-openssl-exception
|
||||
Group: Productivity/Networking/File-Sharing
|
||||
URL: https://github.com/rakshasa/rtorrent
|
||||
@ -29,7 +29,7 @@ Source2: rtorrent.desktop
|
||||
# This manpage copied from the 0.9.2 tarball as it was missing in later versions
|
||||
Source3: rtorrent.1
|
||||
Source4: rtorrent.service
|
||||
Patch1: 0001-utils-lockfile-avoid-stack-overflow-for-lockfile-buf.patch
|
||||
BuildRequires: autoconf-archive
|
||||
BuildRequires: automake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libtool
|
||||
@ -37,9 +37,10 @@ BuildRequires: ncurses-devel
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: pkgconfig(cppunit) >= 1.9.6
|
||||
BuildRequires: pkgconfig(libcurl) >= 7.15.4
|
||||
BuildRequires: pkgconfig(libtorrent) >= 0.13.8
|
||||
BuildRequires: pkgconfig(libtorrent) >= 0.14.0
|
||||
BuildRequires: pkgconfig(xmlrpc)
|
||||
Requires(pre): shadow
|
||||
BuildRequires: sysuser-tools
|
||||
%sysusers_requires
|
||||
|
||||
%description
|
||||
rTorrent is a console-based BitTorrent client. It aims to be a
|
||||
@ -54,7 +55,7 @@ management.
|
||||
# It's full of type pun violations
|
||||
export CFLAGS="%optflags -fno-strict-aliasing"
|
||||
export CXXFLAGS="$CFLAGS"
|
||||
export CXXFLAGS="$CXXFLAGS -std=gnu++11"
|
||||
export CXXFLAGS="$CXXFLAGS -std=gnu++14"
|
||||
autoreconf -fiv
|
||||
%configure \
|
||||
--with-xmlrpc-c="%_bindir/xmlrpc-c-config" \
|
||||
@ -70,8 +71,12 @@ install -pm0644 "%{S:3}" "$b/%_mandir/man1/"
|
||||
%suse_update_desktop_file -r "%name" Network P2P
|
||||
install -Dm0644 "%{S:4}" "$b/%_unitdir/rtorrent.service"
|
||||
|
||||
%pre
|
||||
getent passwd rtorrent >/dev/null || useradd -r rtorrent
|
||||
echo 'u rtorrent - "rtorrent daemon"' >system-user-rtorrent.conf
|
||||
mkdir -p "$b/%_sysusersdir"
|
||||
cp -a system-user-rtorrent.conf "$b/%_sysusersdir/"
|
||||
%sysusers_generate_pre system-user-rtorrent.conf random system-user-rtorrent.conf
|
||||
|
||||
%pre -f random.pre
|
||||
%service_add_pre rtorrent.service
|
||||
|
||||
%post
|
||||
@ -90,5 +95,6 @@ getent passwd rtorrent >/dev/null || useradd -r rtorrent
|
||||
%_datadir/applications/%name.desktop
|
||||
%_mandir/man1/rtorrent.1*
|
||||
%_unitdir/rtorrent.service
|
||||
%_sysusersdir/*
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user