From owner-svn-ports-head@FreeBSD.ORG Mon May 4 17:15:22 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FBB9F84; Mon, 4 May 2015 17:15:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D97C19DA; Mon, 4 May 2015 17:15:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t44HFMJD027209; Mon, 4 May 2015 17:15:22 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t44HFKCi027197; Mon, 4 May 2015 17:15:20 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201505041715.t44HFKCi027197@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Mon, 4 May 2015 17:15:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385418 - in head/devel/opencvs: . 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-head@freebsd.org X-Mailman-Version: 2.1.20 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, 04 May 2015 17:15:22 -0000 Author: johans Date: Mon May 4 17:15:19 2015 New Revision: 385418 URL: https://svnweb.freebsd.org/changeset/ports/385418 Log: - Update to 1 May version of opencvs - Redo patches to please portlint Added: head/devel/opencvs/files/patch-rcsparse.c - copied, changed from r385417, head/devel/opencvs/files/patch-rcsparse.h Deleted: head/devel/opencvs/files/patch-rcsparse.h Modified: head/devel/opencvs/Makefile head/devel/opencvs/distinfo head/devel/opencvs/files/patch-Makefile head/devel/opencvs/files/patch-cvs.h head/devel/opencvs/files/patch-log.h head/devel/opencvs/files/patch-util.c head/devel/opencvs/files/patch-xmalloc.c head/devel/opencvs/files/patch-xmalloc.h Modified: head/devel/opencvs/Makefile ============================================================================== --- head/devel/opencvs/Makefile Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/Makefile Mon May 4 17:15:19 2015 (r385418) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opencvs -PORTVERSION= 20140108 +PORTVERSION= 20150501 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/%SUBDIR%/opencvs/ \ ${MASTER_SITE_LOCAL} Modified: head/devel/opencvs/distinfo ============================================================================== --- head/devel/opencvs/distinfo Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/distinfo Mon May 4 17:15:19 2015 (r385418) @@ -1,2 +1,2 @@ -SHA256 (opencvs-20140108.tar.gz) = c4a074b2e87f6d1ee67f08cc799ce3bc9ab8265efb600332aaf69de9e8e78db5 -SIZE (opencvs-20140108.tar.gz) = 162820 +SHA256 (opencvs-20150501.tar.gz) = 9d615b2d37ff58e8b052cb95403e89aed7593c08568df193d318addadcf51992 +SIZE (opencvs-20150501.tar.gz) = 162638 Modified: head/devel/opencvs/files/patch-Makefile ============================================================================== --- head/devel/opencvs/files/patch-Makefile Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-Makefile Mon May 4 17:15:19 2015 (r385418) @@ -1,5 +1,5 @@ ---- Makefile.orig 2011-04-20 20:46:33.000000000 +0200 -+++ Makefile 2011-04-20 21:22:34.000000000 +0200 +--- Makefile.orig 2011-04-20 18:46:33 UTC ++++ Makefile @@ -1,7 +1,7 @@ # $OpenBSD: Makefile,v 1.48 2010/10/15 08:44:12 tobias Exp $ @@ -9,7 +9,7 @@ CPPFLAGS+=-I${.CURDIR} SRCS= cvs.c add.c admin.c annotate.c atomicio.c commit.c config.c \ -@@ -12,14 +12,14 @@ +@@ -12,14 +12,14 @@ SRCS= cvs.c add.c admin.c annotate.c ato root.c server.c status.c tag.c trigger.c worklist.c util.c update.c \ version.c watch.c xmalloc.c @@ -20,7 +20,7 @@ -CFLAGS+=-Wsign-compare -DEBUG= -g -ggdb -YFLAGS= -+CFLAGS+=-DSIZE_MAX=ULONG_MAX ++CFLAGS+=-DSIZE_MAX=ULONG_MAX -DHOST_NAME_MAX=_POSIX_HOST_NAME_MAX +DPADD+= ${LIBZ} +LDADD+= -lz -lmd Modified: head/devel/opencvs/files/patch-cvs.h ============================================================================== --- head/devel/opencvs/files/patch-cvs.h Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-cvs.h Mon May 4 17:15:19 2015 (r385418) @@ -1,5 +1,5 @@ ---- cvs.h.orig 2009-03-25 14:19:20.000000000 -0700 -+++ cvs.h 2011-04-18 23:55:35.000000000 -0700 +--- cvs.h.orig 2015-05-04 09:15:45 UTC ++++ cvs.h @@ -29,6 +29,10 @@ #include Modified: head/devel/opencvs/files/patch-log.h ============================================================================== --- head/devel/opencvs/files/patch-log.h Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-log.h Mon May 4 17:15:19 2015 (r385418) @@ -1,5 +1,5 @@ ---- log.h.orig 2008-06-09 18:00:34.000000000 -0700 -+++ log.h 2011-04-18 23:44:44.000000000 -0700 +--- log.h.orig 2008-06-10 01:00:34 UTC ++++ log.h @@ -29,6 +29,9 @@ #include Copied and modified: head/devel/opencvs/files/patch-rcsparse.c (from r385417, head/devel/opencvs/files/patch-rcsparse.h) ============================================================================== --- head/devel/opencvs/files/patch-rcsparse.h Mon May 4 16:56:48 2015 (r385417, copy source) +++ head/devel/opencvs/files/patch-rcsparse.c Mon May 4 17:15:19 2015 (r385418) @@ -1,6 +1,6 @@ ---- rcsparse.c.orig 2011-04-20 21:08:22.000000000 +0200 -+++ rcsparse.c 2011-04-20 21:08:46.000000000 +0200 -@@ -1221,8 +1221,6 @@ +--- rcsparse.c.orig 2015-05-04 09:15:45 UTC ++++ rcsparse.c +@@ -1228,8 +1228,6 @@ valid_login(char *login_name) return 0; } } Modified: head/devel/opencvs/files/patch-util.c ============================================================================== --- head/devel/opencvs/files/patch-util.c Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-util.c Mon May 4 17:15:19 2015 (r385418) @@ -1,5 +1,5 @@ ---- util.c.orig 2009-03-24 07:59:19.000000000 +0100 -+++ util.c 2010-06-08 20:18:08.000000000 +0200 +--- util.c.orig 2015-05-04 09:15:45 UTC ++++ util.c @@ -30,7 +30,7 @@ #include #include @@ -8,4 +8,4 @@ +#include "atomicio.h" #include #include - #include + #include Modified: head/devel/opencvs/files/patch-xmalloc.c ============================================================================== --- head/devel/opencvs/files/patch-xmalloc.c Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-xmalloc.c Mon May 4 17:15:19 2015 (r385418) @@ -1,11 +1,10 @@ ---- xmalloc.c.orig 2009-06-07 10:39:13.000000000 +0200 -+++ xmalloc.c 2010-06-08 20:18:08.000000000 +0200 -@@ -13,6 +13,8 @@ - * called by a name other than "ssh" or "Secure Shell". - */ - -+#include -+ - #include +--- xmalloc.c.orig 2015-05-04 09:15:45 UTC ++++ xmalloc.c +@@ -17,6 +17,7 @@ #include #include + #include ++#include + + #include "log.h" + #include "xmalloc.h" Modified: head/devel/opencvs/files/patch-xmalloc.h ============================================================================== --- head/devel/opencvs/files/patch-xmalloc.h Mon May 4 16:56:48 2015 (r385417) +++ head/devel/opencvs/files/patch-xmalloc.h Mon May 4 17:15:19 2015 (r385418) @@ -1,6 +1,6 @@ ---- xmalloc.h.orig 2007-01-29 17:22:29.000000000 +0100 -+++ xmalloc.h 2010-06-08 20:18:08.000000000 +0200 -@@ -29,7 +29,6 @@ +--- xmalloc.h.orig 2015-05-04 09:15:45 UTC ++++ xmalloc.h +@@ -29,7 +29,6 @@ int xasprintf(char **, const char *, .. __attribute__((__nonnull__ (2))); int xsnprintf(char *, size_t, const char *, ...) __attribute__((__format__ (printf, 3, 4)))