summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2017-11-30 22:30:03 +0100
committerJens Geyer <jensg@apache.org>2017-12-01 23:01:41 +0100
commitf3a2974dfe63b3a551b422868f3990112bda5bd8 (patch)
tree35a1332929f12d12722d829edef1c375c901953d
parent152d1bef44853601d88d51e616387accfbc675a3 (diff)
downloadthrift-f3a2974dfe63b3a551b422868f3990112bda5bd8.tar.gz
THRIFT-4398 Update EXTRA_DIST for "make dist"
Client: Build process Patch: Jens Geyer This closes #1431
-rwxr-xr-xMakefile.am4
-rw-r--r--lib/csharp/Makefile.am23
-rw-r--r--lib/dart/Makefile.am4
-rw-r--r--lib/erl/Makefile.am1
-rw-r--r--lib/netcore/Makefile.am2
-rw-r--r--lib/perl/Makefile.am3
-rw-r--r--lib/py/Makefile.am1
-rw-r--r--lib/rs/test/Makefile.am4
-rw-r--r--test/csharp/Makefile.am8
-rw-r--r--test/haxe/Makefile.am28
-rw-r--r--test/netcore/Makefile.am1
-rw-r--r--tutorial/dart/Makefile.am3
-rw-r--r--tutorial/go/Makefile.am3
-rw-r--r--tutorial/haxe/Makefile.am28
-rw-r--r--tutorial/netcore/Makefile.am2
15 files changed, 78 insertions, 37 deletions
diff --git a/Makefile.am b/Makefile.am
index 4b3157c90..3d71fd4b7 100755
--- a/Makefile.am
+++ b/Makefile.am
@@ -111,9 +111,13 @@ EXTRA_DIST = \
.clang-format \
.editorconfig \
.travis.yml \
+ .rustfmt.toml \
+ .dockerignore \
appveyor.yml \
bower.json \
build \
+ bootstrap.sh \
+ cleanup.sh \
CMakeLists.txt \
composer.json \
contrib \
diff --git a/lib/csharp/Makefile.am b/lib/csharp/Makefile.am
index f113e1a41..be49d5ecd 100644
--- a/lib/csharp/Makefile.am
+++ b/lib/csharp/Makefile.am
@@ -97,14 +97,15 @@ clean-local:
$(RM) Thrift.45.dll
EXTRA_DIST = \
- $(THRIFTCODE) \
- ThriftMSBuildTask \
- src/Thrift.csproj \
- src/Thrift.45.csproj \
- src/Thrift.sln \
- src/Transport/TSilverlightSocket.cs \
- src/Transport/THttpTaskAsyncHandler.cs \
- src/TAsyncProcessor.cs \
- test \
- coding_standards.md \
- README.md
+ $(THRIFTCODE) \
+ ThriftMSBuildTask \
+ src/Thrift.csproj \
+ src/Thrift.45.csproj \
+ src/Thrift.sln \
+ src/Net35/ExtensionsNet35.cs \
+ src/Transport/TSilverlightSocket.cs \
+ src/Transport/THttpTaskAsyncHandler.cs \
+ src/TAsyncProcessor.cs \
+ test \
+ coding_standards.md \
+ README.md
diff --git a/lib/dart/Makefile.am b/lib/dart/Makefile.am
index 910db50fc..ab6ddc022 100644
--- a/lib/dart/Makefile.am
+++ b/lib/dart/Makefile.am
@@ -27,3 +27,7 @@ clean-local:
find . -type f -name "pubspec.lock" | xargs $(RM)
check-local: all
+
+EXTRA_DIST = \
+ .analysis_options
+
diff --git a/lib/erl/Makefile.am b/lib/erl/Makefile.am
index 20aadebb3..8867f884e 100644
--- a/lib/erl/Makefile.am
+++ b/lib/erl/Makefile.am
@@ -82,6 +82,7 @@ EXTRA_DIST = \
src \
coding_standards.md \
rebar.config \
+ rebar.config.script \
rebar.test.config \
test \
README.md
diff --git a/lib/netcore/Makefile.am b/lib/netcore/Makefile.am
index 526299391..facee11dd 100644
--- a/lib/netcore/Makefile.am
+++ b/lib/netcore/Makefile.am
@@ -25,6 +25,7 @@ TESTDIR = Tests/Thrift.PublicInterfaces.Compile.Tests
GENDIR = $(TESTDIR)/gen-netcore
THRIFTCODE = \
+ Thrift/Thrift.csproj \
Thrift/ITAsyncProcessor.cs \
Thrift/ITProcessorFactory.cs \
Thrift/SingletonTProcessorFactory.cs \
@@ -72,6 +73,7 @@ THRIFTCODE = \
Thrift/Transports/Client/TTlsSocketClientTransport.cs \
Thrift/Transports/Server/THttpServerTransport.cs \
Thrift/Transports/Server/TNamedPipeServerTransport.cs \
+ Thrift/Transports/Server/TServerFramedTransport.cs \
Thrift/Transports/Server/TServerSocketTransport.cs \
Thrift/Transports/Server/TTlsServerSocketTransport.cs
diff --git a/lib/perl/Makefile.am b/lib/perl/Makefile.am
index 0d2c8d3ea..fa0f16b8a 100644
--- a/lib/perl/Makefile.am
+++ b/lib/perl/Makefile.am
@@ -38,12 +38,14 @@ clean-local:
EXTRA_DIST = \
coding_standards.md \
+ build-cpan-dist.sh \
Makefile.PL \
test.pl \
lib/Thrift.pm \
lib/Thrift.pm \
lib/Thrift/BinaryProtocol.pm \
lib/Thrift/BufferedTransport.pm \
+ lib/Thrift/Exception.pm \
lib/Thrift/FramedTransport.pm \
lib/Thrift/HttpClient.pm \
lib/Thrift/MemoryBuffer.pm \
@@ -59,6 +61,7 @@ EXTRA_DIST = \
lib/Thrift/SSLServerSocket.pm \
lib/Thrift/UnixServerSocket.pm \
lib/Thrift/UnixSocket.pm \
+ lib/Thrift/Type.pm \
lib/Thrift/Transport.pm \
README.md
diff --git a/lib/py/Makefile.am b/lib/py/Makefile.am
index fd9ce257e..5861858f4 100644
--- a/lib/py/Makefile.am
+++ b/lib/py/Makefile.am
@@ -49,6 +49,7 @@ check-local: all py3-test
EXTRA_DIST = \
CMakeLists.txt \
+ MANIFEST.in \
coding_standards.md \
compat \
setup.py \
diff --git a/lib/rs/test/Makefile.am b/lib/rs/test/Makefile.am
index 87208d7ba..8edd756bf 100644
--- a/lib/rs/test/Makefile.am
+++ b/lib/rs/test/Makefile.am
@@ -44,6 +44,10 @@ clean-local:
EXTRA_DIST = \
Cargo.toml \
+ thrifts/Base_One.thrift \
+ thrifts/Base_Two.thrift \
+ thrifts/Midlayer.thrift \
+ thrifts/Ultimate.thrift \
src/lib.rs \
src/bin/kitchen_sink_server.rs \
src/bin/kitchen_sink_client.rs
diff --git a/test/csharp/Makefile.am b/test/csharp/Makefile.am
index 7aa332ccf..ad166e384 100644
--- a/test/csharp/Makefile.am
+++ b/test/csharp/Makefile.am
@@ -85,3 +85,11 @@ check-local: TestClientServer.exe
MONO_PATH=$(LIBDIR) timeout 10 mono TestClientServer.exe server --port=$(TESTPORT) &
sleep 1
MONO_PATH=$(LIBDIR) mono TestClientServer.exe client --port=$(TESTPORT)
+
+EXTRA_DIST = \
+ Properties/AssemblyInfo.cs \
+ ThriftTest.csproj \
+ ThriftTest.sln \
+ Program.cs \
+ TestServer.cs \
+ TestClient.cs
diff --git a/test/haxe/Makefile.am b/test/haxe/Makefile.am
index 4edaa30e5..6c0483e9e 100644
--- a/test/haxe/Makefile.am
+++ b/test/haxe/Makefile.am
@@ -87,16 +87,18 @@ check_php_web: $(BIN_PHP_WEB) $(BIN_CPP)
EXTRA_DIST = \
- src \
- cpp.hxml \
- csharp.hxml \
- flash.hxml \
- java.hxml \
- javascript.hxml \
- neko.hxml \
- php.hxml \
- python.hxml \
- project.hide \
- TestClientServer.hxproj \
- make_all.bat \
- make_all.sh
+ src \
+ cpp.hxml \
+ csharp.hxml \
+ flash.hxml \
+ java.hxml \
+ javascript.hxml \
+ neko.hxml \
+ php.hxml \
+ python.hxml \
+ router.php \
+ project.hide \
+ php-web-server.hxml \
+ TestClientServer.hxproj \
+ make_all.bat \
+ make_all.sh
diff --git a/test/netcore/Makefile.am b/test/netcore/Makefile.am
index e84a57aec..e029a24cb 100644
--- a/test/netcore/Makefile.am
+++ b/test/netcore/Makefile.am
@@ -52,6 +52,7 @@ EXTRA_DIST = \
$(THRIFTCODE) \
ThriftTest.sln \
ThriftTest/ThriftTest.csproj \
+ ThriftTest/Properties/launchSettings.json \
build.cmd \
build.sh \
README.md
diff --git a/tutorial/dart/Makefile.am b/tutorial/dart/Makefile.am
index 2e8cd342d..0495aca60 100644
--- a/tutorial/dart/Makefile.am
+++ b/tutorial/dart/Makefile.am
@@ -67,4 +67,7 @@ EXTRA_DIST = \
console_client/pubspec.yaml \
server/bin/main.dart \
server/pubspec.yaml \
+ console_client/.analysis_options \
+ client/.analysis_options \
+ server/.analysis_options \
build.sh
diff --git a/tutorial/go/Makefile.am b/tutorial/go/Makefile.am
index 30662f536..a146d5c9f 100644
--- a/tutorial/go/Makefile.am
+++ b/tutorial/go/Makefile.am
@@ -61,6 +61,9 @@ EXTRA_DIST = \
src/handler.go \
src/server.go \
src/main.go \
+ src/go17.go \
+ src/handler_go17.go \
+ src/pre_go17.go \
server.crt \
server.key
diff --git a/tutorial/haxe/Makefile.am b/tutorial/haxe/Makefile.am
index 13ac48dac..e6f271346 100644
--- a/tutorial/haxe/Makefile.am
+++ b/tutorial/haxe/Makefile.am
@@ -80,16 +80,18 @@ clean-local:
$(RM) -r gen-haxe bin
EXTRA_DIST = \
- src \
- cpp.hxml \
- csharp.hxml \
- flash.hxml \
- java.hxml \
- javascript.hxml \
- neko.hxml \
- php.hxml \
- python.hxml \
- project.hide \
- Tutorial.hxproj \
- make_all.bat \
- make_all.sh
+ src \
+ cpp.hxml \
+ csharp.hxml \
+ flash.hxml \
+ java.hxml \
+ javascript.hxml \
+ php-web-server.hxml \
+ neko.hxml \
+ php.hxml \
+ python.hxml \
+ router.php \
+ project.hide \
+ Tutorial.hxproj \
+ make_all.bat \
+ make_all.sh
diff --git a/tutorial/netcore/Makefile.am b/tutorial/netcore/Makefile.am
index 2e62ee058..ef3d618fe 100644
--- a/tutorial/netcore/Makefile.am
+++ b/tutorial/netcore/Makefile.am
@@ -65,8 +65,10 @@ EXTRA_DIST = \
Interfaces/Interfaces.csproj \
Client/Client.csproj \
Client/ThriftTest.pfx \
+ Client/Properties/launchSettings.json \
Server/Server.csproj \
Server/ThriftTest.pfx \
+ Server/Properties/launchSettings.json \
build.cmd \
build.sh \
README.md