Author: baggins Date: Thu Mar 3 21:24:39 2011 GMT Module: packages Tag: HEAD ---- Log message: - rel 3 - fix segfault with ncurses 5.8
---- Files affected: packages/rtorrent: rtorrent.spec (1.87 -> 1.88) , rtorrent-ncurses.patch (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: packages/rtorrent/rtorrent.spec diff -u packages/rtorrent/rtorrent.spec:1.87 packages/rtorrent/rtorrent.spec:1.88 --- packages/rtorrent/rtorrent.spec:1.87 Tue Feb 22 22:49:52 2011 +++ packages/rtorrent/rtorrent.spec Thu Mar 3 22:24:34 2011 @@ -12,7 +12,7 @@ Summary(pl.UTF-8): rTorrent - konsolowy klient BitTorrenta Name: rtorrent Version: 0.8.7 -Release: 2 +Release: 3 License: GPL v2+ Group: Applications/Networking Source0: http://libtorrent.rakshasa.no/downloads/%{name}-%{version}.tar.gz @@ -21,6 +21,7 @@ Patch1: %{name}-ssl-no-verify.patch Patch2: %{name}-ip_filter.patch Patch3: %{name}-ac.patch +Patch4: %{name}-ncurses.patch URL: http://libtorrent.rakshasa.no/ BuildRequires: autoconf BuildRequires: automake @@ -59,6 +60,7 @@ # broke, see TODO #%patch2 -p1 %patch3 -p1 +%patch4 -p1 %build %{__libtoolize} @@ -98,6 +100,10 @@ All persons listed below can be reached at <cvs_login>@pld-linux.org $Log$ +Revision 1.88 2011/03/03 21:24:34 baggins +- rel 3 +- fix segfault with ncurses 5.8 + Revision 1.87 2011/02/22 21:49:52 blekot - BR: sqlite3-devel ================================================================ Index: packages/rtorrent/rtorrent-ncurses.patch diff -u /dev/null packages/rtorrent/rtorrent-ncurses.patch:1.1 --- /dev/null Thu Mar 3 22:24:39 2011 +++ packages/rtorrent/rtorrent-ncurses.patch Thu Mar 3 22:24:34 2011 @@ -0,0 +1,11 @@ +--- rtorrent-0.8.7/src/display/canvas.h~ 2010-06-26 14:05:07.000000000 +0200 ++++ rtorrent-0.8.7/src/display/canvas.h 2011-03-03 22:17:00.016390072 +0100 +@@ -48,7 +48,7 @@ + public: + typedef std::vector<Attributes> attributes_list; + +- Canvas(int x = 0, int y = 0, int width = 0, int height = 0) : ++ Canvas(int x = 0, int y = 0, int width = 1, int height = 1) : + m_window(newwin(height, width, y, x)) {} + ~Canvas() { delwin(m_window); } + ================================================================ ---- CVS-web: http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/rtorrent/rtorrent.spec?r1=1.87&r2=1.88&f=u _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
