From 989fadb1879e512ed1fbe967aea5158617507e90 Mon Sep 17 00:00:00 2001 From: Aditya Alok Date: Wed, 22 Jan 2025 21:12:23 +0530 Subject: [PATCH] bump(root/authbind): 2.2.0 Signed-off-by: Aditya Alok --- root-packages/authbind/Makefile.patch | 36 +++++++++++++-------------- root-packages/authbind/build.sh | 4 +-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/root-packages/authbind/Makefile.patch b/root-packages/authbind/Makefile.patch index 66c2be64b0eb1b..bb2cec1302f226 100644 --- a/root-packages/authbind/Makefile.patch +++ b/root-packages/authbind/Makefile.patch @@ -1,9 +1,9 @@ ---- a/Makefile -+++ b/Makefile -@@ -16,28 +16,28 @@ - # along with this program; if not, write to the Free Software Foundation, +--- work/Makefile 2024-11-11 05:34:16.000000000 +0530 ++++ work.mod/Makefile 2025-01-22 21:07:53.919440191 +0530 +@@ -17,28 +17,28 @@ # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + DESTDIR ?= -prefix=/usr/local +prefix=@TERMUX_PREFIX@ @@ -25,7 +25,7 @@ -INSTALL_PROGRAM ?= install -o root -g root -m 755 -s -INSTALL_DIR ?= install -o root -g root -m 755 -d +INSTALL_FILE ?= install -m 644 -+INSTALL_PROGRAM ?= install -m 755 ++INSTALL_PROGRAM ?= install -m 755 -s --strip-program=$(STRIP) +INSTALL_DIR ?= install -m 755 -d STRIP ?= strip @@ -34,26 +34,26 @@ +LDFLAGS?= -g LIBS= -ldl -lc -CFLAGS= -g $(OPTIMISE) \ -+CFLAGS+= \ ++CFLAGS= \ -Wall -Wwrite-strings -Wpointer-arith -Wimplicit \ -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes CPPFLAGS= -DMAJOR_VER='"$(MAJOR)"' -DMINOR_VER='"$(MINOR)"' \ -@@ -59,13 +59,11 @@ +@@ -60,13 +60,11 @@ all: $(TARGETS) install: $(TARGETS) -- $(INSTALL_DIR) $(lib_dir) $(man1_dir) $(man8_dir) -+ $(INSTALL_DIR) $(lib_dir) $(libexec_dir) $(man1_dir) $(man8_dir) - $(INSTALL_PROGRAM) $(BINTARGETS) $(bin_dir)/. - $(INSTALL_FILE) $(LIBTARGET) $(lib_dir)/. -- $(STRIP) --strip-unneeded $(lib_dir)/$(LIBTARGET) - ln -sf $(LIBTARGET) $(lib_dir)/$(LIBCANON) - $(INSTALL_PROGRAM) $(HELPER) $(libexec_dir)/. -- chmod u+s $(libexec_dir)/$(HELPER) - $(INSTALL_DIR) $(etc_dir) \ - $(etc_dir)/byport $(etc_dir)/byaddr $(etc_dir)/byuid +- $(INSTALL_DIR) $(DESTDIR)$(bin_dir) $(DESTDIR)$(lib_dir) ++ $(INSTALL_DIR) $(DESTDIR)$(bin_dir) $(DESTDIR)$(lib_dir) $(DESTDIR)$(libexec_dir) + $(INSTALL_PROGRAM) $(BINTARGETS) $(DESTDIR)$(bin_dir)/. + $(INSTALL_FILE) $(LIBTARGET) $(DESTDIR)$(lib_dir)/. +- $(STRIP) --strip-unneeded $(DESTDIR)$(lib_dir)/$(LIBTARGET) + ln -sf $(LIBTARGET) $(DESTDIR)$(lib_dir)/$(LIBCANON) + $(INSTALL_PROGRAM) $(HELPER) $(DESTDIR)$(libexec_dir)/. +- chmod u+s $(DESTDIR)$(libexec_dir)/$(HELPER) + $(INSTALL_DIR) $(DESTDIR)$(etc_dir) \ + $(DESTDIR)$(etc_dir)/byport $(DESTDIR)$(etc_dir)/byaddr $(DESTDIR)$(etc_dir)/byuid -@@ -82,7 +80,7 @@ +@@ -84,7 +82,7 @@ helper.o authbind.o: authbind.h $(LIBTARGET): libauthbind.o diff --git a/root-packages/authbind/build.sh b/root-packages/authbind/build.sh index 46dec2cdda309d..5788d43a050593 100644 --- a/root-packages/authbind/build.sh +++ b/root-packages/authbind/build.sh @@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://www.chiark.greenend.org.uk/ucgi/~ian/git/authbind.gi TERMUX_PKG_DESCRIPTION="Bind sockets to privileged ports without root" TERMUX_PKG_LICENSE="GPL-2.0" TERMUX_PKG_MAINTAINER="@termux" -TERMUX_PKG_VERSION=2.1.3 +TERMUX_PKG_VERSION=2.2.0 TERMUX_PKG_SRCURL=https://deb.debian.org/debian/pool/main/a/authbind/authbind_${TERMUX_PKG_VERSION}.tar.gz -TERMUX_PKG_SHA256=0f5c70aa5e3b09497fa2f93992aef33872f5a4d50d68040534f7a9751cc579b7 +TERMUX_PKG_SHA256=8d265ee08e66fbda2e6c2b348624cd4552ff2c8fe72247d8904b06500c476adf TERMUX_PKG_BUILD_IN_SRC=true TERMUX_PKG_MAKE_INSTALL_TARGET="install install_man"