Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Nov 2020 07:12:55 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554934 - head/net/rsync
Message-ID:  <202011120712.0AC7CtN2091449@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Thu Nov 12 07:12:55 2020
New Revision: 554934
URL: https://svnweb.freebsd.org/changeset/ports/554934

Log:
  Remove deprecated optional patches
  
  Remove broken options available in the past as additional patches provided
  by the project and merged in the latest releases as part of the main source.
  
  time-limit merged in 3.2.3 (6 Aug 2020)
     Added the --stop-after=MINS and --stop-at=DATE_TIME options (with the --time-limit=MINS option
     accepted as an alias for --stop-after). This is an enhanced version of the time-limit patch
     from the patches repo.
  
  atimes merged in 3.2.0 (19 Jun 2020)
     Added the --atimes option based on the long-standing patch (just with some fixes that the patch
     has been needing).
  
  acls merged in 3.2.0 (19 Jun 2020)
     Added the --atimes option based on the long-standing patch (just with some fixes that the patch
     has been needing).
  
  Since those options are not activated by default, and if so, breaks the build,
  no PORTREVISION bump is required.
  
  PR:		250998
  Submitted by:	 Zoltan ALEXANDERSON BESSE <zab@zltech.eu>

Modified:
  head/net/rsync/Makefile

Modified: head/net/rsync/Makefile
==============================================================================
--- head/net/rsync/Makefile	Thu Nov 12 07:03:31 2020	(r554933)
+++ head/net/rsync/Makefile	Thu Nov 12 07:12:55 2020	(r554934)
@@ -44,7 +44,7 @@ PORTDOCS=	NEWS.md README.md csprotocol.txt tech_report
 # define options
 OPTIONS_DEFINE=		DOCS POPT_PORT ZLIB_BASE SSH ICONV
 OPTIONS_RADIO=		PTS
-OPTIONS_RADIO_PTS=	TIMELIMIT RENAMED FLAGS ATIMES ACL
+OPTIONS_RADIO_PTS=	RENAMED FLAGS
 
 # options provided upstream
 POPT_PORT_DESC=	Use popt from devel/popt instead of bundled one
@@ -53,22 +53,16 @@ SSH_DESC=	Use SSH instead of RSH
 
 # options provided by patch (mutually exclusive)
 PTS_DESC=	Functionality provided by third party patches
-TIMELIMIT_DESC=	Time limit patch
 RENAMED_DESC=	Add support for renamed file detection
 FLAGS_DESC=	File system flags support patch, adds --fileflags
-ATIMES_DESC=	Preserve access times, adds --atimes (BROKEN)
-ACL_DESC=	Add backward-compatibility for the --acls option
 
 # define default options
 OPTIONS_DEFAULT=FLAGS ICONV SSH ZLIB_BASE
 
 ZLIB_BASE_CONFIGURE_ON=	--with-included-zlib=no
-TIMELIMIT_EXTRA_PATCHES=	${WRKSRC}/patches/time-limit.diff
-ATIMES_EXTRA_PATCHES=		${WRKSRC}/patches/atimes.diff
 FLAGS_EXTRA_PATCHES=		${WRKSRC}/patches/fileflags.diff \
 				${FILESDIR}/extrapatch-main.c
 RENAMED_EXTRA_PATCHES=		${WRKSRC}/patches/detect-renamed.diff
-ACL_EXTRA_PATCHES=		${WRKSRC}/patches/acls.diff
 
 ICONV_USES=	iconv:translit
 ICONV_CONFIGURE_ENABLE=	iconv iconv-open
@@ -80,12 +74,9 @@ POPT_PORT_CONFIGURE_OFF=	--with-included-popt
 SSH_CONFIGURE_ON=	--with-rsh=ssh
 SSH_CONFIGURE_OFF=	--with-rsh=rsh
 
-ACL_DISTFILES=		${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
-ATIMES_DISTFILES=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
 FLAGS_DISTFILES=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
 ICONV_DISTFILES=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
 RENAMED_DISTFILES=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
-TIMELIMIT_DISTFILES=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}
 
 .if make(makesum)
 DISTFILES+=	${PORTNAME}-patches-${DISTVERSION}${EXTRACT_SUFX}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011120712.0AC7CtN2091449>