From owner-svn-ports-all@freebsd.org Fri Aug 31 07:19:23 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 505D3F760D0; Fri, 31 Aug 2018 07:19:23 +0000 (UTC) (envelope-from wen@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 EF74985B16; Fri, 31 Aug 2018 07:19:22 +0000 (UTC) (envelope-from wen@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 AD0D118123; Fri, 31 Aug 2018 07:19:22 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7V7JMB0002525; Fri, 31 Aug 2018 07:19:22 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7V7JMYN002522; Fri, 31 Aug 2018 07:19:22 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201808310719.w7V7JMYN002522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 31 Aug 2018 07:19:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478524 - head/www/otrs X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/www/otrs X-SVN-Commit-Revision: 478524 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.27 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: Fri, 31 Aug 2018 07:19:23 -0000 Author: wen Date: Fri Aug 31 07:19:21 2018 New Revision: 478524 URL: https://svnweb.freebsd.org/changeset/ports/478524 Log: - Update to 6.0.10 - Add missing dependencies - Add an option for XML support PR: 231040 Submitted by: m.tsatsenko@gmail.com(maintainer) Modified: head/www/otrs/Makefile head/www/otrs/distinfo Modified: head/www/otrs/Makefile ============================================================================== --- head/www/otrs/Makefile Fri Aug 31 07:11:00 2018 (r478523) +++ head/www/otrs/Makefile Fri Aug 31 07:19:21 2018 (r478524) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= otrs -PORTVERSION= 6.0.6 -PORTREVISION= 1 +PORTVERSION= 6.0.10 CATEGORIES= www MAINTAINER= m.tsatsenko@gmail.com @@ -21,11 +20,10 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive- p5-Net-DNS>=0.66:dns/p5-Net-DNS \ p5-CSS-Minifier-XS>=0:textproc/p5-CSS-Minifier-XS \ p5-JavaScript-Minifier-XS>=0:textproc/p5-JavaScript-Minifier-XS \ - p5-TimeDate>=0:devel/p5-TimeDate \ + p5-DateTime>=0:devel/p5-DateTime \ p5-Sys-Hostname-Long>=0:sysutils/p5-Sys-Hostname-Long \ p5-Proc-Daemon>=0:devel/p5-Proc-Daemon \ p5-JSON-XS>=0:converters/p5-JSON-XS \ - p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS \ p5-IO-Interactive>=0:devel/p5-IO-Interactive \ p5-Email-Valid>=0:mail/p5-Email-Valid \ @@ -45,7 +43,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive- p5-Lingua-Translit>=0:devel/p5-Lingua-Translit \ p5-Pod-Strip>=0:textproc/p5-Pod-Strip \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ - p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-Sisimai>=0:mail/p5-Sisimai RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -59,7 +56,7 @@ SHEBANG_FILES= bin/cgi-bin/*.pl bin/cgi-bin/app.psgi b scripts/tools/*.pl scripts/*.pl OPTIONS_DEFINE= MYSQL PGSQL REPORTS SMTP POP3 IMAP LDAP PDF \ - GNUPG APACHE SSL + GNUPG APACHE SSL XML OPTIONS_DEFAULT= MYSQL REPORTS SMTP POP3 IMAP PDF ASPELL APACHE \ SSL OPTIONS_RADIO= SPELL @@ -128,6 +125,10 @@ ISPELL_RUN_DEPENDS= ispell:textproc/aspell-ispell ASPELL_RUN_DEPENDS= aspell:textproc/aspell GNUPG_RUN_DEPENDS= gpg:security/gnupg1 + +XML_RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ + p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ + p5-XML-LibXSLT>=0:textproc/p5-XML-LibXSLT .include Modified: head/www/otrs/distinfo ============================================================================== --- head/www/otrs/distinfo Fri Aug 31 07:11:00 2018 (r478523) +++ head/www/otrs/distinfo Fri Aug 31 07:19:21 2018 (r478524) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524348416 -SHA256 (OTRS-otrs-6.0.6-51cbe50_GH0.tar.gz) = 1545455267e45ee3370c02645cac52be75b10bf5f852195808d04f99e8e25205 -SIZE (OTRS-otrs-6.0.6-51cbe50_GH0.tar.gz) = 39579491 +TIMESTAMP = 1535683312 +SHA256 (OTRS-otrs-6.0.10-51cbe50_GH0.tar.gz) = 1545455267e45ee3370c02645cac52be75b10bf5f852195808d04f99e8e25205 +SIZE (OTRS-otrs-6.0.10-51cbe50_GH0.tar.gz) = 39579491