Skip to content

Commit

Permalink
Merge pull request #620 from tira-io/remove_references_to_java
Browse files Browse the repository at this point in the history
Removed remaining java code
  • Loading branch information
TheMrSheldon authored Mar 12, 2024
2 parents 8e028fe + 4a43e09 commit f6540e9
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 94,246 deletions.
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ TODO
## Styleguides
### Git
### Python
### Java

## Submitting Changes
TODO
Expand Down
9 changes: 0 additions & 9 deletions protocol/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ help:
@echo " install protobuf from the included distribution"
@echo "make build"
@echo " compile tira's protobufs"
@echo "make build-java"
@echo " compile tira's protobufs"
@echo "make build-python"
@echo " compile tira's protobufs"
@echo "make clean"
Expand All @@ -34,7 +32,6 @@ build:
# TODO check if virtualenv is installed
! command -v protoc > /dev/null 2>&1 || make setup
make venv
make build-java
make build-python

# Requirements are in setup.py, so whenever setup.py is changed, re-run installation of dependencies.
Expand All @@ -54,12 +51,6 @@ build-python:
sed -i 's/import tira_host_pb2 as tira__host__pb2/from . import tira_host_pb2 as tira__host__pb2/g' $(BUILD_PATH)/python/tira_host_pb2_grpc.py
touch $(BUILD_PATH)/python/__init__.py

build-java:
mkdir -p $(BUILD_PATH)/java
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/tira_to_web.proto
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/tira_messages.proto
protoc -I=$(SRC_DIR) --java_out=$(BUILD_PATH)/java $(SRC_DIR)/TiraClientWebMessages.proto

clean:
rm -r $(VENV_NAME)
rm -r $(BUILD_PATH)
Expand Down
1 change: 0 additions & 1 deletion protocol/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ Or use the individual targets, depending on your needs:
```bash
sudo make setup # install protoc, the protobuf compiler from the distribution
make venv # setup python to compile the python targets
make build-java
make build-python
```
Loading

0 comments on commit f6540e9

Please sign in to comment.