You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2022/02/02 21:58:49 UTC

[thrift] branch 0.16.0 updated: FIX: missing EXTRA_DIST entries

This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch 0.16.0
in repository https://gitbox.apache.org/repos/asf/thrift.git


The following commit(s) were added to refs/heads/0.16.0 by this push:
     new a10d401  FIX: missing EXTRA_DIST entries
a10d401 is described below

commit a10d401996690d3e5387341c1248b7d1028d9ac7
Author: Jens Geyer <je...@apache.org>
AuthorDate: Wed Feb 2 22:57:46 2022 +0100

    FIX: missing EXTRA_DIST entries
---
 lib/go/test/Makefile.am                                | 2 ++
 lib/go/test/fuzz/Makefile.am                           | 5 +++++
 lib/netstd/Makefile.am                                 | 3 +++
 lib/php/Makefile.am                                    | 2 ++
 lib/rs/test_recursive/src/Makefile.am                  | 1 +
 lib/rs/test_recursive/src/maintenance/Makefile.am      | 1 +
 lib/rs/test_recursive/src/transit/Makefile.am          | 1 +
 lib/rs/test_recursive/src/transit/light/Makefile.am    | 1 +
 lib/rs/test_recursive/src/transit/services/Makefile.am | 1 +
 test/Makefile.am                                       | 1 +
 10 files changed, 18 insertions(+)

diff --git a/lib/go/test/Makefile.am b/lib/go/test/Makefile.am
index cd0f33c..4b3ecda 100644
--- a/lib/go/test/Makefile.am
+++ b/lib/go/test/Makefile.am
@@ -127,6 +127,8 @@ EXTRA_DIST = \
 	ConflictNamespaceTestB.thrift \
 	ConflictNamespaceTestC.thrift \
 	ConflictNamespaceTestD.thrift \
+	ConflictNamespaceTestE.thrift \
+	ConflictNamespaceTestF.thrift \
 	ConflictNamespaceTestSuperThing.thrift \
 	ConstOptionalField.thrift \
 	ConstOptionalFieldImport.thrift \
diff --git a/lib/go/test/fuzz/Makefile.am b/lib/go/test/fuzz/Makefile.am
index a6abfc5..391c84a 100644
--- a/lib/go/test/fuzz/Makefile.am
+++ b/lib/go/test/fuzz/Makefile.am
@@ -29,3 +29,8 @@ check: gopathfuzz
 clean-local:
 	$(RM) -r gopathfuzz gen-go
 
+EXTRA_DIST = \
+	fuzz.go \
+	fuzz_test.go \
+	go.mod \
+	go.sum 
diff --git a/lib/netstd/Makefile.am b/lib/netstd/Makefile.am
index f1a87a2..cf4d134 100644
--- a/lib/netstd/Makefile.am
+++ b/lib/netstd/Makefile.am
@@ -42,6 +42,7 @@ clean-local:
 EXTRA_DIST = \
 	README.md \
 	Directory.Build.props \
+	.editorconfig \
 	Benchmarks/Thrift.Benchmarks \
 	Tests/Thrift.IntegrationTests/Protocols \
 	Tests/Thrift.IntegrationTests/Thrift.IntegrationTests.csproj \
@@ -53,12 +54,14 @@ EXTRA_DIST = \
 	Tests/Thrift.Tests/Collections \
 	Tests/Thrift.Tests/DataModel \
 	Tests/Thrift.Tests/Protocols \
+	Tests/Thrift.Tests/Transports \
 	Tests/Thrift.Tests/Thrift.Tests.csproj \
 	Thrift/Collections \
 	Thrift/Processor \
 	Thrift/Properties \
 	Thrift/Protocol \
 	Thrift/Server \
+	Thrift/GlobalSuppressions.cs \
 	Thrift/TApplicationException.cs \
 	Thrift/TBaseClient.cs \
 	Thrift/TConfiguration.cs \
diff --git a/lib/php/Makefile.am b/lib/php/Makefile.am
index 1857d03..eecda33 100755
--- a/lib/php/Makefile.am
+++ b/lib/php/Makefile.am
@@ -140,6 +140,8 @@ EXTRA_DIST = \
 	src/ext/thrift_protocol/config.w32 \
 	src/ext/thrift_protocol/php_thrift_protocol.cpp \
 	src/ext/thrift_protocol/php_thrift_protocol.h \
+	src/ext/thrift_protocol/php_thrift_protocol.stub.php
+	src/ext/thrift_protocol/php_thrift_protocol_arginfo.h \
 	src/Thrift.php \
 	src/TStringUtils.php \
 	coding_standards.md \
diff --git a/lib/rs/test_recursive/src/Makefile.am b/lib/rs/test_recursive/src/Makefile.am
index c21a94c..4bfd557 100644
--- a/lib/rs/test_recursive/src/Makefile.am
+++ b/lib/rs/test_recursive/src/Makefile.am
@@ -30,4 +30,5 @@ clean-local:
 	-$(RM) vehicles.rs
 
 EXTRA_DIST = \
+	lib.rs \
 	Vehicles.thrift
diff --git a/lib/rs/test_recursive/src/maintenance/Makefile.am b/lib/rs/test_recursive/src/maintenance/Makefile.am
index c24813a..e2526bd 100644
--- a/lib/rs/test_recursive/src/maintenance/Makefile.am
+++ b/lib/rs/test_recursive/src/maintenance/Makefile.am
@@ -30,4 +30,5 @@ clean-local:
 	-$(RM) maintenance_facility.rs
 
 EXTRA_DIST = \
+	mod.rs \
 	MaintenanceFacility.thrift
diff --git a/lib/rs/test_recursive/src/transit/Makefile.am b/lib/rs/test_recursive/src/transit/Makefile.am
index 7318265..908becb 100644
--- a/lib/rs/test_recursive/src/transit/Makefile.am
+++ b/lib/rs/test_recursive/src/transit/Makefile.am
@@ -35,6 +35,7 @@ clean-local:
 	-$(RM) transporters.rs
 
 EXTRA_DIST = \
+	mod.rs \
 	Buses.thrift \
 	Trains.thrift \
 	Transporters.thrift
diff --git a/lib/rs/test_recursive/src/transit/light/Makefile.am b/lib/rs/test_recursive/src/transit/light/Makefile.am
index c09c39d..88fd531 100644
--- a/lib/rs/test_recursive/src/transit/light/Makefile.am
+++ b/lib/rs/test_recursive/src/transit/light/Makefile.am
@@ -32,5 +32,6 @@ clean-local:
 	-$(RM) streetcars.rs
 
 EXTRA_DIST = \
+	mod.rs \
 	LightRail.thrift \
 	Streetcars.thrift
diff --git a/lib/rs/test_recursive/src/transit/services/Makefile.am b/lib/rs/test_recursive/src/transit/services/Makefile.am
index f70e919..12e9e29 100644
--- a/lib/rs/test_recursive/src/transit/services/Makefile.am
+++ b/lib/rs/test_recursive/src/transit/services/Makefile.am
@@ -30,4 +30,5 @@ clean-local:
 	-$(RM) city_services.rs
 
 EXTRA_DIST = \
+	mod.rs \
 	CityServices.thrift
diff --git a/test/Makefile.am b/test/Makefile.am
index 15e2f1b..b289e53 100755
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -134,6 +134,7 @@ EXTRA_DIST = \
 	rb \
 	rs \
 	threads \
+	partial \
 	AnnotationTest.thrift \
 	BrokenConstants.thrift \
 	ConstantsDemo.thrift \