From owner-svn-ports-head@freebsd.org Fri Feb 10 19:42:22 2017 Return-Path: Delivered-To: svn-ports-head@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 0D339CD9E22; Fri, 10 Feb 2017 19:42:22 +0000 (UTC) (envelope-from krion@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 B54081D6C; Fri, 10 Feb 2017 19:42:21 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1AJgKL1031055; Fri, 10 Feb 2017 19:42:20 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1AJgKRt031053; Fri, 10 Feb 2017 19:42:20 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201702101942.v1AJgKRt031053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Fri, 10 Feb 2017 19:42:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433822 - head/devel/safe-iop 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.23 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: Fri, 10 Feb 2017 19:42:22 -0000 Author: krion Date: Fri Feb 10 19:42:20 2017 New Revision: 433822 URL: https://svnweb.freebsd.org/changeset/ports/433822 Log: Make fetchable again, unbreak and hand maintainership to submitter PR: 216959 Submitted by: portmaster@bsdforge.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9525 Modified: head/devel/safe-iop/Makefile head/devel/safe-iop/pkg-descr Modified: head/devel/safe-iop/Makefile ============================================================================== --- head/devel/safe-iop/Makefile Fri Feb 10 18:15:21 2017 (r433821) +++ head/devel/safe-iop/Makefile Fri Feb 10 19:42:20 2017 (r433822) @@ -3,14 +3,13 @@ PORTNAME= safe-iop PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= http://BSDforge.com/projects/source/devel/safe-iop/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= Safe integer operation library for C -BROKEN= Unfetchable (google code has gone away) - USES= tar:tgz USE_LDCONFIG= yes ALL_TARGET= so @@ -25,7 +24,7 @@ post-patch: ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/libsafe_iop.so.0 ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libsafe_iop.so.0 ${STAGEDIR}${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/include/safe_iop.h ${STAGEDIR}${PREFIX}/include .include Modified: head/devel/safe-iop/pkg-descr ============================================================================== --- head/devel/safe-iop/pkg-descr Fri Feb 10 18:15:21 2017 (r433821) +++ head/devel/safe-iop/pkg-descr Fri Feb 10 19:42:20 2017 (r433822) @@ -1,5 +1,5 @@ -This library provides a collection of (macro-based) functions -for performing safe integer operations across platform and architecture +This library provides a collection of (macro-based) functions for +performing safe integer operations across platform and architecture with a straightforward API. It supports two modes of use: header-only and linked dynamic library. @@ -8,7 +8,7 @@ which is in pre-alpha. The header-only overflow and underflow pre-condition checks using checks derived from the CERT secure coding guide. The checks do not rely on twos complement arithmetic and should not at any point perform an arithmetic operations -that may overflow. It also performs basic type agreement checks to ensure -that the macros are being used (somewhat) correctly. +that may overflow. It also performs basic type agreement checks to +ensure that the macros are being used (somewhat) correctly. -WWW: http://code.google.com/p/safe-iop/ +WWW: http://BSDforge.com/projects/devel/safe-iop/