This is an automated email from the ASF dual-hosted git repository.
dongeforever pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-python.git.
from 60758f8 first commit
add 891e201 Python Client Over Boost Python
add 6f2ca5d Python Client Over Boost Python
add 0ca3d6a Add licenses
add a501ea5 Add linseces
add 27e2586 Add liceses
add fbcb08d Support Session Credentials
new 0b430e7 Merge pull request #1 from ShannonDing/master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CMakeLists.txt | 163 ++++++++++++++++++++
LICENSE | 201 +++++++++++++++++++++++++
Makefile | 49 ++++++
README.md | 37 ++++-
bin/Makefile | 27 ++++
changelog | 7 +
cmake/ConfigureChecks.cmake | 358 ++++++++++++++++++++++++++++++++++++++++++++
doc/Introduction.md | 89 +++++++++++
project/CMakeLists.txt | 55 +++++++
project/Makefile | 98 ++++++++++++
project/tool.mak | 38 +++++
sample/__init__.py | 22 +++
sample/base.py | 49 ++++++
sample/testConsumer.py | 49 ++++++
sample/testProducer.py | 33 ++++
src/PythonWrapper.cpp | 283 ++++++++++++++++++++++++++++++++++
src/PythonWrapper.h | 98 ++++++++++++
17 files changed, 1655 insertions(+), 1 deletion(-)
create mode 100644 CMakeLists.txt
create mode 100644 LICENSE
create mode 100644 Makefile
create mode 100644 bin/Makefile
create mode 100755 changelog
create mode 100644 cmake/ConfigureChecks.cmake
create mode 100644 doc/Introduction.md
create mode 100644 project/CMakeLists.txt
create mode 100755 project/Makefile
create mode 100644 project/tool.mak
create mode 100644 sample/__init__.py
create mode 100644 sample/base.py
create mode 100644 sample/testConsumer.py
create mode 100644 sample/testProducer.py
create mode 100644 src/PythonWrapper.cpp
create mode 100644 src/PythonWrapper.h
|