1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
This is the tcpflow source. The upstream repo uses 3 submodules. The tarballs
github gives you do NOT contain submodules, so I'm repacking the source to
include these. One of the submodules (http-parser) exists in Debian as a
separate package, so I'm using that, and repacking the 2 other submodules.
Additionally, the dfxml submodule in the tcpflow 1.4.4 source had some erroneous
out-of-tree symlinks. This was fixed by a later patch:
https://github.com/simsong/dfxml/commit/4d54ca2db2eb06a4a3074111be5b784568d86bcb
This patch converts symlinks into actual files, which is something dpkg-source
doesn't support. Thus this patch is included in the repacked source also
So in summary, this tarball contains
- The full source of tcpflow
- The full source of the dfxml submodule
- The full source of the be13_api submodule
The source tarball was made with something like this:
$ git clone https://github.com/simsong/tcpflow.git
$ cd tcpflow
$ git reset --hard tcpflow-1.4.4
$ git submodule init
$ git submodule update
$ cd ..
$ tar cz --exclude '*/.git' --exclude '*/src/http-parser/*' tcpflow > tcpflow_1.4.4+repack1.orig.tar.gz
-- Dima Kogan <dima@secretsauce.net>, Thu, 9 Jan 2014 21:32:38 -0800
|