[derrick] remove whitespaces

Fabian Affolter fab at fedoraproject.org
Thu Aug 14 16:24:16 UTC 2014


commit b8c53e0f8187ced8313e178608e8e1412825ec95
Author: Fabian Affolter <fabian at affolter-engineering.ch>
Date:   Thu Aug 14 18:23:31 2014 +0200

    remove whitespaces

 derrick.spec |   66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 66 insertions(+), 0 deletions(-)
---
diff --git a/derrick.spec b/derrick.spec
new file mode 100644
index 0000000..d3403f2
--- /dev/null
+++ b/derrick.spec
@@ -0,0 +1,66 @@
+Name:           derrick
+Version:        0.3
+Release:        3%{?dist}
+Summary:        A Simple Network Stream Recorder
+
+License:        BSD
+URL:            https://github.com/rieck/derrick
+Source0:        https://github.com/rieck/derrick/archive/s%{version}.tar.gz
+
+BuildRequires:  automake
+BuildRequires:  libtool
+BuildRequires:  zlib-devel
+BuildRequires:  libpcap-devel
+BuildRequires:  libnet-devel
+BuildRequires:  libnids-devel
+BuildRequires:  uthash-devel
+
+%description
+Derrick is a simple tool for recording data streams of TCP and UDP traffic.
+It shares similarities with other network recorders, such as tcpflow and
+wireshark, where it is more advanced than the first and clearly inferior to
+the latter.
+
+Derrick has been specifically designed to monitor application-layer
+communication. In contrast to other tools the application data is logged in
+a line-based ASCII format. Common UNIX tools, such as grep, sed & awk, can
+be directly applied. Even replay of recorded communication is straight
+forward using netcat.
+
+Derrick supports on-the-fly compression and rotation of log files. The
+payloads of TCP sessions are re-assembled using Libnids and can be merged
+or truncated. UDP payloads are logged as-is. Details of lower network
+layers are omitted.
+
+%prep
+%setup -q -n %{name}-s%{version}
+##rm -rf %{name}-s%{version}/src/uthash.h
+
+%build
+./bootstrap
+%configure
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot} INSTALL="install -p"
+
+%check
+make check
+
+%files
+%doc COPYING README.md
+%{_mandir}/man1/%{name}.*
+%{_bindir}/%{name}
+
+%changelog
+* Wed Aug 13 2014 Fabian Affolter <mail at fabian-affolter.ch> - 0.3-3
+- Remove embedded uthash
+
+* Tue Apr 08 2014 Fabian Affolter <mail at fabian-affolter.ch> - 0.3-2
+- Remove compiler flag and char from versioning
+
+* Tue Aug 13 2013 Fabian Affolter <mail at fabian-affolter.ch> - 0.3-1
+- Updated to release tarball
+
+* Tue Jan 10 2012 Fabian Affolter <mail at fabian-affolter.ch> - 0-1
+- Initial spec


More information about the scm-commits mailing list