svn commit: r473390 - in head: . www/drush

Matthias Fechner mfechner at FreeBSD.org
Tue Jun 26 15:33:27 UTC 2018


Author: mfechner
Date: Tue Jun 26 15:33:26 2018
New Revision: 473390
URL: https://svnweb.freebsd.org/changeset/ports/473390

Log:
  Added flavors support to drush.
  
  PR:		227741
  Submitted by:	Jonas Palm
  Reported by:	Jonas Palm
  Reviewed by:	tz (mentor)
  Approved by:	tz (mentor)
  Differential Revision:	https://reviews.freebsd.org/D15990

Modified:
  head/UPDATING
  head/www/drush/Makefile

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Tue Jun 26 15:27:24 2018	(r473389)
+++ head/UPDATING	Tue Jun 26 15:33:26 2018	(r473390)
@@ -5,6 +5,16 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20180625:
+  AFFECTS: users of PHP based applications like drush
+  AUTHOR: mfechner at FreeBSD.org
+
+  Flavors are being added to PHP applications. If you use PHP 5.6 you need:
+
+  # pkg set -n drush:drush-php56
+
+  For more details see 20180611.
+
 20180612:
   AFFECTS: users of the nox flavor of editors/emacs-devel
   AUTHOR: jrm at FreeBSD.org

Modified: head/www/drush/Makefile
==============================================================================
--- head/www/drush/Makefile	Tue Jun 26 15:27:24 2018	(r473389)
+++ head/www/drush/Makefile	Tue Jun 26 15:33:26 2018	(r473390)
@@ -3,8 +3,10 @@
 
 PORTNAME=	drush
 DISTVERSION=	8.1.16
+PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	https://github.com/drush-ops/drush/releases/download/${DISTVERSION}/
+PKGNAMESUFFIX=	${PHP_PKGNAMESUFFIX}
 DISTNAME=	drush
 EXTRACT_SUFX=	.phar
 
@@ -17,7 +19,7 @@ NO_BUILD=	yes
 NO_WRKSUBDIR=	yes
 NO_ARCH=	yes
 
-USES=		php:cli
+USES=		php:cli,flavors
 # set php requirements same as drupal itself
 USE_PHP=	gd pcre session mbstring ctype json hash simplexml dom pdo filter phar
 


More information about the svn-ports-all mailing list