svn commit: r380250 - in head/www/h2o: . files

Andrej Zverev az at FreeBSD.org
Mon Mar 2 11:51:58 UTC 2015


Author: az
Date: Mon Mar  2 11:51:56 2015
New Revision: 380250
URL: https://svnweb.freebsd.org/changeset/ports/380250
QAT: https://qat.redports.org/buildarchive/r380250/

Log:
  - update to 1.0.1
  - ignore build on OSVERSION < 9.0 as it doesn't compile even with clang
  - some port cleanups
  
  PR:		197846
  Submitted by:	dch at skunkwerks.at (maintainer)

Modified:
  head/www/h2o/Makefile
  head/www/h2o/distinfo
  head/www/h2o/files/h2o.in

Modified: head/www/h2o/Makefile
==============================================================================
--- head/www/h2o/Makefile	Mon Mar  2 11:35:25 2015	(r380249)
+++ head/www/h2o/Makefile	Mon Mar  2 11:51:56 2015	(r380250)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	h2o
-PORTVERSION=	0.9.2
-PORTREVISION=	1
+PORTVERSION=	1.0.1
 CATEGORIES=	www
 
 MAINTAINER=	dch at skunkwerks.at
@@ -15,11 +14,11 @@ LIB_DEPENDS=	libyaml.so:${PORTSDIR}/text
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	h2o
-GH_TAGNAME=	v0.9.2
-GH_COMMIT=	5e20cff
+GH_TAGNAME=	v1.0.1
+GH_COMMIT=	c28f39e
 
 MAKE_JOBS_UNSAFE=	yes
-USES=	cmake:outsource
+USES=	cmake:outsource compiler:c11
 
 USE_OPENSSL=	yes
 
@@ -44,6 +43,10 @@ H2O_PIDDIR=	/var/run/${PORTNAME}/
 
 USE_RC_SUBR=	${PORTNAME}
 
+.if ${OSVERSION} < 900000
+BROKEN=	fails to compile on 8.x
+.endif
+
 do-install:
 	${MKDIR} ${STAGEDIR}${DOCSDIR} \
 		${STAGEDIR}${ETCDIR} \

Modified: head/www/h2o/distinfo
==============================================================================
--- head/www/h2o/distinfo	Mon Mar  2 11:35:25 2015	(r380249)
+++ head/www/h2o/distinfo	Mon Mar  2 11:51:56 2015	(r380250)
@@ -1,2 +1,2 @@
-SHA256 (h2o-0.9.2.tar.gz) = c7d50856231b10bb7662356842283a99b5505f983765ea3c6c347daff6302a9f
-SIZE (h2o-0.9.2.tar.gz) = 775547
+SHA256 (h2o-1.0.1.tar.gz) = 44d8142482d0bd2a0a3ce904dafeb365c295883de263ed76891e9e264ca3669e
+SIZE (h2o-1.0.1.tar.gz) = 782916

Modified: head/www/h2o/files/h2o.in
==============================================================================
--- head/www/h2o/files/h2o.in	Mon Mar  2 11:35:25 2015	(r380249)
+++ head/www/h2o/files/h2o.in	Mon Mar  2 11:51:56 2015	(r380250)
@@ -15,7 +15,6 @@
 #
 # h2o_config    (string): Optional full path for h2o config file
 # h2o_user      (user):   Set to h2o by default.
-# h2o_group     (group):  Set to h2o by default.
 
 . /etc/rc.subr
 
@@ -25,7 +24,6 @@ rcvar=h2o_enable
 # defaults
 : ${h2o_enable:="NO"}
 : ${h2o_user:="%%H2O_USER%%"}
-: ${h2o_group:="%%H2O_GROUP%%"}
 : ${h2o_config:="%%PREFIX%%/etc/${name}/${name}.conf"}
 : ${h2o_options:=" --conf ${h2o_config}"}
 


More information about the svn-ports-head mailing list