From 599971b3655680c4af4a87bfdabfffb695f757e1 Mon Sep 17 00:00:00 2001 From: Brent Seidel Date: Fri, 7 Mar 2025 06:11:48 -0700 Subject: [PATCH 1/2] bbs_lisp 0.2.1 (#1399) --- index/bb/bbs_lisp/bbs_lisp-0.2.1.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 index/bb/bbs_lisp/bbs_lisp-0.2.1.toml diff --git a/index/bb/bbs_lisp/bbs_lisp-0.2.1.toml b/index/bb/bbs_lisp/bbs_lisp-0.2.1.toml new file mode 100644 index 00000000..2f064cb6 --- /dev/null +++ b/index/bb/bbs_lisp/bbs_lisp-0.2.1.toml @@ -0,0 +1,24 @@ +name = "bbs_lisp" +description = "Embedable tiny lisp interpreter" +version = "0.2.1" + +long-description = """ +This is the core of a simple tiny lisp that is intended to be embedded in +other applications. It can be extended with new commands specific to +the application. +""" + +authors = ["Brent Seidel"] +maintainers = ["Brent Seidel "] +maintainers-logins = ["BrentSeidel"] +licenses = "GPL-3.0-or-later" +website = "https://github.com/BrentSeidel/Ada-Lisp" +tags = ["lisp", "embedded"] + +[[depends-on]] +bbs = "~0.1.0" + +[origin] +commit = "16103c334b5e02701fcc290de8cecf0a652e3558" +url = "git+https://github.com/BrentSeidel/Ada-Lisp.git" + From cd8825159187d3975dc06abd0c037125d4e4f008 Mon Sep 17 00:00:00 2001 From: Brent Seidel Date: Sat, 8 Mar 2025 03:58:32 -0700 Subject: [PATCH 2/2] simcpucli 0.4.0 (#1408) --- index/si/simcpucli/simcpucli-0.4.0.toml | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 index/si/simcpucli/simcpucli-0.4.0.toml diff --git a/index/si/simcpucli/simcpucli-0.4.0.toml b/index/si/simcpucli/simcpucli-0.4.0.toml new file mode 100644 index 00000000..e8fca35b --- /dev/null +++ b/index/si/simcpucli/simcpucli-0.4.0.toml @@ -0,0 +1,37 @@ +name = "simcpucli" +description = "CLI for CPU simulator" +version = "0.4.0" + +long-description = """ +This provides a simple command line interface to the CPU simulator library. +It has commands for setting and reading memory, reading registers, and +executing instructions. It also uses the Tiny-Lisp library so that many +of these actions can be scripted. +""" + +authors = ["Brent Seidel"] +maintainers = ["Brent Seidel "] +maintainers-logins = ["BrentSeidel"] +licenses = "GPL-3.0-or-later" +website = "https://github.com/BrentSeidel/Sim-CPU" +tags = ["cpu-simulator"] + +executables = ["simcpucli"] + +[[depends-on]] +gnat = ">7.5" + +[[depends-on]] +bbs = "~0.1.0" + +[[depends-on]] +bbs_lisp = "~0.2.1" + +[[depends-on]] +bbs_simcpu = "~0.3.2" + +[origin] +commit = "6f2878a9f3785bb5fe8a3f1afcde4fe100b635b8" +subdir = "./cli/" +url = "git+https://github.com/BrentSeidel/Sim-CPU.git" +