Package: tiger
Version: 1:3.2.4~rc1-2
Severity: normal
Tags: patch pending
Dear maintainer,
I've prepared an NMU for tiger (versioned as 1:3.2.4~rc1-2.1) and
uploaded it to DELAYED/10. Please feel free to tell me if I
should delay it longer.
Regards.
Francois
--
https://fmarier.org/
diff -u tiger-3.2.4~rc1/config tiger-3.2.4~rc1/config
--- tiger-3.2.4~rc1/config
+++ tiger-3.2.4~rc1/config
@@ -415,7 +415,7 @@
#
[ -n "$RCFILE" -a -r $RCFILE ] && {
- tempfile=`tempfile -d $WORKDIR` || tempfile=$WORKDIR/rcfile.$$
+ tempfile=`mktemp -p $WORKDIR` || tempfile=$WORKDIR/rcfile.$$
$GREP -v '^#' $RCFILE |
$SED -e 's/^\(.*\)=/export \1; \1=/' > $tempfile
. $tempfile
diff -u tiger-3.2.4~rc1/debian/changelog tiger-3.2.4~rc1/debian/changelog
--- tiger-3.2.4~rc1/debian/changelog
+++ tiger-3.2.4~rc1/debian/changelog
@@ -1,3 +1,12 @@
+tiger (1:3.2.4~rc1-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Add missing dependency on lsb-release (closes: #962975).
+ * Use mktemp instead of tempfile (closes: #961642).
+ * Teach tiger about nsfs (closes: #968713).
+
+ -- Francois Marier <[email protected]> Sun, 30 Aug 2020 16:58:11 -0700
+
tiger (1:3.2.4~rc1-2) unstable; urgency=medium
* debian/config: Remove only files using xarg instead of -exec.
diff -u tiger-3.2.4~rc1/debian/control tiger-3.2.4~rc1/debian/control
--- tiger-3.2.4~rc1/debian/control
+++ tiger-3.2.4~rc1/debian/control
@@ -11,7 +11,7 @@
Package: tiger
Architecture: any
-Depends: net-tools, binutils, bsdmainutils, debconf | debconf-2.0, ucf, ${shlibs:Depends}, ${misc:Depends}
+Depends: net-tools, binutils, bsdmainutils, debconf | debconf-2.0, ucf, lsb-release, ${shlibs:Depends}, ${misc:Depends}
Recommends: sendmail | mail-transport-agent, john, chkrootkit, tripwire | aide
Suggests: lsof, lynis
Description: security auditing and intrusion detection tools for Linux
diff -u tiger-3.2.4~rc1/systems/Linux/2/gen_mounts tiger-3.2.4~rc1/systems/Linux/2/gen_mounts
--- tiger-3.2.4~rc1/systems/Linux/2/gen_mounts
+++ tiger-3.2.4~rc1/systems/Linux/2/gen_mounts
@@ -279,6 +279,7 @@
[ "$1" = "mqueue" ] && LOCAL=1 # POSIX message queues
[ "$1" = "sockfs" ] && LOCAL=1 # Sockets
[ "$1" = "bdev" ] && LOCAL=1 # Block devices
+ [ "$1" = "nsfs" ] && LOCAL=1 # Namespace pseudo-filesystem
[ "$1" = "pipefs" ] && LOCAL=1
[ "$1" = "eventpollfs" ] && LOCAL=1 # Efficient event polling mechanism
[ "$1" = "inotifyfs" ] && LOCAL=1
only in patch2:
unchanged:
--- tiger-3.2.4~rc1.orig/systems/Linux/2/list_fs_linux.sh
+++ tiger-3.2.4~rc1/systems/Linux/2/list_fs_linux.sh
@@ -7,7 +7,7 @@
# /proc/filesystems
# /lib/modules/{kernel_name}/kernel/fs
-tempfile=`tempfile`
+tempfile=`mktemp`
cat /proc/filesystems | while read type fs; do
[ -z "$fs" ] && type=$fs
echo $fs >>$tempfile
only in patch2:
unchanged:
--- tiger-3.2.4~rc1.orig/util/genmsgidx
+++ tiger-3.2.4~rc1/util/genmsgidx
@@ -79,8 +79,8 @@
# Setup a tempfile
[ -n "$TMPDIR" ] && TMPDIR=/tmp/
tempfile=""
-if [ -n "`which tempfile`" ] ; then
- tempfile=`tempfile`
+if [ -n "`which mktemp`" ] ; then
+ tempfile=`mktemp`
fi
[ -z "$tempfile" ] && tempfile=$TMPDIR/te.$$
[ ! -e $tempfile ] && >$tempfile