]> git.saurik.com Git - cydia.git/blobdiff - postinst.mm
Use a private (owned by mobile!) APT sources.list.
[cydia.git] / postinst.mm
index 45a7da37d7f38e3a259346784c775637095a4be4..35c92b1ce04299c366647984457b0dec842a0b42 100644 (file)
@@ -171,11 +171,6 @@ static bool FixApplications() {
     }
 }
 
-_H<NSMutableDictionary> Sources_;
-bool Changed_;
-
-_H<NSString> System_;
-
 int main(int argc, const char *argv[]) {
     if (argc < 2 || strcmp(argv[1], "configure") != 0)
         return 0;
@@ -195,33 +190,7 @@ int main(int argc, const char *argv[]) {
         }
     }
 
-    size_t size;
-    sysctlbyname("kern.osversion", NULL, &size, NULL, 0);
-    char *osversion = new char[size];
-    if (sysctlbyname("kern.osversion", osversion, &size, NULL, 0) != -1)
-        System_ = [NSString stringWithUTF8String:osversion];
-
-    NSDictionary *metadata([[[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"] autorelease]);
-    NSUInteger version(0);
-
-    if (metadata != nil) {
-        Sources_ = [metadata objectForKey:@"Sources"];
-
-        if (NSNumber *number = [metadata objectForKey:@"Version"])
-            version = [number unsignedIntValue];
-    }
-
-    if (Sources_ == nil)
-        Sources_ = [NSMutableDictionary dictionaryWithCapacity:8];
-
-    if (version == 0) {
-        CydiaAddSource(@"http://apt.thebigboss.org/repofiles/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
-        CydiaAddSource(@"http://apt.modmyi.com/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
-        CydiaAddSource(@"http://cydia.zodttd.com/repo/cydia/", @"stable", [NSMutableArray arrayWithObject:@"main"]);
-        CydiaAddSource(@"http://repo666.ultrasn0w.com/", @"./");
-    }
-
-    CydiaWriteSources();
+    unlink("/etc/apt/sources.list.d/cydia.list");
 
     #define OldCache_ "/var/root/Library/Caches/com.saurik.Cydia"
     if (access(OldCache_, F_OK) == 0)