From d9dc027b400e50dae80663c0db54492f7a97b94b Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Mon, 8 Jul 2024 12:49:21 -0400 Subject: [PATCH] GP-0: Fix missing schema.xml. Increment versions to 11.1.2. --- Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml | 4 ++-- Ghidra/Debug/Debugger-agent-gdb/certification.manifest | 1 + Ghidra/Debug/Debugger-agent-gdb/src/main/py/MANIFEST.in | 1 + Ghidra/Debug/Debugger-agent-gdb/src/main/py/pyproject.toml | 4 ++-- Ghidra/Debug/Debugger-agent-lldb/certification.manifest | 1 + Ghidra/Debug/Debugger-agent-lldb/src/main/py/MANIFEST.in | 1 + Ghidra/Debug/Debugger-agent-lldb/src/main/py/pyproject.toml | 4 ++-- Ghidra/Debug/Debugger-rmi-trace/src/main/py/pyproject.toml | 2 +- 8 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 Ghidra/Debug/Debugger-agent-gdb/src/main/py/MANIFEST.in create mode 100644 Ghidra/Debug/Debugger-agent-lldb/src/main/py/MANIFEST.in diff --git a/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml index 122a73141b..60a9a995eb 100644 --- a/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml +++ b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ghidradbg" -version = "11.1" +version = "11.1.2" authors = [ { name="Ghidra Development Team" }, ] @@ -17,7 +17,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "ghidratrace==11.1", + "ghidratrace==11.1.2", "pybag>=2.2.10" ] diff --git a/Ghidra/Debug/Debugger-agent-gdb/certification.manifest b/Ghidra/Debug/Debugger-agent-gdb/certification.manifest index 0e3af12ba9..9f3dcaae7a 100644 --- a/Ghidra/Debug/Debugger-agent-gdb/certification.manifest +++ b/Ghidra/Debug/Debugger-agent-gdb/certification.manifest @@ -7,6 +7,7 @@ data/scripts/fallback_maintenance_info_sections.gdb||GHIDRA||||END| data/scripts/getpid-linux-i386.gdb||GHIDRA||||END| data/scripts/wine32_info_proc_mappings.gdb||GHIDRA||||END| src/main/py/LICENSE||GHIDRA||||END| +src/main/py/MANIFEST.in||GHIDRA||||END| src/main/py/README.md||GHIDRA||||END| src/main/py/pyproject.toml||GHIDRA||||END| src/main/py/src/ghidragdb/schema.xml||GHIDRA||||END| diff --git a/Ghidra/Debug/Debugger-agent-gdb/src/main/py/MANIFEST.in b/Ghidra/Debug/Debugger-agent-gdb/src/main/py/MANIFEST.in new file mode 100644 index 0000000000..bfb9577bc6 --- /dev/null +++ b/Ghidra/Debug/Debugger-agent-gdb/src/main/py/MANIFEST.in @@ -0,0 +1 @@ +include src/ghidragdb/schema.xml \ No newline at end of file diff --git a/Ghidra/Debug/Debugger-agent-gdb/src/main/py/pyproject.toml b/Ghidra/Debug/Debugger-agent-gdb/src/main/py/pyproject.toml index f9c3c4a20d..0926c8b6ba 100644 --- a/Ghidra/Debug/Debugger-agent-gdb/src/main/py/pyproject.toml +++ b/Ghidra/Debug/Debugger-agent-gdb/src/main/py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ghidragdb" -version = "11.1" +version = "11.1.2" authors = [ { name="Ghidra Development Team" }, ] @@ -17,7 +17,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "ghidratrace==11.1", + "ghidratrace==11.1.2", ] [project.urls] diff --git a/Ghidra/Debug/Debugger-agent-lldb/certification.manifest b/Ghidra/Debug/Debugger-agent-lldb/certification.manifest index 7e99970896..9e5ae383ba 100644 --- a/Ghidra/Debug/Debugger-agent-lldb/certification.manifest +++ b/Ghidra/Debug/Debugger-agent-lldb/certification.manifest @@ -7,6 +7,7 @@ data/debugger-launchers/local-lldb.bat||GHIDRA||||END| src/llvm-project/lldb/bindings/java/java-typemaps.swig||Apache License 2.0 with LLVM Exceptions||||END| src/llvm-project/lldb/bindings/java/java.swig||Apache License 2.0 with LLVM Exceptions||||END| src/main/py/LICENSE||GHIDRA||||END| +src/main/py/MANIFEST.in||GHIDRA||||END| src/main/py/README.md||GHIDRA||||END| src/main/py/pyproject.toml||GHIDRA||||END| src/main/py/src/ghidralldb/schema.xml||GHIDRA||||END| diff --git a/Ghidra/Debug/Debugger-agent-lldb/src/main/py/MANIFEST.in b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/MANIFEST.in new file mode 100644 index 0000000000..bfb9577bc6 --- /dev/null +++ b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/MANIFEST.in @@ -0,0 +1 @@ +include src/ghidragdb/schema.xml \ No newline at end of file diff --git a/Ghidra/Debug/Debugger-agent-lldb/src/main/py/pyproject.toml b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/pyproject.toml index 7c279cf07a..88592a89e2 100644 --- a/Ghidra/Debug/Debugger-agent-lldb/src/main/py/pyproject.toml +++ b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ghidralldb" -version = "11.1" +version = "11.1.2" authors = [ { name="Ghidra Development Team" }, ] @@ -17,7 +17,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "ghidratrace==11.1", + "ghidratrace==11.1.2", ] [project.urls] diff --git a/Ghidra/Debug/Debugger-rmi-trace/src/main/py/pyproject.toml b/Ghidra/Debug/Debugger-rmi-trace/src/main/py/pyproject.toml index 69231af532..52df77e438 100644 --- a/Ghidra/Debug/Debugger-rmi-trace/src/main/py/pyproject.toml +++ b/Ghidra/Debug/Debugger-rmi-trace/src/main/py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ghidratrace" -version = "11.1" +version = "11.1.2" authors = [ { name="Ghidra Development Team" }, ]