From owner-dev-commits-ports-all@freebsd.org Fri Jun 18 22:59:07 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CDE1264ED6C; Fri, 18 Jun 2021 22:59:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G6DrC5Tk9z3hVf; Fri, 18 Jun 2021 22:59:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A451E30BA; Fri, 18 Jun 2021 22:59:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15IMx7vq062527; Fri, 18 Jun 2021 22:59:07 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15IMx7Gx062526; Fri, 18 Jun 2021 22:59:07 GMT (envelope-from git) Date: Fri, 18 Jun 2021 22:59:07 GMT Message-Id: <202106182259.15IMx7Gx062526@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Cy Schubert Subject: git: 24cd2ad24f25 - main - ftp/freebsd-ftpd: Add ftp/freebsd-ftpd MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: cy X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 24cd2ad24f2581e9f4853065cd9322837a5f58f6 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jun 2021 22:59:07 -0000 The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/ports/commit/?id=24cd2ad24f2581e9f4853065cd9322837a5f58f6 commit 24cd2ad24f2581e9f4853065cd9322837a5f58f6 Author: Cy Schubert AuthorDate: 2021-06-18 22:56:04 +0000 Commit: Cy Schubert CommitDate: 2021-06-18 22:59:01 +0000 ftp/freebsd-ftpd: Add ftp/freebsd-ftpd This new port contains the legacy FreeBSD ftpd which will be removed from FreeBSD-14. --- ftp/Makefile | 1 + ftp/freebsd-ftpd/Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ ftp/freebsd-ftpd/distinfo | 3 +++ ftp/freebsd-ftpd/pkg-descr | 9 +++++++++ ftp/freebsd-ftpd/pkg-plist | 3 +++ 5 files changed, 56 insertions(+) diff --git a/ftp/Makefile b/ftp/Makefile index cbf45be174d1..984e2b57e3bc 100644 --- a/ftp/Makefile +++ b/ftp/Makefile @@ -16,6 +16,7 @@ SUBDIR += filezilla SUBDIR += fmirror SUBDIR += fpc-libcurl + SUBDIR += freebsd-ftpd SUBDIR += ftpcopy SUBDIR += ftpfind SUBDIR += ftplib diff --git a/ftp/freebsd-ftpd/Makefile b/ftp/freebsd-ftpd/Makefile new file mode 100644 index 000000000000..c129ea875761 --- /dev/null +++ b/ftp/freebsd-ftpd/Makefile @@ -0,0 +1,40 @@ +# Created by: cy@FreeBSD.org + +PORTNAME= freebsd-ftpd +DISTVERSIONPREFIX= v +DISTVERSION= 20200704 +CATEGORIES= ftp + +MAINTAINER= cy@FreeBSD.org +COMMENT= FreeBSD ftpd + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= cschuber + +USES= uidfix + +MAKE_ARGS+= BINOWN=${BINOWN} BINMODE=${BINMODE} +MAKE_ENV+= MAKESYSPATH=/usr/src/share/mk \ + BINDIR=${PREFIX}/libexec \ + MANDIR=${PREFIX}/man/man + +OPTIONS_DEFINE= IPV6 LIBBLACKLIST +OPTIONS_DEFAULT= IPV6 LIBBLACKLIST +.if !exists(/usr/include/blacklist.h) +OPTIONS_EXCLUDE= LIBBLACKLIST +.endif + +LIBBLACKLIST_DESC= libblacklist(3) support for rlogind(8) and rshd(8) +LIBBLACKLIST_MAKE_ARGS= USE_LIBBLACKLIST=yes + +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300134 +MAKE_ENV+= MK_WERROR=no +.else +MAKE_ENV+= NO_WERROR=1 +.endif + +.include diff --git a/ftp/freebsd-ftpd/distinfo b/ftp/freebsd-ftpd/distinfo new file mode 100644 index 000000000000..206aaa765090 --- /dev/null +++ b/ftp/freebsd-ftpd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1624028878 +SHA256 (cschuber-freebsd-ftpd-v20200704_GH0.tar.gz) = b07938fcdea2191e967db16ad4d204711a33e06b2083a08622022fc55e42fbed +SIZE (cschuber-freebsd-ftpd-v20200704_GH0.tar.gz) = 49136 diff --git a/ftp/freebsd-ftpd/pkg-descr b/ftp/freebsd-ftpd/pkg-descr new file mode 100644 index 000000000000..c6e34039baea --- /dev/null +++ b/ftp/freebsd-ftpd/pkg-descr @@ -0,0 +1,9 @@ +git filter-repo is a versatile tool for rewriting history, which +includes capabilities I have not found anywhere else. It roughly falls +into the same space of tool as git filter-branch but without the +capitulation-inducing poor performance, with far more capabilities, +and with a design that scales usability-wise beyond trivial rewriting +cases. git filter-repo is now recommended by the git project instead of +git filter-branch. + +WWW: https://github.com/newren/git-filter-repo diff --git a/ftp/freebsd-ftpd/pkg-plist b/ftp/freebsd-ftpd/pkg-plist new file mode 100644 index 000000000000..d20051b4d69b --- /dev/null +++ b/ftp/freebsd-ftpd/pkg-plist @@ -0,0 +1,3 @@ +libexec/ftpd +man/man5/ftpchroot.5.gz +man/man8/ftpd.8.gz