Accepting request 108159 from KDE:Distro:Factory
Update to version 1.2.0 (forwarded request 108148 from mlin7442) OBS-URL: https://build.opensuse.org/request/show/108159 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libktorrent?expand=0&rev=25
This commit is contained in:
committed by
Git OBS Bridge
parent
9c8a5d2da6
commit
4b7b63ec61
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6a0c9f2e2a9ce0bb16cb3b82cac894ab43bdaaa95736a26f41778d7aae97b57
|
||||
size 922651
|
3
libktorrent-1.2.0.tar.bz2
Normal file
3
libktorrent-1.2.0.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24801cd43dfb78a5b8f4c468283dc774ad4025f1bf71909d79344414a8ff8298
|
||||
size 919037
|
@@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 6 10:12:46 UTC 2012 - mlin@suse.com
|
||||
|
||||
- Update to version 1.2.0, also lists changes what changed in rc1
|
||||
* Fix large file preallocation when not using quick preallocation in some cases
|
||||
* Disable current open file checking, it causes performance issues in some situations
|
||||
* Don't use the gcrypt version macro in it's version check
|
||||
* Make it possible to check data on chunk ranges instead of the entire torrent
|
||||
* Move data file jobs are now done one after the other
|
||||
* Implement partial seeding extension
|
||||
* Add support for IPv6 traffic class field
|
||||
* Make sure a torrent is restarted when it was auto stopped and more files are selected for downloading
|
||||
* Emit finished signal when torrent is found completely downloaded in data check
|
||||
* Seeders and leechers shown in view is now the maximum of all trackers and not the sum
|
||||
* Do not add trackers with unsupported protocols
|
||||
* Improve SIGBUS handling, fixes a crash
|
||||
* Remove usage of several deprecated KDE3 networking classes
|
||||
* Remove obsolete functions of data check during upload
|
||||
* Simplify blocklist interface
|
||||
* Revamp networking code
|
||||
* Remove thread from DHT code
|
||||
* Prevent file descriptor exhaustion from happening
|
||||
* Do not count non piece data in upload speed calculation
|
||||
* Fix IPv6 address parsing bug
|
||||
* Improve performance of µTP code
|
||||
* Fix crash in DHT packet receive code
|
||||
* Fill ip parameter of tracker announce with current IPv6 address if not filled in by user in settings
|
||||
* Fix crash in PeerManager
|
||||
* Fix crash at exit when datachecker job is running
|
||||
* Fix crash due to bug in smaller then operator of net::Address
|
||||
* Fix crash due to race condition in logging initialization
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 24 20:18:48 UTC 2011 - asterios.dramis@gmail.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libktorrent
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,15 +16,14 @@
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: libktorrent
|
||||
Version: 1.1.3
|
||||
Release: 1
|
||||
License: GPL-2.0+
|
||||
Version: 1.2.0
|
||||
Release: 0
|
||||
Summary: Torrent Downloading Library
|
||||
Url: http://ktorrent.org/
|
||||
License: GPL-2.0+
|
||||
Group: Productivity/Networking/File-Sharing
|
||||
Source0: http://ktorrent.org/downloads/4.1.3/%{name}-%{version}.tar.bz2
|
||||
Url: http://ktorrent.org/
|
||||
Source0: http://ktorrent.org/downloads/4.2.0/%{name}-%{version}.tar.bz2
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: gmp-devel
|
||||
@@ -37,24 +36,22 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
libktorrent is a torrent downloading library.
|
||||
|
||||
%package devel
|
||||
License: GPL-2.0+
|
||||
Summary: Development files for libktorrent
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libktorrent3 = %{version}
|
||||
Requires: libktorrent4 = %{version}
|
||||
|
||||
%description devel
|
||||
This package includes the necessary files for development using libktorrent.
|
||||
|
||||
%package -n libktorrent3
|
||||
License: GPL-2.0+
|
||||
%package -n libktorrent4
|
||||
Summary: Torrent Downloading Library
|
||||
Group: Productivity/Networking/File-Sharing
|
||||
Recommends: libktorrent3-lang = %{version}
|
||||
Recommends: libktorrent4-lang = %{version}
|
||||
|
||||
%description -n libktorrent3
|
||||
%description -n libktorrent4
|
||||
libktorrent is a torrent downloading library.
|
||||
|
||||
%lang_package -n libktorrent3
|
||||
%lang_package -n libktorrent4
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
@@ -80,9 +77,9 @@ cd ..
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%post -n libktorrent3 -p /sbin/ldconfig
|
||||
%post -n libktorrent4 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libktorrent3 -p /sbin/ldconfig
|
||||
%postun -n libktorrent4 -p /sbin/ldconfig
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
@@ -90,12 +87,12 @@ rm -rf %{buildroot}
|
||||
%{_kde4_libdir}/libktorrent.so
|
||||
%{_kde4_appsdir}/cmake/modules/FindKTorrent.cmake
|
||||
|
||||
%files -n libktorrent3
|
||||
%files -n libktorrent4
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING ChangeLog RoadMap
|
||||
%{_kde4_libdir}/libktorrent.so.3*
|
||||
%{_kde4_libdir}/libktorrent.so.4*
|
||||
|
||||
%files -n libktorrent3-lang -f %{name}.lang
|
||||
%files -n libktorrent4-lang -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user