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 a25e16d7e0d7ebd3431dcd8b816571704ef38b22 (commit) from 3c4cf2d0aad078a0d2dc764b2014b4e01239b177 (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 a25e16d7e0d7ebd3431dcd8b816571704ef38b22 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jun 13 16:06:26 2014 +0200
tmux: New package.
A terminal multiplexer similar to screen.
-----------------------------------------------------------------------
Summary of changes: tmux/patches/tmux-fix-malloc-check-error.patch0 | 12 ++++++++ tmux/tmux.nm | 37 +++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 tmux/patches/tmux-fix-malloc-check-error.patch0 create mode 100644 tmux/tmux.nm
Difference in files: diff --git a/tmux/patches/tmux-fix-malloc-check-error.patch0 b/tmux/patches/tmux-fix-malloc-check-error.patch0 new file mode 100644 index 0000000..2ae549d --- /dev/null +++ b/tmux/patches/tmux-fix-malloc-check-error.patch0 @@ -0,0 +1,12 @@ +--- cmd.c-orig 2014-02-26 09:57:06.441154327 -0300 ++++ cmd.c 2014-02-26 09:58:00.631888951 -0300 +@@ -138,6 +138,9 @@ + size_t arglen; + int i; + ++ if (argc == 0) ++ return (0); ++ + *buf = '\0'; + for (i = 0; i < argc; i++) { + if (strlcpy(buf, argv[i], len) >= len) diff --git a/tmux/tmux.nm b/tmux/tmux.nm new file mode 100644 index 0000000..7048eeb --- /dev/null +++ b/tmux/tmux.nm @@ -0,0 +1,37 @@ +############################################################################### +# IPFire.org - An Open Source Firewall Solution # +# Copyright (C) - IPFire Development Team info@ipfire.org # +############################################################################### + +name = tmux +version = 1.9a +release = 1 + +groups = Application/System +url = http://sourceforge.net/projects/tmux +license = ISC and BSD +summary = A terminal multiplexer + +description + tmux is a "terminal multiplexer." It enables a number of terminals + (or windows) to be accessed and controlled from a single terminal. + tmux is intended to be a simple, modern, BSD-licensed alternative to + programs such as GNU Screen. +end + +source_dl = http://downloads.sourceforge.net/%%7Bname%7D/ + +build + requires + ncurses-devel + libevent-devel + end +end + +packages + package %{name} + + package %{name}-debuginfo + template DEBUGINFO + end +end
hooks/post-receive -- IPFire 3.x development tree