git: 5d34ff61499d - main - ftp/wcurl: remove port

From: Hiroki Tagato <tagattie_at_FreeBSD.org>
Date: Sat, 31 May 2025 14:14:26 UTC
The branch main has been updated by tagattie:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5d34ff61499d53257e68f3ea715f308756c3f855

commit 5d34ff61499d53257e68f3ea715f308756c3f855
Author:     Hiroki Tagato <tagattie@FreeBSD.org>
AuthorDate: 2025-05-31 14:11:46 +0000
Commit:     Hiroki Tagato <tagattie@FreeBSD.org>
CommitDate: 2025-05-31 14:14:21 +0000

    ftp/wcurl: remove port
    
    wcurl is now folded into curl distribution archive and installed along
    with curl. Keeping this port does not make sense anymore.
    
    PR:             287154
    Reported by:    diizzy
---
 MOVED               |  1 +
 ftp/Makefile        |  1 -
 ftp/wcurl/Makefile  | 32 --------------------------------
 ftp/wcurl/distinfo  |  3 ---
 ftp/wcurl/pkg-descr | 10 ----------
 5 files changed, 1 insertion(+), 46 deletions(-)

diff --git a/MOVED b/MOVED
index dab33cda58e8..a847671462e2 100644
--- a/MOVED
+++ b/MOVED
@@ -4420,3 +4420,4 @@ graphics/pixen||2025-05-24|Has expired: Unmaintained upstream
 archivers/libcomprex||2025-05-28|Has expired: Unmaintained upstream, laste release in 2003
 irc/bnc||2025-05-28|Has expired: Unmaintained without upstream distfile and WWW
 lang/perl5.36||2025-05-29|Has expired: Support end three years after .0 release, please upgrade to a more recent version of Perl
+ftp/wcurl|ftp/curl|2025-05-31|Included in curl version 8.14.0 and later, please use ftp/curl instead
diff --git a/ftp/Makefile b/ftp/Makefile
index ee90a11f19a2..06b545d27011 100644
--- a/ftp/Makefile
+++ b/ftp/Makefile
@@ -91,7 +91,6 @@
     SUBDIR += vsftpd
     SUBDIR += vsftpd-ext
     SUBDIR += waiho
-    SUBDIR += wcurl
     SUBDIR += weex
     SUBDIR += wget
     SUBDIR += wmget
diff --git a/ftp/wcurl/Makefile b/ftp/wcurl/Makefile
deleted file mode 100644
index 7bfe397ff3fe..000000000000
--- a/ftp/wcurl/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-PORTNAME=	wcurl
-DISTVERSIONPREFIX=	v
-DISTVERSION=	2025.05.26
-CATEGORIES=	ftp net www
-
-MAINTAINER=	tagattie@FreeBSD.org
-COMMENT=	Simple wrapper around curl to easily download files
-WWW=		https://curl.se/wcurl/
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-RUN_DEPENDS=	curl>=7.46.0:ftp/curl
-TEST_DEPENDS=	shunit2:devel/shunit2
-
-USE_GITHUB=	yes
-GH_ACCOUNT=	curl
-
-NO_ARCH=	yes
-NO_BUILD=	yes
-
-PLIST_FILES=	bin/wcurl \
-		share/man/man1/wcurl.1.gz
-
-do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/wcurl ${STAGEDIR}${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/wcurl.1 ${STAGEDIR}${PREFIX}/share/man/man1
-
-do-test:
-	cd ${WRKSRC} && ./tests/tests.sh
-
-.include <bsd.port.mk>
diff --git a/ftp/wcurl/distinfo b/ftp/wcurl/distinfo
deleted file mode 100644
index 114417a9522a..000000000000
--- a/ftp/wcurl/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1748346729
-SHA256 (curl-wcurl-v2025.05.26_GH0.tar.gz) = a745475f3511090685c4d000a10f4155147b75a8c7781764612a7e8f67bb6d82
-SIZE (curl-wcurl-v2025.05.26_GH0.tar.gz) = 11436
diff --git a/ftp/wcurl/pkg-descr b/ftp/wcurl/pkg-descr
deleted file mode 100644
index 12e51760f31c..000000000000
--- a/ftp/wcurl/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-wcurl is a simple curl wrapper which lets you use curl to download
-files without having to remember any parameters.
-
-Simply call wcurl with a list of URLs you want to download and wcurl
-will pick sane defaults.
-
-If you need anything more complex, you can provide any of curl's
-supported parameters via the --curl-options option. Just beware that
-you likely should be using curl directly if your use case is not
-covered.