This is an automated email from the ASF dual-hosted git repository.
jensg pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from c75646a35 version bump
add 39fa1854a Revert "THRIFT-5567: remove cl namespace references (#2580)"
add 04057ac28 Revert "THRIFT-5501 Remove Common Lisp support"
add 75bdba5d2 THRIFT-5410 CL build broken: Component
:NET.DIDIERVERNA.CLON.TERMIO not found Client: cl Patch: Max-Gerd Retzlaff
No new revisions were added by this update.
Summary of changes:
Makefile.am | 2 +-
build/docker/README.md | 1 +
build/docker/old/ubuntu-artful/Dockerfile | 11 +
build/docker/ubuntu-bionic/Dockerfile | 12 +
build/docker/ubuntu-disco/Dockerfile | 12 +
compiler/cpp/CMakeLists.txt | 1 +
compiler/cpp/Makefile.am | 1 +
compiler/cpp/compiler.vcxproj | 1 +
compiler/cpp/src/thrift/generate/t_cl_generator.cc | 558 +++++++++++++++++++++
compiler/cpp/src/thrift/generate/t_generator.cc | 2 +-
compiler/cpp/tests/CMakeLists.txt | 1 +
configure.ac | 23 +
lib/Makefile.am | 4 +
.../src/transit/services => cl}/Makefile.am | 22 +-
lib/cl/README.md | 253 ++++++++++
lib/cl/READMES/readme-cassandra.lisp | 64 +++
lib/cl/ensure-externals.sh | 16 +
lib/cl/load-locally.lisp | 23 +
lib/cl/test/make-test-binary.lisp | 35 ++
test/Makefile.am | 6 +
.../src/transit/services => test/cl}/Makefile.am | 24 +-
test/cl/implementation.lisp | 136 +++++
test/cl/make-test-client.lisp | 96 ++++
test/cl/make-test-server.lisp | 83 +++
test/cl/tests.lisp | 240 +++++++++
tutorial/Makefile.am | 4 +
tutorial/cl/Makefile.am | 66 +++
tutorial/cl/load-locally.lisp | 22 +
tutorial/cl/make-tutorial-client.lisp | 54 ++
tutorial/cl/make-tutorial-server.lisp | 32 ++
tutorial/cl/shared-implementation.lisp | 25 +
tutorial/cl/thrift-tutorial.asd | 17 +
tutorial/cl/tutorial-implementation.lisp | 41 ++
tutorial/shared.thrift | 1 +
tutorial/tutorial.thrift | 1 +
35 files changed, 1872 insertions(+), 18 deletions(-)
create mode 100644 compiler/cpp/src/thrift/generate/t_cl_generator.cc
copy lib/{rs/test_recursive/src/transit/services => cl}/Makefile.am (73%)
create mode 100644 lib/cl/README.md
create mode 100644 lib/cl/READMES/readme-cassandra.lisp
create mode 100755 lib/cl/ensure-externals.sh
create mode 100644 lib/cl/load-locally.lisp
create mode 100644 lib/cl/test/make-test-binary.lisp
copy {lib/rs/test_recursive/src/transit/services => test/cl}/Makefile.am (68%)
mode change 100644 => 100755
create mode 100644 test/cl/implementation.lisp
create mode 100644 test/cl/make-test-client.lisp
create mode 100644 test/cl/make-test-server.lisp
create mode 100644 test/cl/tests.lisp
create mode 100755 tutorial/cl/Makefile.am
create mode 100644 tutorial/cl/load-locally.lisp
create mode 100644 tutorial/cl/make-tutorial-client.lisp
create mode 100644 tutorial/cl/make-tutorial-server.lisp
create mode 100644 tutorial/cl/shared-implementation.lisp
create mode 100644 tutorial/cl/thrift-tutorial.asd
create mode 100644 tutorial/cl/tutorial-implementation.lisp