Date: Tue, 8 Aug 2017 00:12:50 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447525 - in branches/2017Q3/www: varnish4 varnish5 varnish5/files Message-ID: <201708080012.v780Corm075451@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Tue Aug 8 00:12:50 2017 New Revision: 447525 URL: https://svnweb.freebsd.org/changeset/ports/447525 Log: MFH: r447523 r447524 www/varnish4 www/varnish5: Change MASTER_SITES to GITHUB - Now properly use autotools - rst2man is a required build dependency Requested by upstream as the current mirror is being retired Approved by: ports-secteam (with hat) Added: branches/2017Q3/www/varnish5/files/patch-Makefile.am - copied unchanged from r447524, head/www/varnish5/files/patch-Makefile.am Modified: branches/2017Q3/www/varnish4/Makefile branches/2017Q3/www/varnish4/distinfo branches/2017Q3/www/varnish5/Makefile branches/2017Q3/www/varnish5/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/varnish4/Makefile ============================================================================== --- branches/2017Q3/www/varnish4/Makefile Tue Aug 8 00:11:56 2017 (r447524) +++ branches/2017Q3/www/varnish4/Makefile Tue Aug 8 00:12:50 2017 (r447525) @@ -4,7 +4,6 @@ PORTNAME= varnish PORTVERSION= 4.1.8 PORTREVISION= 0 CATEGORIES= www -MASTER_SITES= http://repo.varnish-cache.org/source/ PKGNAMESUFFIX= 4 MAINTAINER= feld@FreeBSD.org @@ -12,6 +11,7 @@ COMMENT= High-performance HTTP accelerator LICENSE= BSD2CLAUSE +BUILD_DEPENDS= rst2man:textproc/py-docutils LIB_DEPENDS= libpcre.so:devel/pcre CONFLICTS= varnish-2.* varnish-3.* @@ -23,9 +23,13 @@ CPE_VENDOR= varnish-cache CFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=${PREFIX} --enable-tests -CONFIGURE_ENV= RST2MAN=true USE_LDCONFIG= yes INSTALL_TARGET= install-strip + +USE_GITHUB= yes +GH_ACCOUNT= varnishcache +GH_PROJECT= varnish-cache +GH_TAGNAME= varnish-${PORTVERSION} USERS= varnish varnishlog GROUPS= varnish Modified: branches/2017Q3/www/varnish4/distinfo ============================================================================== --- branches/2017Q3/www/varnish4/distinfo Tue Aug 8 00:11:56 2017 (r447524) +++ branches/2017Q3/www/varnish4/distinfo Tue Aug 8 00:12:50 2017 (r447525) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501698248 -SHA256 (varnish-4.1.8.tar.gz) = 908e7fbfa0325498717686b2050181134aa0a69d1495c02b2625cd34d35a4ff1 -SIZE (varnish-4.1.8.tar.gz) = 2254772 +TIMESTAMP = 1502147563 +SHA256 (varnishcache-varnish-cache-4.1.8-varnish-4.1.8_GH0.tar.gz) = 6d5735d1562570517feae551b236d2c321537785ff5e08fe40ce5315c32ef53c +SIZE (varnishcache-varnish-cache-4.1.8-varnish-4.1.8_GH0.tar.gz) = 946513 Modified: branches/2017Q3/www/varnish5/Makefile ============================================================================== --- branches/2017Q3/www/varnish5/Makefile Tue Aug 8 00:11:56 2017 (r447524) +++ branches/2017Q3/www/varnish5/Makefile Tue Aug 8 00:12:50 2017 (r447525) @@ -4,7 +4,6 @@ PORTNAME= varnish PORTVERSION= 5.1.3 PORTREVISION= 0 CATEGORIES= www -MASTER_SITES= http://repo.varnish-cache.org/source/ PKGNAMESUFFIX= 5 MAINTAINER= feld@FreeBSD.org @@ -12,20 +11,25 @@ COMMENT= High-performance HTTP accelerator LICENSE= BSD2CLAUSE +BUILD_DEPENDS= rst2man:textproc/py-docutils LIB_DEPENDS= libpcre.so:devel/pcre CONFLICTS= varnish-2.* varnish-3.* varnish4-4.* -USES= cpe gmake libedit libtool ncurses pathfix \ +USES= autoreconf cpe gmake libedit libtool ncurses pathfix \ pkgconfig python:2,build readline shebangfix SHEBANG_FILES= lib/libvcc/vmodtool.py CPE_VENDOR= varnish-cache CFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir=${PREFIX} --enable-tests -CONFIGURE_ENV= RST2MAN=true +CONFIGURE_ARGS= --localstatedir=${PREFIX} --without-dot USE_LDCONFIG= yes INSTALL_TARGET= install-strip + +USE_GITHUB= yes +GH_ACCOUNT= varnishcache +GH_PROJECT= varnish-cache +GH_TAGNAME= varnish-${PORTVERSION} USERS= varnish varnishlog GROUPS= varnish Modified: branches/2017Q3/www/varnish5/distinfo ============================================================================== --- branches/2017Q3/www/varnish5/distinfo Tue Aug 8 00:11:56 2017 (r447524) +++ branches/2017Q3/www/varnish5/distinfo Tue Aug 8 00:12:50 2017 (r447525) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501698276 -SHA256 (varnish-5.1.3.tar.gz) = 7439c93ca581340f3722b8c790160f46dc6c5328188e4c0bc233c42f3f04a54e -SIZE (varnish-5.1.3.tar.gz) = 2643223 +TIMESTAMP = 1502147852 +SHA256 (varnishcache-varnish-cache-5.1.3-varnish-5.1.3_GH0.tar.gz) = 2c76b5aee9e715b84641a1de1dbcc39563c24496436fa4e5417acd329e80bd22 +SIZE (varnishcache-varnish-cache-5.1.3-varnish-5.1.3_GH0.tar.gz) = 1183690 Copied: branches/2017Q3/www/varnish5/files/patch-Makefile.am (from r447524, head/www/varnish5/files/patch-Makefile.am) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/www/varnish5/files/patch-Makefile.am Tue Aug 8 00:12:50 2017 (r447525, copy of r447524, head/www/varnish5/files/patch-Makefile.am) @@ -0,0 +1,8 @@ +--- Makefile.am.orig 2017-08-08 00:04:18 UTC ++++ Makefile.am +@@ -1,4 +1,4 @@ +-ACLOCAL_AMFLAGS = -I m4 ++ACLOCAL_AMFLAGS = -I m4 -I . + + SUBDIRS = include lib bin etc doc man +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708080012.v780Corm075451>