Date: Sun, 25 Apr 2021 11:54:23 GMT From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 05a0ec2c107e - main - Update `net-mgmt/wifimgr' to version 1.14, which brings: Message-ID: <202104251154.13PBsNX5086310@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by danfe: URL: https://cgit.FreeBSD.org/ports/commit/?id=05a0ec2c107eac5697e48b3e5dadb54175904671 commit 05a0ec2c107eac5697e48b3e5dadb54175904671 Author: Alexey Dokuchaev <danfe@FreeBSD.org> AuthorDate: 2021-04-25 11:52:42 +0000 Commit: Alexey Dokuchaev <danfe@FreeBSD.org> CommitDate: 2021-04-25 11:53:02 +0000 Update `net-mgmt/wifimgr' to version 1.14, which brings: - Fix lagg(4) interfaces support which broke after FreeBSD 12.2 - Fix parsing of ifconfig(8) output to handle data in any order While here, do not try to update icon cache which breaks non-root installation, it is handled by the port via INSTALLS_ICONS anyway. PR: 250302 Approved by: maintainer Timeout from: pi (three months) --- net-mgmt/wifimgr/Makefile | 6 +----- net-mgmt/wifimgr/distinfo | 5 ++--- net-mgmt/wifimgr/files/patch-src_Makefile | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/net-mgmt/wifimgr/Makefile b/net-mgmt/wifimgr/Makefile index 6f2e9008514a..b0471334d6cd 100644 --- a/net-mgmt/wifimgr/Makefile +++ b/net-mgmt/wifimgr/Makefile @@ -1,8 +1,7 @@ # Created by: J.R. Oldroyd <fbsd@opal.com> PORTNAME= wifimgr -PORTVERSION= 1.13 -PORTREVISION= 1 +PORTVERSION= 1.14 CATEGORIES= net-mgmt sysutils MASTER_SITES= http://opal.com/freebsd/ports/net-mgmt/wifimgr/ \ LOCAL/ehaupt @@ -28,7 +27,4 @@ NLS_USES= gettext-runtime gettext-tools NLS_CFLAGS_OFF= -DWITHOUT_NLS NLS_MAKE_ENV_OFF= WITHOUT_NLS=yes -post-patch: - @${REINPLACE_CMD} -e 's/-o root -g wheel//' ${WRKSRC}/src/Makefile - .include <bsd.port.mk> diff --git a/net-mgmt/wifimgr/distinfo b/net-mgmt/wifimgr/distinfo index db83235cd878..3a8bdec2a832 100644 --- a/net-mgmt/wifimgr/distinfo +++ b/net-mgmt/wifimgr/distinfo @@ -1,3 +1,2 @@ -TIMESTAMP = 1598172258 -SHA256 (wifimgr-1.13.tar.bz2) = b090a09af1781be78e960e93573ef337ed8c3b572ad18385c6b3b17bb4d5b32a -SIZE (wifimgr-1.13.tar.bz2) = 119722 +SHA256 (wifimgr-1.14.tar.bz2) = ad78e457617765b05fb3fecb68a7721a344946951335f930b7d4f56a5642506c +SIZE (wifimgr-1.14.tar.bz2) = 120523 diff --git a/net-mgmt/wifimgr/files/patch-src_Makefile b/net-mgmt/wifimgr/files/patch-src_Makefile new file mode 100644 index 000000000000..5b8e947bf1c4 --- /dev/null +++ b/net-mgmt/wifimgr/files/patch-src_Makefile @@ -0,0 +1,20 @@ +--- src/Makefile.orig 2014-05-10 22:54:38 UTC ++++ src/Makefile +@@ -97,7 +97,7 @@ clean: + rm -f *.o + rm -f *.core + +-install: ${installed} update-icon-cache ++install: ${installed} # update-icon-cache + + deinstall: do-deinstall update-icon-cache + +@@ -113,7 +113,7 @@ ${DESTDIR}${PREFIX}/bin/wifimgr: wifimgr + ${INSTALL} $? $@ + + ${DESTDIR}${PREFIX}/libexec/wifimgrsu: wifimgrsu +- ${INSTALL} -o root -g wheel -m 4511 $? $@ ++ ${INSTALL} -m 511 $? $@ + + ${DESTDIR}${PREFIX}/share/applications/wifimgr.desktop: wifimgr.desktop + ${INSTALL} -m 444 $? $@
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104251154.13PBsNX5086310>