Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (e94c0e266943a11cc7d16376c541f8d22fca7d18)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (e94c0e266943a11cc7d16376c541f8d22fca7d18)
  • Date: Tue, 4 Feb 2020 00:46:51 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 +++
net/dropwatch/BUILD | 4 ++++
net/dropwatch/DETAILS | 21 +++++++++++++++++++++
net/dropwatch/HISTORY | 6 ++++++
net/dropwatch/INSTALL | 4 ++++
net/dropwatch/PRE_BUILD | 3 +++
6 files changed, 41 insertions(+)

New commits:
commit e94c0e266943a11cc7d16376c541f8d22fca7d18
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

dropwatch: new spell, Watch dropped network packets

diff --git a/ChangeLog b/ChangeLog
index 6193a74..1557c38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2020-02-04 Ismael Luceno <ismael AT sourcemage.org>
+ * net/dropwatch: new spell, Watch dropped network packets
+
2020-02-03 Ismael Luceno <ismael AT sourcemage.org>
* net/fast-cdr: new spell, CDR serialization

diff --git a/net/dropwatch/BUILD b/net/dropwatch/BUILD
new file mode 100755
index 0000000..1fc8508
--- /dev/null
+++ b/net/dropwatch/BUILD
@@ -0,0 +1,4 @@
+# Workaround bogus requirement in bfd.h
+CFLAGS+=" -DPACKAGE" &&
+
+default_build
diff --git a/net/dropwatch/DETAILS b/net/dropwatch/DETAILS
new file mode 100755
index 0000000..8644efc
--- /dev/null
+++ b/net/dropwatch/DETAILS
@@ -0,0 +1,21 @@
+ SPELL=dropwatch
+ VERSION=1.5.1
+ SOURCE="$SPELL-$VERSION.gz"
+ WEB_SITE="https://github.com/nhorman/dropwatch";
+ SOURCE_URL[0]="$WEB_SITE/archive/v$VERSION.tar.gz"
+
SOURCE_HASH=sha512:71b8713e0bfbddef8d62e0cf5bd35b150f7fd0f394f77c4ceca547e05852b1913385d6bac1d4df8f38c6bde1f603842e5520657fadc1d30e2efab502e82940be
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ LICENSE[0]="GPLv2"
+ ENTERED=20160605
+ KEYWORDS=""
+ SHORT="Watch dropped network packets"
+cat << EOF
+Dropwatch is a project to improve the visibility into the Linux networking
+stack. Specifically to improve our ability to detect and understand packets
+that get dropped within the stack.
+
+It uses the kernel's dropmonitor netlink family protocol to listen for
+dropped packets. This protocol reports the count and exact location in the
+source code of each dropped packet, allowing an admin to know precisely
+where network traffic is lost.
+EOF
diff --git a/net/dropwatch/HISTORY b/net/dropwatch/HISTORY
new file mode 100644
index 0000000..aa5db0d
--- /dev/null
+++ b/net/dropwatch/HISTORY
@@ -0,0 +1,6 @@
+2020-02-03 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 1.5.1
+ * PRE_BUILD: run autoreconf
+
+2016-06-05 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: spell created
diff --git a/net/dropwatch/INSTALL b/net/dropwatch/INSTALL
new file mode 100755
index 0000000..79b7f62
--- /dev/null
+++ b/net/dropwatch/INSTALL
@@ -0,0 +1,4 @@
+mkdir -p "$INSTALL_ROOT"/usr/bin
+mkdir -p "$INSTALL_ROOT"/usr/share/man/man1
+install -m755 src/dropwatch "$INSTALL_ROOT"/usr/bin
+install -m644 doc/dropwatch.1 "$INSTALL_ROOT"/usr/share/man/man1
diff --git a/net/dropwatch/PRE_BUILD b/net/dropwatch/PRE_BUILD
new file mode 100755
index 0000000..cf38921
--- /dev/null
+++ b/net/dropwatch/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+autoreconf -fi



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (e94c0e266943a11cc7d16376c541f8d22fca7d18), Ismael Luceno, 02/03/2020

Archive powered by MHonArc 2.6.24.

Top of Page