This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update go dependencies * add libarchive-tools for apv and drop debugfs * add OVERRIDE_TARGET_FLATTEN_APEX=true to ensure flattened apex * add additional APKs for signing (OsuLogin.apk,ServiceConnectivityResources.apk,ServiceWifiResources.apk) * change over to using binary version of release tools with embedded python interpreter * update release output metadata to match expected upstream updater format
- Loading branch information
Showing
8 changed files
with
562 additions
and
179 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 |
---|---|---|
@@ -1 +1 @@ | ||
11.0 | ||
12.0 |
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 +1 @@ | ||
11.0.15 | ||
12.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,56 @@ | ||
module github.com/dan-v/rattlesnakeos-stack | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.2.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/iam v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/lambda v1.1.1 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.2.0 | ||
github.com/aws/aws-sdk-go-v2/service/sns v1.1.1 | ||
github.com/fatih/color v1.10.0 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/aws/aws-sdk-go-v2 v1.10.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.9.0 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.20.0 | ||
github.com/aws/aws-sdk-go-v2/service/iam v1.11.0 | ||
github.com/aws/aws-sdk-go-v2/service/lambda v1.10.0 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.17.0 | ||
github.com/aws/aws-sdk-go-v2/service/sns v1.9.0 | ||
github.com/fatih/color v1.13.0 | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/lunixbochs/vtclean v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.4 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/manifoldco/promptui v0.8.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/sirupsen/logrus v1.7.0 | ||
github.com/spf13/afero v1.5.1 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.7.1 | ||
github.com/spf13/viper v1.9.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
golang.org/x/sys v0.0.0-20211023085530-d6a326fbbf70 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/ini.v1 v1.63.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/credentials v1.5.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.7.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.2.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.4.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.4.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.5.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.8.0 // indirect | ||
github.com/aws/smithy-go v1.8.1 // indirect | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/juju/ansiterm v0.0.0-20210929141451-8b71cc96ebdc // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.