From owner-svn-ports-all@freebsd.org Wed Dec 28 12:42:14 2016 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 B3102C91E98; Wed, 28 Dec 2016 12:42:14 +0000 (UTC) (envelope-from vanilla@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 8D8781435; Wed, 28 Dec 2016 12:42:14 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBSCgDsA093470; Wed, 28 Dec 2016 12:42:13 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBSCgDtU093466; Wed, 28 Dec 2016 12:42:13 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201612281242.uBSCgDtU093466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 28 Dec 2016 12:42:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429746 - in head/audio/aubio: . 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: Wed, 28 Dec 2016 12:42:14 -0000 Author: vanilla Date: Wed Dec 28 12:42:13 2016 New Revision: 429746 URL: https://svnweb.freebsd.org/changeset/ports/429746 Log: Update to 0.4.3. Modified: head/audio/aubio/Makefile head/audio/aubio/distinfo head/audio/aubio/files/patch-wscript head/audio/aubio/pkg-plist Modified: head/audio/aubio/Makefile ============================================================================== --- head/audio/aubio/Makefile Wed Dec 28 12:21:40 2016 (r429745) +++ head/audio/aubio/Makefile Wed Dec 28 12:42:13 2016 (r429746) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= aubio -PORTVERSION= 0.4.2 -PORTREVISION= 2 +PORTVERSION= 0.4.3 CATEGORIES= audio MASTER_SITES= http://aubio.org/pub/ Modified: head/audio/aubio/distinfo ============================================================================== --- head/audio/aubio/distinfo Wed Dec 28 12:21:40 2016 (r429745) +++ head/audio/aubio/distinfo Wed Dec 28 12:42:13 2016 (r429746) @@ -1,2 +1,3 @@ -SHA256 (aubio-0.4.2.tar.bz2) = 1cc58e0fed2b9468305b198ad06b889f228b797a082c2ede716dc30fcb4f8f1f -SIZE (aubio-0.4.2.tar.bz2) = 304216 +TIMESTAMP = 1482928262 +SHA256 (aubio-0.4.3.tar.bz2) = b62cdb073c0c64ae301917fa162969d42cba45e478bdf1e74490bd87e9cceaab +SIZE (aubio-0.4.3.tar.bz2) = 328852 Modified: head/audio/aubio/files/patch-wscript ============================================================================== --- head/audio/aubio/files/patch-wscript Wed Dec 28 12:21:40 2016 (r429745) +++ head/audio/aubio/files/patch-wscript Wed Dec 28 12:42:13 2016 (r429746) @@ -1,26 +1,26 @@ ---- wscript.orig 2015-08-01 10:24:35 UTC +--- wscript.orig 2016-08-16 10:36:06 UTC +++ wscript -@@ -75,6 +75,9 @@ def options(ctx): - add_option_enable_disable(ctx, 'fat', default = False, - help_str = 'build fat binaries (darwin only)', - help_disable_str = 'do not build fat binaries (default)') +@@ -91,6 +91,9 @@ def options(ctx): + help_str = 'build documentation (auto)', + help_disable_str = 'do not build documentation') + + ctx.add_option('--disable-doxygen', action = 'store_true', + dest = 'disable_doxygen', + help = 'disable doxygen even if found') - ctx.add_option('--with-target-platform', type='string', help='set target platform for cross-compilation', dest='target_platform') -@@ -258,6 +261,9 @@ def configure(ctx): - # check if doxygen is installed, optional - try: - ctx.find_program('doxygen', var='DOXYGEN') -+ if ctx.options.disable_doxygen: -+ from sys import stderr -+ print >> stderr, 'doxygen found, but disabled with --disable-doxygen' - except ctx.errors.ConfigurationError: - ctx.to_log('doxygen was not found (ignoring)') -@@ -295,11 +301,11 @@ def build(bld): +@@ -323,6 +326,9 @@ def configure(ctx): + # check if doxygen is installed, optional + try: + ctx.find_program('doxygen', var='DOXYGEN') ++ if ctx.options.disable_doxygen: ++ from sys import stderr ++ print >> stderr, 'doxygen found, but disabled with --disable-doxygen' + except ctx.errors.ConfigurationError: + ctx.to_log('doxygen was not found (ignoring)') + +@@ -358,11 +364,11 @@ def build(bld): bld( source = bld.path.ant_glob('doc/*.txt') ) # build documentation from source files using doxygen Modified: head/audio/aubio/pkg-plist ============================================================================== --- head/audio/aubio/pkg-plist Wed Dec 28 12:21:40 2016 (r429745) +++ head/audio/aubio/pkg-plist Wed Dec 28 12:42:13 2016 (r429746) @@ -21,6 +21,7 @@ include/aubio/io/source_wavread.h include/aubio/lvec.h include/aubio/mathutils.h include/aubio/musicutils.h +include/aubio/notes/notes.h include/aubio/onset/onset.h include/aubio/onset/peakpicker.h include/aubio/pitch/pitch.h @@ -52,8 +53,8 @@ include/aubio/utils/parameter.h include/aubio/utils/scale.h include/aubio/vecutils.h lib/libaubio.so -lib/libaubio.so.4 -lib/libaubio.so.4.2.2 +lib/libaubio.so.5 +lib/libaubio.so.5.0.4 libdata/pkgconfig/aubio.pc man/man1/aubiocut.1.gz man/man1/aubiomfcc.1.gz