-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated bromite base version, added new build scripts * Sync dependencies on fresh checkout for bromite * Remove unnecessary patch
- Loading branch information
1 parent
8cf4e81
commit 0c906a9
Showing
14 changed files
with
4,592 additions
and
1,812 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
0001-AG-Rebrand-to-Agregore.patch | ||
0001-AG-IPFS-Daemon.patch | ||
0001-AG-Handle-IPFS-and-IPNS-URLs.patch |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
100.0.4896.135 |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python3 | ||
|
||
''' | ||
This script will checkout the version of bromite specified in bromite_tag.txt | ||
''' | ||
|
||
import os | ||
import subprocess | ||
import argparse | ||
|
||
from _load_vars import load_vars | ||
|
||
parser = argparse.ArgumentParser( | ||
description='Checkout the version of bromite specified in bromite_tag.txt' | ||
) | ||
|
||
bromite_tag_file_path = os.path.normpath(os.path.join( | ||
os.path.realpath(__file__), | ||
"../bromite_tag.txt" | ||
)) | ||
|
||
DEFAULT_VERSION = "" | ||
|
||
with open(bromite_tag_file_path, "r", encoding="utf8") as bromite_tag_file: | ||
DEFAULT_VERSION = bromite_tag_file.read().strip() | ||
|
||
parser.add_argument( | ||
'--version', | ||
default=DEFAULT_VERSION, | ||
help="What version tag to use for bromite" | ||
) | ||
|
||
args = load_vars(parser) | ||
|
||
env = args["env"] | ||
bromite = args["bromite"] | ||
|
||
version = args["version"] | ||
|
||
print(f"Checking out bromite version {version}") | ||
|
||
to_exec = f"git checkout {version}" | ||
subprocess.run(to_exec, cwd=bromite, shell=True, check=True, env=env) | ||
|
||
print("Done!") |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
zeroconf-fix-2 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Bromite-auto-updater.patch | ||
Bromite-package-name.patch | ||
# Not sure why, but this patch keeps breaking | ||
Disable-minidump-upload-scheduling.patch |
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
29 changes: 0 additions & 29 deletions
29
patches/0001-AG-Fix-unhandled_tap_notifier-build-error.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.