From owner-svn-ports-all@freebsd.org Thu Feb 1 07:19:35 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F832EC7D75; Thu, 1 Feb 2018 07:19:35 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 330CA7BBFE; Thu, 1 Feb 2018 07:19:35 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E0771831; Thu, 1 Feb 2018 07:19:35 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w117JZOR036282; Thu, 1 Feb 2018 07:19:35 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w117JYgu036280; Thu, 1 Feb 2018 07:19:34 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201802010719.w117JYgu036280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Thu, 1 Feb 2018 07:19:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460562 - head/archivers/peazip X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: head/archivers/peazip X-SVN-Commit-Revision: 460562 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Feb 2018 07:19:35 -0000 Author: acm Date: Thu Feb 1 07:19:34 2018 New Revision: 460562 URL: https://svnweb.freebsd.org/changeset/ports/460562 Log: - Update to 6.5.0 - Add QT5 option Modified: head/archivers/peazip/Makefile head/archivers/peazip/distinfo Modified: head/archivers/peazip/Makefile ============================================================================== --- head/archivers/peazip/Makefile Thu Feb 1 07:18:26 2018 (r460561) +++ head/archivers/peazip/Makefile Thu Feb 1 07:19:34 2018 (r460562) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= peazip -PORTVERSION= 6.4.1 +PORTVERSION= 6.5.0 CATEGORIES= archivers MASTER_SITES= https://github.com/giorgiotani/PeaZip/releases/download/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}.src @@ -25,13 +25,13 @@ DOS2UNIX_REGEX= .*\.([txt]|pas|lpi|txt) LAZARUS_PROJECT_FILES= project_pea.lpi project_peach.lpi project_gwrap.lpi LAZBUILD_CMD= ${LOCALBASE}/bin/lazbuild -d LCL_UNITS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER}/lcl/units/${BUILDNAME} -LAZARUS_VER= 1.6.4 +LAZARUS_VER= 1.8.0 LAZARUS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER} ARCHIVER_FILES= # OPTIONS_DEFINE= 7Z ARC ZPAQ UNACE OPTIONS_SINGLE= LCL -OPTIONS_SINGLE_LCL= GTK2 QT4 +OPTIONS_SINGLE_LCL= GTK2 QT4 QT5 7Z_DESC= 7z file archiver support ARC_DESC= Arc file archiver support @@ -39,6 +39,7 @@ ZPAQ_DESC= Zpaq file archiver support UNACE_DESC= Unace file archiver support GTK2_DESC= Use gtk20 interface QT4_DESC= Use qt4 interface +QT5_DESC= Use qt5 interface OPTIONS_DEFAULT= GTK2 7Z @@ -57,6 +58,12 @@ LCL_PLATFORM= qt BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-lcl-qt .endif +.if ${PORT_OPTIONS:MQT5} +LIB_DEPENDS+= libQt5Pas.so:x11-toolkits/qt5pas +LCL_PLATFORM= qt5 +BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-lcl-qt5 +.endif + .if ${PORT_OPTIONS:M7Z} RUN_DEPENDS+= 7z:archivers/p7zip ARCHIVER_FILES+=7z @@ -88,6 +95,9 @@ PLIST_SUB+= UNACE="" .else PLIST_SUB+= UNACE="@comment " .endif + +post-patch: + ${REINPLACE_CMD} 's|GetSelectedNodePath|Path|g' ${WRKSRC}/peach.pas do-build: .for PROJECT_FILE in ${LAZARUS_PROJECT_FILES} Modified: head/archivers/peazip/distinfo ============================================================================== --- head/archivers/peazip/distinfo Thu Feb 1 07:18:26 2018 (r460561) +++ head/archivers/peazip/distinfo Thu Feb 1 07:19:34 2018 (r460562) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499397491 -SHA256 (peazip-6.4.1.src.zip) = 6be126675c83df95b020da6221cf5063aed83510783d55254f4923c29a5245d0 -SIZE (peazip-6.4.1.src.zip) = 4098287 +TIMESTAMP = 1513107866 +SHA256 (peazip-6.5.0.src.zip) = 1c19c7d6c346b511c635c95d6ff0277ee0811873133757d3c06c26fec558e7bf +SIZE (peazip-6.5.0.src.zip) = 4181167