Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Jul 2022 21:20:51 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 659e97236eab - 2022Q3 - x11/qimageblitz: Change fetch from svnlite to subversion
Message-ID:  <202207172120.26HLKpPk028928@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2022Q3 has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=659e97236eab228f7120406c851e51a92f1b3229

commit 659e97236eab228f7120406c851e51a92f1b3229
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-07-17 21:18:56 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-07-17 21:20:45 +0000

    x11/qimageblitz: Change fetch from svnlite to subversion
    
    svnlite is discontinued.
    
    Reported by:    fluffy@
    
    (cherry picked from commit dfa5a40b97fa58b8760194f29b86b29ff8418ef4)
---
 x11/qimageblitz/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/x11/qimageblitz/Makefile b/x11/qimageblitz/Makefile
index 15d91fd9e499..1306c649cef2 100644
--- a/x11/qimageblitz/Makefile
+++ b/x11/qimageblitz/Makefile
@@ -11,6 +11,8 @@ COMMENT=	Graphical effects and filters library for Qt5
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+FETCH_DEPENDS=	svn:devel/subversion
+
 USES=		cmake compiler:c++11-lang qt:5
 USE_LDCONFIG=	yes
 USE_QT=		core gui widgets qmake_build buildtools_build
@@ -23,7 +25,7 @@ do-fetch:
 	@if [ "${FORCE_FETCH_ALL}" = "true" ] || ! [ -f "${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}" ]; then \
 	  ${MKDIR} ${DISTDIR}/${DIST_SUBDIR} && \
 	  cd ${DISTDIR}/${DIST_SUBDIR} && \
-	    svnlite co -r ${SVN_REVISION} ${SVN_URL} ${PORTNAME}-${DISTVERSIONFULL} && \
+	    svn co -r ${SVN_REVISION} ${SVN_URL} ${PORTNAME}-${DISTVERSIONFULL} && \
 	    (cd ${PORTNAME}-${DISTVERSIONFULL} && ${RM} -r .svn) && \
 	    ${FIND} ${PORTNAME}-${DISTVERSIONFULL} -and -exec ${TOUCH} -h -d 1970-01-01T00:00:00Z {} \; && \
 	    ${FIND} ${PORTNAME}-${DISTVERSIONFULL} -print0 | LC_ALL=C ${SORT} -z | \



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