mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2025-06-21 13:04:33 -04:00
Cleanup
- Removes unused files/patches - Removes many guards, these likely don't work anyway due to patchsets having dependencies - No functional change Signed-off-by: Tavi <tavi@divested.dev>
This commit is contained in:
parent
af25d96aee
commit
afe1135384
449 changed files with 193 additions and 22661 deletions
44
Misc/asb.java
Normal file
44
Misc/asb.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class asb {
|
||||
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
Scanner s = new Scanner(System.in);
|
||||
ArrayList<String> patchers = new ArrayList<>();
|
||||
while (s.hasNextLine()) {
|
||||
String line = s.nextLine();
|
||||
if(line.trim().length() > 0 && line.contains("github.com")) {
|
||||
String[] lineS = line.split(" ");
|
||||
String url = lineS[0];
|
||||
String project = url.split("/")[4];
|
||||
String id = lineS[1];
|
||||
String comment = "#" + line.split(" #")[1];
|
||||
|
||||
//Print the folders only
|
||||
//System.out.println(project);
|
||||
|
||||
//Print the downloader
|
||||
//System.out.println("wget " + url + ".patch" + " -O " + project + "/" + id + ".patch; " + comment);
|
||||
|
||||
//Print the patcher
|
||||
patchers.add("applyPatch \"$DOS_PATCHES/" + project + "/" + id + ".patch\"; " + comment);
|
||||
}
|
||||
if(line.equals("COMPLETE")) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Collections.sort(patchers);
|
||||
for(String patcher : patchers) {
|
||||
System.out.println(patcher);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue