From 2bd5bc6f85ef5016730ae55c24153d52bf59e810 Mon Sep 17 00:00:00 2001 From: Carlen White Date: Sat, 7 Mar 2020 14:50:53 -0500 Subject: [PATCH 1/4] OPPM Support added to repo Now possible to add this repository to OPPM --- programs.cfg | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 programs.cfg diff --git a/programs.cfg b/programs.cfg new file mode 100644 index 0000000..c1e8a8a --- /dev/null +++ b/programs.cfg @@ -0,0 +1,41 @@ +{ + ["gerti-client"] = { + files = { + ["master/GERTi/GERTiClient.lua"] = "/bin", + }, + name = "GERTi Client", + description = "Allows a computer to access the GERTi network.", + authors = "Carlen White", + repo = "tree/master/GERTi", + }, + ["gerti-mnc"] = { + files = { + ["master/GERTi/GERTiMNC.lua"] = "/bin", + }, + name = "GERTi Master Network Controller", + description = "Master Network Controller for GERTi networks. Install gerte-api for internetwork support.", + authors = "MajGenRelativity", + repo = "tree/master/GERTi", + }, + ["gerte-api"] = { + files = { + ["master/GERTe/GERTeAPI.lua"] = "//lib", + }, + name = "GERTe Internetwork API", + description = "Allows access to other GERTi networks over the internet.", + authors = "MajGenRelativity", + repo = "tree/master/GERTe", + }, + ["gerti-test-application"] = { + files = { + ["master/GERTi/GERTiTestApplication.lua"] = "/bin", + }, + dependencies = { + ["gerti-client"] = "/", + }, + name = "GERTi Test Application", + description = "Very simple and rudimentary showcase of GERTi.", + authors = "MajGenRelativity", + repo = "tree/master/GERTi", + }, +} From 7bf876244350710188908e745c662fd9eddb0662 Mon Sep 17 00:00:00 2001 From: Carlen White Date: Sat, 7 Mar 2020 15:04:32 -0500 Subject: [PATCH 2/4] Author typo --- programs.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs.cfg b/programs.cfg index c1e8a8a..219efbe 100644 --- a/programs.cfg +++ b/programs.cfg @@ -5,7 +5,7 @@ }, name = "GERTi Client", description = "Allows a computer to access the GERTi network.", - authors = "Carlen White", + authors = "MajGenRelativity", repo = "tree/master/GERTi", }, ["gerti-mnc"] = { From 6de8a2119f30ea2a4d893542039c936e199e20ec Mon Sep 17 00:00:00 2001 From: Carlen White Date: Sat, 7 Mar 2020 15:04:48 -0500 Subject: [PATCH 3/4] Reclassed GERTiClient as a lib --- programs.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs.cfg b/programs.cfg index 219efbe..bb1364d 100644 --- a/programs.cfg +++ b/programs.cfg @@ -1,7 +1,7 @@ { ["gerti-client"] = { files = { - ["master/GERTi/GERTiClient.lua"] = "/bin", + ["master/GERTi/GERTiClient.lua"] = "/lib", }, name = "GERTi Client", description = "Allows a computer to access the GERTi network.", From 08da21113ed6ae130e02b2d5a8e8d249ec36cfbf Mon Sep 17 00:00:00 2001 From: Carlen White Date: Sat, 7 Mar 2020 15:23:28 -0500 Subject: [PATCH 4/4] Resolved requested changes from Gavle --- programs.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs.cfg b/programs.cfg index bb1364d..2211562 100644 --- a/programs.cfg +++ b/programs.cfg @@ -22,8 +22,8 @@ ["master/GERTe/GERTeAPI.lua"] = "//lib", }, name = "GERTe Internetwork API", - description = "Allows access to other GERTi networks over the internet.", - authors = "MajGenRelativity", + description = "Allows access to other GERTi networks or GERTe clients over the internet.", + authors = "TYKUHN2", repo = "tree/master/GERTe", }, ["gerti-test-application"] = {