From owner-svn-ports-head@freebsd.org Sun Oct 4 00:42:56 2015 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 A010CA0FDFE; Sun, 4 Oct 2015 00:42:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 76D1C1380; Sun, 4 Oct 2015 00:42:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t940gu9a004633; Sun, 4 Oct 2015 00:42:56 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t940guPj004631; Sun, 4 Oct 2015 00:42:56 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510040042.t940guPj004631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 4 Oct 2015 00:42:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398559 - in head/devel/luabind: . 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: Sun, 04 Oct 2015 00:42:56 -0000 Author: jbeich Date: Sun Oct 4 00:42:55 2015 New Revision: 398559 URL: https://svnweb.freebsd.org/changeset/ports/398559 Log: devel/luabind: unbreak -DNDEBUG on 10+ systems Added: head/devel/luabind/files/patch-luabind_detail_object__rep.hpp (contents, props changed) Modified: head/devel/luabind/Makefile (contents, props changed) Modified: head/devel/luabind/Makefile ============================================================================== --- head/devel/luabind/Makefile Sat Oct 3 22:17:15 2015 (r398558) +++ head/devel/luabind/Makefile Sun Oct 4 00:42:55 2015 (r398559) @@ -3,7 +3,7 @@ PORTNAME= luabind PORTVERSION= 0.9.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF Added: head/devel/luabind/files/patch-luabind_detail_object__rep.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/luabind/files/patch-luabind_detail_object__rep.hpp Sun Oct 4 00:42:55 2015 (r398559) @@ -0,0 +1,21 @@ +In file included from luabind/detail/policy.hpp:51:0, + from luabind/detail/convert_to_lua.hpp:28, + from luabind/detail/call_member.hpp:30, + from luabind/wrapper_base.hpp:31, + from luabind/back_reference.hpp:27, + from luabind/class.hpp:93, + from luabind/luabind.hpp:28, +luabind/detail/object_rep.hpp: In member function 'void* luabind::detail::object_rep::allocate(size_t)': +luabind/detail/object_rep.hpp:77:11: error: 'malloc' is not a member of 'std' + return std::malloc(size); + ^ +--- luabind/detail/object_rep.hpp.orig 2010-08-31 13:24:52 UTC ++++ luabind/detail/object_rep.hpp +@@ -24,6 +24,7 @@ + #ifndef LUABIND_OBJECT_REP_HPP_INCLUDED + #define LUABIND_OBJECT_REP_HPP_INCLUDED + ++#include // for -DNDEBUG with libc++ + #include + #include + #include From owner-svn-ports-head@freebsd.org Sun Oct 4 01:23:33 2015 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 F1C99A0E077; Sun, 4 Oct 2015 01:23:33 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 E21441C67; Sun, 4 Oct 2015 01:23:33 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t941NXln020715; Sun, 4 Oct 2015 01:23:33 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t941NXlP020713; Sun, 4 Oct 2015 01:23:33 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201510040123.t941NXlP020713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Sun, 4 Oct 2015 01:23:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398560 - in head/net/netatalk3: . 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: Sun, 04 Oct 2015 01:23:34 -0000 Author: marcus Date: Sun Oct 4 01:23:32 2015 New Revision: 398560 URL: https://svnweb.freebsd.org/changeset/ports/398560 Log: Allow reloading of the afpd config file via the RC script. Reported by: Fusl Modified: head/net/netatalk3/Makefile head/net/netatalk3/files/netatalk.in Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Sun Oct 4 00:42:55 2015 (r398559) +++ head/net/netatalk3/Makefile Sun Oct 4 01:23:32 2015 (r398560) @@ -3,7 +3,7 @@ PORTNAME= netatalk PORTVERSION= 3.1.7 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= SF Modified: head/net/netatalk3/files/netatalk.in ============================================================================== --- head/net/netatalk3/files/netatalk.in Sun Oct 4 00:42:55 2015 (r398559) +++ head/net/netatalk3/files/netatalk.in Sun Oct 4 01:23:32 2015 (r398560) @@ -23,4 +23,19 @@ load_rc_config ${name} command=%%PREFIX%%/sbin/${name} +extra_commands="reload" +reload_cmd="netatalk_reload" + +netatalk_reload() +{ + local status + + if ! status=`run_rc_command status 2>&1`; then + echo $status + return 1 + fi + echo 'Reloading netatalk.' + kill -HUP $rc_pid +} + run_rc_command "$1" From owner-svn-ports-head@freebsd.org Sun Oct 4 01:33:50 2015 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 507B7A0E980; Sun, 4 Oct 2015 01:33:50 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 404B011A8; Sun, 4 Oct 2015 01:33:50 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t941XoeV024875; Sun, 4 Oct 2015 01:33:50 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t941XncH024873; Sun, 4 Oct 2015 01:33:49 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201510040133.t941XncH024873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 4 Oct 2015 01:33:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398561 - in head/math/octave-forge-base: . 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: Sun, 04 Oct 2015 01:33:50 -0000 Author: stephen Date: Sun Oct 4 01:33:49 2015 New Revision: 398561 URL: https://svnweb.freebsd.org/changeset/ports/398561 Log: - Add rmdir $prefix/lib/octave/packages to the end of the installation script. This is because the octave packaging process can fail to delete this directory when it becomes empty. - Update to 1.3. Submitted by: Dmitry Marakasov Modified: head/math/octave-forge-base/Makefile head/math/octave-forge-base/files/load-octave-pkg.in Modified: head/math/octave-forge-base/Makefile ============================================================================== --- head/math/octave-forge-base/Makefile Sun Oct 4 01:23:32 2015 (r398560) +++ head/math/octave-forge-base/Makefile Sun Oct 4 01:33:49 2015 (r398561) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-base -PORTVERSION= 1.2 -PORTREVISION= 6 +PORTVERSION= 1.3 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none Modified: head/math/octave-forge-base/files/load-octave-pkg.in ============================================================================== --- head/math/octave-forge-base/files/load-octave-pkg.in Sun Oct 4 01:23:32 2015 (r398560) +++ head/math/octave-forge-base/files/load-octave-pkg.in Sun Oct 4 01:33:49 2015 (r398561) @@ -240,3 +240,8 @@ foreach my $p (@ordered_list_to_install) print "load-octave-pkg: octave is installing $p.\n"; system "octave -H -q --no-site-file --eval \"pkg('install','$tardir/$p')\" > /dev/null\n"; } + +# Remove directories that may have been left behind by the octave packaging +# process. + +rmdir "$prefix/lib/octave/packages"; From owner-svn-ports-head@freebsd.org Sun Oct 4 01:38:39 2015 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 9FD82A0EDAD; Sun, 4 Oct 2015 01:38:39 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from um-tip2-missouri-out.um.umsystem.edu (um-tip2-missouri-out.um.umsystem.edu [198.209.49.149]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "um-tip1.um.umsystem.edu", Issuer "InCommon RSA Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 041CF1374; Sun, 4 Oct 2015 01:38:38 +0000 (UTC) (envelope-from stephen@missouri.edu) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2BZBQDWgRBW/8SeoM9egydUYA4Gv2olhXIBAgIcgQc8EAEBAQEBAQGBCoQlAQEEIxFEARACAQgOCgICBRYLAgICBwMCAQIBIBUQAgQBDAEFAgEBiCoNtFmPPAGERQEBAQEBAQEDAQEBAQEBAQEBGYEiik+EchsHgmmBQwWVfAGFFoVJhA0VMoNxjQ+IRjgrhAJxAQEBi3+BBgEBAQ X-IPAS-Result: A2BZBQDWgRBW/8SeoM9egydUYA4Gv2olhXIBAgIcgQc8EAEBAQEBAQGBCoQlAQEEIxFEARACAQgOCgICBRYLAgICBwMCAQIBIBUQAgQBDAEFAgEBiCoNtFmPPAGERQEBAQEBAQEDAQEBAQEBAQEBGYEiik+EchsHgmmBQwWVfAGFFoVJhA0VMoNxjQ+IRjgrhAJxAQEBi3+BBgEBAQ Received: from um-tcas1.um.umsystem.edu ([207.160.158.196]) by um-tip2-exch-relay.um.umsystem.edu with ESMTP; 03 Oct 2015 20:37:27 -0500 Received: from UM-MBX-N02.um.umsystem.edu ([169.254.5.78]) by UM-TCAS1.um.umsystem.edu ([207.160.158.196]) with mapi id 14.03.0248.002; Sat, 3 Oct 2015 20:37:27 -0500 From: "Montgomery-Smith, Stephen" To: Dmitry Marakasov , Stephen Montgomery-Smith CC: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r398454 - in head/math/octave-forge-interval: . files Thread-Topic: svn commit: r398454 - in head/math/octave-forge-interval: . files Thread-Index: AQHQ/W3HxPI1p+wk6kqz/LkykU0iWJ5Z5oQAgAD83IA= Date: Sun, 4 Oct 2015 01:37:27 +0000 Message-ID: <561082CF.4060105@missouri.edu> References: <201510022355.t92Nt52W070713@repo.freebsd.org> <20151003103218.GB44712@hades.panopticon> In-Reply-To: <20151003103218.GB44712@hades.panopticon> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux i686; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 x-originating-ip: [207.160.158.194] Content-Type: text/plain; charset="utf-8" Content-ID: <547C1132DAAD6F4B8647C1A1822084D0@missouri.edu> Content-Transfer-Encoding: base64 MIME-Version: 1.0 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: Sun, 04 Oct 2015 01:38:39 -0000 T24gMTAvMDMvMjAxNSAwNTozMiBBTSwgRG1pdHJ5IE1hcmFrYXNvdiB3cm90ZToNCj4gKiBTdGVw aGVuIE1vbnRnb21lcnktU21pdGggKHN0ZXBoZW5ARnJlZUJTRC5vcmcpIHdyb3RlOg0KPiANCj4g KFJlcGx5aW5nIHRvIHJhbmRvbSBvY3RhdmUtZm9yZ2UgY29tbWl0KQ0KPiANCj4gQ291bGQgeW91 IHBsZWFzZSBsb29rIGludG8gdGhpcyBtYXRoL29jdGF2ZS1mb3JnZS1tc2g/IEl0IGRvZXNuJ3Qg c2VlbQ0KPiBkaWZmZXJlbnQgZnJvbSBvdGhlciBvY3RhdmUtZm9yZ2UgcG9ydHMsIHlldCBmb3Ig c29tZSByZWFzb24gaXQgcHJvZHVjZXMNCj4gdGhpcyBsZWZ0b3ZlciBkaXJlY3Rvcnk6DQo+IA0K PiBodHRwOi8vcG91ZHJpZXJlLmFtZG1pMy5ydS9kYXRhLzEwLWFtZDY0LWRlZmF1bHQvZmFpbHVy ZXNfYWxsXzIwMTVfMTBfMDIvbG9ncy9lcnJvcnMvb2N0YXZlLWZvcmdlLW1zaC0xLjAuMTBfMi5s b2cNCj4gDQoNCkkgbWFkZSBhbiB1cGRhdGUgcjM5ODU2MSB0byBtYXRoL29jdGF2ZS1mb3JnZS1i YXNlIHdoaWNoIHNob3VsZCBmaXggdGhpcw0KaXNzdWUuICBTaW5jZSBtb3N0IHVzZXJzIHdpbGwg bm90IG5vdGljZSB0aGlzIHByb2JsZW0sIEkgaGF2ZW4ndCBidW1wZWQNCnRoZSBwb3J0cmV2aXNp b24gb2YgYW55IG90aGVyIG9jdGF2ZS1mb3JnZS0qIHBvcnRzLg0K From owner-svn-ports-head@freebsd.org Sun Oct 4 02:26:10 2015 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 9F6AAA0F423; Sun, 4 Oct 2015 02:26:10 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8EA521B13; Sun, 4 Oct 2015 02:26:10 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t942QAtU045600; Sun, 4 Oct 2015 02:26:10 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t942Q84j045593; Sun, 4 Oct 2015 02:26:08 GMT (envelope-from db@FreeBSD.org) Message-Id: <201510040226.t942Q84j045593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sun, 4 Oct 2015 02:26:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398562 - in head/comms/gnuradio: . 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: Sun, 04 Oct 2015 02:26:10 -0000 Author: db Date: Sun Oct 4 02:26:08 2015 New Revision: 398562 URL: https://svnweb.freebsd.org/changeset/ports/398562 Log: Update to 3.7.8 USE_GCC=yes causes the build to fail on systems where clang and libc++ are used by default (see bug 202143, for example). This essentially means comms/gnuradio currently only builds on 9.x. The problem is caused by the fact that on 10.x and later boost is likely built using clang and libc++, but USE_GCC=yes forces gnuradio to be built with GCC and libstdc++. Ports r392951 mentioned USE_GCC=yes was added because "clang's builtins were conflicting with gnuradio", which does not seem to happen in my tests at least. PR: ports/203500 Submitted by: takefu@airport.fm Added: head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc (contents, props changed) Modified: head/comms/gnuradio/Makefile head/comms/gnuradio/distinfo head/comms/gnuradio/files/patch-CMakeLists.txt head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c head/comms/gnuradio/pkg-plist Modified: head/comms/gnuradio/Makefile ============================================================================== --- head/comms/gnuradio/Makefile Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/Makefile Sun Oct 4 02:26:08 2015 (r398562) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gnuradio -PORTVERSION= 3.7.7.1 -PORTREVISION= 1 +PORTVERSION= 3.7.8 CATEGORIES= comms astro hamradio MASTER_SITES= http://gnuradio.org/releases/gnuradio/ \ LOCAL/db @@ -34,15 +33,19 @@ LIB_DEPENDS= libcppunit.so:${PORTSDIR}/d libgsl.so:${PORTSDIR}/math/gsl RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= cmake:outsource iconv perl5 python:2.7 shebangfix +# USES=compiler:c11 is necessary because base GCC fails: +# volk/lib/volk_cpu.c: In function 'i_can_has_3dnow': +# volk/lib/volk_cpu.c:62: error: can't find a register in class 'BREG' while reloading 'asm' +# volk/lib/volk_cpu.c:62: error: 'asm' operand has impossible constraints +USES= cmake:outsource compiler:c11 iconv perl5 python:2.7 shebangfix SHEBANG_FILES= grc/freedesktop/grc_setup_freedesktop.in CMAKE_ARGS+= -DSWIG_EXECUTABLE:STRING="${LOCALBASE}/bin/swig2.0" CMAKE_ARGS+= -DICONV_PREFIX:STRING="${ICONV_PREFIX}" \ -DICONV_LIB:STRING="X${ICONV_LIB}" \ -DENABLE_GR_CTRLPORT="YES" -# for detailed debugging uncomment the next two lines as needed +# for detailed debugging uncomment the next line #CMAKE_ARGS+= --debug-output --trace -MAJOR_SUB_VER= 3.7.7 +MAJOR_SUB_VER= 3.7.8 DOCSDIR= share/doc/${PORTNAME}-${MAJOR_SUB_VER} USE_GNOME= pygtk2 USE_WX= 3.0+ @@ -51,6 +54,9 @@ WX_COMPS= wx wx:build wx:run python:buil USE_LDCONFIG= yes PLIST_SUB+= MAJOR_VERSION="3" PLIST_SUB+= MAJOR_SUB_VER="${MAJOR_SUB_VER}" +LIBSTRIP_FILES= analog atsc audio blocks channels digital dtv fcd fec fft\ + filter noaa pager pmt qtgui runtime trellis video-sdl\ + vocoder wavelet wxgui OPTIONS_DEFINE= USRP TESTING # Unfortunately building docs on i386 fails @@ -58,6 +64,7 @@ OPTIONS_DEFINE= USRP TESTING # Yay. building docs is broken on 10 and HEAD too so turn them all off OPTIONS_EXCLUDE= DOCS OPTIONS_DEFAULT= USRP +OPTIONS_SUB= yes USRP_DESC= Include USRP support (UHD) from Ettus TESTING_DESC= Include testing support @@ -84,8 +91,11 @@ TESTING_CMAKE_ON= -DENABLE_TESTING:STRIN TESTING_CMAKE_OFF= -DENABLE_TESTING:STRING="OFF" TESTING_BUILD_DEPENDS= cppunit-config:${PORTSDIR}/devel/cppunit -.include +.include +.if ${PORT_OPTIONS:MUSRP} +LIBSTRIP_FILES+= uhd +.endif .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 USE_GCC= yes .endif @@ -100,4 +110,9 @@ post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/cmake/Modules/FindPortaudio.cmake -.include +post-install: +.for a in ${LIBSTRIP_FILES} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgnuradio-${a}.so.${MAJOR_SUB_VER} +.endfor + +.include Modified: head/comms/gnuradio/distinfo ============================================================================== --- head/comms/gnuradio/distinfo Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/distinfo Sun Oct 4 02:26:08 2015 (r398562) @@ -1,2 +1,2 @@ -SHA256 (gnuradio-3.7.7.1.tar.gz) = 2b27b13fc734ab5882e42c1661d433c0c097fd8b55b682f00626fa96c356584e -SIZE (gnuradio-3.7.7.1.tar.gz) = 3845988 +SHA256 (gnuradio-3.7.8.tar.gz) = fe19cb54b5d77fb76dde61d5cf184c6dee7066779b45c51676bae6e6d0cd4172 +SIZE (gnuradio-3.7.8.tar.gz) = 3990172 Modified: head/comms/gnuradio/files/patch-CMakeLists.txt ============================================================================== --- head/comms/gnuradio/files/patch-CMakeLists.txt Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-CMakeLists.txt Sun Oct 4 02:26:08 2015 (r398562) @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2015-05-12 09:39:44 UTC +--- CMakeLists.txt.orig 2015-07-25 20:27:13 UTC +++ CMakeLists.txt @@ -29,6 +29,11 @@ cmake_minimum_required(VERSION 2.6) project(gnuradio CXX C) @@ -15,7 +15,7 @@ @@ -144,6 +149,14 @@ string(REPLACE "\n" " \\n" COMPILER_INFO ######################################################################## include(GrPlatform) #define LIB_SUFFIX - set(GR_RUNTIME_DIR bin) + set(GR_RUNTIME_DIR bin CACHE PATH "Path to install all binaries") +######################################################################## +# FreeBSD libdata vs. lib +# @@ -24,10 +24,10 @@ +else() +set(GR_PKGCONFIG_DIR lib${LIB_SUFFIX}) +endif() - set(GR_LIBRARY_DIR lib${LIB_SUFFIX}) - set(GR_INCLUDE_DIR include) - set(GR_DATA_DIR share) -@@ -228,6 +241,42 @@ add_custom_target(uninstall + set(GR_LIBRARY_DIR lib${LIB_SUFFIX} CACHE PATH "Path to install libraries") + set(GR_INCLUDE_DIR include CACHE PATH "Path to install header files") + set(GR_DATA_DIR share CACHE PATH "Base location for data") +@@ -229,6 +242,42 @@ add_custom_target(uninstall include(GrBoost) ######################################################################## @@ -70,7 +70,7 @@ # Enable python component ######################################################################## find_package(PythonLibs 2) -@@ -353,11 +402,13 @@ GR_LOGGING() +@@ -354,11 +403,13 @@ GR_LOGGING() ######################################################################## # Distribute the README file ######################################################################## Modified: head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in ============================================================================== --- head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Sun Oct 4 02:26:08 2015 (r398562) @@ -5,7 +5,7 @@ # set the path where dot can find it. -DOT_FONTPATH = -+DOT_FONTPATH = /usr/local/share/fonts/freefont-ttf ++DOT_FONTPATH = %%PREFIX%%/share/fonts/freefont-ttf # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and Added: head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc Sun Oct 4 02:26:08 2015 (r398562) @@ -0,0 +1,11 @@ +--- gr-dtv/lib/dvbt/dvbt_reed_solomon.cc.orig 2015-08-05 18:54:39 UTC ++++ gr-dtv/lib/dvbt/dvbt_reed_solomon.cc +@@ -42,7 +42,7 @@ namespace gr { + d_p = p; d_m = m; + + //maximum number of elements in the GF(p^m) +- int q = powl(p, m); ++ int q = pow(p, m); + + d_gf_exp = new unsigned char[q]; + if (d_gf_exp == NULL) { Modified: head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c ============================================================================== --- head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c Sun Oct 4 02:26:08 2015 (r398562) @@ -1,10 +1,13 @@ ---- volk/tmpl/volk_cpu.tmpl.c.orig 2015-05-12 09:39:44 UTC +--- volk/tmpl/volk_cpu.tmpl.c.orig 2015-07-09 02:00:33 UTC +++ volk/tmpl/volk_cpu.tmpl.c -@@ -36,7 +36,31 @@ struct VOLK_CPU volk_cpu; - #if defined(HAVE_CPUID_H) - #include - #else -- #include "gcc_x86_cpuid.h" +@@ -34,7 +34,35 @@ struct VOLK_CPU volk_cpu; + + //implement get cpuid for gcc compilers using a system or local copy of cpuid.h + #if defined(__GNUC__) +- #include ++ #if defined(HAVE_CPUID_H) ++ #include ++ #else + #ifdef __FreeBSD__ +#if __i386__ +#define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ @@ -30,6 +33,7 @@ + #else + #include "gcc_x86_cpuid.h" + #endif - #endif ++ #endif #define cpuid_x86(op, r) __get_cpuid(op, (unsigned int *)r+0, (unsigned int *)r+1, (unsigned int *)r+2, (unsigned int *)r+3) + /* Return Intel AVX extended CPU capabilities register. Modified: head/comms/gnuradio/pkg-plist ============================================================================== --- head/comms/gnuradio/pkg-plist Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/pkg-plist Sun Oct 4 02:26:08 2015 (r398562) @@ -1,8 +1,14 @@ %%QT_BINDIR%%/gnuradio-companion %%QT_BINDIR%%/gnuradio-config-info %%QT_BINDIR%%/gr_constellation_plot +%%QT_BINDIR%%/gr-ctrlport-monitor +%%QT_BINDIR%%/gr-ctrlport-monitorc +%%QT_BINDIR%%/gr-ctrlport-monitoro %%QT_BINDIR%%/gr_filter_design %%QT_BINDIR%%/gr_modtool +%%QT_BINDIR%%/gr-perf-monitorx +%%QT_BINDIR%%/gr-perf-monitorxc +%%QT_BINDIR%%/gr-perf-monitorxo %%QT_BINDIR%%/gr_plot_char %%QT_BINDIR%%/gr_plot_const %%QT_BINDIR%%/gr_plot_fft @@ -36,11 +42,11 @@ %%QT_BINDIR%%/gr_time_raster_b %%QT_BINDIR%%/gr_time_raster_f %%QT_BINDIR%%/grcc -%%QT_BINDIR%%/uhd_fft -%%QT_BINDIR%%/uhd_rx_cfile -%%QT_BINDIR%%/uhd_rx_nogui -%%QT_BINDIR%%/uhd_siggen -%%QT_BINDIR%%/uhd_siggen_gui +%%USRP%%%%QT_BINDIR%%/uhd_fft +%%USRP%%%%QT_BINDIR%%/uhd_rx_cfile +%%USRP%%%%QT_BINDIR%%/uhd_rx_nogui +%%USRP%%%%QT_BINDIR%%/uhd_siggen +%%USRP%%%%QT_BINDIR%%/uhd_siggen_gui %%QT_BINDIR%%/usrp_flex %%QT_BINDIR%%/usrp_flex_all %%QT_BINDIR%%/usrp_flex_band @@ -48,20 +54,20 @@ %%QT_BINDIR%%/volk_modtool %%QT_BINDIR%%/volk_profile %%ETCDIR%%/conf.d/gnuradio-runtime.conf -%%ETCDIR%%/conf.d/gr-audio-alsa.conf.sample -%%ETCDIR%%/conf.d/gr-audio-jack.conf.sample -%%ETCDIR%%/conf.d/gr-audio-oss.conf.sample -%%ETCDIR%%/conf.d/gr-audio-portaudio.conf.sample -%%ETCDIR%%/conf.d/gr-audio.conf.sample -%%ETCDIR%%/conf.d/gr-qtgui.conf.sample -%%ETCDIR%%/conf.d/gr-wxgui.conf.sample -%%ETCDIR%%/conf.d/grc.conf.sample -%%ETCDIR%%/conf.d/modtool.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-alsa.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-jack.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-oss.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-portaudio.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio.conf.sample +@sample %%ETCDIR%%/conf.d/gr-qtgui.conf.sample +@sample %%ETCDIR%%/conf.d/gr-wxgui.conf.sample +@sample %%ETCDIR%%/conf.d/grc.conf.sample +@sample %%ETCDIR%%/conf.d/modtool.conf.sample include/gnuradio/analog/agc.h include/gnuradio/analog/agc2.h include/gnuradio/analog/agc2_cc.h include/gnuradio/analog/agc2_ff.h -include/gnuradio/analog/agc%%MAJOR_VERSION%%_cc.h +include/gnuradio/analog/agc3_cc.h include/gnuradio/analog/agc_cc.h include/gnuradio/analog/agc_ff.h include/gnuradio/analog/api.h @@ -104,7 +110,7 @@ include/gnuradio/api.h include/gnuradio/atsc/CMakeLists.txt include/gnuradio/atsc/GrAtscBitTimingLoop.h include/gnuradio/atsc/GrAtscBitTimingLoop2.h -include/gnuradio/atsc/GrAtscBitTimingLoop%%MAJOR_VERSION%%.h +include/gnuradio/atsc/GrAtscBitTimingLoop3.h include/gnuradio/atsc/GrAtscConvert2xTo20.h include/gnuradio/atsc/GrAtscDataSegToSoftDataSeg.h include/gnuradio/atsc/GrAtscDeinterleaver.h @@ -216,11 +222,11 @@ include/gnuradio/blocks/api.h include/gnuradio/blocks/argmax_fs.h include/gnuradio/blocks/argmax_is.h include/gnuradio/blocks/argmax_ss.h -include/gnuradio/blocks/%%QT_BINDIR%%_statistics_f.h +include/gnuradio/blocks/bin_statistics_f.h include/gnuradio/blocks/burst_tagger.h include/gnuradio/blocks/char_to_float.h include/gnuradio/blocks/char_to_short.h -include/gnuradio/blocks/check_lfsr_%%MAJOR_VERSION%%2k_s.h +include/gnuradio/blocks/check_lfsr_32k_s.h include/gnuradio/blocks/complex_to_arg.h include/gnuradio/blocks/complex_to_float.h include/gnuradio/blocks/complex_to_imag.h @@ -269,8 +275,8 @@ include/gnuradio/blocks/interleaved_shor include/gnuradio/blocks/keep_m_in_n.h include/gnuradio/blocks/keep_one_in_n.h include/gnuradio/blocks/lfsr_15_1_0.h -include/gnuradio/blocks/lfsr_%%MAJOR_VERSION%%2k.h -include/gnuradio/blocks/lfsr_%%MAJOR_VERSION%%2k_source_s.h +include/gnuradio/blocks/lfsr_32k.h +include/gnuradio/blocks/lfsr_32k_source_s.h include/gnuradio/blocks/log2_const.h include/gnuradio/blocks/max_ff.h include/gnuradio/blocks/max_ii.h @@ -432,7 +438,9 @@ include/gnuradio/config.h include/gnuradio/constants.h include/gnuradio/digital/additive_scrambler_bb.h include/gnuradio/digital/api.h -include/gnuradio/digital/%%QT_BINDIR%%ary_slicer_fb.h +include/gnuradio/digital/binary_slicer_fb.h +include/gnuradio/digital/burst_shaper_cc.h +include/gnuradio/digital/burst_shaper_ff.h include/gnuradio/digital/chunks_to_symbols_bc.h include/gnuradio/digital/chunks_to_symbols_bf.h include/gnuradio/digital/chunks_to_symbols_ic.h @@ -446,6 +454,7 @@ include/gnuradio/digital/constellation.h include/gnuradio/digital/constellation_decoder_cb.h include/gnuradio/digital/constellation_receiver_cb.h include/gnuradio/digital/constellation_soft_decoder_cf.h +include/gnuradio/digital/corr_est_cc.h include/gnuradio/digital/correlate_access_code_bb.h include/gnuradio/digital/correlate_access_code_bb_ts.h include/gnuradio/digital/correlate_access_code_ff_ts.h @@ -453,9 +462,9 @@ include/gnuradio/digital/correlate_acces include/gnuradio/digital/correlate_and_sync_cc.h include/gnuradio/digital/costas_loop_cc.h include/gnuradio/digital/cpmmod_bc.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2_async_bb.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2_bb.h +include/gnuradio/digital/crc32.h +include/gnuradio/digital/crc32_async_bb.h +include/gnuradio/digital/crc32_bb.h include/gnuradio/digital/descrambler_bb.h include/gnuradio/digital/diff_decoder_bb.h include/gnuradio/digital/diff_encoder_bb.h @@ -473,9 +482,11 @@ include/gnuradio/digital/lfsr.h include/gnuradio/digital/lms_dd_equalizer_cc.h include/gnuradio/digital/map_bb.h include/gnuradio/digital/metric_type.h +include/gnuradio/digital/modulate_vector.h include/gnuradio/digital/mpsk_receiver_cc.h include/gnuradio/digital/mpsk_snr_est.h include/gnuradio/digital/mpsk_snr_est_cc.h +include/gnuradio/digital/msk_timing_recovery_cc.h include/gnuradio/digital/ofdm_carrier_allocator_cvc.h include/gnuradio/digital/ofdm_chanest_vcvc.h include/gnuradio/digital/ofdm_cyclic_prefixer.h @@ -530,6 +541,15 @@ include/gnuradio/dtv/dvbs2_config.h include/gnuradio/dtv/dvbs2_interleaver_bb.h include/gnuradio/dtv/dvbs2_modulator_bc.h include/gnuradio/dtv/dvbs2_physical_cc.h +include/gnuradio/dtv/dvbt_bit_inner_interleaver.h +include/gnuradio/dtv/dvbt_config.h +include/gnuradio/dtv/dvbt_convolutional_interleaver.h +include/gnuradio/dtv/dvbt_energy_dispersal.h +include/gnuradio/dtv/dvbt_inner_coder.h +include/gnuradio/dtv/dvbt_map.h +include/gnuradio/dtv/dvbt_reed_solomon_enc.h +include/gnuradio/dtv/dvbt_reference_signals.h +include/gnuradio/dtv/dvbt_symbol_inner_interleaver.h include/gnuradio/dtv/dvbt2_cellinterleaver_cc.h include/gnuradio/dtv/dvbt2_config.h include/gnuradio/dtv/dvbt2_framemapper_cc.h @@ -548,6 +568,7 @@ include/gnuradio/fec/api.h include/gnuradio/fec/async_decoder.h include/gnuradio/fec/async_encoder.h include/gnuradio/fec/ber_bf.h +include/gnuradio/fec/cc_common.h include/gnuradio/fec/cc_decoder.h include/gnuradio/fec/cc_encoder.h include/gnuradio/fec/ccsds_encoder.h @@ -755,8 +776,8 @@ include/gnuradio/swig/blocks_swig1.i include/gnuradio/swig/blocks_swig1_doc.i include/gnuradio/swig/blocks_swig2.i include/gnuradio/swig/blocks_swig2_doc.i -include/gnuradio/swig/blocks_swig%%MAJOR_VERSION%%.i -include/gnuradio/swig/blocks_swig%%MAJOR_VERSION%%_doc.i +include/gnuradio/swig/blocks_swig3.i +include/gnuradio/swig/blocks_swig3_doc.i include/gnuradio/swig/blocks_swig4.i include/gnuradio/swig/blocks_swig4_doc.i include/gnuradio/swig/blocks_swig5.i @@ -817,8 +838,8 @@ include/gnuradio/swig/tags.i include/gnuradio/swig/top_block.i include/gnuradio/swig/trellis_swig.i include/gnuradio/swig/trellis_swig_doc.i -include/gnuradio/swig/uhd_swig.i -include/gnuradio/swig/uhd_swig_doc.i +%%USRP%%include/gnuradio/swig/uhd_swig.i +%%USRP%%include/gnuradio/swig/uhd_swig_doc.i include/gnuradio/swig/video_sdl_swig.i include/gnuradio/swig/video_sdl_swig_doc.i include/gnuradio/swig/vocoder_swig.i @@ -858,12 +879,12 @@ include/gnuradio/trellis/metrics_f.h include/gnuradio/trellis/metrics_i.h include/gnuradio/trellis/metrics_s.h include/gnuradio/trellis/pccc_decoder_b.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fs.h +include/gnuradio/trellis/pccc_decoder_combined_cb.h +include/gnuradio/trellis/pccc_decoder_combined_ci.h +include/gnuradio/trellis/pccc_decoder_combined_cs.h +include/gnuradio/trellis/pccc_decoder_combined_fb.h +include/gnuradio/trellis/pccc_decoder_combined_fi.h +include/gnuradio/trellis/pccc_decoder_combined_fs.h include/gnuradio/trellis/pccc_decoder_i.h include/gnuradio/trellis/pccc_decoder_s.h include/gnuradio/trellis/pccc_encoder_bb.h @@ -875,12 +896,12 @@ include/gnuradio/trellis/pccc_encoder_ss include/gnuradio/trellis/permutation.h include/gnuradio/trellis/quicksort_index.h include/gnuradio/trellis/sccc_decoder_b.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fs.h +include/gnuradio/trellis/sccc_decoder_combined_cb.h +include/gnuradio/trellis/sccc_decoder_combined_ci.h +include/gnuradio/trellis/sccc_decoder_combined_cs.h +include/gnuradio/trellis/sccc_decoder_combined_fb.h +include/gnuradio/trellis/sccc_decoder_combined_fi.h +include/gnuradio/trellis/sccc_decoder_combined_fs.h include/gnuradio/trellis/sccc_decoder_i.h include/gnuradio/trellis/sccc_decoder_s.h include/gnuradio/trellis/sccc_encoder_bb.h @@ -889,29 +910,30 @@ include/gnuradio/trellis/sccc_encoder_bs include/gnuradio/trellis/sccc_encoder_ii.h include/gnuradio/trellis/sccc_encoder_si.h include/gnuradio/trellis/sccc_encoder_ss.h -include/gnuradio/trellis/siso_com%%QT_BINDIR%%ed_f.h +include/gnuradio/trellis/siso_combined_f.h include/gnuradio/trellis/siso_f.h include/gnuradio/trellis/siso_type.h include/gnuradio/trellis/viterbi_b.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fs.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ib.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ii.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_is.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_sb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_si.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ss.h +include/gnuradio/trellis/viterbi_combined_cb.h +include/gnuradio/trellis/viterbi_combined_ci.h +include/gnuradio/trellis/viterbi_combined_cs.h +include/gnuradio/trellis/viterbi_combined_fb.h +include/gnuradio/trellis/viterbi_combined_fi.h +include/gnuradio/trellis/viterbi_combined_fs.h +include/gnuradio/trellis/viterbi_combined_ib.h +include/gnuradio/trellis/viterbi_combined_ii.h +include/gnuradio/trellis/viterbi_combined_is.h +include/gnuradio/trellis/viterbi_combined_sb.h +include/gnuradio/trellis/viterbi_combined_si.h +include/gnuradio/trellis/viterbi_combined_ss.h include/gnuradio/trellis/viterbi_i.h include/gnuradio/trellis/viterbi_s.h include/gnuradio/types.h -include/gnuradio/uhd/amsg_source.h -include/gnuradio/uhd/api.h -include/gnuradio/uhd/usrp_sink.h -include/gnuradio/uhd/usrp_source.h +%%USRP%%include/gnuradio/uhd/amsg_source.h +%%USRP%%include/gnuradio/uhd/api.h +%%USRP%%include/gnuradio/uhd/usrp_block.h +%%USRP%%include/gnuradio/uhd/usrp_sink.h +%%USRP%%include/gnuradio/uhd/usrp_source.h include/gnuradio/unittests.h include/gnuradio/video_sdl/api.h include/gnuradio/video_sdl/sink_s.h @@ -926,10 +948,10 @@ include/gnuradio/vocoder/cvsd_decode_bs. include/gnuradio/vocoder/cvsd_encode_sb.h include/gnuradio/vocoder/g721_decode_bs.h include/gnuradio/vocoder/g721_encode_sb.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_24_decode_bs.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_24_encode_sb.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_40_decode_bs.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_40_encode_sb.h +include/gnuradio/vocoder/g723_24_decode_bs.h +include/gnuradio/vocoder/g723_24_encode_sb.h +include/gnuradio/vocoder/g723_40_decode_bs.h +include/gnuradio/vocoder/g723_40_encode_sb.h include/gnuradio/vocoder/gsm_fr_decode_ps.h include/gnuradio/vocoder/gsm_fr_encode_sp.h include/gnuradio/vocoder/ulaw_decode_bs.h @@ -950,97 +972,98 @@ include/pmt/pmt_pool.h include/pmt/pmt_serial_tags.h include/pmt/pmt_sugar.h include/volk/volk.h -include/volk/volk_16i_%%MAJOR_VERSION%%2fc_dot_prod_%%MAJOR_VERSION%%2fc.h +include/volk/volk_16i_32fc_dot_prod_32fc.h include/volk/volk_16i_branch_4_state_8.h include/volk/volk_16i_convert_8i.h include/volk/volk_16i_max_star_16i.h include/volk/volk_16i_max_star_horizontal_16i.h include/volk/volk_16i_permute_and_scalar_add.h -include/volk/volk_16i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_16i_s32f_convert_32f.h include/volk/volk_16i_x4_quad_max_star_16i.h include/volk/volk_16i_x5_add_quad_16i_x4.h include/volk/volk_16ic_deinterleave_16i_x2.h include/volk/volk_16ic_deinterleave_real_16i.h include/volk/volk_16ic_deinterleave_real_8i.h include/volk/volk_16ic_magnitude_16i.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_deinterleave_real_%%MAJOR_VERSION%%2f.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_magnitude_%%MAJOR_VERSION%%2f.h +include/volk/volk_16ic_s32f_deinterleave_32f_x2.h +include/volk/volk_16ic_s32f_deinterleave_real_32f.h +include/volk/volk_16ic_s32f_magnitude_32f.h include/volk/volk_16u_byteswap.h include/volk/volk_16u_byteswappuppet_16u.h -include/volk/volk_%%MAJOR_VERSION%%2f_accumulator_s%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_acos_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_asin_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_atan_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_%%QT_BINDIR%%ary_slicer_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2f_%%QT_BINDIR%%ary_slicer_8i.h -include/volk/volk_%%MAJOR_VERSION%%2f_convert_64f.h -include/volk/volk_%%MAJOR_VERSION%%2f_cos_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_expfast_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_index_max_16u.h -include/volk/volk_%%MAJOR_VERSION%%2f_invsqrt_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_log2_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_null_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_%%MAJOR_VERSION%%2f_fm_detect_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_calc_spectral_noise_floor_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_16i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_8i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_normalize.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_power_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_stddev_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_sin_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_sqrt_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_stddev_and_mean_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2f_tan_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_tanh_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_add_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_divide_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_dot_prod_16i.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_dot_prod_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_interleave_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_max_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_min_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_multiply_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_pow_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_s%%MAJOR_VERSION%%2f_interleave_16ic.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_subtract_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x%%MAJOR_VERSION%%_sum_of_poly_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_conjugate_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_64f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_imag_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_real_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_real_64f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_index_max_16u.h -include/volk/volk_%%MAJOR_VERSION%%2fc_magnitude_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_magnitude_squared_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_atan2_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_deinterleave_real_16i.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_magnitude_16i.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_power_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_power_spectrum_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_x2_power_spectral_density_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_rotatorpuppet_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_x2_rotator_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_conjugate_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_multiply_conjugate_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_s%%MAJOR_VERSION%%2f_square_dist_scalar_mult_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_square_dist_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2i_x2_and_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2i_x2_or_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2u_byteswap.h -include/volk/volk_%%MAJOR_VERSION%%2u_byteswappuppet_%%MAJOR_VERSION%%2u.h -include/volk/volk_%%MAJOR_VERSION%%2u_popcnt.h -include/volk/volk_%%MAJOR_VERSION%%2u_popcntpuppet_%%MAJOR_VERSION%%2u.h -include/volk/volk_64f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_32f_accumulator_s32f.h +include/volk/volk_32f_acos_32f.h +include/volk/volk_32f_asin_32f.h +include/volk/volk_32f_atan_32f.h +include/volk/volk_32f_%%QT_BINDIR%%ary_slicer_32i.h +include/volk/volk_32f_%%QT_BINDIR%%ary_slicer_8i.h +include/volk/volk_32f_convert_64f.h +include/volk/volk_32f_cos_32f.h +include/volk/volk_32f_expfast_32f.h +include/volk/volk_32f_index_max_16u.h +include/volk/volk_32f_invsqrt_32f.h +include/volk/volk_32f_log2_32f.h +include/volk/volk_32f_null_32f.h +include/volk/volk_32f_s32f_32f_fm_detect_32f.h +include/volk/volk_32f_s32f_calc_spectral_noise_floor_32f.h +include/volk/volk_32f_s32f_convert_16i.h +include/volk/volk_32f_s32f_convert_32i.h +include/volk/volk_32f_s32f_convert_8i.h +include/volk/volk_32f_s32f_multiply_32f.h +include/volk/volk_32f_s32f_normalize.h +include/volk/volk_32f_s32f_power_32f.h +include/volk/volk_32f_s32f_stddev_32f.h +include/volk/volk_32f_sin_32f.h +include/volk/volk_32f_sqrt_32f.h +include/volk/volk_32f_stddev_and_mean_32f_x2.h +include/volk/volk_32f_tan_32f.h +include/volk/volk_32f_tanh_32f.h +include/volk/volk_32f_x2_add_32f.h +include/volk/volk_32f_x2_divide_32f.h +include/volk/volk_32f_x2_dot_prod_16i.h +include/volk/volk_32f_x2_dot_prod_32f.h +include/volk/volk_32f_x2_fm_detectpuppet_32f.h +include/volk/volk_32f_x2_interleave_32fc.h +include/volk/volk_32f_x2_max_32f.h +include/volk/volk_32f_x2_min_32f.h +include/volk/volk_32f_x2_multiply_32f.h +include/volk/volk_32f_x2_pow_32f.h +include/volk/volk_32f_x2_s32f_interleave_16ic.h +include/volk/volk_32f_x2_subtract_32f.h +include/volk/volk_32f_x3_sum_of_poly_32f.h +include/volk/volk_32fc_32f_dot_prod_32fc.h +include/volk/volk_32fc_32f_multiply_32fc.h +include/volk/volk_32fc_conjugate_32fc.h +include/volk/volk_32fc_deinterleave_32f_x2.h +include/volk/volk_32fc_deinterleave_64f_x2.h +include/volk/volk_32fc_deinterleave_imag_32f.h +include/volk/volk_32fc_deinterleave_real_32f.h +include/volk/volk_32fc_deinterleave_real_64f.h +include/volk/volk_32fc_index_max_16u.h +include/volk/volk_32fc_magnitude_32f.h +include/volk/volk_32fc_magnitude_squared_32f.h +include/volk/volk_32fc_s32f_atan2_32f.h +include/volk/volk_32fc_s32f_deinterleave_real_16i.h +include/volk/volk_32fc_s32f_magnitude_16i.h +include/volk/volk_32fc_s32f_power_32fc.h +include/volk/volk_32fc_s32f_power_spectrum_32f.h +include/volk/volk_32fc_s32f_x2_power_spectral_density_32f.h +include/volk/volk_32fc_s32fc_multiply_32fc.h +include/volk/volk_32fc_s32fc_rotatorpuppet_32fc.h +include/volk/volk_32fc_s32fc_x2_rotator_32fc.h +include/volk/volk_32fc_x2_conjugate_dot_prod_32fc.h +include/volk/volk_32fc_x2_dot_prod_32fc.h +include/volk/volk_32fc_x2_multiply_32fc.h +include/volk/volk_32fc_x2_multiply_conjugate_32fc.h +include/volk/volk_32fc_x2_s32f_square_dist_scalar_mult_32f.h +include/volk/volk_32fc_x2_square_dist_32f.h +include/volk/volk_32i_s32f_convert_32f.h +include/volk/volk_32i_x2_and_32i.h +include/volk/volk_32i_x2_or_32i.h +include/volk/volk_32u_byteswap.h +include/volk/volk_32u_byteswappuppet_32u.h +include/volk/volk_32u_popcnt.h +include/volk/volk_32u_popcntpuppet_32u.h +include/volk/volk_64f_convert_32f.h include/volk/volk_64f_x2_max_64f.h include/volk/volk_64f_x2_min_64f.h include/volk/volk_64u_byteswap.h @@ -1048,14 +1071,14 @@ include/volk/volk_64u_byteswappuppet_64u include/volk/volk_64u_popcnt.h include/volk/volk_64u_popcntpuppet_64u.h include/volk/volk_8i_convert_16i.h -include/volk/volk_8i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_8i_s32f_convert_32f.h include/volk/volk_8ic_deinterleave_16i_x2.h include/volk/volk_8ic_deinterleave_real_16i.h include/volk/volk_8ic_deinterleave_real_8i.h -include/volk/volk_8ic_s%%MAJOR_VERSION%%2f_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_8ic_s%%MAJOR_VERSION%%2f_deinterleave_real_%%MAJOR_VERSION%%2f.h +include/volk/volk_8ic_s32f_deinterleave_32f_x2.h +include/volk/volk_8ic_s32f_deinterleave_real_32f.h include/volk/volk_8ic_x2_multiply_conjugate_16ic.h -include/volk/volk_8ic_x2_s%%MAJOR_VERSION%%2f_multiply_conjugate_%%MAJOR_VERSION%%2fc.h +include/volk/volk_8ic_x2_s32f_multiply_conjugate_32fc.h include/volk/volk_8u_conv_k7_r2puppet_8u.h include/volk/volk_8u_x4_conv_k7_r2_8u.h include/volk/volk_common.h @@ -1069,7 +1092,7 @@ lib/cmake/gnuradio/CMakeMacroLibtoolFile lib/cmake/gnuradio/CMakeParseArgumentsCopy.cmake lib/cmake/gnuradio/FindALSA.cmake lib/cmake/gnuradio/FindCppUnit.cmake -lib/cmake/gnuradio/FindFFTW%%MAJOR_VERSION%%f.cmake +lib/cmake/gnuradio/FindFFTW3f.cmake lib/cmake/gnuradio/FindGSL.cmake lib/cmake/gnuradio/FindGit.cmake lib/cmake/gnuradio/FindJack.cmake @@ -1079,6 +1102,7 @@ lib/cmake/gnuradio/FindPortaudio.cmake lib/cmake/gnuradio/FindQwt.cmake lib/cmake/gnuradio/FindSWIG.cmake lib/cmake/gnuradio/FindSphinx.cmake +lib/cmake/gnuradio/FindThrift.cmake lib/cmake/gnuradio/FindUHD.cmake lib/cmake/gnuradio/FindUSB.cmake lib/cmake/gnuradio/FindZeroMQ.cmake @@ -1150,9 +1174,9 @@ lib/libgnuradio-runtime.so.%%MAJOR_SUB_V lib/libgnuradio-trellis.so lib/libgnuradio-trellis.so.%%MAJOR_VERSION%% lib/libgnuradio-trellis.so.%%MAJOR_SUB_VER%% -lib/libgnuradio-uhd.so -lib/libgnuradio-uhd.so.%%MAJOR_VERSION%% -lib/libgnuradio-uhd.so.%%MAJOR_SUB_VER%% +%%USRP%%lib/libgnuradio-uhd.so +%%USRP%%lib/libgnuradio-uhd.so.%%MAJOR_VERSION%% +%%USRP%%lib/libgnuradio-uhd.so.%%MAJOR_SUB_VER%% lib/libgnuradio-video-sdl.so lib/libgnuradio-video-sdl.so.%%MAJOR_VERSION%% lib/libgnuradio-video-sdl.so.%%MAJOR_SUB_VER%% @@ -1166,7 +1190,7 @@ lib/libgnuradio-wxgui.so lib/libgnuradio-wxgui.so.%%MAJOR_VERSION%% lib/libgnuradio-wxgui.so.%%MAJOR_SUB_VER%% lib/libvolk.so -lib/libvolk.so.1.0 +lib/libvolk.so.1.0.2 %%PYTHON_SITELIBDIR%%/gnuradio/__init__.py %%PYTHON_SITELIBDIR%%/gnuradio/__init__.pyc %%PYTHON_SITELIBDIR%%/gnuradio/__init__.pyo @@ -1230,7 +1254,7 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig0.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig1.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig2.so -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig%%MAJOR_VERSION%%.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig3.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig4.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig5.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig.py @@ -1245,9 +1269,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.py -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.pyo %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.pyo @@ -1276,9 +1300,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.py -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.py +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.pyo %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.pyo @@ -1294,9 +1318,18 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.pyo %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.py %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.pyc %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.pyo %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/icon.png %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/monitor.py %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/monitor.pyc @@ -1411,6 +1444,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.py %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.pyc %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.py +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.pyo %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.py %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.pyc %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.pyo @@ -1536,9 +1572,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.py %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.pyc %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.py -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.py +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.pyo %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.py %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.pyc %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.pyo @@ -1888,16 +1924,16 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.py %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.pyc %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/_uhd_swig.so -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/_uhd_swig.so +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyo %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.py %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.pyc %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.pyo @@ -2108,19 +2144,15 @@ libdata/pkgconfig/gnuradio-pager.pc libdata/pkgconfig/gnuradio-qtgui.pc libdata/pkgconfig/gnuradio-runtime.pc libdata/pkgconfig/gnuradio-trellis.pc -libdata/pkgconfig/gnuradio-uhd.pc +%%USRP%%libdata/pkgconfig/gnuradio-uhd.pc libdata/pkgconfig/gnuradio-video-sdl.pc libdata/pkgconfig/gnuradio-vocoder.pc libdata/pkgconfig/gnuradio-wavelet.pc libdata/pkgconfig/gr-wxgui.pc libdata/pkgconfig/volk.pc libexec/gnuradio/grc_setup_freedesktop -%%PORTDOCS%%%%DOCSDIR%%/README.analog -%%PORTDOCS%%%%DOCSDIR%%/README.blocks -%%PORTDOCS%%%%DOCSDIR%%/README.channels -%%PORTDOCS%%%%DOCSDIR%%/README.dtv -%%PORTDOCS%%%%DOCSDIR%%/README.fec %%DATADIR%%/examples/analog/fmtest.py +%%DATADIR%%/examples/analog/noise_power.grc %%DATADIR%%/examples/atsc/README %%DATADIR%%/examples/atsc/atsc_rx.py %%DATADIR%%/examples/audio/audio_copy.py @@ -2139,6 +2171,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/audio/spectrum_inversion.py %%DATADIR%%/examples/audio/test_resampler.py %%DATADIR%%/examples/blocks/matrix_multiplexer.grc +%%DATADIR%%/examples/blocks/peak_detector2.grc %%DATADIR%%/examples/blocks/vector_source_with_tags.grc %%DATADIR%%/examples/channels/channel_tone_response.grc %%DATADIR%%/examples/channels/demo_gmsk.grc @@ -2147,6 +2180,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/channels/demo_quantization.grc %%DATADIR%%/examples/channels/demo_spec_an.grc %%DATADIR%%/examples/channels/demo_two_tone.grc +%%DATADIR%%/examples/digital/burst_shaper.grc %%DATADIR%%/examples/digital/demod/ber_simulation.grc %%DATADIR%%/examples/digital/demod/constellation_soft_decoder.grc %%DATADIR%%/examples/digital/demod/digital_freq_lock.grc @@ -2156,6 +2190,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/digital/demod/pam_sync.grc %%DATADIR%%/examples/digital/demod/pam_timing.grc %%DATADIR%%/examples/digital/demod/test_corr_and_sync.grc +%%DATADIR%%/examples/digital/demod/test_corr_est.grc %%DATADIR%%/examples/digital/demod/uhd_corr_and_sync_rx.grc %%DATADIR%%/examples/digital/demod/uhd_corr_and_sync_tx.grc %%DATADIR%%/examples/digital/example_costas.py @@ -2189,7 +2224,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/fcd/fcd_fft.grc %%DATADIR%%/examples/fcd/fcd_nfm_rx %%DATADIR%%/examples/fcd/fcd_nfm_rx.grc -%%DATADIR%%/examples/fec/271.127.%%MAJOR_VERSION%%.112 +%%DATADIR%%/examples/fec/271.127.3.112 %%DATADIR%%/examples/fec/ber_curve_gen.grc %%DATADIR%%/examples/fec/ber_test.grc %%DATADIR%%/examples/fec/fecapi_async_decoders.grc @@ -2205,6 +2240,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/filter/chirp_channelize.py %%DATADIR%%/examples/filter/decimate.py %%DATADIR%%/examples/filter/fft_filter_ccc.py +%%DATADIR%%/examples/filter/filter_taps.grc %%DATADIR%%/examples/filter/fir_filter_ccc.py %%DATADIR%%/examples/filter/fir_filter_fff.py %%DATADIR%%/examples/filter/gr_filtdes_api.py @@ -2222,20 +2258,20 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_client.grc %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_client_script.py %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_server.grc -%%DATADIR%%/examples/hf_explorer/README -%%DATADIR%%/examples/hf_explorer/hfx.py -%%DATADIR%%/examples/hf_explorer/hfx_help -%%DATADIR%%/examples/hf_radio/README.TXT -%%DATADIR%%/examples/hf_radio/hfir.sci -%%DATADIR%%/examples/hf_radio/input.py -%%DATADIR%%/examples/hf_radio/output.py -%%DATADIR%%/examples/hf_radio/radio.py -%%DATADIR%%/examples/hf_radio/radio.xml -%%DATADIR%%/examples/hf_radio/ssb_taps -%%DATADIR%%/examples/hf_radio/ssbagc.py -%%DATADIR%%/examples/hf_radio/ssbdemod.py -%%DATADIR%%/examples/hf_radio/startup.py -%%DATADIR%%/examples/hf_radio/ui.py +%%USRP%%%%DATADIR%%/examples/hf_explorer/README +%%USRP%%%%DATADIR%%/examples/hf_explorer/hfx.py +%%USRP%%%%DATADIR%%/examples/hf_explorer/hfx_help +%%USRP%%%%DATADIR%%/examples/hf_radio/README.TXT +%%USRP%%%%DATADIR%%/examples/hf_radio/hfir.sci +%%USRP%%%%DATADIR%%/examples/hf_radio/input.py +%%USRP%%%%DATADIR%%/examples/hf_radio/output.py +%%USRP%%%%DATADIR%%/examples/hf_radio/radio.py +%%USRP%%%%DATADIR%%/examples/hf_radio/radio.xml +%%USRP%%%%DATADIR%%/examples/hf_radio/ssb_taps +%%USRP%%%%DATADIR%%/examples/hf_radio/ssbagc.py +%%USRP%%%%DATADIR%%/examples/hf_radio/ssbdemod.py +%%USRP%%%%DATADIR%%/examples/hf_radio/startup.py +%%USRP%%%%DATADIR%%/examples/hf_radio/ui.py %%DATADIR%%/examples/metadata/file_metadata_sink.grc %%DATADIR%%/examples/metadata/file_metadata_source.grc %%DATADIR%%/examples/metadata/file_metadata_vector_sink.grc @@ -2281,27 +2317,27 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_4.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_4rsc.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_8.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_%%MAJOR_VERSION%%2ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_%%MAJOR_VERSION%%2ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4_msb.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4_msbG.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_64ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_64ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_32ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_32ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4_msb.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4_msbG.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_64ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_64ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8ungerboecka.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn2o4_4.fsm %%DATADIR%%/examples/trellis/fsm_files/disconnected.fsm %%DATADIR%%/examples/trellis/fsm_files/irregular.fsm %%DATADIR%%/examples/trellis/fsm_files/joint_16_16.fsm %%DATADIR%%/examples/trellis/fsm_files/joint_4_16.fsm -%%DATADIR%%/examples/trellis/fsm_files/rep%%MAJOR_VERSION%%.fsm +%%DATADIR%%/examples/trellis/fsm_files/rep3.fsm %%DATADIR%%/examples/trellis/fsm_files/rep5.fsm %%DATADIR%%/examples/trellis/fsm_files/simple.fsm %%DATADIR%%/examples/trellis/fsm_files/uncoded4.fsm @@ -2314,36 +2350,36 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/trellis/test_tcm.py %%DATADIR%%/examples/trellis/turbo_equalization.grc %%DATADIR%%/examples/trellis/viterbi_equalization.grc -%%DATADIR%%/examples/uhd/fm_tx4.py -%%DATADIR%%/examples/uhd/fm_tx_2_daughterboards.py -%%DATADIR%%/examples/uhd/max_power.py -%%DATADIR%%/examples/uhd/tags_demo -%%DATADIR%%/examples/uhd/uhd_const_wave.grc -%%DATADIR%%/examples/uhd/uhd_dpsk_mod.grc -%%DATADIR%%/examples/uhd/uhd_fft.grc -%%DATADIR%%/examples/uhd/uhd_rx_dpsk.grc -%%DATADIR%%/examples/uhd/uhd_two_tone_loopback.grc -%%DATADIR%%/examples/uhd/uhd_tx_dpsk.grc -%%DATADIR%%/examples/uhd/uhd_wbfm_receive.grc -%%DATADIR%%/examples/uhd/usrp_am_mw_rcv.py -%%DATADIR%%/examples/uhd/usrp_nbfm_ptt.py -%%DATADIR%%/examples/uhd/usrp_nbfm_rcv.py -%%DATADIR%%/examples/uhd/usrp_spectrum_sense.py -%%DATADIR%%/examples/uhd/usrp_tv_rcv.py -%%DATADIR%%/examples/uhd/usrp_tv_rcv_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv2_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_fmdet.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_pll.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_sca.py -%%DATADIR%%/examples/uhd/usrp_wxapt_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/fm_tx4.py +%%USRP%%%%DATADIR%%/examples/uhd/fm_tx_2_daughterboards.py +%%USRP%%%%DATADIR%%/examples/uhd/max_power.py +%%USRP%%%%DATADIR%%/examples/uhd/tags_demo +%%USRP%%%%DATADIR%%/examples/uhd/uhd_const_wave.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_dpsk_mod.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_fft.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_rx_dpsk.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_two_tone_loopback.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_tx_dpsk.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_wbfm_receive.grc +%%USRP%%%%DATADIR%%/examples/uhd/usrp_am_mw_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_nbfm_ptt.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_nbfm_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_spectrum_sense.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_tv_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_tv_rcv_nogui.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv2_nogui.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv_fmdet.py *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sun Oct 4 02:48:32 2015 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 BCFA3A0E6C7; Sun, 4 Oct 2015 02:48:32 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x234.google.com (mail-pa0-x234.google.com [IPv6:2607:f8b0:400e:c03::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9595913A9; Sun, 4 Oct 2015 02:48:32 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pacex6 with SMTP id ex6so142214652pac.0; Sat, 03 Oct 2015 19:48:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=AVhxi1O7lH/PU0CBMluV2JVcM7KHzbM3qGCkEJSrjHA=; b=JBoic+RlvHUqB/Y0MTCE4592SiEt4ITKH6Qt/+qp1ADh+ZM6ZI5NflJvA5dQtjtu2S OPCDM+QKs4zTOympYpuH0nXc/YsO1EvddzUk7BuOaSFgX1rhkrOJtArI2e8SpViCCyKU aPZB6rcQ4Bih8hOAsvy/yUqu26IpglGaG/IFOyLKKIk8Ank/2U/b+ViocuhNyW+Erdy/ TuS6c0fMJG0cPeXKPV8i4VRMncMmpjZ5NTER8HRplbhXfBDVztL3lWcRHEQ2lWUJ4ctx pGtGY70Bq/DEOybwJZz+x1ihE8Ib76EE0M0c6cpOMKQca+GRs8Ijcxm+bnmRGfsJl7eA C55g== X-Received: by 10.68.219.133 with SMTP id po5mr30305663pbc.135.1443926911895; Sat, 03 Oct 2015 19:48:31 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01::8? (2001-44b8-31ae-7b01-0000-0000-0000-0008.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::8]) by smtp.gmail.com with ESMTPSA id ip1sm19820199pbc.30.2015.10.03.19.48.29 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 03 Oct 2015 19:48:31 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r398482 - head/devel/py-greenlet References: <201510031707.t93H7UBs008407@repo.freebsd.org> To: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Dmitry Marakasov From: Kubilay Kocak X-Enigmail-Draft-Status: N1110 Message-ID: <5610937B.1000708@FreeBSD.org> Date: Sun, 4 Oct 2015 13:48:27 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Thunderbird/41.0 MIME-Version: 1.0 In-Reply-To: <201510031707.t93H7UBs008407@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit 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: Sun, 04 Oct 2015 02:48:32 -0000 On 4/10/2015 4:07 AM, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Sat Oct 3 17:07:29 2015 > New Revision: 398482 > URL: https://svnweb.freebsd.org/changeset/ports/398482 > > Log: > - Convert to new test framework > > Modified: > head/devel/py-greenlet/Makefile > > Modified: head/devel/py-greenlet/Makefile > ============================================================================== > --- head/devel/py-greenlet/Makefile Sat Oct 3 17:07:24 2015 (r398481) > +++ head/devel/py-greenlet/Makefile Sat Oct 3 17:07:29 2015 (r398482) > @@ -12,14 +12,13 @@ COMMENT= Light-weight microthreads for P > > LICENSE= MIT > > +DO_MAKE_TEST= ${PYTHON_CMD} This is horrible & super ugly. Why can't we have / isn't there a TEST_CMD variable to complement TEST_{ARGS,DEPENDS,*} variables? The new test framework is VERY VERY welcome, but I'm worried it needs polishing/refinement for extensibility across the broader ports framework *before* a large number of ports have been 'converted', thereby cementing in an under-baked implementation and making it much harder to change for the better. Another worry is that there isn't an *explicit* opt-in or toggle to enable tests. It is imperative to have a way to enable/disable test mechanisms independently to whether TEST_DEPENDS and other variables are defined or not. CC'ing Dmitry for more feedback. > ONLY_FOR_ARCHS= amd64 i386 > +TEST_TARGET= run-tests.py > USE_PYTHON= autoplist concurrent distutils > USES= python > > post-install: > ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet.so > > -regression-test test: build > - cd ${WRKSRC}/ && ${PYTHON_CMD} run-tests.py > - > .include > From owner-svn-ports-head@freebsd.org Sun Oct 4 02:50:18 2015 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 D8B11A0E809; Sun, 4 Oct 2015 02:50:18 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A8A74154E; Sun, 4 Oct 2015 02:50:18 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pacex6 with SMTP id ex6so142236958pac.0; Sat, 03 Oct 2015 19:50:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=FIzp2E3/UUVhve0z/86MkivmMFa1mnBTdJnkzsqWqtI=; b=UXZnC3853Grl5uM5qfvHgwSy3x0dcRtbSk6VEefgMgRbmpqMJInu12Wb0yOcBj4sE3 K3ZV//XSX3w7iSyAHXmcup4KMPkiGbEX+g30UVEL5S3ew2pojgk8TlnaBEcojSmGSbLl wTw0dWj0p4q3qtp9+YIu8z1nkYZptt5sEzB6TBjjGr1t2ezi7qBJMAw68IgIg1nytQE6 7FBaQfSdlY0be2w4vRb66A+kIlIyrMG/zfS11tqnKohzF7TW4h1aFxkDRYYshKDAzHtc HBqEtQJ0RMccRtLDH63vQEy2AVPIxPN2Mkjv6BYOLgGRqr5ffr6CBCrm+wKy1/Z2wLBW Kf+A== X-Received: by 10.66.216.39 with SMTP id on7mr30137657pac.73.1443927017429; Sat, 03 Oct 2015 19:50:17 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01::8? (2001-44b8-31ae-7b01-0000-0000-0000-0008.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::8]) by smtp.gmail.com with ESMTPSA id fa14sm19956366pac.8.2015.10.03.19.50.14 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 03 Oct 2015 19:50:16 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r398483 - head/devel/py-protobuf References: <201510031707.t93H7ZXA008510@repo.freebsd.org> To: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Jan Beich From: Kubilay Kocak Message-ID: <561093E3.50701@FreeBSD.org> Date: Sun, 4 Oct 2015 13:50:11 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Thunderbird/41.0 MIME-Version: 1.0 In-Reply-To: <201510031707.t93H7ZXA008510@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit 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: Sun, 04 Oct 2015 02:50:18 -0000 On 4/10/2015 4:07 AM, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Sat Oct 3 17:07:34 2015 > New Revision: 398483 > URL: https://svnweb.freebsd.org/changeset/ports/398483 > > Log: > - Convert to new test framework > - Add NO_ARCH > > Modified: > head/devel/py-protobuf/Makefile > > Modified: head/devel/py-protobuf/Makefile > ============================================================================== > --- head/devel/py-protobuf/Makefile Sat Oct 3 17:07:29 2015 (r398482) > +++ head/devel/py-protobuf/Makefile Sat Oct 3 17:07:34 2015 (r398483) > @@ -16,6 +16,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}go > protoc:${PORTSDIR}/devel/protobuf > RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-apputils>=0:${PORTSDIR}/devel/py-google-apputils > > +DO_MAKE_TEST= ${PYTHON_CMD} ${PYDISTUTILS_SETUP} > +NO_ARCH= yes > +TEST_TARGET= test These bits *SHOULD* be set by python.mk, at least for the 'canonical' setuptools test targetcase, and only *if* tests are explicitly enabled in the port. See https://reviews.freebsd.org/D3791 CC'ing Jan > USE_PYTHON= autoplist distutils > USES= python tar:bzip2 > WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/python > @@ -26,7 +29,4 @@ USE_GITHUB= yes > post-patch: > @${MKDIR} ${WRKSRC}/google/protobuf/compiler/ > > -regression-test test: build > - cd ${WRKSRC}/ && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test > - > .include > From owner-svn-ports-head@freebsd.org Sun Oct 4 03:17:47 2015 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 9899EA103A7; Sun, 4 Oct 2015 03:17:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8933217CF; Sun, 4 Oct 2015 03:17:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t943Hlm1066802; Sun, 4 Oct 2015 03:17:47 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t943Hl9P066800; Sun, 4 Oct 2015 03:17:47 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201510040317.t943Hl9P066800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 4 Oct 2015 03:17:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398563 - head/multimedia/plexmediaserver-plexpass 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: Sun, 04 Oct 2015 03:17:47 -0000 Author: feld Date: Sun Oct 4 03:17:46 2015 New Revision: 398563 URL: https://svnweb.freebsd.org/changeset/ports/398563 Log: multimedia/plexmediaserver-plexpass: update to 0.9.12.13.1464 Changelog: https://forums.plex.tv/discussion/comment/1026614/#Comment_1026614 Modified: head/multimedia/plexmediaserver-plexpass/Makefile head/multimedia/plexmediaserver-plexpass/distinfo Modified: head/multimedia/plexmediaserver-plexpass/Makefile ============================================================================== --- head/multimedia/plexmediaserver-plexpass/Makefile Sun Oct 4 02:26:08 2015 (r398562) +++ head/multimedia/plexmediaserver-plexpass/Makefile Sun Oct 4 03:17:46 2015 (r398563) @@ -1,13 +1,13 @@ # Created by: KalleDK # $FreeBSD$ -PORTVERSION= 0.9.12.12.1459 +PORTVERSION= 0.9.12.13.1464 PORTREVISION= 0 PKGNAMESUFFIX= -plexpass MAINTAINER= feld@FreeBSD.org -PLEX_BUILD= 49fe448 +PLEX_BUILD= 4ccd2ca USE_RC_SUBR= ${PORTNAME}_plexpass Modified: head/multimedia/plexmediaserver-plexpass/distinfo ============================================================================== --- head/multimedia/plexmediaserver-plexpass/distinfo Sun Oct 4 02:26:08 2015 (r398562) +++ head/multimedia/plexmediaserver-plexpass/distinfo Sun Oct 4 03:17:46 2015 (r398563) @@ -1,2 +1,2 @@ -SHA256 (PlexMediaServer-0.9.12.12.1459-49fe448-freebsd-amd64.tar.bz2) = ad64e1480afcfc4370e3984ff704015368eebe48a58a51b7106fff3a5968dbc8 -SIZE (PlexMediaServer-0.9.12.12.1459-49fe448-freebsd-amd64.tar.bz2) = 96454594 +SHA256 (PlexMediaServer-0.9.12.13.1464-4ccd2ca-freebsd-amd64.tar.bz2) = c784e4e277e124175d94ba6481670eb8de618aa5c0e17b36c07f135696d518c5 +SIZE (PlexMediaServer-0.9.12.13.1464-4ccd2ca-freebsd-amd64.tar.bz2) = 96473575 From owner-svn-ports-head@freebsd.org Sun Oct 4 08:28:45 2015 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 9A940A0D85D; Sun, 4 Oct 2015 08:28:45 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 7BF8B1F92; Sun, 4 Oct 2015 08:28:45 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t948SjD7001161; Sun, 4 Oct 2015 08:28:45 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t948SiZO001158; Sun, 4 Oct 2015 08:28:44 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201510040828.t948SiZO001158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Sun, 4 Oct 2015 08:28:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398564 - in head/net-im/jabberd: . 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: Sun, 04 Oct 2015 08:28:45 -0000 Author: mm Date: Sun Oct 4 08:28:44 2015 New Revision: 398564 URL: https://svnweb.freebsd.org/changeset/ports/398564 Log: Update jabberd2 to 2.3.3 Cyrus SASL support has been dropped upstream. Modified: head/net-im/jabberd/Makefile head/net-im/jabberd/distinfo head/net-im/jabberd/files/patch-etc__Makefile.in Modified: head/net-im/jabberd/Makefile ============================================================================== --- head/net-im/jabberd/Makefile Sun Oct 4 03:17:46 2015 (r398563) +++ head/net-im/jabberd/Makefile Sun Oct 4 08:28:44 2015 (r398564) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= jabberd -PORTVERSION= 2.3.1 -PORTREVISION= 8 +PORTVERSION= 2.3.3 CATEGORIES= net-im MASTER_SITES= https://github.com/jabberd2/jabberd2/releases/download/${PORTNAME}-${DISTVERSION}/ \ LOCAL/matthew/${PORTNAME} @@ -18,9 +17,7 @@ LIB_DEPENDS= libexpat.so:${PORTSDIR}/tex libudns.so:${PORTSDIR}/dns/udns OPTIONS_DEFINE= MYSQL PGSQL LDAP BDB SQLITE PAM PIPE ANON FS DEBUG REQUIRES \ - DOCS SUPERSEDED EXPERIMENTAL -OPTIONS_SINGLE= SASL -OPTIONS_SINGLE_SASL= CYRUS GSASL + DOCS SUPERSEDED EXPERIMENTAL GSASL OPTIONS_DEFAULT=MYSQL DEBUG GSASL OPTIONS_SUB= yes @@ -95,9 +92,9 @@ PIPE_DESC= Enable pipe (auth/reg) ANON_CONFIGURE_ENABLE= anon ANON_DESC= Enable anonymous (auth/reg) -CYRUS_CONFIGURE_ON= --with-sasl=cyrus -CYRUS_DESC= Use Cyrus SASL backend (not supported) -CYRUS_LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 +#CYRUS_CONFIGURE_ON= --with-sasl=cyrus +#CYRUS_DESC= Use Cyrus SASL backend (not supported) +#CYRUS_LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 GSASL_CONFIGURE_ON= --with-sasl=gsasl GSASL_DESC= Use GSASL backend @@ -148,10 +145,10 @@ post-patch: .endfor @${REINPLACE_CMD} -e 's|%%PERL%%|${PERL}|g' \ ${WRKSRC}/tools/jabberd.in -.if ${PORT_OPTIONS:MCYRUS} - @${REINPLACE_CMD} -e '/^#error /d' \ - ${WRKSRC}/sx/sasl_cyrus.c -.endif +#.if ${PORT_OPTIONS:MCYRUS} +# @${REINPLACE_CMD} -e '/^#error /d' \ +# ${WRKSRC}/sx/sasl_cyrus.c +#.endif post-install: .for DIR in db logs pid Modified: head/net-im/jabberd/distinfo ============================================================================== --- head/net-im/jabberd/distinfo Sun Oct 4 03:17:46 2015 (r398563) +++ head/net-im/jabberd/distinfo Sun Oct 4 08:28:44 2015 (r398564) @@ -1,2 +1,2 @@ -SHA256 (jabberd-2.3.1.tar.xz) = feba2eea2c6f003a3e35e49ff301b7346d88660039ba08521dcb1351431afdb0 -SIZE (jabberd-2.3.1.tar.xz) = 1460088 +SHA256 (jabberd-2.3.3.tar.xz) = c6c2f34d0811e90c5c791143018bb5b07ecbe2ea5d8cc10140235d25815cb030 +SIZE (jabberd-2.3.3.tar.xz) = 1457340 Modified: head/net-im/jabberd/files/patch-etc__Makefile.in ============================================================================== --- head/net-im/jabberd/files/patch-etc__Makefile.in Sun Oct 4 03:17:46 2015 (r398563) +++ head/net-im/jabberd/files/patch-etc__Makefile.in Sun Oct 4 08:28:44 2015 (r398564) @@ -1,6 +1,6 @@ ---- etc/Makefile.in.orig 2013-11-28 12:16:25.000000000 +0100 -+++ etc/Makefile.in 2014-11-22 12:36:09.272204737 +0100 -@@ -334,11 +334,11 @@ +--- etc/Makefile.in.orig 2015-04-13 09:58:51.000000000 +0200 ++++ etc/Makefile.in 2015-10-04 10:13:29.313945122 +0200 +@@ -335,13 +335,13 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @@ -8,13 +8,15 @@ +sysconf_DATA = c2s.xml.sample router.xml.sample s2s.xml.sample sm.xml.sample jabberd.cfg.sample router-users.xml.sample router-filter.xml.sample initdir = $(prefix)/etc/init init_DATA = jabberd-c2s.conf jabberd-router.conf jabberd-s2s.conf jabberd-sm.conf - configs = $(sysconf_DATA) $(init_DATA) --EXTRA_DIST = $(sysconf_DATA:%.dist=%.dist.in) $(init_DATA:%.conf=%.conf.in) -+EXTRA_DIST = $(sysconf_DATA:%.sample=%.sample.in) $(init_DATA:%.conf=%.conf.in) + systemddir = $(prefix)/lib/systemd/system + systemd_DATA = jabberd-sm.service jabberd.service jabberd-s2s.service jabberd-router.service jabberd-c2s.service + configs = $(sysconf_DATA) $(init_DATA) $(systemd_DATA) +-EXTRA_DIST = $(sysconf_DATA:%.dist=%.dist.in) $(init_DATA:%.conf=%.conf.in) $(systemd_DATA:%.service=%.service.in) ++EXTRA_DIST = $(sysconf_DATA:%.sample=%.sample.in) $(init_DATA:%.conf=%.conf.in) $(systemd_DATA:%.service=%.service.in) SUBDIRS = templates jabberd_bin = router sm s2s c2s edit = sed \ -@@ -599,7 +599,7 @@ +@@ -623,7 +623,7 @@ uninstall: uninstall-recursive install-am: all-am @@ -23,12 +25,21 @@ installcheck: installcheck-recursive install-strip: -@@ -709,7 +709,7 @@ - uninstall-am uninstall-initDATA uninstall-sysconfDATA +@@ -735,7 +735,7 @@ + uninstall-sysconfDATA uninstall-systemdDATA --$(configs): $(sysconf_DATA:%.dist=@srcdir@/%.dist.in) $(init_DATA:%.conf=@srcdir@/%.conf.in) -+$(configs): $(sysconf_DATA:%.sample=@srcdir@/%.sample.in) $(init_DATA:%.conf=@srcdir@/%.conf.in) +-$(configs): $(sysconf_DATA:%.dist=@srcdir@/%.dist.in) $(init_DATA:%.conf=@srcdir@/%.conf.in) $(systemd_DATA:%.service=%.service.in) ++$(configs): $(sysconf_DATA:%.sample=@srcdir@/%.sample.in) $(init_DATA:%.conf=@srcdir@/%.conf.in) $(systemd_DATA:%.service=%.service.in) @echo "generating $@ from $@.in"; \ edit='$(edit)'; \ list='$(jabberd_bin)'; for p in $$list; do \ +@@ -748,7 +748,7 @@ + + install-data-hook: + @list='$(sysconf_DATA)'; for p in $$list; do \ +- dest=`echo $$p | sed -e s/.dist//`; \ ++ dest=`echo $$p | sed -e s/.sample//`; \ + if test -f $(DESTDIR)$(sysconfdir)/$$dest; then \ + echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/$$dest"; \ + else \ From owner-svn-ports-head@freebsd.org Sun Oct 4 08:41:20 2015 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 9F9ADA0E294; Sun, 4 Oct 2015 08:41:20 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8F7881928; Sun, 4 Oct 2015 08:41:20 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t948fKY5009201; Sun, 4 Oct 2015 08:41:20 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t948fJ7p009197; Sun, 4 Oct 2015 08:41:19 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201510040841.t948fJ7p009197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 4 Oct 2015 08:41:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398565 - 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-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: Sun, 04 Oct 2015 08:41:20 -0000 Author: riggs Date: Sun Oct 4 08:41:18 2015 New Revision: 398565 URL: https://svnweb.freebsd.org/changeset/ports/398565 Log: Update to upstream version 0.4.2, port cleanup - Simplify fft handling: Only allow single precision fftw3 (recommended by upstream) or built-in ooula (fallback) - Use OPTION helpers - Add LICENSE_FILE - Pet portlint PR: 203239 Submitted by: tkato432@yahoo.com Reviewed by: riggs 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 Sun Oct 4 08:28:44 2015 (r398564) +++ head/audio/aubio/Makefile Sun Oct 4 08:41:18 2015 (r398565) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= aubio -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= audio MASTER_SITES= http://aubio.org/pub/ @@ -10,74 +10,43 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Library for audio labelling LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= txt2man:${PORTSDIR}/textproc/txt2man USES= pkgconfig tar:bzip2 waf -USE_LDCONFIG= yes - CONFIGURE_ARGS= --mandir=${MANPREFIX}/man +USE_LDCONFIG= yes -OPTIONS_DEFINE= COMPLEX DOXYGEN FFMPEG JACK SAMPLERATE SNDFILE -OPTIONS_DEFAULT= FFTW JACK SAMPLERATE SNDFILE SINGLE +OPTIONS_DEFINE= COMPLEX DOXYGEN FFMPEG FFTW JACK SAMPLERATE SNDFILE +OPTIONS_DEFAULT= JACK SAMPLERATE SNDFILE FFTW +OPTIONS_SUB= yes -COMPLEX_DESC= Compile with C99 complex.h +COMPLEX_DESC= Compile with C99 complex.h COMPLEX_CONFIGURE_ENABLE= complex - -DOXYGEN_CONFIGURE_OFF= --disable-doxygen DOXYGEN_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen - -FFMPEG_CONFIGURE_ENABLE= avcodec +DOXYGEN_CONFIGURE_OFF= --disable-doxygen FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg - -JACK_CONFIGURE_ENABLE= jack +FFMPEG_CONFIGURE_ENABLE= avcodec JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack - -SAMPLERATE_CONFIGURE_ENABLE= samplerate +JACK_CONFIGURE_ENABLE= jack SAMPLERATE_LIB_DEPENDS= libsamplerate.so:${PORTSDIR}/audio/libsamplerate - -SNDFILE_CONFIGURE_ENABLE= sndfile +SAMPLERATE_CONFIGURE_ENABLE= samplerate +FFTW_DESC= Use single precision FFTW3 instead of built-in OOURA +FFTW_CONFIGURE_ENABLE= fftw3f +FFTW_BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:${PORTSDIR}/math/fftw3 +FFTW_LIB_DEPENDS= libfftw3f.so:${PORTSDIR}/math/fftw3-float SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile - -OPTIONS_SINGLE= FFT PRECISION -OPTIONS_SINGLE_FFT= FFTW OOURA -OPTIONS_SINGLE_PRECISION= DOUBLE SINGLE - -FFT_DESC= FFT implementation -FFTW_DESC= FFTW3/FFTW3F (depending on precision) -OOURA_DESC= Ooura (last resort) - -PRECISION_DESC= Precision -DOUBLE_DESC= Double precision mode -SINGLE_DESC= Single precision mode -DOUBLE_CONFIGURE_ENABLE= double - -.include - -.if ${PORT_OPTIONS:MDOXYGEN} -PLIST_SUB+= DOXYGEN="" -.else -PLIST_SUB+= DOXYGEN="@comment " -.endif - -.if ${PORT_OPTIONS:MFFTW} -. if ${PORT_OPTIONS:MDOUBLE} -LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3 -. else -LIB_DEPENDS+= libfftw3f.so:${PORTSDIR}/math/fftw3-float -. endif -.endif +SNDFILE_CONFIGURE_ENABLE= sndfile post-patch: - @${REINPLACE_CMD} -e '/pkgconfig/s,$${LIBDIR},&data,' \ - ${WRKSRC}/waflib/TaskGen.py + @${REINPLACE_CMD} -e \ + '/pkgconfig/s|$${LIBDIR}|&data|' ${WRKSRC}/waflib/TaskGen.py -.if !defined(WITH_DEBUG) || defined(WITHOUT_DEBUG) || defined(INSTALL_STRIPPED) post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so -. for b in mfcc notes onset pitch quiet track - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${b} -. endfor -.endif +.for b in mfcc notes onset pitch quiet track + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/aubio${b} +.endfor + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaubio.so .include Modified: head/audio/aubio/distinfo ============================================================================== --- head/audio/aubio/distinfo Sun Oct 4 08:28:44 2015 (r398564) +++ head/audio/aubio/distinfo Sun Oct 4 08:41:18 2015 (r398565) @@ -1,2 +1,2 @@ -SHA256 (aubio-0.4.1.tar.bz2) = 25d7df0a9cd6366fda764a803424caddf5fb819fc75b42a7a03e1e6f8eb3c695 -SIZE (aubio-0.4.1.tar.bz2) = 288136 +SHA256 (aubio-0.4.2.tar.bz2) = 1cc58e0fed2b9468305b198ad06b889f228b797a082c2ede716dc30fcb4f8f1f +SIZE (aubio-0.4.2.tar.bz2) = 304216 Modified: head/audio/aubio/files/patch-wscript ============================================================================== --- head/audio/aubio/files/patch-wscript Sun Oct 4 08:28:44 2015 (r398564) +++ head/audio/aubio/files/patch-wscript Sun Oct 4 08:41:18 2015 (r398565) @@ -1,16 +1,16 @@ ---- wscript.orig 2014-03-12 15:19:28 UTC +--- wscript.orig 2015-08-01 10:24:35 UTC +++ wscript -@@ -72,6 +72,9 @@ def options(ctx): - add_option_enable_disable(ctx, 'double', default = False, - help_str = 'compile in double precision mode', - help_disable_str = 'compile in single precision mode (default)') +@@ -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)') + 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') -@@ -254,6 +257,9 @@ def configure(ctx): +@@ -258,6 +261,9 @@ def configure(ctx): # check if doxygen is installed, optional try: ctx.find_program('doxygen', var='DOXYGEN') @@ -20,7 +20,7 @@ except ctx.errors.ConfigurationError: ctx.to_log('doxygen was not found (ignoring)') -@@ -291,11 +297,11 @@ def build(bld): +@@ -295,11 +301,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 Sun Oct 4 08:28:44 2015 (r398564) +++ head/audio/aubio/pkg-plist Sun Oct 4 08:41:18 2015 (r398565) @@ -51,10 +51,9 @@ include/aubio/utils/hist.h include/aubio/utils/parameter.h include/aubio/utils/scale.h include/aubio/vecutils.h -lib/libaubio.a lib/libaubio.so lib/libaubio.so.4 -lib/libaubio.so.4.1.1 +lib/libaubio.so.4.2.2 libdata/pkgconfig/aubio.pc man/man1/aubiocut.1.gz man/man1/aubiomfcc.1.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 09:45:09 2015 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 44799A0FD56; Sun, 4 Oct 2015 09:45:09 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 34DBC1997; Sun, 4 Oct 2015 09:45:09 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t949j9OB035996; Sun, 4 Oct 2015 09:45:09 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t949j8TY035994; Sun, 4 Oct 2015 09:45:08 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201510040945.t949j8TY035994@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Sun, 4 Oct 2015 09:45:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398566 - head/devel/catch 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: Sun, 04 Oct 2015 09:45:09 -0000 Author: gahr Date: Sun Oct 4 09:45:07 2015 New Revision: 398566 URL: https://svnweb.freebsd.org/changeset/ports/398566 Log: devel/catch - update to v1.2.1-develop.14 Modified: head/devel/catch/Makefile head/devel/catch/distinfo Modified: head/devel/catch/Makefile ============================================================================== --- head/devel/catch/Makefile Sun Oct 4 08:41:18 2015 (r398565) +++ head/devel/catch/Makefile Sun Oct 4 09:45:07 2015 (r398566) @@ -2,19 +2,20 @@ # $FreeBSD$ PORTNAME= catch -PORTVERSION= 1.0.53 +DISTVERSION= 1.2.1-develop.14 CATEGORIES= devel -MAINTAINER= ports@FreeBSD.org +MAINTAINER= gahr@FreeBSD.org COMMENT= Header-only test framework for C++ LICENSE= BSL USE_GITHUB= yes -GH_ACCOUNT= gahr +GH_ACCOUNT= philsquared GH_PROJECT= Catch NO_BUILD= yes +TEST_DEPENDS= cmake:${PORTSDIR}/devel/cmake PLIST_FILES= include/catch.hpp @@ -22,7 +23,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/single_include/catch.hpp \ ${STAGEDIR}${PREFIX}/include -regression-test: - cd ${WRKSRC}/projects/CMake && cmake . && make && ./SelfTest +do-test: + cd ${WRKSRC}/projects/CMake && \ + ${LOCALBASE}/bin/cmake . && ${MAKE_CMD} && ./SelfTest .include Modified: head/devel/catch/distinfo ============================================================================== --- head/devel/catch/distinfo Sun Oct 4 08:41:18 2015 (r398565) +++ head/devel/catch/distinfo Sun Oct 4 09:45:07 2015 (r398566) @@ -1,2 +1,2 @@ -SHA256 (gahr-Catch-1.0.53_GH0.tar.gz) = 95f0171e43424fc4f03697265c8bc7a143a4f59e7ecd2f36250285b0875e3802 -SIZE (gahr-Catch-1.0.53_GH0.tar.gz) = 270538 +SHA256 (philsquared-Catch-v1.2.1-develop.14_GH0.tar.gz) = d7739ac1e284a44599db9df8fb03650f69f42168a7503b49d9ed6bd1f26e86dc +SIZE (philsquared-Catch-v1.2.1-develop.14_GH0.tar.gz) = 300763 From owner-svn-ports-head@freebsd.org Sun Oct 4 10:08:44 2015 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 39E2FA10D38; Sun, 4 Oct 2015 10:08:44 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 2B0BF12E5; Sun, 4 Oct 2015 10:08:44 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94A8iiM044339; Sun, 4 Oct 2015 10:08:44 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94A8itd044338; Sun, 4 Oct 2015 10:08:44 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510041008.t94A8itd044338@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 4 Oct 2015 10:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398567 - head/net-im/telepathy-gabble 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: Sun, 04 Oct 2015 10:08:44 -0000 Author: kwm Date: Sun Oct 4 10:08:43 2015 New Revision: 398567 URL: https://svnweb.freebsd.org/changeset/ports/398567 Log: The telepathy-gabble-xmpp-console tool needs gtksourceview3 introspection support to work. Submitted by: Tobias Berner Modified: head/net-im/telepathy-gabble/Makefile Modified: head/net-im/telepathy-gabble/Makefile ============================================================================== --- head/net-im/telepathy-gabble/Makefile Sun Oct 4 09:45:07 2015 (r398566) +++ head/net-im/telepathy-gabble/Makefile Sun Oct 4 10:08:43 2015 (r398567) @@ -1,10 +1,9 @@ # Created by: Florent Thoumie # $FreeBSD$ -# $MCom: ports/trunk/net-im/telepathy-gabble/Makefile 19804 2014-08-13 14:55:11Z kwm $ PORTNAME= telepathy-gabble PORTVERSION= 0.18.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= http://telepathy.freedesktop.org/releases/${PORTNAME}/ @@ -25,7 +24,7 @@ RUN_DEPENDS= ca_root_nss>=0:${PORTSDIR}/ PORTSCOUT= limitw:1,even USES= alias gmake libtool pathfix pkgconfig python:build -USE_GNOME= glib20 libxslt:build +USE_GNOME= glib20 gtksourceview3 libxslt:build USE_SQLITE= 3 USE_OPENSSL= yes GNU_CONFIGURE= yes From owner-svn-ports-head@freebsd.org Sun Oct 4 10:24:33 2015 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 1C85BA0EA86; Sun, 4 Oct 2015 10:24:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 00EBB1CF6; Sun, 4 Oct 2015 10:24:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94AOWvY052473; Sun, 4 Oct 2015 10:24:32 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94AOVhH052466; Sun, 4 Oct 2015 10:24:31 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510041024.t94AOVhH052466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 4 Oct 2015 10:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398568 - in head/net: . zerotier zerotier/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: Sun, 04 Oct 2015 10:24:33 -0000 Author: pi Date: Sun Oct 4 10:24:30 2015 New Revision: 398568 URL: https://svnweb.freebsd.org/changeset/ports/398568 Log: New port: net/zerotier ZeroTier can be used for on-premise network virtualization, as a peer to peer VPN for mobile teams, for hybrid or multi-data-center cloud deployments, or just about anywhere else secure software defined virtual networking is useful. WWW: https://www.zerotier.com/ PR: 203161 Submitted by: corsmith@gmail.com Added: head/net/zerotier/ head/net/zerotier/Makefile (contents, props changed) head/net/zerotier/distinfo (contents, props changed) head/net/zerotier/files/ head/net/zerotier/files/patch-node_Utils.hpp (contents, props changed) head/net/zerotier/files/zerotier.in (contents, props changed) head/net/zerotier/pkg-descr (contents, props changed) head/net/zerotier/pkg-message (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Oct 4 10:08:43 2015 (r398567) +++ head/net/Makefile Sun Oct 4 10:24:30 2015 (r398568) @@ -1350,6 +1350,7 @@ SUBDIR += zebra SUBDIR += zebra-server SUBDIR += zeroconf-ioslave + SUBDIR += zerotier SUBDIR += zillion SUBDIR += zsync Added: head/net/zerotier/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/Makefile Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,32 @@ +# Created by: Corey Smith +# $FreeBSD$ + +PORTNAME= zerotier +DISTVERSION= 1.0.5 +CATEGORIES= net +MASTER_SITES= GH +DISTNAME= ZeroTierOne + +MAINTAINER= corsmith@gmail.com +COMMENT= Network virtualization everywhere + +LICENSE= GPLv3 + +USES= gmake +USE_RC_SUBR= zerotier + +USE_GITHUB= yes +GH_ACCOUNT= zerotier +GH_PROJECT= ZeroTierOne +GH_TAGNAME= 5db538d +CFLAGS+= -flax-vector-conversions + +PLIST_FILES= bin/zerotier-cli bin/zerotier-idtool sbin/zerotier-one + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/zerotier-one ${STAGEDIR}${PREFIX}/sbin/ +.for l in zerotier-cli zerotier-idtool + ${LN} -sf ../sbin/zerotier-one ${STAGEDIR}${PREFIX}/bin/${l} +.endfor + +.include Added: head/net/zerotier/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/distinfo Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,2 @@ +SHA256 (ZeroTierOne_GH0.tar.gz) = 89976f251ed7d8cc3c0dba1ac5a031f2645cb29abc84d5cc2fda48a58c7f5ace +SIZE (ZeroTierOne_GH0.tar.gz) = 5985459 Added: head/net/zerotier/files/patch-node_Utils.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/files/patch-node_Utils.hpp Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,41 @@ +--- node/Utils.hpp.orig 2015-08-25 16:55:14 UTC ++++ node/Utils.hpp +@@ -39,6 +39,10 @@ + #include + #include + ++#if defined(__FreeBSD__) ++#include ++#endif ++ + #include "Constants.hpp" + + namespace ZeroTier { +@@ -321,8 +325,12 @@ public: + throw() + { + #if __BYTE_ORDER == __LITTLE_ENDIAN +-#if defined(__GNUC__) && (!defined(__OpenBSD__)) ++#if defined(__GNUC__) ++#if defined(__FreeBSD__) ++ return bswap64(n); ++#elif (!defined(__OpenBSD__)) + return __builtin_bswap64(n); ++#endif + #else + return ( + ((n & 0x00000000000000FFULL) << 56) | +@@ -351,8 +359,12 @@ public: + throw() + { + #if __BYTE_ORDER == __LITTLE_ENDIAN +-#if defined(__GNUC__) && !defined(__OpenBSD__) ++#if defined(__GNUC__) ++#if defined(__FreeBSD__) ++ return bswap64(n); ++#elif (!defined(__OpenBSD__)) + return __builtin_bswap64(n); ++#endif + #else + return ( + ((n & 0x00000000000000FFULL) << 56) | Added: head/net/zerotier/files/zerotier.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/files/zerotier.in Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,28 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: zerotier +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Add these lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# zerotier_enable (bool): Set to NO by default. +# Set it to YES to enable zerotier. + +. /etc/rc.subr + +name=zerotier +rcvar=zerotier_enable + +load_rc_config $name + +: ${zerotier_enable:="NO"} + +command=%%PREFIX%%/sbin/${name}-one + +command_args="-d" + +run_rc_command "$1" Added: head/net/zerotier/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/pkg-descr Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,6 @@ +ZeroTier can be used for on-premise network virtualization, as a +peer to peer VPN for mobile teams, for hybrid or multi-data-center +cloud deployments, or just about anywhere else secure software +defined virtual networking is useful. + +WWW: https://www.zerotier.com/ Added: head/net/zerotier/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zerotier/pkg-message Sun Oct 4 10:24:30 2015 (r398568) @@ -0,0 +1,11 @@ +################################# + +First start the zerotier service: + +service zerotier start + +To connect to a zerotier network: + +zerotier-cli join + +################################# From owner-svn-ports-head@freebsd.org Sun Oct 4 10:43:33 2015 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 7DA96A0FABC; Sun, 4 Oct 2015 10:43:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 6C7161891; Sun, 4 Oct 2015 10:43:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94AhXPU060778; Sun, 4 Oct 2015 10:43:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94AhT4V060762; Sun, 4 Oct 2015 10:43:29 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510041043.t94AhT4V060762@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 4 Oct 2015 10:43:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398569 - in head: devel/etl devel/etl/files devel/synfig devel/synfig/files graphics/synfigstudio graphics/synfigstudio/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: Sun, 04 Oct 2015 10:43:33 -0000 Author: pi Date: Sun Oct 4 10:43:28 2015 New Revision: 398569 URL: https://svnweb.freebsd.org/changeset/ports/398569 Log: devel/etl: 0.4.18 -> 0.04.19 devel/synfig: 1.0 -> 1.0.1 graphics/synfigstudio: 1.0 -> 1.0.1 PR: 201175 Submitted by: Ben Woods (maintainer) Modified: head/devel/etl/Makefile head/devel/etl/distinfo head/devel/etl/files/patch-ETL___stringf.h head/devel/etl/files/patch-ETL___surface.h head/devel/synfig/Makefile head/devel/synfig/distinfo head/devel/synfig/files/patch-src__synfig__main.cpp head/devel/synfig/files/patch-src__synfig__transform.cpp head/devel/synfig/pkg-plist head/graphics/synfigstudio/Makefile head/graphics/synfigstudio/distinfo head/graphics/synfigstudio/files/patch-src_synfigapp_cvs.cpp head/graphics/synfigstudio/pkg-plist Modified: head/devel/etl/Makefile ============================================================================== --- head/devel/etl/Makefile Sun Oct 4 10:24:30 2015 (r398568) +++ head/devel/etl/Makefile Sun Oct 4 10:43:28 2015 (r398569) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= etl -PORTVERSION= 0.04.18 +PORTVERSION= 0.04.19 CATEGORIES= devel lang MASTER_SITES= SF/synfig/releases/${SYNFIG_VERSION}/source/ DISTNAME= ETL-${PORTVERSION} @@ -10,13 +10,15 @@ DISTNAME= ETL-${PORTVERSION} MAINTAINER= woodsb02@gmail.com COMMENT= Voria Extended Class and Template Library -WRKSRC= ${WRKDIR}/${DISTNAME} +LICENSE= GPLv2 # (or later) + +NO_ARCH= yes OPTIONS_DEFINE= DOCS -SYNFIG_VERSION= 1.0 +SYNFIG_VERSION= 1.0.1 -USES= gmake pathfix pkgconfig +USES= gmake pathfix pkgconfig GNU_CONFIGURE= yes post-install: Modified: head/devel/etl/distinfo ============================================================================== --- head/devel/etl/distinfo Sun Oct 4 10:24:30 2015 (r398568) +++ head/devel/etl/distinfo Sun Oct 4 10:43:28 2015 (r398569) @@ -1,2 +1,2 @@ -SHA256 (ETL-0.04.18.tar.gz) = 53953e477a37d2e870e3be4b22f519474c24537b0e6eb1633e3402273a684a98 -SIZE (ETL-0.04.18.tar.gz) = 370705 +SHA256 (ETL-0.04.19.tar.gz) = 21696881fab1b9a3458aaa77a8b10c899c297b2d132e3ed4cfb7ffa29cd8b8fe +SIZE (ETL-0.04.19.tar.gz) = 371439 Modified: head/devel/etl/files/patch-ETL___stringf.h ============================================================================== --- head/devel/etl/files/patch-ETL___stringf.h Sun Oct 4 10:24:30 2015 (r398568) +++ head/devel/etl/files/patch-ETL___stringf.h Sun Oct 4 10:43:28 2015 (r398569) @@ -1,4 +1,4 @@ ---- ETL/_stringf.h.orig +--- ETL/_stringf.h.orig 2015-03-28 15:08:17 UTC +++ ETL/_stringf.h @@ -57,7 +57,7 @@ Modified: head/devel/etl/files/patch-ETL___surface.h ============================================================================== --- head/devel/etl/files/patch-ETL___surface.h Sun Oct 4 10:24:30 2015 (r398568) +++ head/devel/etl/files/patch-ETL___surface.h Sun Oct 4 10:43:28 2015 (r398569) @@ -1,4 +1,4 @@ ---- ETL/_surface.h.orig +--- ETL/_surface.h.orig 2015-03-28 10:15:00 UTC +++ ETL/_surface.h @@ -34,6 +34,7 @@ #include "_misc.h" Modified: head/devel/synfig/Makefile ============================================================================== --- head/devel/synfig/Makefile Sun Oct 4 10:24:30 2015 (r398568) +++ head/devel/synfig/Makefile Sun Oct 4 10:43:28 2015 (r398569) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= synfig -PORTVERSION= 1.0 +PORTVERSION= 1.0.1 CATEGORIES= devel graphics multimedia MASTER_SITES= SF/${PORTNAME}/releases/${PORTVERSION}/source MAINTAINER= woodsb02@gmail.com COMMENT= Vector based 2D animation package -LICENSE= GPLv3 +LICENSE= GPLv2 # (or later) -BUILD_DEPENDS= etl>=0.04.17:${PORTSDIR}/devel/etl +BUILD_DEPENDS= etl>=0.04.19:${PORTSDIR}/devel/etl LIB_DEPENDS= libboost_program_options.so:${PORTSDIR}/devel/boost-libs \ libltdl.so:${PORTSDIR}/devel/libltdl \ libMagickWand-6.so:${PORTSDIR}/graphics/ImageMagick \ @@ -23,7 +23,7 @@ LIB_DEPENDS= libboost_program_options.so libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ libdv.so:${PORTSDIR}/multimedia/libdv -USES= gettext iconv jpeg libtool pathfix pkgconfig +USES= iconv jpeg libtool pathfix pkgconfig USE_GNOME= cairo glibmm libxml++26 GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} @@ -34,6 +34,12 @@ WRKSRC= ${WRKDIR}/${DISTNAME} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + post-patch: @${REINPLACE_CMD} -e \ '/optimization_flags/s|CXXFLAGS=|#CXXFLAGS=| ; \ @@ -43,9 +49,7 @@ post-patch: s|no_NO|no| ; \ s|pl_PL|pl| ; \ s|sk_SK|sk| ; \ - s|sv_SE|sv| ; \ - s|=0.04.17:${PORTSDIR}/devel/etl +BUILD_DEPENDS= etl>=0.04.18:${PORTSDIR}/devel/etl LIB_DEPENDS= libsynfig.so:${PORTSDIR}/devel/synfig RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -USES= desktop-file-utils gettext gmake libtool pathfix pkgconfig \ - shared-mime-info +USES= desktop-file-utils gmake libtool pathfix pkgconfig shared-mime-info USE_GNOME= gtkmm30 intltool GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-update-mimedb @@ -27,15 +26,22 @@ INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS JACK NLS +OPTIONS_SUB= yes + +JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack +JACK_CONFIGURE_ENABLE= jack + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +BROKEN_FreeBSD_9= Does not build on FreeBSD < 10.x post-patch: @${REINPLACE_CMD} -e \ '/optimization_flags/s|CXXFLAGS=|#CXXFLAGS=| ; \ /optimization_flags/s|CFLAGS=|#CFLAGS=| ; \ - /DATADIRNAME/s|lib|share| ; \ - s| 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 676A3A108B3; Sun, 4 Oct 2015 11:02:37 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 587711251; Sun, 4 Oct 2015 11:02:37 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94B2bwk068954; Sun, 4 Oct 2015 11:02:37 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94B2aZ9068952; Sun, 4 Oct 2015 11:02:36 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201510041102.t94B2aZ9068952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Sun, 4 Oct 2015 11:02:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398570 - head/textproc/p5-XML-Generator-PerlData 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: Sun, 04 Oct 2015 11:02:37 -0000 Author: bofh Date: Sun Oct 4 11:02:36 2015 New Revision: 398570 URL: https://svnweb.freebsd.org/changeset/ports/398570 Log: textproc/p5-XML-Generator-PerlData: Update version 0.93=>0.95 - Mark NO_ARCH as it has no ARCH dependent files Modified: head/textproc/p5-XML-Generator-PerlData/Makefile head/textproc/p5-XML-Generator-PerlData/distinfo Modified: head/textproc/p5-XML-Generator-PerlData/Makefile ============================================================================== --- head/textproc/p5-XML-Generator-PerlData/Makefile Sun Oct 4 10:43:28 2015 (r398569) +++ head/textproc/p5-XML-Generator-PerlData/Makefile Sun Oct 4 11:02:36 2015 (r398570) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= XML-Generator-PerlData -PORTVERSION= 0.93 +PORTVERSION= 0.95 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,5 +18,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include Modified: head/textproc/p5-XML-Generator-PerlData/distinfo ============================================================================== --- head/textproc/p5-XML-Generator-PerlData/distinfo Sun Oct 4 10:43:28 2015 (r398569) +++ head/textproc/p5-XML-Generator-PerlData/distinfo Sun Oct 4 11:02:36 2015 (r398570) @@ -1,2 +1,2 @@ -SHA256 (XML-Generator-PerlData-0.93.tar.gz) = b49d3edbf9632d44b135bdcff703b970b0c1f941dbc8777a0906f6ff825aa5e1 -SIZE (XML-Generator-PerlData-0.93.tar.gz) = 15327 +SHA256 (XML-Generator-PerlData-0.95.tar.gz) = 78560b638016ef047fd5937f2d35cca9536fe5b42a03974e173f16671bf5c397 +SIZE (XML-Generator-PerlData-0.95.tar.gz) = 15394 From owner-svn-ports-head@freebsd.org Sun Oct 4 11:20:44 2015 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 45DF69D03D3; Sun, 4 Oct 2015 11:20:44 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from vps.amdmi3.ru (vps.amdmi3.ru [109.234.38.216]) by mx1.freebsd.org (Postfix) with ESMTP id 0E0351A43; Sun, 4 Oct 2015 11:20:43 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id B1277B061E; Sun, 4 Oct 2015 14:20:35 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id B1A73E5B; Sun, 4 Oct 2015 14:16:53 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 1A41B10BB74; Sun, 4 Oct 2015 14:19:36 +0300 (MSK) Date: Sun, 4 Oct 2015 14:19:36 +0300 From: Dmitry Marakasov To: Kubilay Kocak Cc: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398482 - head/devel/py-greenlet Message-ID: <20151004111935.GD44712@hades.panopticon> References: <201510031707.t93H7UBs008407@repo.freebsd.org> <5610937B.1000708@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <5610937B.1000708@FreeBSD.org> User-Agent: Mutt/1.5.24 (2015-08-30) 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: Sun, 04 Oct 2015 11:20:44 -0000 * Kubilay Kocak (koobs@FreeBSD.org) wrote: > > Author: sunpoet > > Date: Sat Oct 3 17:07:29 2015 > > New Revision: 398482 > > URL: https://svnweb.freebsd.org/changeset/ports/398482 > > > > Log: > > - Convert to new test framework > > > > Modified: > > head/devel/py-greenlet/Makefile > > > > Modified: head/devel/py-greenlet/Makefile > > ============================================================================== > > --- head/devel/py-greenlet/Makefile Sat Oct 3 17:07:24 2015 (r398481) > > +++ head/devel/py-greenlet/Makefile Sat Oct 3 17:07:29 2015 (r398482) > > @@ -12,14 +12,13 @@ COMMENT= Light-weight microthreads for P > > > > LICENSE= MIT > > > > +DO_MAKE_TEST= ${PYTHON_CMD} > > This is horrible & super ugly. I agree. Using variables in such a quirky and unintended way is incomprehensible for people reading port Makefiles and tend to break easily on framework changes. > Why can't we have / isn't there a TEST_CMD variable to complement > TEST_{ARGS,DEPENDS,*} variables? I don't see a reason for this - it'll not cover all cases and it's a pain to understand. We don't have BUILD_CMD and INSTALL_CMD either. This is obvious case where do-test: should be used. > The new test framework is VERY VERY welcome, but I'm worried it needs > polishing/refinement for extensibility across the broader ports > framework *before* a large number of ports have been 'converted', > thereby cementing in an under-baked implementation and making it much > harder to change for the better. > > Another worry is that there isn't an *explicit* opt-in or toggle to > enable tests. As I've stated several times already, there's an opt-out and it's the way it should be. It's not like broken test break user or package builds, though for test-aware environments (like users runing tests or q/a poudriere) all tests should always be visible. And all failures should be taken care of. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://amdmi3.ru From owner-svn-ports-head@freebsd.org Sun Oct 4 12:18:01 2015 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 13F26A105D1; Sun, 4 Oct 2015 12:18:01 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 051FF12EF; Sun, 4 Oct 2015 12:18:01 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94CI0fW097512; Sun, 4 Oct 2015 12:18:00 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94CHx5M097504; Sun, 4 Oct 2015 12:17:59 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201510041217.t94CHx5M097504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 4 Oct 2015 12:17:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398571 - in head/cad/iverilog: . 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: Sun, 04 Oct 2015 12:18:01 -0000 Author: zeising Date: Sun Oct 4 12:17:59 2015 New Revision: 398571 URL: https://svnweb.freebsd.org/changeset/ports/398571 Log: Update to 10.0 Committed from: EuroBSDCon 2015 Modified: head/cad/iverilog/Makefile head/cad/iverilog/distinfo head/cad/iverilog/files/patch-load_module.cc head/cad/iverilog/pkg-plist Modified: head/cad/iverilog/Makefile ============================================================================== --- head/cad/iverilog/Makefile Sun Oct 4 11:02:36 2015 (r398570) +++ head/cad/iverilog/Makefile Sun Oct 4 12:17:59 2015 (r398571) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= iverilog -PORTVERSION= 0.9.7 +PORTVERSION= 10.0 CATEGORIES= cad -MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v${PORTVERSION:C,\.[0-9]$,,}/ \ - ftp://ftp.geda.seul.org/pub/geda/dist/ +MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v${PORTVERSION:C,\.[0-9]$,,}/ DISTNAME= verilog-${PORTVERSION} MAINTAINER= zeising@FreeBSD.org Modified: head/cad/iverilog/distinfo ============================================================================== --- head/cad/iverilog/distinfo Sun Oct 4 11:02:36 2015 (r398570) +++ head/cad/iverilog/distinfo Sun Oct 4 12:17:59 2015 (r398571) @@ -1,2 +1,2 @@ -SHA256 (verilog-0.9.7.tar.gz) = 7a5e72e17bfb4c3a59264d8f3cc4e70a7c49c1307173348fdd44e079388e7454 -SIZE (verilog-0.9.7.tar.gz) = 1238088 +SHA256 (verilog-10.0.tar.gz) = 179f09afbafb951bea28c9001b06ed8b9b2e54181092d48e343cb20f436b1185 +SIZE (verilog-10.0.tar.gz) = 1683102 Modified: head/cad/iverilog/files/patch-load_module.cc ============================================================================== --- head/cad/iverilog/files/patch-load_module.cc Sun Oct 4 11:02:36 2015 (r398570) +++ head/cad/iverilog/files/patch-load_module.cc Sun Oct 4 12:17:59 2015 (r398571) @@ -1,10 +1,10 @@ ---- load_module.cc.orig Thu Jul 17 20:49:38 2003 -+++ load_module.cc Thu Jul 17 20:49:51 2003 -@@ -24,6 +24,7 @@ +--- load_module.cc.orig 2015-08-23 21:41:41 UTC ++++ load_module.cc +@@ -21,6 +21,7 @@ # include "util.h" # include "parse_api.h" # include "compiler.h" +# include # include # include - # include + # include Modified: head/cad/iverilog/pkg-plist ============================================================================== --- head/cad/iverilog/pkg-plist Sun Oct 4 11:02:36 2015 (r398570) +++ head/cad/iverilog/pkg-plist Sun Oct 4 12:17:59 2015 (r398571) @@ -4,8 +4,12 @@ bin/vvp include/iverilog/_pli_types.h include/iverilog/acc_user.h include/iverilog/ivl_target.h +include/iverilog/sv_vpi_user.h include/iverilog/veriuser.h include/iverilog/vpi_user.h +lib/ivl/blif-s.conf +lib/ivl/blif.conf +lib/ivl/blif.tgt lib/ivl/cadpli.vpl lib/ivl/include/constants.vams lib/ivl/include/disciplines.vams @@ -14,18 +18,33 @@ lib/ivl/ivlpp lib/ivl/null-s.conf lib/ivl/null.conf lib/ivl/null.tgt +lib/ivl/pcb-s.conf +lib/ivl/pcb.conf +lib/ivl/pcb.tgt +lib/ivl/sizer-s.conf +lib/ivl/sizer.conf +lib/ivl/sizer.tgt lib/ivl/stub-s.conf lib/ivl/stub.conf lib/ivl/stub.tgt lib/ivl/system.sft lib/ivl/system.vpi +lib/ivl/vlog95-s.conf +lib/ivl/vlog95.conf +lib/ivl/vlog95.tgt +lib/ivl/vpi_debug.vpi lib/ivl/v2005_math.sft lib/ivl/v2005_math.vpi +lib/ivl/v2009.sft +lib/ivl/v2009.vpi lib/ivl/va_math.sft lib/ivl/va_math.vpi lib/ivl/vhdl-s.conf +lib/ivl/vhdl_sys.sft +lib/ivl/vhdl_sys.vpi lib/ivl/vhdl.conf lib/ivl/vhdl.tgt +lib/ivl/vhdlpp lib/ivl/vvp-s.conf lib/ivl/vvp.conf lib/ivl/vvp.tgt From owner-svn-ports-head@freebsd.org Sun Oct 4 12:31:10 2015 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 742F1A10F33; Sun, 4 Oct 2015 12:31:10 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 4BBC01B4E; Sun, 4 Oct 2015 12:31:10 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94CVABl002909; Sun, 4 Oct 2015 12:31:10 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94CV9Et002907; Sun, 4 Oct 2015 12:31:09 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510041231.t94CV9Et002907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 4 Oct 2015 12:31:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398572 - head/databases/cego 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: Sun, 04 Oct 2015 12:31:10 -0000 Author: pi Date: Sun Oct 4 12:31:09 2015 New Revision: 398572 URL: https://svnweb.freebsd.org/changeset/ports/398572 Log: databases/cego: 2.25.3 -> 2.26.2 - Fix in CegoBufferPool::calcHas and CegoBufferPool::calcSegement For large file id's the integer range for the hash key might be exceeded, which lead to wrong address calculation. The hash key now is calculated in long based values - Introduced server mode with same behaviour as daemon mode, but no child process is forked and server can be terminated with Ctrl-C - Small formatting fix in CegoOutput - Fix in CegoDistCursor for inner and outer joins Inner or outer joins with additional where condition might return incorrect result set since the condition was just evaluated inside the join. To correct this, the WHERE condition is also checked via evalCondition. This required also a fix in the evalCondition method. - Added multi segment support to CegoBufferPool. Since the pool is divided now into several memory segments, this allows larger buffer pool configurations. - Improvements for output formatting regarding string functions (cegoFunction::getReturnTypeLen). Size of required column field size is now calculated, so the outlook looks more pretty - Added hints from David Binderman in CegoAction::backChar and CegoBufferPage::printPage ( changed pointer comparison to avoid -Wextra compile warnings ) Thanks ! Submitted by: Bjoern Lemke Modified: head/databases/cego/Makefile head/databases/cego/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Sun Oct 4 12:17:59 2015 (r398571) +++ head/databases/cego/Makefile Sun Oct 4 12:31:09 2015 (r398572) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.25.3 +PORTVERSION= 2.26.2 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Sun Oct 4 12:17:59 2015 (r398571) +++ head/databases/cego/distinfo Sun Oct 4 12:31:09 2015 (r398572) @@ -1,2 +1,2 @@ -SHA256 (cego-2.25.3.tar.gz) = 68712d9be6343197377eb0cd0a89872fd2d8c0b17190c3b6d73583d42885c937 -SIZE (cego-2.25.3.tar.gz) = 1224506 +SHA256 (cego-2.26.2.tar.gz) = 48ae5c0c9a38ee825ab8a24d6f951e5a4ae83dfbc618e8e7c32f6fbda29252d5 +SIZE (cego-2.26.2.tar.gz) = 1226359 From owner-svn-ports-head@freebsd.org Sun Oct 4 12:43:32 2015 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 2B7609D091E; Sun, 4 Oct 2015 12:43:32 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 1DA22120A; Sun, 4 Oct 2015 12:43:32 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94ChVVw010554; Sun, 4 Oct 2015 12:43:31 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94ChVYb010553; Sun, 4 Oct 2015 12:43:31 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201510041243.t94ChVYb010553@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 4 Oct 2015 12:43:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398573 - head 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: Sun, 04 Oct 2015 12:43:32 -0000 Author: rene Date: Sun Oct 4 12:43:31 2015 New Revision: 398573 URL: https://svnweb.freebsd.org/changeset/ports/398573 Log: Remove textport/pootle from MOVED, it is back. Submitted by: kwm (via irc) Modified: head/MOVED Modified: head/MOVED ============================================================================== --- head/MOVED Sun Oct 4 12:31:09 2015 (r398572) +++ head/MOVED Sun Oct 4 12:43:31 2015 (r398573) @@ -6889,7 +6889,6 @@ textproc/ats-contrib-parcomb||2014-09-01 textproc/coco||2014-09-01|Not staged textproc/lemmatizer2||2014-09-01|Not staged textproc/openvanilla-modules||2014-09-01|Not staged -textproc/pootle||2014-09-01|Not staged textproc/publican||2014-09-01|Not staged textproc/ruby-html-fillinform||2014-09-01|Not staged textproc/ruby-html-template||2014-09-01|Not staged From owner-svn-ports-head@freebsd.org Sun Oct 4 13:21:11 2015 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 DBAFDA0F5F0; Sun, 4 Oct 2015 13:21:11 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 CD6571471; Sun, 4 Oct 2015 13:21:11 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94DLB1H029091; Sun, 4 Oct 2015 13:21:11 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94DLBbW029090; Sun, 4 Oct 2015 13:21:11 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510041321.t94DLBbW029090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 4 Oct 2015 13:21:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398574 - head/www/rubygem-jekyll-watch 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: Sun, 04 Oct 2015 13:21:12 -0000 Author: mmoll Date: Sun Oct 4 13:21:10 2015 New Revision: 398574 URL: https://svnweb.freebsd.org/changeset/ports/398574 Log: www/rubygem-jekyll-watch: depend on devel/rubygem-listen jekyll-watch is using listen >=3.0 since 1.3.0 Modified: head/www/rubygem-jekyll-watch/Makefile Modified: head/www/rubygem-jekyll-watch/Makefile ============================================================================== --- head/www/rubygem-jekyll-watch/Makefile Sun Oct 4 12:43:31 2015 (r398573) +++ head/www/rubygem-jekyll-watch/Makefile Sun Oct 4 13:21:10 2015 (r398574) @@ -3,6 +3,7 @@ PORTNAME= jekyll-watch PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG @@ -11,7 +12,7 @@ COMMENT= Handles rebuilding of Jekyll si LICENSE= MIT -RUN_DEPENDS= rubygem-listen2>=2.7:${PORTSDIR}/devel/rubygem-listen2 +RUN_DEPENDS= rubygem-listen>=3.0:${PORTSDIR}/devel/rubygem-listen NO_ARCH= yes USE_RUBY= yes From owner-svn-ports-head@freebsd.org Sun Oct 4 14:23:04 2015 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 110119BDE5A; Sun, 4 Oct 2015 14:23:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 01D9E11C5; Sun, 4 Oct 2015 14:23:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94EN3TV054216; Sun, 4 Oct 2015 14:23:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94EN3ut054215; Sun, 4 Oct 2015 14:23:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510041423.t94EN3ut054215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 4 Oct 2015 14:23:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398575 - head/security/vuxml 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: Sun, 04 Oct 2015 14:23:04 -0000 Author: swills Date: Sun Oct 4 14:23:03 2015 New Revision: 398575 URL: https://svnweb.freebsd.org/changeset/ports/398575 Log: Document mail/opensmtpd vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Oct 4 13:21:10 2015 (r398574) +++ head/security/vuxml/vuln.xml Sun Oct 4 14:23:03 2015 (r398575) @@ -58,6 +58,33 @@ Notes: --> + + OpenSMTPD -- multiple vulnerabilities + + + smtpd + 5.7.2 + + + + +

OpenSMTPD developers report:

+
+

This is a minor release with security and reliability fixes only. + You are encouraged to update as soon as possible.

+
+ +
+ + https://www.opensmtpd.org/announces/release-5.7.2.txt + CVE-2015-7687 + + + 2015-10-02 + 2015-10-04 + +
+ james -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Sun Oct 4 14:27:14 2015 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 BDBBAA0E6F5; Sun, 4 Oct 2015 14:27:14 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 AE65617A7; Sun, 4 Oct 2015 14:27:14 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94EREEP054477; Sun, 4 Oct 2015 14:27:14 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94ERE0x054476; Sun, 4 Oct 2015 14:27:14 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510041427.t94ERE0x054476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 4 Oct 2015 14:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398576 - head/devel/rubygem-listen2 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: Sun, 04 Oct 2015 14:27:14 -0000 Author: mmoll Date: Sun Oct 4 14:27:13 2015 New Revision: 398576 URL: https://svnweb.freebsd.org/changeset/ports/398576 Log: devel/rubygem-listen2: set to deprecated it's not used by any other port anymore Modified: head/devel/rubygem-listen2/Makefile Modified: head/devel/rubygem-listen2/Makefile ============================================================================== --- head/devel/rubygem-listen2/Makefile Sun Oct 4 14:23:03 2015 (r398575) +++ head/devel/rubygem-listen2/Makefile Sun Oct 4 14:27:13 2015 (r398576) @@ -19,6 +19,9 @@ RUN_DEPENDS= rubygem-celluloid>=0.16.0:$ rubygem-rb-inotify>=0.9:${PORTSDIR}/devel/rubygem-rb-inotify \ rubygem-rb-kqueue>=0.2:${PORTSDIR}/devel/rubygem-rb-kqueue +DEPRECATED= not used by other ports anymore +EXPIRATION_DATE= 2015-10-19 + NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes From owner-svn-ports-head@freebsd.org Sun Oct 4 15:02:45 2015 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 D1241A0FFFD; Sun, 4 Oct 2015 15:02:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 C1C8A1591; Sun, 4 Oct 2015 15:02:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94F2jPF070572; Sun, 4 Oct 2015 15:02:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94F2jn6070569; Sun, 4 Oct 2015 15:02:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510041502.t94F2jn6070569@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 4 Oct 2015 15:02:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398577 - head/net/syncthing 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: Sun, 04 Oct 2015 15:02:45 -0000 Author: swills Date: Sun Oct 4 15:02:44 2015 New Revision: 398577 URL: https://svnweb.freebsd.org/changeset/ports/398577 Log: net/syncthing: update to 0.11.26 Modified: head/net/syncthing/Makefile head/net/syncthing/distinfo Modified: head/net/syncthing/Makefile ============================================================================== --- head/net/syncthing/Makefile Sun Oct 4 14:27:13 2015 (r398576) +++ head/net/syncthing/Makefile Sun Oct 4 15:02:44 2015 (r398577) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= syncthing -PORTVERSION= 0.11.23 +PORTVERSION= 0.11.26 DISTVERSIONPREFIX= v CATEGORIES= net Modified: head/net/syncthing/distinfo ============================================================================== --- head/net/syncthing/distinfo Sun Oct 4 14:27:13 2015 (r398576) +++ head/net/syncthing/distinfo Sun Oct 4 15:02:44 2015 (r398577) @@ -1,2 +1,2 @@ -SHA256 (syncthing-syncthing-v0.11.23_GH0.tar.gz) = 8c011e90c8c98aea2f9fb58d8fdc0ebbe4ef442569294a0610615fc528d0525e -SIZE (syncthing-syncthing-v0.11.23_GH0.tar.gz) = 4202400 +SHA256 (syncthing-syncthing-v0.11.26_GH0.tar.gz) = d2cc72d5711c5a7d25c32951bd11680ad7d9530c2183de240287f07fe9e80ac2 +SIZE (syncthing-syncthing-v0.11.26_GH0.tar.gz) = 4205756 From owner-svn-ports-head@freebsd.org Sun Oct 4 15:04:32 2015 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 3E818A100DF; Sun, 4 Oct 2015 15:04:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 2E3CB1796; Sun, 4 Oct 2015 15:04:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94F4WrM070764; Sun, 4 Oct 2015 15:04:32 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94F4VOb070762; Sun, 4 Oct 2015 15:04:31 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510041504.t94F4VOb070762@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 4 Oct 2015 15:04:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398578 - in head/net/syncthing-cli: . 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: Sun, 04 Oct 2015 15:04:32 -0000 Author: swills Date: Sun Oct 4 15:04:30 2015 New Revision: 398578 URL: https://svnweb.freebsd.org/changeset/ports/398578 Log: net/syncthing-cli: update to new snapshot Deleted: head/net/syncthing-cli/files/ Modified: head/net/syncthing-cli/Makefile head/net/syncthing-cli/distinfo Modified: head/net/syncthing-cli/Makefile ============================================================================== --- head/net/syncthing-cli/Makefile Sun Oct 4 15:02:44 2015 (r398577) +++ head/net/syncthing-cli/Makefile Sun Oct 4 15:04:30 2015 (r398578) @@ -2,50 +2,24 @@ # $FreeBSD$ PORTNAME= syncthing-cli -PORTVERSION= 0.1.0.2015070301 -PORTREVISION= 2 +PORTVERSION= 0.1.0.2015092201 CATEGORIES= net MAINTAINER= swills@FreeBSD.org COMMENT= Syncthing CLI -BUILD_DEPENDS= go14>=1.4:${PORTSDIR}/lang/go14 +BUILD_DEPENDS= go>=1.5:${PORTSDIR}/lang/go USE_GITHUB= yes -GH_ACCOUNT= syncthing AudriusButkevicius:audrius -GH_PROJECT= syncthing:st cli:audrius -GH_TAGNAME= 2707f77 v${SYNCTHING_VER}:st 7f561c7:audrius - -SYNCTHING_VER= 0.11.18 +GH_ACCOUNT= syncthing +GH_TAGNAME= 9594d39 PLIST_FILES= bin/syncthing-cli STRIP= # stripping can break go binaries -post-patch: - @${MKDIR} ${WRKSRC}/src/github.com/syncthing - @${MKDIR} ${WRKSRC}/src/github.com/AudriusButkevicius - @${MKDIR} ${WRKSRC}/src/code.google.com/p - @${MKDIR} ${WRKSRC}/src/golang.org/x - @${MKDIR} ${WRKSRC}/src/github.com/bkaradzic - @${MV} ${WRKSRC_audrius} \ - ${WRKSRC}/src/github.com/AudriusButkevicius/cli - @${MV} ${WRKSRC_st}/Godeps/_workspace/src/golang.org/x/crypto \ - ${WRKSRC}/src/golang.org/x - @${MV} ${WRKSRC_st}/Godeps/_workspace/src/golang.org/x/text \ - ${WRKSRC}/src/golang.org/x - @${MV} ${WRKSRC_st}/Godeps/_workspace/src/github.com/bkaradzic/go-lz4 \ - ${WRKSRC}/src/github.com/bkaradzic - @${MV} ${WRKSRC_st}/Godeps/_workspace/src/github.com/calmh \ - ${WRKSRC}/src/github.com/calmh - @${MV} ${WRKSRC_st} \ - ${WRKSRC}/src/github.com/syncthing/syncthing - @${MV} ${WRKSRC}/src/github.com/syncthing/syncthing/Godeps/_workspace/src/github.com/syncthing/protocol \ - ${WRKSRC}/src/github.com/syncthing/protocol - do-build: - @cd ${WRKSRC} ; ${SETENV} PATH=${PATH}:${LOCALBASE}/go14/bin \ - GOPATH=${WRKSRC} go build + @cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC}/Godeps/_workspace:${WRKSRC} go build @${MV} ${WRKSRC}/syncthing-cli-${GH_TAGNAME} ${WRKSRC}/syncthing-cli do-install: Modified: head/net/syncthing-cli/distinfo ============================================================================== --- head/net/syncthing-cli/distinfo Sun Oct 4 15:02:44 2015 (r398577) +++ head/net/syncthing-cli/distinfo Sun Oct 4 15:04:30 2015 (r398578) @@ -1,6 +1,2 @@ -SHA256 (syncthing-syncthing-cli-0.1.0.2015070301-2707f77_GH0.tar.gz) = 53c2879f46d0be1f5e8d041968d629ca52b4d28c5e04261b29c960bc84f31e1c -SIZE (syncthing-syncthing-cli-0.1.0.2015070301-2707f77_GH0.tar.gz) = 9347 -SHA256 (AudriusButkevicius-cli-7f561c7_GH0.tar.gz) = 8d6c282b2737c5ae17c3ba4ce81037762f46aa5a05d0095c0d481639d081110c -SIZE (AudriusButkevicius-cli-7f561c7_GH0.tar.gz) = 14722 -SHA256 (syncthing-syncthing-v0.11.18_GH0.tar.gz) = fd93392687e545e2b779d10754e24cd49ecbfc03cabaceac381b5a3e69693be6 -SIZE (syncthing-syncthing-v0.11.18_GH0.tar.gz) = 3391683 +SHA256 (syncthing-syncthing-cli-0.1.0.2015092201-9594d39_GH0.tar.gz) = 795d25420ce0a6251c1c0bd520b2801d176b1d4ada562c8fa949e5dd7bcf3532 +SIZE (syncthing-syncthing-cli-0.1.0.2015092201-9594d39_GH0.tar.gz) = 468127 From owner-svn-ports-head@freebsd.org Sun Oct 4 15:07:49 2015 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 47487A10289; Sun, 4 Oct 2015 15:07:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 1D87B18D1; Sun, 4 Oct 2015 15:07:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94F7msJ071022; Sun, 4 Oct 2015 15:07:48 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94F7mXU071020; Sun, 4 Oct 2015 15:07:48 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510041507.t94F7mXU071020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 4 Oct 2015 15:07:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398579 - head/net/syncthing-discosrv 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: Sun, 04 Oct 2015 15:07:49 -0000 Author: swills Date: Sun Oct 4 15:07:47 2015 New Revision: 398579 URL: https://svnweb.freebsd.org/changeset/ports/398579 Log: net/syncthing-discosrv: update to new snapshot Modified: head/net/syncthing-discosrv/Makefile head/net/syncthing-discosrv/distinfo Modified: head/net/syncthing-discosrv/Makefile ============================================================================== --- head/net/syncthing-discosrv/Makefile Sun Oct 4 15:04:30 2015 (r398578) +++ head/net/syncthing-discosrv/Makefile Sun Oct 4 15:07:47 2015 (r398579) @@ -2,21 +2,18 @@ # $FreeBSD$ PORTNAME= syncthing-discosrv -PORTVERSION= 0.0.0.2015062601 -PORTREVISION= 3 +PORTVERSION= 0.0.0.2015092201 CATEGORIES= net MAINTAINER= swills@FreeBSD.org COMMENT= Discovery server for syncthing -BUILD_DEPENDS= go14>=1.4:${PORTSDIR}/lang/go14 +BUILD_DEPENDS= go>=1.5:${PORTSDIR}/lang/go USE_GITHUB= yes -GH_ACCOUNT= syncthing golang:gc -GH_PROJECT= discosrv syncthing:st groupcache:gc -GH_TAGNAME= 4c705ff v${SYNCTHING_VER}:st 604ed57:gc - -SYNCTHING_VER= 0.11.18 +GH_ACCOUNT= syncthing +GH_PROJECT= discosrv +GH_TAGNAME= 2062f77 PLIST_FILES= bin/syncthing-discosrv @@ -26,16 +23,8 @@ GROUPS= syncthing STRIP= # stripping can break go binaries -post-patch: - @${MV} ${WRKSRC_st}/Godeps/_workspace/src/ ${WRKSRC} - @${MKDIR} ${WRKSRC}/src/github.com/golang - @${MV} ${WRKSRC_st} ${WRKSRC}/src/github.com/syncthing/syncthing - @${MV} ${WRKSRC_gc} \ - ${WRKSRC}/src/github.com/golang/groupcache - do-build: - @cd ${WRKSRC} ; ${SETENV} PATH=${PATH}:${LOCALBASE}/go14/bin \ - GOPATH=${WRKSRC} go build + @cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC}/Godeps/_workspace:${WRKSRC} go build @${MV} ${WRKSRC}/discosrv-${GH_TAGNAME} ${WRKSRC}/syncthing-discosrv do-install: Modified: head/net/syncthing-discosrv/distinfo ============================================================================== --- head/net/syncthing-discosrv/distinfo Sun Oct 4 15:04:30 2015 (r398578) +++ head/net/syncthing-discosrv/distinfo Sun Oct 4 15:07:47 2015 (r398579) @@ -1,6 +1,2 @@ -SHA256 (syncthing-discosrv-0.0.0.2015062601-4c705ff_GH0.tar.gz) = 231d5456e4fd328c31fb4f9b2a8cf75ffac9cdc453d9176f6b7a4f1176506e26 -SIZE (syncthing-discosrv-0.0.0.2015062601-4c705ff_GH0.tar.gz) = 5227 -SHA256 (golang-groupcache-604ed57_GH0.tar.gz) = 691b695141404ea5903a490a0abfdc5b89591eb654166a364b65a5785fc85b65 -SIZE (golang-groupcache-604ed57_GH0.tar.gz) = 24198 -SHA256 (syncthing-syncthing-v0.11.18_GH0.tar.gz) = fd93392687e545e2b779d10754e24cd49ecbfc03cabaceac381b5a3e69693be6 -SIZE (syncthing-syncthing-v0.11.18_GH0.tar.gz) = 3391683 +SHA256 (syncthing-discosrv-0.0.0.2015092201-2062f77_GH0.tar.gz) = ceed277b47d303898eda1c4fad520343252e7d058daf75405522468af091fc0e +SIZE (syncthing-discosrv-0.0.0.2015092201-2062f77_GH0.tar.gz) = 969977 From owner-svn-ports-head@freebsd.org Sun Oct 4 16:07:04 2015 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 873E7A0FFD3; Sun, 4 Oct 2015 16:07:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 7747210DC; Sun, 4 Oct 2015 16:07:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94G74Fn095214; Sun, 4 Oct 2015 16:07:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94G74oE095212; Sun, 4 Oct 2015 16:07:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510041607.t94G74oE095212@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 4 Oct 2015 16:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398580 - head/devel/libevtx 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: Sun, 04 Oct 2015 16:07:04 -0000 Author: antoine Date: Sun Oct 4 16:07:03 2015 New Revision: 398580 URL: https://svnweb.freebsd.org/changeset/ports/398580 Log: Update to alpha-20150928 Modified: head/devel/libevtx/Makefile head/devel/libevtx/distinfo Modified: head/devel/libevtx/Makefile ============================================================================== --- head/devel/libevtx/Makefile Sun Oct 4 15:07:47 2015 (r398579) +++ head/devel/libevtx/Makefile Sun Oct 4 16:07:03 2015 (r398580) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libevtx -DISTVERSION= alpha-20150105 +DISTVERSION= alpha-20150928 CATEGORIES= devel MASTER_SITES= https://github.com/libyal/libevtx/releases/download/${PORTVERSION:E}/ \ LOCAL/antoine @@ -12,9 +12,11 @@ COMMENT= Library and tooling to access t LICENSE= LGPL3 +LIB_DEPENDS= libregf.so:${PORTSDIR}/devel/libregf + GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} -USES= gettext iconv libtool pathfix python +CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} --with-libregf=${LOCALBASE} +USES= gettext libtool pathfix python USE_LDCONFIG= yes INSTALL_TARGET= install-strip WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E} Modified: head/devel/libevtx/distinfo ============================================================================== --- head/devel/libevtx/distinfo Sun Oct 4 15:07:47 2015 (r398579) +++ head/devel/libevtx/distinfo Sun Oct 4 16:07:03 2015 (r398580) @@ -1,2 +1,2 @@ -SHA256 (libevtx-alpha-20150105.tar.gz) = 62a6452141bf23e1db052b9e0238d0b15423c10144ac8492a18a1e095c83b7ab -SIZE (libevtx-alpha-20150105.tar.gz) = 1761769 +SHA256 (libevtx-alpha-20150928.tar.gz) = 430f65b74e7b67178b0a2f4604212e61a0636a2e474cfeec0a8513257d7acb2d +SIZE (libevtx-alpha-20150928.tar.gz) = 1806008 From owner-svn-ports-head@freebsd.org Sun Oct 4 16:17:21 2015 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 A0B50A10527; Sun, 4 Oct 2015 16:17:21 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8460515FC; Sun, 4 Oct 2015 16:17:21 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94GHLXU099389; Sun, 4 Oct 2015 16:17:21 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94GHKwv099385; Sun, 4 Oct 2015 16:17:20 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201510041617.t94GHKwv099385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sun, 4 Oct 2015 16:17:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398581 - in head/audio/ufmcontrol-i18n: . 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: Sun, 04 Oct 2015 16:17:21 -0000 Author: nivit Date: Sun Oct 4 16:17:20 2015 New Revision: 398581 URL: https://svnweb.freebsd.org/changeset/ports/398581 Log: - Support newer libedit by using different name for a constant (fixes build on current) - Switch to USES=libedit as suggested by stage-qa: http://poudriere.amdmi3.ru/data/10-amd64-default/failures_all_2015_09_28/logs/errors/ufmcontrol-i18n-0.3.5.log - Fix indentation - Set DATADIR, fixing xufmrc installation. Without that, incorrect DATADIR is created, and xufmrc is installed AS (as opposed to `into') share/ufmcontrol. PR: 203490 Submitted by: amdmi3 Added: head/audio/ufmcontrol-i18n/files/ head/audio/ufmcontrol-i18n/files/patch-src_bin_input.c (contents, props changed) Modified: head/audio/ufmcontrol-i18n/Makefile head/audio/ufmcontrol-i18n/pkg-plist Modified: head/audio/ufmcontrol-i18n/Makefile ============================================================================== --- head/audio/ufmcontrol-i18n/Makefile Sun Oct 4 16:07:03 2015 (r398580) +++ head/audio/ufmcontrol-i18n/Makefile Sun Oct 4 16:17:20 2015 (r398581) @@ -1,21 +1,23 @@ # Created by: Nicola Vitale # $FreeBSD$ -PORTNAME= ufmcontrol-i18n -PORTVERSION= 0.3.5 -CATEGORIES= audio -MASTER_SITES= SF/ufmcontrol/${PORTNAME}/${PORTVERSION} +PORTNAME= ufmcontrol-i18n +PORTVERSION= 0.3.5 +PORTREVISION= 1 +CATEGORIES= audio +MASTER_SITES= SF/ufmcontrol-i18n/${PORTNAME}/${PORTVERSION} + +MAINTAINER= nivit@FreeBSD.org +COMMENT= USB radio control utility + +RUN_DEPENDS= snack>=2.2.10_4:${PORTSDIR}/audio/snack + +USES= libedit tk:wrapper,run +USE_LDCONFIG= yes +MAKE_ENV= NO_PROFILE=yes +DATADIR= ${PREFIX}/share/ufmcontrol -MAINTAINER= nivit@FreeBSD.org -COMMENT= USB radio control utility - -RUN_DEPENDS= snack>=2.2.10_4:${PORTSDIR}/audio/snack - -USES= tk:wrapper,run -USE_LDCONFIG= yes -MAKE_ENV= NO_PROFILE=yes - -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS pre-install: @${MKDIR} ${STAGEDIR}${DATADIR} Added: head/audio/ufmcontrol-i18n/files/patch-src_bin_input.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ufmcontrol-i18n/files/patch-src_bin_input.c Sun Oct 4 16:17:20 2015 (r398581) @@ -0,0 +1,11 @@ +--- src/bin/input.c.orig 2014-08-06 20:09:27 UTC ++++ src/bin/input.c +@@ -51,7 +51,7 @@ input(int *cmd) + #if __FreeBSD_version >= 500000 + &he, + #endif +- H_EVENT, 100); ++ H_SETSIZE, 100); + el_set(el, EL_HIST, history, hist); + el_set(el, EL_EDITOR, "emacs"); + el_set(el, EL_PROMPT, ufmcontrol_prompt); Modified: head/audio/ufmcontrol-i18n/pkg-plist ============================================================================== --- head/audio/ufmcontrol-i18n/pkg-plist Sun Oct 4 16:07:03 2015 (r398580) +++ head/audio/ufmcontrol-i18n/pkg-plist Sun Oct 4 16:17:20 2015 (r398581) @@ -66,4 +66,4 @@ share/nls/sv_SE.ISO8859-1/ufmcontrol.cat share/nls/sv_SE.ISO8859-15/ufmcontrol.cat share/nls/tr_TR.ISO8859-9/ufmcontrol.cat share/nls/uk_UA.ISO8859-5/ufmcontrol.cat -share/ufmcontrol +%%DATADIR%%/xufmrc From owner-svn-ports-head@freebsd.org Sun Oct 4 16:55:44 2015 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 78AD1A0F2D0; Sun, 4 Oct 2015 16:55:44 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 6836118CF; Sun, 4 Oct 2015 16:55:44 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94Gtioh015857; Sun, 4 Oct 2015 16:55:44 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94Gthax015855; Sun, 4 Oct 2015 16:55:43 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510041655.t94Gthax015855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 4 Oct 2015 16:55:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398583 - head/textproc/py-openpyxl 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: Sun, 04 Oct 2015 16:55:44 -0000 Author: antoine Date: Sun Oct 4 16:55:43 2015 New Revision: 398583 URL: https://svnweb.freebsd.org/changeset/ports/398583 Log: Update to 2.2.6 Modified: head/textproc/py-openpyxl/Makefile head/textproc/py-openpyxl/distinfo Modified: head/textproc/py-openpyxl/Makefile ============================================================================== --- head/textproc/py-openpyxl/Makefile Sun Oct 4 16:49:19 2015 (r398582) +++ head/textproc/py-openpyxl/Makefile Sun Oct 4 16:55:43 2015 (r398583) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openpyxl -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.6 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-openpyxl/distinfo ============================================================================== --- head/textproc/py-openpyxl/distinfo Sun Oct 4 16:49:19 2015 (r398582) +++ head/textproc/py-openpyxl/distinfo Sun Oct 4 16:55:43 2015 (r398583) @@ -1,2 +1,2 @@ -SHA256 (openpyxl-2.2.4.tar.gz) = bd1b795ffc928f8c3f64fc0182e087a5f9afe7df94c78335a8d12eed872d182a -SIZE (openpyxl-2.2.4.tar.gz) = 108810 +SHA256 (openpyxl-2.2.6.tar.gz) = 0e580133106976da044b5861231283fb4e1b2d439787e0f668f28eb2dfd7468e +SIZE (openpyxl-2.2.6.tar.gz) = 108959 From owner-svn-ports-head@freebsd.org Sun Oct 4 17:26:22 2015 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 DFC0AA108A8; Sun, 4 Oct 2015 17:26:22 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 C381214F1; Sun, 4 Oct 2015 17:26:22 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94HQMk7028101; Sun, 4 Oct 2015 17:26:22 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94HQM4T028098; Sun, 4 Oct 2015 17:26:22 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201510041726.t94HQM4T028098@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 4 Oct 2015 17:26:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398584 - head/audio/gogglesmm 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: Sun, 04 Oct 2015 17:26:23 -0000 Author: riggs Date: Sun Oct 4 17:26:21 2015 New Revision: 398584 URL: https://svnweb.freebsd.org/changeset/ports/398584 Log: Update to upstream version 1.0.7, fix vorbis decoder handling PR: 203240 Submitted by: tkato432@yahoo.com Reviewed by: riggs Modified: head/audio/gogglesmm/Makefile head/audio/gogglesmm/distinfo head/audio/gogglesmm/pkg-plist Modified: head/audio/gogglesmm/Makefile ============================================================================== --- head/audio/gogglesmm/Makefile Sun Oct 4 16:55:43 2015 (r398583) +++ head/audio/gogglesmm/Makefile Sun Oct 4 17:26:21 2015 (r398584) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gogglesmm -PORTVERSION= 0.14.2 -PORTREVISION= 1 +PORTVERSION= 1.0.7 CATEGORIES= audio MAINTAINER= ports@FreeBSD.org @@ -13,13 +12,12 @@ LICENSE= GPLv3 # or later LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtag.so:${PORTSDIR}/audio/taglib \ - libdbus-1.so:${PORTSDIR}/devel/dbus \ libexpat.so:${PORTSDIR}/textproc/expat2 \ libFOX-1.7.so:${PORTSDIR}/x11-toolkits/fox17 USE_GITHUB= yes -USES= compiler:c++0x desktop-file-utils gmake pkgconfig +USES= compiler:c++11-lang desktop-file-utils gmake pkgconfig USE_GL= glew USE_SQLITE= yes HAS_CONFIGURE= yes @@ -27,30 +25,31 @@ CONFIGURE_ENV= LINK="${CXX}" \ OPT_CFLAGS="${CXXFLAGS}" \ OPT_LDFLAGS="${LDFLAGS}" \ RESWRAP="${LOCALBASE}/bin/fox-1.7/reswrap" -CONFIGURE_ARGS= --prefix=${PREFIX} --fox-prefix=${LOCALBASE} \ - --without-rsound --without-mpcdec +CONFIGURE_ARGS= --prefix=${PREFIX} \ + --libdir=${PREFIX}/lib \ + --fox-prefix=${LOCALBASE} \ + --without-rsound INSTALLS_ICONS= yes -USE_LDCONFIG= ${PREFIX}/lib/gogglesmm - -PORTDOCS= AUTHORS ChangeLog README - CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -pthread -OPTIONS_DEFINE= ALSA CDIO DOCS FAAD FFMPEG FLAC GCRYPT JACK \ - MAD MMS NLS OPUS PULSEAUDIO SAMPLERATE SMB TREMOR \ - VORBIS WAVPACK -OPTIONS_DEFAULT= CDIO FAAD FLAC MAD OPUS SAMPLERATE SMB \ +OPTIONS_DEFINE= ALSA CDIO DBUS DOCS FAAD FFMPEG FLAC GCRYPT JACK \ + MAD MMS NLS OPUS PULSEAUDIO SAMPLERATE SMB WAVPACK +OPTIONS_RADIO= VORBISDEC +OPTIONS_RADIO_VORBISDEC= TREMOR VORBIS +OPTIONS_DEFAULT= CDIO DBUS FAAD FLAC MAD OPUS SAMPLERATE SMB \ VORBIS WAVPACK OPTIONS_SUB= yes +VORBISDEC_DESC= Vorbis decoder library + ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib ALSA_CONFIGURE_OFF= --without-alsa CDIO_LIB_DEPENDS= libcdio.so:${PORTSDIR}/sysutils/libcdio CDIO_CONFIGURE_OFF= --without-cdda -#DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus -#DBUS_CONFIGURE_OFF= --without-dbus +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus +DBUS_CONFIGURE_OFF= --without-dbus FAAD_LIB_DEPENDS= libfaad.so:${PORTSDIR}/audio/faad FAAD_CONFIGURE_ON= --faad-prefix=${LOCALBASE} FAAD_CONFIGURE_OFF= --without-faad @@ -72,7 +71,6 @@ MMS_CONFIGURE_OFF= --without-mms NLS_USES= gettext NLS_LIBS= -lintl NLS_CONFIGURE_OFF= --without-nls -OPUS_DESC= Opus decoding with libopus OPUS_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus OPUSE_CONFIGURE_OFF= --without-opus PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio @@ -85,7 +83,7 @@ SMB_CONFIGURE_OFF= --without-smb TREMOR_LIB_DEPENDS= libvorbisidec.so:${PORTSDIR}/audio/libtremor TREMOR_CONFIGURE_ON= --with-tremor VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis -VORBIS_CONFIGURE_OFF= --without-off --without-vorbis +VORBIS_CONFIGURE_OFF= --without-vorbis WAVPACK_LIB_DEPENDS= libwavpack.so:${PORTSDIR}/audio/wavpack WAVPACK_CONFIGURE_OFF= --without-wavpack @@ -109,13 +107,12 @@ pre-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gogglesmm @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gogglesmm/libgap_*.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} -.endfor + (cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS ChangeLog README \ + ${STAGEDIR}${DOCSDIR}) .include Modified: head/audio/gogglesmm/distinfo ============================================================================== --- head/audio/gogglesmm/distinfo Sun Oct 4 16:55:43 2015 (r398583) +++ head/audio/gogglesmm/distinfo Sun Oct 4 17:26:21 2015 (r398584) @@ -1,2 +1,2 @@ -SHA256 (gogglesmm-gogglesmm-0.14.2_GH0.tar.gz) = c074143c18494771e8dc38bdd5ee70f00579247bb8f683f8d5319797aa9cc858 -SIZE (gogglesmm-gogglesmm-0.14.2_GH0.tar.gz) = 1354458 +SHA256 (gogglesmm-gogglesmm-1.0.7_GH0.tar.gz) = 911ab3e3431ba8022b8ae1c0a7b7867a991c73705d50876b408103a9e5ffa96b +SIZE (gogglesmm-gogglesmm-1.0.7_GH0.tar.gz) = 1380326 Modified: head/audio/gogglesmm/pkg-plist ============================================================================== --- head/audio/gogglesmm/pkg-plist Sun Oct 4 16:55:43 2015 (r398583) +++ head/audio/gogglesmm/pkg-plist Sun Oct 4 17:26:21 2015 (r398584) @@ -6,6 +6,9 @@ lib/gogglesmm/libgap_wav.so man/man1/gogglesmm.1.gz share/appdata/gogglesmm.appdata.xml share/applications/gogglesmm.desktop +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/README %%DATADIR%%/utils/import_banshee_stats.py %%DATADIR%%/utils/import_gogglesmm12.py %%DATADIR%%/utils/import_gogglesmm12_stats.py From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59:28 2015 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 5F786A0F020; Sun, 4 Oct 2015 17:59:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 4FB8B1217; Sun, 4 Oct 2015 17:59:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94HxSo2040426; Sun, 4 Oct 2015 17:59:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94HxRWo040424; Sun, 4 Oct 2015 17:59:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94HxRWo040424@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Oct 2015 17:59:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398585 - head/devel/p5-experimental 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: Sun, 04 Oct 2015 17:59:28 -0000 Author: sunpoet Date: Sun Oct 4 17:59:27 2015 New Revision: 398585 URL: https://svnweb.freebsd.org/changeset/ports/398585 Log: - Update to 0.015 Changes: http://search.cpan.org/dist/experimental/Changes Modified: head/devel/p5-experimental/Makefile head/devel/p5-experimental/distinfo Modified: head/devel/p5-experimental/Makefile ============================================================================== --- head/devel/p5-experimental/Makefile Sun Oct 4 17:26:21 2015 (r398584) +++ head/devel/p5-experimental/Makefile Sun Oct 4 17:59:27 2015 (r398585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= experimental -PORTVERSION= 0.014 +PORTVERSION= 0.015 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:LEONT Modified: head/devel/p5-experimental/distinfo ============================================================================== --- head/devel/p5-experimental/distinfo Sun Oct 4 17:26:21 2015 (r398584) +++ head/devel/p5-experimental/distinfo Sun Oct 4 17:59:27 2015 (r398585) @@ -1,2 +1,2 @@ -SHA256 (experimental-0.014.tar.gz) = 197f5e1922763b3dff6fd5bf606beb480807e5b4039970a909dc6055ee8c315c -SIZE (experimental-0.014.tar.gz) = 12277 +SHA256 (experimental-0.015.tar.gz) = 4e20eb02c7d996001871e90a31022c703b27e00d3e2cf3231dee672e91334fe5 +SIZE (experimental-0.015.tar.gz) = 12361 From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59:32 2015 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 B6A6EA0F04D; Sun, 4 Oct 2015 17:59:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A6BF31230; Sun, 4 Oct 2015 17:59:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94HxWbs040529; Sun, 4 Oct 2015 17:59:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94HxWDS040528; Sun, 4 Oct 2015 17:59:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94HxWDS040528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Oct 2015 17:59:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398586 - head/math/py-numpy 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: Sun, 04 Oct 2015 17:59:32 -0000 Author: sunpoet Date: Sun Oct 4 17:59:31 2015 New Revision: 398586 URL: https://svnweb.freebsd.org/changeset/ports/398586 Log: - Convert to new options target helper - Cosmetic change Modified: head/math/py-numpy/Makefile Modified: head/math/py-numpy/Makefile ============================================================================== --- head/math/py-numpy/Makefile Sun Oct 4 17:59:27 2015 (r398585) +++ head/math/py-numpy/Makefile Sun Oct 4 17:59:31 2015 (r398586) @@ -18,6 +18,8 @@ COMMENT= The New Numeric Extension to Py LICENSE= BSD3CLAUSE +PYDISTUTILS_BUILDARGS= --fcompiler=gnu95 +PYDISTUTILS_CONFIGUREARGS= --fcompiler=gnu95 USES= fortran python USE_PYTHON= concurrent distutils py3kplist LDFLAGS+= -shared @@ -29,66 +31,67 @@ OPTIONS_SINGLE_BLASLIB= ATLAS NETLIB OPE SUITESPARSE_DESC= Use AMD and UMFPACK in SuiteSparse TESTS_DESC= Install test suite requirements -PYDISTUTILS_CONFIGUREARGS+= --fcompiler=gnu95 -PYDISTUTILS_BUILDARGS+= --fcompiler=gnu95 - +PLIST_SUB= PYTHON_VER=${PYTHON_VER} PORTDOCS= * WRKSRC= ${WRKDIR}/${DISTNAME:S/r/rc/} DOCVERSION= 1.9.1 +GCCLIBDIR_CMDS= ${FC} -print-file-name=libgfortran.so | ${SED} -e s/libgfortran.so// + ATLAS_USES= blaslapack:atlas NETLIB_USES= blaslapack:netlib OPENBLAS_USES= blaslapack:openblas SUITESPARSE_LIB_DEPENDS=libumfpack.so:${PORTSDIR}/math/suitesparse -TESTS_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/nose/__init__.py:${PORTSDIR}/devel/py-nose +TESTS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:${PORTSDIR}/devel/py-nose .include -PLIST_SUB+= PYTHON_VER=${PYTHON_VER} .if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION} PLIST_FILES+= man/man1/f2py.1.gz .endif post-patch: - ${REINPLACE_CMD} -e "s+%%FC%%+${FC}+" ${WRKSRC}/numpy/distutils/fcompiler/gnu.py + ${REINPLACE_CMD} -e "s|%%FC%%|${FC}|" ${WRKSRC}/numpy/distutils/fcompiler/gnu.py ${CP} ${FILESDIR}/site.cfg ${WRKSRC}/site.cfg -GCCLIBDIR_CMDS= ${FC} -print-file-name=libgfortran.so|${SED} -e s/libgfortran.so// - pre-configure: -.if ${PORT_OPTIONS:MOPENBLAS} - @${REINPLACE_CMD} -e "s+%%BLASNAME%%+openblas+" \ - -e "s+%%LIBRARIES%%+libraries+" \ - -e "s+%%LAPACKLIBS%%+%%BLASLIBS%%+" \ - -e "s+%%BLASLIBS%%+openblasp, gfortran+" \ + @${REINPLACE_CMD} -e "s|%%GCCLIBDIR%%|$$(${GCCLIBDIR_CMDS})|" \ + -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \ + ${WRKSRC}/site.cfg + @${REINPLACE_CMD} -e "s|%%GCCLIBDIR%%|$$(${GCCLIBDIR_CMDS})|" ${WRKSRC}/numpy/distutils/system_info.py + +pre-configure-ATLAS-on: + @${REINPLACE_CMD} -e "s|%%BLASNAME%%|atlas|" \ + -e "s|%%LIBRARIES%%|atlas_libs|" \ + -e "s|%%BLASLIBS%%|%%ATLASLIBS%%|" \ + -e "s|%%LAPACKLIBS%%|alapack|" \ + -e "s|%%ATLASLIBS%%|ptf77blas, ptcblas|" \ ${WRKSRC}/site.cfg -.elif ${PORT_OPTIONS:MATLAS} - @${REINPLACE_CMD} -e "s+%%BLASNAME%%+atlas+" \ - -e "s+%%LIBRARIES%%+atlas_libs+" \ - -e "s+%%BLASLIBS%%+%%ATLASLIBS%%+" \ - -e "s+%%LAPACKLIBS%%+alapack+" \ - -e "s+%%ATLASLIBS%%+ptf77blas, ptcblas+" \ + +pre-configure-NETLIB-on: + @${REINPLACE_CMD} -e "s|%%BLASNAME%%|atlas|" \ + -e "s|%%LIBRARIES%%|atlas_libs|" \ + -e "s|%%BLASLIBS%%|blas|" \ + -e "s|%%LAPACKLIBS%%|lapack|" \ ${WRKSRC}/site.cfg -.else - @${REINPLACE_CMD} -e "s+%%BLASNAME%%+atlas+" \ - -e "s+%%LIBRARIES%%+atlas_libs+" \ - -e "s+%%BLASLIBS%%+blas+" \ - -e "s+%%LAPACKLIBS%%+lapack+" \ + +pre-configure-OPENBLAS-on: + @${REINPLACE_CMD} -e "s|%%BLASNAME%%|openblas|" \ + -e "s|%%LIBRARIES%%|libraries|" \ + -e "s|%%LAPACKLIBS%%|%%BLASLIBS%%|" \ + -e "s|%%BLASLIBS%%|openblasp, gfortran|" \ ${WRKSRC}/site.cfg -.endif -.if !${PORT_OPTIONS:MSUITESPARSE} - @${REINPLACE_CMD} -e "s+:%%LOCALBASE%%/include/suitesparse++" ${WRKSRC}/site.cfg -.endif - @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+$$(${GCCLIBDIR_CMDS})+" \ - -e "s+%%LOCALBASE%%+${LOCALBASE}+g" \ - ${WRKSRC}/site.cfg - @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+$$(${GCCLIBDIR_CMDS})+" ${WRKSRC}/numpy/distutils/system_info.py + +pre-configure-SUITESPARSE-off: + @${REINPLACE_CMD} -e "s|:%%LOCALBASE%%/include/suitesparse||" ${WRKSRC}/site.cfg post-install: ${INSTALL_MAN} ${WRKSRC}/doc/f2py/f2py.1 ${STAGEDIR}${MANPREFIX}/man/man1/f2py-${PYTHON_VER}.1 .if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION} ${LN} -sf ${MANPREFIX}/man/man1/f2py-${PYTHON_VER}.1 ${STAGEDIR}${MANPREFIX}/man/man1/f2py.1 .endif + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DISTDIR}/numpy-ref-${DOCVERSION}.pdf ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DISTDIR}/numpy-user-${DOCVERSION}.pdf ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59:37 2015 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 7CB22A0F078; Sun, 4 Oct 2015 17:59:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 5338E130F; Sun, 4 Oct 2015 17:59:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94Hxb9w040646; Sun, 4 Oct 2015 17:59:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94Hxarv040642; Sun, 4 Oct 2015 17:59:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94Hxarv040642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Oct 2015 17:59:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398587 - head/science/py-scipy 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: Sun, 04 Oct 2015 17:59:37 -0000 Author: sunpoet Date: Sun Oct 4 17:59:36 2015 New Revision: 398587 URL: https://svnweb.freebsd.org/changeset/ports/398587 Log: - Update to 0.16.0 - Sort USE_PYTHON - Convert to new options target helper - Cosmetic change Changes: https://github.com/scipy/scipy/releases Modified: head/science/py-scipy/Makefile head/science/py-scipy/distinfo Modified: head/science/py-scipy/Makefile ============================================================================== --- head/science/py-scipy/Makefile Sun Oct 4 17:59:31 2015 (r398586) +++ head/science/py-scipy/Makefile Sun Oct 4 17:59:36 2015 (r398587) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= scipy -PORTVERSION= 0.15.1 -PORTREVISION= 1 +PORTVERSION= 0.16.0 CATEGORIES= science python MASTER_SITES= http://docs.scipy.org/doc/${DISTNAME}/:doc \ SF:source @@ -22,12 +21,10 @@ RUN_DEPENDS= ${PYNUMPY} \ swig:${PORTSDIR}/devel/swig13 USES= fortran python -USE_PYTHON= distutils autoplist concurrent - -PYDISTUTILS_CONFIGUREARGS+= --fcompiler=gnu95 -PYDISTUTILS_BUILDARGS+= --fcompiler=gnu95 - +USE_PYTHON= autoplist concurrent distutils LDFLAGS+= -shared +PYDISTUTILS_BUILDARGS= --fcompiler=gnu95 +PYDISTUTILS_CONFIGUREARGS= --fcompiler=gnu95 OPTIONS_DEFINE= DOCS @@ -36,7 +33,7 @@ PORTDOCS= scipy-ref-${PORTVERSION}.pdf post-extract: @${CP} ${DISTDIR}/scipy-ref-${PORTVERSION}.pdf ${WRKDIR} -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/scipy-ref-${PORTVERSION}.pdf ${STAGEDIR}${DOCSDIR} Modified: head/science/py-scipy/distinfo ============================================================================== --- head/science/py-scipy/distinfo Sun Oct 4 17:59:31 2015 (r398586) +++ head/science/py-scipy/distinfo Sun Oct 4 17:59:36 2015 (r398587) @@ -1,4 +1,4 @@ -SHA256 (scipy-0.15.1.tar.gz) = a212cbc3b79e9a563aa45fc5c517b3499198bd7eb7e7be1e047568a5f48c259a -SIZE (scipy-0.15.1.tar.gz) = 11401878 -SHA256 (scipy-ref-0.15.1.pdf) = d96046ddbc91383fb37e3ae2bbdc6945e0c2fc70fa230e0bcda0789e6025ca7e -SIZE (scipy-ref-0.15.1.pdf) = 18313446 +SHA256 (scipy-0.16.0.tar.gz) = 92592f40097098f3fdbe7f5855d535b29bb16719c2bb59c728bce5e7a28790e0 +SIZE (scipy-0.16.0.tar.gz) = 18137295 +SHA256 (scipy-ref-0.16.0.pdf) = 42ec0d07cbb7ea675827b86bc42efd7d030613814ddca895a99d1bf9903d70f1 +SIZE (scipy-ref-0.16.0.pdf) = 34562303 From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59:42 2015 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 50930A0F0C4; Sun, 4 Oct 2015 17:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 411D313E4; Sun, 4 Oct 2015 17:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94HxgoA040760; Sun, 4 Oct 2015 17:59:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94Hxfi7040758; Sun, 4 Oct 2015 17:59:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94Hxfi7040758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Oct 2015 17:59:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398588 - head/science/py-pysal 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