From owner-svn-ports-all@FreeBSD.ORG Fri Oct 19 12:27:53 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54B2D1A7; Fri, 19 Oct 2012 12:27:53 +0000 (UTC) (envelope-from vsevolod@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1F8468FC0C; Fri, 19 Oct 2012 12:27:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9JCRqQN088517; Fri, 19 Oct 2012 12:27:52 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9JCRq4L088512; Fri, 19 Oct 2012 12:27:52 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201210191227.q9JCRq4L088512@svn.freebsd.org> From: Vsevolod Stakhov Date: Fri, 19 Oct 2012 12:27:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306116 - in head/net/beanstalkd: . files X-SVN-Group: ports-head 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.14 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, 19 Oct 2012 12:27:53 -0000 Author: vsevolod Date: Fri Oct 19 12:27:52 2012 New Revision: 306116 URL: http://svn.freebsd.org/changeset/ports/306116 Log: - Update to 1.7 - Remove LICENSE_FILE for those listed in bsd.licenses.db.mk - Add test and regression-test targets - Patch integ-test.c so we can run unit tests (#include order, thanks ak!) - New Makefile header convention Changes: http://kr.github.com/beanstalkd/2012/09/11/1.7-release-notes.html PR: 172405 Submitted by: Kubilay Kocak Feature safe: yes Added: head/net/beanstalkd/files/patch-integ-test.c (contents, props changed) Modified: head/net/beanstalkd/Makefile head/net/beanstalkd/distinfo Modified: head/net/beanstalkd/Makefile ============================================================================== --- head/net/beanstalkd/Makefile Fri Oct 19 12:24:00 2012 (r306115) +++ head/net/beanstalkd/Makefile Fri Oct 19 12:27:52 2012 (r306116) @@ -1,12 +1,7 @@ -# New ports collection makefile for: beanstalkd -# Date created: Apr 11, 2008 -# Whom: Vsevolod Stakhov -# # $FreeBSD$ -# PORTNAME= beanstalkd -PORTVERSION= 1.6 +PORTVERSION= 1.7 CATEGORIES= net MASTER_SITES= http://cloud.github.com/downloads/kr/beanstalkd/ @@ -14,7 +9,6 @@ MAINTAINER= vsevolod@FreeBSD.org COMMENT= Fast, distributed, in-memory workqueue service LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE USE_RC_SUBR= beanstalkd USE_GMAKE= yes @@ -39,4 +33,9 @@ do-install: .endfor .endif +test: configure + @cd ${WRKSRC} && ${GMAKE} ${MAKE_ARGS} check + +regression-test: test + .include Modified: head/net/beanstalkd/distinfo ============================================================================== --- head/net/beanstalkd/distinfo Fri Oct 19 12:24:00 2012 (r306115) +++ head/net/beanstalkd/distinfo Fri Oct 19 12:27:52 2012 (r306116) @@ -1,2 +1,2 @@ -SHA256 (beanstalkd-1.6.tar.gz) = f39aa9de0692272b0249134cdf4f0e0c42da7755bad600403ac90e34bac235af -SIZE (beanstalkd-1.6.tar.gz) = 59880 +SHA256 (beanstalkd-1.7.tar.gz) = 1d851677096d3cee4ee5710ee6cf1cebe8f2b5d9fa05792561ab55b534cbdaf8 +SIZE (beanstalkd-1.7.tar.gz) = 59829 Added: head/net/beanstalkd/files/patch-integ-test.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/beanstalkd/files/patch-integ-test.c Fri Oct 19 12:27:52 2012 (r306116) @@ -0,0 +1,12 @@ +--- ./integ-test.c.orig 2012-10-06 22:38:13.000000000 +1000 ++++ ./integ-test.c 2012-10-06 22:38:29.000000000 +1000 +@@ -9,8 +9,8 @@ + #include + #include + #include +-#include + #include ++#include + #include + #include + #include