Skip to content

Commit

Permalink
bump(main/multitail): 7.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Biswa96 committed Aug 11, 2024
1 parent 5278c83 commit b7430e0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 26 deletions.
16 changes: 8 additions & 8 deletions packages/multitail/CMakeLists.txt.patch
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,7 @@
@@ -139,7 +139,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
message(FATAL_ERROR "/usr/local/include/gnu/regex.h missing, did you install libgnuregex?")
endif()
else ()
- add_definitions(-DCONFIG_FILE=\"/etc/multitail.conf\")
+ add_definitions(-DCONFIG_FILE=\"@TERMUX_PREFIX@/etc/multitail.conf\")
endif()


add_definitions(-D_FORTIFY_SOURCE=2)
-add_definitions(-DCONFIG_FILE=\"/etc/multitail.conf\")
+add_definitions(-DCONFIG_FILE=\"@TERMUX_PREFIX@/etc/multitail.conf\")
add_definitions(-DVERSION=\"${VERSION}\")
add_definitions(-D${CMAKE_C_PLATFORM_ID})
message(STATUS "CMAKE_C_PLATFORM_ID=${CMAKE_C_PLATFORM_ID}")
# Set ``CURSES_NEED_NCURSES`` to ``TRUE`` before the
@@ -142,7 +142,7 @@
# install the bin
install(TARGETS multitail DESTINATION bin)
Expand Down
4 changes: 2 additions & 2 deletions packages/multitail/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=http://www.vanheusden.com/multitail/
TERMUX_PKG_DESCRIPTION="Tool to monitor logfiles and command output in multiple windows in a terminal, colorize, filter and merge"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="7.1.3"
TERMUX_PKG_VERSION="7.1.4"
TERMUX_PKG_SRCURL=https://github.com/folkertvanheusden/multitail/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=f55732781f7319e137a3ff642a347af1aaf3ed5265ed12526bdd0666d708d805
TERMUX_PKG_SHA256=96b781a9c22f3518fc25c4f3ce3833ec5069158b2a743a30f7586cd063824704
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_TAG_TYPE="newest-tag"
TERMUX_PKG_DEPENDS="libandroid-glob, ncurses, ncurses-ui-libs"
Expand Down
15 changes: 7 additions & 8 deletions packages/multitail/mt.c.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
diff -u -r ../multitail-6.2.1/mt.c ./mt.c
--- ../multitail-6.2.1/mt.c 2014-02-16 15:06:54.000000000 +0100
+++ ./mt.c 2014-06-30 16:43:12.000000000 +0200
@@ -23,7 +23,7 @@
#include <sys/ioctl.h>
#include <sys/stat.h>
#ifndef AIX
--- a/mt.c
+++ b/mt.c
@@ -27,7 +27,7 @@
#if defined(__FreeBSD__)
#include <termios.h>
#else
-#include <sys/termios.h> /* needed on Solaris 8 */
+#include <termios.h> /* needed on Solaris 8 */
#endif
#endif
#include <sys/time.h>
#include <sys/wait.h>
15 changes: 7 additions & 8 deletions packages/multitail/term.c.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
diff -u -r ../multitail-6.2.1/term.c ./term.c
--- ../multitail-6.2.1/term.c 2014-02-16 15:06:54.000000000 +0100
+++ ./term.c 2014-06-30 16:43:51.000000000 +0200
@@ -16,7 +16,7 @@
#include <stropts.h>
#endif
#ifndef AIX
--- a/term.c
+++ b/term.c
@@ -19,7 +19,7 @@
#if defined(__FreeBSD__)
#include <termios.h>
#else
-#include <sys/termios.h> /* needed on Solaris 8 */
+#include <termios.h> /* needed on Solaris 8 */
#endif
#endif
#include <sys/socket.h>
#include <netinet/in.h>

0 comments on commit b7430e0

Please sign in to comment.