From owner-svn-ports-all@freebsd.org Wed Jan 27 19:02:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A68C9A6EBC0; Wed, 27 Jan 2016 19:02:34 +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 mx1.freebsd.org (Postfix) with ESMTPS id 8197F1E44; Wed, 27 Jan 2016 19:02:34 +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 u0RJ2XUB058576; Wed, 27 Jan 2016 19:02:33 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0RJ2X5W058570; Wed, 27 Jan 2016 19:02:33 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201601271902.u0RJ2X5W058570@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Wed, 27 Jan 2016 19:02:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407375 - in head/archivers/peazip: . files X-SVN-Group: ports-head 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.20 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: Wed, 27 Jan 2016 19:02:34 -0000 Author: acm Date: Wed Jan 27 19:02:32 2016 New Revision: 407375 URL: https://svnweb.freebsd.org/changeset/ports/407375 Log: - Update to 5.9.1 - Fix build with FPC 3.0.0 Added: head/archivers/peazip/files/patch-list_utils.pas (contents, props changed) head/archivers/peazip/files/patch-unit8.pas (contents, props changed) Modified: head/archivers/peazip/Makefile head/archivers/peazip/distinfo head/archivers/peazip/files/patch-peach.pas Modified: head/archivers/peazip/Makefile ============================================================================== --- head/archivers/peazip/Makefile Wed Jan 27 18:08:08 2016 (r407374) +++ head/archivers/peazip/Makefile Wed Jan 27 19:02:32 2016 (r407375) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= peazip -PORTVERSION= 5.7.1 +PORTVERSION= 5.9.1 CATEGORIES= archivers MASTER_SITES= https://github.com/giorgiotani/PeaZip/releases/download/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}.src @@ -10,12 +10,11 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= acm@FreeBSD.org COMMENT= Free archiver and file compressor -BROKEN= fails with FPC 3.0.0 - BUILD_DEPENDS= lazbuild:${PORTSDIR}/editors/lazarus \ fpcres:${PORTSDIR}/lang/fpc-utils USES= dos2unix zip +#USES= zip USE_FPC= cairo fcl-base fcl-image pasjpeg rtl-objpas x11 USE_GNOME= # @@ -25,7 +24,7 @@ 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.4.2 +LAZARUS_VER= 1.6RC2 LAZARUS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER} ARCHIVER_FILES= # Modified: head/archivers/peazip/distinfo ============================================================================== --- head/archivers/peazip/distinfo Wed Jan 27 18:08:08 2016 (r407374) +++ head/archivers/peazip/distinfo Wed Jan 27 19:02:32 2016 (r407375) @@ -1,2 +1,2 @@ -SHA256 (peazip-5.7.1.src.zip) = d32c1427f911a03974ee619096267eaf289afe4652f9abebbf18d55971b5e5f3 -SIZE (peazip-5.7.1.src.zip) = 4045028 +SHA256 (peazip-5.9.1.src.zip) = f5619179c72582898acf5dcf981b9c12f06646dc2d9039acbbc215af8f66f2ae +SIZE (peazip-5.9.1.src.zip) = 4081923 Added: head/archivers/peazip/files/patch-list_utils.pas ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/peazip/files/patch-list_utils.pas Wed Jan 27 19:02:32 2016 (r407375) @@ -0,0 +1,11 @@ +--- list_utils.pas.orig 2016-01-27 13:31:39.038239000 -0500 ++++ list_utils.pas 2016-01-27 13:32:00.045976000 -0500 +@@ -969,7 +969,7 @@ + //name of the dir + ): integer; + var +- s: utf8string; ++ s: string; + i, j: integer; + dirarr: array of utf8string; + begin Modified: head/archivers/peazip/files/patch-peach.pas ============================================================================== --- head/archivers/peazip/files/patch-peach.pas Wed Jan 27 18:08:08 2016 (r407374) +++ head/archivers/peazip/files/patch-peach.pas Wed Jan 27 19:02:32 2016 (r407375) @@ -1,6 +1,6 @@ ---- peach.pas.orig 2015-08-10 00:54:42.122935000 -0500 -+++ peach.pas 2015-08-10 00:56:11.788970000 -0500 -@@ -4320,6 +4320,7 @@ +--- peach.pas 2016-01-27 13:08:24.382120000 -0500 ++++ peach.pas 2016-01-27 13:17:34.207034000 -0500 +@@ -4445,6 +4445,7 @@ APPLICATION5 = ''; APPLICATION6 = ''; APPLICATION7 = ''; @@ -8,7 +8,7 @@ {$ENDIF} {$IFDEF NETBSD} EXEEXT = ''; -@@ -4330,6 +4331,7 @@ +@@ -4455,6 +4456,7 @@ APPLICATION5 = ''; APPLICATION6 = ''; APPLICATION7 = ''; @@ -16,7 +16,7 @@ {$ENDIF} {$IFDEF DARWIN} EXEEXT = ''; -@@ -4340,6 +4342,7 @@ +@@ -4465,6 +4467,7 @@ APPLICATION5 = ''; APPLICATION6 = ''; APPLICATION7 = ''; @@ -24,3 +24,57 @@ {$ENDIF} var +@@ -6526,7 +6529,7 @@ + + procedure setdescription_advcustedit; + var +- s:utf8string; ++ s:AnsiString; + sg:TStringGrid; + begin + sg:=Form_peach.StringGridCustedit1; +@@ -6541,7 +6544,7 @@ + + procedure setdescription_custedit; + var +- s:utf8string; ++ s:AnsiString; + begin + s:=Form_peach.StringGridCustedit.Cells[1,Form_peach.StringGridCustedit.Row]; + if InputQuery(txt_description, '', s) then +@@ -6553,7 +6556,7 @@ + + procedure editstring1_advcustedit; + var +- s:utf8string; ++ s:AnsiString; + begin + s:=Form_peach.StringGridCustedit1.Cells[2,Form_peach.StringGridCustedit1.Row]; + if InputQuery(txt_2_5_strbefore, '', s) then +@@ -6566,7 +6569,7 @@ + + procedure editstring2_advcustedit; + var +- s:utf8string; ++ s:AnsiString; + begin + s:=Form_peach.StringGridCustedit1.Cells[3,Form_peach.StringGridCustedit1.Row]; + if InputQuery(txt_2_5_strafter, '', s) then +@@ -6579,7 +6582,7 @@ + + procedure editstring3_advcustedit; + var +- s:utf8string; ++ s:AnsiString; + begin + s:=Form_peach.StringGridCustedit1.Cells[4,Form_peach.StringGridCustedit1.Row]; + if InputQuery(txt_3_3_stralt, '', s) then +@@ -6592,7 +6595,7 @@ + + procedure editapp_custedit; + var +- s:utf8string; ++ s:AnsiString; + begin + s:=Form_peach.StringGridCustedit.Cells[2,Form_peach.StringGridCustedit.Row]; + if InputQuery(txt_edit, '', s) then Added: head/archivers/peazip/files/patch-unit8.pas ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/peazip/files/patch-unit8.pas Wed Jan 27 19:02:32 2016 (r407375) @@ -0,0 +1,29 @@ +--- unit8.pas.orig 2016-01-27 13:11:27.063394000 -0500 ++++ unit8.pas 2016-01-27 13:14:04.758776000 -0500 +@@ -170,7 +170,7 @@ + procedure new_pm; + var + i,rc:integer; +- s:utf8string; ++ s:AnsiString; + begin + if InputQuery(txt_edit+' '+FormPM.mpw.Caption, '', s) then + begin +@@ -190,7 +190,7 @@ + end; + + procedure editpw_pm; +-var s:utf8string; ++var s:AnsiString; + begin + if FormPM.StringGridPM.Row=0 then + begin +@@ -207,7 +207,7 @@ + end; + + procedure setdescription_pm; +-var s:utf8string; ++var s:AnsiString; + begin + if FormPM.StringGridPM.Row=0 then + begin