-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request feedback, documentation and minor fixes
- Loading branch information
1 parent
52f8aba
commit c6af2b9
Showing
10 changed files
with
39 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
FROM debian:jessie | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y vim less build-essential dh-make | ||
RUN apt-get install -y vim libpcap-dev dh-systemd | ||
ADD . /rtpsniff-1.0 | ||
WORKDIR /rtpsniff-1.0 | ||
ARG version=1.0-1 | ||
|
||
RUN apt-get update && apt-get install -qy build-essential dh-make libpcap-dev dh-systemd | ||
ADD . /rtpsniff | ||
WORKDIR /rtpsniff | ||
RUN dpkg-buildpackage -uc -us -b | ||
CMD cp ../rtpsniff_1.0-1_amd64.deb . | ||
CMD cp ../rtpsniff_${version}_amd64.deb . | ||
|
||
ENV version=$version | ||
|
||
CMD echo && mkdir /build/rtpsniff_${version} && \ | ||
mv /rtpsniff_${version}_amd64.deb /build/rtpsniff_${version}/ && \ | ||
chown -R ${UID}:root /build/rtpsniff_${version} && \ | ||
cd /build && find . -type f && echo && echo 'Output files created succesfully' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
rtpsniff (1.0-1) unstable; urgency=low | ||
|
||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> | ||
* Initial release | ||
|
||
-- unknown <jasper@unknown> Wed, 01 Nov 2017 13:34:41 +0000 | ||
-- Jasper Hafkenscheid <jasper@voipgrid.nl> Wed, 01 Nov 2017 13:34:41 +0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Source: rtpsniff | ||
Section: net | ||
Priority: optional | ||
Maintainer: OSSO B.V. <walter[email protected]> | ||
Maintainer: OSSO B.V. <wjdoekes[email protected]> | ||
Build-Depends: debhelper (>= 9), dh-systemd, libpcap0.8-dev | ||
Standards-Version: 3.9.5 | ||
Homepage: https://github.com/ossobv/rtpsniff | ||
|
||
Package: rtpsniff | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: <insert up to 60 chars description> | ||
<insert long description, indented with spaces> | ||
Description: Standalone RTP sniffing tool. | ||
RTPSniff is a tool to sniff RTP traffic and show stats about it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,5 @@ Upstream-Name: rtpsniff | |
Source: <https://github.com/ossobv/rtpsniff> | ||
|
||
Files: * | ||
Copyright: 2008,2009,2014 OSSO B.V. <[email protected]> | ||
License: <special license> | ||
Copyright: 2008,2009,2014 OSSO B.V. <[email protected]> | ||
License: GPL-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
bin/rtpsniff usr/local/sbin/ | ||
bin/rtpsniff usr/sbin/ | ||
bin/libslowpoll.so usr/lib/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters