git: 9fb8e9531e7d - main - ports-mgmt/portconfig: update to 0.4

From: Alfonso S. Siciliano <asiciliano_at_FreeBSD.org>
Date: Thu, 15 Sep 2022 00:34:44 UTC
The branch main has been updated by asiciliano (src committer):

URL: https://cgit.FreeBSD.org/ports/commit/?id=9fb8e9531e7d8e2d514dc12d22bfff2ce07d586d

commit 9fb8e9531e7d8e2d514dc12d22bfff2ce07d586d
Author:     Alfonso S. Siciliano <asiciliano@FreeBSD.org>
AuthorDate: 2022-09-15 00:32:14 +0000
Commit:     Alfonso S. Siciliano <asiciliano@FreeBSD.org>
CommitDate: 2022-09-15 00:34:09 +0000

    ports-mgmt/portconfig: update to 0.4
    
    PR:             266132
    Approved by:    bapt (maintainer)
---
 ports-mgmt/portconfig/Makefile             |  6 +++---
 ports-mgmt/portconfig/distinfo             |  6 +++---
 ports-mgmt/portconfig/files/patch-Makefile | 27 ---------------------------
 3 files changed, 6 insertions(+), 33 deletions(-)

diff --git a/ports-mgmt/portconfig/Makefile b/ports-mgmt/portconfig/Makefile
index 78762485322f..78222c11de12 100644
--- a/ports-mgmt/portconfig/Makefile
+++ b/ports-mgmt/portconfig/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	portconfig
-PORTVERSION=	0.3
+PORTVERSION=	0.4
 CATEGORIES=	ports-mgmt
 
 MAINTAINER=	bapt@FreeBSD.org
@@ -14,10 +14,10 @@ USES=		localbase:ldflags
 
 USE_GITLAB=	yes
 GL_ACCOUNT=	alfix
-GL_COMMIT=	d8863468ba3f5927a6f27180ec18b21724a24fcf
+GL_COMMIT=	120109308b3c15a4570e65ea91bfba6426b37193
 
 PLIST_FILES=	bin/${PORTNAME} \
-		man/man1/${PORTNAME}.1.gz \
+		man/man1/${PORTNAME}.1.gz
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
diff --git a/ports-mgmt/portconfig/distinfo b/ports-mgmt/portconfig/distinfo
index 904747bd230f..3850fbdc8394 100644
--- a/ports-mgmt/portconfig/distinfo
+++ b/ports-mgmt/portconfig/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1649368024
-SHA256 (alfix-portconfig-d8863468ba3f5927a6f27180ec18b21724a24fcf_GL0.tar.gz) = 67d758969e970ffc046d332bb8c817d6c5ae9eefb1aecedb2070312cee067431
-SIZE (alfix-portconfig-d8863468ba3f5927a6f27180ec18b21724a24fcf_GL0.tar.gz) = 203339
+TIMESTAMP = 1661946735
+SHA256 (alfix-portconfig-120109308b3c15a4570e65ea91bfba6426b37193_GL0.tar.gz) = 591f6a36502846c0f5b2f778165268327d8ac4e321f87eb53cb87840f573bedc
+SIZE (alfix-portconfig-120109308b3c15a4570e65ea91bfba6426b37193_GL0.tar.gz) = 121236
diff --git a/ports-mgmt/portconfig/files/patch-Makefile b/ports-mgmt/portconfig/files/patch-Makefile
deleted file mode 100644
index abb28e6bd82b..000000000000
--- a/ports-mgmt/portconfig/files/patch-Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
---- Makefile.orig	2022-04-07 23:53:42 UTC
-+++ Makefile
-@@ -6,21 +6,16 @@
- OUTPUT=  portconfig
- SOURCES= portconfig.c
- OBJECTS= ${SOURCES:.c=.o}
--LIBPATH= ${.CURDIR}/bsddialog/lib
--LIBBSDDIALOG= ${LIBPATH}/libbsddialog.so
- 
--CFLAGS+= -I${LIBPATH} -std=gnu99 -Wall -Wextra
--LDFLAGS+= -Wl,-rpath=${LIBPATH} -L${LIBPATH} -lbsddialog
-+CFLAGS+= -std=gnu99 -Wall -Wextra
-+LDFLAGS+= -L/usr/lib -Wl,-Bstatic -v -Wl,-whole-archive -lbsddialog -Wl,-no-whole-archive -lformw -lncursesw -ltinfow -Wl,-Bdynamic -Wl,--export-dynamic
- 
- RM= rm -f
- 
- all : ${OUTPUT}
- 
--${OUTPUT}: ${LIBBSDDIALOG} ${OBJECTS}
-+${OUTPUT}: ${OBJECTS}
- 	${CC} ${LDFLAGS} ${OBJECTS} -o ${.PREFIX}
--
--${LIBBSDDIALOG}:
--	make -C ${LIBPATH}
- 
- .c.o:
- 	${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}