[30916] users/rhwood/MacPorts.Framework

source_changes at macosforge.org source_changes at macosforge.org
Sat Nov 10 19:00:45 PST 2007


Revision: 30916
          http://trac.macosforge.org/projects/macports/changeset/30916
Author:   rhwood at macports.org
Date:     2007-11-10 19:00:45 -0800 (Sat, 10 Nov 2007)

Log Message:
-----------
Fix stupid embarrassing typographical error (registery -> registry)

Modified Paths:
--------------
    users/rhwood/MacPorts.Framework/MPPort.h
    users/rhwood/MacPorts.Framework/MPPort.m
    users/rhwood/MacPorts.Framework/MPReceipt.h
    users/rhwood/MacPorts.Framework/MPReceipt.m
    users/rhwood/MacPorts.Framework/MacPorts.Framework.xcodeproj/project.pbxproj
    users/rhwood/MacPorts.Framework/MacPorts.h

Added Paths:
-----------
    users/rhwood/MacPorts.Framework/MPRegistry.h
    users/rhwood/MacPorts.Framework/MPRegistry.m

Removed Paths:
-------------
    users/rhwood/MacPorts.Framework/MPRegistery.h
    users/rhwood/MacPorts.Framework/MPRegistery.m

Modified: users/rhwood/MacPorts.Framework/MPPort.h
===================================================================
--- users/rhwood/MacPorts.Framework/MPPort.h	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPPort.h	2007-11-11 03:00:45 UTC (rev 30916)
@@ -43,7 +43,7 @@
 #import "MPInterpreter.h"
 #import "MPMutableDictionary.h"
 #import "MPReceipt.h"
-#import "MPRegistery.h"
+#import "MPRegistry.h"
 
 @interface MPPort : MPMutableDictionary {
 

Modified: users/rhwood/MacPorts.Framework/MPPort.m
===================================================================
--- users/rhwood/MacPorts.Framework/MPPort.m	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPPort.m	2007-11-11 03:00:45 UTC (rev 30916)
@@ -69,12 +69,12 @@
 
 - (void) setPortWithTclListAsString:(NSString *)string {
 	MPInterpreter *interpreter;
-	MPRegistery *registery;
+	MPRegistry *registry;
 	NSArray *installed;
 	NSEnumerator *installedEnumerator;
 	id item;
 	interpreter = [MPInterpreter sharedInterpreter];
-	registery = [MPRegistery sharedRegistery];
+	registry = [MPRegistry sharedRegistry];
 	NSString *installedVersion;
 	NSString *activeVersion;
 	
@@ -127,7 +127,7 @@
 	[self setValue:[[[self valueForKey:@"version"] stringByAppendingString:@"_"] stringByAppendingString:[self valueForKey:@"revision"]] forKey:@"compositeVersion"];
 	// set the status flag to unknown
 	[self setState:MPPortStateUnknown];
-	installed = [[registery installed:[self valueForKey:@"name"]] valueForKey:[self valueForKey:@"name"]];
+	installed = [[registry installed:[self valueForKey:@"name"]] valueForKey:[self valueForKey:@"name"]];
 	// the following logic is flawed - it makes the assuption that if the active version is not equal to the
 	// version in the PortIndex that the port is outdated + I don't know that this logic works at all on 
 	// direct installs

Modified: users/rhwood/MacPorts.Framework/MPReceipt.h
===================================================================
--- users/rhwood/MacPorts.Framework/MPReceipt.h	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPReceipt.h	2007-11-11 03:00:45 UTC (rev 30916)
@@ -36,7 +36,7 @@
 #import <Cocoa/Cocoa.h>
 #import "MPConstants.h"
 #import "MPInterpreter.h"
-#import "MPRegistery.h"
+#import "MPRegistry.h"
 
 @interface MPReceipt : MPMutableDictionary {
 

Modified: users/rhwood/MacPorts.Framework/MPReceipt.m
===================================================================
--- users/rhwood/MacPorts.Framework/MPReceipt.m	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPReceipt.m	2007-11-11 03:00:45 UTC (rev 30916)
@@ -63,7 +63,7 @@
 - (id)objectForKey:(id)aKey {
 	if ([aKey isEqualToString:@"contents"] && ![super objectForKey:aKey]) {
 		if ([[self objectForKey:@"active"] intValue]) {
-			[self setObject:[[MPRegistery sharedRegistery] filesForPort:[self objectForKey:@"name"]] forKey:aKey];
+			[self setObject:[[MPRegistry sharedRegistry] filesForPort:[self objectForKey:@"name"]] forKey:aKey];
 		} else {
 			return nil;
 		}

Deleted: users/rhwood/MacPorts.Framework/MPRegistery.h
===================================================================
--- users/rhwood/MacPorts.Framework/MPRegistery.h	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPRegistery.h	2007-11-11 03:00:45 UTC (rev 30916)
@@ -1,71 +0,0 @@
-/*
- *	$Id:$
- *	MacPorts.Framework
- *
- *	Authors:
- * 	Randall H. Wood <rhwood at macports.org>
- *
- *	Copyright (c) 2007 Randall H. Wood <rhwood at macports.org>
- *	All rights reserved.
- *
- *	Redistribution and use in source and binary forms, with or without
- *	modification, are permitted provided that the following conditions
- *	are met:
- *	1.	Redistributions of source code must retain the above copyright
- *		notice, this list of conditions and the following disclaimer.
- *	2.	Redistributions in binary form must reproduce the above copyright
- *		notice, this list of conditions and the following disclaimer in the
- *		documentation and/or other materials provided with the distribution.
- *	3.	Neither the name of the copyright owner nor the names of contributors
- *		may be used to endorse or promote products derived from this software
- *		without specific prior written permission.
- * 
- *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- *	AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- *	ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- *	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- *	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- *	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- *	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- *	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- *	POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-#import "MPConstants.h"
-#import "MPInterpreter.h"
-#import "MPPort.h"
-#import "MPReceipt.h"
-
- at interface MPRegistery : NSObject {
-
-	MPInterpreter *interpreter;
-
-}
-
-+ (MPRegistery *)sharedRegistery;
-
-/*
- * Call [self installed:@""]
- */
-- (NSDictionary *)installed;
-/*
- * Call [self installed:name version:@""]
- */
-- (NSDictionary *)installed:(NSString *)name;
-/*
- * Returns a NSDictionary of MPReciepts keyed by port name
- */
-- (NSDictionary *)installed:(NSString *)name withVersion:(NSString *)version;
-/*
- * Return an array of installed port names
- */
-- (NSArray *)installedAsArray:(NSString *)name withVersion:(NSString *)version;
-/*
- * Return an array of the files in the (installed and active) port
- */
-- (NSArray *)filesForPort:(NSString *)name;
-
- at end

Deleted: users/rhwood/MacPorts.Framework/MPRegistery.m
===================================================================
--- users/rhwood/MacPorts.Framework/MPRegistery.m	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MPRegistery.m	2007-11-11 03:00:45 UTC (rev 30916)
@@ -1,138 +0,0 @@
-/*
- *	$Id:$
- *	MacPorts.Framework
- *
- *	Authors:
- * 	Randall H. Wood <rhwood at macports.org>
- *
- *	Copyright (c) 2007 Randall H. Wood <rhwood at macports.org>
- *	All rights reserved.
- *
- *	Redistribution and use in source and binary forms, with or without
- *	modification, are permitted provided that the following conditions
- *	are met:
- *	1.	Redistributions of source code must retain the above copyright
- *		notice, this list of conditions and the following disclaimer.
- *	2.	Redistributions in binary form must reproduce the above copyright
- *		notice, this list of conditions and the following disclaimer in the
- *		documentation and/or other materials provided with the distribution.
- *	3.	Neither the name of the copyright owner nor the names of contributors
- *		may be used to endorse or promote products derived from this software
- *		without specific prior written permission.
- * 
- *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- *	AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- *	ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- *	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- *	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- *	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- *	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- *	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- *	POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "MPRegistery.h"
-
-
- at implementation MPRegistery
-
-- (id) init {
-	if (self = [super init]) {
-		interpreter = [MPInterpreter sharedInterpreter];
-	}
-	return self;
-}
-
-+ (MPRegistery *)sharedRegistery {
-	@synchronized(self) {
-		if ([[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistery"] == nil) {
-			[[self alloc] init]; // assignment not done here
-		}
-	}
-	return [[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistery"];
-}
-
-+ (id)allocWithZone:(NSZone*)zone {
-	@synchronized(self) {
-		if ([[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistery"] == nil) {
-			[[[NSThread currentThread] threadDictionary] setObject:[super allocWithZone:zone] forKey:@"sharedMPRegistery"];
-			return [[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistery"];	// assignment and return on first allocation
-		}
-	}
-	return nil;	// subsequent allocation attempts return nil
-}
-
-- (id)copyWithZone:(NSZone*)zone {
-    return self;
-}
-
-- (id)retain {
-    return self;
-}
-
-- (unsigned)retainCount {
-    return UINT_MAX;  //denotes an object that cannot be released
-}
-
-- (void)release {
-    //do nothing
-}
-
-- (id)autorelease {
-    return self;
-}
-
-- (NSDictionary *)installed {
-	return [self installed:@""];
-}
-
-- (NSDictionary *)installed:(NSString *)name {
-	return [self installed:name withVersion:@""];
-}
-
-- (NSDictionary *)installed:(NSString *)name withVersion:(NSString *)version {
-	NSArray *raw;
-	MPReceipt *receipt;
-	NSMutableDictionary *result;
-	NSEnumerator *rawEnumerator;
-	NSArray *versions;
-	id item;
-	raw = [self installedAsArray:name withVersion:version];
-	result = [[NSMutableDictionary alloc] initWithCapacity:[raw count]];
-	rawEnumerator = [raw objectEnumerator];
-	while (item = [rawEnumerator nextObject]) {
-		versions = [interpreter arrayFromTclListAsString:item];
-		if ([versions count] == 6) {
-			receipt = [[MPReceipt alloc] initWithContentsOfArray:versions];
-			if ([result objectForKey:[versions objectAtIndex:0]]) {
-				[result setObject:[[result objectForKey:[versions objectAtIndex:0]] arrayByAddingObject:receipt] forKey:[versions objectAtIndex:0]];
-			} else {
-				[result setObject:[NSArray arrayWithObject:receipt] forKey:[versions objectAtIndex:0]];
-			}
-		}
-	}
-	return result;
-}
-
-- (NSArray *)installedAsArray:(NSString *)name withVersion:(NSString *)version {
-	return [interpreter arrayFromTclListAsString:[interpreter evaluateArrayAsString:[NSArray arrayWithObjects:
-		@"return [registry::installed",
-		name,
-		version,
-		@"]",
-		nil
-		]]];
-}
-
-- (NSArray *)filesForPort:(NSString *)name {
-	return [interpreter arrayFromTclListAsString:[interpreter evaluateArrayAsString:[NSArray arrayWithObjects:
-		@"return [registry::port_registered",
-		name,
-		@"]",
-		nil
-		]]];
-}
-
- at end

Copied: users/rhwood/MacPorts.Framework/MPRegistry.h (from rev 30901, users/rhwood/MacPorts.Framework/MPRegistery.h)
===================================================================
--- users/rhwood/MacPorts.Framework/MPRegistry.h	                        (rev 0)
+++ users/rhwood/MacPorts.Framework/MPRegistry.h	2007-11-11 03:00:45 UTC (rev 30916)
@@ -0,0 +1,71 @@
+/*
+ *	$Id:$
+ *	MacPorts.Framework
+ *
+ *	Authors:
+ * 	Randall H. Wood <rhwood at macports.org>
+ *
+ *	Copyright (c) 2007 Randall H. Wood <rhwood at macports.org>
+ *	All rights reserved.
+ *
+ *	Redistribution and use in source and binary forms, with or without
+ *	modification, are permitted provided that the following conditions
+ *	are met:
+ *	1.	Redistributions of source code must retain the above copyright
+ *		notice, this list of conditions and the following disclaimer.
+ *	2.	Redistributions in binary form must reproduce the above copyright
+ *		notice, this list of conditions and the following disclaimer in the
+ *		documentation and/or other materials provided with the distribution.
+ *	3.	Neither the name of the copyright owner nor the names of contributors
+ *		may be used to endorse or promote products derived from this software
+ *		without specific prior written permission.
+ * 
+ *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ *	AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ *	ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ *	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ *	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ *	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ *	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ *	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ *	POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import <Cocoa/Cocoa.h>
+#import "MPConstants.h"
+#import "MPInterpreter.h"
+#import "MPPort.h"
+#import "MPReceipt.h"
+
+ at interface MPRegistry : NSObject {
+
+	MPInterpreter *interpreter;
+
+}
+
++ (MPRegistry *)sharedRegistry;
+
+/*
+ * Call [self installed:@""]
+ */
+- (NSDictionary *)installed;
+/*
+ * Call [self installed:name version:@""]
+ */
+- (NSDictionary *)installed:(NSString *)name;
+/*
+ * Returns a NSDictionary of MPReciepts keyed by port name
+ */
+- (NSDictionary *)installed:(NSString *)name withVersion:(NSString *)version;
+/*
+ * Return an array of installed port names
+ */
+- (NSArray *)installedAsArray:(NSString *)name withVersion:(NSString *)version;
+/*
+ * Return an array of the files in the (installed and active) port
+ */
+- (NSArray *)filesForPort:(NSString *)name;
+
+ at end

Copied: users/rhwood/MacPorts.Framework/MPRegistry.m (from rev 30901, users/rhwood/MacPorts.Framework/MPRegistery.m)
===================================================================
--- users/rhwood/MacPorts.Framework/MPRegistry.m	                        (rev 0)
+++ users/rhwood/MacPorts.Framework/MPRegistry.m	2007-11-11 03:00:45 UTC (rev 30916)
@@ -0,0 +1,138 @@
+/*
+ *	$Id:$
+ *	MacPorts.Framework
+ *
+ *	Authors:
+ * 	Randall H. Wood <rhwood at macports.org>
+ *
+ *	Copyright (c) 2007 Randall H. Wood <rhwood at macports.org>
+ *	All rights reserved.
+ *
+ *	Redistribution and use in source and binary forms, with or without
+ *	modification, are permitted provided that the following conditions
+ *	are met:
+ *	1.	Redistributions of source code must retain the above copyright
+ *		notice, this list of conditions and the following disclaimer.
+ *	2.	Redistributions in binary form must reproduce the above copyright
+ *		notice, this list of conditions and the following disclaimer in the
+ *		documentation and/or other materials provided with the distribution.
+ *	3.	Neither the name of the copyright owner nor the names of contributors
+ *		may be used to endorse or promote products derived from this software
+ *		without specific prior written permission.
+ * 
+ *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ *	AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ *	ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ *	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ *	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ *	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ *	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ *	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ *	POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import "MPRegistry.h"
+
+
+ at implementation MPRegistry
+
+- (id) init {
+	if (self = [super init]) {
+		interpreter = [MPInterpreter sharedInterpreter];
+	}
+	return self;
+}
+
++ (MPRegistry *)sharedRegistry {
+	@synchronized(self) {
+		if ([[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistry"] == nil) {
+			[[self alloc] init]; // assignment not done here
+		}
+	}
+	return [[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistry"];
+}
+
++ (id)allocWithZone:(NSZone*)zone {
+	@synchronized(self) {
+		if ([[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistry"] == nil) {
+			[[[NSThread currentThread] threadDictionary] setObject:[super allocWithZone:zone] forKey:@"sharedMPRegistry"];
+			return [[[NSThread currentThread] threadDictionary] objectForKey:@"sharedMPRegistry"];	// assignment and return on first allocation
+		}
+	}
+	return nil;	// subsequent allocation attempts return nil
+}
+
+- (id)copyWithZone:(NSZone*)zone {
+    return self;
+}
+
+- (id)retain {
+    return self;
+}
+
+- (unsigned)retainCount {
+    return UINT_MAX;  //denotes an object that cannot be released
+}
+
+- (void)release {
+    //do nothing
+}
+
+- (id)autorelease {
+    return self;
+}
+
+- (NSDictionary *)installed {
+	return [self installed:@""];
+}
+
+- (NSDictionary *)installed:(NSString *)name {
+	return [self installed:name withVersion:@""];
+}
+
+- (NSDictionary *)installed:(NSString *)name withVersion:(NSString *)version {
+	NSArray *raw;
+	MPReceipt *receipt;
+	NSMutableDictionary *result;
+	NSEnumerator *rawEnumerator;
+	NSArray *versions;
+	id item;
+	raw = [self installedAsArray:name withVersion:version];
+	result = [[NSMutableDictionary alloc] initWithCapacity:[raw count]];
+	rawEnumerator = [raw objectEnumerator];
+	while (item = [rawEnumerator nextObject]) {
+		versions = [interpreter arrayFromTclListAsString:item];
+		if ([versions count] == 6) {
+			receipt = [[MPReceipt alloc] initWithContentsOfArray:versions];
+			if ([result objectForKey:[versions objectAtIndex:0]]) {
+				[result setObject:[[result objectForKey:[versions objectAtIndex:0]] arrayByAddingObject:receipt] forKey:[versions objectAtIndex:0]];
+			} else {
+				[result setObject:[NSArray arrayWithObject:receipt] forKey:[versions objectAtIndex:0]];
+			}
+		}
+	}
+	return result;
+}
+
+- (NSArray *)installedAsArray:(NSString *)name withVersion:(NSString *)version {
+	return [interpreter arrayFromTclListAsString:[interpreter evaluateArrayAsString:[NSArray arrayWithObjects:
+		@"return [registry::installed",
+		name,
+		version,
+		@"]",
+		nil
+		]]];
+}
+
+- (NSArray *)filesForPort:(NSString *)name {
+	return [interpreter arrayFromTclListAsString:[interpreter evaluateArrayAsString:[NSArray arrayWithObjects:
+		@"return [registry::port_registered",
+		name,
+		@"]",
+		nil
+		]]];
+}
+
+ at end

Modified: users/rhwood/MacPorts.Framework/MacPorts.Framework.xcodeproj/project.pbxproj
===================================================================
--- users/rhwood/MacPorts.Framework/MacPorts.Framework.xcodeproj/project.pbxproj	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MacPorts.Framework.xcodeproj/project.pbxproj	2007-11-11 03:00:45 UTC (rev 30916)
@@ -10,8 +10,8 @@
 		481D04A20CDAAAFD00D4A550 /* MPMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 481D04A00CDAAAFC00D4A550 /* MPMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		481D04A30CDAAAFD00D4A550 /* MPMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 481D04A10CDAAAFD00D4A550 /* MPMutableDictionary.m */; };
 		481D04A40CDAAAFD00D4A550 /* MPMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 481D04A10CDAAAFD00D4A550 /* MPMutableDictionary.m */; };
-		4825ECC30CE6145B006B0385 /* MPRegistery.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F811BE0CE4636A009630DE /* MPRegistery.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		4825ECC40CE61468006B0385 /* MPRegistery.m in Sources */ = {isa = PBXBuildFile; fileRef = 48F811BF0CE4638C009630DE /* MPRegistery.m */; };
+		4825ECC30CE6145B006B0385 /* MPRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F811BE0CE4636A009630DE /* MPRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; };
+		4825ECC40CE61468006B0385 /* MPRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 48F811BF0CE4638C009630DE /* MPRegistry.m */; };
 		487679550C98C2EB00577C59 /* MPIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 487679530C98C2EB00577C59 /* MPIndex.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		487679560C98C2EB00577C59 /* MPIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = 487679540C98C2EB00577C59 /* MPIndex.m */; };
 		487679690C98C55E00577C59 /* MPPort.h in Headers */ = {isa = PBXBuildFile; fileRef = 487679670C98C55E00577C59 /* MPPort.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -61,13 +61,15 @@
 		489DD92E0C94674B00595506 /* MPInterpreterTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPInterpreterTest.m; sourceTree = "<group>"; };
 		48A866A80CD364F700B521BC /* MPReceipt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPReceipt.h; sourceTree = "<group>"; };
 		48A866A90CD364F700B521BC /* MPReceipt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPReceipt.m; sourceTree = "<group>"; };
+		48BB47ED0CE6A7EA0061C5D0 /* MPRegistery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPRegistery.h; sourceTree = "<group>"; };
+		48BB47EE0CE6A7F90061C5D0 /* MPRegistery.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPRegistery.m; sourceTree = "<group>"; };
 		48E9925B0C82C45800219DDF /* MacPorts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacPorts.h; sourceTree = "<group>"; };
 		48E992970C82C98C00219DDF /* Tcl.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Tcl.framework; path = /System/Library/Frameworks/Tcl.framework; sourceTree = "<absolute>"; };
 		48E993920C82CAAE00219DDF /* MPMacPorts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPMacPorts.h; sourceTree = "<group>"; };
 		48E993930C82CAAE00219DDF /* MPMacPorts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPMacPorts.m; sourceTree = "<group>"; };
 		48E9939E0C82CEB000219DDF /* init.tcl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.tcl; sourceTree = "<group>"; };
-		48F811BE0CE4636A009630DE /* MPRegistery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPRegistery.h; sourceTree = "<group>"; };
-		48F811BF0CE4638C009630DE /* MPRegistery.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPRegistery.m; sourceTree = "<group>"; };
+		48F811BE0CE4636A009630DE /* MPRegistry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPRegistry.h; sourceTree = "<group>"; };
+		48F811BF0CE4638C009630DE /* MPRegistry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPRegistry.m; sourceTree = "<group>"; };
 		8DC2EF5A0486A6940098B216 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
 		8DC2EF5B0486A6940098B216 /* MacPorts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MacPorts.framework; sourceTree = BUILT_PRODUCTS_DIR; };
 /* End PBXFileReference section */
@@ -150,8 +152,10 @@
 				48A866A90CD364F700B521BC /* MPReceipt.m */,
 				487679670C98C55E00577C59 /* MPPort.h */,
 				487679680C98C55E00577C59 /* MPPort.m */,
-				48F811BE0CE4636A009630DE /* MPRegistery.h */,
-				48F811BF0CE4638C009630DE /* MPRegistery.m */,
+				48BB47ED0CE6A7EA0061C5D0 /* MPRegistery.h */,
+				48F811BE0CE4636A009630DE /* MPRegistry.h */,
+				48BB47EE0CE6A7F90061C5D0 /* MPRegistery.m */,
+				48F811BF0CE4638C009630DE /* MPRegistry.m */,
 			);
 			name = Classes;
 			sourceTree = "<group>";
@@ -190,7 +194,7 @@
 			isa = PBXHeadersBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				4825ECC30CE6145B006B0385 /* MPRegistery.h in Headers */,
+				4825ECC30CE6145B006B0385 /* MPRegistry.h in Headers */,
 				48906AFD0C4230B700A3ED8A /* MPInterpreter.h in Headers */,
 				48906B100C42364200A3ED8A /* MPConstants.h in Headers */,
 				48E9925C0C82C45800219DDF /* MacPorts.h in Headers */,
@@ -315,7 +319,7 @@
 				4876796A0C98C55E00577C59 /* MPPort.m in Sources */,
 				48A866AB0CD364F700B521BC /* MPReceipt.m in Sources */,
 				481D04A30CDAAAFD00D4A550 /* MPMutableDictionary.m in Sources */,
-				4825ECC40CE61468006B0385 /* MPRegistery.m in Sources */,
+				4825ECC40CE61468006B0385 /* MPRegistry.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};

Modified: users/rhwood/MacPorts.Framework/MacPorts.h
===================================================================
--- users/rhwood/MacPorts.Framework/MacPorts.h	2007-11-11 01:49:52 UTC (rev 30915)
+++ users/rhwood/MacPorts.Framework/MacPorts.h	2007-11-11 03:00:45 UTC (rev 30916)
@@ -39,4 +39,4 @@
 #import <MacPorts/MPMacPorts.h>;
 #import <MacPorts/MPPort.h>;
 #import <MacPorts/MPReceipt.h>;
-#import <MacPorts/MPRegistery.h>;
+#import <MacPorts/MPRegistry.h>;

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20071110/5da04814/attachment-0001.html


More information about the macports-changes mailing list