From 4b9f80cbedf3d13c262cf38bb360a400f55564d1 Mon Sep 17 00:00:00 2001 From: Francisco Gindre Date: Mon, 4 Apr 2022 19:25:05 -0300 Subject: [PATCH 1/2] Create DAGs for Android and iOS Specific projects This commit maintains the Wallet DAG and creates two more One for the repos that are used on for the iOS SDK and Wallet and the other for the Android SDK and Wallet. --- zcash-issue-dag.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index f4b4b7f3..9730295d 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -49,6 +49,18 @@ WALLET_REPOS = { 439137887: ('zcash-hackworks', 'zcash-light-client-ffi'), } +ANDROID_REPOS = { + 390808594: ('zcash', 'secant-android-wallet'), + 151763639: ('zcash', 'zcash-android-wallet-sdk') +} + +IOS_REPOS = { + 387551125: ('zcash', 'secant-ios-wallet'), + 185480114: ('zcash', 'ZcashLightClientKit'), + 270825987: ('zcash-hackworks', 'MnemonicSwift'), + 439137887: ('zcash-hackworks', 'zcash-light-client-ffi') +} + ZF_REPOS = { 205255683: ('ZcashFoundation', 'zebra'), 225479018: ('ZcashFoundation', 'redjubjub'), @@ -60,6 +72,8 @@ REPO_SETS = { 'core': CORE_REPOS, 'halo2': HALO2_REPOS, 'wallet': WALLET_REPOS, + 'ios': IOS_REPOS, + 'android': ANDROID_REPOS, 'zf': ZF_REPOS, } From 8277777047f656e96efce53ae0cb281c13ab64e6 Mon Sep 17 00:00:00 2001 From: str4d Date: Wed, 6 Apr 2022 17:43:26 +0100 Subject: [PATCH 2/2] Clarify that iOS and Android DAGs are subgraphs of wallet --- zcash-issue-dag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index 9730295d..72013283 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -72,8 +72,8 @@ REPO_SETS = { 'core': CORE_REPOS, 'halo2': HALO2_REPOS, 'wallet': WALLET_REPOS, - 'ios': IOS_REPOS, - 'android': ANDROID_REPOS, + 'wallet-ios': IOS_REPOS, + 'wallet-android': ANDROID_REPOS, 'zf': ZF_REPOS, }