From owner-svn-ports-head@freebsd.org Mon Apr 30 15:43:18 2018 Return-Path: Delivered-To: svn-ports-head@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 6FF3AFAEAC5; Mon, 30 Apr 2018 15:43:18 +0000 (UTC) (envelope-from brnrd@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 1B7D57E529; Mon, 30 Apr 2018 15:43:18 +0000 (UTC) (envelope-from brnrd@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 167561536F; Mon, 30 Apr 2018 15:43:18 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3UFhHGs067291; Mon, 30 Apr 2018 15:43:17 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3UFhHV8067282; Mon, 30 Apr 2018 15:43:17 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201804301543.w3UFhHV8067282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Mon, 30 Apr 2018 15:43:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468708 - in head: mail/nextcloud-mail security/nextcloud-passman security/nextcloud-twofactor_totp security/nextcloud-twofactor_u2f www/nextcloud www/nextcloud-calendar www/nextcloud-c... X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head: mail/nextcloud-mail security/nextcloud-passman security/nextcloud-twofactor_totp security/nextcloud-twofactor_u2f www/nextcloud www/nextcloud-calendar www/nextcloud-contacts www/nextcloud-not... X-SVN-Commit-Revision: 468708 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Apr 2018 15:43:18 -0000 Author: brnrd Date: Mon Apr 30 15:43:16 2018 New Revision: 468708 URL: https://svnweb.freebsd.org/changeset/ports/468708 Log: www/nextcloud: PHP-flavorize - Create flavors for all PHP versions - Use releases dir (not pre-) PR: 227510 Approved by: mat Differential Revision: https://reviews.freebsd.org/D15235 Modified: head/mail/nextcloud-mail/Makefile head/security/nextcloud-passman/Makefile head/security/nextcloud-twofactor_totp/Makefile head/security/nextcloud-twofactor_u2f/Makefile head/www/nextcloud-calendar/Makefile head/www/nextcloud-contacts/Makefile head/www/nextcloud-notes/Makefile head/www/nextcloud-tasks/Makefile head/www/nextcloud/Makefile Modified: head/mail/nextcloud-mail/Makefile ============================================================================== --- head/mail/nextcloud-mail/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/mail/nextcloud-mail/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -8,6 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= mail MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -16,9 +17,9 @@ COMMENT= Mail app for Nextcloud LICENSE= AGPLv3 -RUN_DEPENDS= nextcloud>=13:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=13:www/nextcloud@${PHP_FLAVOR} -USES= gettext php +USES= gettext php:flavors USE_PHP= imap NO_BUILD= yes Modified: head/security/nextcloud-passman/Makefile ============================================================================== --- head/security/nextcloud-passman/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/security/nextcloud-passman/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -7,6 +7,7 @@ PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://releases.passman.cc/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= brnrd@freebsd.org @@ -15,11 +16,11 @@ COMMENT= Full featured password manager for Nextcloud LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= nextcloud>=9:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=9:www/nextcloud@${PHP_FLAVOR} WRKSRC= ${WRKDIR}/${PORTNAME} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/security/nextcloud-twofactor_totp/Makefile ============================================================================== --- head/security/nextcloud-twofactor_totp/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/security/nextcloud-twofactor_totp/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -7,6 +7,7 @@ PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -16,9 +17,9 @@ COMMENT= TOTP multi-factor auth app for Nextcloud LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= nextcloud>=13:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=13:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/security/nextcloud-twofactor_u2f/Makefile ============================================================================== --- head/security/nextcloud-twofactor_u2f/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/security/nextcloud-twofactor_u2f/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -7,6 +7,7 @@ PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -16,9 +17,9 @@ COMMENT= U2F multi-factor auth app for Nextcloud LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= nextcloud>=13.0.1:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=13.0.1:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/www/nextcloud-calendar/Makefile ============================================================================== --- head/www/nextcloud-calendar/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/www/nextcloud-calendar/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -8,6 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -16,9 +17,9 @@ COMMENT= Calendar app for Nextcloud LICENSE= AGPLv3 -RUN_DEPENDS= nextcloud>=13:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=13:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/www/nextcloud-contacts/Makefile ============================================================================== --- head/www/nextcloud-contacts/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/www/nextcloud-contacts/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -8,6 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -16,9 +17,9 @@ COMMENT= Contacts app for Nextcloud LICENSE= AGPLv3 -RUN_DEPENDS= nextcloud>=12:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=12:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/www/nextcloud-notes/Makefile ============================================================================== --- head/www/nextcloud-notes/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/www/nextcloud-notes/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -8,6 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -17,9 +18,9 @@ COMMENT= Notes app for Nextcloud LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= nextcloud>=9:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=9:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/www/nextcloud-tasks/Makefile ============================================================================== --- head/www/nextcloud-tasks/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/www/nextcloud-tasks/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -8,6 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} @@ -17,9 +18,9 @@ COMMENT= Tasks app for Nextcloud LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= nextcloud>=12:www/nextcloud +RUN_DEPENDS= nextcloud${PHP_PKGNAMESUFFIX}>=12:www/nextcloud@${PHP_FLAVOR} -USES= php +USES= php:flavors NO_BUILD= yes NO_ARCH= yes Modified: head/www/nextcloud/Makefile ============================================================================== --- head/www/nextcloud/Makefile Mon Apr 30 15:42:17 2018 (r468707) +++ head/www/nextcloud/Makefile Mon Apr 30 15:43:16 2018 (r468708) @@ -3,14 +3,15 @@ PORTNAME= nextcloud DISTVERSION= 13.0.2 CATEGORIES= www -MASTER_SITES= https://download.nextcloud.com/server/prereleases/ +MASTER_SITES= https://download.nextcloud.com/server/releases/ +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} MAINTAINER= brnrd@FreeBSD.org COMMENT= Personal cloud which runs on your own server LICENSE= AGPLv3 -USES= cpe gettext-runtime php:web tar:bzip2 ssl +USES= cpe gettext-runtime php:flavors,web tar:bzip2 ssl USE_PHP= bz2 ctype curl dom fileinfo filter gd hash iconv json \ mbstring pdo posix session simplexml xml xmlreader xmlwriter \ xsl wddx zip zlib