From owner-svn-ports-all@FreeBSD.ORG Fri Aug 24 09:14:01 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 CA2041065670; Fri, 24 Aug 2012 09:14:01 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AA1778FC19; Fri, 24 Aug 2012 09:14:01 +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 q7O9E1Bf004502; Fri, 24 Aug 2012 09:14:01 GMT (envelope-from pav@svn.freebsd.org) Received: (from pav@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7O9E1co004497; Fri, 24 Aug 2012 09:14:01 GMT (envelope-from pav@svn.freebsd.org) Message-Id: <201208240914.q7O9E1co004497@svn.freebsd.org> From: Pav Lucistnik Date: Fri, 24 Aug 2012 09:14:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303063 - in head/sysutils/cdrkit: . files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 24 Aug 2012 09:14:01 -0000 Author: pav Date: Fri Aug 24 09:14:01 2012 New Revision: 303063 URL: http://svn.freebsd.org/changeset/ports/303063 Log: - Update to 1.1.11 PR: ports/169749 Submitted by: John Hein Added: head/sysutils/cdrkit/files/patch-genisomage (contents, props changed) Modified: head/sysutils/cdrkit/Makefile head/sysutils/cdrkit/distinfo Modified: head/sysutils/cdrkit/Makefile ============================================================================== --- head/sysutils/cdrkit/Makefile Fri Aug 24 09:07:08 2012 (r303062) +++ head/sysutils/cdrkit/Makefile Fri Aug 24 09:14:01 2012 (r303063) @@ -6,8 +6,7 @@ # PORTNAME= cdrkit -PORTVERSION= 1.1.9 -PORTREVISION= 1 +PORTVERSION= 1.1.11 CATEGORIES= sysutils MASTER_SITES= http://cdrkit.org/releases/ \ http://debburn.alioth.debian.org/ Modified: head/sysutils/cdrkit/distinfo ============================================================================== --- head/sysutils/cdrkit/distinfo Fri Aug 24 09:07:08 2012 (r303062) +++ head/sysutils/cdrkit/distinfo Fri Aug 24 09:14:01 2012 (r303063) @@ -1,2 +1,2 @@ -SHA256 (cdrkit-1.1.9.tar.gz) = d5d58ab4c7bef036a53ef9742b4e57621f61310cd0cd28f558ba0b88c354efa2 -SIZE (cdrkit-1.1.9.tar.gz) = 1430065 +SHA256 (cdrkit-1.1.11.tar.gz) = d1c030756ecc182defee9fe885638c1785d35a2c2a297b4604c0e0dcc78e47da +SIZE (cdrkit-1.1.11.tar.gz) = 1445133 Added: head/sysutils/cdrkit/files/patch-genisomage ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cdrkit/files/patch-genisomage Fri Aug 24 09:14:01 2012 (r303063) @@ -0,0 +1,87 @@ +$FreeBSD$ + +Use instead of the linux-ish + +Use __attribute__ ((__nothrow__)) instead of the linux-ish __THROW (from the +linux sys/cdefs.h) macro - should work with clang and gcc on FreeBSD. + +--- genisoimage/sha256.c.orig 2009-10-11 12:27:59.000000000 -0600 ++++ genisoimage/sha256.c 2011-10-27 14:55:25.000000000 -0600 +@@ -24,9 +24,9 @@ + + /* Written by Ulrich Drepper , 2007. */ + +-#include + #include + #include ++#include + #include + + #include "sha256.h" +--- genisoimage/sha256.h.orig 2009-05-10 15:49:54.000000000 -0600 ++++ genisoimage/sha256.h 2011-10-27 14:58:30.000000000 -0600 +@@ -42,14 +42,14 @@ + + /* Initialize structure containing state of computation. + (FIPS 180-2: 5.3.2) */ +-extern void sha256_init_ctx (struct sha256_ctx *ctx) __THROW; ++extern void sha256_init_ctx (struct sha256_ctx *ctx) __attribute__ ((__nothrow__)); + + /* Starting with the result of former calls of this function (or the + initialization function update the context for the next LEN bytes + starting at BUFFER. + It is NOT required that LEN is a multiple of 64. */ + extern void sha256_process_bytes (const void *buffer, size_t len, +- struct sha256_ctx *ctx) __THROW; ++ struct sha256_ctx *ctx) __attribute__ ((__nothrow__)); + + /* Process the remaining bytes in the buffer and put result from CTX + in first 32 bytes following RESBUF. +@@ -57,6 +57,6 @@ + IMPORTANT: On some systems it is required that RESBUF is correctly + aligned for a 32 bits value. */ + extern void *sha256_finish_ctx (struct sha256_ctx *ctx, void *resbuf) +- __THROW; ++ __attribute__ ((__nothrow__)); + + #endif /* sha256.h */ +--- genisoimage/sha512.h.orig 2009-05-10 15:49:54.000000000 -0600 ++++ genisoimage/sha512.h 2011-10-27 14:58:35.000000000 -0600 +@@ -42,14 +42,14 @@ + + /* Initialize structure containing state of computation. + (FIPS 180-2: 5.3.3) */ +-extern void sha512_init_ctx (struct sha512_ctx *ctx) __THROW; ++extern void sha512_init_ctx (struct sha512_ctx *ctx) __attribute__ ((__nothrow__)); + + /* Starting with the result of former calls of this function (or the + initialization function update the context for the next LEN bytes + starting at BUFFER. + It is NOT required that LEN is a multiple of 128. */ + extern void sha512_process_bytes (const void *buffer, size_t len, +- struct sha512_ctx *ctx) __THROW; ++ struct sha512_ctx *ctx) __attribute__ ((__nothrow__)); + + /* Process the remaining bytes in the buffer and put result from CTX + in first 64 bytes following RESBUF. +@@ -57,6 +57,6 @@ + IMPORTANT: On some systems it is required that RESBUF is correctly + aligned for a 64 bits value. */ + extern void *sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf) +- __THROW; ++ __attribute__ ((__nothrow__)); + + #endif /* sha512.h */ +--- genisoimage/sha512.c.orig 2009-10-11 12:27:59.000000000 -0600 ++++ genisoimage/sha512.c 2011-10-27 14:59:01.000000000 -0600 +@@ -24,9 +24,9 @@ + + /* Written by Ulrich Drepper , 2007. */ + +-#include + #include + #include ++#include + #include + + #include "sha512.h"