forked from DragonBuild/dragon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and general cleanup across the project (DragonBuild#111)
* Fix a couple typos and adjust some bash syntax * Update .gitignore * Add underscores to DRAGON variables for legibility, rename DRAGONDIR to DRAGON_ROOT_DIR, define new DRAGON_DATA_DIR var, and fix relink cmd * Fix 'install' and adjust corresponding error messages * Use DRAGON_DATA_DIR, recreate DRAGON_DIR, and use DRAGON_DIR for special .dragon's * Fix debugging via dragon * Update kritanta -> cynder * Keep naming consistent * Cleanup imports, add shebangs, and remove an oudated rule * Some yaml stuff * Bring building script up-to-speed * Readd projroot to building script + more gen cleanup * Use new vars in the wizard + other gen cleanup * Fix a few options and use new vars in packaging script * Fix dragon export cmd + make common print functions and use them throughout proj * Fix dragon norm * Fix dragon remote * exit -> drexit * Avoid discarding potentially helpful errors * Cleanup some mkdirs and cleanup + adjust the install location for pkgs * Make tmp pkg path more unique + adjust dragon respring cmd * Add dependency check and resolution to prerun_checks script * Shell variables my guy... * Fix a script source order conflict * A couple deps were missing from the check * And a couple more things ... * Fix DragonMake control regression introduced in 7ef7aa (whoops) * Fix a couple test repo links * -z over == blank_string * Fix typo in prerun homebrew response check * -z over == blank_string (2) * A few things I missed before * And a final few hardcoded .dragon's to replace with vars * Replace missed echo with respective color print func * Fix dev install script for macOS and remove unnecessary macOS dep from prerun check * Fix a typo in python shebangs (whoops) * Fix tc check in prerun * Cleanup test workflow * Rename some test workflow steps * Cleanup checks in prerun * Fix faulty Linux bin path check + codesign path * Fix optool path * Cleanup a few misc things * Standardize use of os.environ[] * Fix weird python string syntax issue * Fix submodule clone err and unknown name err in the wizard * Make unknown Linux distros and unknown platforms non-fatal to the prerun check * Fix err from non-existent dir rmtree * Update pkg manager before installing deps (if req) and properly check need for iOS ninja * We don't want output from iOS ninja check * Fix framework compilation * Pretty sure this would've failed ... yml doesn't like double-bracket syntax * A few minor consistency things * Some last min cleanup and quotes for good measure * Bump ver * Update README + docs links * Update tests.yml * Update tests.yml (2)
- Loading branch information
Showing
41 changed files
with
556 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ state/phoneip | |
state/remoteip | ||
testing/* | ||
dist/ | ||
build/ | ||
dragon.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
copyright (c) 2020 kritanta | ||
copyright (c) 2020-2022 cynder | ||
|
||
dragon license version 1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import re | ||
import textwrap | ||
#!/usr/bin/env python3 | ||
|
||
import re, textwrap | ||
from .writer import Writer | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ | |
use Python. | ||
""" | ||
|
||
import re | ||
import textwrap | ||
import re, textwrap | ||
from .writer import Writer | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
class Writer(object): | ||
def __init__(self, output, width=78): | ||
pass | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.