~ubuntu-branches/ubuntu/oneiric/libtorrent-rasterbar/oneiric

« back to all changes in this revision

Viewing changes to src/torrent_info.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2010-08-10 12:57:25 UTC
  • mfrom: (1.3.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810125725-i2o9iblow20w7qde
Tags: 0.15.1-0ubuntu1
* New upstream point release.

* New package libtorrent-rasterbar6 (bump up library soname). (LP: #615950)
 - Must Conflict/Replace libtorrent-rasterbar5 (= 0.15.0-0ubuntu1) or it will
   fail to install trying to overwrite '/usr/lib/libtorrent-rasterbar.so.6.0.0'

* Sync on git.debian.org/collab-maint/libtorrent-rasterbar.git:
 - debian/{control,rules}: Bump debhelper build-dep to (>= 7.4.10)
   and pass to dh in order to enable parallel build support.
 - debian/watch: Use googlecode.debian.net redirector.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1037
1037
                e.source = announce_entry::source_client;
1038
1038
                m_urls.push_back(e);
1039
1039
 
1040
 
                using boost::bind;
1041
 
                std::sort(m_urls.begin(), m_urls.end(), bind(&announce_entry::tier, _1)
1042
 
                        < bind(&announce_entry::tier, _2));
 
1040
                std::sort(m_urls.begin(), m_urls.end(), boost::bind(&announce_entry::tier, _1)
 
1041
                        < boost::bind(&announce_entry::tier, _2));
1043
1042
        }
1044
1043
 
1045
1044
#if !defined TORRENT_NO_DEPRECATE && TORRENT_USE_IOSTREAM