Leigh Scott 914c36f
%global git_url https://github.com/arvidn/libtorrent
Leigh Scott 914c36f
 
d215b49
Name:		rb_libtorrent
Leigh Scott 01e7452
Version:	2.0.7
Leigh Scott 01e7452
Release:	1%{?dist}
d215b49
Summary:	A C++ BitTorrent library aiming to be the best alternative
d215b49
d215b49
License:	BSD
772889c
URL:		https://www.libtorrent.org
Leigh Scott 914c36f
Source0:	%{git_url}/releases/download/v%{version}/libtorrent-rasterbar-%{version}.tar.gz
d215b49
Source1:	%{name}-README-renames.Fedora
d215b49
Source2:	%{name}-COPYING.Boost
d215b49
Source3:	%{name}-COPYING.zlib
Leigh Scott e37004b
97b5851
BuildRequires:	cmake
fef226f
BuildRequires:	gcc-c++
97b5851
BuildRequires:	ninja-build
afc0b2a
BuildRequires:	openssl-devel
1c5aff2
BuildRequires:	pkgconfig(zlib)
b81d7dd
BuildRequires:	util-linux
d215b49
d215b49
%description
d215b49
%{name} is a C++ library that aims to be a good alternative to all
d215b49
the other BitTorrent implementations around. It is a library and not a full
fe12745
featured client, although it comes with a few working example clients.
d215b49
d215b49
Its main goals are to be very efficient (in terms of CPU and memory usage) as
1122f69
well as being very easy to use both as a user and developer.
d215b49
09cc6b2
%package 	devel
d215b49
Summary:	Development files for %{name}
22e7ea4
License:	BSD and zlib and Boost
1c5aff2
Requires:	%{name}%{?_isa} = %{version}-%{release}
ba0ee35
## FIXME: Same include directory. :(
a5f2397
Conflicts:	libtorrent-devel
fe12745
## Needed for various headers used via #include directives...
d215b49
Requires:	boost-devel
1c5aff2
Requires:	pkgconfig(openssl)
d215b49
09cc6b2
%description	devel
d215b49
The %{name}-devel package contains libraries and header files for
d215b49
developing applications that use %{name}.
d215b49
d215b49
The various source and header files included in this package are licensed
d215b49
under the revised BSD, zlib/libpng, and Boost Public licenses. See the various
d215b49
COPYING files in the included documentation for the full text of these
d215b49
licenses, as well as the comments blocks in the source code for which license
d215b49
a given source or header file is released under.
d215b49
9235aae
%package	examples
9235aae
Summary:	Example clients using %{name}
9235aae
License:	BSD
1c5aff2
Requires:	%{name}%{?_isa} = %{version}-%{release}
d8e0261
9235aae
%description	examples
9235aae
The %{name}-examples package contains example clients which intend to
9235aae
show how to make use of its various features. (Due to potential
9235aae
namespace conflicts, a couple of the examples had to be renamed. See the
9235aae
included documentation for more details.)
09cc6b2
Fabio Alessandro Locati 65c4b2f
%package	python3
Fabio Alessandro Locati 65c4b2f
Summary:	Python bindings for %{name}
Fabio Alessandro Locati 65c4b2f
License:	Boost
b81d7dd
BuildRequires:	python3-devel
a6b77e9
BuildRequires:	pkgconfig(python3)
a6b77e9
BuildRequires:	boost-python3-devel
a6b77e9
BuildRequires:	python3-setuptools
Fabio Alessandro Locati 65c4b2f
Requires:	%{name}%{?_isa} = %{version}-%{release}
Fabio Alessandro Locati 65c4b2f
Fabio Alessandro Locati 65c4b2f
%description	python3
Fabio Alessandro Locati 65c4b2f
The %{name}-python3 package contains Python language bindings
Fabio Alessandro Locati 65c4b2f
(the 'libtorrent' module) that allow it to be used from within
Fabio Alessandro Locati 65c4b2f
Python applications.
30e9aaf
d215b49
%prep
Leigh Scott 914c36f
%autosetup -p1 -n "libtorrent-rasterbar-%{version}"
0d99d21
d215b49
## The RST files are the sources used to create the final HTML files; and are
d215b49
## not needed.
d215b49
rm -f docs/*.rst
d215b49
## Ensure that we get the licenses installed appropriately.
d215b49
install -p -m 0644 COPYING COPYING.BSD
d215b49
install -p -m 0644 %{SOURCE2} COPYING.Boost
d215b49
install -p -m 0644 %{SOURCE3} COPYING.zlib
d8e0261
## Finally, ensure that everything is UTF-8, as it should be.
d8e0261
iconv -t UTF-8 -f ISO_8859-15 AUTHORS -o AUTHORS.iconv
d8e0261
mv AUTHORS.iconv AUTHORS
d215b49
ba0ee35
%build
Fabio Alessandro Locati fa020c2
# This is ugly but can't think of an easier way to build the binding
Fabio Alessandro Locati fa020c2
export CPPFLAGS="$CPPFLAGS $(python%{python3_version}-config --includes)"
Fabio Alessandro Locati fa020c2
export LDFLAGS="$LDFLAGS -L%{_builddir}/libtorrent-rasterbar-%{version}/build/src/.libs"
Fabio Alessandro Locati fa020c2
export PYTHON=/usr/bin/python%{python3_version}
Fabio Alessandro Locati fa020c2
export PYTHON_LDFLAGS="$PYTHON_LDFLAGS $(python%{python3_version}-config --libs)"
Fabio Alessandro Locati fa020c2
Leigh Scott 6deab5a
%cmake \
97b5851
	-DCMAKE_BUILD_TYPE=RelWithDebInfo \
97b5851
	-DCMAKE_CXX_STANDARD=14 \
578d677
	-DCMAKE_SKIP_RPATH=TRUE \
97b5851
	-GNinja \
97b5851
	-Dbuild_examples=ON \
97b5851
	-Dbuild_tests=ON \
97b5851
	-Dbuild_tools=ON \
97b5851
	-Dpython-bindings=ON \
97b5851
	-Dpython-egg-info=ON \
97b5851
	-Dpython-install-system-dir=ON \
97b5851
	..
Leigh Scott 6deab5a
%cmake_build
d215b49
97b5851
%check
Leigh Scott 6deab5a
export LD_LIBRARY_PATH=%{_builddir}/libtorrent-rasterbar-%{version}/%{_vpath_builddir}
Leigh Scott 6deab5a
pushd %{_vpath_builddir}/test
9f1c8d8
# Skip UPnP test as it requires a UPnP server on the same network, others due to aarch64 failures
Leigh Scott c39bbc0
# Make test failures non-fatal as they seem to randomly fail.
9f1c8d8
echo "set (CTEST_CUSTOM_TESTS_IGNORE
Leigh Scott c39bbc0
 "test_upnp"
97b5851
)" > CTestCustom.cmake
Leigh Scott c39bbc0
ctest -j %{_smp_build_ncpus} || :
97b5851
popd
Leigh Scott 6deab5a
d215b49
d215b49
%install
97b5851
mkdir -p %{buildroot}%{_bindir}/
Leigh Scott 5a48c63
Leigh Scott 6deab5a
%cmake_install
97b5851
install -p -m 0755 \
Leigh Scott 6deab5a
 %{_vpath_builddir}/examples/{client_test,connection_tester,custom_storage,dump_torrent,make_torrent,simple_client,stats_counters,upnp_test} \
Leigh Scott 6deab5a
 %{_vpath_builddir}/tools/{dht,session_log_alerts} \
97b5851
 %{buildroot}%{_bindir}/
Fabio Alessandro Locati fa020c2
97b5851
# Written version is malformed
97b5851
sed -i 's/^Version:.*/Version: %{version}/' %{buildroot}%{python3_sitearch}/libtorrent.egg-info/PKG-INFO
Fabio Alessandro Locati fa020c2
97b5851
## Do the renaming due to the somewhat limited %%_bindir namespace.
97b5851
rename client torrent_client %{buildroot}%{_bindir}/*
d215b49
97b5851
install -p -m 0644 %{SOURCE1} ./README-renames.Fedora
d215b49
5e51c97
%ldconfig_scriptlets
d215b49
d215b49
%files
Fabio Alessandro Locati 65c4b2f
%{!?_licensedir:%global license %doc}
Fabio Alessandro Locati b5882d6
%doc AUTHORS ChangeLog
1c5aff2
%license COPYING
Leigh Scott 5547f58
%{_libdir}/libtorrent-rasterbar.so.2.*
Leigh Scott 5547f58
%{_libdir}/libtorrent-rasterbar.so.2.0
09cc6b2
30e9aaf
%files	devel
1c5aff2
%doc docs/
1c5aff2
%license COPYING.Boost COPYING.BSD COPYING.zlib
d8e0261
%{_libdir}/pkgconfig/libtorrent-rasterbar.pc
d215b49
%{_includedir}/libtorrent/
d8e0261
%{_libdir}/libtorrent-rasterbar.so
97b5851
%{_libdir}/cmake/LibtorrentRasterbar/
Leigh Scott 9dbd108
%{_datadir}/cmake/Modules/FindLibtorrentRasterbar.cmake
d215b49
9235aae
%files examples
1c5aff2
%doc README-renames.Fedora
1c5aff2
%license COPYING
9235aae
%{_bindir}/*torrent*
8e2045c
%{_bindir}/connection_tester
Leigh Scott 5a48c63
%{_bindir}/custom_storage
97b5851
%{_bindir}/dht
Leigh Scott 5a48c63
%{_bindir}/session_log_alerts
c68ca39
%{_bindir}/stats_counters
7b0992c
%{_bindir}/upnp_test
09cc6b2
Fabio Alessandro Locati 65c4b2f
%files	python3
Fabio Alessandro Locati 65c4b2f
%doc AUTHORS ChangeLog
Fabio Alessandro Locati 65c4b2f
%license COPYING.Boost
97b5851
%{python3_sitearch}/libtorrent.egg-info/
Fabio Alessandro Locati fa020c2
%{python3_sitearch}/libtorrent.cpython-*.so
30e9aaf
d215b49
%changelog
Leigh Scott 01e7452
* Mon Jul 18 2022 Leigh Scott <leigh123linux@gmail.com> - 2.0.7-1
Leigh Scott 01e7452
- Upgrade to 2.0.7
Leigh Scott 01e7452
65dd608
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.0.6-4
65dd608
- Rebuilt for Python 3.11
65dd608
Leigh Scott ea40fcd
* Thu May 12 2022 Leigh Scott <leigh123linux@gmail.com> - 2.0.6-3
Leigh Scott ea40fcd
- Fix pkg-config file (rhbz#2084637)
Leigh Scott ea40fcd
Leigh Scott 914c36f
* Sat May 07 2022 Leigh Scott <leigh123linux@gmail.com> - 2.0.6-2
Leigh Scott 914c36f
- Fix i686 build
Leigh Scott 914c36f
Leigh Scott d77ccfc
* Thu May 05 2022 Leigh Scott <leigh123linux@gmail.com> - 2.0.6-1
Leigh Scott d77ccfc
- Upgrade to 2.0.6
Leigh Scott d77ccfc
497344a
* Wed May 04 2022 Thomas Rodgers <trodgers@redhat.com> - 2.0.5-3
497344a
- Rebuilt for Boost 1.78
497344a
02ffb03
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-2
02ffb03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
02ffb03
Leigh Scott 2ac5d85
* Sat Dec 11 2021 Leigh Scott <leigh123linux@gmail.com> - 2.0.5-1
Leigh Scott 2ac5d85
- Upgrade to 2.0.5
Leigh Scott 2ac5d85
bcf8253
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.0.4-6
bcf8253
- Rebuilt with OpenSSL 3.0.0
bcf8253
Leigh Scott 715b9e0
* Mon Aug 09 2021 Leigh Scott <leigh123linux@gmail.com> - 2.0.4-5
Leigh Scott 715b9e0
- Add fix for deluge files tab
Leigh Scott 715b9e0
Leigh Scott 6deab5a
* Sat Aug 07 2021 Leigh Scott <leigh123linux@gmail.com> - 2.0.4-4
Leigh Scott 6deab5a
- Fix build failure, remove python2 and old releases
Leigh Scott 6deab5a
c4e8d1e
* Sat Aug 07 2021 Jonathan Wakely <jwakely@redhat.com> - 2.0.4-3
c4e8d1e
- Rebuilt for Boost 1.76
c4e8d1e
749c938
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
749c938
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
749c938
578d677
* Mon Jun 07 2021 Michael Cronenworth <mike@cchtml.com> - 2.0.4-1
578d677
- Upgrade to 2.0.4
578d677
bee609e
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.0.3-2
bee609e
- Rebuilt for Python 3.10
bee609e
Leigh Scott 5547f58
* Mon May 24 2021 Leigh Scott <leigh123linux@gmail.com> - 2.0.3-1
Leigh Scott 5547f58
- Upgrade to 2.0.3
Leigh Scott 37f1936
Leigh Scott d05c291
* Mon May 24 2021 Leigh Scott <leigh123linux@gmail.com> - 1.2.13-1
Leigh Scott d05c291
- Upgrade to 1.2.13
Leigh Scott d05c291
Leigh Scott 2f31cd1
* Thu Mar 25 2021 Leigh Scott <leigh123linux@gmail.com> - 1.2.12-1
Leigh Scott 2f31cd1
- Upgrade to 1.2.12
Leigh Scott 2f31cd1
a795717
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.11-3
a795717
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a795717
5a4b959
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 1.2.11-2
5a4b959
- Rebuilt for Boost 1.75
5a4b959
97b5851
* Wed Nov 25 2020 Michael Cronenworth <mike@cchtml.com> - 1.2.11-1
97b5851
- Upgrade to 1.2.11
97b5851
- Switch to build with cmake
97b5851
Leigh Scott cef8fb1
* Fri Oct  9 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.10-2
Leigh Scott cef8fb1
- Use c++14 to fix LTO issue with qbittorrent
Leigh Scott cef8fb1
Leigh Scott 2caff59
* Thu Oct  8 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.10-1
Leigh Scott 2caff59
- Upgrade to 1.2.10
Leigh Scott 2caff59
Leigh Scott 2bca4e3
* Thu Aug 06 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.8-1
Leigh Scott 2bca4e3
- Upgrade to 1.2.8
Leigh Scott 2bca4e3
- Remove extra debug flags
Leigh Scott 2bca4e3
2b2df3e
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7-2
2b2df3e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2b2df3e
Leigh Scott 2e77e29
* Fri Jun 05 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.7-1
Leigh Scott 2e77e29
- Upgrade to 1.2.7
Leigh Scott 2e77e29
Leigh Scott 3d4c14e
* Thu Jun 04 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.6-7
Leigh Scott 3d4c14e
- Fix conditional so aarch64 is included on fedora
Leigh Scott 3d4c14e
6e31a13
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 1.2.6-6
6e31a13
- Rebuilt for Boost 1.73
6e31a13
40923a9
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.6-5
40923a9
- Rebuilt for Python 3.9
40923a9
5d01e63
* Sat May 23 2020 Michael Cronenworth <mike@cchtml.com> - 1.2.6-4
5d01e63
- Enable aarch64 for EPEL8
5d01e63
c174061
* Thu May 21 2020 Michael Cronenworth <mike@cchtml.com> - 1.2.6-3
c174061
- Fix my boo-boo with the RHEL macro
c174061
Leigh Scott 5597ce7
* Thu Apr 23 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.6-2
Leigh Scott 5597ce7
- Fix changelog
Leigh Scott 5597ce7
Leigh Scott 5597ce7
* Thu Apr 23 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.6-1
Leigh Scott 4943336
- Upgrade to 1.2.6
Leigh Scott 4943336
8de5cb4
* Sat Mar 14 2020 leigh123linux <leigh123linux@googlemail.com> - 1.2.5-1
8de5cb4
- Upgrade to 1.2.5
8de5cb4
f2084f1
* Tue Feb 11 2020 Leigh Scott <leigh123linux@googlemail.com> - 1.2.4-1
f2084f1
- Upgrade to 1.2.4
f2084f1
ff88585
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
ff88585
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
ff88585
044f5cd
* Sat Dec 14 2019 Jeff Law <law@redhat.com> - 1.2.2-2
044f5cd
- Fix missing #include for gcc-10
044f5cd
Leigh Scott 5a48c63
* Sun Oct 27 2019 Leigh Scott <leigh123linux@gmail.com> - 1.2.2-1
Leigh Scott 5a48c63
- Upgrade to 1.2.2
Leigh Scott 5a48c63
151165e
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.13-5
151165e
- Rebuilt for Python 3.8
151165e
0f8e592
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.13-4
0f8e592
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
0f8e592
b81d7dd
* Wed Jul 03 2019 Michael Cronenworth <mike@cchtml.com> - 1.1.13-3
b81d7dd
- Drop python 2 bindings in F31+
b81d7dd
  https://fedoraproject.org/wiki/Changes/F31_Mass_Python_2_Package_Removal
b81d7dd
ee524d2
* Fri May 03 2019 Michael Cronenworth <mike@cchtml.com> - 1.1.13-2
ee524d2
- Fix python3 build (RHBZ#1705690)
ee524d2
2c2e732
* Fri May 03 2019 Michael Cronenworth <mike@cchtml.com> - 1.1.13-1
2c2e732
- Upgrade to 1.1.13
2c2e732
e8a57a4
* Thu Jan 31 2019 Kalev Lember <klember@redhat.com> - 1.1.12-2
e8a57a4
- Rebuilt for Boost 1.69
e8a57a4
7434a34
* Wed Jan 30 2019 Michael Cronenworth <mike@cchtml.com> - 1.1.12-1
7434a34
- Upgrade to 1.1.12
7434a34
54de75b
* Wed Jan 30 2019 Jonathan Wakely <jwakely@redhat.com> - 1.1.9-2
54de75b
- Add patch for Boost 1.69 header changes
54de75b
03b0975
* Thu Aug 09 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.9-1
03b0975
- Upgrade to 1.1.9
03b0975
fef226f
* Mon Jul 16 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.8-4
fef226f
- Add  BuildRequires gcc-c++
a5c3518
- Disable checking tests
fef226f
47c5d82
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.8-3
47c5d82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
47c5d82
0109d11
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.8-2
0109d11
- Rebuilt for Python 3.7
0109d11
93cd2a6
* Mon Jul 02 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.8-1
93cd2a6
- Upgrade to 1.1.8
93cd2a6
eb0aebe
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.7-4
eb0aebe
- Rebuilt for Python 3.7
eb0aebe
85865d5
* Mon Jun 11 2018 Michael Cronenworth <mike@cchtml.com> - 1.1.7-3
85865d5
- Add patch to fix rate limiting (rhbz#1544257)
85865d5
9988cbe
* Tue May 01 2018 Jonathan Wakely <jwakely@redhat.com> - 1.1.7-2
9988cbe
- Use BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29
9988cbe
5e51c97
* Fri Apr 20 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.7-1
5e51c97
- Upgrade to 1.1.7
5e51c97
7c58da6
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.6-3
7c58da6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7c58da6
29f7b18
* Fri Feb 02 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.6-2
29f7b18
- Rebuild for boost-1.66
d1ccd56
- Disable checks till they can be fixed
29f7b18
26131a2
* Sun Jan 07 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.6-1
26131a2
- Upgrade to 1.1.6
26131a2
c3d2b29
* Sat Nov 25 2017 Leigh Scott <leigh123linux@googlemail.com> - 1.1.5-3
c3d2b29
- Exclude aarch64 for epel7
c3d2b29
0d99d21
* Sat Nov 25 2017 Leigh Scott <leigh123linux@googlemail.com> - 1.1.5-2
0d99d21
- Fix build for epel7
0d99d21
f60c5ee
* Sat Nov 04 2017 Leigh Scott <leigh123linux@googlemail.com> - 1.1.5-1
f60c5ee
- Upgrade to 1.1.5
f60c5ee
3824d7c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-7
3824d7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3824d7c
09d11d6
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-6
09d11d6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
09d11d6
d45fdb0
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 1.1.2-5
d45fdb0
- Rebuilt for Boost 1.64
d45fdb0
Igor Gnatenko 47f1077
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.1.2-4
Igor Gnatenko 47f1077
- Rebuild due to bug in RPM (RHBZ #1468476)
Igor Gnatenko 47f1077
1122f69
* Sun Jul 02 2017 Björn Esser <besser82@fedoraproject.org> - 1.1.2-3
1122f69
- Fix linking for the Python3 bindings (rhbz#1399390)
1122f69
- Fix filtering provides
1122f69
- Clean trailing whitespace
1122f69
2cc22dc
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-2
2cc22dc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
2cc22dc
7223622
* Tue Feb 28 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.1.2-1
7223622
- Upgrade to 1.1.1
7223622
f789570
* Fri Feb 17 2017 Jonathan Wakely <jwakely@redhat.com> - 1.1.1-4
f789570
- Fix failure test due to asio header order issue
f789570
af7f90f
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-4
af7f90f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
af7f90f
845fbfa
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-3
845fbfa
- Rebuild for Python 3.6
845fbfa
13c7378
* Thu Oct 06 2016 Leigh Scott <leigh123linux@googlemail.com> - 1.1.1-2
13c7378
- Fix rpath
13c7378
bade142
* Wed Sep 28 2016 Leigh Scott <leigh123linux@googlemail.com> - 1.1.1-1
bade142
- Upgrade to 1.1.1
bade142
f7effb2
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2
f7effb2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
f7effb2
a6b77e9
* Mon Apr 11 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.1.0-1
Fabio Alessandro Locati 651cfcb
- Upgrade to 1.1.0
Fabio Alessandro Locati 651cfcb
Fabio Alessandro Locati fa020c2
* Mon Mar 14 2016 Przemysław Palacz <pprzemal@gmail.com> - 1.0.9-2
Fabio Alessandro Locati fa020c2
- Fix missing Python 3 binding library
Fabio Alessandro Locati fa020c2
a6b77e9
* Sat Mar 12 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.0.9-1
Fabio Alessandro Locati 65c4b2f
- Upgrade to 1.0.9
Fabio Alessandro Locati 65c4b2f
- Provide -python3 subpackage as well
Fabio Alessandro Locati 65c4b2f
- Rename -python subpackage as -python2
Fabio Alessandro Locati 65c4b2f
971a125
* Tue Mar 08 2016 Bruno Wolff III <bruno@wolff.to> - 1.0.8-3
971a125
- Rebuild for libtommath soname bump
971a125
e282204
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-2
e282204
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e282204
a6b77e9
* Tue Jan 26 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.0.8-1
Fabio Alessandro Locati 541b78f
- Upstream release 1.0.8
Fabio Alessandro Locati ebf4e9e
b4b1029
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 1.0.7-3
b4b1029
- Rebuilt for Boost 1.60
b4b1029
a6b77e9
* Mon Dec 07 2015 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.0.7-2
Fabio Alessandro Locati b5882d6
- Fixes to make it work properly with python2 on F24+
Fabio Alessandro Locati b5882d6
- Remove README since is not shipped any more
Fabio Alessandro Locati b5882d6
a6b77e9
* Sat Nov 14 2015 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.0.7-1
Fabio Alessandro Locati d786b2c
- Upstream release 1.0.7
Fabio Alessandro Locati d786b2c
1e3c6f7
* Sat Oct 17 2015 Ville Skyttä <ville.skytta@iki.fi> - 1.0.6-3
1e3c6f7
- Link with system tommath, drop bundled one
1e3c6f7
50c9a83
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.0.6-2
50c9a83
- Rebuilt for Boost 1.59
50c9a83
1c5aff2
* Sat Aug 15 2015 Leigh Scott <leigh123linux@googlemail.com> - 1.0.6-1
1c5aff2
- Upstream release 1.0.6
1c5aff2
- Change source URL
1c5aff2
- Install license files properly
1c5aff2
- Remove pkgconfig requires
1c5aff2
- Clean up requires
1c5aff2
- Filter private-shared-object-provides on python sub-package
1c5aff2
- Specify version for python buildrequires
1c5aff2
961423e
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
961423e
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
961423e
a6b77e9
* Sun Jul 26 2015 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.0.5-1
Fabio Alessandro Locati 4e1da8e
- Upstream release 1.0.5
Fabio Alessandro Locati 4e1da8e
- Lint the spec file
Fabio Alessandro Locati 4e1da8e
bad6b86
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.0.4-3
bad6b86
- rebuild for Boost 1.58
bad6b86
262d9be
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-2
262d9be
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
262d9be
50fd4ee
* Sat Apr 18 2015 Leigh Scott <leigh123linux@googlemail.com> - 1.0.4-1
50fd4ee
- upstream release 1.0.4
50fd4ee
Petr Machata 2ae55fd
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.0.3-2
Petr Machata 2ae55fd
- Rebuild for boost 1.57.0
Petr Machata 2ae55fd
6070a90
* Fri Dec 19 2014 Leigh Scott <leigh123linux@googlemail.com> - 1.0.3-1
6070a90
- upstream release 1.0.3
6070a90
e525c53
* Tue Sep 16 2014 Leigh Scott <leigh123linux@googlemail.com> - 1.0.2-1
e525c53
- upstream release 1.0.2
e525c53
04ea3c2
* Mon Aug 18 2014 Leigh Scott <leigh123linux@googlemail.com> - 1.0.1-1
04ea3c2
- upstream release 1.0.1
04ea3c2
- update patches
04ea3c2
9fa4506
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.17-2
9fa4506
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9fa4506
eab88fb
* Sun Jun 22 2014 Leigh Scott <leigh123linux@googlemail.com> - 0.16.17-1
eab88fb
- upstream release 0.16.17
eab88fb
18223e8
* Sun Jun 15 2014 Leigh Scott <leigh123linux@googlemail.com> - 0.16.16-4
18223e8
- patch to stop UPNP from openning port 0
18223e8
2365442
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.16-3
2365442
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2365442
Petr Machata 413c98f
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 0.16.16-2
Petr Machata 413c98f
- Rebuild for boost 1.55.0
Petr Machata 413c98f
9740a4c
* Mon Apr 21 2014 Leigh Scott <leigh123linux@googlemail.com> - 0.16.16-1
9740a4c
- upstream release 0.16.16
9740a4c
- fix source url
9740a4c
2ce9880
* Sun Aug 18 2013 Leigh Scott <leigh123linux@googlemail.com> - 0.16.11-1
2ce9880
- upstream release 0.16.11
2ce9880
771aa32
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.10-3
771aa32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
771aa32
Petr Machata 08b142f
* Sat Jul 27 2013 Petr Machata <pmachata@redhat.com> - 0.16.10-2
Petr Machata c368fff
- Rebuild for boost 1.54.0
Petr Machata 08b142f
- Change configure invocation to avoid Boost -mt libraries, which are
Petr Machata 08b142f
  not enabled anymore.
Petr Machata 771bc97
- Adjust libtorrent-rasterbar.pc to not mention -mt
Petr Machata 771bc97
  (rb_libtorrent-0.16.10-boost_mt.patch)
Petr Machata eb603b6
- Add a missing Boost.Noncopyable include
Petr Machata eb603b6
  (rb_libtorrent-0.16.10-boost_noncopyable.patch)
Petr Machata c368fff
8a54dfa
* Mon May 13 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 0.16.10-1
8a54dfa
- upstream release 0.16.10
8a54dfa
1bb6088
* Thu May 09 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 0.16.9-1
1bb6088
- upstream release 0.16.9
1bb6088
7b0992c
* Sun Feb 24 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 0.16.8-1
7b0992c
- upstream release 0.16.8
7b0992c
65d0321
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.16.7-3
65d0321
- Rebuild for Boost-1.53.0
65d0321
09ccc6f
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.16.7-2
09ccc6f
- Rebuild for Boost-1.53.0
09ccc6f
d2d939e
* Wed Jan 23 2013 Leigh Scott <leigh123linux@googlemail.com> - 0.16.7-1
d2d939e
- Update to 0.16.7
d2d939e
- Drop gcc patch
d2d939e
8f4da60
* Sun Sep 30 2012 Leigh Scott <leigh123linux@googlemail.com> - 0.16.4-1
8f4da60
- Update to 0.16.4
8e2045c
- Patch for gcc error
8f4da60
267dbde
* Mon Aug 20 2012 Leigh Scott <leigh123linux@googlemail.com> - 0.16.3-1
267dbde
- Update to 0.16.3
267dbde
825aaa3
* Thu Jul 26 2012 Leigh Scott <leigh123linux@googlemail.com> - 0.16.2-3
825aaa3
- Rebuild for boost-1.50.0
825aaa3
e04e4bd
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.2-2
e04e4bd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e04e4bd
9c3c485
* Sat Jul 14 2012 Leigh Scott <leigh123linux@googlemail.com> - 0.16.2-1
9c3c485
- Update to 0.16.2
9c3c485
940684a
* Sun Jun 24 2012 leigh scott <leigh123linux@googlemail.com> - 0.16.1-1
940684a
- Update to 0.16.1
940684a
- Remove the -DBOOST_FILESYSTEM_VERSION=2 bits from spec
940684a
- Remove unused configure options
940684a
a19527f
* Tue Mar 20 2012 leigh scott <leigh123linux@googlemail.com> - 0.15.9-1
a19527f
- Update to 0.15.9
a19527f
df1ebdb
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.8-4
df1ebdb
- Rebuilt for c++ ABI breakage
df1ebdb
09789f3
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15.8-3
09789f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
09789f3
Thomas Spura 7a0cb4c
* Sun Nov 20 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.15.8-2
Thomas Spura 7a0cb4c
- rebuild for https://fedoraproject.org/wiki/Features/F17Boost148
Thomas Spura 7a0cb4c
c684ab5
* Fri Sep 30 2011 Leigh Scott <leigh123linux@googlemail.com> - 0.15.8-1
c684ab5
- Update to 0.15.8
c684ab5
9c2a690
* Mon Aug 01 2011 Leigh Scott <leigh123linux@googlemail.com> - 0.15.7-1
9c2a690
- Update to 0.15.7
9c2a690
33ced13
* Thu Jul 21 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 0.15.6-2
33ced13
- rebuild against boost 1.47.0
33ced13
- drop defattr, clean stage
33ced13
- change BR from util-linux-ng to util-linux since former has replaced latter
33ced13
- drop all patches since none of them are being applied anymore
33ced13
6679da8
* Sun Apr 10 2011 Leigh Scott <leigh123linux@googlemail.com> - 0.15.6-1
6679da8
- Update to 0.15.6
6679da8
341da48
* Wed Apr 06 2011 Leigh Scott <leigh123linux@googlemail.com> - 0.15.5-4
5a8c6ed
- really build against boost 1.46.1
341da48
492bca7
* Wed Mar 16 2011 Leigh Scott <leigh123linux@googlemail.com> - 0.15.5-3
341da48
- rebuild for boost 1.46.1
492bca7
Mamoru Tasaka cd41d9a
* Thu Feb 10 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.15.5-2
Mamoru Tasaka cd41d9a
- Add "R: GeoIP-devel" to -devel subpackage
Mamoru Tasaka cd41d9a
Mamoru Tasaka a87c2a3
* Thu Feb 10 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.15.5-1
Mamoru Tasaka a87c2a3
- Update to 0.15.5 (bug 654807, Leigh Scott)
Mamoru Tasaka a87c2a3
8cab8af
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.11-4
8cab8af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8cab8af
Mamoru Tasaka 0e7be0d
* Tue Feb 08 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 0.14.11-3
Mamoru Tasaka 0e7be0d
- Add -DBOOST_FILESYSTEM_VERSION=2 also in pkgconfig .pc file
Mamoru Tasaka 0e7be0d
  (bug 654807, Leigh Scott)
Mamoru Tasaka 0e7be0d
Mamoru Tasaka 46931fb
* Tue Feb 08 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
Mamoru Tasaka a87c2a3
- Add -DBOOST_FILESYSTEM_VERSION=2
Mamoru Tasaka 46931fb
7ddc456
* Sun Feb 06 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.14.11-2
7ddc456
- rebuild for new boost
7ddc456
ba0ee35
* Wed Aug 25 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.14.11-1
ba0ee35
- rb_libtorrent-0.14.11
ba0ee35
- track lib soname
ba0ee35
Mamoru Tasaka ef729e0
* Thu Jul 29 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.14.10-4
ba0ee35
- Patch for python2.7 and g++4.5
ba0ee35
- Pass -fno-strict-aliasing for now
Mamoru Tasaka ef729e0
- Copy from F-13 branch (F-14 branch still used 0.14.8)
Mamoru Tasaka ef729e0
ba0ee35
* Fri May 28 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 0.14.10-3
ba0ee35
- Patch from Bruno Wolff III to fix DSO linking rhbz565082
ba0ee35
- Update spec to match current guidelines
Mamoru Tasaka ef729e0
ba0ee35
* Fri May 28 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 0.14.10-2
ba0ee35
- Fix E-V-R issue that breaks qbittorrent and deluge for upgrades
1122f69
- Add default attributes to examples
Mamoru Tasaka ef729e0
ba0ee35
* Sun Apr 04 2010 Leigh Scott <leigh123linux@googlemail.com> - 0.14.10-1
ba0ee35
- Update to new upstream release (0.14.10)
Mamoru Tasaka ef729e0
ba0ee35
* Fri Mar 12 2010 leigh scott <leigh123linux@googlemail.com> - 0.14.9-1
ba0ee35
- Update to new upstream release (0.14.9)
ba0ee35
- Fix source URL
46746ce
0fdd6d2
* Tue Jan 19 2010 Ville Skyttä <ville.skytta@iki.fi> - 0.14.8-2
0fdd6d2
- Rebuild per
0fdd6d2
  http://lists.fedoraproject.org/pipermail/devel/2010-January/129500.html
0fdd6d2
0fdd6d2
* Tue Jan 12 2010 Leigh Scott <leigh123linux@googlemail.com> - 0.14.8-1
0fdd6d2
- Update to new upstream release (0.14.8)
0fdd6d2
0fdd6d2
* Wed Nov 25 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.7-1
6e86a19
- Update to new upstream release (0.14.7)
6e86a19
- Resolves: #541026 (rb_libtorrent 0.14.6 crashes)
6e86a19
808cb34
* Sun Sep 27 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.6-1
808cb34
- Update to new upstream release (0.14.6)
808cb34
- Build against system GeoIP libraries.
1122f69
e489f58
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.14.4-3
e489f58
- rebuilt with new openssl
e489f58
a60aa45
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.4-2
a60aa45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a60aa45
0779669
* Tue Jun 02 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.4-1
0779669
- Update to new upstream release (0.14.4).
0779669
- Drop outdated Boost patch.
0779669
f549358
* Fri May 08 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.3-2
f549358
- Rebuild for the Boost 1.39.0 update.
f549358
fcf6cce
* Mon Apr 27 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.3-1
fcf6cce
- Update to new upstream bug-fix release (0.14.3).
fcf6cce
8e600ed
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.2-2
8e600ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8e600ed
ad4d7bb
* Fri Feb 20 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.2-1
ad4d7bb
- Update to new upstream bug-fix release (0.14.2)
ad4d7bb
- Drop Python 2.6 and configure fix patches (fixed upstream):
ad4d7bb
  - python26.patch
ad4d7bb
  - configure-dont-use-locate.patch
ad4d7bb
b0b4bda
* Fri Jan 16 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.1-2
b0b4bda
- Rebuild for the soname bump in openssl-0.9.8j
b0b4bda
9235aae
* Mon Jan 05 2009 Peter Gordon <peter@thecodergeek.com> - 0.14.1-1
9235aae
- Update to new upstream release (0.14.1)
9235aae
- Add asio-devel as runtime dependency for the devel subpackage (#478589)
9235aae
- Add patch to build with Python 2.6:
9235aae
  + python26.patch
9235aae
- Add patch to make the configure script use the proper python include
9235aae
  directory instead of calling locate, as that can cause failures in a chroot
9235aae
  with no db file (and is a bit silly in the first place):
9235aae
  + configure-dont-use-locate.patch
9235aae
- Drop manual setup.py for building the python module (fixed upstream):
9235aae
  - setup.py
9235aae
- Update Source0 URL back to SourceForge's hosting.
9235aae
- Reenable the examples, since the Makefiles are fixed.
9235aae
71c7013
* Fri Dec 19 2008 Petr Machata <pmachata@redhat.com> - 0.13.1-7
71c7013
- Rebuild for boost-1.37.0.
71c7013
e13ba74
* Wed Dec 17 2008 Benjamin Kosnik  <bkoz@redhat.com> - 0.13.1-6
e13ba74
- Rebuild for boost-1.37.0.
e13ba74
f35406d
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.13.1-5
f35406d
- Fix locations for Python 2.6
f35406d
a3a3152
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.13.1-4
a3a3152
- Rebuild for Python 2.6
a3a3152
8627b97
* Thu Nov 20 2008 Peter Gordon <peter@thecodergeek.com>
8627b97
- Update Source0 URL, for now.
8627b97
22e7ea4
* Wed Sep  3 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.13.1-3
22e7ea4
- fix license tag
22e7ea4
30e9aaf
* Mon Jul 14 2008 Peter Gordon <peter@thecodergeek.com> - 0.13.1-2
1122f69
- Add python bindings in a -python subpackage.
30e9aaf
d8e0261
* Mon Jul 14 2008 Peter Gordon <peter@thecodergeek.com> - 0.13.1-1
d8e0261
- Update to new upstream release (0.13.1): Contains an incompatible ABI/API
d8e0261
  bump.
d8e0261
- Drop GCC 4.3 patch (fixed upstream):
d8e0261
  - gcc43.patch
d8e0261
- Disable building the examples for now. (Attempted builds fail due to missing
1122f69
  Makefile support.)
d8e0261
- Drop the source permissions and pkgconfig file tweaks (fixed upstream).
d8e0261
e8448fe
* Sat Feb 09 2008 Peter Gordon <peter@thecodergeek.com> - 0.12.1-1
e8448fe
- Update to new upstream bug-fix release (0.12.1)
e8448fe
- Rebuild for GCC 4.3
e8448fe
- Drop security fix patch (merged upstream):
e8448fe
  - svn1968-bdecode_recursive-security-fix.patch
e8448fe
- Add GCC 4.3 build fixes (based on patch from Adel Gadllah, bug 432778):
e8448fe
  + gcc43.patch
e8448fe
b0cd9d6
* Mon Jan 28 2008 Peter Gordon <peter@thecodergeek.com> - 0.12-3
b0cd9d6
- Add upstream patch (changeset 1968) to fix potential security vulnerability:
b0cd9d6
  malformed messages passed through the bdecode_recursive routine could cause
b0cd9d6
  a potential stack overflow.
b0cd9d6
  + svn1968-bdecode_recursive-security-fix.patch
b0cd9d6
02269b3
* Fri Aug 03 2007 Peter Gordon <peter@thecodergeek.com> - 0.12-2
02269b3
- Rebuild against new Boost libraries.
02269b3
09cc6b2
* Thu Jun 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.12-1
09cc6b2
- Update to new upstream release (0.12 Final)
09cc6b2
- Split examples into a subpackage. Applications that use rb_libtorrent
fe12745
  don't need the example binaries installed; and splitting the package in this
1122f69
  manner is a bit more friendly to multilib environments.
09cc6b2
09cc6b2
* Sun Mar 11 2007 Peter Gordon <peter@thecodergeek.com> - 0.12-0.rc1
09cc6b2
- Update to new upstream release (0.12 RC).
09cc6b2
- Forcibly use the system libtool to ensure that we remove any RPATH hacks.
09cc6b2
f319952
* Sun Jan 28 2007 Peter Gordon <peter@thecodergeek.com> - 0.11-5
f319952
- Fix installed pkgconfig file: Strip everything from Libs except for
f319952
  '-ltorrent', as its [libtorrent's] DSO will ensure proper linking to other
f319952
  needed libraries such as zlib and boost_thread. (Thanks to Michael Schwendt
f319952
  and Mamoru Tasaka; bug #221372)
f319952
d215b49
* Sat Jan 27 2007 Peter Gordon <peter@thecodergeek.com> - 0.11-4
d215b49
- Clarify potential licensing issues in the -devel subpackage:
d215b49
  + COPYING.zlib
d215b49
  + COPYING.Boost
d215b49
- Add my name in the Fedora-specific documentation (README-renames.Fedora) and
d215b49
  fix some spacing issues in it.
d215b49
- Strip the @ZLIB@ (and thus, the extra '-lz' link option) from the installed
d215b49
  pkgconfig file, as that is only useful when building a statically-linked
1122f69
  libtorrent binary.
a5f2397
- Fix conflict: The -devel subpackage should conflict with the -devel
a5f2397
  subpackage of libtorrent, not the main package.
a5f2397
- Preserve timestamps in %%install.
d215b49
d215b49
* Wed Jan 17 2007 Peter Gordon <peter@thecodergeek.com> - 0.11-3
d215b49
- Fix License (GPL -> BSD)
d215b49
- Don't package RST (docs sources) files.
d215b49
- Only make the -devel subpackage conflict with libtorrent-devel.
d215b49
- Rename some of the examples more appropriately; and add the
d215b49
  README-renames.Fedora file to %%doc which explains this.
d215b49
d215b49
* Fri Jan 05 2007 Peter Gordon <peter@thecodergeek.com> - 0.11-2
d215b49
- Add Requires: pkgconfig to the -devel subpackage since it installs a .pc
1122f69
  file.
d215b49
d215b49
* Wed Jan 03 2007 Peter Gordon <peter@thecodergeek.com> - 0.11-1
1122f69
- Initial packaging for Fedora Extras