From: David Reiss Date: Wed, 18 Mar 2009 23:59:56 +0000 (+0000) Subject: THRIFT-373. Update lists of files to include in release tarballs X-Git-Tag: 0.2.0~258 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=48141bf5a686453b7a1b5b5b506617669b7cc748;p=common%2Fthrift.git THRIFT-373. Update lists of files to include in release tarballs This is mostly EXTRA_DIST, but also includes some headers. I had to drill down into test because "make dist" builds some of the test code. .gitignore is not included in the tarballs. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@755791 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.am b/Makefile.am index cebfc6f8..0a677d37 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,5 +3,5 @@ ACLOCAL_AMFLAGS = -I ./aclocal SUBDIRS = compiler/cpp lib test ## Don't run make dist from a subversion working copy ## because it will pull in your .svn directories. -EXTRA_DIST = bootstrap.sh cleanup.sh doc test tutorial contrib \ - thrift.el thrift.vim thrift.bnf CONTRIBUTORS LICENSE +EXTRA_DIST = bootstrap.sh cleanup.sh print_version.sh doc tutorial contrib \ + CONTRIBUTORS LICENSE diff --git a/lib/cpp/Makefile.am b/lib/cpp/Makefile.am index 45920082..7d3d886c 100644 --- a/lib/cpp/Makefile.am +++ b/lib/cpp/Makefile.am @@ -75,6 +75,7 @@ include_concurrency_HEADERS = \ src/concurrency/Thread.h \ src/concurrency/ThreadManager.h \ src/concurrency/TimerManager.h \ + src/concurrency/FunctionRunner.h \ src/concurrency/Util.h include_protocoldir = $(include_thriftdir)/protocol @@ -102,6 +103,7 @@ include_transport_HEADERS = \ src/transport/TTransportException.h \ src/transport/TTransportUtils.h \ src/transport/TBufferTransports.h \ + src/transport/TShortReadTransport.h \ src/transport/TZlibTransport.h include_serverdir = $(include_thriftdir)/server diff --git a/lib/java/Makefile.am b/lib/java/Makefile.am index ae8a4d3f..b31b0cd4 100644 --- a/lib/java/Makefile.am +++ b/lib/java/Makefile.am @@ -1,4 +1,4 @@ -EXTRA_DIST = build.xml src LICENSE +EXTRA_DIST = build.xml src test LICENSE all-local: $(ANT) diff --git a/lib/perl/Makefile.am b/lib/perl/Makefile.am index d9420026..a83966e8 100644 --- a/lib/perl/Makefile.am +++ b/lib/perl/Makefile.am @@ -20,7 +20,8 @@ clean-local: fi rm -f Makefile-perl.mk.old -EXTRA_DIST = MANIFEST \ +EXTRA_DIST = \ + LICENSE \ Makefile.PL \ test.pl \ lib/Thrift.pm \ diff --git a/lib/rb/Makefile.am b/lib/rb/Makefile.am index 07fc5c6c..5c6f0786 100644 --- a/lib/rb/Makefile.am +++ b/lib/rb/Makefile.am @@ -1,4 +1,13 @@ -EXTRA_DIST = setup.rb lib ext +EXTRA_DIST = \ + CHANGELOG \ + LICENSE \ + Rakefile \ + Manifest \ + setup.rb \ + lib \ + ext \ + benchmark \ + spec all-local: $(RUBY) setup.rb config diff --git a/test/Makefile.am b/test/Makefile.am index cc92ce00..288ea378 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -118,3 +118,30 @@ AM_CPPFLAGS = $(BOOST_CPPFLAGS) clean-local: $(RM) -r gen-cpp + +EXTRA_DIST = \ + cpp \ + threads \ + csharp \ + py \ + rb \ + perl \ + php \ + erl \ + hs \ + ocaml \ + AnnotationTest.thrift \ + BrokenConstants.thrift \ + ConstantsDemo.thrift \ + DebugProtoTest.thrift \ + DenseLinkingTest.thrift \ + DocTest.thrift \ + JavaBeansTest.thrift \ + ManyTypedefs.thrift \ + OptionalRequiredTest.thrift \ + SmallTest.thrift \ + StressTest.thrift \ + ThriftTest.thrift \ + ZlibTest.cpp \ + DenseProtoTest.cpp \ + FastbinaryTest.py