Repository: thrift
Updated Branches:
  refs/heads/master 7860ee727 -> f13e431ba


THRIFT-3305: Missing dist files for 0.9.3 release candidate
Client: build
Patch: jfarrell

Adds missing files to dist


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/f13e431b
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/f13e431b
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/f13e431b

Branch: refs/heads/master
Commit: f13e431babd92f08f46cbc1f32da48965e1c5ca8
Parents: 7860ee7
Author: jfarrell <[email protected]>
Authored: Tue Aug 25 00:39:29 2015 -0400
Committer: jfarrell <[email protected]>
Committed: Tue Aug 25 00:39:29 2015 -0400

----------------------------------------------------------------------
 .gitignore                  |  1 +
 Makefile.am                 |  7 +++++++
 compiler/cpp/Makefile.am    |  2 ++
 lib/c_glib/Makefile.am      |  2 ++
 lib/c_glib/test/Makefile.am |  5 +++++
 lib/cpp/Makefile.am         |  3 +++
 lib/cpp/test/Makefile.am    | 16 +++++++++++-----
 lib/csharp/Makefile.am      |  1 +
 lib/erl/Makefile.am         |  1 +
 lib/go/Makefile.am          |  1 +
 lib/go/test/Makefile.am     |  1 +
 lib/hs/Makefile.am          |  1 +
 lib/java/Makefile.am        |  2 ++
 lib/lua/Makefile.am         |  4 +++-
 lib/nodejs/.gitignore       |  1 -
 lib/nodejs/Makefile.am      |  1 +
 lib/perl/Makefile.am        |  4 ++++
 lib/php/Makefile.am         |  5 +++++
 lib/php/test/Makefile.am    | 11 +++++++----
 lib/py/Makefile.am          |  2 ++
 lib/rb/Makefile.am          |  2 ++
 test/Makefile.am            | 17 ++++++++++++++---
 tutorial/Makefile.am        |  4 ++++
 tutorial/cpp/Makefile.am    |  1 +
 24 files changed, 81 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 8c5376d..ac6253a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -181,6 +181,7 @@ test-driver
 /lib/hs/dist
 /lib/java/build
 /lib/js/test/build
+/lib/nodejs/coverage
 /lib/nodejs/node_modules/
 /lib/perl/MANIFEST
 /lib/perl/MYMETA.json

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/Makefile.am
----------------------------------------------------------------------
diff --git a/Makefile.am b/Makefile.am
index e6a965a..42c82e2 100755
--- a/Makefile.am
+++ b/Makefile.am
@@ -87,15 +87,22 @@ style-local:
        codespell --write-changes --skip=$(skipped_files) --disable-colors
 
 EXTRA_DIST = \
+       .clang-format \
+       .editorconfig \
        .travis.yml \
+       appveyor.yml \
        bower.json \
+       build \
+       CMakeLists.txt \
        composer.json \
        contrib \
        CONTRIBUTING.md \
        debian \
        doc \
        doap.rdf \
+       json-schema.json \
        package.json \
+       rat_exclude \
        sonar-project.properties \
        LICENSE \
        CHANGES \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/compiler/cpp/Makefile.am
----------------------------------------------------------------------
diff --git a/compiler/cpp/Makefile.am b/compiler/cpp/Makefile.am
index 485e30c..38f9f9d 100644
--- a/compiler/cpp/Makefile.am
+++ b/compiler/cpp/Makefile.am
@@ -41,6 +41,7 @@ thrift_SOURCES = src/main.cc \
                  src/logging.h \
                  src/md5.h \
                  src/audit/t_audit.cpp \
+                 src/audit/t_audit.h \
                  src/parse/t_doc.h \
                  src/parse/t_type.h \
                  src/parse/t_base_type.h \
@@ -110,6 +111,7 @@ WINDOWS_DIST = \
              compiler.vcxproj.filters
 
 EXTRA_DIST = \
+             coding_standards.md \
              README.md \
              CMakeLists.txt \
              $(WINDOWS_DIST)

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/c_glib/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/c_glib/Makefile.am b/lib/c_glib/Makefile.am
index 58e7329..153d14b 100755
--- a/lib/c_glib/Makefile.am
+++ b/lib/c_glib/Makefile.am
@@ -88,6 +88,8 @@ include_processor_HEADERS = 
src/thrift/c_glib/processor/thrift_processor.h \
 
 
 EXTRA_DIST = \
+             CMakeLists.txt \
+             coding_standards.md \
              README.md \
              test/glib.suppress \
              thrift_c_glib.pc.in

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/c_glib/test/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/c_glib/test/Makefile.am b/lib/c_glib/test/Makefile.am
index 372be2e..7319743 100755
--- a/lib/c_glib/test/Makefile.am
+++ b/lib/c_glib/test/Makefile.am
@@ -275,3 +275,8 @@ CLEANFILES =                            \
     *.gcno                              \
     *.gcda                              \
     *.gcov
+
+EXTRA_DIST = \
+             CMakeLists.txt \
+             ContainerTest.thrift
+

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/cpp/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/cpp/Makefile.am b/lib/cpp/Makefile.am
index 4e5cde7..4742ee0 100755
--- a/lib/cpp/Makefile.am
+++ b/lib/cpp/Makefile.am
@@ -261,12 +261,15 @@ WINDOWS_DIST = \
              3rdparty.props
 
 EXTRA_DIST = \
+             CMakeLists.txt \
+             coding_standards.md \
              README.md \
              thrift-nb.pc.in \
              thrift.pc.in \
              thrift-z.pc.in \
              thrift-qt.pc.in \
              thrift-qt5.pc.in \
+             src/thrift/qt/CMakeLists.txt \
              $(WINDOWS_DIST)
 
 style-local:

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/cpp/test/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/cpp/test/Makefile.am b/lib/cpp/test/Makefile.am
index dadbe38..435f2b5 100755
--- a/lib/cpp/test/Makefile.am
+++ b/lib/cpp/test/Makefile.am
@@ -114,7 +114,9 @@ UnitTests_SOURCES = \
        ToStringTest.cpp \
        TypedefTest.cpp \
        TServerSocketTest.cpp \
-       TServerTransportTest.cpp
+       TServerTransportTest.cpp \
+       TestPortFixture.h \
+       TTransportCheckThrow.h
 
 if !WITH_BOOSTTHREADS
 UnitTests_SOURCES += \
@@ -203,7 +205,8 @@ TFDTransportTest_LDADD =  \
 # TPipedTransportTest
 #
 TPipedTransportTest_SOURCES = \
-       TPipedTransportTest.cpp
+       TPipedTransportTest.cpp \
+       TPipeInterruptTest.cpp
 
 TPipedTransportTest_LDADD = \
        $(top_builddir)/lib/cpp/libthrift.la \
@@ -357,7 +360,10 @@ clean-local:
        $(RM) -r gen-cpp
 
 EXTRA_DIST = \
-       ThriftTest_extras.cpp \
-       DebugProtoTest_extras.cpp \
        concurrency \
-       processor
+       processor \
+       qt \
+       CMakeLists.txt \
+       DebugProtoTest_extras.cpp \
+       tests.xml \
+       ThriftTest_extras.cpp

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/csharp/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/csharp/Makefile.am b/lib/csharp/Makefile.am
index 5ce4276..2e2d7fe 100644
--- a/lib/csharp/Makefile.am
+++ b/lib/csharp/Makefile.am
@@ -100,4 +100,5 @@ EXTRA_DIST = \
              src/Properties/AssemblyInfo.WP7.cs \
              src/Transport/TSilverlightSocket.cs \
              test \
+             coding_standards.md \
              README.md

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/erl/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/erl/Makefile.am b/lib/erl/Makefile.am
index f48ff0a..f577a63 100644
--- a/lib/erl/Makefile.am
+++ b/lib/erl/Makefile.am
@@ -65,6 +65,7 @@ maintainer-clean-local:
 EXTRA_DIST = \
        include \
        src \
+       coding_standards.md \
        rebar \
        rebar.config \
        test \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/go/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/go/Makefile.am b/lib/go/Makefile.am
index bf173ba..ff946ea 100644
--- a/lib/go/Makefile.am
+++ b/lib/go/Makefile.am
@@ -38,4 +38,5 @@ all-local:
 
 EXTRA_DIST = \
        thrift \
+       coding_standards.md \
        README.md

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/go/test/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/go/test/Makefile.am b/lib/go/test/Makefile.am
index 9d01723..e03d48b 100644
--- a/lib/go/test/Makefile.am
+++ b/lib/go/test/Makefile.am
@@ -81,6 +81,7 @@ client: stubs
        $(GO) run TestClient.go
 
 EXTRA_DIST = \
+       dontexportrwtest \
        tests \
        BinaryKeyTest.thrift \
        GoTagTest.thrift \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/hs/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/hs/Makefile.am b/lib/hs/Makefile.am
index 5b007fa..45529c7 100755
--- a/lib/hs/Makefile.am
+++ b/lib/hs/Makefile.am
@@ -18,6 +18,7 @@
 #
 
 EXTRA_DIST = \
+       coding_standards.md \
        LICENSE \
        README.md \
        Setup.lhs \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/java/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/java/Makefile.am b/lib/java/Makefile.am
index 63d40a6..859f3f2 100644
--- a/lib/java/Makefile.am
+++ b/lib/java/Makefile.am
@@ -42,6 +42,8 @@ check-local: all
 EXTRA_DIST = \
        build.xml \
        build.properties \
+       CMakeLists.txt \
+       coding_standards.md \
        src \
        test \
        README.md
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/lua/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/lua/Makefile.am b/lib/lua/Makefile.am
index 896ff30..4e7f472 100644
--- a/lib/lua/Makefile.am
+++ b/lib/lua/Makefile.am
@@ -54,7 +54,9 @@ liblualongnumber_la_SOURCES = \
 liblualongnumber_la_CPPFLAGS = $(AM_CPPFLAGS) -I/usr/include/lua5.2 
-DLUA_COMPAT_MODULE
 liblualongnumber_la_LDFLAGS = $(AM_LDFLAGS) $(LUA_LIB) -lm
 
-EXTRA_DIST = TBinaryProtocol.lua \
+EXTRA_DIST = \
+               coding_standards.md \
+               TBinaryProtocol.lua \
                TBufferedTransport.lua \
                TFramedTransport.lua \
                Thrift.lua \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/nodejs/.gitignore
----------------------------------------------------------------------
diff --git a/lib/nodejs/.gitignore b/lib/nodejs/.gitignore
deleted file mode 100644
index 4ebc8ae..0000000
--- a/lib/nodejs/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-coverage

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/nodejs/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/nodejs/Makefile.am b/lib/nodejs/Makefile.am
index b8e441b..6d785be 100755
--- a/lib/nodejs/Makefile.am
+++ b/lib/nodejs/Makefile.am
@@ -39,4 +39,5 @@ EXTRA_DIST = \
        examples \
        lib \
        test \
+       coding_standards.md \
        README.md

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/perl/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/perl/Makefile.am b/lib/perl/Makefile.am
index 60eb1ef..6b0f9dd 100644
--- a/lib/perl/Makefile.am
+++ b/lib/perl/Makefile.am
@@ -42,6 +42,7 @@ clean-local:
        rm -f Makefile-perl.mk.old
 
 EXTRA_DIST = \
+       coding_standards.md \
        Makefile.PL \
        test.pl \
        lib/Thrift.pm \
@@ -57,6 +58,9 @@ EXTRA_DIST = \
        lib/Thrift/Protocol.pm \
        lib/Thrift/ProtocolDecorator.pm \
        lib/Thrift/Server.pm \
+       lib/Thrift/ServerSocket.pm \
        lib/Thrift/Socket.pm \
+       lib/Thrift/SSLSocket.pm \
+       lib/Thrift/SSLServerSocket.pm \
        lib/Thrift/Transport.pm \
        README.md

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/php/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/php/Makefile.am b/lib/php/Makefile.am
index e9d673c..fbf70f9 100755
--- a/lib/php/Makefile.am
+++ b/lib/php/Makefile.am
@@ -31,6 +31,10 @@ phpconf_DATA=thrift_protocol.ini
 
 phpmoduledir = `php-config --extension-dir`
 phpmodule_SCRIPTS = src/ext/thrift_protocol/modules/thrift_protocol.so
+
+distclean-local:
+       cd $(phpmodule_SCRIPTS) && $(PHPIZE) --clean
+
 endif
 
 phpdir = $(PHP_PREFIX)/Thrift
@@ -119,6 +123,7 @@ EXTRA_DIST = \
   src/ext/thrift_protocol/run-tests.php \
   src/Thrift.php \
   src/TStringUtils.php \
+  coding_standards.md \
   thrift_protocol.ini \
   README.apache.md \
   README.md

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/php/test/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/php/test/Makefile.am b/lib/php/test/Makefile.am
index 869c544..6e9a27c 100755
--- a/lib/php/test/Makefile.am
+++ b/lib/php/test/Makefile.am
@@ -34,9 +34,9 @@ if HAVE_PHPUNIT
        $(PHPUNIT) --log-junit=TEST-json-serializer.xml 
Test/Thrift/JsonSerialize/
 endif
 
-check-validator: stubs 
-       php Test/Thrift/TestValidators.php 
-       php Test/Thrift/TestValidators.php -oop 
+check-validator: stubs
+       php Test/Thrift/TestValidators.php
+       php Test/Thrift/TestValidators.php -oop
 
 check-protocol:        stubs
 if HAVE_PHPUNIT
@@ -53,5 +53,8 @@ clean-local:
        $(RM) -r ./packages
        $(RM) TEST-*.xml
 
-EXTRA_DIST = Test
+EXTRA_DIST = \
+       Test \
+       TestValidators.thrift
+
 

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/py/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/py/Makefile.am b/lib/py/Makefile.am
index adb90f3..2cdbb24 100755
--- a/lib/py/Makefile.am
+++ b/lib/py/Makefile.am
@@ -35,6 +35,8 @@ clean-local:
 check-local: all
 
 EXTRA_DIST = \
+       CMakeLists.txt \
+       coding_standards.md \
        compat \
        setup.py \
        setup.cfg \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/lib/rb/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/rb/Makefile.am b/lib/rb/Makefile.am
index 658eb7d..137edb4 100755
--- a/lib/rb/Makefile.am
+++ b/lib/rb/Makefile.am
@@ -29,6 +29,7 @@ install-exec-hook:
        $(BUNDLER) exec rake install
 
 clean-local:
+       $(BUNDLER) install
        $(BUNDLER) exec rake clean
 
 check-local: all
@@ -38,6 +39,7 @@ check-local: all
 endif
 
 EXTRA_DIST = \
+       coding_standards.md \
        Rakefile \
        Gemfile \
        thrift.gemspec \

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/test/Makefile.am
----------------------------------------------------------------------
diff --git a/test/Makefile.am b/test/Makefile.am
index 4c90995..6ebcd27 100755
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -75,10 +75,13 @@ endif
 check-local:
        $(top_builddir)/compiler/cpp/thrift --gen html -r 
$(top_srcdir)/test/ThriftTest.thrift
 
+clean-local:
+       rm -rf $(top_srcdir)/test/gen-html
+
 EXTRA_DIST = \
+       audit \
+       crossrunner \
        keys \
-       test.py \
-       tests.json \
        c_glib \
        cpp \
        erl \
@@ -98,8 +101,11 @@ EXTRA_DIST = \
        DebugProtoTest.thrift \
        DenseLinkingTest.thrift \
        DocTest.thrift \
+       EnumTest.thrift \
+       known_failures_Linux.json \
        Include.thrift \
        JavaBeansTest.thrift \
+       JsDeepConstructorTest.thrift \
        ManyOptionals.thrift \
        ManyTypedefs.thrift \
        NameConflictTest.thrift \
@@ -108,9 +114,14 @@ EXTRA_DIST = \
        ReuseObjects.thrift \
        SmallTest.thrift \
        StressTest.thrift \
+       test.py \
+       tests.json \
        ThriftTest.thrift \
+       TypedefTest.thrift \
        FastbinaryTest.py \
-       README.md
+       result.html \
+       README.md \
+       valgrind.suppress
 
 precross-%:
        $(MAKE) -C $* precross

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/tutorial/Makefile.am
----------------------------------------------------------------------
diff --git a/tutorial/Makefile.am b/tutorial/Makefile.am
index 79fd8fd..47711a9 100755
--- a/tutorial/Makefile.am
+++ b/tutorial/Makefile.am
@@ -67,6 +67,10 @@ endif
 #
 all-local:
        $(top_builddir)/compiler/cpp/thrift --gen html -r 
$(top_srcdir)/tutorial/tutorial.thrift
+
+clean-local:
+       rm -rf $(top_srcdir)/tutorial/gen-html
+
 endif
 
 # Any folders or files not listed above being added to SUBDIR need to be 
placed here in

http://git-wip-us.apache.org/repos/asf/thrift/blob/f13e431b/tutorial/cpp/Makefile.am
----------------------------------------------------------------------
diff --git a/tutorial/cpp/Makefile.am b/tutorial/cpp/Makefile.am
index 9bc6318..d8a9dbc 100755
--- a/tutorial/cpp/Makefile.am
+++ b/tutorial/cpp/Makefile.am
@@ -83,5 +83,6 @@ style-local:
        $(CPPSTYLE_CMD)
 
 EXTRA_DIST = \
+       CMakeLists.txt \
        CppClient.cpp \
        CppServer.cpp

Reply via email to