From owner-svn-ports-head@freebsd.org Fri Jan 29 21:13:49 2016 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 49AFEA72D85; Fri, 29 Jan 2016 21:13:49 +0000 (UTC) (envelope-from skreuzer@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 0271C1847; Fri, 29 Jan 2016 21:13:48 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0TLDmFU046060; Fri, 29 Jan 2016 21:13:48 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0TLDlkQ046056; Fri, 29 Jan 2016 21:13:47 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201601292113.u0TLDlkQ046056@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Fri, 29 Jan 2016 21:13:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407496 - in head/databases/py-whisper: . 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: Fri, 29 Jan 2016 21:13:49 -0000 Author: skreuzer Date: Fri Jan 29 21:13:47 2016 New Revision: 407496 URL: https://svnweb.freebsd.org/changeset/ports/407496 Log: Update to 0.9.15 PR: 206531 Submitted by: Michael Zhilin Added: head/databases/py-whisper/files/ head/databases/py-whisper/files/patch-whisper.py (contents, props changed) Modified: head/databases/py-whisper/Makefile head/databases/py-whisper/distinfo head/databases/py-whisper/pkg-plist Modified: head/databases/py-whisper/Makefile ============================================================================== --- head/databases/py-whisper/Makefile Fri Jan 29 21:01:18 2016 (r407495) +++ head/databases/py-whisper/Makefile Fri Jan 29 21:13:47 2016 (r407496) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= whisper -PORTVERSION= 0.9.12 +PORTVERSION= 0.9.15 CATEGORIES= databases python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-whisper/distinfo ============================================================================== --- head/databases/py-whisper/distinfo Fri Jan 29 21:01:18 2016 (r407495) +++ head/databases/py-whisper/distinfo Fri Jan 29 21:13:47 2016 (r407496) @@ -1,2 +1,2 @@ -SHA256 (graphite-project-whisper-0.9.12_GH0.tar.gz) = 5012e595a980658885ceb010d9dcd0e4ac664c24de6206a6b2430d1d8f60a679 -SIZE (graphite-project-whisper-0.9.12_GH0.tar.gz) = 16655 +SHA256 (graphite-project-whisper-0.9.15_GH0.tar.gz) = 737706917215d63c311639cc87a0106c660b543faf620c418f52dd66dde20e07 +SIZE (graphite-project-whisper-0.9.15_GH0.tar.gz) = 21083 Added: head/databases/py-whisper/files/patch-whisper.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-whisper/files/patch-whisper.py Fri Jan 29 21:13:47 2016 (r407496) @@ -0,0 +1,13 @@ +--- whisper.py.orig 2016-01-18 10:45:34 UTC ++++ whisper.py +@@ -48,6 +48,10 @@ if CAN_FALLOCATE: + c_off64_t = ctypes.c_int64 + c_off_t = ctypes.c_int + ++ if os.uname()[0] == 'FreeBSD': ++ # offset type is 64-bit on FreeBSD 32-bit & 64-bit platforms to address files more than 2GB ++ c_off_t = ctypes.c_int64 ++ + try: + _fallocate = libc.posix_fallocate64 + _fallocate.restype = ctypes.c_int Modified: head/databases/py-whisper/pkg-plist ============================================================================== --- head/databases/py-whisper/pkg-plist Fri Jan 29 21:01:18 2016 (r407495) +++ head/databases/py-whisper/pkg-plist Fri Jan 29 21:13:47 2016 (r407496) @@ -1,7 +1,9 @@ bin/rrd2whisper.py bin/whisper-create.py +bin/whisper-diff.py bin/whisper-dump.py bin/whisper-fetch.py +bin/whisper-fill.py bin/whisper-info.py bin/whisper-merge.py bin/whisper-resize.py