From 3fed58c9e0695a08a39574eb98a6646bb8baa525 Mon Sep 17 00:00:00 2001 From: Norayr Chilingarian Date: Wed, 23 Feb 2022 02:02:23 +0400 Subject: [PATCH] got rid of submodules, because anonymous downloads of submodules is not allowed via ssh. --- .gitmodules | 15 --------------- dps/Internet | 1 - dps/lists | 1 - dps/opts | 1 - dps/time | 1 - makefile | 10 +++++++++- 6 files changed, 9 insertions(+), 20 deletions(-) delete mode 100644 .gitmodules delete mode 160000 dps/Internet delete mode 160000 dps/lists delete mode 160000 dps/opts delete mode 160000 dps/time diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 422de47..0000000 --- a/.gitmodules +++ /dev/null @@ -1,15 +0,0 @@ -[submodule "dps/opts"] - path = dps/opts - url = git@github.com:norayr/opts -[submodule "dps/time"] - path = dps/time - url = git@github.com:norayr/time -[submodule "lists"] - path = lists - url = git@github.com:norayr/lists -[submodule "dps/lists"] - path = dps/lists - url = git@github.com:norayr/lists -[submodule "dps/Internet"] - path = dps/Internet - url = git@github.com:norayr/Internet diff --git a/dps/Internet b/dps/Internet deleted file mode 160000 index 4b33066..0000000 --- a/dps/Internet +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4b330668416cb7077e640a58a366491433dbb7be diff --git a/dps/lists b/dps/lists deleted file mode 160000 index c6736b9..0000000 --- a/dps/lists +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c6736b95bf6c4852475afdad9ab48575a996e6a5 diff --git a/dps/opts b/dps/opts deleted file mode 160000 index bd8379e..0000000 --- a/dps/opts +++ /dev/null @@ -1 +0,0 @@ -Subproject commit bd8379e76433136d12423e17bfa24fd7c1ee0d6b diff --git a/dps/time b/dps/time deleted file mode 160000 index c17a1c7..0000000 --- a/dps/time +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c17a1c7d884c5238f3d532bc8943c4121b25bf88 diff --git a/makefile b/makefile index b35ca66..5b75f26 100644 --- a/makefile +++ b/makefile @@ -7,9 +7,11 @@ BLD := $(mkfile_dir_path)/build VOC = voc VERSION_FILE = ./VersionFile.json BLD = build +DPS = dps VIPACK = vipack -all: + +all: fetch_deps #git submodule init #git submodule update mkdir -p $(build_dir_path) @@ -39,6 +41,12 @@ all: ../src/vpkInstaller.Mod \ ../src/vipack.Mod -m +fetch_deps: + cd $(DPS) && git clone https://github.com/norayr/Internet + cd $(DPS) && git clone https://github.com/norayr/lists + cd $(DPS) && git clone https://github.com/norayr/opts + cd $(DPS) && git clone https://github.com/norayr/time + tests: mkdir -p $(BLD) cd $(BLD) && $(VOC) -s ../src/unix/vpkFiles.Mod ../tst/testFiles.Mod -m