rpms/choqok/devel choqok-0.6-inreplyto.patch, NONE, 1.1 choqok.spec, 1.4, 1.5

Tejas Dinkar tejas at fedoraproject.org
Sat Jun 13 07:01:48 UTC 2009


Author: tejas

Update of /cvs/pkgs/rpms/choqok/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12891

Modified Files:
	choqok.spec 
Added Files:
	choqok-0.6-inreplyto.patch 
Log Message:
Fixed the in reply to bug caused by 2^32 rolling.


choqok-0.6-inreplyto.patch:

--- NEW FILE choqok-0.6-inreplyto.patch ---
diff -ur choqok-0.6/src/statuswidget.cpp choqok/src/statuswidget.cpp
--- choqok-0.6/src/statuswidget.cpp	2009-05-22 22:36:16.000000000 +0530
+++ choqok/src/statuswidget.cpp	2009-06-13 12:24:45.544395290 +0530
@@ -137,7 +137,7 @@
         Backend *b = new Backend(new Account(*mCurrentAccount), this);
         connect( b, SIGNAL( singleStatusReceived( Status ) ),
                 this, SLOT( baseStatusReceived(Status) ) );
-        b->requestSingleStatus( url.host().toInt() );
+        b->requestSingleStatus( url.host().toULongLong() );
         return;
     } else {
         if( Settings::useCustomBrowser() ) {


Index: choqok.spec
===================================================================
RCS file: /cvs/pkgs/rpms/choqok/devel/choqok.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- choqok.spec	13 Jun 2009 06:03:58 -0000	1.4
+++ choqok.spec	13 Jun 2009 07:01:17 -0000	1.5
@@ -1,7 +1,7 @@
 Summary: Choqok KDE Micro-Blogging Client
 Name: choqok
 Version: 0.6
-Release: 5%{?dist}
+Release: 6%{?dist}
 License: GPLv3
 Group: Applications/Internet
 URL: http://choqok.gnufolks.org/
@@ -14,6 +14,7 @@ BuildRequires: kdelibs4-devel
 BuildRequires: gettext
 
 Patch0: choqok-0.6-twitpocalypse.patch
+Patch1: choqok-0.6-inreplyto.patch
 
 %description
 A Free/Open Source micro-blogging client for K Desktop Environment.
@@ -23,6 +24,7 @@ Choqok currently supports Twitter.com an
 %prep
 %setup -q
 %patch0 -p1 -b .twitpocalypse
+%patch1 -p1 -b .inreplyto
 
 %build
 mkdir -p %{_target_platform}
@@ -53,6 +55,8 @@ rm -rf %{buildroot}
 %{_kde4_sharedir}/config.kcfg/choqok.kcfg
 
 %changelog
+* Sat Jun 13 2009 Tejas Dinkar <tejas at gja.in> - 0.6-6
+- Fixed the inreplyto (via patch)
 * Sat Jun 13 2009 Tejas Dinkar <tejas at gja.in> - 0.6-5
 - Fixed the twitpocalypse (via patch)
 * Wed May 27 2009 Tejas Dinkar <tejas at gja.in> - 0.6-4




More information about the fedora-extras-commits mailing list