Revision 5b88029d4b8d1dc29f755eb34b208ec26bd3b229

rlaager at pidgin.im rlaager at pidgin.im
Sat Mar 24 03:00:45 EDT 2007


o   -----------------------------------------------------------------
|   Revision: 5b88029d4b8d1dc29f755eb34b208ec26bd3b229
|   Ancestor: c2e49ad98d5b2d1b213a05dbf196949a0b6d7fe6
|   Author: rlaager at pidgin.im
|   Date: 2007-03-24T06:27:57
|   Branch: im.pidgin.pidgin
|   
|   Modified files:
|           libpurple/plugins/mono/Makefile.am
|           libpurple/plugins/mono/api/BlistNode.cs
|           libpurple/plugins/mono/api/Buddy.cs
|           libpurple/plugins/mono/api/BuddyList.cs
|           libpurple/plugins/mono/api/Contact.cs
|           libpurple/plugins/mono/api/Debug.cs
|           libpurple/plugins/mono/api/Event.cs
|           libpurple/plugins/mono/api/Group.cs
|           libpurple/plugins/mono/api/Makefile.am
|           libpurple/plugins/mono/api/Signal.cs
|           libpurple/plugins/mono/api/Status.cs
|           libpurple/plugins/mono/loader/Makefile.am
|   
|   ChangeLog: 
|   
|   Gaim -> Purple rename for the Mono plugin. These changes make sense, and it
|   compiles, but other than that, I haven't tested anything.
|   
|   ============================================================
|   --- libpurple/plugins/mono/Makefile.am	bf2dfa253cebc50dcb3461a7ad3eda11b12322e9
|   +++ libpurple/plugins/mono/Makefile.am	c3f7ead4dd5dd1d25d6b9d4231ec1b694f4c25fb
|   @@ -12,8 +12,8 @@ SUFFIXES = .cs .dll
|    all: $(mono_SCRIPTS)
|    
|    SUFFIXES = .cs .dll
|   -.cs.dll: api/GaimAPI.dll $(mono_build_sources)
|   -	mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $<
|   +.cs.dll: api/PurpleAPI.dll $(mono_build_sources)
|   +	mcs -t:library -lib:./api -out:$@ -r:PurpleAPI.dll $<
|    
|    clean-local:
|    	rm -f $(mono_SCRIPTS)
|   ============================================================
|   --- libpurple/plugins/mono/api/BlistNode.cs	666f83ea369976af6fda2ea6fb5192298b2daf23
|   +++ libpurple/plugins/mono/api/BlistNode.cs	e5dc6848f41f609e45f500795b96d728faf237c2
|   @@ -1,4 +1,4 @@
|   -namespace Gaim {
|   +namespace Purple {
|    	public abstract class BlistNode {
|    	}
|    }
|   ============================================================
|   --- libpurple/plugins/mono/api/Buddy.cs	fd55af884a2be7a28b54c7b96f5359af46c87124
|   +++ libpurple/plugins/mono/api/Buddy.cs	30d746b2181e6f950ab8fa81d3d2b96cd4844957
|   @@ -1,4 +1,4 @@
|   -namespace Gaim {
|   +namespace Purple {
|    	public class Buddy : BlistNode {
|    		private string name;
|    		private string alias;
|   ============================================================
|   --- libpurple/plugins/mono/api/BuddyList.cs	15c0a4af247d84925c023c22223efc7263914b02
|   +++ libpurple/plugins/mono/api/BuddyList.cs	b63861dc4b86004ef4ba8d64e9ab04aa3433a960
|   @@ -1,4 +1,4 @@
|   -namespace Gaim {
|   +namespace Purple {
|    	using System;
|    	using System.Runtime.CompilerServices;
|    
|   ============================================================
|   --- libpurple/plugins/mono/api/Contact.cs	eb714be9ed260bd62f6c6cefd0c85fd5ebd912d0
|   +++ libpurple/plugins/mono/api/Contact.cs	aa9e615c770f51341e966be0a1856c647ca2f6c6
|   @@ -1,4 +1,4 @@
|   -namespace Gaim {
|   +namespace Purple {
|    	public class Contact : BlistNode {
|    	}
|    }
|   ============================================================
|   --- libpurple/plugins/mono/api/Debug.cs	5d4c381030c9e35d8462cfbb88c75f636db95f8b
|   +++ libpurple/plugins/mono/api/Debug.cs	7cfebe4b5a34d67af69c1800147a723f85759bb0
|   @@ -1,7 +1,7 @@ using System.Runtime.CompilerServices;
|    using System;
|    using System.Runtime.CompilerServices;
|    
|   -namespace Gaim
|   +namespace Purple
|    {
|    	public class Debug
|    	{
|   ============================================================
|   --- libpurple/plugins/mono/api/Event.cs	69a53a98ae88aa2f5e3bf7ada1befee82095ab78
|   +++ libpurple/plugins/mono/api/Event.cs	efee4dc74eceeb89b079fea4365ef8e158ac4f31
|   @@ -1,6 +1,6 @@ using System;
|    using System;
|    
|   -namespace Gaim
|   +namespace Purple
|    {
|    	public class Event
|    	{
|   ============================================================
|   --- libpurple/plugins/mono/api/Group.cs	71c5bb691c922633e07552f944fe2be023926c25
|   +++ libpurple/plugins/mono/api/Group.cs	0b00a0537860ea40c161d1dbd6183ffdf9847c6f
|   @@ -1,4 +1,4 @@
|   -namespace Gaim {
|   +namespace Purple {
|    	public class Group : BlistNode {
|    	}
|    }
|   ============================================================
|   --- libpurple/plugins/mono/api/Makefile.am	b1e1c150e28dca5fd6d7561c61f264bb89d2771c
|   +++ libpurple/plugins/mono/api/Makefile.am	8cba0799eeee3f816a9e7010b4d8ad97fcf0e581
|   @@ -1,4 +1,5 @@
|   -monodir=$(libdir)/gaim
|   +monodir=$(libdir)/purple
|   +
|    mono_sources = \
|    	BlistNode.cs \
|    	BuddyList.cs \
|   @@ -6,14 +7,14 @@ mono_sources = \
|    	Contact.cs \
|    	Debug.cs \
|    	Event.cs \
|   -	GaimPlugin.cs \
|   +	PurplePlugin.cs \
|    	Group.cs \
|    	Signal.cs \
|    	Status.cs
|    
|    EXTRA_DIST = $(mono_sources)
|    
|   -mono_SCRIPTS = GaimAPI.dll
|   +mono_SCRIPTS = PurpleAPI.dll
|    
|    mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))
|    
|   ============================================================
|   --- libpurple/plugins/mono/api/Signal.cs	1e05c4a86b0e8ecd51c4fb13acd129c50214ded8
|   +++ libpurple/plugins/mono/api/Signal.cs	00450b568053f082475f5929765a2566fb013231
|   @@ -1,7 +1,7 @@ using System.Runtime.CompilerServices;
|    using System;
|    using System.Runtime.CompilerServices;
|    
|   -namespace Gaim
|   +namespace Purple
|    {
|    	public class Signal
|    	{
|   ============================================================
|   --- libpurple/plugins/mono/api/Status.cs	2ee47aed2ec75d9fe5a267d577f50ed40f683b1f
|   +++ libpurple/plugins/mono/api/Status.cs	cd0ac31f1c1671e16c20dcfe2a5849367b9cadfc
|   @@ -1,4 +1,4 @@
|   -namespace Gaim
|   +namespace Purple
|    {
|    	public class Status
|    	{
|   ============================================================
|   --- libpurple/plugins/mono/loader/Makefile.am	77db9936b8eb1d27347ef2dbc3f79c328545972e
|   +++ libpurple/plugins/mono/loader/Makefile.am	b003a76e88daf6d25939a44c6734700f03ad2446
|   @@ -1,4 +1,4 @@
|   -plugindir = $(libdir)/gaim
|   +plugindir = $(libdir)/purple
|    
|    plugin_LTLIBRARIES = mono.la
|    
|   @@ -19,7 +19,7 @@ AM_CPPFLAGS = \
|    AM_CPPFLAGS = \
|    	-DVERSION=\"$(VERSION)\" \
|    	-I$(top_srcdir) \
|   -	-I$(top_srcdir)/libgaim \
|   +	-I$(top_srcdir)/libpurple \
|    	$(DEBUG_CFLAGS) \
|    	$(PLUGIN_CFLAGS) \
|    	$(MONO_CFLAGS)

To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 5b88029d4b8d1dc29f755eb34b208ec26bd3b229


More information about the Commits mailing list