This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via 46c1fa3666c37d41325c9f57ff9c95fc2b547d5e (commit) via 587c29970430406ec5f1468bcddc95be255bc86b (commit) from b1e73b23a095959d7495f6d661b7556ac188655b (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 46c1fa3666c37d41325c9f57ff9c95fc2b547d5e Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Apr 18 17:11:42 2010 +0200
libpcap: Add patch for better ppp support.
commit 587c29970430406ec5f1468bcddc95be255bc86b Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Apr 18 17:11:04 2010 +0200
pcapy: New package.
-----------------------------------------------------------------------
Summary of changes: pkgs/core/libpcap/patches/libpcap-0.8.3-ppp.patch | 10 +++++++ .../python-cryptsetup.nm => pcapy/pcapy.nm} | 26 +++++++++++-------- 2 files changed, 25 insertions(+), 11 deletions(-) create mode 100644 pkgs/core/libpcap/patches/libpcap-0.8.3-ppp.patch copy pkgs/core/{python-cryptsetup/python-cryptsetup.nm => pcapy/pcapy.nm} (74%)
Difference in files: diff --git a/pkgs/core/libpcap/patches/libpcap-0.8.3-ppp.patch b/pkgs/core/libpcap/patches/libpcap-0.8.3-ppp.patch new file mode 100644 index 0000000..44367a1 --- /dev/null +++ b/pkgs/core/libpcap/patches/libpcap-0.8.3-ppp.patch @@ -0,0 +1,10 @@ +--- a/gencode.c.old 2004-06-21 19:43:24.611308762 +0100 ++++ b/gencode.c 2004-06-21 19:43:34.851140716 +0100 +@@ -5004,6 +5004,7 @@ + */ + switch (linktype) { + case DLT_SLIP: ++ case DLT_PPP: + b0 = gen_relation(BPF_JEQ, + gen_load(Q_LINK, gen_loadi(0), 1), + gen_loadi(0), diff --git a/pkgs/core/pcapy/pcapy.nm b/pkgs/core/pcapy/pcapy.nm new file mode 100644 index 0000000..535c202 --- /dev/null +++ b/pkgs/core/pcapy/pcapy.nm @@ -0,0 +1,55 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include $(PKGROOT)/Include + +PKG_NAME = pcapy +PKG_VER = 0.10.5 +PKG_REL = 0 + +PKG_MAINTAINER = +PKG_GROUP = Development/Languages +PKG_URL = http://oss.coresecurity.com/projects/pcapy.html +PKG_LICENSE = ASL 1.1 +PKG_SUMMARY = A Python interface to libpcap. + +PKG_DEPS += libpcap python + +define PKG_DESCRIPTION + Pcapy is a Python extension module that interfaces with the libpcap \ + packet capture library. Pcapy enables python scripts to capture packets \ + on the network. Pcapy is highly effective when used in conjunction with \ + a packet-handling package such as Impacket, which is a collection of \ + Python classes for constructing and dissecting network packets. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +define STAGE_BUILD + cd $(DIR_APP) && python setup.py build +endef + +define STAGE_INSTALL + cd $(DIR_APP) && python setup.py install -O1 --skip-build --root $(BUILDROOT) +endef
hooks/post-receive -- IPFire 3.x development tree