Skip to content

Commit

Permalink
commit 266519655 on 20211010
Browse files Browse the repository at this point in the history
  • Loading branch information
SDRausty committed Oct 10, 2021
1 parent c47b41a commit baa466e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .conf/VERSIONID
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.477
1.0.478
13 changes: 12 additions & 1 deletion buildAPKs/prep.bash
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ _MCLOOKUP_(){
GROUPID="$(cut -d" " -f1 <<< "$ONEDEP")"
ARTIFACTID="$(cut -d" " -f2 <<< "$ONEDEP")"
VERSION="$(cut -d" " -f3 <<< "$ONEDEP")"
grep \$ <<< "$VERSION" 1>/dev/null && VERSION='latest'
[ -f "${ARTIFACTID}-${VERSION}.aar" ] || curl -OL "https://maven.google.com/${GROUPID%%\.*}/${ARTIFACTID}/${ARTIFACTID}/${VERSION}/${ARTIFACTID}-${VERSION}.aar"
[ -f "${ARTIFACTID}-${VERSION}.jar" ] || curl -OL "https://maven.google.com/${GROUPID%%\.*}/${ARTIFACTID}/${ARTIFACTID}/${VERSION}/${ARTIFACTID}-${VERSION}.jar"
}
Expand All @@ -82,6 +81,18 @@ ONEDEP="${ONEDEP//\"/}"
ONEDEP="${ONEDEP//\:/ }"
_MCLOOKUP_ "$ONEDEP"
done
for DEPFILE in $(find . -maxdepth 1 -type f -name "*.*ar")
do
if ! grep "Error 404" "$DEPFILE" 1>/dev/null
then
cp "$DEPFILE" "$RDR/var/cache/lib/"
fi
done
cd "$RDR/var/cache/lib/"
for DEPFILE in $(find . -maxdepth 1 -type f -name "*.*ar")
do
unzip -oqq "$DEPFILE" || :
done
cd "$WDR"
fi
# prep.bash EOF
4 changes: 2 additions & 2 deletions sha512.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fb7a52b0d219074f8d6f9c38a91aa2e1f7297ff92c01979fb66153b84d41a9f8fd1cc6bfe61493dc581a877f20b914075ea044c8402c0b316838fe960ee52c55 ./.conf/VERSIONID
0cabb43657e0de411da4d4b3d14eaef685f551862681e58224d6db2e9884acbb1d2dfa663bfae0dd510481ab26aa887736da4fb466731d6a740d3d2a7ce5836b ./.conf/VERSIONID
d78e4c79f01170d5f65e9583e271b7d401b6ac324c77ebc89a18dc0abcac9bbec782a8b8de63eb6ff238f8892cef7c7249bbe3916bd7fd684a6c37c864415dd7 ./CHANGE.log
e456e25fe5dc3f32f332b3c16f75b28da9603de32dd1809aa1452150e340987fac4cd6e360938860347404f651834a9f7dd8d27d9d5e7b48ed581fb67504824c ./LICENSE
859486134076243295a9107e023872aa0e42b1b457f6f3d2588d18a7fdb8f9b58c60bb1b8c8315e8a8f3bfc0e959ff18c9bc8311bd99d1ebb0250deca21ff879 ./README.md
Expand All @@ -14,7 +14,7 @@ fb3ac64b4ae8ca6b48315af9ea4ddf126da9d531a6e0e16d05144f013aea7366b5e6a0acf7177a82
af76bac3cf3b817af3257c93e6cb02b62c11d3d98b09f7a29869ec75a14f4edad8a92021fe59be46ded80d6aaf2d7c1e1e348f092dae1360c1e6c3ca17a30970 ./buildAPKs/init/mod.bash
ae3bd6cc7816af4f73f0f87ddb4ad9b4a2943d2d84ad0427a31b92473a0d14775a27c57937c1302e6e7d3d355e1e2cbcf4d826dee15aa7289c33aa2861a7e60d ./buildAPKs/libdir.bash
f1b8187b3a47c7a4e5e3986da2d2aa847c298c59f4af5c689695ae68b99412540c6b73d57bf0678eaead251d8f4a610714ef8262c57d991b3fd9ea09fd0a826d ./buildAPKs/native.bash
a83883f16555bbe04bae0ba4e18bbfe2eba60b8790b177aab5eae73f2c264f04fad63c0bc2ca88f7021ecc6f8bdd1ef0944c0cd8a3aa51759f555cd4f309f86f ./buildAPKs/prep.bash
9d1f300f479bfcac38488fa751a481eee864f37616d06eb80e569b90e00bd2279681b4d1c6be34342bd85afefa15b1d256a484c148119f6514525ea103911f3a ./buildAPKs/prep.bash
820822fcca3909ae528b770f80b0015278d92cbad002599726338a67b65c52cb4a9a09e7e173929b0a0fc727209f5a7af09eecaf5fdeecfaa22fd6f423e88550 ./buildAPKs/prep.heavy.bash
f36fde1c083c62d68ef40030d6bf4e503f9cfaa13754a426b54d5b6319300f93fb29fb2c5bb945b3879245754196c0bcaaaa1b67323d7467ad1dd445ab80d7b9 ./buildAPKs/prep.lite.bash
e3f0f285488d2c15f98d68f9ba478a39da5ccf39798e60b4c687d99fceeeda6e26a3acc7ba921ed5d84e72a7ae25a3b7c888349aa2080c1fb3d2b6444a22e612 ./buildAPKs/tots.bash
Expand Down

1 comment on commit baa466e

@SDRausty
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.