rpms/rekall/FC-3 rekall-2.2.3-64bitfix.patch, 1.6, 1.7 rekall.spec, 1.6, 1.7

Tom Callaway (spot) fedora-extras-commits at redhat.com
Thu Oct 6 17:09:52 UTC 2005


Author: spot

Update of /cvs/extras/rpms/rekall/FC-3
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13961/FC-3

Modified Files:
	rekall-2.2.3-64bitfix.patch rekall.spec 
Log Message:

FC-3 is held together with duct-tape.


rekall-2.2.3-64bitfix.patch:

Index: rekall-2.2.3-64bitfix.patch
===================================================================
RCS file: /cvs/extras/rpms/rekall/FC-3/rekall-2.2.3-64bitfix.patch,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rekall-2.2.3-64bitfix.patch	6 Oct 2005 16:15:13 -0000	1.6
+++ rekall-2.2.3-64bitfix.patch	6 Oct 2005 17:09:50 -0000	1.7
@@ -27,154 +27,3 @@
  
  mysql_libdir=NO
  for i in $mysql_libdirs;
---- rekall-2.2.3/libs/el32/hash.cpp.BAD	2005-09-22 13:34:45.000000000 -0500
-+++ rekall-2.2.3/libs/el32/hash.cpp	2005-09-22 13:34:53.000000000 -0500
-@@ -141,7 +141,7 @@
- 			/* otherwise use just the tag (pretty useless	*/
- 			/* but so what, not a common case).		*/
- 			if ((key.tag->flags & TF_SHARED) == 0)
--				hval	= (int)key.val.shared ;
-+				hval	= (long)key.val.shared ;
- 			else	hval	= key.tag->tag ;
- 			break	;
- 	}
---- rekall-2.2.4/libs/kbase/kb_parse.cpp.BAD	2005-09-22 14:29:36.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_parse.cpp	2005-09-22 14:29:52.000000000 -0500
-@@ -971,7 +971,7 @@
- 			receiver,
- 			SLOT (newNode(int)),
- 			0,
--			(int)nsItem
-+			(long)nsItem
- 		)	;
- 
- 		sep	= true	;
-@@ -1025,7 +1025,7 @@
- 			receiver,
- 			SLOT (newNode(int)),
- 			0,
--			(int)nsItem
-+			(long)nsItem
- 		)	;
- 	}
- 
-@@ -1043,7 +1043,7 @@
- 				receiver,
- 				SLOT (newNode(int)),
- 				0,
--				(int)exItem
-+				(long)exItem
- 			)	;
- 		)
- 
---- rekall-2.2.4/libs/kbase/kb_link.cpp.BAD	2005-09-22 15:53:11.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_link.cpp	2005-09-22 15:53:53.000000000 -0500
-@@ -849,21 +849,21 @@
- 		receiver,
- 		SLOT(newNode(int)),
- 		0,
--		(int)&nodeSpecTable
-+		(long)&nodeSpecTable
- 	)	;
- 	lp->insertItem
- 	(	TR("Query link"),
- 		receiver,
- 		SLOT(newNode(int)),
- 		0,
--		(int)&nodeSpecQuery
-+		(long)&nodeSpecQuery
- 	)	;
- 	lp->insertItem
- 	(	TR("SQL link"  ),
- 		receiver,
- 		SLOT(newNode(int)),
- 		0,
--		(int)&nodeSpecSQL
-+		(long)&nodeSpecSQL
- 	) 	;
- 
- 	popup->insertItem (TR("New &Link"), lp) ;
---- rekall-2.2.4/libs/kbase/kb_framer.cpp.BAD	2005-09-22 22:04:21.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_framer.cpp	2005-09-22 22:04:30.000000000 -0500
-@@ -321,7 +321,7 @@
- 		return	false	;
- 	}
- 
--	newNode ((int)nSpec) ;
-+	newNode ((long)nSpec) ;
- 	return	true	;
- }
- 
---- rekall-2.2.4/libs/kbase/kb_formblock.cpp.BAD	2005-09-22 22:03:30.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_formblock.cpp	2005-09-22 22:03:46.000000000 -0500
-@@ -1510,7 +1510,7 @@
- 		return	false	;
- 	}
- 
--	newNode ((int)nSpec) ;
-+	newNode ((long)nSpec) ;
- 	return	true	;
- }
- 
---- rekall-2.2.4/libs/kbase/kb_overridedlg.cpp.BAD	2005-09-23 11:00:50.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_overridedlg.cpp	2005-09-23 11:01:04.000000000 -0500
-@@ -333,7 +333,7 @@
- 	old.clear () ;
- 
- 	QListViewItem	*item	= m_lvOverride.firstChild() ;
--	uint		ident	= 0x000ffffff & (uint)(void *)item ;
-+	uint		ident	= 0x000ffffff & (unsigned long)(void *)item ;
- 
- 	while (item != 0)
- 	{
---- rekall-2.2.4/libs/kbase/kb_configdlg.cpp.BAD	2005-10-05 13:00:35.000000000 -0500
-+++ rekall-2.2.4/libs/kbase/kb_configdlg.cpp	2005-10-05 13:01:02.000000000 -0500
-@@ -337,7 +337,7 @@
- 	old.clear () ;
- 
- 	QListViewItem	*item	= m_lvConfigs.firstChild() ;
--	uint		ident	= 0x000ffffff & (uint)(void *)item ;
-+	uint		ident	= 0x000ffffff & (unsigned long)(void *)item ;
- 
- 	while (item != 0)
- 	{
---- rekall-2.2.4/script/python/lib-sys/tkc_pydebugbase.cpp.BAD	2005-10-06 08:01:42.000000000 -0500
-+++ rekall-2.2.4/script/python/lib-sys/tkc_pydebugbase.cpp	2005-10-06 08:04:37.000000000 -0500
-@@ -550,7 +550,7 @@
- 	if (PyModule_Check (pyObj) || PyCode_Check (pyObj))
- 		if (findTracePoint (pyObj, lineNo) == 0)
- 		{
--			fprintf	(stderr, "Set trace: %08x:%d\n", (uint)pyObj, lineNo) ;
-+			fprintf	(stderr, "Set trace: %08x:%d\n", (unsigned long)pyObj, lineNo) ;
- 			tracePoints.append (new TKCPyTracePoint (pyObj, userPtr, lineNo)) ;
- 			enable	() ;
- 		}
-@@ -573,7 +573,7 @@
- 	if (PyModule_Check (pyObj) || PyCode_Check (pyObj))
- 		if ((tp = findTracePoint (pyObj, lineNo)) != 0)
- 		{
--			fprintf	(stderr, "Rem trace: %08x:%d\n", (uint)pyObj, lineNo) ;
-+			fprintf	(stderr, "Rem trace: %08x:%d\n", (unsigned long)pyObj, lineNo) ;
- 			tracePoints.remove (tp) ;
- 			delete	tp ;
- 			disable	() ;
---- rekall-2.2.4/script/python/lib-sys_rt/tkc_pydebugbase.cpp.BAD	2005-10-06 09:00:06.000000000 -0500
-+++ rekall-2.2.4/script/python/lib-sys_rt/tkc_pydebugbase.cpp	2005-10-06 09:00:27.000000000 -0500
-@@ -550,7 +550,7 @@
- 	if (PyModule_Check (pyObj) || PyCode_Check (pyObj))
- 		if (findTracePoint (pyObj, lineNo) == 0)
- 		{
--			fprintf	(stderr, "Set trace: %08x:%d\n", (uint)pyObj, lineNo) ;
-+			fprintf	(stderr, "Set trace: %08x:%d\n", (unsigned long)pyObj, lineNo) ;
- 			tracePoints.append (new TKCPyTracePoint (pyObj, userPtr, lineNo)) ;
- 			enable	() ;
- 		}
-@@ -573,7 +573,7 @@
- 	if (PyModule_Check (pyObj) || PyCode_Check (pyObj))
- 		if ((tp = findTracePoint (pyObj, lineNo)) != 0)
- 		{
--			fprintf	(stderr, "Rem trace: %08x:%d\n", (uint)pyObj, lineNo) ;
-+			fprintf	(stderr, "Rem trace: %08x:%d\n", (unsigned long)pyObj, lineNo) ;
- 			tracePoints.remove (tp) ;
- 			delete	tp ;
- 			disable	() ;


Index: rekall.spec
===================================================================
RCS file: /cvs/extras/rpms/rekall/FC-3/rekall.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rekall.spec	6 Oct 2005 16:15:13 -0000	1.6
+++ rekall.spec	6 Oct 2005 17:09:50 -0000	1.7
@@ -1,7 +1,7 @@
 Name:		rekall
 Summary:	A KDE database front-end application
 Version:	2.2.4
-Release:	7%{?dist}
+Release:	8%{?dist}
 Group:		Development/Tools
 License:	GPL
 URL:		http://www.rekallrevealed.org/
@@ -336,6 +336,9 @@
 %{_libdir}/librekallrt.la
 
 %changelog
+* Thu Oct  5 2005 Tom "spot" Callaway <tcallawa at redhat.com> 2.2.4-8
+- FC-3 is held together with duct-tape
+
 * Wed Oct  5 2005 Tom "spot" Callaway <tcallawa at redhat.com> 2.2.4-7
 - BR: libacl-devel
 




More information about the fedora-extras-commits mailing list