From owner-svn-ports-all@freebsd.org Thu Feb 16 16:45:29 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92CF9CDC884; Thu, 16 Feb 2017 16:45:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 57A0511D2; Thu, 16 Feb 2017 16:45:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1GGjSoI014198; Thu, 16 Feb 2017 16:45:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1GGjSkL014193; Thu, 16 Feb 2017 16:45:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201702161645.v1GGjSkL014193@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 16 Feb 2017 16:45:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434222 - in head/science/cdo: . 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.23 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: Thu, 16 Feb 2017 16:45:29 -0000 Author: sunpoet Date: Thu Feb 16 16:45:27 2017 New Revision: 434222 URL: https://svnweb.freebsd.org/changeset/ports/434222 Log: Update to 1.8.0 - Regenerate patch files with makepatch: Changes: https://code.zmaw.de/news/363 Modified: head/science/cdo/Makefile head/science/cdo/distinfo head/science/cdo/files/patch-src-cdo_pthread.c head/science/cdo/files/patch-src-pthread_debug.c head/science/cdo/files/patch-src-pthread_debug.h Modified: head/science/cdo/Makefile ============================================================================== --- head/science/cdo/Makefile Thu Feb 16 16:45:23 2017 (r434221) +++ head/science/cdo/Makefile Thu Feb 16 16:45:27 2017 (r434222) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= cdo -PORTVERSION= 1.7.2 -PORTREVISION= 1 +PORTVERSION= 1.8.0 CATEGORIES= science -MASTER_SITES= https://code.zmaw.de/attachments/download/12760/ \ +MASTER_SITES= https://code.zmaw.de/attachments/download/13772/ \ LOCAL/sunpoet MAINTAINER= sunpoet@FreeBSD.org Modified: head/science/cdo/distinfo ============================================================================== --- head/science/cdo/distinfo Thu Feb 16 16:45:23 2017 (r434221) +++ head/science/cdo/distinfo Thu Feb 16 16:45:27 2017 (r434222) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479408559 -SHA256 (cdo-1.7.2.tar.gz) = 4c43eba7a95f77457bfe0d30fb82382b3b5f2b0cf90aca6f0f0a008f6cc7e697 -SIZE (cdo-1.7.2.tar.gz) = 9041971 +TIMESTAMP = 1487174387 +SHA256 (cdo-1.8.0.tar.gz) = 2008c72740d9d485d2c857d99b8e26d801db5de3f5873fbec717d824441acf70 +SIZE (cdo-1.8.0.tar.gz) = 9275335 Modified: head/science/cdo/files/patch-src-cdo_pthread.c ============================================================================== --- head/science/cdo/files/patch-src-cdo_pthread.c Thu Feb 16 16:45:23 2017 (r434221) +++ head/science/cdo/files/patch-src-cdo_pthread.c Thu Feb 16 16:45:27 2017 (r434222) @@ -1,17 +1,17 @@ ---- src/cdo_pthread.c.orig 2007-08-29 17:15:32.000000000 +0800 -+++ src/cdo_pthread.c 2011-02-26 03:30:00.000000000 +0800 -@@ -32,8 +32,10 @@ +--- src/cdo_pthread.c.orig 2017-01-19 08:25:24 UTC ++++ src/cdo_pthread.c +@@ -32,8 +32,10 @@ void print_pthread_info() { - #if defined (HAVE_LIBPTHREAD) + #if defined(HAVE_LIBPTHREAD) pthread_attr_t attr; +#if defined (PTHREAD_MUTEXATTR_CONDATTR) pthread_mutexattr_t m_attr; pthread_condattr_t c_attr; +#endif - #if defined (PTHREAD_KEYS_MAX) + #if defined(PTHREAD_KEYS_MAX) fprintf(stderr, "PTHREAD_KEYS_MAX = %d\n", PTHREAD_KEYS_MAX); -@@ -54,6 +56,7 @@ +@@ -54,6 +56,7 @@ void print_pthread_info() print_pthread_attr("Default pthread attr", &attr); pthread_attr_destroy(&attr); @@ -19,7 +19,7 @@ pthread_mutexattr_init(&m_attr); print_pthread_mutexattr("Default pthread mutexattr", &m_attr); pthread_mutexattr_destroy(&m_attr); -@@ -61,6 +64,7 @@ +@@ -61,6 +64,7 @@ void print_pthread_info() pthread_condattr_init(&c_attr); print_pthread_condattr("Default pthread condattr ", &c_attr); pthread_condattr_destroy(&c_attr); Modified: head/science/cdo/files/patch-src-pthread_debug.c ============================================================================== --- head/science/cdo/files/patch-src-pthread_debug.c Thu Feb 16 16:45:23 2017 (r434221) +++ head/science/cdo/files/patch-src-pthread_debug.c Thu Feb 16 16:45:27 2017 (r434222) @@ -1,15 +1,15 @@ ---- src/pthread_debug.c.orig 2010-11-12 20:22:44.000000000 +0800 -+++ src/pthread_debug.c 2011-02-26 03:30:00.000000000 +0800 -@@ -77,6 +77,7 @@ +--- src/pthread_debug.c.orig 2016-06-10 08:14:45 UTC ++++ src/pthread_debug.c +@@ -76,6 +76,7 @@ void print_pthread_attr(const char *call } +#if defined (PTHREAD_MUTEXATTR_CONDATTR) void print_pthread_mutexattr(const char *caller, pthread_mutexattr_t *m_attr) { - /* -@@ -116,6 +117,7 @@ - } + (void) caller; +@@ -120,6 +121,7 @@ void print_pthread_condattr(const char * + (void) c_attr; #endif } +#endif Modified: head/science/cdo/files/patch-src-pthread_debug.h ============================================================================== --- head/science/cdo/files/patch-src-pthread_debug.h Thu Feb 16 16:45:23 2017 (r434221) +++ head/science/cdo/files/patch-src-pthread_debug.h Thu Feb 16 16:45:27 2017 (r434222) @@ -1,6 +1,6 @@ ---- src/pthread_debug.h.orig 2010-11-12 20:19:20.000000000 +0800 -+++ src/pthread_debug.h 2011-02-26 03:30:00.000000000 +0800 -@@ -15,8 +15,10 @@ +--- src/pthread_debug.h.orig 2016-04-18 08:41:42 UTC ++++ src/pthread_debug.h +@@ -15,8 +15,10 @@ void Pthread_cond_signal(const char *cal void Pthread_cond_wait(const char *caller, pthread_cond_t *cond, pthread_mutex_t *mutex); void print_pthread_attr(const char *caller, pthread_attr_t *attr);