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.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:42 -0000 Author: sunpoet Date: Sun Oct 4 17:59:41 2015 New Revision: 398588 URL: https://svnweb.freebsd.org/changeset/ports/398588 Log: - Update to 1.10.0 - Add LICENSE_FILE - Add TEST_DEPENDS - Add NO_ARCH Changes: https://github.com/pysal/pysal/releases Modified: head/science/py-pysal/Makefile head/science/py-pysal/distinfo Modified: head/science/py-pysal/Makefile ============================================================================== --- head/science/py-pysal/Makefile Sun Oct 4 17:59:36 2015 (r398587) +++ head/science/py-pysal/Makefile Sun Oct 4 17:59:41 2015 (r398588) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pysal -PORTVERSION= 1.8.0 -PORTREVISION= 1 +PORTVERSION= 1.10.0 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,11 +12,14 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cross-platform library of spatial analysis functions LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.3:${PORTSDIR}/math/py-numpy \ ${PYTHON_PKGNAMEPREFIX}scipy>=0.7:${PORTSDIR}/science/py-scipy RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:${PORTSDIR}/devel/py-nose +NO_ARCH= yes USE_PYTHON= autoplist distutils USES= python:2 Modified: head/science/py-pysal/distinfo ============================================================================== --- head/science/py-pysal/distinfo Sun Oct 4 17:59:36 2015 (r398587) +++ head/science/py-pysal/distinfo Sun Oct 4 17:59:41 2015 (r398588) @@ -1,2 +1,2 @@ -SHA256 (PySAL-1.8.0.tar.gz) = 8c79492332dec86d22db0d0c6042689d36a4770f540118a5e5b46a8fc28dbc6b -SIZE (PySAL-1.8.0.tar.gz) = 10214780 +SHA256 (PySAL-1.10.0.tar.gz) = 5ed28da6ee794cee0ffaa03dbcbf00aafc7433dba1f3c39c43a418e9c2d608e1 +SIZE (PySAL-1.10.0.tar.gz) = 13382525 From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59: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 915DBA0F100; Sun, 4 Oct 2015 17:59:47 +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 6967A151F; Sun, 4 Oct 2015 17:59:47 +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 t94Hxl39040891; Sun, 4 Oct 2015 17:59:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94Hxknl040888; Sun, 4 Oct 2015 17:59:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94Hxknl040888@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:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398589 - head/sysutils/py-psutil 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:47 -0000 Author: sunpoet Date: Sun Oct 4 17:59:45 2015 New Revision: 398589 URL: https://svnweb.freebsd.org/changeset/ports/398589 Log: - Update to 3.2.2 - Reformat pkg-descr Changes: https://github.com/giampaolo/psutil/blob/master/HISTORY.rst Modified: head/sysutils/py-psutil/Makefile head/sysutils/py-psutil/distinfo head/sysutils/py-psutil/pkg-descr Modified: head/sysutils/py-psutil/Makefile ============================================================================== --- head/sysutils/py-psutil/Makefile Sun Oct 4 17:59:41 2015 (r398588) +++ head/sysutils/py-psutil/Makefile Sun Oct 4 17:59:45 2015 (r398589) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= psutil -PORTVERSION= 3.2.0 +PORTVERSION= 3.2.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-psutil/distinfo ============================================================================== --- head/sysutils/py-psutil/distinfo Sun Oct 4 17:59:41 2015 (r398588) +++ head/sysutils/py-psutil/distinfo Sun Oct 4 17:59:45 2015 (r398589) @@ -1,2 +1,2 @@ -SHA256 (psutil-3.2.0.tar.gz) = 06f9d255f8b12a6a04aa2b468ec453c539f54a464d110b3458c32b0152a5c943 -SIZE (psutil-3.2.0.tar.gz) = 251988 +SHA256 (psutil-3.2.2.tar.gz) = f9d848e5bd475ffe7fa3ab1c20d249807e648568af64bb0058412296ec990a0c +SIZE (psutil-3.2.2.tar.gz) = 253502 Modified: head/sysutils/py-psutil/pkg-descr ============================================================================== --- head/sysutils/py-psutil/pkg-descr Sun Oct 4 17:59:41 2015 (r398588) +++ head/sysutils/py-psutil/pkg-descr Sun Oct 4 17:59:45 2015 (r398589) @@ -1,7 +1,7 @@ -psutil is a module providing an interface for retrieving information -on running processes and system utilization (CPU, memory) in a portable -way by using Python, implementing many functionalities offered by tools -like ps, top and Windows task manager. +psutil is a module providing an interface for retrieving information on running +processes and system utilization (CPU, memory) in a portable way by using +Python, implementing many functionalities offered by tools like ps, top and +Windows task manager. +WWW: https://pypi.python.org/pypi/psutil WWW: https://github.com/giampaolo/psutil -WWW: https://pypi.python.org/pypi/psutil/ From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59:52 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 3BE86A0F149; Sun, 4 Oct 2015 17:59:52 +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 2C8091626; Sun, 4 Oct 2015 17:59:52 +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 t94HxqnD041008; Sun, 4 Oct 2015 17:59:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94HxpaA041006; Sun, 4 Oct 2015 17:59:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94HxpaA041006@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:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398590 - head/textproc/rubygem-gherkin3 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:52 -0000 Author: sunpoet Date: Sun Oct 4 17:59:50 2015 New Revision: 398590 URL: https://svnweb.freebsd.org/changeset/ports/398590 Log: - Update to 3.1.2 Changes: https://github.com/cucumber/gherkin3/blob/master/CHANGELOG.md Modified: head/textproc/rubygem-gherkin3/Makefile head/textproc/rubygem-gherkin3/distinfo Modified: head/textproc/rubygem-gherkin3/Makefile ============================================================================== --- head/textproc/rubygem-gherkin3/Makefile Sun Oct 4 17:59:45 2015 (r398589) +++ head/textproc/rubygem-gherkin3/Makefile Sun Oct 4 17:59:50 2015 (r398590) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gherkin3 -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-gherkin3/distinfo ============================================================================== --- head/textproc/rubygem-gherkin3/distinfo Sun Oct 4 17:59:45 2015 (r398589) +++ head/textproc/rubygem-gherkin3/distinfo Sun Oct 4 17:59:50 2015 (r398590) @@ -1,2 +1,2 @@ -SHA256 (rubygem/gherkin3-3.1.1.gem) = e9876c26517103c3055f7cb9a12aaa6a171c558b8df8a6f7ef8cbfa030ec5e77 -SIZE (rubygem/gherkin3-3.1.1.gem) = 28160 +SHA256 (rubygem/gherkin3-3.1.2.gem) = 1dc07216c9b19407518780036dd03c936d4391f0bb18a625d707f2ffb36555f1 +SIZE (rubygem/gherkin3-3.1.2.gem) = 28672 From owner-svn-ports-head@freebsd.org Sun Oct 4 17:59: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 DD1CAA0F197; Sun, 4 Oct 2015 17:59:56 +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 CDC991813; Sun, 4 Oct 2015 17:59:56 +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 t94HxuUL041111; Sun, 4 Oct 2015 17:59:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94HxuwD041110; Sun, 4 Oct 2015 17:59:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041759.t94HxuwD041110@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:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398591 - head/devel/rubygem-cucumber 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:57 -0000 Author: sunpoet Date: Sun Oct 4 17:59:56 2015 New Revision: 398591 URL: https://svnweb.freebsd.org/changeset/ports/398591 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-cucumber/Makefile Modified: head/devel/rubygem-cucumber/Makefile ============================================================================== --- head/devel/rubygem-cucumber/Makefile Sun Oct 4 17:59:50 2015 (r398590) +++ head/devel/rubygem-cucumber/Makefile Sun Oct 4 17:59:56 2015 (r398591) @@ -9,6 +9,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Behaviour Driven Development with elegance and joy LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-builder32>=2.1.2:${PORTSDIR}/devel/rubygem-builder32 \ rubygem-cucumber-core>=1.3.0:${PORTSDIR}/devel/rubygem-cucumber-core \ From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:02 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 07098A0F2AA; Sun, 4 Oct 2015 18:00:02 +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 AB2BD1919; Sun, 4 Oct 2015 18:00:01 +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 t94I01ff041277; Sun, 4 Oct 2015 18:00:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I01LF041276; Sun, 4 Oct 2015 18:00:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I01LF041276@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 18:00:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398592 - head/devel/rubygem-cucumber-core 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 18:00:02 -0000 Author: sunpoet Date: Sun Oct 4 18:00:00 2015 New Revision: 398592 URL: https://svnweb.freebsd.org/changeset/ports/398592 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-cucumber-core/Makefile Modified: head/devel/rubygem-cucumber-core/Makefile ============================================================================== --- head/devel/rubygem-cucumber-core/Makefile Sun Oct 4 17:59:56 2015 (r398591) +++ head/devel/rubygem-cucumber-core/Makefile Sun Oct 4 18:00:00 2015 (r398592) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Core library for the Cucumber BDD app LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gherkin3>=3.1.0:${PORTSDIR}/textproc/rubygem-gherkin3 From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00: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 735D9A0F317; Sun, 4 Oct 2015 18:00:11 +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 5B7F11AD3; Sun, 4 Oct 2015 18:00:11 +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 t94I0Bde041539; Sun, 4 Oct 2015 18:00:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0Ax2041537; Sun, 4 Oct 2015 18:00:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0Ax2041537@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 18:00:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398594 - in head/databases/kyotocabinet: . 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 18:00:11 -0000 Author: sunpoet Date: Sun Oct 4 18:00:10 2015 New Revision: 398594 URL: https://svnweb.freebsd.org/changeset/ports/398594 Log: - Convert to new test framework - Pet portlint: fix diff header of patch files Modified: head/databases/kyotocabinet/Makefile head/databases/kyotocabinet/files/patch-kccommon.h Modified: head/databases/kyotocabinet/Makefile ============================================================================== --- head/databases/kyotocabinet/Makefile Sun Oct 4 18:00:05 2015 (r398593) +++ head/databases/kyotocabinet/Makefile Sun Oct 4 18:00:10 2015 (r398594) @@ -20,6 +20,7 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_ARGS= PCDIR=${PREFIX}/libdata/pkgconfig REINPLACE_ARGS= -i '' +TEST_TARGET= check USE_LDCONFIG= yes USES= gmake @@ -34,7 +35,4 @@ post-install: ${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} '{}' \; ${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} '{}' \; -regression-test test: build - cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check - .include Modified: head/databases/kyotocabinet/files/patch-kccommon.h ============================================================================== --- head/databases/kyotocabinet/files/patch-kccommon.h Sun Oct 4 18:00:05 2015 (r398593) +++ head/databases/kyotocabinet/files/patch-kccommon.h Sun Oct 4 18:00:10 2015 (r398594) @@ -1,5 +1,5 @@ ---- kccommon.h.orig 2012-05-25 00:27:59.000000000 +0800 -+++ kccommon.h 2013-12-28 01:25:49.838357594 +0800 +--- kccommon.h.orig 2012-05-24 16:27:59 UTC ++++ kccommon.h @@ -82,7 +82,7 @@ using ::snprintf; } From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:07 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 5A492A0F2DC; Sun, 4 Oct 2015 18:00:07 +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 D34CF1A06; Sun, 4 Oct 2015 18:00:06 +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 t94I06K3041409; Sun, 4 Oct 2015 18:00:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I06sg041407; Sun, 4 Oct 2015 18:00:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I06sg041407@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 18:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398593 - in head/archivers/brotli: . 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 18:00:07 -0000 Author: sunpoet Date: Sun Oct 4 18:00:05 2015 New Revision: 398593 URL: https://svnweb.freebsd.org/changeset/ports/398593 Log: - Fix build on 9.x - Remove unnecessary USE_CXXSTD - Bump PORTREVISION for package change Obtained from: https://github.com/google/brotli/commit/4a7024dcde1aaf30d824ade299e70711a30f4399 MFH: 2015Q4 Added: head/archivers/brotli/files/ head/archivers/brotli/files/patch-freebsd9 (contents, props changed) Modified: head/archivers/brotli/Makefile Modified: head/archivers/brotli/Makefile ============================================================================== --- head/archivers/brotli/Makefile Sun Oct 4 18:00:00 2015 (r398592) +++ head/archivers/brotli/Makefile Sun Oct 4 18:00:05 2015 (r398593) @@ -3,6 +3,7 @@ PORTNAME= brotli PORTVERSION= 0.2.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= archivers @@ -12,7 +13,6 @@ COMMENT= Generic-purpose lossless compre LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_CXXSTD= c++0x USE_PYTHON= autoplist distutils USES= compiler:c++0x python Added: head/archivers/brotli/files/patch-freebsd9 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/brotli/files/patch-freebsd9 Sun Oct 4 18:00:05 2015 (r398593) @@ -0,0 +1,879 @@ +Obtained from: https://github.com/google/brotli/commit/4a7024dcde1aaf30d824ade299e70711a30f4399 + +--- enc/backward_references.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/backward_references.cc +@@ -636,7 +636,7 @@ void CreateBackwardReferences(size_t num + int* num_literals) { + bool zopflify = quality > 9; + if (zopflify) { +- Hashers::H9* hasher = hashers->hash_h9.get(); ++ Hashers::H9* hasher = hashers->hash_h9; + if (num_bytes >= 3 && position >= 3) { + // Prepare the hashes for three last bytes of the last write. + // These could not be calculated before, since they require knowledge +@@ -710,55 +710,55 @@ void CreateBackwardReferences(size_t num + case 1: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h1.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h1, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 2: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h2.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h2, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 3: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h3.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h3, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 4: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h4.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h4, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 5: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h5.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h5, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 6: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h6.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h6, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 7: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h7.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h7, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 8: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h8.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h8, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + case 9: + CreateBackwardReferences( + num_bytes, position, ringbuffer, ringbuffer_mask, max_backward_limit, +- quality, hashers->hash_h9.get(), dist_cache, last_insert_len, ++ quality, hashers->hash_h9, dist_cache, last_insert_len, + commands, num_commands, num_literals); + break; + default: +--- enc/backward_references.h.orig 2015-09-01 13:04:54 UTC ++++ enc/backward_references.h +@@ -17,11 +17,11 @@ + #ifndef BROTLI_ENC_BACKWARD_REFERENCES_H_ + #define BROTLI_ENC_BACKWARD_REFERENCES_H_ + +-#include + #include + + #include "./hash.h" + #include "./command.h" ++#include "./types.h" + + namespace brotli { + +--- enc/bit_cost.h.orig 2015-09-01 13:04:54 UTC ++++ enc/bit_cost.h +@@ -18,10 +18,10 @@ + #define BROTLI_ENC_BIT_COST_H_ + + +-#include + + #include "./entropy_encode.h" + #include "./fast_log.h" ++#include "./types.h" + + namespace brotli { + +--- enc/block_splitter.h.orig 2015-09-01 13:04:54 UTC ++++ enc/block_splitter.h +@@ -17,14 +17,13 @@ + #ifndef BROTLI_ENC_BLOCK_SPLITTER_H_ + #define BROTLI_ENC_BLOCK_SPLITTER_H_ + +-#include +-#include + #include + #include + #include + + #include "./command.h" + #include "./metablock.h" ++#include "./types.h" + + namespace brotli { + +--- enc/brotli_bit_stream.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/brotli_bit_stream.cc +@@ -28,7 +28,6 @@ + #include "./fast_log.h" + #include "./prefix.h" + #include "./write_bits.h" +- + namespace brotli { + + // returns false if fail +@@ -275,6 +274,7 @@ void StoreHuffmanTree(const uint8_t* dep + storage_ix, storage); + } + ++ + void BuildAndStoreHuffmanTree(const int *histogram, + const int length, + uint8_t* depth, +--- enc/brotli_bit_stream.h.orig 2015-09-01 13:04:54 UTC ++++ enc/brotli_bit_stream.h +@@ -24,11 +24,10 @@ + #ifndef BROTLI_ENC_BROTLI_BIT_STREAM_H_ + #define BROTLI_ENC_BROTLI_BIT_STREAM_H_ + +-#include +-#include + #include + + #include "./metablock.h" ++#include "./types.h" + + namespace brotli { + +--- enc/cluster.h.orig 2015-09-01 13:04:54 UTC ++++ enc/cluster.h +@@ -18,7 +18,6 @@ + #define BROTLI_ENC_CLUSTER_H_ + + #include +-#include + #include + #include + #include +@@ -31,6 +30,7 @@ + #include "./entropy_encode.h" + #include "./fast_log.h" + #include "./histogram.h" ++#include "./types.h" + + namespace brotli { + +@@ -264,6 +264,7 @@ void ClusterHistograms(const std::vector + (*histogram_symbols)[i] = i; + } + ++ + const int max_input_histograms = 64; + for (int i = 0; i < in_size; i += max_input_histograms) { + int num_to_combine = std::min(in_size - i, max_input_histograms); +@@ -282,6 +283,7 @@ void ClusterHistograms(const std::vector + + // Convert the context map to a canonical form. + HistogramReindex(out, histogram_symbols); ++ + } + + +--- enc/command.h.orig 2015-09-01 13:04:54 UTC ++++ enc/command.h +@@ -17,9 +17,9 @@ + #ifndef BROTLI_ENC_COMMAND_H_ + #define BROTLI_ENC_COMMAND_H_ + +-#include + #include "./fast_log.h" + #include "./prefix.h" ++#include "./types.h" + + namespace brotli { + +--- enc/context.h.orig 2015-09-01 13:04:54 UTC ++++ enc/context.h +@@ -17,7 +17,7 @@ + #ifndef BROTLI_ENC_CONTEXT_H_ + #define BROTLI_ENC_CONTEXT_H_ + +-#include ++#include "./types.h" + + namespace brotli { + +--- enc/dictionary.h.orig 2015-09-01 13:04:54 UTC ++++ enc/dictionary.h +@@ -17,7 +17,7 @@ + #ifndef BROTLI_ENC_DICTIONARY_H_ + #define BROTLI_ENC_DICTIONARY_H_ + +-#include ++#include "./types.h" + + static const uint8_t kBrotliDictionary[] = { + 0x74, 0x69, 0x6d, 0x65, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x6c, +--- enc/dictionary_hash.h.orig 2015-09-01 13:04:54 UTC ++++ enc/dictionary_hash.h +@@ -17,7 +17,7 @@ + #ifndef BROTLI_ENC_DICTIONARY_HASH_H_ + #define BROTLI_ENC_DICTIONARY_HASH_H_ + +-#include ++#include "./types.h" + + namespace brotli { + +--- enc/encode.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/encode.cc +@@ -125,16 +125,18 @@ void RecomputeDistancePrefixes(Command* + + uint8_t* BrotliCompressor::GetBrotliStorage(size_t size) { + if (storage_size_ < size) { +- storage_.reset(new uint8_t[size]); ++ delete[] storage_; ++ storage_ = new uint8_t[size]; + storage_size_ = size; + } +- return &storage_[0]; ++ return storage_; + } + + BrotliCompressor::BrotliCompressor(BrotliParams params) + : params_(params), + hashers_(new Hashers()), + input_pos_(0), ++ literal_cost_(0), + num_commands_(0), + num_literals_(0), + last_insert_len_(0), +@@ -142,7 +144,8 @@ BrotliCompressor::BrotliCompressor(Brotl + last_processed_pos_(0), + prev_byte_(0), + prev_byte2_(0), +- storage_size_(0) { ++ storage_size_(0), ++ storage_(0) { + // Sanitize params. + params_.quality = std::max(1, params_.quality); + if (params_.lgwin < kMinWindowBits) { +@@ -169,15 +172,15 @@ BrotliCompressor::BrotliCompressor(Brotl + // read_block_size_bits + 1 bits because the copy tail length needs to be + // smaller than ringbuffer size. + int ringbuffer_bits = std::max(params_.lgwin + 1, params_.lgblock + 1); +- ringbuffer_.reset(new RingBuffer(ringbuffer_bits, params_.lgblock)); ++ ringbuffer_ = new RingBuffer(ringbuffer_bits, params_.lgblock); + if (params_.quality > 9) { + literal_cost_mask_ = (1 << params_.lgblock) - 1; +- literal_cost_.reset(new float[literal_cost_mask_ + 1]); ++ literal_cost_ = new float[literal_cost_mask_ + 1]; + } + + // Allocate command buffer. + cmd_buffer_size_ = std::max(1 << 18, 1 << params_.lgblock); +- commands_.reset(new brotli::Command[cmd_buffer_size_]); ++ commands_ = new brotli::Command[cmd_buffer_size_]; + + // Initialize last byte with stream header. + if (params_.lgwin == 16) { +@@ -209,6 +212,11 @@ BrotliCompressor::BrotliCompressor(Brotl + } + + BrotliCompressor::~BrotliCompressor() { ++ delete[] storage_; ++ delete[] literal_cost_; ++ delete[] commands_; ++ delete ringbuffer_; ++ delete hashers_; + } + + void BrotliCompressor::CopyInputToRingBuffer(const size_t input_size, +@@ -292,23 +300,23 @@ bool BrotliCompressor::WriteBrotliData(c + params_.quality >= 9 && + IsMostlyUTF8(&data[last_processed_pos_ & mask], bytes, kMinUTF8Ratio); + +- if (literal_cost_.get()) { ++ if (literal_cost_) { + if (utf8_mode) { + EstimateBitCostsForLiteralsUTF8(last_processed_pos_, bytes, mask, + literal_cost_mask_, data, +- literal_cost_.get()); ++ literal_cost_); + } else { + EstimateBitCostsForLiterals(last_processed_pos_, bytes, mask, + literal_cost_mask_, +- data, literal_cost_.get()); ++ data, literal_cost_); + } + } + CreateBackwardReferences(bytes, last_processed_pos_, data, mask, +- literal_cost_.get(), ++ literal_cost_, + literal_cost_mask_, + max_backward_distance_, + params_.quality, +- hashers_.get(), ++ hashers_, + hash_type_, + dist_cache_, + &last_insert_len_, +@@ -487,14 +495,14 @@ bool BrotliCompressor::WriteMetaBlockInt + if (params_.quality > 9 && params_.mode == BrotliParams::MODE_FONT) { + num_direct_distance_codes = 12; + distance_postfix_bits = 1; +- RecomputeDistancePrefixes(commands_.get(), ++ RecomputeDistancePrefixes(commands_, + num_commands_, + num_direct_distance_codes, + distance_postfix_bits); + } + if (params_.quality < kMinQualityForBlockSplit) { + if (!StoreMetaBlockTrivial(data, last_flush_pos_, bytes, mask, is_last, +- commands_.get(), num_commands_, ++ commands_, num_commands_, + &storage_ix, + &storage[0])) { + return false; +@@ -512,7 +520,7 @@ bool BrotliCompressor::WriteMetaBlockInt + &literal_context_map); + if (literal_context_map == NULL) { + BuildMetaBlockGreedy(data, last_flush_pos_, mask, +- commands_.get(), num_commands_, ++ commands_, num_commands_, + &mb); + } else { + BuildMetaBlockGreedyWithContexts(data, last_flush_pos_, mask, +@@ -520,13 +528,13 @@ bool BrotliCompressor::WriteMetaBlockInt + literal_context_mode, + num_literal_contexts, + literal_context_map, +- commands_.get(), num_commands_, ++ commands_, num_commands_, + &mb); + } + } else { + BuildMetaBlock(data, last_flush_pos_, mask, + prev_byte_, prev_byte2_, +- commands_.get(), num_commands_, ++ commands_, num_commands_, + literal_context_mode, + &mb); + } +@@ -541,7 +549,7 @@ bool BrotliCompressor::WriteMetaBlockInt + num_direct_distance_codes, + distance_postfix_bits, + literal_context_mode, +- commands_.get(), num_commands_, ++ commands_, num_commands_, + mb, + &storage_ix, + &storage[0])) { +@@ -684,7 +692,7 @@ bool BrotliInIsFinished(BrotliIn* r) { + } + + int BrotliCompress(BrotliParams params, BrotliIn* in, BrotliOut* out) { +- return BrotliCompressWithCustomDictionary(0, nullptr, params, in, out); ++ return BrotliCompressWithCustomDictionary(0, 0, params, in, out); + } + + int BrotliCompressWithCustomDictionary(size_t dictsize, const uint8_t* dict, +--- enc/encode.h.orig 2015-09-01 13:04:54 UTC ++++ enc/encode.h +@@ -17,8 +17,6 @@ + #ifndef BROTLI_ENC_ENCODE_H_ + #define BROTLI_ENC_ENCODE_H_ + +-#include +-#include + #include + #include + #include "./command.h" +@@ -26,6 +24,7 @@ + #include "./ringbuffer.h" + #include "./static_dict.h" + #include "./streams.h" ++#include "./types.h" + + namespace brotli { + +@@ -149,14 +148,14 @@ class BrotliCompressor { + + BrotliParams params_; + int max_backward_distance_; +- std::unique_ptr hashers_; ++ Hashers* hashers_; + int hash_type_; + size_t input_pos_; +- std::unique_ptr ringbuffer_; +- std::unique_ptr literal_cost_; ++ RingBuffer* ringbuffer_; ++ float* literal_cost_; + size_t literal_cost_mask_; + size_t cmd_buffer_size_; +- std::unique_ptr commands_; ++ Command* commands_; + int num_commands_; + int num_literals_; + int last_insert_len_; +@@ -169,7 +168,7 @@ class BrotliCompressor { + uint8_t prev_byte_; + uint8_t prev_byte2_; + int storage_size_; +- std::unique_ptr storage_; ++ uint8_t* storage_; + }; + + // Compresses the data in input_buffer into encoded_buffer, and sets +--- enc/encode_parallel.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/encode_parallel.cc +@@ -167,7 +167,7 @@ bool WriteMetaBlockParallel(const Brotli + + // Initialize hashers. + int hash_type = std::min(9, params.quality); +- std::unique_ptr hashers(new Hashers()); ++ Hashers* hashers = new Hashers(); + hashers->Init(hash_type); + + // Compute backward references. +@@ -183,13 +183,14 @@ bool WriteMetaBlockParallel(const Brotli + &literal_cost[0], mask, + max_backward_distance, + params.quality, +- hashers.get(), ++ hashers, + hash_type, + dist_cache, + &last_insert_len, + &commands[0], + &num_commands, + &num_literals); ++ delete hashers; + commands.resize(num_commands); + if (last_insert_len > 0) { + commands.push_back(Command(last_insert_len)); +--- enc/encode_parallel.h.orig 2015-09-01 13:04:54 UTC ++++ enc/encode_parallel.h +@@ -19,10 +19,9 @@ + #ifndef BROTLI_ENC_ENCODE_PARALLEL_H_ + #define BROTLI_ENC_ENCODE_PARALLEL_H_ + +-#include +-#include + + #include "./encode.h" ++#include "./types.h" + + namespace brotli { + +--- enc/entropy_encode.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/entropy_encode.cc +@@ -16,13 +16,13 @@ + + #include "./entropy_encode.h" + +-#include + #include + #include + #include + #include + + #include "./histogram.h" ++#include "./types.h" + + namespace brotli { + +--- enc/entropy_encode.h.orig 2015-09-01 13:04:54 UTC ++++ enc/entropy_encode.h +@@ -17,11 +17,11 @@ + #ifndef BROTLI_ENC_ENTROPY_ENCODE_H_ + #define BROTLI_ENC_ENTROPY_ENCODE_H_ + +-#include + #include + #include + #include "./histogram.h" + #include "./prefix.h" ++#include "./types.h" + + namespace brotli { + +--- enc/fast_log.h.orig 2015-09-01 13:04:54 UTC ++++ enc/fast_log.h +@@ -19,7 +19,8 @@ + + #include + #include +-#include ++ ++#include "./types.h" + + namespace brotli { + +--- enc/find_match_length.h.orig 2015-09-01 13:04:54 UTC ++++ enc/find_match_length.h +@@ -17,11 +17,9 @@ + #ifndef BROTLI_ENC_FIND_MATCH_LENGTH_H_ + #define BROTLI_ENC_FIND_MATCH_LENGTH_H_ + +-#include +- +-#include + + #include "./port.h" ++#include "./types.h" + + namespace brotli { + +--- enc/hash.h.orig 2015-09-01 13:04:54 UTC ++++ enc/hash.h +@@ -18,8 +18,6 @@ + #ifndef BROTLI_ENC_HASH_H_ + #define BROTLI_ENC_HASH_H_ + +-#include +-#include + #include + #include + #include +@@ -34,6 +32,7 @@ + #include "./prefix.h" + #include "./static_dict.h" + #include "./transform.h" ++#include "./types.h" + + namespace brotli { + +@@ -631,17 +630,32 @@ struct Hashers { + typedef HashLongestMatch<15, 7, 10> H8; + typedef HashLongestMatch<15, 8, 16> H9; + ++ Hashers() : hash_h1(0), hash_h2(0), hash_h3(0), hash_h4(0), hash_h5(0), ++ hash_h6(0), hash_h7(0), hash_h8(0), hash_h9(0) {} ++ ++ ~Hashers() { ++ delete hash_h1; ++ delete hash_h2; ++ delete hash_h3; ++ delete hash_h4; ++ delete hash_h5; ++ delete hash_h6; ++ delete hash_h7; ++ delete hash_h8; ++ delete hash_h9; ++ } ++ + void Init(int type) { + switch (type) { +- case 1: hash_h1.reset(new H1); break; +- case 2: hash_h2.reset(new H2); break; +- case 3: hash_h3.reset(new H3); break; +- case 4: hash_h4.reset(new H4); break; +- case 5: hash_h5.reset(new H5); break; +- case 6: hash_h6.reset(new H6); break; +- case 7: hash_h7.reset(new H7); break; +- case 8: hash_h8.reset(new H8); break; +- case 9: hash_h9.reset(new H9); break; ++ case 1: hash_h1 = new H1; break; ++ case 2: hash_h2 = new H2; break; ++ case 3: hash_h3 = new H3; break; ++ case 4: hash_h4 = new H4; break; ++ case 5: hash_h5 = new H5; break; ++ case 6: hash_h6 = new H6; break; ++ case 7: hash_h7 = new H7; break; ++ case 8: hash_h8 = new H8; break; ++ case 9: hash_h9 = new H9; break; + default: break; + } + } +@@ -657,28 +671,28 @@ struct Hashers { + void PrependCustomDictionary( + int type, const size_t size, const uint8_t* dict) { + switch (type) { +- case 1: WarmupHash(size, dict, hash_h1.get()); break; +- case 2: WarmupHash(size, dict, hash_h2.get()); break; +- case 3: WarmupHash(size, dict, hash_h3.get()); break; +- case 4: WarmupHash(size, dict, hash_h4.get()); break; +- case 5: WarmupHash(size, dict, hash_h5.get()); break; +- case 6: WarmupHash(size, dict, hash_h6.get()); break; +- case 7: WarmupHash(size, dict, hash_h7.get()); break; +- case 8: WarmupHash(size, dict, hash_h8.get()); break; +- case 9: WarmupHash(size, dict, hash_h9.get()); break; ++ case 1: WarmupHash(size, dict, hash_h1); break; ++ case 2: WarmupHash(size, dict, hash_h2); break; ++ case 3: WarmupHash(size, dict, hash_h3); break; ++ case 4: WarmupHash(size, dict, hash_h4); break; ++ case 5: WarmupHash(size, dict, hash_h5); break; ++ case 6: WarmupHash(size, dict, hash_h6); break; ++ case 7: WarmupHash(size, dict, hash_h7); break; ++ case 8: WarmupHash(size, dict, hash_h8); break; ++ case 9: WarmupHash(size, dict, hash_h9); break; + default: break; + } + } + +- std::unique_ptr

hash_h1; +- std::unique_ptr

hash_h2; +- std::unique_ptr

hash_h3; +- std::unique_ptr

hash_h4; +- std::unique_ptr

hash_h5; +- std::unique_ptr
hash_h6; +- std::unique_ptr hash_h7; +- std::unique_ptr hash_h8; +- std::unique_ptr hash_h9; ++ H1* hash_h1; ++ H2* hash_h2; ++ H3* hash_h3; ++ H4* hash_h4; ++ H5* hash_h5; ++ H6* hash_h6; ++ H7* hash_h7; ++ H8* hash_h8; ++ H9* hash_h9; + }; + + } // namespace brotli +--- enc/histogram.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/histogram.cc +@@ -16,7 +16,6 @@ + + #include "./histogram.h" + +-#include + #include + + #include "./block_splitter.h" +--- enc/histogram.h.orig 2015-09-01 13:04:54 UTC ++++ enc/histogram.h +@@ -17,13 +17,13 @@ + #ifndef BROTLI_ENC_HISTOGRAM_H_ + #define BROTLI_ENC_HISTOGRAM_H_ + +-#include + #include + #include + #include + #include "./command.h" + #include "./fast_log.h" + #include "./prefix.h" ++#include "./types.h" + + namespace brotli { + +--- enc/literal_cost.cc.orig 2015-09-01 13:04:54 UTC ++++ enc/literal_cost.cc +@@ -17,10 +17,10 @@ + #include "./literal_cost.h" + + #include +-#include + #include + + #include "./fast_log.h" ++#include "./types.h" + + namespace brotli { + +--- enc/literal_cost.h.orig 2015-09-01 13:04:54 UTC ++++ enc/literal_cost.h +@@ -17,8 +17,7 @@ + #ifndef BROTLI_ENC_LITERAL_COST_H_ + #define BROTLI_ENC_LITERAL_COST_H_ + +-#include +-#include ++#include "./types.h" + + namespace brotli { + +--- enc/port.h.orig 2015-09-01 13:04:54 UTC ++++ enc/port.h +@@ -18,6 +18,7 @@ + #define BROTLI_ENC_PORT_H_ + + #include ++#include "./types.h" + + #if defined OS_LINUX || defined OS_CYGWIN + #include +--- enc/prefix.h.orig 2015-09-01 13:04:54 UTC ++++ enc/prefix.h +@@ -18,8 +18,8 @@ + #ifndef BROTLI_ENC_PREFIX_H_ + #define BROTLI_ENC_PREFIX_H_ + +-#include + #include "./fast_log.h" ++#include "./types.h" + + namespace brotli { + +--- enc/ringbuffer.h.orig 2015-09-01 13:04:54 UTC ++++ enc/ringbuffer.h +@@ -17,10 +17,9 @@ + #ifndef BROTLI_ENC_RINGBUFFER_H_ + #define BROTLI_ENC_RINGBUFFER_H_ + +-#include +-#include + + #include "./port.h" ++#include "./types.h" + + namespace brotli { + +--- enc/static_dict.h.orig 2015-09-01 13:04:54 UTC ++++ enc/static_dict.h +@@ -17,7 +17,7 @@ + #ifndef BROTLI_ENC_STATIC_DICT_H_ + #define BROTLI_ENC_STATIC_DICT_H_ + +-#include ++#include "./types.h" + + namespace brotli { + +--- enc/static_dict_lut.h.orig 2015-09-01 13:04:54 UTC ++++ enc/static_dict_lut.h +@@ -17,7 +17,7 @@ + #ifndef BROTLI_ENC_DICTIONARY_LUT_H_ + #define BROTLI_ENC_DICTIONARY_LUT_H_ + +-#include ++#include "./types.h" + + namespace brotli { + +--- enc/streams.h.orig 2015-09-01 13:04:54 UTC ++++ enc/streams.h +@@ -17,9 +17,10 @@ + #ifndef BROTLI_ENC_STREAMS_H_ + #define BROTLI_ENC_STREAMS_H_ + +-#include + #include + #include ++#include "./port.h" ++#include "./types.h" + + namespace brotli { + +@@ -56,7 +57,7 @@ class BrotliMemIn : public BrotliIn { + // returns the amount of data consumed + int position() const { return pos_; } + +- const void* Read(size_t n, size_t* OUTPUT) override; ++ const void* Read(size_t n, size_t* OUTPUT); + + private: + const void* buf_; // start of input buffer +@@ -74,7 +75,7 @@ class BrotliMemOut : public BrotliOut { + // returns the amount of data written + int position() const { return pos_; } + +- bool Write(const void* buf, size_t n) override; ++ bool Write(const void* buf, size_t n); + + private: + void* buf_; // start of output buffer +@@ -92,7 +93,7 @@ class BrotliStringOut : public BrotliOut + + void Reset(std::string* buf, int max_len); + +- bool Write(const void* buf, size_t n) override; ++ bool Write(const void* buf, size_t n); + + private: + std::string* buf_; // start of output buffer +@@ -105,7 +106,7 @@ class BrotliFileIn : public BrotliIn { + BrotliFileIn(FILE* f, size_t max_read_size); + ~BrotliFileIn(); + +- const void* Read(size_t n, size_t* bytes_read) override; ++ const void* Read(size_t n, size_t* bytes_read); + + private: + FILE* f_; +@@ -118,7 +119,7 @@ class BrotliFileOut : public BrotliOut { + public: + explicit BrotliFileOut(FILE* f); + +- bool Write(const void* buf, size_t n) override; ++ bool Write(const void* buf, size_t n); + private: + FILE* f_; + }; +--- enc/types.h.orig 2015-10-04 15:45:23 UTC ++++ enc/types.h +@@ -0,0 +1,36 @@ ++/* Copyright 2013 Google Inc. All Rights Reserved. ++ ++ Licensed under the Apache License, Version 2.0 (the "License"); ++ you may not use this file except in compliance with the License. ++ You may obtain a copy of the License at ++ ++ http://www.apache.org/licenses/LICENSE-2.0 ++ ++ Unless required by applicable law or agreed to in writing, software ++ distributed under the License is distributed on an "AS IS" BASIS, ++ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++ See the License for the specific language governing permissions and ++ limitations under the License. ++*/ ++ ++/* Common types */ ++ ++#ifndef BROTLI_ENC_TYPES_H_ ++#define BROTLI_ENC_TYPES_H_ ++ ++#include /* for size_t */ ++ ++#if defined(_MSC_VER) && (_MSC_VER < 1600) ++typedef signed char int8_t; ++typedef unsigned char uint8_t; ++typedef signed short int16_t; ++typedef unsigned short uint16_t; ++typedef signed int int32_t; ++typedef unsigned int uint32_t; ++typedef unsigned long long int uint64_t; ++typedef long long int int64_t; ++#else ++#include ++#endif /* defined(_MSC_VER) && (_MSC_VER < 1600) */ ++ ++#endif /* BROTLI_ENC_TYPES_H_ */ +--- enc/write_bits.h.orig 2015-09-01 13:04:54 UTC ++++ enc/write_bits.h +@@ -18,10 +18,10 @@ + #define BROTLI_ENC_WRITE_BITS_H_ + + #include +-#include + #include + + #include "./port.h" ++#include "./types.h" + + namespace brotli { + +--- setup.py.orig 2015-09-01 13:04:54 UTC ++++ setup.py +@@ -175,6 +175,7 @@ brotli = Extension("brotli", + "enc/static_dict_lut.h", + "enc/streams.h", + "enc/transform.h", ++ "enc/types.h", + "enc/write_bits.h", + "dec/bit_reader.h", + "dec/context.h", From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:16 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 2A6C3A0F35A; Sun, 4 Oct 2015 18:00:16 +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 1A7731BF3; Sun, 4 Oct 2015 18:00:16 +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 t94I0FKg041658; Sun, 4 Oct 2015 18:00:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0FMd041656; Sun, 4 Oct 2015 18:00:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0FMd041656@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 18:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398595 - in head/databases/kyototycoon: . 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 18:00:16 -0000 Author: sunpoet Date: Sun Oct 4 18:00:14 2015 New Revision: 398595 URL: https://svnweb.freebsd.org/changeset/ports/398595 Log: - Convert to new test framework - Pet portlint: fix diff header of patch files Modified: head/databases/kyototycoon/Makefile head/databases/kyototycoon/files/patch-ktdbext.h Modified: head/databases/kyototycoon/Makefile ============================================================================== --- head/databases/kyototycoon/Makefile Sun Oct 4 18:00:10 2015 (r398594) +++ head/databases/kyototycoon/Makefile Sun Oct 4 18:00:14 2015 (r398595) @@ -23,6 +23,7 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_ARGS= PCDIR=${PREFIX}/libdata/pkgconfig REINPLACE_ARGS= -i '' +TEST_TARGET= check USE_LDCONFIG= yes USES= gmake pkgconfig @@ -34,7 +35,4 @@ post-install: ${FIND} ${STAGEDIR}${DOCSDIR}/ -type d -exec ${CHMOD} ${BINMODE} '{}' \; ${FIND} ${STAGEDIR}${DOCSDIR}/ -type f -exec ${CHMOD} ${DOCMODE} '{}' \; -regression-test test: build - cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check - .include Modified: head/databases/kyototycoon/files/patch-ktdbext.h ============================================================================== --- head/databases/kyototycoon/files/patch-ktdbext.h Sun Oct 4 18:00:10 2015 (r398594) +++ head/databases/kyototycoon/files/patch-ktdbext.h Sun Oct 4 18:00:14 2015 (r398595) @@ -1,5 +1,5 @@ ---- ktdbext.h.orig 2012-05-25 01:44:34.000000000 +0800 -+++ ktdbext.h 2013-12-28 01:21:30.081508681 +0800 +--- ktdbext.h.orig 2012-05-24 17:44:34 UTC ++++ ktdbext.h @@ -16,6 +16,7 @@ #ifndef _KTDBEXT_H // duplication check #define _KTDBEXT_H From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00: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 05E7EA0F39E; Sun, 4 Oct 2015 18:00:21 +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 BD1131CFD; Sun, 4 Oct 2015 18:00:20 +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 t94I0KU2041760; Sun, 4 Oct 2015 18:00:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0KWg041759; Sun, 4 Oct 2015 18:00:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0KWg041759@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 18:00:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398596 - head/databases/leveldb 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 18:00:21 -0000 Author: sunpoet Date: Sun Oct 4 18:00:19 2015 New Revision: 398596 URL: https://svnweb.freebsd.org/changeset/ports/398596 Log: - Convert to new test framework Modified: head/databases/leveldb/Makefile Modified: head/databases/leveldb/Makefile ============================================================================== --- head/databases/leveldb/Makefile Sun Oct 4 18:00:14 2015 (r398595) +++ head/databases/leveldb/Makefile Sun Oct 4 18:00:19 2015 (r398596) @@ -16,6 +16,7 @@ OPTIONS_DEFINE= GPERFTOOLS SNAPPY OPTIONS_DEFAULT=SNAPPY LDFLAGS+= -L${LOCALBASE}/lib +TEST_TARGET= check USE_LDCONFIG= yes USES= compiler:c++0x gmake @@ -64,7 +65,4 @@ do-install: ${GREP} '^PLATFORM_CXXFLAGS=' ${WRKSRC}/build_config.mk | ${SED} 's|PLATFORM_CXXFLAGS|PLATFORM_CFLAGS|' >> ${WRKSRC}/build_config.mk ${INSTALL_DATA} ${WRKSRC}/build_config.mk ${STAGEDIR}${DATADIR}/ -regression-test test: build - cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check - .include From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:24 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 D31F7A0F3E5; Sun, 4 Oct 2015 18:00:24 +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 C3C6E1DC9; Sun, 4 Oct 2015 18:00:24 +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 t94I0OtT041861; Sun, 4 Oct 2015 18:00:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0O14041860; Sun, 4 Oct 2015 18:00:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0O14041860@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 18:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398597 - head/databases/pgsphere 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 18:00:24 -0000 Author: sunpoet Date: Sun Oct 4 18:00:23 2015 New Revision: 398597 URL: https://svnweb.freebsd.org/changeset/ports/398597 Log: - Convert to new test framework Modified: head/databases/pgsphere/Makefile Modified: head/databases/pgsphere/Makefile ============================================================================== --- head/databases/pgsphere/Makefile Sun Oct 4 18:00:19 2015 (r398596) +++ head/databases/pgsphere/Makefile Sun Oct 4 18:00:23 2015 (r398597) @@ -18,6 +18,7 @@ OPTIONS_DEFINE= DOCS MAKE_ARGS= PG_CONFIG=${LOCALBASE}/bin/pg_config USE_PGXS=1 \ docdir=${DOCSDIR} \ install_bin=/usr/bin/install +TEST_TARGET= installcheck USE_LDCONFIG= yes USES= gmake pgsql @@ -36,7 +37,4 @@ post-patch: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_sphere.so -regression-test test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} installcheck - .include From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:30 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 6F663A0F419; Sun, 4 Oct 2015 18:00:30 +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 269611EF1; Sun, 4 Oct 2015 18:00:30 +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 t94I0TkU041992; Sun, 4 Oct 2015 18:00:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0Tfl041989; Sun, 4 Oct 2015 18:00:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0Tfl041989@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 18:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398598 - head/math/p5-Math-BigInt 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 18:00:30 -0000 Author: sunpoet Date: Sun Oct 4 18:00:28 2015 New Revision: 398598 URL: https://svnweb.freebsd.org/changeset/ports/398598 Log: - Update to 1.999704 Changes: http://search.cpan.org/dist/Math-BigInt/CHANGES PR: 203206 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 15 days) Modified: head/math/p5-Math-BigInt/Makefile head/math/p5-Math-BigInt/distinfo head/math/p5-Math-BigInt/pkg-descr Modified: head/math/p5-Math-BigInt/Makefile ============================================================================== --- head/math/p5-Math-BigInt/Makefile Sun Oct 4 18:00:23 2015 (r398597) +++ head/math/p5-Math-BigInt/Makefile Sun Oct 4 18:00:28 2015 (r398598) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-BigInt -PORTVERSION= 1.9993 +PORTVERSION= 1.999704 CATEGORIES= math perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PJACKLAM Modified: head/math/p5-Math-BigInt/distinfo ============================================================================== --- head/math/p5-Math-BigInt/distinfo Sun Oct 4 18:00:23 2015 (r398597) +++ head/math/p5-Math-BigInt/distinfo Sun Oct 4 18:00:28 2015 (r398598) @@ -1,2 +1,2 @@ -SHA256 (Math-BigInt-1.9993.tar.gz) = d937c0d1afbb3ddd9b666177faf56471b6c2d1917863db5879d04a2d1a69bf7e -SIZE (Math-BigInt-1.9993.tar.gz) = 215143 +SHA256 (Math-BigInt-1.999704.tar.gz) = af03da7e30b4e19f79c87d87b8c66938139a8162b35e45986480234016bae5d8 +SIZE (Math-BigInt-1.999704.tar.gz) = 223552 Modified: head/math/p5-Math-BigInt/pkg-descr ============================================================================== --- head/math/p5-Math-BigInt/pkg-descr Sun Oct 4 18:00:23 2015 (r398597) +++ head/math/p5-Math-BigInt/pkg-descr Sun Oct 4 18:00:28 2015 (r398598) @@ -4,6 +4,3 @@ This is a complete rewrite of Math::BigI which are included with the standard system perl. WWW: http://search.cpan.org/dist/Math-BigInt/ - --Anton - From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:40 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 E5278A0F4CE; Sun, 4 Oct 2015 18:00:40 +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 962321111; Sun, 4 Oct 2015 18:00:40 +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 t94I0ebw042255; Sun, 4 Oct 2015 18:00:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0drm042252; Sun, 4 Oct 2015 18:00:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0drm042252@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 18:00:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398600 - head/math/p5-Math-BigInt-Pari 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 18:00:41 -0000 Author: sunpoet Date: Sun Oct 4 18:00:38 2015 New Revision: 398600 URL: https://svnweb.freebsd.org/changeset/ports/398600 Log: - Update to 1.21 - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Math-BigInt-Pari/CHANGES Modified: head/math/p5-Math-BigInt-Pari/Makefile head/math/p5-Math-BigInt-Pari/distinfo head/math/p5-Math-BigInt-Pari/pkg-plist Modified: head/math/p5-Math-BigInt-Pari/Makefile ============================================================================== --- head/math/p5-Math-BigInt-Pari/Makefile Sun Oct 4 18:00:33 2015 (r398599) +++ head/math/p5-Math-BigInt-Pari/Makefile Sun Oct 4 18:00:38 2015 (r398600) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Math-BigInt-Pari -PORTVERSION= 1.18 -PORTREVISION= 1 +PORTVERSION= 1.21 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,10 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use Math::Pari for Math::BigInt routines -BUILD_DEPENDS= p5-Math-BigInt>=1.9993:${PORTSDIR}/math/p5-Math-BigInt \ +BUILD_DEPENDS= p5-Math-BigInt>=1.999703:${PORTSDIR}/math/p5-Math-BigInt \ p5-Math-Pari>=2.010709:${PORTSDIR}/math/p5-Math-Pari RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/math/p5-Math-BigInt-Pari/distinfo ============================================================================== --- head/math/p5-Math-BigInt-Pari/distinfo Sun Oct 4 18:00:33 2015 (r398599) +++ head/math/p5-Math-BigInt-Pari/distinfo Sun Oct 4 18:00:38 2015 (r398600) @@ -1,2 +1,2 @@ -SHA256 (Math-BigInt-Pari-1.18.tar.gz) = 4f7c027e4f4d90897d648118686b2d41581d999301fec0675b30d77f4d9629db -SIZE (Math-BigInt-Pari-1.18.tar.gz) = 85829 +SHA256 (Math-BigInt-Pari-1.21.tar.gz) = 2b4ec298968c8c31a53c70d4d9d33da998fce9d5468aaa07143b4f97fa6b334f +SIZE (Math-BigInt-Pari-1.21.tar.gz) = 59044 Modified: head/math/p5-Math-BigInt-Pari/pkg-plist ============================================================================== --- head/math/p5-Math-BigInt-Pari/pkg-plist Sun Oct 4 18:00:33 2015 (r398599) +++ head/math/p5-Math-BigInt-Pari/pkg-plist Sun Oct 4 18:00:38 2015 (r398600) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Math::BigInt::Pari.3.gz %%SITE_PERL%%/Math/BigInt/Pari.pm +%%PERL5_MAN3%%/Math::BigInt::Pari.3.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00:35 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 543BAA0F484; Sun, 4 Oct 2015 18:00:35 +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 229991FEE; Sun, 4 Oct 2015 18:00:35 +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 t94I0Ykx042122; Sun, 4 Oct 2015 18:00:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0YwQ042120; Sun, 4 Oct 2015 18:00:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0YwQ042120@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 18:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398599 - head/math/p5-Math-BigInt-GMP 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 18:00:35 -0000 Author: sunpoet Date: Sun Oct 4 18:00:33 2015 New Revision: 398599 URL: https://svnweb.freebsd.org/changeset/ports/398599 Log: - Update to 1.43 Changes: http://search.cpan.org/dist/Math-BigInt-GMP/CHANGES Modified: head/math/p5-Math-BigInt-GMP/Makefile head/math/p5-Math-BigInt-GMP/distinfo Modified: head/math/p5-Math-BigInt-GMP/Makefile ============================================================================== --- head/math/p5-Math-BigInt-GMP/Makefile Sun Oct 4 18:00:28 2015 (r398598) +++ head/math/p5-Math-BigInt-GMP/Makefile Sun Oct 4 18:00:33 2015 (r398599) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-BigInt-GMP -PORTVERSION= 1.40 +PORTVERSION= 1.43 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +13,7 @@ COMMENT= Math::BigInt::GMP - Use the GMP LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.9993:${PORTSDIR}/math/p5-Math-BigInt +BUILD_DEPENDS= p5-Math-BigInt>=1.999703:${PORTSDIR}/math/p5-Math-BigInt LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/math/p5-Math-BigInt-GMP/distinfo ============================================================================== --- head/math/p5-Math-BigInt-GMP/distinfo Sun Oct 4 18:00:28 2015 (r398598) +++ head/math/p5-Math-BigInt-GMP/distinfo Sun Oct 4 18:00:33 2015 (r398599) @@ -1,2 +1,2 @@ -SHA256 (Math-BigInt-GMP-1.40.tar.gz) = 3892881cf98e30642336cdb3d394a0105ea74b4f63db5eccee75b84b29822d54 -SIZE (Math-BigInt-GMP-1.40.tar.gz) = 56173 +SHA256 (Math-BigInt-GMP-1.43.tar.gz) = 5ad44fdb7ce96222e939206c132a5f588e5388af8cc19b2fbbed923f832fb146 +SIZE (Math-BigInt-GMP-1.43.tar.gz) = 56702 From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00: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 C404DA0F512; Sun, 4 Oct 2015 18:00:45 +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 9C08C119F; Sun, 4 Oct 2015 18:00:45 +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 t94I0jIu042388; Sun, 4 Oct 2015 18:00:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0i9d042384; Sun, 4 Oct 2015 18:00:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0i9d042384@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 18:00:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398601 - head/math/p5-Math-BigInt-FastCalc 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 18:00:45 -0000 Author: sunpoet Date: Sun Oct 4 18:00:44 2015 New Revision: 398601 URL: https://svnweb.freebsd.org/changeset/ports/398601 Log: - Update to 0.34 - Add LICENSE - Strip shared library - Sort PLIST Changes: http://search.cpan.org/dist/Math-BigInt-FastCalc/CHANGES Modified: head/math/p5-Math-BigInt-FastCalc/Makefile head/math/p5-Math-BigInt-FastCalc/distinfo head/math/p5-Math-BigInt-FastCalc/pkg-plist Modified: head/math/p5-Math-BigInt-FastCalc/Makefile ============================================================================== --- head/math/p5-Math-BigInt-FastCalc/Makefile Sun Oct 4 18:00:38 2015 (r398600) +++ head/math/p5-Math-BigInt-FastCalc/Makefile Sun Oct 4 18:00:44 2015 (r398601) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Math-BigInt-FastCalc -PORTVERSION= 0.31 -PORTREVISION= 1 +PORTVERSION= 0.34 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,12 +10,18 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Math::BigInt::Calc with some XS for more speed -BUILD_DEPENDS= p5-Math-BigInt>=1.9993:${PORTSDIR}/math/p5-Math-BigInt +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Math-BigInt>=1.999703:${PORTSDIR}/math/p5-Math-BigInt RUN_DEPENDS:= ${BUILD_DEPENDS} +PORTSCOUT= skipv:0.251 + USES= perl5 USE_PERL5= configure -PORTSCOUT= skipv:0.251 +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/BigInt/FastCalc/FastCalc.so .include Modified: head/math/p5-Math-BigInt-FastCalc/distinfo ============================================================================== --- head/math/p5-Math-BigInt-FastCalc/distinfo Sun Oct 4 18:00:38 2015 (r398600) +++ head/math/p5-Math-BigInt-FastCalc/distinfo Sun Oct 4 18:00:44 2015 (r398601) @@ -1,2 +1,2 @@ -SHA256 (Math-BigInt-FastCalc-0.31.tar.gz) = 89bfbe4132793ca26592bcedc264588c377bcda5bdf46972a5bad8c20823368b -SIZE (Math-BigInt-FastCalc-0.31.tar.gz) = 66291 +SHA256 (Math-BigInt-FastCalc-0.34.tar.gz) = f905b0d46cb35732b501857bdb2a5b5cda01251c9601bc7d427a0defda8cf6e5 +SIZE (Math-BigInt-FastCalc-0.34.tar.gz) = 67320 Modified: head/math/p5-Math-BigInt-FastCalc/pkg-plist ============================================================================== --- head/math/p5-Math-BigInt-FastCalc/pkg-plist Sun Oct 4 18:00:38 2015 (r398600) +++ head/math/p5-Math-BigInt-FastCalc/pkg-plist Sun Oct 4 18:00:44 2015 (r398601) @@ -1,3 +1,3 @@ -%%PERL5_MAN3%%/Math::BigInt::FastCalc.3.gz %%SITE_ARCH%%/Math/BigInt/FastCalc.pm %%SITE_ARCH%%/auto/Math/BigInt/FastCalc/FastCalc.so +%%PERL5_MAN3%%/Math::BigInt::FastCalc.3.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00: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 95114A0F556; Sun, 4 Oct 2015 18:00:50 +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 85BF61279; Sun, 4 Oct 2015 18:00:50 +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 t94I0odj042502; Sun, 4 Oct 2015 18:00:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0ogV042500; Sun, 4 Oct 2015 18:00:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0ogV042500@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 18:00:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398602 - head/devel/p5-Minion 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 18:00:50 -0000 Author: sunpoet Date: Sun Oct 4 18:00:49 2015 New Revision: 398602 URL: https://svnweb.freebsd.org/changeset/ports/398602 Log: - Update to 2.01 Changes: http://search.cpan.org/dist/Minion/Changes Modified: head/devel/p5-Minion/Makefile head/devel/p5-Minion/distinfo Modified: head/devel/p5-Minion/Makefile ============================================================================== --- head/devel/p5-Minion/Makefile Sun Oct 4 18:00:44 2015 (r398601) +++ head/devel/p5-Minion/Makefile Sun Oct 4 18:00:49 2015 (r398602) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Minion -PORTVERSION= 2.0 +PORTVERSION= 2.01 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/devel/p5-Minion/distinfo ============================================================================== --- head/devel/p5-Minion/distinfo Sun Oct 4 18:00:44 2015 (r398601) +++ head/devel/p5-Minion/distinfo Sun Oct 4 18:00:49 2015 (r398602) @@ -1,2 +1,2 @@ -SHA256 (Minion-2.0.tar.gz) = 89bae9641891e5a7ae2ef90f9fac7cba1f96b316121c8eb895889f366e4c925e -SIZE (Minion-2.0.tar.gz) = 26739 +SHA256 (Minion-2.01.tar.gz) = db41fe4951bc2055061a186105d0abe7680a0a717cefdb4c510d25b0fc8bc875 +SIZE (Minion-2.01.tar.gz) = 26715 From owner-svn-ports-head@freebsd.org Sun Oct 4 18:00: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 AE1B7A0F591; Sun, 4 Oct 2015 18:00:56 +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 7C32413C3; Sun, 4 Oct 2015 18:00:56 +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 t94I0urg042635; Sun, 4 Oct 2015 18:00:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I0tES042632; Sun, 4 Oct 2015 18:00:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041800.t94I0tES042632@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 18:00:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398603 - head/devel/p5-Perl6-Export-Attrs 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 18:00:56 -0000 Author: sunpoet Date: Sun Oct 4 18:00:54 2015 New Revision: 398603 URL: https://svnweb.freebsd.org/changeset/ports/398603 Log: - Update to 0.000004 - Add LICENSE - Remove leading definite article from COMMENT - Add NO_ARCH - Fix *_DEPENDS: Attribute::Handlers is already in all supported Perl releases - Sort PLIST Changes: http://search.cpan.org/dist/Perl6-Export-Attrs/Changes Modified: head/devel/p5-Perl6-Export-Attrs/Makefile head/devel/p5-Perl6-Export-Attrs/distinfo head/devel/p5-Perl6-Export-Attrs/pkg-plist Modified: head/devel/p5-Perl6-Export-Attrs/Makefile ============================================================================== --- head/devel/p5-Perl6-Export-Attrs/Makefile Sun Oct 4 18:00:49 2015 (r398602) +++ head/devel/p5-Perl6-Export-Attrs/Makefile Sun Oct 4 18:00:54 2015 (r398603) @@ -2,18 +2,18 @@ # $FreeBSD$ PORTNAME= Perl6-Export-Attrs -PORTVERSION= 0.0.3 -PORTREVISION= 2 +PORTVERSION= 0.000004 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org -COMMENT= The Perl 6 'is export(...)' trait as a Perl 5 attribute +COMMENT= Perl 6 'is export(...)' trait as a Perl 5 attribute -BUILD_DEPENDS= p5-Attribute-Handlers>=0:${PORTSDIR}/devel/p5-Attribute-Handlers -RUN_DEPENDS:= ${BUILD_DEPENDS} +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Perl6-Export-Attrs/distinfo ============================================================================== --- head/devel/p5-Perl6-Export-Attrs/distinfo Sun Oct 4 18:00:49 2015 (r398602) +++ head/devel/p5-Perl6-Export-Attrs/distinfo Sun Oct 4 18:00:54 2015 (r398603) @@ -1,2 +1,2 @@ -SHA256 (Perl6-Export-Attrs-0.0.3.tar.gz) = 031c9b2c467423a513665ff0ab2d4c6e3412320bc5877c7ab734de869101b361 -SIZE (Perl6-Export-Attrs-0.0.3.tar.gz) = 5132 +SHA256 (Perl6-Export-Attrs-0.000004.tar.gz) = ac4dcebbff89a5eee93715fad8e1c93c2948ad431ffed2301714833ebc32d06d +SIZE (Perl6-Export-Attrs-0.000004.tar.gz) = 6714 Modified: head/devel/p5-Perl6-Export-Attrs/pkg-plist ============================================================================== --- head/devel/p5-Perl6-Export-Attrs/pkg-plist Sun Oct 4 18:00:49 2015 (r398602) +++ head/devel/p5-Perl6-Export-Attrs/pkg-plist Sun Oct 4 18:00:54 2015 (r398603) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Perl6::Export::Attrs.3.gz %%SITE_PERL%%/Perl6/Export/Attrs.pm +%%PERL5_MAN3%%/Perl6::Export::Attrs.3.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:02 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 8C54BA0F5D7; Sun, 4 Oct 2015 18:01:02 +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 5956314ED; Sun, 4 Oct 2015 18:01:02 +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 t94I12g5042772; Sun, 4 Oct 2015 18:01:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I116Q042769; Sun, 4 Oct 2015 18:01:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I116Q042769@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 18:01:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398604 - head/devel/p5-Test-DBIx-Class 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 18:01:02 -0000 Author: sunpoet Date: Sun Oct 4 18:01:00 2015 New Revision: 398604 URL: https://svnweb.freebsd.org/changeset/ports/398604 Log: - Update to 0.45 - Fix *_DEPENDS: Test::Deep is a build/runtime dependency - Sort PLIST Changes: http://search.cpan.org/dist/Test-DBIx-Class/Changes Modified: head/devel/p5-Test-DBIx-Class/Makefile head/devel/p5-Test-DBIx-Class/distinfo head/devel/p5-Test-DBIx-Class/pkg-plist Modified: head/devel/p5-Test-DBIx-Class/Makefile ============================================================================== --- head/devel/p5-Test-DBIx-Class/Makefile Sun Oct 4 18:00:54 2015 (r398603) +++ head/devel/p5-Test-DBIx-Class/Makefile Sun Oct 4 18:01:00 2015 (r398604) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-DBIx-Class -PORTVERSION= 0.44 +PORTVERSION= 0.45 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -28,10 +28,11 @@ BUILD_DEPENDS= p5-Config-Any>=0.19:${POR p5-MooseX-Types>=0.23:${PORTSDIR}/devel/p5-MooseX-Types \ p5-Path-Class>=0.21:${PORTSDIR}/devel/p5-Path-Class \ p5-SQL-Translator>=0.11006:${PORTSDIR}/databases/p5-SQL-Translator \ - p5-Sub-Exporter>=0.982:${PORTSDIR}/devel/p5-Sub-Exporter + p5-Sub-Exporter>=0.982:${PORTSDIR}/devel/p5-Sub-Exporter \ + p5-Test-Deep>=0.106:${PORTSDIR}/devel/p5-Test-Deep \ + p5-Test-mysqld>=0:${PORTSDIR}/databases/p5-Test-mysqld RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Deep>=0.106:${PORTSDIR}/devel/p5-Test-Deep \ - p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences +TEST_DEPENDS= p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences NO_ARCH= yes USES= perl5 Modified: head/devel/p5-Test-DBIx-Class/distinfo ============================================================================== --- head/devel/p5-Test-DBIx-Class/distinfo Sun Oct 4 18:00:54 2015 (r398603) +++ head/devel/p5-Test-DBIx-Class/distinfo Sun Oct 4 18:01:00 2015 (r398604) @@ -1,2 +1,2 @@ -SHA256 (Test-DBIx-Class-0.44.tar.gz) = bd9cd5f1ca9448f2065071acc069a6c24daa2d6e434e609c79a37f1ef1a21245 -SIZE (Test-DBIx-Class-0.44.tar.gz) = 92454 +SHA256 (Test-DBIx-Class-0.45.tar.gz) = 4564b6ea02fcba372479b599a7e1e683aab9b96d47440e0cb353fb3c5b16c802 +SIZE (Test-DBIx-Class-0.45.tar.gz) = 92563 Modified: head/devel/p5-Test-DBIx-Class/pkg-plist ============================================================================== --- head/devel/p5-Test-DBIx-Class/pkg-plist Sun Oct 4 18:00:54 2015 (r398603) +++ head/devel/p5-Test-DBIx-Class/pkg-plist Sun Oct 4 18:01:00 2015 (r398604) @@ -1,26 +1,3 @@ -%%PERL5_MAN3%%/Test::DBIx::Class.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::DefaultRS.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD::Artist.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD::Track.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Company.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Company::Employee.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Job.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person::Artist.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person::Employee.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Phone.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::ResultSet.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::FixtureCommand::Populate.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::FixtureCommand::PopulateMore.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Role::FixtureCommand.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::SQLite.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::Testmysqld.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::Testpostgresql.3.gz -%%PERL5_MAN3%%/Test::DBIx::Class::Types.3.gz %%SITE_PERL%%/Test/DBIx/Class.pm %%SITE_PERL%%/Test/DBIx/Class/Example/Schema.pm %%SITE_PERL%%/Test/DBIx/Class/Example/Schema/DefaultRS.pm @@ -44,3 +21,26 @@ %%SITE_PERL%%/Test/DBIx/Class/SchemaManager/Trait/Testmysqld.pm %%SITE_PERL%%/Test/DBIx/Class/SchemaManager/Trait/Testpostgresql.pm %%SITE_PERL%%/Test/DBIx/Class/Types.pm +%%PERL5_MAN3%%/Test::DBIx::Class.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::DefaultRS.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD::Artist.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::CD::Track.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Company.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Company::Employee.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Job.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person::Artist.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Person::Employee.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::Result::Phone.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Example::Schema::ResultSet.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::FixtureCommand::Populate.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::FixtureCommand::PopulateMore.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Role::FixtureCommand.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::SQLite.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::Testmysqld.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::SchemaManager::Trait::Testpostgresql.3.gz +%%PERL5_MAN3%%/Test::DBIx::Class::Types.3.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:08 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 2BD91A0F602; Sun, 4 Oct 2015 18:01:08 +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 CB46615CD; Sun, 4 Oct 2015 18:01:07 +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 t94I17US043401; Sun, 4 Oct 2015 18:01:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I17dJ043398; Sun, 4 Oct 2015 18:01:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I17dJ043398@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 18:01:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398605 - head/devel/p5-Test-Strict 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 18:01:08 -0000 Author: sunpoet Date: Sun Oct 4 18:01:06 2015 New Revision: 398605 URL: https://svnweb.freebsd.org/changeset/ports/398605 Log: - Update to 0.28 - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Test-Strict/Changes Modified: head/devel/p5-Test-Strict/Makefile head/devel/p5-Test-Strict/distinfo head/devel/p5-Test-Strict/pkg-plist Modified: head/devel/p5-Test-Strict/Makefile ============================================================================== --- head/devel/p5-Test-Strict/Makefile Sun Oct 4 18:01:00 2015 (r398604) +++ head/devel/p5-Test-Strict/Makefile Sun Oct 4 18:01:06 2015 (r398605) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Strict -PORTVERSION= 0.27 +PORTVERSION= 0.28 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,6 +16,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Devel-Cover>=0.43:${PORTSDIR}/devel/p5-Devel-Cover RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Test-Strict/distinfo ============================================================================== --- head/devel/p5-Test-Strict/distinfo Sun Oct 4 18:01:00 2015 (r398604) +++ head/devel/p5-Test-Strict/distinfo Sun Oct 4 18:01:06 2015 (r398605) @@ -1,2 +1,2 @@ -SHA256 (Test-Strict-0.27.tar.gz) = 9c486ca0aaaeb68e1e3974742684d9447c7259ac0293da4a80cf97024a0df000 -SIZE (Test-Strict-0.27.tar.gz) = 12426 +SHA256 (Test-Strict-0.28.tar.gz) = 8dcb02fe3e243fe906650b3c72029b0b9ffe0620b03fab8766e6e18b4d9fd05d +SIZE (Test-Strict-0.28.tar.gz) = 12504 Modified: head/devel/p5-Test-Strict/pkg-plist ============================================================================== --- head/devel/p5-Test-Strict/pkg-plist Sun Oct 4 18:01:00 2015 (r398604) +++ head/devel/p5-Test-Strict/pkg-plist Sun Oct 4 18:01:06 2015 (r398605) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Test::Strict.3.gz %%SITE_PERL%%/Test/Strict.pm +%%PERL5_MAN3%%/Test::Strict.3.gz From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:12 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 CCEEAA0F67B; Sun, 4 Oct 2015 18:01:12 +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 BD18C17A4; Sun, 4 Oct 2015 18:01:12 +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 t94I1CYm043518; Sun, 4 Oct 2015 18:01:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1CYo043516; Sun, 4 Oct 2015 18:01:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1CYo043516@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 18:01:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398606 - head/sysutils/rubygem-sys-uptime 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 18:01:12 -0000 Author: sunpoet Date: Sun Oct 4 18:01:11 2015 New Revision: 398606 URL: https://svnweb.freebsd.org/changeset/ports/398606 Log: - Update to 0.7.0 - Update LICENSE Changes: https://github.com/djberg96/sys-uptime/blob/ffi/CHANGES Modified: head/sysutils/rubygem-sys-uptime/Makefile head/sysutils/rubygem-sys-uptime/distinfo Modified: head/sysutils/rubygem-sys-uptime/Makefile ============================================================================== --- head/sysutils/rubygem-sys-uptime/Makefile Sun Oct 4 18:01:06 2015 (r398605) +++ head/sysutils/rubygem-sys-uptime/Makefile Sun Oct 4 18:01:11 2015 (r398606) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= sys-uptime -PORTVERSION= 0.6.2 +PORTVERSION= 0.7.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides uptime and boot time information -LICENSE= ART20 +LICENSE= APACHE20 RUN_DEPENDS= rubygem-ffi>=1.0.0:${PORTSDIR}/devel/rubygem-ffi Modified: head/sysutils/rubygem-sys-uptime/distinfo ============================================================================== --- head/sysutils/rubygem-sys-uptime/distinfo Sun Oct 4 18:01:06 2015 (r398605) +++ head/sysutils/rubygem-sys-uptime/distinfo Sun Oct 4 18:01:11 2015 (r398606) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sys-uptime-0.6.2.gem) = 79d5fc2ef4872c7b6d95e01ed1ee82a3c85e0b6d525cca0956235080e280aefb -SIZE (rubygem/sys-uptime-0.6.2.gem) = 12288 +SHA256 (rubygem/sys-uptime-0.7.0.gem) = 89f7fab1e5160477cc91eead6549786cebdaca38aff82f06009be36ac913747b +SIZE (rubygem/sys-uptime-0.7.0.gem) = 17408 From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01: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 A398CA0F6DB; Sun, 4 Oct 2015 18:01:18 +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 64A60191C; Sun, 4 Oct 2015 18:01:18 +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 t94I1I2K043649; Sun, 4 Oct 2015 18:01:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1Ht0043646; Sun, 4 Oct 2015 18:01:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1Ht0043646@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 18:01:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398607 - head/devel/rubygem-tzinfo03 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 18:01:18 -0000 Author: sunpoet Date: Sun Oct 4 18:01:16 2015 New Revision: 398607 URL: https://svnweb.freebsd.org/changeset/ports/398607 Log: - Update to 0.3.45 - Add LICENSE_FILE - Update WWW Changes: https://github.com/tzinfo/tzinfo/blob/0.3/CHANGES Modified: head/devel/rubygem-tzinfo03/Makefile head/devel/rubygem-tzinfo03/distinfo head/devel/rubygem-tzinfo03/pkg-descr Modified: head/devel/rubygem-tzinfo03/Makefile ============================================================================== --- head/devel/rubygem-tzinfo03/Makefile Sun Oct 4 18:01:11 2015 (r398606) +++ head/devel/rubygem-tzinfo03/Makefile Sun Oct 4 18:01:16 2015 (r398607) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tzinfo -PORTVERSION= 0.3.44 +PORTVERSION= 0.3.45 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 03 @@ -11,9 +11,9 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Daylight-savings aware timezone support for Ruby LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-tzinfo03/distinfo ============================================================================== --- head/devel/rubygem-tzinfo03/distinfo Sun Oct 4 18:01:11 2015 (r398606) +++ head/devel/rubygem-tzinfo03/distinfo Sun Oct 4 18:01:16 2015 (r398607) @@ -1,2 +1,2 @@ -SHA256 (rubygem/tzinfo-0.3.44.gem) = a717f358872144fabf762da0f8a6ba23ce764550230ff0b831957247c8484ca8 -SIZE (rubygem/tzinfo-0.3.44.gem) = 297472 +SHA256 (rubygem/tzinfo-0.3.45.gem) = 936bc317761a47b7e0858bd7ce875c0e7f19b1eedf024b876a3dd6f799172ce7 +SIZE (rubygem/tzinfo-0.3.45.gem) = 299008 Modified: head/devel/rubygem-tzinfo03/pkg-descr ============================================================================== --- head/devel/rubygem-tzinfo03/pkg-descr Sun Oct 4 18:01:11 2015 (r398606) +++ head/devel/rubygem-tzinfo03/pkg-descr Sun Oct 4 18:01:16 2015 (r398607) @@ -4,4 +4,4 @@ aware transformations between times in d tz database is compiled into Ruby classes which are packaged in the release. No external zoneinfo files are required at runtime. -WWW: http://rubygems.org/gems/tzinfo/ +WWW: https://github.com/tzinfo/tzinfo From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01: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 7A591A0F700; Sun, 4 Oct 2015 18:01:22 +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 6AD3919B0; Sun, 4 Oct 2015 18:01:22 +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 t94I1MXq044260; Sun, 4 Oct 2015 18:01:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1Mth044259; Sun, 4 Oct 2015 18:01:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1Mth044259@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 18:01:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398608 - head/databases/rubygem-activerecord 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 18:01:22 -0000 Author: sunpoet Date: Sun Oct 4 18:01:21 2015 New Revision: 398608 URL: https://svnweb.freebsd.org/changeset/ports/398608 Log: - Add LICENSE_FILE Modified: head/databases/rubygem-activerecord/Makefile Modified: head/databases/rubygem-activerecord/Makefile ============================================================================== --- head/databases/rubygem-activerecord/Makefile Sun Oct 4 18:01:16 2015 (r398607) +++ head/databases/rubygem-activerecord/Makefile Sun Oct 4 18:01:21 2015 (r398608) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel>=${PORTVERSION}:${PORTSDIR}/databases/rubygem-activemodel \ rubygem-activesupport>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport \ @@ -17,7 +18,6 @@ RUN_DEPENDS= rubygem-activemodel>=${PORT rubygem-tzinfo03>=0.3.29:${PORTSDIR}/devel/rubygem-tzinfo03 NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:27 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 03F4CA0F72D; Sun, 4 Oct 2015 18:01:27 +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 D063C1AB8; Sun, 4 Oct 2015 18:01:26 +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 t94I1Q6l044361; Sun, 4 Oct 2015 18:01:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1QKp044360; Sun, 4 Oct 2015 18:01:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1QKp044360@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 18:01:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398609 - head/databases/rubygem-activerecord4 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 18:01:27 -0000 Author: sunpoet Date: Sun Oct 4 18:01:25 2015 New Revision: 398609 URL: https://svnweb.freebsd.org/changeset/ports/398609 Log: - Add LICENSE_FILE Modified: head/databases/rubygem-activerecord4/Makefile Modified: head/databases/rubygem-activerecord4/Makefile ============================================================================== --- head/databases/rubygem-activerecord4/Makefile Sun Oct 4 18:01:21 2015 (r398608) +++ head/databases/rubygem-activerecord4/Makefile Sun Oct 4 18:01:25 2015 (r398609) @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel4>=${PORTVERSION}:${PORTSDIR}/databases/rubygem-activemodel4 \ rubygem-activesupport4>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport4 \ From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:30 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 DE0EDA0F755; Sun, 4 Oct 2015 18:01:30 +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 CEC0C1B92; Sun, 4 Oct 2015 18:01:30 +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 t94I1UcF044467; Sun, 4 Oct 2015 18:01:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1URi044466; Sun, 4 Oct 2015 18:01:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1URi044466@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 18:01:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398610 - head/databases/rubygem-activerecord41 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 18:01:31 -0000 Author: sunpoet Date: Sun Oct 4 18:01:30 2015 New Revision: 398610 URL: https://svnweb.freebsd.org/changeset/ports/398610 Log: - Add LICENSE_FILE Modified: head/databases/rubygem-activerecord41/Makefile Modified: head/databases/rubygem-activerecord41/Makefile ============================================================================== --- head/databases/rubygem-activerecord41/Makefile Sun Oct 4 18:01:25 2015 (r398609) +++ head/databases/rubygem-activerecord41/Makefile Sun Oct 4 18:01:30 2015 (r398610) @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel41>=${PORTVERSION}:${PORTSDIR}/databases/rubygem-activemodel41 \ rubygem-activesupport41>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport41 \ From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:35 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 57173A0F78B; Sun, 4 Oct 2015 18:01:35 +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 4768E1C89; Sun, 4 Oct 2015 18:01:35 +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 t94I1ZAF044559; Sun, 4 Oct 2015 18:01:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1ZMV044558; Sun, 4 Oct 2015 18:01:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1ZMV044558@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 18:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398611 - head/security/metasploit 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 18:01:35 -0000 Author: sunpoet Date: Sun Oct 4 18:01:34 2015 New Revision: 398611 URL: https://svnweb.freebsd.org/changeset/ports/398611 Log: - Convert to new options target helper Approved by: portmgr (blanket) Modified: head/security/metasploit/Makefile Modified: head/security/metasploit/Makefile ============================================================================== --- head/security/metasploit/Makefile Sun Oct 4 18:01:30 2015 (r398610) +++ head/security/metasploit/Makefile Sun Oct 4 18:01:34 2015 (r398611) @@ -63,8 +63,6 @@ DB_RUN_DEPENDS= rubygem-activerecord>=3. rubygem-metasploit_data_models>=0.24.0,2:${PORTSDIR}/security/rubygem-metasploit_data_models \ rubygem-pg>=0.11:${PORTSDIR}/databases/rubygem-pg -.include - post-patch: ${REINPLACE_CMD} 's,git ls-files,find . ! -type d | sed "s|^./||", ; \ /jsobfu/s/~> 0.2.0/>= 0.2.0/ ; \ @@ -78,9 +76,9 @@ do-build: ${CHMOD} 666 ${WRKSRC}/Gemfile.lock ${WRKSRC}/log/production.log ${REINPLACE_CMD} '/^group :coverage/,/^end/d ; /^group :development/,/^end/d ; /^group :test/,/^end/d' \ ${WRKSRC}/Gemfile -.if ! ${PORT_OPTIONS:MDB} + +do-build-DB-off: ${REINPLACE_CMD} '/^group :db do/,/^end/d' ${WRKSRC}/Gemfile -.endif do-install: @${MKDIR} ${STAGEDIR}${DATADIR} From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:40 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 6B728A0F7D6; Sun, 4 Oct 2015 18:01:40 +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 5C01B1D72; Sun, 4 Oct 2015 18:01:40 +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 t94I1eMP044674; Sun, 4 Oct 2015 18:01:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1dRu044671; Sun, 4 Oct 2015 18:01:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1dRu044671@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 18:01:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398612 - head/devel/rubygem-tzinfo 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 18:01:40 -0000 Author: sunpoet Date: Sun Oct 4 18:01:39 2015 New Revision: 398612 URL: https://svnweb.freebsd.org/changeset/ports/398612 Log: - Add LICENSE_FILE - Update WWW Modified: head/devel/rubygem-tzinfo/Makefile head/devel/rubygem-tzinfo/pkg-descr Modified: head/devel/rubygem-tzinfo/Makefile ============================================================================== --- head/devel/rubygem-tzinfo/Makefile Sun Oct 4 18:01:34 2015 (r398611) +++ head/devel/rubygem-tzinfo/Makefile Sun Oct 4 18:01:39 2015 (r398612) @@ -11,11 +11,11 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Daylight-savings aware timezone support for Ruby LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-thread_safe1>=0.1:${PORTSDIR}/devel/rubygem-thread_safe1 NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-tzinfo/pkg-descr ============================================================================== --- head/devel/rubygem-tzinfo/pkg-descr Sun Oct 4 18:01:34 2015 (r398611) +++ head/devel/rubygem-tzinfo/pkg-descr Sun Oct 4 18:01:39 2015 (r398612) @@ -4,4 +4,4 @@ aware transformations between times in d tz database is compiled into Ruby classes which are packaged in the release. No external zoneinfo files are required at runtime. -WWW: http://rubygems.org/gems/tzinfo/ +WWW: https://github.com/tzinfo/tzinfo From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01: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 425C5A0F81E; Sun, 4 Oct 2015 18:01:45 +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 332791F12; Sun, 4 Oct 2015 18:01:45 +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 t94I1jES044777; Sun, 4 Oct 2015 18:01:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1j6f044776; Sun, 4 Oct 2015 18:01:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1j6f044776@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 18:01:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398613 - head/devel/nuitka 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 18:01:45 -0000 Author: sunpoet Date: Sun Oct 4 18:01:44 2015 New Revision: 398613 URL: https://svnweb.freebsd.org/changeset/ports/398613 Log: - Add LICENSE_FILE Modified: head/devel/nuitka/Makefile Modified: head/devel/nuitka/Makefile ============================================================================== --- head/devel/nuitka/Makefile Sun Oct 4 18:01:39 2015 (r398612) +++ head/devel/nuitka/Makefile Sun Oct 4 18:01:44 2015 (r398613) @@ -11,6 +11,7 @@ MAINTAINER= python@FreeBSD.org COMMENT= Compatible and efficient Python compiler LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python tar:bzip2 USE_PYTHON= autoplist distutils From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01: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 BD6C6A0F855; Sun, 4 Oct 2015 18:01:49 +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 AE075100C; Sun, 4 Oct 2015 18:01:49 +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 t94I1nk9044894; Sun, 4 Oct 2015 18:01:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1n6m044892; Sun, 4 Oct 2015 18:01:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1n6m044892@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 18:01:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398614 - head/x11-toolkits/py-fltk 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 18:01:49 -0000 Author: sunpoet Date: Sun Oct 4 18:01:48 2015 New Revision: 398614 URL: https://svnweb.freebsd.org/changeset/ports/398614 Log: - Update to 1.3.3.1 Changes: http://sourceforge.net/p/pyfltk/code/HEAD/tree/trunk/pyfltk/CHANGES Modified: head/x11-toolkits/py-fltk/Makefile head/x11-toolkits/py-fltk/distinfo Modified: head/x11-toolkits/py-fltk/Makefile ============================================================================== --- head/x11-toolkits/py-fltk/Makefile Sun Oct 4 18:01:44 2015 (r398613) +++ head/x11-toolkits/py-fltk/Makefile Sun Oct 4 18:01:48 2015 (r398614) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fltk -PORTVERSION= 1.3.3 +PORTVERSION= 1.3.3.1 CATEGORIES= x11-toolkits python MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/pyFltk-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/x11-toolkits/py-fltk/distinfo ============================================================================== --- head/x11-toolkits/py-fltk/distinfo Sun Oct 4 18:01:44 2015 (r398613) +++ head/x11-toolkits/py-fltk/distinfo Sun Oct 4 18:01:48 2015 (r398614) @@ -1,2 +1,2 @@ -SHA256 (pyFltk-1.3.3_py3.tar.gz) = 246b92c99b8d5610532456a4c956b355f6140514324916cf35efbe6468c4a188 -SIZE (pyFltk-1.3.3_py3.tar.gz) = 946763 +SHA256 (pyFltk-1.3.3.1_py3.tar.gz) = 899b2f5058fa3608a31071c1fd6a616019d882ed6104590ce2d768eff92dc2bb +SIZE (pyFltk-1.3.3.1_py3.tar.gz) = 953053 From owner-svn-ports-head@freebsd.org Sun Oct 4 18:01:54 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 9114DA0F890; Sun, 4 Oct 2015 18:01:54 +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 80D171108; Sun, 4 Oct 2015 18:01:54 +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 t94I1sAI047589; Sun, 4 Oct 2015 18:01:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94I1sHt047587; Sun, 4 Oct 2015 18:01:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041801.t94I1sHt047587@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 18:01:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398615 - in head/graphics/mupdf: . 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 18:01:54 -0000 Author: sunpoet Date: Sun Oct 4 18:01:53 2015 New Revision: 398615 URL: https://svnweb.freebsd.org/changeset/ports/398615 Log: - Fix build with openjpeg 2.1.1 - Bump PORTREVISION - While I'm here: - Update MASTER_SITES: make 1.7 fetchable - Use DISTVERSIONSUFFIX instead of EXTRACT_SUFX - Convert to new options helper PR: 203327 Submitted by: Walter Schwarzenfeld Approved by: Zsolt Udvari (maintainer) Modified: head/graphics/mupdf/Makefile head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Modified: head/graphics/mupdf/Makefile ============================================================================== --- head/graphics/mupdf/Makefile Sun Oct 4 18:01:48 2015 (r398614) +++ head/graphics/mupdf/Makefile Sun Oct 4 18:01:53 2015 (r398615) @@ -3,18 +3,17 @@ PORTNAME= mupdf PORTVERSION= 1.7 +DISTVERSIONSUFFIX= -source PORTEPOCH= 1 CATEGORIES= graphics -MASTER_SITES= http://www.mupdf.com/download/ -EXTRACT_SUFX= -source.tar.gz +MASTER_SITES= http://www.mupdf.com/download/ \ + http://www.mupdf.com/download/archive/ MAINTAINER= udvzsolt@gmail.com COMMENT= Lightweight PDF viewer and toolkit LICENSE= AGPLv3 -BROKEN= fails to link with openjpeg 2.1.1 - LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libfreetype.so:${PORTSDIR}/print/freetype2 \ libjbig2dec.so:${PORTSDIR}/graphics/jbig2dec \ @@ -35,16 +34,9 @@ OPTIONS_DEFAULT=SCROLL SCROLL_DESC= Build with scroll hacks JS_DESC= JavaScript support (V8 engine) -.include - -.if ${PORT_OPTIONS:MSCROLL} -EXTRA_PATCHES+= ${FILESDIR}/scroll_hack-platform__x11__pdfapp.c -.endif - -.if ${PORT_OPTIONS:MJS} -LIB_DEPENDS+= libv8.so:${PORTSDIR}/lang/v8 -MAKE_ARGS+= V8_PRESENT=1 V8LIBS=-lv8 -.endif +SCROLL_EXTRA_PATCHES= ${FILESDIR}/scroll_hack-platform__x11__pdfapp.c +JS_LIB_DEPENDS= libv8.so:${PORTSDIR}/lang/v8 +JS_MAKE_ARGS= V8_PRESENT=1 V8LIBS=-lv8 post-patch: @${REINPLACE_CMD} -e 's/-pipe -O2 //' \ Modified: head/graphics/mupdf/files/patch-source__fitz__load-jpx.c ============================================================================== --- head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Sun Oct 4 18:01:48 2015 (r398614) +++ head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Sun Oct 4 18:01:53 2015 (r398615) @@ -1,15 +1,25 @@ ---- ./source/fitz/load-jpx.c.orig 2014-06-10 17:09:28.000000000 +0200 -+++ ./source/fitz/load-jpx.c 2014-08-04 18:51:45.000000000 +0200 -@@ -8,7 +8,7 @@ +--- source/fitz/load-jpx.c.orig 2015-04-16 08:57:45 UTC ++++ source/fitz/load-jpx.c +@@ -3,12 +3,17 @@ + /* Without the definition of OPJ_STATIC, compilation fails on windows + * due to the use of __stdcall. We believe it is required on some + * linux toolchains too. */ ++ ++#ifdef __cplusplus ++extern "C" ++{ + #define OPJ_STATIC + #ifndef _MSC_VER #define OPJ_HAVE_STDINT_H #endif ++#endif -#include +#include static void fz_opj_error_callback(const char *msg, void *client_data) { -@@ -116,7 +116,7 @@ +@@ -117,7 +122,7 @@ fz_load_jpx(fz_context *ctx, unsigned ch opj_stream_set_read_function(stream, fz_opj_stream_read); opj_stream_set_skip_function(stream, fz_opj_stream_skip); opj_stream_set_seek_function(stream, fz_opj_stream_seek); @@ -18,3 +28,10 @@ /* Set the length to avoid an assert */ opj_stream_set_user_data_length(stream, size); +@@ -247,3 +252,6 @@ fz_load_jpx(fz_context *ctx, unsigned ch + + return img; + } ++#ifdef __cplusplus ++} ++#endif From owner-svn-ports-head@freebsd.org Sun Oct 4 18:25: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 D86C7A10870; Sun, 4 Oct 2015 18:25:28 +0000 (UTC) (envelope-from rpaulo@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 AF8A71C96; Sun, 4 Oct 2015 18:25:28 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94IPSqW055891; Sun, 4 Oct 2015 18:25:28 GMT (envelope-from rpaulo@FreeBSD.org) Received: (from rpaulo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94IPSSN055889; Sun, 4 Oct 2015 18:25:28 GMT (envelope-from rpaulo@FreeBSD.org) Message-Id: <201510041825.t94IPSSN055889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rpaulo set sender to rpaulo@FreeBSD.org using -f From: Rui Paulo Date: Sun, 4 Oct 2015 18:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398616 - head/devel/leiningen 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 18:25:28 -0000 Author: rpaulo Date: Sun Oct 4 18:25:27 2015 New Revision: 398616 URL: https://svnweb.freebsd.org/changeset/ports/398616 Log: Update leiningen to 2.5.3 and install bash/zsh completions and the man page. PR: 203535 Submitted by: tobias.kortkamp@gmail.com Modified: head/devel/leiningen/Makefile head/devel/leiningen/distinfo Modified: head/devel/leiningen/Makefile ============================================================================== --- head/devel/leiningen/Makefile Sun Oct 4 18:01:53 2015 (r398615) +++ head/devel/leiningen/Makefile Sun Oct 4 18:25:27 2015 (r398616) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= leiningen -PORTVERSION= 2.5.2 +PORTVERSION= 2.5.3 CATEGORIES= devel lisp java MASTER_SITES= GH:source1 \ https://github.com/technomancy/leiningen/releases/download/${PORTVERSION}/:source2 @@ -24,6 +24,9 @@ NO_BUILD= yes RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash PLIST_FILES= bin/lein \ + etc/bash_completion.d/_lein.bash \ + man/man1/lein.1.gz \ + share/zsh/site-functions/_lein \ %%JAVAJARDIR%%/leiningen.jar post-patch: @@ -33,6 +36,11 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bin/lein-pkg ${STAGEDIR}${PREFIX}/bin/lein + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d + ${INSTALL_DATA} ${WRKSRC}/bash_completion.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/_lein.bash + ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${WRKSRC}/zsh_completion.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_lein + ${INSTALL_MAN} ${WRKSRC}/doc/lein.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ ${INSTALL_DATA} ${DISTDIR}/leiningen-${PORTVERSION}-standalone.zip ${STAGEDIR}${JAVAJARDIR}/leiningen.jar .include Modified: head/devel/leiningen/distinfo ============================================================================== --- head/devel/leiningen/distinfo Sun Oct 4 18:01:53 2015 (r398615) +++ head/devel/leiningen/distinfo Sun Oct 4 18:25:27 2015 (r398616) @@ -1,4 +1,4 @@ -SHA256 (technomancy-leiningen-2.5.2_GH0.tar.gz) = 50cd21d718603bfa4b6da673696c60482271d310f67b98a794d0413a79121a9d -SIZE (technomancy-leiningen-2.5.2_GH0.tar.gz) = 694758 -SHA256 (leiningen-2.5.2-standalone.zip) = 64c70202dc7989de1b9d8b8b9b99e87dbb7698338e24d25722777412e37e1b62 -SIZE (leiningen-2.5.2-standalone.zip) = 15757991 +SHA256 (technomancy-leiningen-2.5.3_GH0.tar.gz) = e44db1e021937a6aa68635960aefe581bf4a4090f4a0e159f6a14904d8f9e9ca +SIZE (technomancy-leiningen-2.5.3_GH0.tar.gz) = 696873 +SHA256 (leiningen-2.5.3-standalone.zip) = 4b0c1606b6a4816b803f1fbd704aeefc9d6e314e9b9a482d0bae0ab0079023dd +SIZE (leiningen-2.5.3-standalone.zip) = 15768731 From owner-svn-ports-head@freebsd.org Sun Oct 4 19:01: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 4426DA0F3E3; Sun, 4 Oct 2015 19:01:09 +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 34FF61EAD; Sun, 4 Oct 2015 19:01:09 +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 t94J19KB071710; Sun, 4 Oct 2015 19:01:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94J18Yr071707; Sun, 4 Oct 2015 19:01:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041901.t94J18Yr071707@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 19:01:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398618 - head/math/py-numexpr 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 19:01:09 -0000 Author: sunpoet Date: Sun Oct 4 19:01:07 2015 New Revision: 398618 URL: https://svnweb.freebsd.org/changeset/ports/398618 Log: - Update to 2.4.4 - Update MASTER_SITES: move back to CHEESESHOP - Add LICENSE_FILE - Reformat pkg-descr and remove trailing space - Add PyPI as primary WWW Changes: https://github.com/pydata/numexpr/blob/master/RELEASE_NOTES.rst Modified: head/math/py-numexpr/Makefile head/math/py-numexpr/distinfo head/math/py-numexpr/pkg-descr Modified: head/math/py-numexpr/Makefile ============================================================================== --- head/math/py-numexpr/Makefile Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/Makefile Sun Oct 4 19:01:07 2015 (r398618) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= numexpr -PORTVERSION= 2.4 -DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTVERSION= 2.4.4 CATEGORIES= math python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast numerical array expression evaluator for Python and NumPy LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -19,9 +19,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= autoplist concurrent distutils USES= python -GH_ACCOUNT= pydata -USE_GITHUB= yes - post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter.so Modified: head/math/py-numexpr/distinfo ============================================================================== --- head/math/py-numexpr/distinfo Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/distinfo Sun Oct 4 19:01:07 2015 (r398618) @@ -1,2 +1,2 @@ -SHA256 (pydata-numexpr-v2.4_GH0.tar.gz) = b3d5f998d1e489c6e3e672d75c2e6b4a871d67fefc6b6154b90795010bee14c0 -SIZE (pydata-numexpr-v2.4_GH0.tar.gz) = 89752 +SHA256 (numexpr-2.4.4.tar.gz) = dfa2fad1af040e93a8022fbe4437f2183bf80e5f64d466381ad589308a73565b +SIZE (numexpr-2.4.4.tar.gz) = 87133 Modified: head/math/py-numexpr/pkg-descr ============================================================================== --- head/math/py-numexpr/pkg-descr Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/pkg-descr Sun Oct 4 19:01:07 2015 (r398618) @@ -1,16 +1,17 @@ -numexpr - Fast numerical array expression evaluator for Python and NumPy. +numexpr - Fast numerical array expression evaluator for Python and NumPy. The numexpr package evaluates multiple-operator array expressions many times faster than NumPy can. It accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it to faster Python code on the fly. -It's the next best thing to writing the expression in C and compiling it with -a specialized just-in-time (JIT) compiler, i.e. it does not require a compiler -at runtime. +It's the next best thing to writing the expression in C and compiling it with a +specialized just-in-time (JIT) compiler, i.e. it does not require a compiler at +runtime. Also, numexpr has support for the Intel VML (Vector Math Library) -- integrated in Intel MKL (Math Kernel Library) --, allowing nice speed-ups when computing transcendental functions (like trigonometrical, exponentials...) on top of Intel-compatible platforms. This support also allows to use multiple cores in -your computations. +your computations. +WWW: https://pypi.python.org/pypi/numexpr WWW: https://github.com/pydata/numexpr From owner-svn-ports-head@freebsd.org Sun Oct 4 19:26: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 BB099A10C2C; Sun, 4 Oct 2015 19:26:04 +0000 (UTC) (envelope-from delphij@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 936C81E66; Sun, 4 Oct 2015 19:26:04 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94JQ4oW080870; Sun, 4 Oct 2015 19:26:04 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94JQ36m080867; Sun, 4 Oct 2015 19:26:03 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201510041926.t94JQ36m080867@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sun, 4 Oct 2015 19:26:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398619 - head/chinese/libpinyin 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 19:26:04 -0000 Author: delphij Date: Sun Oct 4 19:26:03 2015 New Revision: 398619 URL: https://svnweb.freebsd.org/changeset/ports/398619 Log: Update to 1.2.0. PR: ports/203027 Approved by: maintainer timeout Modified: head/chinese/libpinyin/Makefile head/chinese/libpinyin/distinfo head/chinese/libpinyin/pkg-plist Modified: head/chinese/libpinyin/Makefile ============================================================================== --- head/chinese/libpinyin/Makefile Sun Oct 4 19:01:07 2015 (r398618) +++ head/chinese/libpinyin/Makefile Sun Oct 4 19:26:03 2015 (r398619) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libpinyin -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.0 CATEGORIES= chinese textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME} @@ -25,6 +25,6 @@ INSTALL_TARGET=install-strip PLIST_SUB+= VER=${PORTVERSION} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpinyin.so.5.0.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpinyin.so.6.0.0 .include Modified: head/chinese/libpinyin/distinfo ============================================================================== --- head/chinese/libpinyin/distinfo Sun Oct 4 19:01:07 2015 (r398618) +++ head/chinese/libpinyin/distinfo Sun Oct 4 19:26:03 2015 (r398619) @@ -1,2 +1,2 @@ -SHA256 (libpinyin-1.1.0.tar.gz) = 3f2a04f4aa39cdf0db7c098805ad02c7f66b030d14144deddd04b532f4eaa103 -SIZE (libpinyin-1.1.0.tar.gz) = 19737160 +SHA256 (libpinyin-1.2.0.tar.gz) = ffabc0c7034a43f29c9427de16012c6d1154dea3524298631fd2ba63014d025f +SIZE (libpinyin-1.2.0.tar.gz) = 17356384 Modified: head/chinese/libpinyin/pkg-plist ============================================================================== --- head/chinese/libpinyin/pkg-plist Sun Oct 4 19:01:07 2015 (r398618) +++ head/chinese/libpinyin/pkg-plist Sun Oct 4 19:26:03 2015 (r398619) @@ -6,10 +6,12 @@ include/libpinyin-%%VER%%/pinyin.h include/libpinyin-%%VER%%/pinyin_custom2.h lib/libpinyin.a lib/libpinyin.so -lib/libpinyin.so.5 -lib/libpinyin.so.5.0.0 +lib/libpinyin.so.6 +lib/libpinyin.so.6.0.0 libdata/pkgconfig/libpinyin.pc man/man1/libpinyin.1.gz +%%DATADIR%%/data/addon_phrase_index.bin +%%DATADIR%%/data/addon_pinyin_index.bin %%DATADIR%%/data/art.bin %%DATADIR%%/data/bigram.db %%DATADIR%%/data/culture.bin @@ -21,9 +23,11 @@ man/man1/libpinyin.1.gz %%DATADIR%%/data/life.bin %%DATADIR%%/data/merged.bin %%DATADIR%%/data/nature.bin +%%DATADIR%%/data/people.bin %%DATADIR%%/data/phrase_index.bin %%DATADIR%%/data/pinyin_index.bin -%%DATADIR%%/data/scitech.bin +%%DATADIR%%/data/science.bin %%DATADIR%%/data/society.bin %%DATADIR%%/data/sport.bin %%DATADIR%%/data/table.conf +%%DATADIR%%/data/technology.bin From owner-svn-ports-head@freebsd.org Sun Oct 4 19:27: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 50C31A10D32; Sun, 4 Oct 2015 19:27:21 +0000 (UTC) (envelope-from delphij@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 281AC1FE5; Sun, 4 Oct 2015 19:27:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94JRL75081075; Sun, 4 Oct 2015 19:27:21 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94JRK0l081072; Sun, 4 Oct 2015 19:27:20 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201510041927.t94JRK0l081072@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sun, 4 Oct 2015 19:27:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398620 - in head/chinese/fcitx-libpinyin: . 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 19:27:21 -0000 Author: delphij Date: Sun Oct 4 19:27:19 2015 New Revision: 398620 URL: https://svnweb.freebsd.org/changeset/ports/398620 Log: Update to 0.3.2. PR: ports/203030 Approved by: maintainer timeout Deleted: head/chinese/fcitx-libpinyin/files/patch-dictmanager__CMakeLists.txt Modified: head/chinese/fcitx-libpinyin/Makefile head/chinese/fcitx-libpinyin/distinfo head/chinese/fcitx-libpinyin/pkg-plist Modified: head/chinese/fcitx-libpinyin/Makefile ============================================================================== --- head/chinese/fcitx-libpinyin/Makefile Sun Oct 4 19:26:03 2015 (r398619) +++ head/chinese/fcitx-libpinyin/Makefile Sun Oct 4 19:27:19 2015 (r398620) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fcitx-libpinyin -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.2 CATEGORIES= chinese MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/:body \ http://download.fcitx-im.org/data/:data Modified: head/chinese/fcitx-libpinyin/distinfo ============================================================================== --- head/chinese/fcitx-libpinyin/distinfo Sun Oct 4 19:26:03 2015 (r398619) +++ head/chinese/fcitx-libpinyin/distinfo Sun Oct 4 19:27:19 2015 (r398620) @@ -1,4 +1,4 @@ -SHA256 (fcitx/fcitx-libpinyin-0.3.1.tar.xz) = 11112c29579af01c38b5af6069c6433c22ee538ebaad55577e5737d3e4fa9158 -SIZE (fcitx/fcitx-libpinyin-0.3.1.tar.xz) = 41520 +SHA256 (fcitx/fcitx-libpinyin-0.3.2.tar.xz) = bdf0496e230cdf6c271b6eaf86212d9c5a2d51b60d8d9063b2f6a343de1e21fc +SIZE (fcitx/fcitx-libpinyin-0.3.2.tar.xz) = 43028 SHA256 (fcitx/model.text.20130308.tar.gz) = 4595b5832ec1f81e93a37ec5841a57898c68f6024ef0593b8de127d1e3571a69 SIZE (fcitx/model.text.20130308.tar.gz) = 15100062 Modified: head/chinese/fcitx-libpinyin/pkg-plist ============================================================================== --- head/chinese/fcitx-libpinyin/pkg-plist Sun Oct 4 19:26:03 2015 (r398619) +++ head/chinese/fcitx-libpinyin/pkg-plist Sun Oct 4 19:27:19 2015 (r398620) @@ -8,6 +8,8 @@ share/fcitx/imicon/shuangpin-libpinyin.p share/fcitx/inputmethod/pinyin-libpinyin.conf share/fcitx/inputmethod/shuangpin-libpinyin.conf share/fcitx/inputmethod/zhuyin-libpinyin.conf +share/fcitx/libpinyin/zhuyin_data/addon_phrase_index.bin +share/fcitx/libpinyin/zhuyin_data/addon_pinyin_index.bin share/fcitx/libpinyin/zhuyin_data/art.bin share/fcitx/libpinyin/zhuyin_data/bigram.db share/fcitx/libpinyin/zhuyin_data/culture.bin From owner-svn-ports-head@freebsd.org Sun Oct 4 19:28: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 152BDA10E27; Sun, 4 Oct 2015 19:28:42 +0000 (UTC) (envelope-from delphij@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 E101F1122; Sun, 4 Oct 2015 19:28:41 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94JSfah081261; Sun, 4 Oct 2015 19:28:41 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94JSfEH081258; Sun, 4 Oct 2015 19:28:41 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201510041928.t94JSfEH081258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sun, 4 Oct 2015 19:28:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398621 - head/chinese/ibus-libpinyin 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 19:28:42 -0000 Author: delphij Date: Sun Oct 4 19:28:40 2015 New Revision: 398621 URL: https://svnweb.freebsd.org/changeset/ports/398621 Log: Update to 1.7.2. PR: ports/203029 Approved by: maintainer (Henry Hu) Modified: head/chinese/ibus-libpinyin/Makefile head/chinese/ibus-libpinyin/distinfo head/chinese/ibus-libpinyin/pkg-plist Modified: head/chinese/ibus-libpinyin/Makefile ============================================================================== --- head/chinese/ibus-libpinyin/Makefile Sun Oct 4 19:27:19 2015 (r398620) +++ head/chinese/ibus-libpinyin/Makefile Sun Oct 4 19:28:40 2015 (r398621) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ibus-libpinyin -PORTVERSION= 1.7.1 +PORTVERSION= 1.7.2 CATEGORIES= chinese MASTER_SITES= SF/libpinyin/${PORTNAME} Modified: head/chinese/ibus-libpinyin/distinfo ============================================================================== --- head/chinese/ibus-libpinyin/distinfo Sun Oct 4 19:27:19 2015 (r398620) +++ head/chinese/ibus-libpinyin/distinfo Sun Oct 4 19:28:40 2015 (r398621) @@ -1,2 +1,2 @@ -SHA256 (ibus-libpinyin-1.7.1.tar.gz) = 81e9dc953b53bf5aff3b66c61d63180dc109eb645ab3cbcc1b733393f6c78afb -SIZE (ibus-libpinyin-1.7.1.tar.gz) = 1043569 +SHA256 (ibus-libpinyin-1.7.2.tar.gz) = 61b33e673b4dcb09b6d8fa9eac07061fdbe21c1e4efebeada0a4d04a03797b4a +SIZE (ibus-libpinyin-1.7.2.tar.gz) = 1044655 Modified: head/chinese/ibus-libpinyin/pkg-plist ============================================================================== --- head/chinese/ibus-libpinyin/pkg-plist Sun Oct 4 19:27:19 2015 (r398620) +++ head/chinese/ibus-libpinyin/pkg-plist Sun Oct 4 19:28:40 2015 (r398621) @@ -5,6 +5,7 @@ %%NLS%%share/locale/zh_TW/LC_MESSAGES/ibus-libpinyin.mo libexec/ibus-engine-libpinyin libexec/ibus-setup-libpinyin +share/appdata/libpinyin.appdata.xml share/applications/ibus-setup-libbopomofo.desktop share/applications/ibus-setup-libpinyin.desktop %%ENGLISH%%%%DATADIR%%/db/english.db From owner-svn-ports-head@freebsd.org Sun Oct 4 20:01:06 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 D6D40A0F7B5; Sun, 4 Oct 2015 20:01:06 +0000 (UTC) (envelope-from amdmi3@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 C8F8E1F57; Sun, 4 Oct 2015 20:01:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94K16pl097147; Sun, 4 Oct 2015 20:01:06 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94K16NT097146; Sun, 4 Oct 2015 20:01:06 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510042001.t94K16NT097146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 4 Oct 2015 20:01:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398622 - head/sysutils/iat 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 20:01:06 -0000 Author: amdmi3 Date: Sun Oct 4 20:01:05 2015 New Revision: 398622 URL: https://svnweb.freebsd.org/changeset/ports/398622 Log: - Add LICENSE Modified: head/sysutils/iat/Makefile Modified: head/sysutils/iat/Makefile ============================================================================== --- head/sysutils/iat/Makefile Sun Oct 4 19:28:40 2015 (r398621) +++ head/sysutils/iat/Makefile Sun Oct 4 20:01:05 2015 (r398622) @@ -9,6 +9,10 @@ MASTER_SITES= BERLIOS MAINTAINER= amdmi3@FreeBSD.org COMMENT= Converter of many types of CD-ROM image file formats into ISO-9660 +LICENSE= GPLv2 GPLv3 # code says GPLv2, COPYING says GPLv3 +LICENSE_COMB= multi +LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING + USES= tar:bzip2 GNU_CONFIGURE= yes From owner-svn-ports-head@freebsd.org Sun Oct 4 21:26: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 90208A10E7F; Sun, 4 Oct 2015 21:26:11 +0000 (UTC) (envelope-from junovitch@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 80ABF1CFB; Sun, 4 Oct 2015 21:26:11 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94LQBKs029857; Sun, 4 Oct 2015 21:26:11 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94LQA3s029853; Sun, 4 Oct 2015 21:26:10 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510042126.t94LQA3s029853@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 4 Oct 2015 21:26:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398623 - in head/mail/james: . 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 21:26:11 -0000 Author: junovitch Date: Sun Oct 4 21:26:09 2015 New Revision: 398623 URL: https://svnweb.freebsd.org/changeset/ports/398623 Log: mail/james: security update 2.3.1 -> 2.3.2.1; while here fix all the things - Add LICENSE and LICENSE_FILE - Add NO_ARCH - Fix PID_FILE using an undefined variable (resulting PID was /var/run/.pid) - Fix .include lines post staging support - Actually use the version number from PLIST_SUB in pkg-plist - Overhaul rc script - Add PROVIDE/REQUIRE/KEYWORD to header - Remove "geronimo" references from when the port was originally copied - Remove %%JAMES_VERSION%% in rc variable names. Every port version bump in the past came with a POLA issue as james231_enable=YES would now have to be james2321_enable=YES. Provide a shim to translate the old variable names and provide a warning to update rc.conf syntax. - Match start routine to embedded start-up script (which enables stop command to work without a java.lang.IllegalThreadStateException) - Add working status routine - Standardize indentation PR: 203461 Security: CVE-2015-7611 Security: be3069c9-67e7-11e5-9909-002590263bf5 MFH: 2015Q4 Modified: head/mail/james/Makefile head/mail/james/distinfo head/mail/james/files/james.in head/mail/james/pkg-plist Modified: head/mail/james/Makefile ============================================================================== --- head/mail/james/Makefile Sun Oct 4 20:01:05 2015 (r398622) +++ head/mail/james/Makefile Sun Oct 4 21:26:09 2015 (r398623) @@ -2,34 +2,34 @@ # $FreeBSD$ PORTNAME= james -PORTVERSION= 2.3.1 -PORTREVISION= 1 +PORTVERSION= 2.3.2.1 CATEGORIES= mail java -MASTER_SITES= APACHE/${PORTNAME}/server/binaries +MASTER_SITES= APACHE/${PORTNAME}/server/ DISTNAME= ${PORTNAME}-binary-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Java SMTP and POP3 Mail server and NNTP News server +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + USES= cpe CPE_VENDOR= apache USE_JAVA= yes JAVA_VERSION= 1.6+ -NO_BUILD= YES +NO_ARCH= yes +NO_BUILD= yes USE_RC_SUBR= james WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} APP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION} -PID_FILE= /var/run/${APP_SHORTNAME}.pid +PID_FILE= /var/run/${PORTNAME}.pid PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} SUB_LIST= JAVA_HOME=${JAVA_HOME} \ PID_FILE=${PID_FILE} \ - JAMES_HOME=${APP_HOME} \ - JAMES_VERSION=${PORTVERSION:S/.//g} - -.include + JAMES_HOME=${APP_HOME} pre-patch: @${ECHO_MSG} "Installation settings:" @@ -60,4 +60,4 @@ do-install: post-install: @${ECHO_MSG} "${PORTNAME} ${PORTVERSION} has been installed in ${APP_HOME}." -.include +.include Modified: head/mail/james/distinfo ============================================================================== --- head/mail/james/distinfo Sun Oct 4 20:01:05 2015 (r398622) +++ head/mail/james/distinfo Sun Oct 4 21:26:09 2015 (r398623) @@ -1,2 +1,2 @@ -SHA256 (james-binary-2.3.1.tar.gz) = 280cca87c4a0f55504af9fcbaec5ab045a91a87359744bc7fc54a4bf20cf4122 -SIZE (james-binary-2.3.1.tar.gz) = 7570886 +SHA256 (james-binary-2.3.2.1.tar.gz) = dc7ada2846e2fbbcdb0613240170e89cc61ae66ec89cecd9805dbd24cefcf119 +SIZE (james-binary-2.3.2.1.tar.gz) = 7661407 Modified: head/mail/james/files/james.in ============================================================================== --- head/mail/james/files/james.in Sun Oct 4 20:01:05 2015 (r398622) +++ head/mail/james/files/james.in Sun Oct 4 21:26:09 2015 (r398623) @@ -2,95 +2,100 @@ # # $FreeBSD$ # - +# PROVIDE: james +# REQUIRE: LOGIN +# KEYWORD: shutdown # -# Configuration settings for geronimo%%GERONIMO_VERSION%% in /etc/rc.conf: +# Configuration settings for james in /etc/rc.conf: # -# james%%JAMES_VERSION%%_enable (bool): +# james_enable (bool): # Set to "NO" by default. -# Set it to "YES" to enable james%%JAMES_VERSION%% -# +# Set it to "YES" to enable james # -# james%%JAMES_VERSION%%_home (str) +# james_home (str) # Set to "%%JAMES_HOME%%" by default. # Set the JAMES_HOME variable for the James process # -# james%%JAMES_VERSION%%_base (str) +# james_base (str) # Set to "%%JAMES_HOME%%" by default. # Set the JAMES_BASE variable for the James process # -# james%%JAMES_VERSION%%_tmpdir (str) +# james_tmpdir (str) # Set to "/tmp" by default. # -# geronimo%%GERONIMO_VERSION%%_stop_timeout (num) +# james_stop_timeout (num) # Set to "10" by default. -# Sets the timeout in seconds to allow geronimo to shutdown. -# After the timeout has elapsed, geronimo will be killed. +# Sets the timeout in seconds to allow james to shutdown. +# After the timeout has elapsed, james will be killed. # -# james%%JAMES_VERSION%%_java_home (str): -# james%%JAMES_VERSION%%_java_vendor (str): -# james%%JAMES_VERSION%%_java_version (str): -# james%%JAMES_VERSION%%_java_os (str): +# james_java_home (str): +# james_java_vendor (str): +# james_java_version (str): +# james_java_os (str): # Specify the requirements of the Java VM to use. See javavm(1). # -# james%%JAMES_VERSION%%_classpath (str): +# james_classpath (str): # Set to "" by default. # Addtional classes to add to the CLASSPATH # -# james%%JAMES_VERSION%%_java_opts (str): +# james_java_opts (str): # Set to "" by default. # Java VM args to use. # -james%%JAMES_VERSION%%_enable="${james%%JAMES_VERSION%%_enable:-"NO"}" -james%%JAMES_VERSION%%_java_version="${james%%JAMES_VERSION%%_java_version:-"%%JAVA_VERSION%%"}" -james%%JAMES_VERSION%%_home="${james%%JAMES_VERSION%%_home:-"%%JAMES_HOME%%"}" -james%%JAMES_VERSION%%_base="${james%%JAMES_VERSION%%_base:-"%%JAMES_HOME%%"}" -james%%JAMES_VERSION%%_tmpdir="${james%%JAMES_VERSION%%_tmpdir:-"/tmp"}" -james%%JAMES_VERSION%%_stop_timeout="${james%%JAMES_VERSION%%_stop_timeout:-"10"}" +james_enable="${james_enable:-"NO"}" +james_java_version="${james_java_version:-"%%JAVA_VERSION%%"}" +james_home="${james_home:-"%%JAMES_HOME%%"}" +james_base="${james_base:-"%%JAMES_HOME%%"}" +james_tmpdir="${james_tmpdir:-"/tmp"}" +james_stop_timeout="${james_stop_timeout:-"10"}" . /etc/rc.subr -name="james%%JAMES_VERSION%%" -rcvar=james%%JAMES_VERSION%%_enable +name=james +rcvar=james_enable pidfile="%%PID_FILE%%" -JAVA_HOME=%%JAVA_HOME%% -JRE_HOME=$JAVA_HOME/jre +load_rc_config "${name}" -JVM_EXT_DIRS="${james%%JAMES_VERSION%%_home}/lib:${james%%JAMES_VERSION%%_home}/tools/lib" +for var in $(list_vars "james[0-9]*"); do + echo "WARNING: \$$var is deprecated, use \$james_${var#*_} instead." + eval james_${var#*_}=\"\$$var\" +done + +JAVA_HOME="%%JAVA_HOME%%" +JRE_HOME="$JAVA_HOME/jre" +JVM_EXT_DIRS="${james_home}/lib:${james_home}/tools/lib" JVM_OPTS="-Djava.ext.dirs=$JVM_EXT_DIRS" -load_rc_config "${name}" - -if [ -n "${james%%JAMES_VERSION%%_java_home}" ] ; then - export JAVA_HOME="${james%%JAMES_VERSION%%_java_home}" +if [ -n "${james_java_home}" ] ; then + export JAVA_HOME="${james_java_home}" fi -if [ -n "${james%%JAMES_VERSION%%_java_version}" ] ; then - export JAVA_VERSION="${james%%JAMES_VERSION%%_java_version}" +if [ -n "${james_java_version}" ] ; then + export JAVA_VERSION="${james_java_version}" fi -if [ -n "${james%%JAMES_VERSION%%_java_vendor}" ] ; then - export JAVA_VENDOR="${james%%JAMES_VERSION%%_java_vendor}" +if [ -n "${james_java_vendor}" ] ; then + export JAVA_VENDOR="${james_java_vendor}" fi -if [ -n "${james%%JAMES_VERSION%%_java_os}" ] ; then - export JAVA_OS="${james%%JAMES_VERSION%%_java_os}" +if [ -n "${james_java_os}" ] ; then + export JAVA_OS="${james_java_os}" fi if [ "$JAVA_HOME" = "" ] ; then - echo "ERROR: JAVA_HOME not found in your environment." - echo - echo "Please, set the JAVA_HOME variable in your environment to match the" - echo "location of the Java Virtual Machine you want to use." - exit 1 + echo "ERROR: JAVA_HOME not found in your environment." + echo + echo "Please, set the JAVA_HOME variable in your environment to match the" + echo "location of the Java Virtual Machine you want to use." + return 1 fi -if [ -z "${james%%JAMES_VERSION%%_tmpdir}" ] ; then - # Define the java.io.tmpdir to use for Phoenix - james%%JAMES_VERSION%%_tmpdir="${james%%JAMES_VERSION%%_home}"/temp - mkdir -p "${james%%JAMES_VERSION%%_tmpdir}" +if [ -z "${james_tmpdir}" ] ; then + # Define the java.io.tmpdir to use for Phoenix + james_tmpdir="${james_home}"/temp + mkdir -p "${james_tmpdir}" fi java_cmd= @@ -102,43 +107,58 @@ fi java_command="$java_cmd $JVM_OPTS \ - -Djava.security.policy=jar:file:${james%%JAMES_VERSION%%_home}/bin/phoenix-loader.jar!/META-INF/java.policy \ - -Dphoenix.home=${james%%JAMES_VERSION%%_home} \ - -Djava.io.tmpdir=${james%%JAMES_VERSION%%_tmpdir} \ - -jar ${james%%JAMES_VERSION%%_home}/bin/phoenix-loader.jar >/dev/null" + -Djava.security.policy=jar:file:${james_home}/bin/phoenix-loader.jar!/META-INF/java.policy \ + -Dphoenix.home=${james_home} \ + -Djava.io.tmpdir=${james_tmpdir} \ + -jar ${james_home}/bin/phoenix-loader.jar >/dev/null" PHOENIX_CONSOLE="$PHOENIX_TMPDIR/phoenix.console" -if [ -z "$PHOENIX_CONSOLE" ] -then - if [ -w /dev/console ] - then - PHOENIX_CONSOLE=/dev/console - else - PHOENIX_CONSOLE=/dev/tty - fi +if [ -z "$PHOENIX_CONSOLE" ] ; then + if [ -w /dev/console ]; then + PHOENIX_CONSOLE=/dev/console + else + PHOENIX_CONSOLE=/dev/tty + fi fi - # Subvert the check_pid_file procname check. -if [ -f $pidfile ]; then - read rc_pid junk < $pidfile - if [ ! -z "$rc_pid" ]; then - procname=`ps -o ucomm= $rc_pid` - fi -fi - -command="/usr/sbin/daemon" -flags="-p ${pidfile} ${java_command}" - -start_precmd=pid_touch -stop_cmd="james%%JAMES_VERSION%%_stop" - -pid_touch () -{ - touch $pidfile +if [ -f $pidfile ] ; then + read rc_pid junk < $pidfile + if [ ! -z "$rc_pid" ]; then + procname=`ps -o ucomm= $rc_pid` + fi +fi + +start_cmd=james_start +status_cmd=james_status +stop_cmd=james_stop + +james_start() { + rc_pid=$(check_pidfile $pidfile *$procname*) + + if [ ! -z "$rc_pid" ]; then + echo "Already running!" + return 1 + fi + + echo "Starting ${name}." + nohup sh -c "exec $java_command >>$PHOENIX_CONSOLE 2>&1" >/dev/null & + echo $! > $pidfile +} + +james_status() { + rc_pid=$(check_pidfile $pidfile *$procname*) + + if [ -z "$rc_pid" ]; then + echo "${name} not running" + return 1 + else + echo "${name} is running as pid $rc_pid" + return 0 + fi } -james%%JAMES_VERSION%%_stop() { +james_stop() { rc_pid=$(check_pidfile $pidfile *$procname*) if [ -z "$rc_pid" ]; then @@ -153,7 +173,7 @@ james%%JAMES_VERSION%%_stop() { echo "Stopping ${name}." kill ${rc_pid}>/dev/null - james_wait_max_for_pid ${james%%JAMES_VERSION%%_stop_timeout} ${rc_pid} + james_wait_max_for_pid ${james_stop_timeout} ${rc_pid} kill -KILL ${rc_pid} 2> /dev/null && echo "Killed." echo -n > ${pidfile} } Modified: head/mail/james/pkg-plist ============================================================================== --- head/mail/james/pkg-plist Sun Oct 4 20:01:05 2015 (r398622) +++ head/mail/james/pkg-plist Sun Oct 4 21:26:09 2015 (r398623) @@ -1,77 +1,78 @@ -james2.3.1/LICENSE.txt -james2.3.1/NOTICE.txt -james2.3.1/README.txt -james2.3.1/UPGRADE.txt -james2.3.1/apps/dummy.txt -james2.3.1/apps/james.sar -james2.3.1/bin/Wrapper.LICENSE -james2.3.1/bin/Wrapper.dll -james2.3.1/bin/derby.properties -james2.3.1/bin/lib/excalibur-cli-1.0.jar -james2.3.1/bin/lib/excalibur-extension-1.0a.jar -james2.3.1/bin/lib/excalibur-instrument-manager-1.0.jar -james2.3.1/bin/lib/excalibur-io-1.1.jar -james2.3.1/bin/lib/excalibur-logger-2.1.jar -james2.3.1/bin/lib/excalibur-monitor-2.1.jar -james2.3.1/bin/lib/jakarta-oro-2.0.8.jar -james2.3.1/bin/lib/mx4j-jmx.jar -james2.3.1/bin/lib/mx4j-tools.jar -james2.3.1/bin/lib/mx4j.LICENSE -james2.3.1/bin/lib/phoenix-engine.jar -james2.3.1/bin/lib/spice-classman-1.0.jar -james2.3.1/bin/lib/spice-loggerstore-0.5.jar -james2.3.1/bin/lib/spice-salt-0.8.jar -james2.3.1/bin/lib/spice-xmlpolicy-1.0.jar -james2.3.1/bin/lib/spice.LICENSE -james2.3.1/bin/phoenix-loader.jar -james2.3.1/bin/phoenix.sh -james2.3.1/bin/run.sh -james2.3.1/bin/sendmail.py -james2.3.1/bin/wrapper.jar -james2.3.1/conf/kernel.xml -james2.3.1/conf/phoenix-service.xml -james2.3.1/conf/wrapper.conf -james2.3.1/ext/README.txt -james2.3.1/lib/avalon-framework-api-4.3.jar -james2.3.1/lib/avalon-framework-impl-4.3.jar -james2.3.1/lib/avalon-logkit-2.1.jar -james2.3.1/lib/commons-collections-2.1.1.jar -james2.3.1/lib/concurrent-1.3.4.jar -james2.3.1/lib/excalibur-cli-1.0.jar -james2.3.1/lib/excalibur-extension-1.0a.jar -james2.3.1/lib/excalibur-instrument-api-2.1.jar -james2.3.1/lib/excalibur-instrument-manager-1.0.jar -james2.3.1/lib/excalibur-io-1.1.jar -james2.3.1/lib/excalibur-logger-2.1.jar -james2.3.1/lib/excalibur-monitor-2.1.jar -james2.3.1/lib/excalibur-pool-api-2.1.jar -james2.3.1/lib/excalibur-pool-impl-2.1.jar -james2.3.1/lib/excalibur-thread-api-2.1.jar -james2.3.1/lib/excalibur-thread-impl-2.1.jar -james2.3.1/lib/jakarta-oro-2.0.8.jar -james2.3.1/lib/mx4j-jmx.jar -james2.3.1/lib/mx4j-tools.jar -james2.3.1/lib/mx4j.LICENSE -james2.3.1/lib/phoenix-client.jar -james2.3.1/lib/phoenix-engine.jar -james2.3.1/lib/spice-classman-1.0.jar -james2.3.1/lib/spice-loggerstore-0.5.jar -james2.3.1/lib/spice-salt-0.8.jar -james2.3.1/lib/spice-xmlpolicy-1.0.jar -james2.3.1/lib/spice.LICENSE -james2.3.1/lib/tools.jar -james2.3.1/logs/readme.txt -james2.3.1/tools/lib/excalibur-i18n-1.0.jar -james2.3.1/tools/lib/isorelax-20020414.jar -james2.3.1/tools/lib/isorelax.LICENSE -james2.3.1/tools/lib/msv-20020414.jar -james2.3.1/tools/lib/msv.LICENSE -james2.3.1/tools/lib/phoenix-tools.jar -james2.3.1/tools/lib/qdox-1.1.jar -james2.3.1/tools/lib/qdox.LICENSE -james2.3.1/tools/lib/relaxngDatatype-20020414.jar -james2.3.1/tools/lib/relaxngDatatype.LICENSE -james2.3.1/tools/lib/spice-configkit-1.1.2.jar -james2.3.1/tools/lib/spice.LICENSE -james2.3.1/tools/lib/xsdlib-20020414.jar -james2.3.1/tools/lib/xsdlib.LICENSE +%%T%%/LICENSE.txt +%%T%%/NOTICE.txt +%%T%%/README.txt +%%T%%/RELEASE_NOTES.txt +%%T%%/UPGRADE.txt +%%T%%/apps/dummy.txt +%%T%%/apps/james.sar +%%T%%/bin/Wrapper.LICENSE +%%T%%/bin/Wrapper.dll +%%T%%/bin/derby.properties +%%T%%/bin/lib/excalibur-cli-1.0.jar +%%T%%/bin/lib/excalibur-extension-1.0a.jar +%%T%%/bin/lib/excalibur-instrument-manager-1.0.jar +%%T%%/bin/lib/excalibur-io-1.1.jar +%%T%%/bin/lib/excalibur-logger-2.1.jar +%%T%%/bin/lib/excalibur-monitor-2.1.jar +%%T%%/bin/lib/jakarta-oro-2.0.8.jar +%%T%%/bin/lib/mx4j-jmx.jar +%%T%%/bin/lib/mx4j-tools.jar +%%T%%/bin/lib/mx4j.LICENSE +%%T%%/bin/lib/phoenix-engine.jar +%%T%%/bin/lib/spice-classman-1.0.jar +%%T%%/bin/lib/spice-loggerstore-0.5.jar +%%T%%/bin/lib/spice-salt-0.8.jar +%%T%%/bin/lib/spice-xmlpolicy-1.0.jar +%%T%%/bin/lib/spice.LICENSE +%%T%%/bin/phoenix-loader.jar +%%T%%/bin/phoenix.sh +%%T%%/bin/run.sh +%%T%%/bin/sendmail.py +%%T%%/bin/wrapper.jar +%%T%%/conf/kernel.xml +%%T%%/conf/phoenix-service.xml +%%T%%/conf/wrapper.conf +%%T%%/ext/README.txt +%%T%%/lib/avalon-framework-api-4.3.jar +%%T%%/lib/avalon-framework-impl-4.3.jar +%%T%%/lib/avalon-logkit-2.1.jar +%%T%%/lib/commons-collections-2.1.1.jar +%%T%%/lib/concurrent-1.3.4.jar +%%T%%/lib/excalibur-cli-1.0.jar +%%T%%/lib/excalibur-extension-1.0a.jar +%%T%%/lib/excalibur-instrument-api-2.1.jar +%%T%%/lib/excalibur-instrument-manager-1.0.jar +%%T%%/lib/excalibur-io-1.1.jar +%%T%%/lib/excalibur-logger-2.1.jar +%%T%%/lib/excalibur-monitor-2.1.jar +%%T%%/lib/excalibur-pool-api-2.1.jar +%%T%%/lib/excalibur-pool-impl-2.1.jar +%%T%%/lib/excalibur-thread-api-2.1.jar +%%T%%/lib/excalibur-thread-impl-2.1.jar +%%T%%/lib/jakarta-oro-2.0.8.jar +%%T%%/lib/mx4j-jmx.jar +%%T%%/lib/mx4j-tools.jar +%%T%%/lib/mx4j.LICENSE +%%T%%/lib/phoenix-client.jar +%%T%%/lib/phoenix-engine.jar +%%T%%/lib/spice-classman-1.0.jar +%%T%%/lib/spice-loggerstore-0.5.jar +%%T%%/lib/spice-salt-0.8.jar +%%T%%/lib/spice-xmlpolicy-1.0.jar +%%T%%/lib/spice.LICENSE +%%T%%/lib/tools.jar +%%T%%/logs/readme.txt +%%T%%/tools/lib/excalibur-i18n-1.0.jar +%%T%%/tools/lib/isorelax-20020414.jar +%%T%%/tools/lib/isorelax.LICENSE +%%T%%/tools/lib/msv-20020414.jar +%%T%%/tools/lib/msv.LICENSE +%%T%%/tools/lib/phoenix-tools.jar +%%T%%/tools/lib/qdox-1.1.jar +%%T%%/tools/lib/qdox.LICENSE +%%T%%/tools/lib/relaxngDatatype-20020414.jar +%%T%%/tools/lib/relaxngDatatype.LICENSE +%%T%%/tools/lib/spice-configkit-1.1.2.jar +%%T%%/tools/lib/spice.LICENSE +%%T%%/tools/lib/xsdlib-20020414.jar +%%T%%/tools/lib/xsdlib.LICENSE From owner-svn-ports-head@freebsd.org Sun Oct 4 21:27: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 D1319A0E0CF; Sun, 4 Oct 2015 21:27:56 +0000 (UTC) (envelope-from junovitch@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 C2B6C1E87; Sun, 4 Oct 2015 21:27:56 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94LRul3030037; Sun, 4 Oct 2015 21:27:56 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94LRuRi030036; Sun, 4 Oct 2015 21:27:56 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510042127.t94LRuRi030036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 4 Oct 2015 21:27:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398624 - 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 21:27:56 -0000 Author: junovitch Date: Sun Oct 4 21:27:55 2015 New Revision: 398624 URL: https://svnweb.freebsd.org/changeset/ports/398624 Log: Add CVE reference to Apache James entry PR: 203461 Security: CVE-2015-7611 Security: be3069c9-67e7-11e5-9909-002590263bf5 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Oct 4 21:26:09 2015 (r398623) +++ head/security/vuxml/vuln.xml Sun Oct 4 21:27:55 2015 (r398624) @@ -109,12 +109,14 @@ Notes: ports/203461 988628 + CVE-2015-7611 http://james.apache.org/download.cgi#Apache_James_Server https://blogs.apache.org/james/entry/apache_james_server_2_3 2015-09-30 2015-10-01 + 2015-10-04 From owner-svn-ports-head@freebsd.org Sun Oct 4 22:00:58 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 2545CA10C30; Sun, 4 Oct 2015 22:00:58 +0000 (UTC) (envelope-from junovitch@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 13D541D57; Sun, 4 Oct 2015 22:00:58 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94M0v7t045962; Sun, 4 Oct 2015 22:00:57 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94M0vlA045958; Sun, 4 Oct 2015 22:00:57 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510042200.t94M0vlA045958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 4 Oct 2015 22:00:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398625 - head/devel/phpunit 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 22:00:58 -0000 Author: junovitch Date: Sun Oct 4 22:00:56 2015 New Revision: 398625 URL: https://svnweb.freebsd.org/changeset/ports/398625 Log: devel/phpunit: update 4.5.0 -> 4.8.0 - Add NO_ARCH while here PR: 202810 Submitted by: Torsten Zuhlsdorff (maintainer) Modified: head/devel/phpunit/Makefile head/devel/phpunit/distinfo Modified: head/devel/phpunit/Makefile ============================================================================== --- head/devel/phpunit/Makefile Sun Oct 4 21:27:55 2015 (r398624) +++ head/devel/phpunit/Makefile Sun Oct 4 22:00:56 2015 (r398625) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpunit -PORTVERSION= 4.5.0 +PORTVERSION= 4.8.0 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ \ http://ports.toco-domains.de/ @@ -19,6 +19,7 @@ USES= cpe CPE_VENDOR= phpunit_project USE_PHP= dom json spl pcre phar +NO_ARCH= yes NO_BUILD= yes PLIST_FILES= bin/phpunit Modified: head/devel/phpunit/distinfo ============================================================================== --- head/devel/phpunit/distinfo Sun Oct 4 21:27:55 2015 (r398624) +++ head/devel/phpunit/distinfo Sun Oct 4 22:00:56 2015 (r398625) @@ -1,2 +1,2 @@ -SHA256 (phpunit-4.5.0.phar) = 3b33307128be5d4460eb344763b73ffa9d06b7be13a0db3c7e10566e64fb37b1 -SIZE (phpunit-4.5.0.phar) = 3411356 +SHA256 (phpunit-4.8.0.phar) = a1a3b167fd849547b0f9c773c9d3b775e12ee76bd2d4d6c4364c35f5c3cbcdd3 +SIZE (phpunit-4.8.0.phar) = 3109773 From owner-svn-ports-head@freebsd.org Mon Oct 5 00:00:12 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 833DCA105AF; Mon, 5 Oct 2015 00:00:12 +0000 (UTC) (envelope-from junovitch@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 5A0F61331; Mon, 5 Oct 2015 00:00:12 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9500COU090953; Mon, 5 Oct 2015 00:00:12 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9500Cce090952; Mon, 5 Oct 2015 00:00:12 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510050000.t9500Cce090952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 5 Oct 2015 00:00:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398626 - 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: Mon, 05 Oct 2015 00:00:12 -0000 Author: junovitch Date: Mon Oct 5 00:00:11 2015 New Revision: 398626 URL: https://svnweb.freebsd.org/changeset/ports/398626 Log: Document PHP multiple security advisories in phar plugin PR: 203541 Security: c1da8b75-6aef-11e5-9909-002590263bf5 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Oct 4 22:00:56 2015 (r398625) +++ head/security/vuxml/vuln.xml Mon Oct 5 00:00:11 2015 (r398626) @@ -58,6 +58,47 @@ Notes: --> + + php -- multiple vulnerabilities + + + php5-phar + 5.4.45 + + + php55-phar + 5.5.30 + + + php56-phar + 5.6.14 + + + + +

PHP reports:

+
+

Phar:

+
    +
  • Fixed bug #69720 (Null pointer dereference in + phar_get_fp_offset()).
  • +
  • Fixed bug #70433 (Uninitialized pointer in phar_make_dirstream + when zip entry filename is "/").
  • +
+
+ +
+ + ports/203541 + http://php.net/ChangeLog-5.php#5.5.30 + http://php.net/ChangeLog-5.php#5.6.14 + + + 2015-10-01 + 2015-10-04 + +
+ OpenSMTPD -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Mon Oct 5 00:00:13 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 166DDA105B2; Mon, 5 Oct 2015 00:00:13 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (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 EB4D51336; Mon, 5 Oct 2015 00:00:12 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from [10.10.132.92] (unknown [5.149.171.222]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 855653F426; Sun, 4 Oct 2015 19:51:57 -0400 (EDT) Date: Mon, 5 Oct 2015 00:51:54 +0100 (IST) From: Gerald Pfeifer To: Kurt Jaeger , linpct@gmail.com, fcharlier@ploup.net cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398375 - head/www/node In-Reply-To: <201510011746.t91HkPee014858@repo.freebsd.org> Message-ID: References: <201510011746.t91HkPee014858@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII 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: Mon, 05 Oct 2015 00:00:13 -0000 On Thu, 1 Oct 2015, Kurt Jaeger wrote: > Log: > www/node: fix build on 9.3 > > - enforce dependency on gcc48 on 9.3 > > PR: 203307 > Submitted by: fcharlier@ploup.net > Approved by: linpct@gmail.com (maintainer) > > Modified: head/www/node/Makefile > ============================================================================== > --- head/www/node/Makefile Thu Oct 1 17:31:33 2015 (r398374) > +++ head/www/node/Makefile Thu Oct 1 17:46:24 2015 (r398375) > @@ -39,7 +39,7 @@ CFLAGS+= -Wno-unused-const-variable > .endif > .else > MAKE_ARGS+= strictaliasing=off > -USE_GCC= any > +USE_GCC= 4.8+ > .endif I suggest to make this USE_GCC=yes instead (which currently already has GCC 4.8 as the minimum version). If you agree, I can make this change. Gerald From owner-svn-ports-head@freebsd.org Mon Oct 5 01:54:52 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 E9501A10016; Mon, 5 Oct 2015 01:54:52 +0000 (UTC) (envelope-from linpct@gmail.com) Received: from mail-qg0-x22b.google.com (mail-qg0-x22b.google.com [IPv6:2607:f8b0:400d:c04::22b]) (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 A681A11A4; Mon, 5 Oct 2015 01:54:52 +0000 (UTC) (envelope-from linpct@gmail.com) Received: by qgez77 with SMTP id z77so138051489qge.1; Sun, 04 Oct 2015 18:54:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=c2nSc0t22uT9QlGD5iC8TiA8EGGlDN6vNjM8WRXd8Ro=; b=Df0Go5mnikXVOqvfQISV9BGlQWA1MDPCKFNpygeRpGhJco1+VwVpxA7LxWtETMzNye GHhp9BV9iO4CaWRMGzpncoHE3SwP9fgv81KUPow4hmmhku10mzIlyySJAH009FJD6SEa nry1G7+KoVJGOyUlpyR7YEoK1MNS3Zt1JJIsZE9pZltc8lEhn9vU+8ThrJyYUadKZiNK pD8Xg4UVVSRKhmygSeENWQ2DhhNurLuvETgLTtYxENzonXBErhuxtmjGocQcWINg9F0I CqIEvUIaU1pO0KpQdBNM2aCzfFZ4/ATusH+TXxV3KJylVim6tmJdKiBcapp6mQnaLfIH zWtg== MIME-Version: 1.0 X-Received: by 10.140.98.213 with SMTP id o79mr34588612qge.19.1444010091572; Sun, 04 Oct 2015 18:54:51 -0700 (PDT) Received: by 10.140.98.134 with HTTP; Sun, 4 Oct 2015 18:54:51 -0700 (PDT) In-Reply-To: References: <201510011746.t91HkPee014858@repo.freebsd.org> Date: Mon, 5 Oct 2015 09:54:51 +0800 Message-ID: Subject: Re: svn commit: r398375 - head/www/node From: Daniel Lin To: Gerald Pfeifer Cc: Kurt Jaeger , fcharlier@ploup.net, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 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: Mon, 05 Oct 2015 01:54:53 -0000 Hi, I have no idea if FreeBSD 9.3 using GCC 4.8 as the minimum version. But if so, I agree USE_GCC= yes Thanks. 2015-10-05 7:51 GMT+08:00 Gerald Pfeifer : > On Thu, 1 Oct 2015, Kurt Jaeger wrote: > > Log: > > www/node: fix build on 9.3 > > > > - enforce dependency on gcc48 on 9.3 > > > > PR: 203307 > > Submitted by: fcharlier@ploup.net > > Approved by: linpct@gmail.com (maintainer) > > > > Modified: head/www/node/Makefile > > > ============================================================================== > > --- head/www/node/Makefile Thu Oct 1 17:31:33 2015 (r398374) > > +++ head/www/node/Makefile Thu Oct 1 17:46:24 2015 (r398375) > > @@ -39,7 +39,7 @@ CFLAGS+= -Wno-unused-const-variable > > .endif > > .else > > MAKE_ARGS+= strictaliasing=off > > -USE_GCC= any > > +USE_GCC= 4.8+ > > .endif > > I suggest to make this USE_GCC=yes instead (which currently already > has GCC 4.8 as the minimum version). > > If you agree, I can make this change. > > Gerald > -- Daniel Lin (pct) From owner-svn-ports-head@freebsd.org Mon Oct 5 02:41:24 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 C8A8FA0F97C; Mon, 5 Oct 2015 02:41:24 +0000 (UTC) (envelope-from kevlo@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 ACDFE195B; Mon, 5 Oct 2015 02:41:24 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t952fOrq060053; Mon, 5 Oct 2015 02:41:24 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t952fN8V060050; Mon, 5 Oct 2015 02:41:23 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201510050241.t952fN8V060050@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Mon, 5 Oct 2015 02:41:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398627 - in head/devel/umlgraph: . 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: Mon, 05 Oct 2015 02:41:25 -0000 Author: kevlo Date: Mon Oct 5 02:41:23 2015 New Revision: 398627 URL: https://svnweb.freebsd.org/changeset/ports/398627 Log: Update to 5.7.2 Deleted: head/devel/umlgraph/files/extra-patch-src_org_umlgraph_doclet_WrappedClassDoc.java Modified: head/devel/umlgraph/Makefile head/devel/umlgraph/distinfo head/devel/umlgraph/files/patch-umlgraph Modified: head/devel/umlgraph/Makefile ============================================================================== --- head/devel/umlgraph/Makefile Mon Oct 5 00:00:11 2015 (r398626) +++ head/devel/umlgraph/Makefile Mon Oct 5 02:41:23 2015 (r398627) @@ -2,22 +2,20 @@ # $FreeBSD$ PORTNAME= umlgraph -PORTVERSION= 5.6 -PORTREVISION= 1 +PORTVERSION= 5.7.2 CATEGORIES= devel java -MASTER_SITES= http://www.umlgraph.org/ -DISTNAME= UMLGraph-${PORTVERSION} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +MASTER_SITES= https://github.com/dspinellis/UMLGraph/archive/ +DISTNAME= R${PORTVERSION:S/./_/g} MAINTAINER= kevlo@FreeBSD.org COMMENT= Automated drawing of UML diagrams LICENSE= BSD3CLAUSE -WRKSRC= ${WRKDIR}/${DISTNAME} +WRKSRC= ${WRKDIR}/UMLGraph-${DISTNAME} USE_ANT= yes USE_JAVA= yes -JAVA_VERSION= 1.6+ +JAVA_VERSION= 1.8 BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz \ pic2plot:${PORTSDIR}/graphics/plotutils @@ -25,20 +23,14 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_FILES= bin/umlgraph %%JAVAJARDIR%%/UmlGraph.jar -.include - -.if ${JAVA_PORT_VERSION:M1.8.*} -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_org_umlgraph_doclet_WrappedClassDoc.java -.endif - post-configure: ${REINPLACE_CMD} -e 's|%%JAVA_HOME%%|${JAVA_HOME}|; \ s|%%JAVAJARDIR%%|${JAVAJARDIR}|' \ - ${WRKSRC}/bin/umlgraph + ${WRKSRC}/umlgraph do-install: @${MKDIR} ${STAGEDIR}${JAVAJARDIR} ${INSTALL_DATA} ${WRKSRC}/lib/UmlGraph.jar ${STAGEDIR}${JAVAJARDIR}/ - ${INSTALL_SCRIPT} ${WRKSRC}/bin/umlgraph ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/umlgraph ${STAGEDIR}${PREFIX}/bin -.include +.include Modified: head/devel/umlgraph/distinfo ============================================================================== --- head/devel/umlgraph/distinfo Mon Oct 5 00:00:11 2015 (r398626) +++ head/devel/umlgraph/distinfo Mon Oct 5 02:41:23 2015 (r398627) @@ -1,2 +1,2 @@ -SHA256 (UMLGraph-5.6.tar.gz) = bd17dcd8074e03c3a2f08f0ccf81ec149904ab365cbeae254629c4a277740d59 -SIZE (UMLGraph-5.6.tar.gz) = 3718510 +SHA256 (R5_7_2.tar.gz) = b4b0c6236c792d9d4d75265c19f3021a7224d388c8995d06cf60785c8eebf22f +SIZE (R5_7_2.tar.gz) = 3200282 Modified: head/devel/umlgraph/files/patch-umlgraph ============================================================================== --- head/devel/umlgraph/files/patch-umlgraph Mon Oct 5 00:00:11 2015 (r398626) +++ head/devel/umlgraph/files/patch-umlgraph Mon Oct 5 02:41:23 2015 (r398627) @@ -1,6 +1,6 @@ ---- bin/umlgraph.orig 2011-01-09 02:38:50.000000000 +0800 -+++ bin/umlgraph 2011-02-14 18:43:16.000000000 +0800 -@@ -19,7 +19,7 @@ +--- umlgraph.orig 2015-10-04 22:55:25.647816000 +0800 ++++ umlgraph 2015-10-04 22:56:10.202755000 +0800 +@@ -18,7 +18,7 @@ BASE=$1 FILETYPE=$2 shift 2 From owner-svn-ports-head@freebsd.org Mon Oct 5 03:09:25 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 48817A10E68; Mon, 5 Oct 2015 03:09:25 +0000 (UTC) (envelope-from junovitch@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 207B21636; Mon, 5 Oct 2015 03:09:25 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9539OQb069296; Mon, 5 Oct 2015 03:09:24 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9539OrO069295; Mon, 5 Oct 2015 03:09:24 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510050309.t9539OrO069295@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 5 Oct 2015 03:09:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398628 - 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: Mon, 05 Oct 2015 03:09:25 -0000 Author: junovitch Date: Mon Oct 5 03:09:24 2015 New Revision: 398628 URL: https://svnweb.freebsd.org/changeset/ports/398628 Log: Document 20150910 Plone advisories PR: 203255 Security: 6b3374d4-6b0b-11e5-9909-002590263bf5 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Oct 5 02:41:23 2015 (r398627) +++ head/security/vuxml/vuln.xml Mon Oct 5 03:09:24 2015 (r398628) @@ -58,6 +58,48 @@ Notes: --> + + plone -- multiple vulnerabilities + + + plone + 4.3.7 + + + + +

Plone.org reports:

+
+

Versions Affected: All current Plone versions.

+

Versions Not Affected: None.

+

Nature of vulnerability: Allows creation of members by anonymous + users on sites that have self-registration enabled, allowing bypass + of CAPTCHA and similar protections against scripted attacks.

+

The patch can be added to buildouts as Products.PloneHotfix20150910 + (available from PyPI) or downloaded from Plone.org.

+

Immediate Measures You Should Take: Disable self-registration until + you have applied the patch.

+
+
+

Plone's URL checking infrastructure includes a method for checking + if URLs valid and located in the Plone site. By passing HTML into + this specially crafted url, XSS can be achieved.

+
+ +
+ + ports/203255 + https://plone.org/products/plone-hotfix/releases/20150910 + https://plone.org/products/plone/security/advisories/20150910-announcement + https://plone.org/security/20150910/non-persistent-xss-in-plone + https://github.com/plone/Products.CMFPlone/commit/3da710a2cd68587f0bf34f2e7ea1167d6eeee087 + + + 2015-09-10 + 2015-10-05 + +
+ php -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Mon Oct 5 03:52:15 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 7E048A105FC; Mon, 5 Oct 2015 03:52:15 +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 6334814DF; Mon, 5 Oct 2015 03:52:15 +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 t953qF4s089592; Mon, 5 Oct 2015 03:52:15 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t953qEEM089590; Mon, 5 Oct 2015 03:52:14 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510050352.t953qEEM089590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 5 Oct 2015 03:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398629 - head/mail/dovecot2-pigeonhole 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: Mon, 05 Oct 2015 03:52:15 -0000 Author: pi Date: Mon Oct 5 03:52:14 2015 New Revision: 398629 URL: https://svnweb.freebsd.org/changeset/ports/398629 Log: mail/dovecot2-pigeonhole: 0.4.8 -> 0.4.9 upgrade to follow mail/dovecot2 * Properly implemented checking of ABI version for Sieve interpreter plugins, much like Dovecot itself does for plugins. This will prevent plugin ABI mismatches. + Implemented a vnd.dovecot.environment extension. This builds upon the standard environment extension and adds a few more environment items, such as username and default mailbox. It also creates a variables namespace so that environment items can be accessed directly. I am still thinking about more environment items that can be added. + Sieve extprograms plugin: Made line endings of the input passed to the external programs configurable. This can be configured separately for each of the three extensions. + ManageSieve: Implemented proxy XCLIENT support. This allows the proxy to pass client information to the back-end. - ManageSieve: Fixed an assert failure occurring when a client disconnects during the GETSCRIPT command. - doveadm sieve plugin: Fixed incorrect initialization of mail user. This caused a few memory leaks. - sieve-filter command line tool: Fixed handling of failure-related implicit keep when there is an explicit default destination folder. This caused message duplication. - lib-sieve: Fixed bug in RFC5322 header folding. Words longer than the optimal line length caused empty lines in the output, which would break the resulting message header. This surfaced in References: headers with very long message IDs. PR: 203526 Submitted by: Larry Rosenman (maintainer) Modified: head/mail/dovecot2-pigeonhole/Makefile head/mail/dovecot2-pigeonhole/distinfo Modified: head/mail/dovecot2-pigeonhole/Makefile ============================================================================== --- head/mail/dovecot2-pigeonhole/Makefile Mon Oct 5 03:09:24 2015 (r398628) +++ head/mail/dovecot2-pigeonhole/Makefile Mon Oct 5 03:52:14 2015 (r398629) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dovecot-pigeonhole -PORTVERSION= 0.4.8 -PORTREVISION= 1 +PORTVERSION= 0.4.9 CATEGORIES= mail MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} Modified: head/mail/dovecot2-pigeonhole/distinfo ============================================================================== --- head/mail/dovecot2-pigeonhole/distinfo Mon Oct 5 03:09:24 2015 (r398628) +++ head/mail/dovecot2-pigeonhole/distinfo Mon Oct 5 03:52:14 2015 (r398629) @@ -1,2 +1,2 @@ -SHA256 (dovecot-2.2-pigeonhole-0.4.8.tar.gz) = d73c1c5a11cdfdcb58304a1c1272cce6c8e1868e3f61d393b3b8a725f3bf665b -SIZE (dovecot-2.2-pigeonhole-0.4.8.tar.gz) = 1567528 +SHA256 (dovecot-2.2-pigeonhole-0.4.9.tar.gz) = 82892f876d26008a076973dfddf1cffaf5a0451825fd44e06287e94b89078649 +SIZE (dovecot-2.2-pigeonhole-0.4.9.tar.gz) = 1577127 From owner-svn-ports-head@freebsd.org Mon Oct 5 09:11:48 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 63FC2A1142E; Mon, 5 Oct 2015 09:11:48 +0000 (UTC) (envelope-from tijl@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 49C0EA6B; Mon, 5 Oct 2015 09:11:48 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t959BmPn027372; Mon, 5 Oct 2015 09:11:48 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t959Bkjm027364; Mon, 5 Oct 2015 09:11:46 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510050911.t959Bkjm027364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 5 Oct 2015 09:11:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398630 - head/security/polarssl13 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: Mon, 05 Oct 2015 09:11:48 -0000 Author: tijl Date: Mon Oct 5 09:11:45 2015 New Revision: 398630 URL: https://svnweb.freebsd.org/changeset/ports/398630 Log: - Update to 1.3.13 - Take maintainership PR: 203545 Submitted by: takefu@airport.fm MFH: 2015Q4 Security: https://tls.mbed.org/tech-updates/releases/polarssl-1.2.15-and-mbedtls-1.3.12-released Security: https://tls.mbed.org/tech-updates/releases/mbedtls-2.1.1-and-1.3.13-and-polarssl-1.2.16-released Modified: head/security/polarssl13/Makefile head/security/polarssl13/distinfo head/security/polarssl13/pkg-plist Modified: head/security/polarssl13/Makefile ============================================================================== --- head/security/polarssl13/Makefile Mon Oct 5 03:52:14 2015 (r398629) +++ head/security/polarssl13/Makefile Mon Oct 5 09:11:45 2015 (r398630) @@ -1,14 +1,14 @@ # $FreeBSD$ PORTNAME= polarssl -PORTVERSION= 1.3.11 +PORTVERSION= 1.3.13 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel MASTER_SITES= https://polarssl.org/download/ PKGNAMESUFFIX= 13 DISTNAME= mbedtls-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= tijl@FreeBSD.org COMMENT= SSL/TLS and cryptography library LICENSE= GPLv2 Modified: head/security/polarssl13/distinfo ============================================================================== --- head/security/polarssl13/distinfo Mon Oct 5 03:52:14 2015 (r398629) +++ head/security/polarssl13/distinfo Mon Oct 5 09:11:45 2015 (r398630) @@ -1,2 +1,2 @@ -SHA256 (mbedtls-1.3.11-gpl.tgz) = 67a593027b6a442a4fa5b6c224c4ac8cdae5be721f5a28a11d34f10dcda441cb -SIZE (mbedtls-1.3.11-gpl.tgz) = 1731809 +SHA256 (mbedtls-1.3.13-gpl.tgz) = 3f457aefdaf46f42b6fc50f5226c32c37731279fe20e97e322282aca0143bb97 +SIZE (mbedtls-1.3.13-gpl.tgz) = 1743155 Modified: head/security/polarssl13/pkg-plist ============================================================================== --- head/security/polarssl13/pkg-plist Mon Oct 5 03:52:14 2015 (r398629) +++ head/security/polarssl13/pkg-plist Mon Oct 5 09:11:45 2015 (r398630) @@ -2,11 +2,13 @@ bin/mbedtls_aescrypt2 bin/mbedtls_benchmark bin/mbedtls_cert_app bin/mbedtls_cert_req +bin/mbedtls_cert_write bin/mbedtls_crl_app bin/mbedtls_crypt_and_hash bin/mbedtls_dh_client bin/mbedtls_dh_genprime bin/mbedtls_dh_server +bin/mbedtls_ecdsa bin/mbedtls_gen_entropy bin/mbedtls_gen_key bin/mbedtls_gen_random_ctr_drbg @@ -23,6 +25,7 @@ bin/mbedtls_pk_decrypt bin/mbedtls_pk_encrypt bin/mbedtls_pk_sign bin/mbedtls_pk_verify +bin/mbedtls_req_app bin/mbedtls_rsa_decrypt bin/mbedtls_rsa_encrypt bin/mbedtls_rsa_genkey @@ -46,11 +49,13 @@ bin/polarssl_aescrypt2 bin/polarssl_benchmark bin/polarssl_cert_app bin/polarssl_cert_req +bin/polarssl_cert_write bin/polarssl_crl_app bin/polarssl_crypt_and_hash bin/polarssl_dh_client bin/polarssl_dh_genprime bin/polarssl_dh_server +bin/polarssl_ecdsa bin/polarssl_gen_entropy bin/polarssl_gen_key bin/polarssl_gen_random_ctr_drbg @@ -67,6 +72,7 @@ bin/polarssl_pk_decrypt bin/polarssl_pk_encrypt bin/polarssl_pk_sign bin/polarssl_pk_verify +bin/polarssl_req_app bin/polarssl_rsa_decrypt bin/polarssl_rsa_encrypt bin/polarssl_rsa_genkey From owner-svn-ports-head@freebsd.org Mon Oct 5 09:13:59 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 D3723A11631; Mon, 5 Oct 2015 09:13:59 +0000 (UTC) (envelope-from tijl@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 AB3ADDC; Mon, 5 Oct 2015 09:13:59 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t959Dx77027743; Mon, 5 Oct 2015 09:13:59 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t959Dw2q027740; Mon, 5 Oct 2015 09:13:58 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510050913.t959Dw2q027740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 5 Oct 2015 09:13:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398631 - head/security/mbedtls 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: Mon, 05 Oct 2015 09:13:59 -0000 Author: tijl Date: Mon Oct 5 09:13:58 2015 New Revision: 398631 URL: https://svnweb.freebsd.org/changeset/ports/398631 Log: Update to 2.1.1 PR: 203546 Submitted by: takefu@airport.fm MFH: 2015Q4 Security: https://tls.mbed.org/tech-updates/releases/mbedtls-2.1.1-and-1.3.13-and-polarssl-1.2.16-released Modified: head/security/mbedtls/Makefile head/security/mbedtls/distinfo head/security/mbedtls/pkg-plist Modified: head/security/mbedtls/Makefile ============================================================================== --- head/security/mbedtls/Makefile Mon Oct 5 09:11:45 2015 (r398630) +++ head/security/mbedtls/Makefile Mon Oct 5 09:13:58 2015 (r398631) @@ -1,16 +1,16 @@ # $FreeBSD$ PORTNAME= mbedtls -PORTVERSION= 2.0.0 -DISTVERSIONSUFFIX= -gpl +PORTVERSION= 2.1.1 +DISTVERSIONSUFFIX= -apache CATEGORIES= security devel MASTER_SITES= https://tls.mbed.org/download/ MAINTAINER= tijl@FreeBSD.org COMMENT= SSL/TLS and cryptography library -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/apache-2.0.txt ALL_TARGET= no_test MAKE_ENV= SHARED=1 @@ -25,7 +25,6 @@ post-patch: @${REINPLACE_CMD} \ -e 's/PREFIX/NAMEPREFIX/' \ -e 's/$$(DESTDIR)/&$$(PREFIX)/' \ - -e '/^install:/s/[[:<:]]all//' \ ${WRKSRC}/Makefile post-install: Modified: head/security/mbedtls/distinfo ============================================================================== --- head/security/mbedtls/distinfo Mon Oct 5 09:11:45 2015 (r398630) +++ head/security/mbedtls/distinfo Mon Oct 5 09:13:58 2015 (r398631) @@ -1,2 +1,2 @@ -SHA256 (mbedtls-2.0.0-gpl.tgz) = 149a06621368540b7e1cef1b203c268439c2edbf29e2e9471d8021125df34952 -SIZE (mbedtls-2.0.0-gpl.tgz) = 1790002 +SHA256 (mbedtls-2.1.1-apache.tgz) = 8f25b6f156ae5081e91bcc58b02455926d9324035fe5f7028a6bb5bc0139a757 +SIZE (mbedtls-2.1.1-apache.tgz) = 1829955 Modified: head/security/mbedtls/pkg-plist ============================================================================== --- head/security/mbedtls/pkg-plist Mon Oct 5 09:11:45 2015 (r398630) +++ head/security/mbedtls/pkg-plist Mon Oct 5 09:13:58 2015 (r398631) @@ -109,6 +109,12 @@ include/mbedtls/x509_crl.h include/mbedtls/x509_crt.h include/mbedtls/x509_csr.h include/mbedtls/xtea.h +lib/libmbedcrypto.a +lib/libmbedcrypto.so +lib/libmbedcrypto.so.0 lib/libmbedtls.a lib/libmbedtls.so lib/libmbedtls.so.10 +lib/libmbedx509.a +lib/libmbedx509.so +lib/libmbedx509.so.0 From owner-svn-ports-head@freebsd.org Mon Oct 5 09:37:57 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 E9E1B99A6B0; Mon, 5 Oct 2015 09:37:56 +0000 (UTC) (envelope-from ale@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 CED0569E34; Mon, 5 Oct 2015 09:37:56 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t959buiX049106; Mon, 5 Oct 2015 09:37:56 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t959btSj049099; Mon, 5 Oct 2015 09:37:55 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201510050937.t959btSj049099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Mon, 5 Oct 2015 09:37:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398632 - in head: archivers/php56-zip lang/php55 lang/php56 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: Mon, 05 Oct 2015 09:37:57 -0000 Author: ale Date: Mon Oct 5 09:37:54 2015 New Revision: 398632 URL: https://svnweb.freebsd.org/changeset/ports/398632 Log: Update PHP ports to versions 5.5.30 and 5.6.14. PR: 203541 Submitted by: Jason Unovitch Modified: head/archivers/php56-zip/Makefile head/lang/php55/Makefile head/lang/php55/distinfo head/lang/php56/Makefile head/lang/php56/distinfo Modified: head/archivers/php56-zip/Makefile ============================================================================== --- head/archivers/php56-zip/Makefile Mon Oct 5 09:13:58 2015 (r398631) +++ head/archivers/php56-zip/Makefile Mon Oct 5 09:37:54 2015 (r398632) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= archivers MASTERDIR= ${.CURDIR}/../../lang/php56 Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Mon Oct 5 09:13:58 2015 (r398631) +++ head/lang/php55/Makefile Mon Oct 5 09:37:54 2015 (r398632) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php55 -PORTVERSION= 5.5.29 +PORTVERSION= 5.5.30 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: head/lang/php55/distinfo ============================================================================== --- head/lang/php55/distinfo Mon Oct 5 09:13:58 2015 (r398631) +++ head/lang/php55/distinfo Mon Oct 5 09:37:54 2015 (r398632) @@ -1,4 +1,4 @@ -SHA256 (php-5.5.29.tar.bz2) = fbcee579ecc77cad6960a541116aee669cf145c2cd9a54bf60503a870843b946 -SIZE (php-5.5.29.tar.bz2) = 13698565 +SHA256 (php-5.5.30.tar.bz2) = e7332a713cecdd1cb44a1b1336739885c9789f633f0f51236b25e48ab03c3b29 +SIZE (php-5.5.30.tar.bz2) = 13699702 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Mon Oct 5 09:13:58 2015 (r398631) +++ head/lang/php56/Makefile Mon Oct 5 09:37:54 2015 (r398632) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php56 -PORTVERSION= 5.6.13 +PORTVERSION= 5.6.14 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: head/lang/php56/distinfo ============================================================================== --- head/lang/php56/distinfo Mon Oct 5 09:13:58 2015 (r398631) +++ head/lang/php56/distinfo Mon Oct 5 09:37:54 2015 (r398632) @@ -1,4 +1,4 @@ -SHA256 (php-5.6.13.tar.bz2) = 6358837c9cbab41b91ede59dbf0670ae0fb925a1369ecbc1a44a27212420f893 -SIZE (php-5.6.13.tar.bz2) = 14077633 +SHA256 (php-5.6.14.tar.bz2) = 36f295f11641c1839a5df00e693f685fd134c65e8a1d46e8ee0abae8662b2eb0 +SIZE (php-5.6.14.tar.bz2) = 14073920 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 From owner-svn-ports-head@freebsd.org Mon Oct 5 10:14:46 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 8C9869B295D; Mon, 5 Oct 2015 10:14:46 +0000 (UTC) (envelope-from tijl@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 7E737825; Mon, 5 Oct 2015 10:14:46 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95AEkBs061032; Mon, 5 Oct 2015 10:14:46 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95AEkNn061030; Mon, 5 Oct 2015 10:14:46 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510051014.t95AEkNn061030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 5 Oct 2015 10:14:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398633 - in head/devel/automake: . 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: Mon, 05 Oct 2015 10:14:46 -0000 Author: tijl Date: Mon Oct 5 10:14:45 2015 New Revision: 398633 URL: https://svnweb.freebsd.org/changeset/ports/398633 Log: Add a patch for perl 5.22 which warns that unescaped left braces in regular expressions are deprecated. PR: 202986 Submitted by: brnrd Added: head/devel/automake/files/patch-bin-automake.in (contents, props changed) Modified: head/devel/automake/Makefile Modified: head/devel/automake/Makefile ============================================================================== --- head/devel/automake/Makefile Mon Oct 5 09:37:54 2015 (r398632) +++ head/devel/automake/Makefile Mon Oct 5 10:14:45 2015 (r398633) @@ -3,6 +3,7 @@ PORTNAME= automake PORTVERSION= 1.15 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNU Added: head/devel/automake/files/patch-bin-automake.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/automake/files/patch-bin-automake.in Mon Oct 5 10:14:45 2015 (r398633) @@ -0,0 +1,11 @@ +--- bin/automake.in.orig 2015-01-05 19:25:55 UTC ++++ bin/automake.in +@@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker + sub substitute_ac_subst_variables + { + my ($text) = @_; +- $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge; ++ $text =~ s/\$\{([^ \t=:+{}]+)\}/substitute_ac_subst_variables_worker ($1)/ge; + return $text; + } + From owner-svn-ports-head@freebsd.org Mon Oct 5 10:22: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 78EF499A3FA; Mon, 5 Oct 2015 10:22:37 +0000 (UTC) (envelope-from olgeni@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 50CA4F26; Mon, 5 Oct 2015 10:22:37 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95AMbF5064675; Mon, 5 Oct 2015 10:22:37 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95AMaT2064672; Mon, 5 Oct 2015 10:22:36 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510051022.t95AMaT2064672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 5 Oct 2015 10:22:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398634 - head/textproc/elasticsearch-plugin-sql 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: Mon, 05 Oct 2015 10:22:37 -0000 Author: olgeni Date: Mon Oct 5 10:22:35 2015 New Revision: 398634 URL: https://svnweb.freebsd.org/changeset/ports/398634 Log: Upgrade textproc/elasticsearch-plugin-sql to version 1.4.2. Modified: head/textproc/elasticsearch-plugin-sql/Makefile head/textproc/elasticsearch-plugin-sql/distinfo head/textproc/elasticsearch-plugin-sql/pkg-plist Modified: head/textproc/elasticsearch-plugin-sql/Makefile ============================================================================== --- head/textproc/elasticsearch-plugin-sql/Makefile Mon Oct 5 10:14:45 2015 (r398633) +++ head/textproc/elasticsearch-plugin-sql/Makefile Mon Oct 5 10:22:35 2015 (r398634) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sql -PORTVERSION= 1.4 +PORTVERSION= 1.4.2 CATEGORIES= textproc MASTER_SITES= http://github.com/NLPchina/elasticsearch-sql/releases/download/${PORTVERSION}/ PKGNAMEPREFIX= elasticsearch-plugin- Modified: head/textproc/elasticsearch-plugin-sql/distinfo ============================================================================== --- head/textproc/elasticsearch-plugin-sql/distinfo Mon Oct 5 10:14:45 2015 (r398633) +++ head/textproc/elasticsearch-plugin-sql/distinfo Mon Oct 5 10:22:35 2015 (r398634) @@ -1,2 +1,2 @@ -SHA256 (elasticsearch-sql-1.4.zip) = 859e2866f8b1262f5d7df296f32f6508384af90262e575a0a929267595e68129 -SIZE (elasticsearch-sql-1.4.zip) = 3574962 +SHA256 (elasticsearch-sql-1.4.2.zip) = 97dd5b1457a2ab3b86e96df72c2dbf9a8c91bfe7cc398196bd6a04e06814df15 +SIZE (elasticsearch-sql-1.4.2.zip) = 5841835 Modified: head/textproc/elasticsearch-plugin-sql/pkg-plist ============================================================================== --- head/textproc/elasticsearch-plugin-sql/pkg-plist Mon Oct 5 10:14:45 2015 (r398633) +++ head/textproc/elasticsearch-plugin-sql/pkg-plist Mon Oct 5 10:22:35 2015 (r398634) @@ -417,4 +417,5 @@ lib/elasticsearch/plugins/sql/_site/vend lib/elasticsearch/plugins/sql/_site/vendor/jasmine-jquery/jasmine-jquery.js lib/elasticsearch/plugins/sql/_site/vendor/jquery/jquery-2.1.1.min.js lib/elasticsearch/plugins/sql/druid.jar +lib/elasticsearch/plugins/sql/guava.jar lib/elasticsearch/plugins/sql/elasticsearch-sql-%%VERSION%%.jar From owner-svn-ports-head@freebsd.org Mon Oct 5 10:24: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 E36E699A593; Mon, 5 Oct 2015 10:24:42 +0000 (UTC) (envelope-from olgeni@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 D5615177; Mon, 5 Oct 2015 10:24:42 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95AOg8g065035; Mon, 5 Oct 2015 10:24:42 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95AOgrs065033; Mon, 5 Oct 2015 10:24:42 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510051024.t95AOgrs065033@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 5 Oct 2015 10:24:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398636 - head/devel/erlang-rebar3_hex 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: Mon, 05 Oct 2015 10:24:43 -0000 Author: olgeni Date: Mon Oct 5 10:24:41 2015 New Revision: 398636 URL: https://svnweb.freebsd.org/changeset/ports/398636 Log: Upgrade devel/erlang-rebar3_hex to version 1.7.2. Modified: head/devel/erlang-rebar3_hex/Makefile head/devel/erlang-rebar3_hex/distinfo Modified: head/devel/erlang-rebar3_hex/Makefile ============================================================================== --- head/devel/erlang-rebar3_hex/Makefile Mon Oct 5 10:23:59 2015 (r398635) +++ head/devel/erlang-rebar3_hex/Makefile Mon Oct 5 10:24:41 2015 (r398636) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rebar3_hex -PORTVERSION= 1.7.1 +PORTVERSION= 1.7.2 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-rebar3_hex/distinfo ============================================================================== --- head/devel/erlang-rebar3_hex/distinfo Mon Oct 5 10:23:59 2015 (r398635) +++ head/devel/erlang-rebar3_hex/distinfo Mon Oct 5 10:24:41 2015 (r398636) @@ -1,2 +1,2 @@ -SHA256 (hexpm-rebar3_hex-v1.7.1_GH0.tar.gz) = ec342c70e42d359c68f23500a2e69ceecbecf66cfe800b7d2dc75bd0f83dac94 -SIZE (hexpm-rebar3_hex-v1.7.1_GH0.tar.gz) = 11267 +SHA256 (hexpm-rebar3_hex-v1.7.2_GH0.tar.gz) = 1cfa89f821bd134467a65f1538c4210cab2e623389bb3bddb6707dde8a305a98 +SIZE (hexpm-rebar3_hex-v1.7.2_GH0.tar.gz) = 11267 From owner-svn-ports-head@freebsd.org Mon Oct 5 11:46:57 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 D4CCC99A764; Mon, 5 Oct 2015 11:46:57 +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 ACDA41D2; Mon, 5 Oct 2015 11:46:57 +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 t95Bkvmx096913; Mon, 5 Oct 2015 11:46:57 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95BkvG9096912; Mon, 5 Oct 2015 11:46:57 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510051146.t95BkvG9096912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 5 Oct 2015 11:46:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398639 - 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: Mon, 05 Oct 2015 11:46:57 -0000 Author: kwm Date: Mon Oct 5 11:46:56 2015 New Revision: 398639 URL: https://svnweb.freebsd.org/changeset/ports/398639 Log: Document heap overflows and a DoS in gdk-pixbuf2. Security: CVE-2015-7673, CVE-2015-7674 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Oct 5 10:47:47 2015 (r398638) +++ head/security/vuxml/vuln.xml Mon Oct 5 11:46:56 2015 (r398639) @@ -58,6 +58,41 @@ Notes: --> + + gdk-pixbuf2 -- head overflow and DoS + + + gdk-pixbuf2 + 2.32.1 + + + + +

reports:

+
+

We found a heap overflow and a DoS in the gdk-pixbuf + implementation triggered by the scaling of tga file.

+

+
+

We found a heap overflow in the gdk-pixbuf implementation + triggered by the scaling of gif file.

+
+ +
+ + CVE-2015-7673 + CVE-2015-7674 + https://mail.gnome.org/archives/ftp-release-list/2015-September/msg00201.html + https://mail.gnome.org/archives/ftp-release-list/2015-September/msg00287.html + http://www.openwall.com/lists/oss-security/2015/10/02/9 + http://www.openwall.com/lists/oss-security/2015/10/02/10 + + + 2015-10-02 + 2015-10-05 + +
+ plone -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Mon Oct 5 11:49:25 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 BCC6699A9EC; Mon, 5 Oct 2015 11:49:25 +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 A1EAA9F5; Mon, 5 Oct 2015 11:49:25 +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 t95BnPOB097308; Mon, 5 Oct 2015 11:49:25 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95BnOxB097304; Mon, 5 Oct 2015 11:49:24 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510051149.t95BnOxB097304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 5 Oct 2015 11:49:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398640 - head/graphics/gdk-pixbuf2 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: Mon, 05 Oct 2015 11:49:25 -0000 Author: kwm Date: Mon Oct 5 11:49:24 2015 New Revision: 398640 URL: https://svnweb.freebsd.org/changeset/ports/398640 Log: Update gdk-pixbuf2 to 2.32.1. * Drop loaders for some rare image formats: wbmp, ras, pcx Obtained from: gnome devel repo MFH: 2015Q4 Security: 9272a5b0-6b40-11e5-bd7f-bcaec565249c Security: CVE-2015-7673, CVE-2015-7674 Modified: head/graphics/gdk-pixbuf2/Makefile head/graphics/gdk-pixbuf2/distinfo head/graphics/gdk-pixbuf2/pkg-plist Modified: head/graphics/gdk-pixbuf2/Makefile ============================================================================== --- head/graphics/gdk-pixbuf2/Makefile Mon Oct 5 11:46:56 2015 (r398639) +++ head/graphics/gdk-pixbuf2/Makefile Mon Oct 5 11:49:24 2015 (r398640) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gdk-pixbuf -PORTVERSION= 2.31.7 +PORTVERSION= 2.32.1 CATEGORIES= graphics MASTER_SITES= GNOME PKGNAMESUFFIX= 2 Modified: head/graphics/gdk-pixbuf2/distinfo ============================================================================== --- head/graphics/gdk-pixbuf2/distinfo Mon Oct 5 11:46:56 2015 (r398639) +++ head/graphics/gdk-pixbuf2/distinfo Mon Oct 5 11:49:24 2015 (r398640) @@ -1,2 +1,2 @@ -SHA256 (gnome2/gdk-pixbuf-2.31.7.tar.xz) = 4736e009168857ce8bb19291f0887c1dc6551cbc3c46d5ffcd034e133e4fd610 -SIZE (gnome2/gdk-pixbuf-2.31.7.tar.xz) = 2430852 +SHA256 (gnome2/gdk-pixbuf-2.32.1.tar.xz) = 4432b74f25538c7d6bcb3ca51adabdd666168955f25812a2568dc9637697f3bc +SIZE (gnome2/gdk-pixbuf-2.32.1.tar.xz) = 2427908 Modified: head/graphics/gdk-pixbuf2/pkg-plist ============================================================================== --- head/graphics/gdk-pixbuf2/pkg-plist Mon Oct 5 11:46:56 2015 (r398639) +++ head/graphics/gdk-pixbuf2/pkg-plist Mon Oct 5 11:49:24 2015 (r398640) @@ -22,23 +22,20 @@ lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/load lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-ico.so %%JASPER%%lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-jasper.so %%JPEG%%lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-jpeg.so -lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-pcx.so %%PNG%%lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-png.so lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-pnm.so lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-qtif.so -lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-ras.so lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-tga.so %%TIFF%%lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-tiff.so -lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-wbmp.so lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-xbm.so lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader-xpm.so lib/girepository-1.0/GdkPixbuf-2.0.typelib lib/libgdk_pixbuf-2.0.so lib/libgdk_pixbuf-2.0.so.0 -lib/libgdk_pixbuf-2.0.so.0.3100.7 +lib/libgdk_pixbuf-2.0.so.0.3200.1 lib/libgdk_pixbuf_xlib-2.0.so lib/libgdk_pixbuf_xlib-2.0.so.0 -lib/libgdk_pixbuf_xlib-2.0.so.0.3100.7 +lib/libgdk_pixbuf_xlib-2.0.so.0.3200.1 libdata/pkgconfig/gdk-pixbuf-2.0.pc libdata/pkgconfig/gdk-pixbuf-xlib-2.0.pc man/man1/gdk-pixbuf-csource.1.gz From owner-svn-ports-head@freebsd.org Mon Oct 5 11:50:15 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 6C34099AB21; Mon, 5 Oct 2015 11:50:15 +0000 (UTC) (envelope-from marino@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 436F7D37; Mon, 5 Oct 2015 11:50:15 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95BoFSe097600; Mon, 5 Oct 2015 11:50:15 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95BoEq8097596; Mon, 5 Oct 2015 11:50:14 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510051150.t95BoEq8097596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 5 Oct 2015 11:50:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398641 - in head: archivers/hpack.non-usa.only ftp/multiget graphics/zphoto www/quickie 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: Mon, 05 Oct 2015 11:50:15 -0000 Author: marino Date: Mon Oct 5 11:50:13 2015 New Revision: 398641 URL: https://svnweb.freebsd.org/changeset/ports/398641 Log: Add USES=alias to 4 ports (Aids DragonFly support) Modified: head/archivers/hpack.non-usa.only/Makefile head/ftp/multiget/Makefile head/graphics/zphoto/Makefile head/www/quickie/Makefile Modified: head/archivers/hpack.non-usa.only/Makefile ============================================================================== --- head/archivers/hpack.non-usa.only/Makefile Mon Oct 5 11:49:24 2015 (r398640) +++ head/archivers/hpack.non-usa.only/Makefile Mon Oct 5 11:50:13 2015 (r398641) @@ -11,6 +11,7 @@ DISTNAME= hpack79src MAINTAINER= ports@FreeBSD.org COMMENT= Multi-System Archiver with open keys PGP-based security +USES= alias USE_CSTD= gnu89 NO_WRKSUBDIR= yes MAKEFILE= makefile Modified: head/ftp/multiget/Makefile ============================================================================== --- head/ftp/multiget/Makefile Mon Oct 5 11:49:24 2015 (r398640) +++ head/ftp/multiget/Makefile Mon Oct 5 11:50:13 2015 (r398641) @@ -12,7 +12,7 @@ COMMENT= HTTP/FTP downloader with a nice WRKSRC_SUBDIR= src -USES= dos2unix +USES= alias dos2unix USE_WX= 2.8 WX_UNICODE= yes MAKEFILE= makefile Modified: head/graphics/zphoto/Makefile ============================================================================== --- head/graphics/zphoto/Makefile Mon Oct 5 11:49:24 2015 (r398640) +++ head/graphics/zphoto/Makefile Mon Oct 5 11:50:13 2015 (r398641) @@ -25,7 +25,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-avifile CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -USES= perl5 gmake +USES= alias gmake perl5 USE_PERL5= build post-patch: Modified: head/www/quickie/Makefile ============================================================================== --- head/www/quickie/Makefile Mon Oct 5 11:49:24 2015 (r398640) +++ head/www/quickie/Makefile Mon Oct 5 11:50:13 2015 (r398641) @@ -15,7 +15,7 @@ COMMENT= Small footprint, fast Wiki engi LICENSE= GPLv2 # (or later) -USES= perl5 +USES= alias perl5 USE_PERL5= build patch GNU_CONFIGURE= yes CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ From owner-svn-ports-head@freebsd.org Mon Oct 5 11:56: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 001109B1374; Mon, 5 Oct 2015 11:56: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 E6441127F; Mon, 5 Oct 2015 11:56: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 t95BuiIL001182; Mon, 5 Oct 2015 11:56:44 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95BuikW001181; Mon, 5 Oct 2015 11:56:44 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510051156.t95BuikW001181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 5 Oct 2015 11:56:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398642 - 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: Mon, 05 Oct 2015 11:56:45 -0000 Author: kwm Date: Mon Oct 5 11:56:43 2015 New Revision: 398642 URL: https://svnweb.freebsd.org/changeset/ports/398642 Log: Unbreak vuxml, woops. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Oct 5 11:50:13 2015 (r398641) +++ head/security/vuxml/vuln.xml Mon Oct 5 11:56:43 2015 (r398642) @@ -71,7 +71,7 @@ Notes:

reports:

We found a heap overflow and a DoS in the gdk-pixbuf - implementation triggered by the scaling of tga file.

+ implementation triggered by the scaling of tga file.

We found a heap overflow in the gdk-pixbuf implementation From owner-svn-ports-head@freebsd.org Mon Oct 5 12:02: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 443D29B1F46; Mon, 5 Oct 2015 12:02:14 +0000 (UTC) (envelope-from marino@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 35DB919FA; Mon, 5 Oct 2015 12:02:14 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95C2EF1004682; Mon, 5 Oct 2015 12:02:14 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95C2E2s004681; Mon, 5 Oct 2015 12:02:14 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510051202.t95C2E2s004681@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 5 Oct 2015 12:02:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398643 - head/ftp/multiget/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: Mon, 05 Oct 2015 12:02:14 -0000 Author: marino Date: Mon Oct 5 12:02:13 2015 New Revision: 398643 URL: https://svnweb.freebsd.org/changeset/ports/398643 Log: ftp/multiget: Add headers to fix on modern gcc Added: head/ftp/multiget/files/patch-common.h (contents, props changed) Added: head/ftp/multiget/files/patch-common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/multiget/files/patch-common.h Mon Oct 5 12:02:13 2015 (r398643) @@ -0,0 +1,11 @@ +--- common.h.orig 2015-10-04 16:03:02 UTC ++++ common.h +@@ -24,6 +24,8 @@ + #ifndef _COMMON_H + #define _COMMON_H + ++#include ++#include + #include + #include + #include From owner-svn-ports-head@freebsd.org Mon Oct 5 12:28:23 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 0C5F999A680; Mon, 5 Oct 2015 12:28:23 +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 F21597C0; Mon, 5 Oct 2015 12:28:22 +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 t95CSMis012094; Mon, 5 Oct 2015 12:28:22 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95CSM29012092; Mon, 5 Oct 2015 12:28:22 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201510051228.t95CSM29012092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 5 Oct 2015 12:28:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398645 - head/graphics/feh 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: Mon, 05 Oct 2015 12:28:23 -0000 Author: zeising Date: Mon Oct 5 12:28:21 2015 New Revision: 398645 URL: https://svnweb.freebsd.org/changeset/ports/398645 Log: Update to 2.14 Changelog: * Add --xinerama-index option for background setting (patch by James Knight) * When removing the last image in slidsehow mode, stay on the last (previously second-to-last) image (patch by Lior Shiponi) * Allow --sort and --randomize to override each other (most recently specified option wins) instead of always preferring --sort * Thumbnail mode: Mark image as processed when executing an action (--action) by clicking on an image * It is now possible to override feh's idea of the active xinerama screen using the --xinerama-index option * Remove (undocumented) feature allowing to override feh's idea of the active xinerama screen by setting the XINERAMA_SCREEN environment variable Modified: head/graphics/feh/Makefile head/graphics/feh/distinfo Modified: head/graphics/feh/Makefile ============================================================================== --- head/graphics/feh/Makefile Mon Oct 5 12:02:19 2015 (r398644) +++ head/graphics/feh/Makefile Mon Oct 5 12:28:21 2015 (r398645) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= feh -PORTVERSION= 2.13.1 +PORTVERSION= 2.14 CATEGORIES= graphics MASTER_SITES= http://feh.finalrewind.org/ \ LOCAL/uqs Modified: head/graphics/feh/distinfo ============================================================================== --- head/graphics/feh/distinfo Mon Oct 5 12:02:19 2015 (r398644) +++ head/graphics/feh/distinfo Mon Oct 5 12:28:21 2015 (r398645) @@ -1,2 +1,2 @@ -SHA256 (feh-2.13.1.tar.bz2) = 865088d0481f6862d79d7c08d7b6cf1d25058a74a5784e511a1422fea8aba980 -SIZE (feh-2.13.1.tar.bz2) = 2117354 +SHA256 (feh-2.14.tar.bz2) = 3829cd8995ec7cc08095a2b22a6c98d1e2638bd87c8b4f0e85a059c6f0edbc48 +SIZE (feh-2.14.tar.bz2) = 2118007 From owner-svn-ports-head@freebsd.org Mon Oct 5 12:45:30 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 64E7E9B5505; Mon, 5 Oct 2015 12:45:30 +0000 (UTC) (envelope-from amdmi3@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 563121D5; Mon, 5 Oct 2015 12:45:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95CjUnw019151; Mon, 5 Oct 2015 12:45:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95CjUVa019150; Mon, 5 Oct 2015 12:45:30 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510051245.t95CjUVa019150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 12:45:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398646 - head/Mk 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: Mon, 05 Oct 2015 12:45:30 -0000 Author: amdmi3 Date: Mon Oct 5 12:45:29 2015 New Revision: 398646 URL: https://svnweb.freebsd.org/changeset/ports/398646 Log: Add support for opt_TEST_TARGET consistent with opt_{ALL,INSTALL}_TARGET Approved by: portmgr (mat) Differential Revision: D3788 Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Mon Oct 5 12:28:21 2015 (r398645) +++ head/Mk/bsd.options.mk Mon Oct 5 12:45:29 2015 (r398646) @@ -125,7 +125,7 @@ # EXTRACT_ONLY GH_ACCOUNT GH_PROJECT GH_TAGNAME IGNORE INFO INSTALL_TARGET # LDFLAGS LIBS MAKE_ARGS MAKE_ENV PATCHFILES PATCH_SITES PLIST_DIRS # PLIST_DIRSTRY PLIST_FILES PLIST_SUB PORTDOCS PORTEXAMPLES SUB_FILES SUB_LIST -# USES, +# TEST_TARGET USES, # defining ${opt}_${variable} will add its content to the actual variable when # the option is enabled. Defining ${opt}_${variable}_OFF will add its content # to the actual variable when the option is disabled. @@ -152,7 +152,7 @@ _OPTIONS_FLAGS= ALL_TARGET BROKEN CATEGO GH_ACCOUNT GH_PROJECT GH_TAGNAME IGNORE INFO INSTALL_TARGET \ LDFLAGS LIBS MAKE_ARGS MAKE_ENV PATCHFILES PATCH_SITES \ PLIST_DIRS PLIST_DIRSTRY PLIST_FILES PLIST_SUB PORTDOCS \ - PORTEXAMPLES SUB_FILES SUB_LIST USES + PORTEXAMPLES SUB_FILES SUB_LIST TEST_TARGET USES _OPTIONS_DEPENDS= PKG FETCH EXTRACT PATCH BUILD LIB RUN # The format here is target_family:priority:target-type From owner-svn-ports-head@freebsd.org Mon Oct 5 12:55:41 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 446EA9B5E2B; Mon, 5 Oct 2015 12:55:41 +0000 (UTC) (envelope-from amdmi3@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 36059A81; Mon, 5 Oct 2015 12:55:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95Ctfvr022858; Mon, 5 Oct 2015 12:55:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95CteUD022856; Mon, 5 Oct 2015 12:55:40 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510051255.t95CteUD022856@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 12:55:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398647 - head/astro/josm 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: Mon, 05 Oct 2015 12:55:41 -0000 Author: amdmi3 Date: Mon Oct 5 12:55:39 2015 New Revision: 398647 URL: https://svnweb.freebsd.org/changeset/ports/398647 Log: - Update to 8800 PR: 203538 Submitted by: kalten@gmx.at Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Mon Oct 5 12:45:29 2015 (r398646) +++ head/astro/josm/Makefile Mon Oct 5 12:55:39 2015 (r398647) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= josm -PORTVERSION= 8677 +PORTVERSION= 8800 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Mon Oct 5 12:45:29 2015 (r398646) +++ head/astro/josm/distinfo Mon Oct 5 12:55:39 2015 (r398647) @@ -1,2 +1,2 @@ -SHA256 (josm-snapshot-8677.jar) = 8125a2d8766847e76becc00fa2afe3b8b7f8b84a6cd4b5f0e63d26164fdcebb4 -SIZE (josm-snapshot-8677.jar) = 10232801 +SHA256 (josm-snapshot-8800.jar) = fa86c19f8816a870dc3f1022cb173bedab01794d218bc2e734bdf672520e82fd +SIZE (josm-snapshot-8800.jar) = 10306896 From owner-svn-ports-head@freebsd.org Mon Oct 5 13:19: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 C713899A56A; Mon, 5 Oct 2015 13:19:45 +0000 (UTC) (envelope-from amdmi3@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 B86F2AB4; Mon, 5 Oct 2015 13:19:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95DJjv6030363; Mon, 5 Oct 2015 13:19:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95DJjE7030361; Mon, 5 Oct 2015 13:19:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510051319.t95DJjE7030361@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 13:19:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398648 - head/security/hotssh 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: Mon, 05 Oct 2015 13:19:45 -0000 Author: amdmi3 Date: Mon Oct 5 13:19:44 2015 New Revision: 398648 URL: https://svnweb.freebsd.org/changeset/ports/398648 Log: - Regenerate python bytecode to fix references to stagedir - Remove USES=desktop-file-utils as suggested by stage-qa - Add NO_ARCH Approved by: portmgr blanket Modified: head/security/hotssh/Makefile Modified: head/security/hotssh/Makefile ============================================================================== --- head/security/hotssh/Makefile Mon Oct 5 12:55:39 2015 (r398647) +++ head/security/hotssh/Makefile Mon Oct 5 13:19:44 2015 (r398648) @@ -3,7 +3,7 @@ PORTNAME= hotssh PORTVERSION= 0.2.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security gnome MASTER_SITES= GNOME @@ -24,8 +24,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte USE_GNOME= pygtk2 gnomedocutils libxslt glib20 intltool -USES= gettext python tar:bzip2 waf desktop-file-utils +USES= gettext python tar:bzip2 waf INSTALLS_ICONS= yes +NO_ARCH= yes B64DECODE?= /usr/bin/b64decode BSPATCH?= /usr/bin/bspatch @@ -36,4 +37,8 @@ post-extract: @cd ${WRKSRC} && ${B64DECODE} -o waf.diff ${FILESDIR}/waf.diff && ${BSPATCH} waf.beforepatch waf waf.diff && ${CHMOD} 755 waf @${GREP} -Rl '%%LOCALBASE%%' ${WRKSRC} |${XARGS} ${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" +post-install: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -d ${PYTHONPREFIX_SITELIBDIR} -f ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -d ${PYTHONPREFIX_SITELIBDIR} -f ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + .include From owner-svn-ports-head@freebsd.org Mon Oct 5 13:20:54 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 E07A699A7C2; Mon, 5 Oct 2015 13:20:54 +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 A63F6C81; Mon, 5 Oct 2015 13:20:54 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id B9A21B061E; Mon, 5 Oct 2015 16:20:46 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D9C2FBFE; Mon, 5 Oct 2015 16:17:03 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 7B7C010BDC6; Mon, 5 Oct 2015 16:19:46 +0300 (MSK) Date: Mon, 5 Oct 2015 16:19:46 +0300 From: Dmitry Marakasov To: "Montgomery-Smith, Stephen" Cc: Stephen Montgomery-Smith , "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 Message-ID: <20151005131945.GE44712@hades.panopticon> References: <201510022355.t92Nt52W070713@repo.freebsd.org> <20151003103218.GB44712@hades.panopticon> <561082CF.4060105@missouri.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <561082CF.4060105@missouri.edu> 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: Mon, 05 Oct 2015 13:20:55 -0000 * Montgomery-Smith, Stephen (stephen@missouri.edu) wrote: > > Could you please look into this math/octave-forge-msh? It doesn't seem > > different from other octave-forge ports, yet for some reason it produces > > this leftover directory: > > > > http://poudriere.amdmi3.ru/data/10-amd64-default/failures_all_2015_10_02/logs/errors/octave-forge-msh-1.0.10_2.log > > > > I made an update r398561 to math/octave-forge-base which should fix this > issue. Since most users will not notice this problem, I haven't bumped > the portrevision of any other octave-forge-* ports. Thank you! -- 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 Mon Oct 5 14:06:48 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 1536D9B2B7C; Mon, 5 Oct 2015 14:06:48 +0000 (UTC) (envelope-from amdmi3@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 EF54C91F; Mon, 5 Oct 2015 14:06:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95E6lIH048430; Mon, 5 Oct 2015 14:06:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95E6lm2048427; Mon, 5 Oct 2015 14:06:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510051406.t95E6lm2048427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 14:06:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398649 - in head/mail/dk-milter: . 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: Mon, 05 Oct 2015 14:06:48 -0000 Author: amdmi3 Date: Mon Oct 5 14:06:46 2015 New Revision: 398649 URL: https://svnweb.freebsd.org/changeset/ports/398649 Log: - Fix manpage handling - Fix installation from non-root Approved by: portmgr blanket Added: head/mail/dk-milter/files/patch-devtools_M4_UNIX_executable.m4 (contents, props changed) Modified: head/mail/dk-milter/Makefile head/mail/dk-milter/pkg-plist Modified: head/mail/dk-milter/Makefile ============================================================================== --- head/mail/dk-milter/Makefile Mon Oct 5 13:19:44 2015 (r398648) +++ head/mail/dk-milter/Makefile Mon Oct 5 14:06:46 2015 (r398649) @@ -3,7 +3,7 @@ PORTNAME= dk-milter PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= SF/${PORTNAME}/DomainKeys%20Milter/${PORTVERSION} @@ -32,7 +32,6 @@ RUN_DEPENDS+= ${LOCALBASE}/libexec/postf .endif WCONF= ${WRKSRC}/devtools/Site -MAN8= dk-filter.8 DOCSFILES= FEATURES INSTALL KNOWNBUGS LICENSE README RELEASE_NOTES \ rfc4870.txt dk-filter/autorespond.csh @@ -107,7 +106,7 @@ post-install: .endif ${INSTALL_SCRIPT} ${WRKSRC}/dk-filter/gentxt.csh \ ${STAGEDIR}${PREFIX}/sbin/gentxt-dk -.for i in ${MAN8} +.for i in dk-filter.8 @${RM} -f ${STAGEDIR}${PREFIX}/man/cat8/${i} \ ${STAGEDIR}${PREFIX}/man/cat8/${i}.gz ${INSTALL_MAN} ${WRKSRC}/*/${i} ${STAGEDIR}${PREFIX}/man/man8/ Added: head/mail/dk-milter/files/patch-devtools_M4_UNIX_executable.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dk-milter/files/patch-devtools_M4_UNIX_executable.m4 Mon Oct 5 14:06:46 2015 (r398649) @@ -0,0 +1,11 @@ +--- devtools/M4/UNIX/executable.m4.orig 2006-10-06 05:44:44 UTC ++++ devtools/M4/UNIX/executable.m4 +@@ -31,7 +31,7 @@ ifdef(`bldLINK_SOURCES', `bldMAKE_SOURCE + ifdef(`bldNO_INSTALL', , + `install-`'bldCURRENT_PRODUCT: bldCURRENT_PRODUCT ifdef(`bldTARGET_INST_DEP', `bldTARGET_INST_DEP') + ifdef(`confMKDIR', `if [ ! -d ${DESTDIR}${bldINSTALL_DIR`'BINDIR} ]; then confMKDIR -p ${DESTDIR}${bldINSTALL_DIR`'BINDIR}; else :; fi ') +- ${INSTALL} -c -o ${bldBIN_TYPE`'BINOWN} -g ${bldBIN_TYPE`'BINGRP} -m ${bldBIN_TYPE`'BINMODE} bldCURRENT_PRODUCT ${DESTDIR}${bldINSTALL_DIR`'BINDIR} ++ ${INSTALL} -c -m ${bldBIN_TYPE`'BINMODE} bldCURRENT_PRODUCT ${DESTDIR}${bldINSTALL_DIR`'BINDIR} + ifdef(`bldTARGET_LINKS', `bldMAKE_TARGET_LINKS(${bldINSTALL_DIR`'BINDIR}/bldCURRENT_PRODUCT, ${bldCURRENT_PRODUCT`'TARGET_LINKS})')') + + strip-`'bldCURRENT_PRODUCT: bldCURRENT_PRODUCT Modified: head/mail/dk-milter/pkg-plist ============================================================================== --- head/mail/dk-milter/pkg-plist Mon Oct 5 13:19:44 2015 (r398648) +++ head/mail/dk-milter/pkg-plist Mon Oct 5 14:06:46 2015 (r398649) @@ -1,4 +1,5 @@ libexec/dk-filter +man/man8/dk-filter.8.gz sbin/gentxt-dk %%PORTDOCS%%%%DOCSDIR%%/FEATURES %%PORTDOCS%%%%DOCSDIR%%/INSTALL @@ -8,4 +9,3 @@ sbin/gentxt-dk %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/autorespond.csh %%PORTDOCS%%%%DOCSDIR%%/rfc4870.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@freebsd.org Mon Oct 5 14:32:31 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 C3CBB99AF7C; Mon, 5 Oct 2015 14:32:31 +0000 (UTC) (envelope-from vsevolod@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 98CF889A; Mon, 5 Oct 2015 14:32:31 +0000 (UTC) (envelope-from vsevolod@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95EWVcO059051; Mon, 5 Oct 2015 14:32:31 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95EWUJY059048; Mon, 5 Oct 2015 14:32:30 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201510051432.t95EWUJY059048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Mon, 5 Oct 2015 14:32:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398650 - head/mail/rspamd 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: Mon, 05 Oct 2015 14:32:31 -0000 Author: vsevolod Date: Mon Oct 5 14:32:30 2015 New Revision: 398650 URL: https://svnweb.freebsd.org/changeset/ports/398650 Log: - Update to 1.0.4 Modified: head/mail/rspamd/Makefile head/mail/rspamd/distinfo head/mail/rspamd/pkg-plist Modified: head/mail/rspamd/Makefile ============================================================================== --- head/mail/rspamd/Makefile Mon Oct 5 14:06:46 2015 (r398649) +++ head/mail/rspamd/Makefile Mon Oct 5 14:32:30 2015 (r398650) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rspamd -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= mail MASTER_SITES= http://rspamd.com/downloads/ Modified: head/mail/rspamd/distinfo ============================================================================== --- head/mail/rspamd/distinfo Mon Oct 5 14:06:46 2015 (r398649) +++ head/mail/rspamd/distinfo Mon Oct 5 14:32:30 2015 (r398650) @@ -1,2 +1,2 @@ -SHA256 (rspamd-1.0.3.tar.xz) = 781f882a2583752a9f86bbf78196f6f663285115113e50787d9865519e90e859 -SIZE (rspamd-1.0.3.tar.xz) = 1066668 +SHA256 (rspamd-1.0.4.tar.xz) = acfaede1344bbdb165b473bce75f8e4af805520b62a0f3f0c332d29d2224d603 +SIZE (rspamd-1.0.4.tar.xz) = 1143732 Modified: head/mail/rspamd/pkg-plist ============================================================================== --- head/mail/rspamd/pkg-plist Mon Oct 5 14:06:46 2015 (r398649) +++ head/mail/rspamd/pkg-plist Mon Oct 5 14:32:30 2015 (r398650) @@ -63,14 +63,18 @@ lib/rspamd/librspamd-actrie.so %%DATADIR%%/rules/rspamd.classifiers.lua %%DATADIR%%/rules/rspamd.lua %%DATADIR%%/www/README.md +%%DATADIR%%/www/css/datatables.min.css +%%DATADIR%%/www/css/glyphicons-halflings-regular.woff +%%DATADIR%%/www/css/glyphicons-halflings-regular.woff2 %%DATADIR%%/www/css/rspamd.css +%%DATADIR%%/www/favicon.ico %%DATADIR%%/www/img/asc.png %%DATADIR%%/www/img/desc.png %%DATADIR%%/www/img/spinner.gif %%DATADIR%%/www/img/spinner.png %%DATADIR%%/www/index.html %%DATADIR%%/www/js/d3pie.min.js -%%DATADIR%%/www/js/jquery.paginatetable.js +%%DATADIR%%/www/js/datatables.min.js %%DATADIR%%/www/js/rspamd.js %%DATADIR%%/www/plugins.txt %%DATADIR%%/www/react-index.html From owner-svn-ports-head@freebsd.org Mon Oct 5 15:11:36 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 1C20D9B1E3C; Mon, 5 Oct 2015 15:11:36 +0000 (UTC) (envelope-from vanilla@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 0D5ADE9B; Mon, 5 Oct 2015 15:11:36 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95FBZT3073256; Mon, 5 Oct 2015 15:11:35 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95FBZ6w073255; Mon, 5 Oct 2015 15:11:35 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201510051511.t95FBZ6w073255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Mon, 5 Oct 2015 15:11:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398651 - head/security/erlang-jose 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: Mon, 05 Oct 2015 15:11:36 -0000 Author: vanilla Date: Mon Oct 5 15:11:35 2015 New Revision: 398651 URL: https://svnweb.freebsd.org/changeset/ports/398651 Log: define DOCDIRS to avoid file conflict with security/elixir-jose. Modified: head/security/erlang-jose/Makefile Modified: head/security/erlang-jose/Makefile ============================================================================== --- head/security/erlang-jose/Makefile Mon Oct 5 14:32:30 2015 (r398650) +++ head/security/erlang-jose/Makefile Mon Oct 5 15:11:35 2015 (r398651) @@ -2,6 +2,7 @@ PORTNAME= jose PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= security PKGNAMEPREFIX= erlang- @@ -15,6 +16,7 @@ USE_GITHUB= yes GH_ACCOUNT= potatosalad GH_PROJECT= erlang-jose ERL_APP_NAME= erlang-jose +DOCSDIR= ${PREFIX}/share/doc/${ERL_APP_NAME} ERL_BUILD_DEPS= converters/erlang-base64url ERL_RUN_DEPS:= ${ERL_BUILD_DEPS} From owner-svn-ports-head@freebsd.org Mon Oct 5 15:13: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 D45549B1F6C; Mon, 5 Oct 2015 15:13:10 +0000 (UTC) (envelope-from vanilla@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 C5BE4101; Mon, 5 Oct 2015 15:13:10 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95FDAC9073418; Mon, 5 Oct 2015 15:13:10 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95FDAtK073417; Mon, 5 Oct 2015 15:13:10 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201510051513.t95FDAtK073417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Mon, 5 Oct 2015 15:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398652 - head/security/elixir-jose 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: Mon, 05 Oct 2015 15:13:10 -0000 Author: vanilla Date: Mon Oct 5 15:13:09 2015 New Revision: 398652 URL: https://svnweb.freebsd.org/changeset/ports/398652 Log: define DOCSDIR to avoid file conflict with security/erlang-jose. Modified: head/security/elixir-jose/Makefile Modified: head/security/elixir-jose/Makefile ============================================================================== --- head/security/elixir-jose/Makefile Mon Oct 5 15:11:35 2015 (r398651) +++ head/security/elixir-jose/Makefile Mon Oct 5 15:13:09 2015 (r398652) @@ -2,6 +2,7 @@ PORTNAME= jose PORTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= security PKGNAMEPREFIX= elixir- @@ -14,6 +15,7 @@ USES= elixir USE_GITHUB= yes GH_ACCOUNT= potatosalad GH_PROJECT= erlang-jose +DOCSDIR= ${PREFIX}/share/doc/elixir-${PORTNAME} MIX_BUILD_DEPS= converters/erlang-base64url \ security/erlang-jose From owner-svn-ports-head@freebsd.org Mon Oct 5 15:19:19 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 B18CE9B243B; Mon, 5 Oct 2015 15:19:19 +0000 (UTC) (envelope-from marino@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 8924A3CA; Mon, 5 Oct 2015 15:19:19 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95FJJ1x073742; Mon, 5 Oct 2015 15:19:19 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95FJJR3073741; Mon, 5 Oct 2015 15:19:19 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510051519.t95FJJR3073741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 5 Oct 2015 15:19:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398653 - head/ftp/multiget/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: Mon, 05 Oct 2015 15:19:19 -0000 Author: marino Date: Mon Oct 5 15:19:18 2015 New Revision: 398653 URL: https://svnweb.freebsd.org/changeset/ports/398653 Log: ftp/multiget: Remove redundant patch With the patch of common.h, the patch to common.cpp is no longer necessary. Deleted: head/ftp/multiget/files/patch-common.cpp From owner-svn-ports-head@freebsd.org Mon Oct 5 16:13:52 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 9E69E9B5F87; Mon, 5 Oct 2015 16:13:52 +0000 (UTC) (envelope-from adamw@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 8B1686A7; Mon, 5 Oct 2015 16:13:52 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95GDqdQ094801; Mon, 5 Oct 2015 16:13:52 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95GDpGe094798; Mon, 5 Oct 2015 16:13:51 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201510051613.t95GDpGe094798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 5 Oct 2015 16:13:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398654 - in head: archivers/liblz4 multimedia/x265 www/p5-WebDriver-Tiny 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: Mon, 05 Oct 2015 16:13:52 -0000 Author: adamw Date: Mon Oct 5 16:13:51 2015 New Revision: 398654 URL: https://svnweb.freebsd.org/changeset/ports/398654 Log: Reassign some of my ports to the Collective. Modified: head/archivers/liblz4/Makefile head/multimedia/x265/Makefile head/www/p5-WebDriver-Tiny/Makefile Modified: head/archivers/liblz4/Makefile ============================================================================== --- head/archivers/liblz4/Makefile Mon Oct 5 15:19:18 2015 (r398653) +++ head/archivers/liblz4/Makefile Mon Oct 5 16:13:51 2015 (r398654) @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= r CATEGORIES= archivers PKGNAMEPREFIX= lib -MAINTAINER= adamw@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= LZ4 compression library, lossless and very fast LICENSE= BSD2CLAUSE GPLv2 Modified: head/multimedia/x265/Makefile ============================================================================== --- head/multimedia/x265/Makefile Mon Oct 5 15:19:18 2015 (r398653) +++ head/multimedia/x265/Makefile Mon Oct 5 16:13:51 2015 (r398654) @@ -8,7 +8,7 @@ MASTER_SITES= http://bitbucket.org/multi DISTNAME= ${PORTVERSION} DIST_SUBDIR= ${PORTNAME} -MAINTAINER= adamw@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= H.265/High Efficiency Video Coding (HEVC) format LICENSE= GPLv2 Modified: head/www/p5-WebDriver-Tiny/Makefile ============================================================================== --- head/www/p5-WebDriver-Tiny/Makefile Mon Oct 5 15:19:18 2015 (r398653) +++ head/www/p5-WebDriver-Tiny/Makefile Mon Oct 5 16:13:51 2015 (r398654) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:CVLIBRARY PKGNAMEPREFIX= p5- -MAINTAINER= adamw@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Selenium 2.0 bindings for Perl LICENSE= ART10 GPLv1 From owner-svn-ports-head@freebsd.org Mon Oct 5 16:54:15 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 C454599AE2A; Mon, 5 Oct 2015 16:54:15 +0000 (UTC) (envelope-from olivierd@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 A640CC64; Mon, 5 Oct 2015 16:54:15 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95GsF6e009291; Mon, 5 Oct 2015 16:54:15 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95GsE9s009284; Mon, 5 Oct 2015 16:54:14 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201510051654.t95GsE9s009284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Mon, 5 Oct 2015 16:54:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398655 - in head/textproc: . gspell gspell/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: Mon, 05 Oct 2015 16:54:16 -0000 Author: olivierd Date: Mon Oct 5 16:54:13 2015 New Revision: 398655 URL: https://svnweb.freebsd.org/changeset/ports/398655 Log: gspell provides a flexible API to implement the spell checking in a GTK+ application. WWW: https://github.com/swilmet/gspell Added: head/textproc/gspell/ head/textproc/gspell/Makefile (contents, props changed) head/textproc/gspell/distinfo (contents, props changed) head/textproc/gspell/files/ head/textproc/gspell/files/patch-configure (contents, props changed) head/textproc/gspell/pkg-descr (contents, props changed) head/textproc/gspell/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Oct 5 16:13:51 2015 (r398654) +++ head/textproc/Makefile Mon Oct 5 16:54:13 2015 (r398655) @@ -223,6 +223,7 @@ SUBDIR += groff SUBDIR += groonga SUBDIR += gsed + SUBDIR += gspell SUBDIR += gtk-doc SUBDIR += gtkspell SUBDIR += gtkspell-reference Added: head/textproc/gspell/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/gspell/Makefile Mon Oct 5 16:54:13 2015 (r398655) @@ -0,0 +1,33 @@ +# Created by: Olivier Duchateau +# $FreeBSD$ + +PORTNAME= gspell +PORTVERSION= 0.1.0 +CATEGORIES= textproc +MASTER_SITES= https://people.gnome.org/~swilmet/gspell/ + +MAINTAINER= olivierd@FreeBSD.org +COMMENT= Spell checking for GTK+ + +LICENSE= GPLv2 + +BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala \ + iso-codes>=3.57:${PORTSDIR}/misc/iso-codes +LIB_DEPENDS= libenchant.so:${PORTSDIR}/textproc/enchant + +USES= gmake iconv libtool pathfix pkgconfig tar:xz +USE_GNOME= glib20 gtksourceview3 introspection:build libxml2 +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +CONFIGURE_ARGS=--enable-introspection=yes \ + --enable-compile-warnings=no \ + --without-html-dir + +OPTIONS_DEFINE= NLS +NLS_USES= gettext-tools +NLS_CONFIGURE_ENABLE= nls +OPTIONS_SUB= yes + +.include Added: head/textproc/gspell/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/gspell/distinfo Mon Oct 5 16:54:13 2015 (r398655) @@ -0,0 +1,2 @@ +SHA256 (gspell-0.1.0.tar.xz) = 8c10c5c447ca8c4a230516bd89bcfb00791fe3b4a7bbd4f34a53c72505db9628 +SIZE (gspell-0.1.0.tar.xz) = 353140 Added: head/textproc/gspell/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/gspell/files/patch-configure Mon Oct 5 16:54:13 2015 (r398655) @@ -0,0 +1,11 @@ +--- configure.orig 2015-09-30 18:57:09 UTC ++++ configure +@@ -4288,7 +4288,7 @@ fi + if test "${with_pkgconfigdir+set}" = set; then : + withval=$with_pkgconfigdir; + else +- with_pkgconfigdir='${libdir}/pkgconfig' ++ with_pkgconfigdir='${prefix}/libdata/pkgconfig' + fi + + pkgconfigdir=$with_pkgconfigdir Added: head/textproc/gspell/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/gspell/pkg-descr Mon Oct 5 16:54:13 2015 (r398655) @@ -0,0 +1,4 @@ +gspell provides a flexible API to implement the spell checking in a GTK+ +application. + +WWW: https://github.com/swilmet/gspell Added: head/textproc/gspell/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/gspell/pkg-plist Mon Oct 5 16:54:13 2015 (r398655) @@ -0,0 +1,48 @@ +include/gspell-1/gspell/gspell-checker-dialog.h +include/gspell-1/gspell/gspell-checker.h +include/gspell-1/gspell/gspell-inline-checker-gtv.h +include/gspell-1/gspell/gspell-language-chooser-button.h +include/gspell-1/gspell/gspell-language-chooser-dialog.h +include/gspell-1/gspell/gspell-language-chooser.h +include/gspell-1/gspell/gspell-language.h +include/gspell-1/gspell/gspell-navigator-gtv.h +include/gspell-1/gspell/gspell-navigator.h +include/gspell-1/gspell/gspell.h +lib/girepository-1.0/Gspell-1.typelib +lib/libgspell-1.so +lib/libgspell-1.so.0 +lib/libgspell-1.so.0.0.0 +libdata/pkgconfig/gspell-1.pc +share/gir-1.0/Gspell-1.gir +%%NLS%%share/locale/ar/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/da/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/de/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/el/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/es/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/fa/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/fi/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/he/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/it/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/ko/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/lv/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/pt/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/sr/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/vi/LC_MESSAGES/gspell-1.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/gspell-1.mo +share/vala/vapi/gspell-1.deps +share/vala/vapi/gspell-1.vapi From owner-svn-ports-head@freebsd.org Mon Oct 5 16:59:52 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 B5B769B519F; Mon, 5 Oct 2015 16:59:52 +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 9A541103A; Mon, 5 Oct 2015 16:59:52 +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 t95GxqGt009709; Mon, 5 Oct 2015 16:59:52 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95GxpKK009704; Mon, 5 Oct 2015 16:59:51 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510051659.t95GxpKK009704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 5 Oct 2015 16:59:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398656 - in head/lang: gcc gcc5 gcc5-devel gcc6-devel 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: Mon, 05 Oct 2015 16:59:52 -0000 Author: antoine Date: Mon Oct 5 16:59:50 2015 New Revision: 398656 URL: https://svnweb.freebsd.org/changeset/ports/398656 Log: Add missing USES=compiler, needed for ${COMPILER_TYPE} checks PR: 203540 Modified: head/lang/gcc/Makefile head/lang/gcc5-devel/Makefile head/lang/gcc5/Makefile head/lang/gcc6-devel/Makefile Modified: head/lang/gcc/Makefile ============================================================================== --- head/lang/gcc/Makefile Mon Oct 5 16:54:13 2015 (r398655) +++ head/lang/gcc/Makefile Mon Oct 5 16:59:50 2015 (r398656) @@ -31,7 +31,7 @@ DISTVERSION= ${PORTVERSION} GCC_VERSION= ${PORTVERSION:C/(.+)\.[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} ONLY_FOR_ARCHS= amd64 armv6 armv6hf i386 powerpc powerpc64 sparc64 -USES= cpe gmake iconv libtool makeinfo perl5 tar:bzip2 +USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 USE_BINUTILS= yes USE_PERL5= build SSP_UNSAFE= yes Modified: head/lang/gcc5-devel/Makefile ============================================================================== --- head/lang/gcc5-devel/Makefile Mon Oct 5 16:54:13 2015 (r398655) +++ head/lang/gcc5-devel/Makefile Mon Oct 5 16:59:50 2015 (r398656) @@ -34,7 +34,7 @@ DISTVERSION= ${PORTVERSION:C/([0-9]+).*\ GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 sparc64 arm armv6 armv6hf -USES= cpe gmake iconv libtool makeinfo perl5 tar:bzip2 +USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 USE_BINUTILS= yes USE_PERL5= build SSP_UNSAFE= yes Modified: head/lang/gcc5/Makefile ============================================================================== --- head/lang/gcc5/Makefile Mon Oct 5 16:54:13 2015 (r398655) +++ head/lang/gcc5/Makefile Mon Oct 5 16:59:50 2015 (r398656) @@ -35,7 +35,7 @@ DISTVERSION= ${PORTVERSION:C/([0-9]+).*\ GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 sparc64 arm armv6 armv6hf -USES= cpe gmake iconv libtool makeinfo perl5 tar:bzip2 +USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 USE_BINUTILS= yes USE_PERL5= build SSP_UNSAFE= yes Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Mon Oct 5 16:54:13 2015 (r398655) +++ head/lang/gcc6-devel/Makefile Mon Oct 5 16:59:50 2015 (r398656) @@ -34,7 +34,7 @@ DISTVERSION= ${PORTVERSION:C/([0-9]+).*\ GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 sparc64 arm armv6 armv6hf -USES= cpe gmake iconv libtool makeinfo perl5 tar:bzip2 +USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 USE_BINUTILS= yes USE_PERL5= build SSP_UNSAFE= yes From owner-svn-ports-head@freebsd.org Mon Oct 5 17:16:58 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 4E6419B608C; Mon, 5 Oct 2015 17:16:58 +0000 (UTC) (envelope-from wg@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 3FB851C49; Mon, 5 Oct 2015 17:16:58 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95HGwsO017033; Mon, 5 Oct 2015 17:16:58 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95HGv6C017030; Mon, 5 Oct 2015 17:16:57 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201510051716.t95HGv6C017030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 5 Oct 2015 17:16:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398657 - in head/net/ladvd: . 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: Mon, 05 Oct 2015 17:16:58 -0000 Author: wg Date: Mon Oct 5 17:16:57 2015 New Revision: 398657 URL: https://svnweb.freebsd.org/changeset/ports/398657 Log: net/ladvd: remove stale pid file on stop Submitted by: maintainer (via email) Modified: head/net/ladvd/Makefile head/net/ladvd/files/ladvd.in Modified: head/net/ladvd/Makefile ============================================================================== --- head/net/ladvd/Makefile Mon Oct 5 16:59:50 2015 (r398656) +++ head/net/ladvd/Makefile Mon Oct 5 17:16:57 2015 (r398657) @@ -3,7 +3,7 @@ PORTNAME= ladvd PORTVERSION= 1.0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= GOOGLE_CODE \ http://blinkenlights.nl/software/ladvd/ Modified: head/net/ladvd/files/ladvd.in ============================================================================== --- head/net/ladvd/files/ladvd.in Mon Oct 5 16:59:50 2015 (r398656) +++ head/net/ladvd/files/ladvd.in Mon Oct 5 17:16:57 2015 (r398657) @@ -24,6 +24,7 @@ ladvd_enable=${ladvd_enable:-"NO"} ladvd_flags=${ladvd_flags:-"-a"} start_precmd="ladvd_check" +stop_postcmd="ladvd_cleanup" ladvd_check() { @@ -33,4 +34,14 @@ ladvd_check() fi } +ladvd_cleanup() +{ + if [ -f "$pidfile" ]; then + kill -0 `cat $pidfile` 2> /dev/null + if [ $? -ne 0 ]; then + rm $pidfile + fi + fi +} + run_rc_command "$1" From owner-svn-ports-head@freebsd.org Mon Oct 5 17:40:24 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 30CA499A272; Mon, 5 Oct 2015 17:40:24 +0000 (UTC) (envelope-from wg@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 223FD992; Mon, 5 Oct 2015 17:40:24 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95HeOB3025029; Mon, 5 Oct 2015 17:40:24 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95HeNst025028; Mon, 5 Oct 2015 17:40:23 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201510051740.t95HeNst025028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 5 Oct 2015 17:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398658 - head/www/zend-framework 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: Mon, 05 Oct 2015 17:40:24 -0000 Author: wg Date: Mon Oct 5 17:40:23 2015 New Revision: 398658 URL: https://svnweb.freebsd.org/changeset/ports/398658 Log: www/zend-framework: fix build Reported by: lme (via email) Modified: head/www/zend-framework/Makefile Modified: head/www/zend-framework/Makefile ============================================================================== --- head/www/zend-framework/Makefile Mon Oct 5 17:16:57 2015 (r398657) +++ head/www/zend-framework/Makefile Mon Oct 5 17:40:23 2015 (r398658) @@ -3,6 +3,7 @@ PORTNAME= ZendFramework PORTVERSION= 2.3.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://packages.zendframework.com/releases/${DISTNAME}/ @@ -39,8 +40,8 @@ PORTDOCS= CHANGELOG.md INSTALL.md README # Add all of the required and/or optional PHP extension dependencies, # if chosen by the user. .if ${PORT_OPTIONS:MREQPHP} -USE_PHP+= apc ctype curl dom gd hash iconv mbstring ldap mcrypt \ - pcre pdo session simplexml soap wddx xml zlib +USE_PHP+= ctype curl dom gd hash iconv mbstring ldap mcrypt \ + opcache pcre pdo session simplexml soap wddx xml zlib .if ${PHP_VER} == 52 USE_PHP+= sqlite .else From owner-svn-ports-head@freebsd.org Mon Oct 5 18:32:12 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 4EB3E9B6D2C; Mon, 5 Oct 2015 18:32:12 +0000 (UTC) (envelope-from lme@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 3AF727F8; Mon, 5 Oct 2015 18:32:12 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95IWC7b045560; Mon, 5 Oct 2015 18:32:12 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95IWAdC045554; Mon, 5 Oct 2015 18:32:10 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201510051832.t95IWAdC045554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Mon, 5 Oct 2015 18:32:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398659 - in head/net-mgmt: . icingaweb2 icingaweb2/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: Mon, 05 Oct 2015 18:32:12 -0000 Author: lme Date: Mon Oct 5 18:32:09 2015 New Revision: 398659 URL: https://svnweb.freebsd.org/changeset/ports/398659 Log: Add new port net-mgmt/icingaweb2 Icinga Web 2 is the next generation open source monitoring web interface, framework and command-line interface developed by the Icinga Project, supporting Icinga 2, Icinga Core and any other monitoring backend compatible with the Livestatus Protocol. WWW: https://github.com/Icinga/icingaweb2 Added: head/net-mgmt/icingaweb2/ head/net-mgmt/icingaweb2/Makefile (contents, props changed) head/net-mgmt/icingaweb2/distinfo (contents, props changed) head/net-mgmt/icingaweb2/files/ head/net-mgmt/icingaweb2/files/pkg-message.in (contents, props changed) head/net-mgmt/icingaweb2/pkg-descr (contents, props changed) head/net-mgmt/icingaweb2/pkg-plist (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Mon Oct 5 17:40:23 2015 (r398658) +++ head/net-mgmt/Makefile Mon Oct 5 18:32:09 2015 (r398659) @@ -76,6 +76,7 @@ SUBDIR += icinga-classicweb SUBDIR += icinga-core SUBDIR += icinga2 + SUBDIR += icingaweb2 SUBDIR += icli SUBDIR += icmpmonitor SUBDIR += icmpquery Added: head/net-mgmt/icingaweb2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2/Makefile Mon Oct 5 18:32:09 2015 (r398659) @@ -0,0 +1,62 @@ +# $FreeBSD$ + +PORTNAME= icingaweb2 +DISTVERSIONPREFIX= v +DISTVERSION= 2.0.0 +CATEGORIES= net-mgmt www + +MAINTAINER= lme@FreeBSD.org +COMMENT= Next generation web interface for Icinga 1 and 2 + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:${PORTSDIR}/www/zend-framework + +USE_GITHUB= yes +GH_ACCOUNT= icinga + +NO_BUILD= yes + +USE_PHP_BUILD= yes # Needed for creation of webserver configs during installation +USE_PHP= ctype dom gd gettext hash json ldap openssl pdo_mysql \ + pdo_pgsql session sockets + +SUB_FILES= pkg-message +SUB_LIST= WWWDIR=${WWWDIR} \ + ETCDIR=${ETCDIR} \ + EXAMPLESDIR=${EXAMPLESDIR} + +PLIST_SUB= WWWOWN=${WWWOWN} \ + WWWGRP=${WWWGRP} + +OPTIONS_DEFINE= LDAP MYSQL PGSQL +OPTIONS_DEFAULT= LDAP MYSQL PGSQL + +PGSQL_USE= PHP=pdo_pgsql +MYSQL_USE= PHP=pdo_mysql +LDAP_USE= PHP=ldap + +do-install: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/bash_completion.d/ + ${INSTALL_DATA} ${WRKSRC}/etc/bash_completion.d/icingacli \ + ${STAGEDIR}${EXAMPLESDIR}/bash_completion.d + ${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC}/etc && \ + ${COPYTREE_SHARE} schema ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${RM} -r .mailmap changelog.py icingaweb2.spec \ + bin/license_writer.py etc packages test) + ${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC} && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + ${CHMOD} 755 ${STAGEDIR}/${WWWDIR}/bin/icingacli + ${MKDIR} ${STAGEDIR}${ETCDIR} +.for webserver in apache nginx + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${webserver} + (cd ${STAGEDIR}${WWWDIR} && \ + ./bin/icingacli setup config webserver ${webserver} --path=/icingaweb2 \ + --root=${WWWDIR}/public --config=${ETCDIR} \ + --file=${STAGEDIR}${EXAMPLESDIR}/${webserver}/icingaweb2.conf) +.endfor + +.include Added: head/net-mgmt/icingaweb2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2/distinfo Mon Oct 5 18:32:09 2015 (r398659) @@ -0,0 +1,2 @@ +SHA256 (icinga-icingaweb2-v2.0.0_GH0.tar.gz) = a6a5383049e632108ce19b4b85f16a7fdd2f5acb3a6d2af3935254e2bc7fb2e6 +SIZE (icinga-icingaweb2-v2.0.0_GH0.tar.gz) = 9854668 Added: head/net-mgmt/icingaweb2/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2/files/pkg-message.in Mon Oct 5 18:32:09 2015 (r398659) @@ -0,0 +1,10 @@ +Sample configuration files for Apache and NGinx have been installed in: +%%EXAMPLESDIR%% + +Be sure to enable PHP and rewrite support in your browser. + +Now create a configuration token: +cd %%WWWDIR%% && ./bin/icingacli setup token create --config=%%ETCDIR%% + +Enter this token on Icinga Web 2's setup interface at +http://localhost/icingaweb2/setup Added: head/net-mgmt/icingaweb2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2/pkg-descr Mon Oct 5 18:32:09 2015 (r398659) @@ -0,0 +1,6 @@ +Icinga Web 2 is the next generation open source monitoring web interface, +framework and command-line interface developed by the Icinga Project, +supporting Icinga 2, Icinga Core and any other monitoring backend compatible +with the Livestatus Protocol. + +WWW: https://github.com/Icinga/icingaweb2 Added: head/net-mgmt/icingaweb2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2/pkg-plist Mon Oct 5 18:32:09 2015 (r398659) @@ -0,0 +1,3289 @@ +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/apache/icingaweb2.conf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bash_completion.d/icingacli +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nginx/icingaweb2.conf +%%DATADIR%%/schema/mysql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%DATADIR%%/schema/mysql.schema.sql +%%DATADIR%%/schema/pgsql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%DATADIR%%/schema/pgsql.schema.sql +%%WWWDIR%%/AUTHORS +%%WWWDIR%%/COPYING +%%WWWDIR%%/ChangeLog +%%WWWDIR%%/README.md +%%WWWDIR%%/RELEASE.md +%%WWWDIR%%/VERSION +%%WWWDIR%%/application/VERSION +%%WWWDIR%%/application/clicommands/AutocompleteCommand.php +%%WWWDIR%%/application/clicommands/HelpCommand.php +%%WWWDIR%%/application/clicommands/ModuleCommand.php +%%WWWDIR%%/application/clicommands/WebCommand.php +%%WWWDIR%%/application/controllers/AboutController.php +%%WWWDIR%%/application/controllers/AuthenticationController.php +%%WWWDIR%%/application/controllers/ConfigController.php +%%WWWDIR%%/application/controllers/DashboardController.php +%%WWWDIR%%/application/controllers/ErrorController.php +%%WWWDIR%%/application/controllers/GroupController.php +%%WWWDIR%%/application/controllers/IndexController.php +%%WWWDIR%%/application/controllers/LayoutController.php +%%WWWDIR%%/application/controllers/ListController.php +%%WWWDIR%%/application/controllers/NavigationController.php +%%WWWDIR%%/application/controllers/PreferenceController.php +%%WWWDIR%%/application/controllers/RoleController.php +%%WWWDIR%%/application/controllers/SearchController.php +%%WWWDIR%%/application/controllers/StaticController.php +%%WWWDIR%%/application/controllers/UserController.php +%%WWWDIR%%/application/controllers/UsergroupbackendController.php +%%WWWDIR%%/application/fonts/fontello-ifont/LICENSE.txt +%%WWWDIR%%/application/fonts/fontello-ifont/README.txt +%%WWWDIR%%/application/fonts/fontello-ifont/config.json +%%WWWDIR%%/application/fonts/fontello-ifont/css/animation.css +%%WWWDIR%%/application/fonts/fontello-ifont/css/ifont-codes.css +%%WWWDIR%%/application/fonts/fontello-ifont/css/ifont-embedded.css +%%WWWDIR%%/application/fonts/fontello-ifont/css/ifont-ie7-codes.css +%%WWWDIR%%/application/fonts/fontello-ifont/css/ifont-ie7.css +%%WWWDIR%%/application/fonts/fontello-ifont/css/ifont.css +%%WWWDIR%%/application/fonts/fontello-ifont/demo.html +%%WWWDIR%%/application/fonts/icingaweb.md +%%WWWDIR%%/application/forms/Authentication/LoginForm.php +%%WWWDIR%%/application/forms/AutoRefreshForm.php +%%WWWDIR%%/application/forms/Config/General/ApplicationConfigForm.php +%%WWWDIR%%/application/forms/Config/General/LoggingConfigForm.php +%%WWWDIR%%/application/forms/Config/GeneralConfigForm.php +%%WWWDIR%%/application/forms/Config/Resource/DbResourceForm.php +%%WWWDIR%%/application/forms/Config/Resource/FileResourceForm.php +%%WWWDIR%%/application/forms/Config/Resource/LdapResourceForm.php +%%WWWDIR%%/application/forms/Config/Resource/LivestatusResourceForm.php +%%WWWDIR%%/application/forms/Config/Resource/SshResourceForm.php +%%WWWDIR%%/application/forms/Config/ResourceConfigForm.php +%%WWWDIR%%/application/forms/Config/User/CreateMembershipForm.php +%%WWWDIR%%/application/forms/Config/User/UserForm.php +%%WWWDIR%%/application/forms/Config/UserBackend/DbBackendForm.php +%%WWWDIR%%/application/forms/Config/UserBackend/ExternalBackendForm.php +%%WWWDIR%%/application/forms/Config/UserBackend/LdapBackendForm.php +%%WWWDIR%%/application/forms/Config/UserBackendConfigForm.php +%%WWWDIR%%/application/forms/Config/UserBackendReorderForm.php +%%WWWDIR%%/application/forms/Config/UserGroup/AddMemberForm.php +%%WWWDIR%%/application/forms/Config/UserGroup/DbUserGroupBackendForm.php +%%WWWDIR%%/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php +%%WWWDIR%%/application/forms/Config/UserGroup/UserGroupBackendForm.php +%%WWWDIR%%/application/forms/Config/UserGroup/UserGroupForm.php +%%WWWDIR%%/application/forms/ConfigForm.php +%%WWWDIR%%/application/forms/ConfirmRemovalForm.php +%%WWWDIR%%/application/forms/Dashboard/DashletForm.php +%%WWWDIR%%/application/forms/LdapDiscoveryForm.php +%%WWWDIR%%/application/forms/Navigation/DashletForm.php +%%WWWDIR%%/application/forms/Navigation/MenuItemForm.php +%%WWWDIR%%/application/forms/Navigation/NavigationConfigForm.php +%%WWWDIR%%/application/forms/Navigation/NavigationItemForm.php +%%WWWDIR%%/application/forms/PreferenceForm.php +%%WWWDIR%%/application/forms/RepositoryForm.php +%%WWWDIR%%/application/forms/Security/RoleForm.php +%%WWWDIR%%/application/layouts/scripts/body.phtml +%%WWWDIR%%/application/layouts/scripts/error.phtml +%%WWWDIR%%/application/layouts/scripts/inline.phtml +%%WWWDIR%%/application/layouts/scripts/layout.phtml +%%WWWDIR%%/application/layouts/scripts/parts/navigation.phtml +%%WWWDIR%%/application/layouts/scripts/pdf.phtml +%%WWWDIR%%/application/layouts/scripts/wrapped.phtml +%%WWWDIR%%/application/locale/de_DE/LC_MESSAGES/icinga.mo +%%WWWDIR%%/application/locale/de_DE/LC_MESSAGES/icinga.po +%%WWWDIR%%/application/locale/fi_FI/LC_MESSAGES/icinga.mo +%%WWWDIR%%/application/locale/fi_FI/LC_MESSAGES/icinga.po +%%WWWDIR%%/application/locale/it_IT/LC_MESSAGES/icinga.mo +%%WWWDIR%%/application/locale/it_IT/LC_MESSAGES/icinga.po +%%WWWDIR%%/application/locale/pt_BR/LC_MESSAGES/icinga.mo +%%WWWDIR%%/application/locale/pt_BR/LC_MESSAGES/icinga.po +%%WWWDIR%%/application/views/helpers/CreateTicketLinks.php +%%WWWDIR%%/application/views/helpers/FormDateTime.php +%%WWWDIR%%/application/views/helpers/FormNumber.php +%%WWWDIR%%/application/views/helpers/FormTriStateCheckbox.php +%%WWWDIR%%/application/views/helpers/ProtectId.php +%%WWWDIR%%/application/views/helpers/Util.php +%%WWWDIR%%/application/views/scripts/about/index.phtml +%%WWWDIR%%/application/views/scripts/authentication/login.phtml +%%WWWDIR%%/application/views/scripts/authentication/logout.phtml +%%WWWDIR%%/application/views/scripts/config/devtools.phtml +%%WWWDIR%%/application/views/scripts/config/general.phtml +%%WWWDIR%%/application/views/scripts/config/module-configuration-error.phtml +%%WWWDIR%%/application/views/scripts/config/module.phtml +%%WWWDIR%%/application/views/scripts/config/modules.phtml +%%WWWDIR%%/application/views/scripts/config/resource.phtml +%%WWWDIR%%/application/views/scripts/config/resource/create.phtml +%%WWWDIR%%/application/views/scripts/config/resource/modify.phtml +%%WWWDIR%%/application/views/scripts/config/resource/remove.phtml +%%WWWDIR%%/application/views/scripts/config/userbackend/reorder.phtml +%%WWWDIR%%/application/views/scripts/dashboard/error.phtml +%%WWWDIR%%/application/views/scripts/dashboard/index.phtml +%%WWWDIR%%/application/views/scripts/dashboard/new-dashlet.phtml +%%WWWDIR%%/application/views/scripts/dashboard/remove-dashlet.phtml +%%WWWDIR%%/application/views/scripts/dashboard/remove-pane.phtml +%%WWWDIR%%/application/views/scripts/dashboard/settings.phtml +%%WWWDIR%%/application/views/scripts/dashboard/update-dashlet.phtml +%%WWWDIR%%/application/views/scripts/error/error.phtml +%%WWWDIR%%/application/views/scripts/filter/index.phtml +%%WWWDIR%%/application/views/scripts/form/reorder-authbackend.phtml +%%WWWDIR%%/application/views/scripts/group/form.phtml +%%WWWDIR%%/application/views/scripts/group/list.phtml +%%WWWDIR%%/application/views/scripts/group/show.phtml +%%WWWDIR%%/application/views/scripts/index/welcome.phtml +%%WWWDIR%%/application/views/scripts/inline.phtml +%%WWWDIR%%/application/views/scripts/joystickPagination.phtml +%%WWWDIR%%/application/views/scripts/layout/menu.phtml +%%WWWDIR%%/application/views/scripts/list/applicationlog.phtml +%%WWWDIR%%/application/views/scripts/mixedPagination.phtml +%%WWWDIR%%/application/views/scripts/navigation/index.phtml +%%WWWDIR%%/application/views/scripts/navigation/shared.phtml +%%WWWDIR%%/application/views/scripts/pivottablePagination.phtml +%%WWWDIR%%/application/views/scripts/preference/index.phtml +%%WWWDIR%%/application/views/scripts/role/list.phtml +%%WWWDIR%%/application/views/scripts/search/hint.phtml +%%WWWDIR%%/application/views/scripts/search/index.phtml +%%WWWDIR%%/application/views/scripts/showConfiguration.phtml +%%WWWDIR%%/application/views/scripts/simple-form.phtml +%%WWWDIR%%/application/views/scripts/user/form.phtml +%%WWWDIR%%/application/views/scripts/user/list.phtml +%%WWWDIR%%/application/views/scripts/user/show.phtml +%%WWWDIR%%/application/views/scripts/usergroupbackend/list.phtml +%%WWWDIR%%/bin/icingacli +%%WWWDIR%%/doc/about.md +%%WWWDIR%%/doc/accessibility/ifont-mute.html +%%WWWDIR%%/doc/accessibility/ifont.html +%%WWWDIR%%/doc/accessibility/link-labels.html +%%WWWDIR%%/doc/accessibility/required-form-elements.html +%%WWWDIR%%/doc/accessibility/skip-content.html +%%WWWDIR%%/doc/accessibility/svg.html +%%WWWDIR%%/doc/accessibility/text-cue-for-required-form-control-labels.html +%%WWWDIR%%/doc/authentication.md +%%WWWDIR%%/doc/configuration.md +%%WWWDIR%%/doc/external_authentication.md +%%WWWDIR%%/doc/installation.md +%%WWWDIR%%/doc/phpdoc.xml +%%WWWDIR%%/doc/preferences.md +%%WWWDIR%%/doc/res/GraphExample#1.png +%%WWWDIR%%/doc/res/GraphExample#2.png +%%WWWDIR%%/doc/res/GraphExample#3.png +%%WWWDIR%%/doc/res/GraphExample#4.png +%%WWWDIR%%/doc/res/GraphExample#5.png +%%WWWDIR%%/doc/res/GraphExample#6.png +%%WWWDIR%%/doc/res/GraphExample#7.1.png +%%WWWDIR%%/doc/res/GraphExample#7.png +%%WWWDIR%%/doc/res/GraphExample#8.png +%%WWWDIR%%/doc/res/GraphExample#9.png +%%WWWDIR%%/doc/resources.md +%%WWWDIR%%/doc/security.md +%%WWWDIR%%/doc/vagrant.md +%%WWWDIR%%/library/Icinga/Application/ApplicationBootstrap.php +%%WWWDIR%%/library/Icinga/Application/Benchmark.php +%%WWWDIR%%/library/Icinga/Application/ClassLoader.php +%%WWWDIR%%/library/Icinga/Application/Cli.php +%%WWWDIR%%/library/Icinga/Application/Config.php +%%WWWDIR%%/library/Icinga/Application/EmbeddedWeb.php +%%WWWDIR%%/library/Icinga/Application/Icinga.php +%%WWWDIR%%/library/Icinga/Application/LegacyWeb.php +%%WWWDIR%%/library/Icinga/Application/Logger.php +%%WWWDIR%%/library/Icinga/Application/Logger/LogWriter.php +%%WWWDIR%%/library/Icinga/Application/Logger/Writer/FileWriter.php +%%WWWDIR%%/library/Icinga/Application/Logger/Writer/StdoutWriter.php +%%WWWDIR%%/library/Icinga/Application/Logger/Writer/SyslogWriter.php +%%WWWDIR%%/library/Icinga/Application/Modules/DashboardContainer.php +%%WWWDIR%%/library/Icinga/Application/Modules/Manager.php +%%WWWDIR%%/library/Icinga/Application/Modules/MenuItemContainer.php +%%WWWDIR%%/library/Icinga/Application/Modules/Module.php +%%WWWDIR%%/library/Icinga/Application/Modules/NavigationItemContainer.php +%%WWWDIR%%/library/Icinga/Application/Platform.php +%%WWWDIR%%/library/Icinga/Application/Version.php +%%WWWDIR%%/library/Icinga/Application/Web.php +%%WWWDIR%%/library/Icinga/Application/functions.php +%%WWWDIR%%/library/Icinga/Application/webrouter.php +%%WWWDIR%%/library/Icinga/Authentication/AdmissionLoader.php +%%WWWDIR%%/library/Icinga/Authentication/Auth.php +%%WWWDIR%%/library/Icinga/Authentication/AuthChain.php +%%WWWDIR%%/library/Icinga/Authentication/Authenticatable.php +%%WWWDIR%%/library/Icinga/Authentication/User/DbUserBackend.php +%%WWWDIR%%/library/Icinga/Authentication/User/ExternalBackend.php +%%WWWDIR%%/library/Icinga/Authentication/User/LdapUserBackend.php +%%WWWDIR%%/library/Icinga/Authentication/User/UserBackend.php +%%WWWDIR%%/library/Icinga/Authentication/User/UserBackendInterface.php +%%WWWDIR%%/library/Icinga/Authentication/UserGroup/DbUserGroupBackend.php +%%WWWDIR%%/library/Icinga/Authentication/UserGroup/IniUserGroupBackend.php +%%WWWDIR%%/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +%%WWWDIR%%/library/Icinga/Authentication/UserGroup/UserGroupBackend.php +%%WWWDIR%%/library/Icinga/Authentication/UserGroup/UserGroupBackendInterface.php +%%WWWDIR%%/library/Icinga/Chart/Axis.php +%%WWWDIR%%/library/Icinga/Chart/Chart.php +%%WWWDIR%%/library/Icinga/Chart/Format.php +%%WWWDIR%%/library/Icinga/Chart/Graph/BarGraph.php +%%WWWDIR%%/library/Icinga/Chart/Graph/LineGraph.php +%%WWWDIR%%/library/Icinga/Chart/Graph/StackedGraph.php +%%WWWDIR%%/library/Icinga/Chart/Graph/Tooltip.php +%%WWWDIR%%/library/Icinga/Chart/GridChart.php +%%WWWDIR%%/library/Icinga/Chart/Inline/Inline.php +%%WWWDIR%%/library/Icinga/Chart/Inline/PieChart.php +%%WWWDIR%%/library/Icinga/Chart/Legend.php +%%WWWDIR%%/library/Icinga/Chart/Palette.php +%%WWWDIR%%/library/Icinga/Chart/PieChart.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Animatable.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Animation.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Canvas.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Circle.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Drawable.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Line.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Path.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/PieSlice.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/RawElement.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Rect.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Styleable.php +%%WWWDIR%%/library/Icinga/Chart/Primitive/Text.php +%%WWWDIR%%/library/Icinga/Chart/Render/LayoutBox.php +%%WWWDIR%%/library/Icinga/Chart/Render/RenderContext.php +%%WWWDIR%%/library/Icinga/Chart/Render/Rotator.php +%%WWWDIR%%/library/Icinga/Chart/SVGRenderer.php +%%WWWDIR%%/library/Icinga/Chart/Unit/AxisUnit.php +%%WWWDIR%%/library/Icinga/Chart/Unit/CalendarUnit.php +%%WWWDIR%%/library/Icinga/Chart/Unit/LinearUnit.php +%%WWWDIR%%/library/Icinga/Chart/Unit/LogarithmicUnit.php +%%WWWDIR%%/library/Icinga/Chart/Unit/StaticAxis.php +%%WWWDIR%%/library/Icinga/Cli/AnsiScreen.php +%%WWWDIR%%/library/Icinga/Cli/Command.php +%%WWWDIR%%/library/Icinga/Cli/Documentation.php +%%WWWDIR%%/library/Icinga/Cli/Documentation/CommentParser.php +%%WWWDIR%%/library/Icinga/Cli/Loader.php +%%WWWDIR%%/library/Icinga/Cli/Params.php +%%WWWDIR%%/library/Icinga/Cli/Screen.php +%%WWWDIR%%/library/Icinga/Data/ConfigObject.php +%%WWWDIR%%/library/Icinga/Data/ConnectionInterface.php +%%WWWDIR%%/library/Icinga/Data/DataArray/ArrayDatasource.php +%%WWWDIR%%/library/Icinga/Data/Db/DbConnection.php +%%WWWDIR%%/library/Icinga/Data/Db/DbQuery.php +%%WWWDIR%%/library/Icinga/Data/Extensible.php +%%WWWDIR%%/library/Icinga/Data/Fetchable.php +%%WWWDIR%%/library/Icinga/Data/Filter/Filter.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterAnd.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterChain.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterEqual.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterEqualOrGreaterThan.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterEqualOrLessThan.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterException.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterExpression.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterGreaterThan.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterLessThan.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterMatch.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterMatchNot.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterNot.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterNotEqual.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterOr.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterParseException.php +%%WWWDIR%%/library/Icinga/Data/Filter/FilterQueryString.php +%%WWWDIR%%/library/Icinga/Data/FilterColumns.php +%%WWWDIR%%/library/Icinga/Data/Filterable.php +%%WWWDIR%%/library/Icinga/Data/Identifiable.php +%%WWWDIR%%/library/Icinga/Data/Inspectable.php +%%WWWDIR%%/library/Icinga/Data/Inspection.php +%%WWWDIR%%/library/Icinga/Data/Limitable.php +%%WWWDIR%%/library/Icinga/Data/Paginatable.php +%%WWWDIR%%/library/Icinga/Data/PivotTable.php +%%WWWDIR%%/library/Icinga/Data/QueryInterface.php +%%WWWDIR%%/library/Icinga/Data/Queryable.php +%%WWWDIR%%/library/Icinga/Data/Reducible.php +%%WWWDIR%%/library/Icinga/Data/ResourceFactory.php +%%WWWDIR%%/library/Icinga/Data/Selectable.php +%%WWWDIR%%/library/Icinga/Data/SimpleQuery.php +%%WWWDIR%%/library/Icinga/Data/SortRules.php +%%WWWDIR%%/library/Icinga/Data/Sortable.php +%%WWWDIR%%/library/Icinga/Data/Tree/SimpleTree.php +%%WWWDIR%%/library/Icinga/Data/Tree/TreeNode.php +%%WWWDIR%%/library/Icinga/Data/Tree/TreeNodeIterator.php +%%WWWDIR%%/library/Icinga/Data/Updatable.php +%%WWWDIR%%/library/Icinga/Date/DateFormatter.php +%%WWWDIR%%/library/Icinga/Exception/AlreadyExistsException.php +%%WWWDIR%%/library/Icinga/Exception/AuthenticationException.php +%%WWWDIR%%/library/Icinga/Exception/ConfigurationError.php +%%WWWDIR%%/library/Icinga/Exception/Http/HttpBadRequestException.php +%%WWWDIR%%/library/Icinga/Exception/Http/HttpException.php +%%WWWDIR%%/library/Icinga/Exception/Http/HttpMethodNotAllowedException.php +%%WWWDIR%%/library/Icinga/Exception/Http/HttpNotFoundException.php +%%WWWDIR%%/library/Icinga/Exception/IcingaException.php +%%WWWDIR%%/library/Icinga/Exception/InvalidPropertyException.php +%%WWWDIR%%/library/Icinga/Exception/MissingParameterException.php +%%WWWDIR%%/library/Icinga/Exception/NotFoundError.php +%%WWWDIR%%/library/Icinga/Exception/NotImplementedError.php +%%WWWDIR%%/library/Icinga/Exception/NotReadableError.php +%%WWWDIR%%/library/Icinga/Exception/NotWritableError.php +%%WWWDIR%%/library/Icinga/Exception/ProgrammingError.php +%%WWWDIR%%/library/Icinga/Exception/QueryException.php +%%WWWDIR%%/library/Icinga/Exception/StatementException.php +%%WWWDIR%%/library/Icinga/Exception/SystemPermissionException.php +%%WWWDIR%%/library/Icinga/File/Csv.php +%%WWWDIR%%/library/Icinga/File/FileExtensionFilterIterator.php +%%WWWDIR%%/library/Icinga/File/Ini/Dom/Comment.php +%%WWWDIR%%/library/Icinga/File/Ini/Dom/Directive.php +%%WWWDIR%%/library/Icinga/File/Ini/Dom/Document.php +%%WWWDIR%%/library/Icinga/File/Ini/Dom/Section.php +%%WWWDIR%%/library/Icinga/File/Ini/IniParser.php +%%WWWDIR%%/library/Icinga/File/Ini/IniWriter.php +%%WWWDIR%%/library/Icinga/File/NonEmptyFileIterator.php +%%WWWDIR%%/library/Icinga/File/Pdf.php +%%WWWDIR%%/library/Icinga/Protocol/Dns.php +%%WWWDIR%%/library/Icinga/Protocol/File/Exception/FileReaderException.php +%%WWWDIR%%/library/Icinga/Protocol/File/FileIterator.php +%%WWWDIR%%/library/Icinga/Protocol/File/FileQuery.php +%%WWWDIR%%/library/Icinga/Protocol/File/FileReader.php +%%WWWDIR%%/library/Icinga/Protocol/File/LogFileIterator.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/Discovery.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/Expression.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/LdapCapabilities.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/LdapConnection.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/LdapException.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/LdapQuery.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/LdapUtils.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/Node.php +%%WWWDIR%%/library/Icinga/Protocol/Ldap/Root.php +%%WWWDIR%%/library/Icinga/Protocol/Livestatus/Connection.php +%%WWWDIR%%/library/Icinga/Protocol/Livestatus/Query.php +%%WWWDIR%%/library/Icinga/Protocol/Livestatus/ResponseRow.php +%%WWWDIR%%/library/Icinga/Protocol/Nrpe/Connection.php +%%WWWDIR%%/library/Icinga/Protocol/Nrpe/Packet.php +%%WWWDIR%%/library/Icinga/Repository/DbRepository.php +%%WWWDIR%%/library/Icinga/Repository/IniRepository.php +%%WWWDIR%%/library/Icinga/Repository/LdapRepository.php +%%WWWDIR%%/library/Icinga/Repository/Repository.php +%%WWWDIR%%/library/Icinga/Repository/RepositoryQuery.php +%%WWWDIR%%/library/Icinga/Security/SecurityException.php +%%WWWDIR%%/library/Icinga/Test/BaseTestCase.php +%%WWWDIR%%/library/Icinga/Test/DbTest.php +%%WWWDIR%%/library/Icinga/User.php +%%WWWDIR%%/library/Icinga/User/Preferences.php +%%WWWDIR%%/library/Icinga/User/Preferences/PreferencesStore.php +%%WWWDIR%%/library/Icinga/User/Preferences/Store/DbStore.php +%%WWWDIR%%/library/Icinga/User/Preferences/Store/IniStore.php +%%WWWDIR%%/library/Icinga/Util/Color.php +%%WWWDIR%%/library/Icinga/Util/ConfigAwareFactory.php +%%WWWDIR%%/library/Icinga/Util/Dimension.php +%%WWWDIR%%/library/Icinga/Util/EnumeratingFilterIterator.php +%%WWWDIR%%/library/Icinga/Util/File.php +%%WWWDIR%%/library/Icinga/Util/Format.php +%%WWWDIR%%/library/Icinga/Util/String.php +%%WWWDIR%%/library/Icinga/Util/TimezoneDetect.php +%%WWWDIR%%/library/Icinga/Util/Translator.php +%%WWWDIR%%/library/Icinga/Web/Controller.php +%%WWWDIR%%/library/Icinga/Web/Controller/ActionController.php +%%WWWDIR%%/library/Icinga/Web/Controller/AuthBackendController.php +%%WWWDIR%%/library/Icinga/Web/Controller/BasePreferenceController.php +%%WWWDIR%%/library/Icinga/Web/Controller/ControllerTabCollector.php +%%WWWDIR%%/library/Icinga/Web/Controller/Dispatcher.php +%%WWWDIR%%/library/Icinga/Web/Controller/ModuleActionController.php +%%WWWDIR%%/library/Icinga/Web/Cookie.php +%%WWWDIR%%/library/Icinga/Web/Dom/DomNodeIterator.php +%%WWWDIR%%/library/Icinga/Web/FileCache.php +%%WWWDIR%%/library/Icinga/Web/Form.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/Autosubmit.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/ConditionalHidden.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/ElementDoubler.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/FormDescriptions.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/FormHints.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/FormNotifications.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/Help.php +%%WWWDIR%%/library/Icinga/Web/Form/Decorator/Spinner.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/Button.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/CsrfCounterMeasure.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/DateTimePicker.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/Note.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/Number.php +%%WWWDIR%%/library/Icinga/Web/Form/Element/TriStateCheckbox.php +%%WWWDIR%%/library/Icinga/Web/Form/ErrorLabeller.php +%%WWWDIR%%/library/Icinga/Web/Form/FormElement.php +%%WWWDIR%%/library/Icinga/Web/Form/InvalidCSRFTokenException.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/DateFormatValidator.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/DateTimeValidator.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/InArray.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/ReadablePathValidator.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/TimeFormatValidator.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/TriStateValidator.php +%%WWWDIR%%/library/Icinga/Web/Form/Validator/WritablePathValidator.php +%%WWWDIR%%/library/Icinga/Web/Hook.php +%%WWWDIR%%/library/Icinga/Web/Hook/GrapherHook.php +%%WWWDIR%%/library/Icinga/Web/Hook/TicketHook.php +%%WWWDIR%%/library/Icinga/Web/Hook/WebBaseHook.php +%%WWWDIR%%/library/Icinga/Web/JavaScript.php +%%WWWDIR%%/library/Icinga/Web/LessCompiler.php +%%WWWDIR%%/library/Icinga/Web/Menu.php +%%WWWDIR%%/library/Icinga/Web/Menu/BadgeMenuItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Menu/MenuItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Menu/PermittedMenuItemFilter.php +%%WWWDIR%%/library/Icinga/Web/Menu/SummaryMenuItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/MenuRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/DashboardPane.php +%%WWWDIR%%/library/Icinga/Web/Navigation/DropdownItem.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Navigation.php +%%WWWDIR%%/library/Icinga/Web/Navigation/NavigationItem.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/BadgeNavigationItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/LogoutNavigationItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/NavigationItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/NavigationRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/NavigationRendererInterface.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/RecursiveNavigationRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/SummaryNavigationItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Navigation/Renderer/UserNavigationItemRenderer.php +%%WWWDIR%%/library/Icinga/Web/Notification.php +%%WWWDIR%%/library/Icinga/Web/Paginator/Adapter/QueryAdapter.php +%%WWWDIR%%/library/Icinga/Web/Paginator/ScrollingStyle/SlidingWithBorder.php +%%WWWDIR%%/library/Icinga/Web/Request.php +%%WWWDIR%%/library/Icinga/Web/Response.php +%%WWWDIR%%/library/Icinga/Web/Response/JsonResponse.php +%%WWWDIR%%/library/Icinga/Web/Session.php +%%WWWDIR%%/library/Icinga/Web/Session/PhpSession.php +%%WWWDIR%%/library/Icinga/Web/Session/Session.php +%%WWWDIR%%/library/Icinga/Web/Session/SessionNamespace.php +%%WWWDIR%%/library/Icinga/Web/StyleSheet.php +%%WWWDIR%%/library/Icinga/Web/Url.php +%%WWWDIR%%/library/Icinga/Web/UrlParams.php +%%WWWDIR%%/library/Icinga/Web/View.php +%%WWWDIR%%/library/Icinga/Web/View/helpers/format.php +%%WWWDIR%%/library/Icinga/Web/View/helpers/generic.php +%%WWWDIR%%/library/Icinga/Web/View/helpers/string.php +%%WWWDIR%%/library/Icinga/Web/View/helpers/url.php +%%WWWDIR%%/library/Icinga/Web/ViewStream.php +%%WWWDIR%%/library/Icinga/Web/Widget.php +%%WWWDIR%%/library/Icinga/Web/Widget/AbstractWidget.php +%%WWWDIR%%/library/Icinga/Web/Widget/Chart/HistoryColorGrid.php +%%WWWDIR%%/library/Icinga/Web/Widget/Chart/InlinePie.php +%%WWWDIR%%/library/Icinga/Web/Widget/Dashboard.php +%%WWWDIR%%/library/Icinga/Web/Widget/Dashboard/Dashlet.php +%%WWWDIR%%/library/Icinga/Web/Widget/Dashboard/Pane.php +%%WWWDIR%%/library/Icinga/Web/Widget/Dashboard/UserWidget.php +%%WWWDIR%%/library/Icinga/Web/Widget/FilterEditor.php +%%WWWDIR%%/library/Icinga/Web/Widget/FilterWidget.php +%%WWWDIR%%/library/Icinga/Web/Widget/Limiter.php +%%WWWDIR%%/library/Icinga/Web/Widget/Paginator.php +%%WWWDIR%%/library/Icinga/Web/Widget/SearchDashboard.php +%%WWWDIR%%/library/Icinga/Web/Widget/SortBox.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tab.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabextension/DashboardAction.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabextension/DashboardSettings.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabextension/MenuAction.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabextension/OutputFormat.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabextension/Tabextension.php +%%WWWDIR%%/library/Icinga/Web/Widget/Tabs.php +%%WWWDIR%%/library/Icinga/Web/Widget/Widget.php +%%WWWDIR%%/library/Icinga/Web/Window.php +%%WWWDIR%%/library/Icinga/Web/Wizard.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Arborize.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrCollections.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/AlphaValue.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Background.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Border.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Color.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Composite.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Filter.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Font.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/FontFamily.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Ident.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/ListStyle.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Multiple.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Number.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/Percentage.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/TextDecoration.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/CSS/URI.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Clone.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Enum.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Bool.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Class.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Color.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/FrameTarget.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/ID.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/LinkTypes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/MultiLength.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Nmtokens.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/HTML/Pixels.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Integer.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Lang.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Switch.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/Text.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI/Email.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI/Host.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI/IPv4.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrDef/URI/IPv6.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Background.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/BdoDir.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/BgColor.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/BoolToCSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Border.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/EnumToCSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/ImgRequired.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/ImgSpace.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Input.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Lang.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/NameSync.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Nofollow.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/SafeEmbed.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/SafeObject.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/SafeParam.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/ScriptRequired.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/TargetBlank.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTransform/Textarea.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrTypes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/AttrValidator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Bootstrap.php +%%WWWDIR%%/library/vendor/HTMLPurifier/CSSDefinition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Chameleon.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Custom.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Empty.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/List.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Optional.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Required.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/StrictBlockquote.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ChildDef/Table.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Config.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Builder/Xml.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Exception.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Interchange.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Interchange/Directive.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Interchange/Id.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/InterchangeBuilder.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/Validator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/ValidatorAtom.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema.ser +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.Language.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.Base.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.Host.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt +%%WWWDIR%%/library/vendor/HTMLPurifier/ConfigSchema/schema/info.ini +%%WWWDIR%%/library/vendor/HTMLPurifier/ContentSets.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Context.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Definition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Decorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Decorator/Memory.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Decorator/Template.php.in +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Null.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Serializer.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCache/Serializer/README +%%WWWDIR%%/library/vendor/HTMLPurifier/DefinitionCacheFactory.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Doctype.php +%%WWWDIR%%/library/vendor/HTMLPurifier/DoctypeRegistry.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ElementDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Encoder.php +%%WWWDIR%%/library/vendor/HTMLPurifier/EntityLookup.php +%%WWWDIR%%/library/vendor/HTMLPurifier/EntityLookup/entities.ser +%%WWWDIR%%/library/vendor/HTMLPurifier/EntityParser.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ErrorCollector.php +%%WWWDIR%%/library/vendor/HTMLPurifier/ErrorStruct.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Exception.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Filter.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Filter/ExtractStyleBlocks.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Filter/YouTube.php +%%WWWDIR%%/library/vendor/HTMLPurifier/Generator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLDefinition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Bdo.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/CommonAttributes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Edit.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Forms.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Hypertext.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Iframe.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Image.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Legacy.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/List.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Nofollow.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Object.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Presentation.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Proprietary.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Ruby.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/SafeEmbed.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/SafeObject.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/SafeScripting.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Scripting.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/StyleAttribute.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tables.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Target.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/TargetBlank.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Text.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/Proprietary.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/Strict.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/Transitional.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/XHTML.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModule/XMLCommonAttributes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLModuleManager.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.auto.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.autoload.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.composer.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.func.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.includes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.kses.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.path.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier.safe-includes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Arborize.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrCollections.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/AlphaValue.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Background.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Border.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Color.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Composite.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Filter.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Font.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/FontFamily.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Ident.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ListStyle.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Multiple.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Number.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Percentage.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/TextDecoration.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/CSS/URI.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Clone.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Enum.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Bool.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Class.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Color.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/FrameTarget.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/ID.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/LinkTypes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/MultiLength.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Nmtokens.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Pixels.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Integer.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Lang.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Switch.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/Text.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI/Host.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv4.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv6.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Background.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/BdoDir.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/BgColor.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/BoolToCSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Border.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/EnumToCSS.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/ImgRequired.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/ImgSpace.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Input.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Lang.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Length.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/NameSync.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Nofollow.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/SafeEmbed.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/SafeObject.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/SafeParam.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/ScriptRequired.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/TargetBlank.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTransform/Textarea.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrTypes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/AttrValidator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Bootstrap.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/CSSDefinition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Chameleon.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Custom.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Empty.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/List.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Optional.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Required.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/StrictBlockquote.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ChildDef/Table.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Config.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/Xml.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Exception.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Directive.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Id.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/InterchangeBuilder.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/Validator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ConfigSchema/ValidatorAtom.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ContentSets.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Context.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Definition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Memory.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache/Null.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DefinitionCacheFactory.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Doctype.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/DoctypeRegistry.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ElementDef.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Encoder.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/EntityLookup.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/EntityParser.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ErrorCollector.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/ErrorStruct.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Exception.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Filter.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Filter/ExtractStyleBlocks.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Filter/YouTube.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/Generator.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLDefinition.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Bdo.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/CommonAttributes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Edit.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Forms.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Hypertext.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Iframe.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Image.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Legacy.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/List.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Nofollow.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Object.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Presentation.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Proprietary.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Ruby.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/SafeEmbed.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/SafeObject.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/SafeScripting.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Scripting.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/StyleAttribute.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tables.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Target.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/TargetBlank.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Text.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Name.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Proprietary.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Strict.php +%%WWWDIR%%/library/vendor/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Mon Oct 5 18:58:13 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 7A4EC9BAFE1; Mon, 5 Oct 2015 18:58:13 +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 688A131A; Mon, 5 Oct 2015 18:58:13 +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 t95IwDqx052914; Mon, 5 Oct 2015 18:58:13 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95IwC4p052912; Mon, 5 Oct 2015 18:58:12 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510051858.t95IwC4p052912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 5 Oct 2015 18:58:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398660 - head/security/vault 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: Mon, 05 Oct 2015 18:58:13 -0000 Author: swills Date: Mon Oct 5 18:58:12 2015 New Revision: 398660 URL: https://svnweb.freebsd.org/changeset/ports/398660 Log: security/vault: update to 0.3.0, add LICENSE PR: 203548 Submitted by: Dave Cottlehuber Modified: head/security/vault/Makefile head/security/vault/distinfo Modified: head/security/vault/Makefile ============================================================================== --- head/security/vault/Makefile Mon Oct 5 18:32:09 2015 (r398659) +++ head/security/vault/Makefile Mon Oct 5 18:58:12 2015 (r398660) @@ -1,14 +1,15 @@ # $FreeBSD$ PORTNAME= vault -PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTVERSION= 0.3.0 DISTVERSIONPREFIX= v CATEGORIES= security MAINTAINER= swills@FreeBSD.org COMMENT= Tool for securely accessing secrets +LICENSE= MPL + BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go USE_GITHUB= yes Modified: head/security/vault/distinfo ============================================================================== --- head/security/vault/distinfo Mon Oct 5 18:32:09 2015 (r398659) +++ head/security/vault/distinfo Mon Oct 5 18:58:12 2015 (r398660) @@ -1,2 +1,2 @@ -SHA256 (hashicorp-vault-v0.2.0_GH0.tar.gz) = 86545214c2a01bd2aa4748aaa3cb16b9ceea649a48b74b1ade6cddf0a75ffde0 -SIZE (hashicorp-vault-v0.2.0_GH0.tar.gz) = 1804135 +SHA256 (hashicorp-vault-v0.3.0_GH0.tar.gz) = 9c7d4016d4f6949265072efad41ba24ed7d1029a19bc57ee05b7bcb2a79e227b +SIZE (hashicorp-vault-v0.3.0_GH0.tar.gz) = 1922377 From owner-svn-ports-head@freebsd.org Mon Oct 5 20:08:25 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 0C3389B9957; Mon, 5 Oct 2015 20:08:25 +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 E4E40FF4; Mon, 5 Oct 2015 20:08:24 +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 t95K8OqW077798; Mon, 5 Oct 2015 20:08:24 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95K8N1u077794; Mon, 5 Oct 2015 20:08:23 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201510052008.t95K8N1u077794@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Mon, 5 Oct 2015 20:08:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398661 - in head/graphics/variety: . 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: Mon, 05 Oct 2015 20:08:25 -0000 Author: nivit Date: Mon Oct 5 20:08:23 2015 New Revision: 398661 URL: https://svnweb.freebsd.org/changeset/ports/398661 Log: - Update to 0.5.4 Relnotes: http://peterlevi.com/variety/news Deleted: head/graphics/variety/files/patch-setup.py head/graphics/variety/files/patch-variety_____init____.py Modified: head/graphics/variety/Makefile head/graphics/variety/distinfo (contents, props changed) head/graphics/variety/files/patch-variety_VarietyWindow.py (contents, props changed) head/graphics/variety/pkg-plist (contents, props changed) Modified: head/graphics/variety/Makefile ============================================================================== --- head/graphics/variety/Makefile Mon Oct 5 18:58:12 2015 (r398660) +++ head/graphics/variety/Makefile Mon Oct 5 20:08:23 2015 (r398661) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= variety -PORTVERSION= 0.5.3 -PORTREVISION= 1 +PORTVERSION= 0.5.4 +PORTREVISION= 0 CATEGORIES= graphics MASTER_SITES= https://launchpad.net/variety/trunk/${PORTVERSION}/+download/ \ http://nivit.altervista.org/FreeBSD/ports/distfiles/ @@ -46,6 +46,7 @@ WRKSRC= ${WRKDIR}/variety post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} \ + -i '' \ -E -e 's,%%LOCALBASE%%,${LOCALBASE},1' \ -e 's,%%PREFIX%%,${PREFIX},1' \ -e 's,/usr(/share/backgrounds),${LOCALBASE}\1,1' \ Modified: head/graphics/variety/distinfo ============================================================================== --- head/graphics/variety/distinfo Mon Oct 5 18:58:12 2015 (r398660) +++ head/graphics/variety/distinfo Mon Oct 5 20:08:23 2015 (r398661) @@ -1,2 +1,2 @@ -SHA256 (variety_0.5.3.tar.gz) = 48bd7f9a1f857bb00ffac4548f201d83e05eecef2e5cf04539a088198c177965 -SIZE (variety_0.5.3.tar.gz) = 3471248 +SHA256 (variety_0.5.4.tar.gz) = 56e1de00cff34d18dcca7dbfbbb5a03cd58cb7ffb8c34f63a167f8b45ae7ba2d +SIZE (variety_0.5.4.tar.gz) = 825088 Modified: head/graphics/variety/files/patch-variety_VarietyWindow.py ============================================================================== --- head/graphics/variety/files/patch-variety_VarietyWindow.py Mon Oct 5 18:58:12 2015 (r398660) +++ head/graphics/variety/files/patch-variety_VarietyWindow.py Mon Oct 5 20:08:23 2015 (r398661) @@ -1,6 +1,6 @@ ---- variety/VarietyWindow.py.orig 2015-03-07 10:46:27 UTC +--- variety/VarietyWindow.py.orig 2015-09-06 14:49:07 UTC +++ variety/VarietyWindow.py -@@ -2333,7 +2333,7 @@ To set a specific wallpaper: %prog /some +@@ -2339,7 +2339,7 @@ To set a specific wallpaper: %prog /some ("auto" if refresh_level == VarietyWindow.RefreshLevel.ALL else "refresh") logger.debug(lambda: "Running set_wallpaper script with parameters: %s, %s, %s" % (wallpaper, auto, original_file)) try: @@ -9,12 +9,3 @@ except subprocess.CalledProcessError, e: if e.returncode == 124: logger.error(lambda: "Timeout while running set_wallpaper script, killed") -@@ -2695,7 +2695,7 @@ To set a specific wallpaper: %prog /some - "Name=Variety\n" - "Comment=Variety Wallpaper Changer\n" - "Icon=%s\n" -- 'Exec=sh -c "/opt/extras.ubuntu.com/variety/bin/variety || /usr/bin/variety || /opt/variety/bin/variety"\n' -+ 'Exec=sh -c "%%PREFIX%%/bin/variety"\n' - "Terminal=false\n" - "Type=Application\n" - "X-GNOME-Autostart-Delay=20\n" Modified: head/graphics/variety/pkg-plist ============================================================================== --- head/graphics/variety/pkg-plist Mon Oct 5 18:58:12 2015 (r398660) +++ head/graphics/variety/pkg-plist Mon Oct 5 20:08:23 2015 (r398661) @@ -44,6 +44,9 @@ bin/variety %%PYTHON_SITELIBDIR%%/variety/AvgColor.py %%PYTHON_SITELIBDIR%%/variety/AvgColor.pyc %%PYTHON_SITELIBDIR%%/variety/AvgColor.pyo +%%PYTHON_SITELIBDIR%%/variety/BingDownloader.py +%%PYTHON_SITELIBDIR%%/variety/BingDownloader.pyc +%%PYTHON_SITELIBDIR%%/variety/BingDownloader.pyo %%PYTHON_SITELIBDIR%%/variety/CalibrateDominantColors.py %%PYTHON_SITELIBDIR%%/variety/CalibrateDominantColors.pyc %%PYTHON_SITELIBDIR%%/variety/CalibrateDominantColors.pyo @@ -125,6 +128,9 @@ bin/variety %%PYTHON_SITELIBDIR%%/variety/ThumbsWindow.py %%PYTHON_SITELIBDIR%%/variety/ThumbsWindow.pyc %%PYTHON_SITELIBDIR%%/variety/ThumbsWindow.pyo +%%PYTHON_SITELIBDIR%%/variety/UnsplashDownloader.py +%%PYTHON_SITELIBDIR%%/variety/UnsplashDownloader.pyc +%%PYTHON_SITELIBDIR%%/variety/UnsplashDownloader.pyo %%PYTHON_SITELIBDIR%%/variety/Util.py %%PYTHON_SITELIBDIR%%/variety/Util.pyc %%PYTHON_SITELIBDIR%%/variety/Util.pyo @@ -187,6 +193,9 @@ share/help/C/variety/figures/icon.png share/help/C/variety/index.page share/help/C/variety/preferences.page share/help/C/variety/topic1.page +share/icons/hicolor/22x22/apps/variety-indicator-dark.png +share/icons/hicolor/22x22/apps/variety-indicator.png +share/icons/hicolor/scalable/apps/variety.svg share/locale/bg/LC_MESSAGES/variety.mo share/locale/de/LC_MESSAGES/variety.mo share/locale/es/LC_MESSAGES/variety.mo From owner-svn-ports-head@freebsd.org Mon Oct 5 20:18:24 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 291F79B6061; Mon, 5 Oct 2015 20:18:24 +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 1AA28850; Mon, 5 Oct 2015 20:18:24 +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 t95KINio084189; Mon, 5 Oct 2015 20:18:23 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95KINu6084188; Mon, 5 Oct 2015 20:18:23 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510052018.t95KINu6084188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 5 Oct 2015 20:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398662 - head/security/pinentry 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: Mon, 05 Oct 2015 20:18:24 -0000 Author: kwm Date: Mon Oct 5 20:18:23 2015 New Revision: 398662 URL: https://svnweb.freebsd.org/changeset/ports/398662 Log: GNOME 3 expects pinentry to have libsecret support. so instead of offering a options change always build it with libsecret support. Approved by: maintainer (implicit) Modified: head/security/pinentry/Makefile Modified: head/security/pinentry/Makefile ============================================================================== --- head/security/pinentry/Makefile Mon Oct 5 20:08:23 2015 (r398661) +++ head/security/pinentry/Makefile Mon Oct 5 20:18:23 2015 (r398662) @@ -80,7 +80,7 @@ LIBSECRET_CONFIGURE_ENABLE= libsecret LIBSECRET_LIB_DEPENDS= libsecret-1.so:${PORTSDIR}/security/libsecret .if ${PINENTRY_GUI} == "gnome3" -OPTIONS_DEFAULT= LIBSECRET +OPTIONS_SLAVE= LIBSECRET USE_GNOME+= gtk20 LIB_DEPENDS+= libgcr-base-3.so:${PORTSDIR}/security/gcr PLIST_FILES= bin/pinentry-gnome3 From owner-svn-ports-head@freebsd.org Mon Oct 5 20:36:41 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 389749B9018; Mon, 5 Oct 2015 20:36:41 +0000 (UTC) (envelope-from amdmi3@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 29EE32BB; Mon, 5 Oct 2015 20:36:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95Kaff0091265; Mon, 5 Oct 2015 20:36:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95Kafn2091264; Mon, 5 Oct 2015 20:36:41 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052036.t95Kafn2091264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 20:36:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398663 - head/comms/grig 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: Mon, 05 Oct 2015 20:36:41 -0000 Author: amdmi3 Date: Mon Oct 5 20:36:40 2015 New Revision: 398663 URL: https://svnweb.freebsd.org/changeset/ports/398663 Log: - Add LICENSE_FILE - Fix build by linking with libm Approved by: portmgr blanket Modified: head/comms/grig/Makefile Modified: head/comms/grig/Makefile ============================================================================== --- head/comms/grig/Makefile Mon Oct 5 20:18:23 2015 (r398662) +++ head/comms/grig/Makefile Mon Oct 5 20:36:40 2015 (r398663) @@ -11,6 +11,7 @@ MAINTAINER= hamradio@FreeBSD.org COMMENT= Amateur Radio control front-end LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhamlib.so:${PORTSDIR}/comms/hamlib @@ -18,6 +19,8 @@ USE_GNOME= gtk20 intltool GNU_CONFIGURE= yes USES= gettext gmake pkgconfig +LIBS+= -lm + post-patch: @${FIND} ${WRKSRC} -name Makefile.* | ${XARGS} ${REINPLACE_CMD} -e \ 's|-D.*_DISABLE_DEPRECATED||g' From owner-svn-ports-head@freebsd.org Mon Oct 5 20:36:48 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 3CF0B9B9095; Mon, 5 Oct 2015 20:36:48 +0000 (UTC) (envelope-from amdmi3@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 1CCAB370; Mon, 5 Oct 2015 20:36:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95KalR6091368; Mon, 5 Oct 2015 20:36:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95Kal4l091367; Mon, 5 Oct 2015 20:36:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052036.t95Kal4l091367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 20:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398664 - head/comms/xlog 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: Mon, 05 Oct 2015 20:36:48 -0000 Author: amdmi3 Date: Mon Oct 5 20:36:46 2015 New Revision: 398664 URL: https://svnweb.freebsd.org/changeset/ports/398664 Log: - Add LICENSE_FILE - Fix build by linking with libm Modified: head/comms/xlog/Makefile Modified: head/comms/xlog/Makefile ============================================================================== --- head/comms/xlog/Makefile Mon Oct 5 20:36:40 2015 (r398663) +++ head/comms/xlog/Makefile Mon Oct 5 20:36:46 2015 (r398664) @@ -10,6 +10,7 @@ MAINTAINER= danilo@FreeBSD.org COMMENT= Amateur Radio logging application LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhamlib.so:${PORTSDIR}/comms/hamlib @@ -20,6 +21,8 @@ CONFIGURE_ARGS= --enable-mime-update CONFIGURE_ENV+= ac_cv_c_compiler_gnu=no MAKE_ARGS= PREFIX=/${PREFIX} +LIBS+= -lm + OPTIONS_DEFINE= NLS DOCS OPTIONS_SUB= yes NLS_USES= gettext From owner-svn-ports-head@freebsd.org Mon Oct 5 20:59: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 BA6849BAFFC; Mon, 5 Oct 2015 20:59:11 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id ADEF3FE6; Mon, 5 Oct 2015 20:59:11 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id AC6DB1069; Mon, 5 Oct 2015 20:59:11 +0000 (UTC) Date: Mon, 5 Oct 2015 20:59:11 +0000 From: Alexey Dokuchaev To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r397895 - head/sysutils/namefix Message-ID: <20151005205911.GA60324@FreeBSD.org> References: <201509252153.t8PLrKtR069081@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201509252153.t8PLrKtR069081@repo.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: Mon, 05 Oct 2015 20:59:11 -0000 On Fri, Sep 25, 2015 at 09:53:20PM +0000, Mark Linimon wrote: > New Revision: 397895 > URL: https://svnweb.freebsd.org/changeset/ports/397895 > > Log: > Mark as broken on sparc64: fails to extract. I think it was due to missing -fPIC in `archivers/p7zip', which I've added in r396461; after that `sysutils/namefix' was extracting fine (tested on flame). May I see the build log with error you're seeing now? ./danfe From owner-svn-ports-head@freebsd.org Mon Oct 5 21:14:38 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 2A2AF99AE3A; Mon, 5 Oct 2015 21:14:38 +0000 (UTC) (envelope-from amdmi3@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 1B92DDDC; Mon, 5 Oct 2015 21:14:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95LEbG0005553; Mon, 5 Oct 2015 21:14:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LEbDY005552; Mon, 5 Oct 2015 21:14:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052114.t95LEbDY005552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 21:14:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398665 - head/comms/thebridge 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: Mon, 05 Oct 2015 21:14:38 -0000 Author: amdmi3 Date: Mon Oct 5 21:14:37 2015 New Revision: 398665 URL: https://svnweb.freebsd.org/changeset/ports/398665 Log: - Add LICENSE_FILE - Add missing run-depend on bash - Remove no-op SHEBANG_LANG Approved by: portmgr blanket Modified: head/comms/thebridge/Makefile Modified: head/comms/thebridge/Makefile ============================================================================== --- head/comms/thebridge/Makefile Mon Oct 5 20:36:46 2015 (r398664) +++ head/comms/thebridge/Makefile Mon Oct 5 21:14:37 2015 (r398665) @@ -3,6 +3,7 @@ PORTNAME= thebridge PORTVERSION= 1.09 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= SF/cqinet/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -10,6 +11,9 @@ MAINTAINER= hamradio@FreeBSD.org COMMENT= Amateur Radio Echolink conference bridge LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash USES= gmake shebangfix tar:tgz GNU_CONFIGURE= yes @@ -18,7 +22,6 @@ USE_RC_SUBR= tbd MAKE_ARGS= AUTOMAKE="${TRUE}" SHEBANG_FILES= addons/usermgmt.cgi -SHEBANG_LANG= bash INSTALL_TARGET= install-strip From owner-svn-ports-head@freebsd.org Mon Oct 5 21:15:12 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 EB30B99AEB2; Mon, 5 Oct 2015 21:15:12 +0000 (UTC) (envelope-from amdmi3@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 DC9FEEC4; Mon, 5 Oct 2015 21:15:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95LFCBc005671; Mon, 5 Oct 2015 21:15:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LFC2A005670; Mon, 5 Oct 2015 21:15:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052115.t95LFC2A005670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 21:15:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398666 - head/deskutils/pinot 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: Mon, 05 Oct 2015 21:15:13 -0000 Author: amdmi3 Date: Mon Oct 5 21:15:12 2015 New Revision: 398666 URL: https://svnweb.freebsd.org/changeset/ports/398666 Log: - Add missing run-depend on bash - Remove no-op SHEBANG_LANG Approved by: portmgr blanket Modified: head/deskutils/pinot/Makefile Modified: head/deskutils/pinot/Makefile ============================================================================== --- head/deskutils/pinot/Makefile Mon Oct 5 21:14:37 2015 (r398665) +++ head/deskutils/pinot/Makefile Mon Oct 5 21:15:12 2015 (r398666) @@ -3,7 +3,7 @@ PORTNAME= pinot PORTVERSION= 1.06 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= deskutils MASTER_SITES= GOOGLE_CODE #MASTER_SITES= http://colinf.chez.com/pinot/ @@ -35,7 +35,8 @@ RUN_DEPENDS= update-mime-database:${PORT catppt:${PORTSDIR}/textproc/catdoc \ unzip:${PORTSDIR}/archivers/unzip \ unrtf:${PORTSDIR}/textproc/unrtf \ - catdvi:${PORTSDIR}/print/catdvi + catdvi:${PORTSDIR}/print/catdvi \ + bash:${PORTSDIR}/shells/bash PROJECTHOST= ${PORTNAME}-search @@ -51,7 +52,6 @@ USE_OPENSSL= yes USE_SQLITE= 3 USE_XORG= pixman USE_LDCONFIG= ${PREFIX}/lib/pinot/backends ${PREFIX}/lib/pinot/filters -SHEBANG_LANG= bash SHEBANG_FILES= scripts/bash/*.sh OPTIONS_DEFINE= DEBUG CHMLIB DOCS From owner-svn-ports-head@freebsd.org Mon Oct 5 21:30: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 C09B69B6D73; Mon, 5 Oct 2015 21:30:44 +0000 (UTC) (envelope-from amdmi3@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 A5BB7D15; Mon, 5 Oct 2015 21:30:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95LUhkk009863; Mon, 5 Oct 2015 21:30:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LUhv4009861; Mon, 5 Oct 2015 21:30:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052130.t95LUhv4009861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 21:30:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398668 - head/devel/flex-sdk 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: Mon, 05 Oct 2015 21:30:44 -0000 Author: amdmi3 Date: Mon Oct 5 21:30:42 2015 New Revision: 398668 URL: https://svnweb.freebsd.org/changeset/ports/398668 Log: - Don't install garbage files - Add NO_ARCH - Add empty directories to plist PR: 203194 Submitted by: amdmi3 Approved by: maintainer timeout (kuriyama, 2 weeks) Modified: head/devel/flex-sdk/Makefile head/devel/flex-sdk/pkg-plist Modified: head/devel/flex-sdk/Makefile ============================================================================== --- head/devel/flex-sdk/Makefile Mon Oct 5 21:30:31 2015 (r398667) +++ head/devel/flex-sdk/Makefile Mon Oct 5 21:30:42 2015 (r398668) @@ -11,23 +11,23 @@ COMMENT= Adobe Flex SDK CONFLICTS= ja-flex-sdk-2.* flex-sdk2-2.* flex-sdk3-3.* USES= zip -USE_JAVA= YES +USE_JAVA= yes JAVA_VERSION= 1.6+ WRKSRC= ${WRKDIR} SUB_FILES= ${SCRIPTS:C/\$/.sh/g} NO_BUILD= YES +NO_ARCH= yes PLIST_SUB= PORTNAME=${PORTNAME} SUB_LIST= PORTNAME=${PORTNAME} SCRIPTS= aasdoc acompc amxmlc asdoc compc copylocale digest \ fcsh fdb mxmlc optimizer -.include - post-extract: ${RM} ${WRKSRC}/bin/*.bat ${WRKSRC}/bin/*.exe ${FIND} ${WRKSRC} -print0 -type f | ${XARGS} -0 ${CHMOD} og+r ${FIND} ${WRKSRC} -print0 -type f -perm +0111 | ${XARGS} -0 ${CHMOD} og+rx ${FIND} ${WRKSRC} -print0 -type d | ${XARGS} -0 ${CHMOD} og+rx + ${FIND} ${WRKSRC} -name "._*" -delete do-install: .for i in ${SCRIPTS} @@ -47,4 +47,4 @@ do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${CP} -r ${WRKSRC}/*.htm ${STAGEDIR}${DOCSDIR}/ -.include +.include Modified: head/devel/flex-sdk/pkg-plist ============================================================================== --- head/devel/flex-sdk/pkg-plist Mon Oct 5 21:30:31 2015 (r398667) +++ head/devel/flex-sdk/pkg-plist Mon Oct 5 21:30:42 2015 (r398668) @@ -655,19 +655,10 @@ bin/optimizer %%DATADIR%%/frameworks/projects/air/Core/src/air/net/ServiceMonitor.as %%DATADIR%%/frameworks/projects/air/Core/src/air/net/SocketMonitor.as %%DATADIR%%/frameworks/projects/air/Core/src/air/net/URLMonitor.as -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/._AndroidLicenseCheckerCallback.java -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/._AndroidLicensing.java -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/._AndroidLicensingExtension.java -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/._AndroidLicensingExtensionContext.java %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/AndroidLicenseCheckerCallback.java %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/AndroidLicensing.java %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/AndroidLicensingExtension.java %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingJavaProject/src/com/adobe/air/sampleextensions/android/licensing/AndroidLicensingExtensionContext.java -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/._extension.xml -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/._LicenseChecker.as -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/._LicenseStatus.as -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/._LicenseStatusEvent.as -%%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/._LicenseStatusReason.as %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/LicenseChecker.as %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/LicenseStatus.as %%DATADIR%%/frameworks/projects/air/Licensing/Android/AndroidLicensingLib/src/com/adobe/air/sampleextensions/android/licensing/LicenseStatusEvent.as @@ -4078,3 +4069,10 @@ bin/optimizer %%DOCSDIR%%/license-adobesdk-fr.htm %%DOCSDIR%%/license-mpl.htm %%DOCSDIR%%/readme.htm +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/src/spark/transitions/supportClasses +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/zh_CN +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/ru_RU +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/ja_JP +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/fr_FR +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/en_US +@dir %%DATADIR%%/frameworks/projects/mobilecomponents/bundles/de_DE From owner-svn-ports-head@freebsd.org Mon Oct 5 21:30: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 2815B9B6CF2; Mon, 5 Oct 2015 21:30:32 +0000 (UTC) (envelope-from amdmi3@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 F3B6AC0F; Mon, 5 Oct 2015 21:30:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95LUVmX009728; Mon, 5 Oct 2015 21:30:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LUVsq009726; Mon, 5 Oct 2015 21:30:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510052130.t95LUVsq009726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 5 Oct 2015 21:30:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398667 - head/games/rt2-demo 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: Mon, 05 Oct 2015 21:30:32 -0000 Author: amdmi3 Date: Mon Oct 5 21:30:31 2015 New Revision: 398667 URL: https://svnweb.freebsd.org/changeset/ports/398667 Log: - Don't recreate bin/ symlink, upstream already provides correct one - Drop @dirrm* from plist PR: 203193 Submitted by: amdmi3 Approved by: maintainer timeout (mva, 2 weeks) Modified: head/games/rt2-demo/Makefile head/games/rt2-demo/pkg-plist Modified: head/games/rt2-demo/Makefile ============================================================================== --- head/games/rt2-demo/Makefile Mon Oct 5 21:15:12 2015 (r398666) +++ head/games/rt2-demo/Makefile Mon Oct 5 21:30:31 2015 (r398667) @@ -3,12 +3,12 @@ PORTNAME= rt2_demo PORTVERSION= 1.54b -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games linux MASTER_SITES= http://cvsup.theplanet.com/distfiles/ DISTNAME= rt2-demo EXTRACT_SUFX= .run -EXTRACT_ONLY= +EXTRACT_ONLY= # empty MAINTAINER= mva@FreeBSD.org COMMENT= The free demo of Railroad Tycoon II @@ -18,6 +18,6 @@ NO_BUILD= yes USE_LINUX= yes do-install: - @${SH} ${FILESDIR}/do-install ${STAGEDIR} ${PREFIX} ${DISTDIR} + @${SH} ${FILESDIR}/do-install ${STAGEDIR} ${PREFIX} ${DISTDIR} .include Modified: head/games/rt2-demo/pkg-plist ============================================================================== --- head/games/rt2-demo/pkg-plist Mon Oct 5 21:15:12 2015 (r398666) +++ head/games/rt2-demo/pkg-plist Mon Oct 5 21:30:31 2015 (r398667) @@ -1,3 +1,4 @@ +bin/rt2_demo lib/rt2_demo/Manual/Imagesm/C101_raise_lower.jpg lib/rt2_demo/Manual/Imagesm/C102_paint_terrain.jpg lib/rt2_demo/Manual/Imagesm/C103_fill_terrain.jpg @@ -104,12 +105,3 @@ lib/rt2_demo/maps/Heartland, USA.mp2 lib/rt2_demo/maps/Hell or High Water.mp2 lib/rt2_demo/rt2_demo.x86 lib/rt2_demo/splash.bmp -@exec ln -sf %D/lib/rt2_demo/rt2_demo.x86 %D/bin/rt2_demo -@unexec rm -f %D/bin/rt2_demo -@dirrm lib/rt2_demo/maps -@dirrm lib/rt2_demo/games -@dirrm lib/rt2_demo/data -@dirrm lib/rt2_demo/anim -@dirrm lib/rt2_demo/Manual/Imagesm -@dirrm lib/rt2_demo/Manual -@dirrm lib/rt2_demo From owner-svn-ports-head@freebsd.org Mon Oct 5 21:44:05 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 7D7B79B997D; Mon, 5 Oct 2015 21:44:05 +0000 (UTC) (envelope-from garga@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 62679C00; Mon, 5 Oct 2015 21:44:05 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95Li523016809; Mon, 5 Oct 2015 21:44:05 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95Li4PS016804; Mon, 5 Oct 2015 21:44:04 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201510052144.t95Li4PS016804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Mon, 5 Oct 2015 21:44:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398669 - head/devel/git 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: Mon, 05 Oct 2015 21:44:05 -0000 Author: garga Date: Mon Oct 5 21:44:03 2015 New Revision: 398669 URL: https://svnweb.freebsd.org/changeset/ports/398669 Log: Update devel/git to 2.6.1 MFH: 2015Q4 Modified: head/devel/git/Makefile head/devel/git/distinfo head/devel/git/pkg-plist Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Mon Oct 5 21:30:42 2015 (r398668) +++ head/devel/git/Makefile Mon Oct 5 21:44:03 2015 (r398669) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.6.0 +DISTVERSION= 2.6.1 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ Modified: head/devel/git/distinfo ============================================================================== --- head/devel/git/distinfo Mon Oct 5 21:30:42 2015 (r398668) +++ head/devel/git/distinfo Mon Oct 5 21:44:03 2015 (r398669) @@ -1,6 +1,6 @@ -SHA256 (git-2.6.0.tar.xz) = 211beb96ff41a83727e39704431ac388ecb1cebb5219cda067999bce4e1e15a6 -SIZE (git-2.6.0.tar.xz) = 3808872 -SHA256 (git-manpages-2.6.0.tar.xz) = 94c45cf2353f8e1bbb6b56b6f54289203319db4cc38d94f53fcfb8dc3b669615 -SIZE (git-manpages-2.6.0.tar.xz) = 380940 -SHA256 (git-htmldocs-2.6.0.tar.xz) = 0ba5d5d630e3235b74bcfb4ea2e9bbda8a3e619aaaf9e1f56e12dec5d8dc1d87 -SIZE (git-htmldocs-2.6.0.tar.xz) = 1016192 +SHA256 (git-2.6.1.tar.xz) = fc7c727745d5eb0d796a16dc7c4b999c184830110e0aeb592c788597cc8e9ccd +SIZE (git-2.6.1.tar.xz) = 3811268 +SHA256 (git-manpages-2.6.1.tar.xz) = e4cf64edcecd284d9ef4e6ca7fa0e8556d2414b5d9881a9abfe477f95b416391 +SIZE (git-manpages-2.6.1.tar.xz) = 381288 +SHA256 (git-htmldocs-2.6.1.tar.xz) = 791487ebd5a25456d41d8825ef450fdf3214898a328028d01acdb21a668052da +SIZE (git-htmldocs-2.6.1.tar.xz) = 1016516 Modified: head/devel/git/pkg-plist ============================================================================== --- head/devel/git/pkg-plist Mon Oct 5 21:30:42 2015 (r398668) +++ head/devel/git/pkg-plist Mon Oct 5 21:44:03 2015 (r398669) @@ -1233,6 +1233,7 @@ share/git-core/templates/info/exclude %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.3.7.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.3.8.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.3.9.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.3.10.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.2.txt @@ -1243,11 +1244,14 @@ share/git-core/templates/info/exclude %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.7.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.8.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.9.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.4.10.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.5.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.5.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.5.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.5.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.5.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.6.0.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.6.1.txt %%GITWEB%%%%EXAMPLESDIR%%/gitweb/gitweb.cgi %%GITWEB%%%%EXAMPLESDIR%%/gitweb/static/gitweb.js %%GITWEB%%%%EXAMPLESDIR%%/gitweb/static/gitweb.css From owner-svn-ports-head@freebsd.org Mon Oct 5 21:50:53 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 3D6F69BAF94; Mon, 5 Oct 2015 21:50:53 +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 16924152; Mon, 5 Oct 2015 21:50:53 +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 t95LoquY017830; Mon, 5 Oct 2015 21:50:52 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95Loq76017826; Mon, 5 Oct 2015 21:50:52 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510052150.t95Loq76017826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 5 Oct 2015 21:50:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398670 - in head/devel: . rubygem-ast 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: Mon, 05 Oct 2015 21:50:53 -0000 Author: mmoll Date: Mon Oct 5 21:50:51 2015 New Revision: 398670 URL: https://svnweb.freebsd.org/changeset/ports/398670 Log: new port: devel/rubygem-ast AST is a small Ruby library for working with immutable abstract syntax trees. WWW: https://github.com/whitequark/ast Added: head/devel/rubygem-ast/ head/devel/rubygem-ast/Makefile (contents, props changed) head/devel/rubygem-ast/distinfo (contents, props changed) head/devel/rubygem-ast/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 5 21:44:03 2015 (r398669) +++ head/devel/Makefile Mon Oct 5 21:50:51 2015 (r398670) @@ -4599,6 +4599,7 @@ SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 SUBDIR += rubygem-aspectr + SUBDIR += rubygem-ast SUBDIR += rubygem-atomic SUBDIR += rubygem-atoulme-antwrap SUBDIR += rubygem-attic Added: head/devel/rubygem-ast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ast/Makefile Mon Oct 5 21:50:51 2015 (r398670) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= ast +PORTVERSION= 2.1.0 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Library for working with Abstract Syntax Trees + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.MIT + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-ast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ast/distinfo Mon Oct 5 21:50:51 2015 (r398670) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ast-2.1.0.gem) = f3066fd52ad2aa5731d5321ea609190deade4f2be251a3891d1cecdc1df74b80 +SIZE (rubygem/ast-2.1.0.gem) = 14848 Added: head/devel/rubygem-ast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ast/pkg-descr Mon Oct 5 21:50:51 2015 (r398670) @@ -0,0 +1,3 @@ +AST is a small Ruby library for working with immutable abstract syntax trees. + +WWW: https://github.com/whitequark/ast From owner-svn-ports-head@freebsd.org Mon Oct 5 21:54:53 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 372369B630A; Mon, 5 Oct 2015 21:54:53 +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 0FDAE8BC; Mon, 5 Oct 2015 21:54:53 +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 t95Lsqbe020752; Mon, 5 Oct 2015 21:54:52 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LsqbO020745; Mon, 5 Oct 2015 21:54:52 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510052154.t95LsqbO020745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 5 Oct 2015 21:54:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398671 - in head/devel: . rubygem-parser 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: Mon, 05 Oct 2015 21:54:53 -0000 Author: mmoll Date: Mon Oct 5 21:54:51 2015 New Revision: 398671 URL: https://svnweb.freebsd.org/changeset/ports/398671 Log: new port: devel/rubygem-parser Parser is a production-ready Ruby parser written in pure Ruby. WWW: https://github.com/whitequark/parser Added: head/devel/rubygem-parser/ head/devel/rubygem-parser/Makefile (contents, props changed) head/devel/rubygem-parser/distinfo (contents, props changed) head/devel/rubygem-parser/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 5 21:50:51 2015 (r398670) +++ head/devel/Makefile Mon Oct 5 21:54:51 2015 (r398671) @@ -4843,6 +4843,7 @@ SUBDIR += rubygem-orm_adapter SUBDIR += rubygem-paint SUBDIR += rubygem-paperclip + SUBDIR += rubygem-parser SUBDIR += rubygem-piston SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform Added: head/devel/rubygem-parser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-parser/Makefile Mon Oct 5 21:54:51 2015 (r398671) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= parser +PORTVERSION= 2.2.2.6 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby parser written in pure Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-ast>=1.1:${PORTSDIR}/devel/rubygem-ast + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/ruby-parse bin/ruby-rewrite + +.include Added: head/devel/rubygem-parser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-parser/distinfo Mon Oct 5 21:54:51 2015 (r398671) @@ -0,0 +1,2 @@ +SHA256 (rubygem/parser-2.2.2.6.gem) = 1016f97e594d9abc92936e8b9ac0444438cf91df46afcf1fe607415cb227b066 +SIZE (rubygem/parser-2.2.2.6.gem) = 370176 Added: head/devel/rubygem-parser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-parser/pkg-descr Mon Oct 5 21:54:51 2015 (r398671) @@ -0,0 +1,3 @@ +Parser is a production-ready Ruby parser written in pure Ruby. + +WWW: https://github.com/whitequark/parser From owner-svn-ports-head@freebsd.org Mon Oct 5 21:58:46 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 468F19B674E; Mon, 5 Oct 2015 21:58:46 +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 1DECEB93; Mon, 5 Oct 2015 21:58:46 +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 t95LwjFU021076; Mon, 5 Oct 2015 21:58:45 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95Lwjpa021073; Mon, 5 Oct 2015 21:58:45 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510052158.t95Lwjpa021073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 5 Oct 2015 21:58:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398672 - head/devel/rubygem-astrolabe 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: Mon, 05 Oct 2015 21:58:46 -0000 Author: mmoll Date: Mon Oct 5 21:58:44 2015 New Revision: 398672 URL: https://svnweb.freebsd.org/changeset/ports/398672 Log: new port: devel/rubygem-astrolabe Astrolabe is an AST node library that provides an object-oriented way to handle AST by extending Parser's node class. WWW: https://github.com/yujinakayama/astrolabe Added: head/devel/rubygem-astrolabe/ head/devel/rubygem-astrolabe/Makefile (contents, props changed) head/devel/rubygem-astrolabe/distinfo (contents, props changed) head/devel/rubygem-astrolabe/pkg-descr (contents, props changed) Added: head/devel/rubygem-astrolabe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-astrolabe/Makefile Mon Oct 5 21:58:44 2015 (r398672) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= astrolabe +PORTVERSION= 1.3.1 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Object-oriented AST extension for rubygem-parser + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-parser>=2.2:${PORTSDIR}/devel/rubygem-parser + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-astrolabe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-astrolabe/distinfo Mon Oct 5 21:58:44 2015 (r398672) @@ -0,0 +1,2 @@ +SHA256 (rubygem/astrolabe-1.3.1.gem) = 879e2edf7b04b4f03cf7bff9cf1e1cee20772569c81399e1de4914a7baac6b79 +SIZE (rubygem/astrolabe-1.3.1.gem) = 16384 Added: head/devel/rubygem-astrolabe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-astrolabe/pkg-descr Mon Oct 5 21:58:44 2015 (r398672) @@ -0,0 +1,4 @@ +Astrolabe is an AST node library that provides an object-oriented +way to handle AST by extending Parser's node class. + +WWW: https://github.com/yujinakayama/astrolabe From owner-svn-ports-head@freebsd.org Mon Oct 5 21:59:35 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 8CCBD9B67F3; Mon, 5 Oct 2015 21:59:35 +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 7E7AFC90; Mon, 5 Oct 2015 21:59:35 +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 t95LxZk5021198; Mon, 5 Oct 2015 21:59:35 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95LxZfH021197; Mon, 5 Oct 2015 21:59:35 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510052159.t95LxZfH021197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 5 Oct 2015 21:59:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398673 - head/devel 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: Mon, 05 Oct 2015 21:59:35 -0000 Author: mmoll Date: Mon Oct 5 21:59:34 2015 New Revision: 398673 URL: https://svnweb.freebsd.org/changeset/ports/398673 Log: connect devel/rubygem-astrolabe to the build Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 5 21:58:44 2015 (r398672) +++ head/devel/Makefile Mon Oct 5 21:59:34 2015 (r398673) @@ -4600,6 +4600,7 @@ SUBDIR += rubygem-ascii85 SUBDIR += rubygem-aspectr SUBDIR += rubygem-ast + SUBDIR += rubygem-astrolabe SUBDIR += rubygem-atomic SUBDIR += rubygem-atoulme-antwrap SUBDIR += rubygem-attic From owner-svn-ports-head@freebsd.org Mon Oct 5 22:02:40 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 856419B6B83; Mon, 5 Oct 2015 22:02:40 +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 5CDBB82; Mon, 5 Oct 2015 22:02:40 +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 t95M2eHB024579; Mon, 5 Oct 2015 22:02:40 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95M2dgD024575; Mon, 5 Oct 2015 22:02:39 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510052202.t95M2dgD024575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Mon, 5 Oct 2015 22:02:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398674 - in head/devel: . rubygem-powerpack 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: Mon, 05 Oct 2015 22:02:40 -0000 Author: mmoll Date: Mon Oct 5 22:02:38 2015 New Revision: 398674 URL: https://svnweb.freebsd.org/changeset/ports/398674 Log: new port: devel/rubygem-powerpack Powerpack offers some useful extensions to the standard Ruby classes. Comparable to ActiveSupport, but less ambitious and more modular. WWW: https://github.com/bbatsov/powerpack Added: head/devel/rubygem-powerpack/ head/devel/rubygem-powerpack/Makefile (contents, props changed) head/devel/rubygem-powerpack/distinfo (contents, props changed) head/devel/rubygem-powerpack/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 5 21:59:34 2015 (r398673) +++ head/devel/Makefile Mon Oct 5 22:02:38 2015 (r398674) @@ -4854,6 +4854,7 @@ SUBDIR += rubygem-posix-spawn SUBDIR += rubygem-power_assert SUBDIR += rubygem-powerbar + SUBDIR += rubygem-powerpack SUBDIR += rubygem-progressbar SUBDIR += rubygem-protected_attributes SUBDIR += rubygem-prototype-rails Added: head/devel/rubygem-powerpack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-powerpack/Makefile Mon Oct 5 22:02:38 2015 (r398674) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= powerpack +PORTVERSION= 0.1.1 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Extensions to core Ruby classes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-powerpack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-powerpack/distinfo Mon Oct 5 22:02:38 2015 (r398674) @@ -0,0 +1,2 @@ +SHA256 (rubygem/powerpack-0.1.1.gem) = 83a81d0406f1628adc61b579689dc4509b30409a00fa4ca8f47ff212a91bd6ba +SIZE (rubygem/powerpack-0.1.1.gem) = 14336 Added: head/devel/rubygem-powerpack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-powerpack/pkg-descr Mon Oct 5 22:02:38 2015 (r398674) @@ -0,0 +1,4 @@ +Powerpack offers some useful extensions to the standard Ruby classes. +Comparable to ActiveSupport, but less ambitious and more modular. + +WWW: https://github.com/bbatsov/powerpack From owner-svn-ports-head@freebsd.org Mon Oct 5 22:32: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 52F0D9B60AF; Mon, 5 Oct 2015 22:32:01 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 37EDBF9D; Mon, 5 Oct 2015 22:32:01 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 30F8D1C99; Mon, 5 Oct 2015 22:32:01 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 7D64615105; Mon, 5 Oct 2015 22:32:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id Lc-4hqFK7dBm; Mon, 5 Oct 2015 22:31:57 +0000 (UTC) Subject: Re: svn commit: r397911 - head DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com CA96E15100 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201509260017.t8Q0H9tf028768@repo.freebsd.org> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <5612FA4C.2080609@FreeBSD.org> Date: Mon, 5 Oct 2015 15:31:40 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <201509260017.t8Q0H9tf028768@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WanmCvqR6tbQR1mQRpKgkr0M5mivXMMXh" 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: Mon, 05 Oct 2015 22:32:01 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --WanmCvqR6tbQR1mQRpKgkr0M5mivXMMXh Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/25/2015 5:17 PM, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Sep 26 00:17:08 2015 > New Revision: 397911 > URL: https://svnweb.freebsd.org/changeset/ports/397911 >=20 > Log: > Document @{pre,post}[un]exec in CHANGES >=20 > Modified: > head/CHANGES >=20 > Modified: head/CHANGES > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/CHANGES Sat Sep 26 00:11:29 2015 (r397910) > +++ head/CHANGES Sat Sep 26 00:17:08 2015 (r397911) > @@ -10,6 +10,18 @@ in the release notes and/or placed into=20 > =20 > All ports committers are allowed to commit to this file. > =20 > +20150926 > +AUTHOR: bapt@FreeBSD.org > + > + New keywords are supported in pkg since 1.5.x: > + @preexec : execute the during pre-install scripts= > + @postexec : execute the during post-install scrip= ts > + @preunexec : execute the during pre-deinstall scr= ipts > + @postunexec : execute the during post-deinstall s= cripts > + > + @exec does not specify when if should be executed and is now conside= red as > + deprecated. > + > 20150914: > AUTHOR: mat@FreeBSD.org > =20 >=20 commit 9ffb1c5608740751493478c1e305519e272a7ef2 Author: Baptiste Daroussin Date: Tue Oct 7 18:38:06 2014 +0200 Add @{pre,post}[un]exec counter parts to @[un]exec ~/git/pkgng # git describe --tags 9ffb1c560 1.3.0.rc4-561-g9ffb1c5 Doesn't this mean it was in 1.3.0 and that we don't need the 1.6.0 minimal pkg version requirement? --=20 Regards, Bryan Drewery --WanmCvqR6tbQR1mQRpKgkr0M5mivXMMXh Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWEvpaAAoJEDXXcbtuRpfP1RUIAMjuyEDc1X1JjgTx/OV103tT pwHXiWGZVd1SL/fS8rOIP+ShPQN7sRI5Tz0gmgypgzTTvQcjW5MimK/AYys64BoB DQbxOck2JU8muWjctMNwdzk5snQFEII4VTpkQAjDAPka+r9LmblotVngQU/QdSW6 SC01h4zZ7wd8Me6b1laJrwy+VY1u8acd9/xtCPIE0/vyI+B415SyJAzHas/WbO7Z WnygSA9j+81VAziKAynxNYEmrMRTaSilJOZpnl+xlXqqFjTuZZe+Jcq6PHX8jkwt W8xOo9dvE/HA2wNHcsXvrhannXOpZb+ax7syOUGMih9H96h8MdVZ6TWInR0soek= =r/tf -----END PGP SIGNATURE----- --WanmCvqR6tbQR1mQRpKgkr0M5mivXMMXh-- From owner-svn-ports-head@freebsd.org Mon Oct 5 23:16:43 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 3726A9B606D; Mon, 5 Oct 2015 23:16:43 +0000 (UTC) (envelope-from danfe@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 288A5801; Mon, 5 Oct 2015 23:16:43 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95NGhYc019279; Mon, 5 Oct 2015 23:16:43 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95NGgxm019277; Mon, 5 Oct 2015 23:16:42 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201510052316.t95NGgxm019277@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 5 Oct 2015 23:16:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398675 - head/devel/nuitka 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: Mon, 05 Oct 2015 23:16:43 -0000 Author: danfe Date: Mon Oct 5 23:16:42 2015 New Revision: 398675 URL: https://svnweb.freebsd.org/changeset/ports/398675 Log: Update to version 0.5.14.3. Modified: head/devel/nuitka/Makefile head/devel/nuitka/distinfo Modified: head/devel/nuitka/Makefile ============================================================================== --- head/devel/nuitka/Makefile Mon Oct 5 22:02:38 2015 (r398674) +++ head/devel/nuitka/Makefile Mon Oct 5 23:16:42 2015 (r398675) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nuitka -PORTVERSION= 0.5.14 +PORTVERSION= 0.5.14.3 CATEGORIES= devel python MASTER_SITES= http://nuitka.net/releases/ DISTNAME= Nuitka-${PORTVERSION} Modified: head/devel/nuitka/distinfo ============================================================================== --- head/devel/nuitka/distinfo Mon Oct 5 22:02:38 2015 (r398674) +++ head/devel/nuitka/distinfo Mon Oct 5 23:16:42 2015 (r398675) @@ -1,2 +1,2 @@ -SHA256 (Nuitka-0.5.14.tar.bz2) = 630aaef2cfc7b02e8c6f8161a9dfae761c32a695d1344e2efb07b3d205bd9fca -SIZE (Nuitka-0.5.14.tar.bz2) = 1114242 +SHA256 (Nuitka-0.5.14.3.tar.bz2) = 3ce11e25dcc985677cf03f5d8b92ebfa6ec8b961e8f4606ecf13c8a3c39a2ca8 +SIZE (Nuitka-0.5.14.3.tar.bz2) = 1115937 From owner-svn-ports-head@freebsd.org Tue Oct 6 00:52:57 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 C5AE69B6C84; Tue, 6 Oct 2015 00:52:57 +0000 (UTC) (envelope-from junovitch@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 B3B9CDAA; Tue, 6 Oct 2015 00:52:57 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t960qv7T063300; Tue, 6 Oct 2015 00:52:57 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t960qveA063268; Tue, 6 Oct 2015 00:52:57 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510060052.t960qveA063268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 6 Oct 2015 00:52:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398676 - head/sysutils/logstash 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: Tue, 06 Oct 2015 00:52:58 -0000 Author: junovitch Date: Tue Oct 6 00:52:56 2015 New Revision: 398676 URL: https://svnweb.freebsd.org/changeset/ports/398676 Log: sysutils/logstash: update 1.5.3 -> 1.5.4 Changes: https://github.com/elastic/logstash/compare/v1.5.3...v1.5.4 PR: 203539 Submitted by: Enrico M. Crisostomo (maintainer) MFH: 2015Q4 Modified: head/sysutils/logstash/Makefile head/sysutils/logstash/distinfo head/sysutils/logstash/pkg-plist Modified: head/sysutils/logstash/Makefile ============================================================================== --- head/sysutils/logstash/Makefile Mon Oct 5 23:16:42 2015 (r398675) +++ head/sysutils/logstash/Makefile Tue Oct 6 00:52:56 2015 (r398676) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= logstash -PORTVERSION= 1.5.3 +PORTVERSION= 1.5.4 CATEGORIES= sysutils java MASTER_SITES= http://download.elastic.co/logstash/logstash/ Modified: head/sysutils/logstash/distinfo ============================================================================== --- head/sysutils/logstash/distinfo Mon Oct 5 23:16:42 2015 (r398675) +++ head/sysutils/logstash/distinfo Tue Oct 6 00:52:56 2015 (r398676) @@ -1,2 +1,2 @@ -SHA256 (logstash-1.5.3.tar.gz) = eb3c366074e561d777348bfe9db3d4d1cccbf2fa8e7406776f500b4ca639c4aa -SIZE (logstash-1.5.3.tar.gz) = 91914390 +SHA256 (logstash-1.5.4.tar.gz) = f03075ee534ce6e7667679447f56543ce05cebbdb7b65a9396a5e538bf3e9fa8 +SIZE (logstash-1.5.4.tar.gz) = 91956015 Modified: head/sysutils/logstash/pkg-plist ============================================================================== --- head/sysutils/logstash/pkg-plist Mon Oct 5 23:16:42 2015 (r398675) +++ head/sysutils/logstash/pkg-plist Tue Oct 6 00:52:56 2015 (r398676) @@ -155,402 +155,407 @@ logstash/vendor/bundle/jruby/1.9/gems/aw logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.6.1/spec/misc_spec.rb logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.6.1/spec/objects_spec.rb logstash/vendor/bundle/jruby/1.9/gems/awesome_print-1.6.1/spec/spec_helper.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-2.1.7/lib/aws-sdk.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/autoscaling/2011-01-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/autoscaling/2011-01-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudformation/2010-05-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudformation/2010-05-15/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudformation/2010-05-15/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudformation/2010-05-15/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudfront/2015-04-17/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudfront/2015-04-17/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudfront/2015-04-17/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudhsm/2014-05-30/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudsearch/2013-01-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudsearch/2013-01-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudsearchdomain/2013-01-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudtrail/2013-11-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cloudtrail/2013-11-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/codecommit/2015-04-13/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/codecommit/2015-04-13/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/codedeploy/2014-10-06/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/codedeploy/2014-10-06/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/codepipeline/2015-07-09/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cognito-identity/2014-06-30/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/cognito-sync/2014-06-30/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/config/2014-11-12/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/config/2014-11-12/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/datapipeline/2012-10-29/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/datapipeline/2012-10-29/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/devicefarm/2015-06-23/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/devicefarm/2015-06-23/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/directconnect/2012-10-25/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/directconnect/2012-10-25/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ds/2015-04-16/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/dynamodb/2012-08-10/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/dynamodb/2012-08-10/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/dynamodb/2012-08-10/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/dynamodb/2012-08-10/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ec2/2015-04-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ec2/2015-04-15/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ec2/2015-04-15/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ec2/2015-04-15/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ecs/2014-11-13/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ecs/2014-11-13/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ecs/2014-11-13/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticache/2015-02-02/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticache/2015-02-02/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticache/2015-02-02/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticbeanstalk/2010-12-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticbeanstalk/2010-12-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticfilesystem/2015-02-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticloadbalancing/2012-06-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticloadbalancing/2012-06-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticloadbalancing/2012-06-01/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticmapreduce/2009-03-31/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticmapreduce/2009-03-31/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elasticmapreduce/2009-03-31/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elastictranscoder/2012-09-25/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elastictranscoder/2012-09-25/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/elastictranscoder/2012-09-25/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/email/2010-12-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/email/2010-12-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/email/2010-12-01/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/glacier/2012-06-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/glacier/2012-06-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/glacier/2012-06-01/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/glacier/2012-06-01/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/iam/2010-05-08/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/iam/2010-05-08/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/iam/2010-05-08/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/iam/2010-05-08/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/importexport/2010-06-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/importexport/2010-06-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/kinesis/2013-12-02/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/kinesis/2013-12-02/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/kinesis/2013-12-02/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/kms/2014-11-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/kms/2014-11-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/lambda/2014-11-11/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/lambda/2014-11-11/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/lambda/2015-03-31/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/lambda/2015-03-31/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/logs/2014-03-28/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/logs/2014-03-28/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/machinelearning/2014-12-12/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/machinelearning/2014-12-12/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/monitoring/2010-08-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/monitoring/2010-08-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/opsworks/2013-02-18/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/opsworks/2013-02-18/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/opsworks/2013-02-18/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/opsworks/2013-02-18/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/rds/2014-10-31/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/rds/2014-10-31/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/rds/2014-10-31/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/rds/2014-10-31/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/redshift/2012-12-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/redshift/2012-12-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/redshift/2012-12-01/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/route53/2013-04-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/route53/2013-04-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/route53domains/2014-05-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/route53domains/2014-05-15/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/s3/2006-03-01/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/s3/2006-03-01/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/s3/2006-03-01/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/s3/2006-03-01/waiters-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sdb/2009-04-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sdb/2009-04-15/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sns/2010-03-31/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sns/2010-03-31/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sns/2010-03-31/resources-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sqs/2012-11-05/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sqs/2012-11-05/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/ssm/2014-11-06/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/storagegateway/2013-06-30/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/storagegateway/2013-06-30/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/streams.dynamodb/2012-08-10/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/sts/2011-06-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/support/2013-04-15/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/support/2013-04-15/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/swf/2012-01-25/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/swf/2012-01-25/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/workspaces/2015-04-08/api-2.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/apis/workspaces/2015-04-08/paginators-1.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/bin/aws.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/ca-bundle.crt -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/endpoints.json -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/customizations.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/client_type_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/docstring_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/param_formatter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/request_syntax_example.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/response_structure_example.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/docs/utils.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/api/shape_map.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/assume_role_credentials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/autoscaling.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/client.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/client_stubs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/client_waiters.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudformation.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudfront.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudhsm.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudsearch.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudsearchdomain.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudtrail.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudwatch.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cloudwatchlogs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/codecommit.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/codedeploy.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/codepipeline.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cognitoidentity.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/cognitosync.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/configservice.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/credential_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/credential_provider_chain.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/credentials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/datapipeline.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/deprecations.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/devicefarm.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/directconnect.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/directoryservice.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/dynamodb.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/dynamodb/attribute_value.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/dynamodbstreams.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/eager_loader.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/ec2.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/ecs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/efs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/elasticache.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/elasticbeanstalk.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/elasticloadbalancing.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/elastictranscoder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/empty_structure.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/emr.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/endpoint_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/glacier.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/iam.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/importexport.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/instance_profile_credentials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/error_handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/json_engine.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/oj_engine.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/json/parser.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/kinesis.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/kms.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/lambda.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/lambdapreview.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/machinelearning.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/opsworks.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/pageable_response.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/pager.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/param_converter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/param_validator.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/csd_conditional_signing.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/glacier_account_id.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/glacier_api_version.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/glacier_checksums.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/global_configuration.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/param_converter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/param_validator.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/protocols/ec2.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/protocols/json_rpc.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/protocols/query.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/protocols/rest_json.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/protocols/rest_xml.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/regional_endpoint.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/request_signer.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/response_paging.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/retry_errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/route_53_id_fix.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_bucket_dns.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_complete_multipart_upload_fix.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_location_constraint.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_md5s.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_redirects.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_request_signer.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_sse_cpk.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/sqs_queue_urls.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/stub_responses.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/swf_read_timeouts.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/plugins/user_agent.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/query/ec2_param_builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/query/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/query/param.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/query/param_builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/query/param_list.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rds.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/redshift.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/refreshing_credentials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/request/body.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/request/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/request/endpoint.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/request/headers.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/response/body.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/response/headers.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/response/parser.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/rest/response/status_code.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/route53.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/route53domains.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/s3.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/s3/bucket_region_cache.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/s3/presigner.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/service.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/ses.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/shared_credentials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/signers/base.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/signers/s3.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/signers/v2.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/signers/v3.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/signers/v4.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/simpledb.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/sns.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/sqs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/ssm.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/storagegateway.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/structure.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/sts.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/data_applicator.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/empty_stub.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/ec2.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/json.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/query.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/rest.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/rest_json.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/stubbing/stub_data.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/support.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/swf.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/tree_hash.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/type_builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/version.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/waiters/errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/waiters/null_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/waiters/poller.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/waiters/provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/waiters/waiter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/workspaces.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/default_list.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/default_map.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/doc_builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/error_handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/engines/libxml.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/engines/oga.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/engines/ox.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/engines/rexml.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/frame.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/parsing_error.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/aws-sdk-core/xml/parser/stack.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/base.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/block_io.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/configuration.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/events.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/handler_builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/handler_list.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/handler_list_entry.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/http/headers.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/http/request.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/http/response.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/logging/formatter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/logging/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/managed_file.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/net_http/connection_pool.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/net_http/handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/net_http/patches.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/networking_error.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugin.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugin_list.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/content_length.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/endpoint.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/logging.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/net_http.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/operation_methods.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/raise_response_errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/response_target.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/plugins/restful_bindings.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/request.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/request_context.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/client/response.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/model/api.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/model/operation.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/model/shapes.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/util.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.7/lib/seahorse/version.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/batch.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/builder.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/builder_sources.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/collection.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/definition.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/base_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/data_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/has_many_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/has_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/resource_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/documenter/waiter_operation_documenter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/operation_methods.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/operations.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/options.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/request.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/request_params.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/resource.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/ec2.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/ec2/instance.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/iam.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/bucket.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/client.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/decrypt_handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/default_key_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/encrypt_handler.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/errors.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/io_decrypter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/key_provider.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/materials.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/encryption/utils.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/file_part.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/file_uploader.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/multipart_file_uploader.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/multipart_upload.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/multipart_upload_error.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/object.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/object_summary.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/presigned_post.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/s3/public_url.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/sns.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/sns/message_verifier.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/sqs.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/services/sqs/queue_poller.rb -logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.7/lib/aws-sdk-resources/source.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-2.1.14/lib/aws-sdk.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/autoscaling/2011-01-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/autoscaling/2011-01-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudformation/2010-05-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudformation/2010-05-15/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudformation/2010-05-15/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudformation/2010-05-15/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudfront/2015-04-17/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudfront/2015-04-17/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudfront/2015-04-17/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudhsm/2014-05-30/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudsearch/2013-01-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudsearch/2013-01-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudsearchdomain/2013-01-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudtrail/2013-11-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cloudtrail/2013-11-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/codecommit/2015-04-13/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/codecommit/2015-04-13/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/codedeploy/2014-10-06/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/codedeploy/2014-10-06/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/codepipeline/2015-07-09/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cognito-identity/2014-06-30/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/cognito-sync/2014-06-30/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/config/2014-11-12/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/config/2014-11-12/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/datapipeline/2012-10-29/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/datapipeline/2012-10-29/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/devicefarm/2015-06-23/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/devicefarm/2015-06-23/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/directconnect/2012-10-25/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/directconnect/2012-10-25/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ds/2015-04-16/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/dynamodb/2012-08-10/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/dynamodb/2012-08-10/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/dynamodb/2012-08-10/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/dynamodb/2012-08-10/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ec2/2015-04-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ec2/2015-04-15/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ec2/2015-04-15/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ec2/2015-04-15/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ecs/2014-11-13/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ecs/2014-11-13/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ecs/2014-11-13/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticache/2015-02-02/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticache/2015-02-02/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticache/2015-02-02/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticbeanstalk/2010-12-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticbeanstalk/2010-12-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticfilesystem/2015-02-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticloadbalancing/2012-06-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticloadbalancing/2012-06-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticloadbalancing/2012-06-01/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticmapreduce/2009-03-31/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticmapreduce/2009-03-31/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elasticmapreduce/2009-03-31/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elastictranscoder/2012-09-25/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elastictranscoder/2012-09-25/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/elastictranscoder/2012-09-25/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/email/2010-12-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/email/2010-12-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/email/2010-12-01/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/glacier/2012-06-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/glacier/2012-06-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/glacier/2012-06-01/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/glacier/2012-06-01/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/iam/2010-05-08/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/iam/2010-05-08/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/iam/2010-05-08/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/iam/2010-05-08/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/importexport/2010-06-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/importexport/2010-06-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/kinesis/2013-12-02/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/kinesis/2013-12-02/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/kinesis/2013-12-02/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/kms/2014-11-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/kms/2014-11-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/lambda/2014-11-11/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/lambda/2014-11-11/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/lambda/2015-03-31/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/lambda/2015-03-31/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/logs/2014-03-28/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/logs/2014-03-28/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/machinelearning/2014-12-12/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/machinelearning/2014-12-12/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/monitoring/2010-08-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/monitoring/2010-08-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/opsworks/2013-02-18/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/opsworks/2013-02-18/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/opsworks/2013-02-18/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/opsworks/2013-02-18/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/rds/2014-10-31/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/rds/2014-10-31/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/rds/2014-10-31/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/rds/2014-10-31/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/redshift/2012-12-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/redshift/2012-12-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/redshift/2012-12-01/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/route53/2013-04-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/route53/2013-04-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/route53domains/2014-05-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/route53domains/2014-05-15/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/s3/2006-03-01/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/s3/2006-03-01/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/s3/2006-03-01/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/s3/2006-03-01/waiters-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sdb/2009-04-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sdb/2009-04-15/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sns/2010-03-31/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sns/2010-03-31/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sns/2010-03-31/resources-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sqs/2012-11-05/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sqs/2012-11-05/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/ssm/2014-11-06/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/storagegateway/2013-06-30/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/storagegateway/2013-06-30/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/streams.dynamodb/2012-08-10/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/sts/2011-06-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/support/2013-04-15/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/support/2013-04-15/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/swf/2012-01-25/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/swf/2012-01-25/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/workspaces/2015-04-08/api-2.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/apis/workspaces/2015-04-08/paginators-1.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/bin/aws.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/ca-bundle.crt +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/endpoints.json +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/customizations.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/client_type_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/docstring_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/param_formatter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/request_syntax_example.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/response_structure_example.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/shared_example.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/docs/utils.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/api/shape_map.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/assume_role_credentials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/autoscaling.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/client.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/client_stubs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/client_waiters.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudformation.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudfront.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudhsm.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudsearch.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudsearchdomain.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudtrail.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudwatch.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cloudwatchlogs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/codecommit.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/codedeploy.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/codepipeline.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cognitoidentity.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/cognitosync.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/configservice.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/credential_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/credential_provider_chain.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/credentials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/datapipeline.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/deprecations.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/devicefarm.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/directconnect.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/directoryservice.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/dynamodb.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/dynamodb/attribute_value.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/dynamodbstreams.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/eager_loader.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/ec2.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/ecs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/efs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/elasticache.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/elasticbeanstalk.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/elasticloadbalancing.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/elastictranscoder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/empty_structure.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/emr.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/endpoint_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/glacier.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/iam.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/importexport.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/instance_profile_credentials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/error_handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/json_engine.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/oj_engine.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/json/parser.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/kinesis.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/kms.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/lambda.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/lambdapreview.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/machinelearning.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/opsworks.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/pageable_response.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/pager.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/param_converter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/param_validator.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/glacier_account_id.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/glacier_api_version.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/glacier_checksums.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/global_configuration.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/param_converter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/param_validator.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/protocols/ec2.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/protocols/query.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/protocols/rest_json.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/regional_endpoint.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/request_signer.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/response_paging.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/retry_errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/route_53_id_fix.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_complete_multipart_upload_fix.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_location_constraint.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_md5s.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_redirects.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_request_signer.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/stub_responses.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/plugins/user_agent.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/query/ec2_param_builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/query/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/query/param.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/query/param_builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/query/param_list.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rds.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/redshift.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/refreshing_credentials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/request/body.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/request/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/request/endpoint.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/request/headers.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/response/body.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/response/headers.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/response/parser.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/rest/response/status_code.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/route53.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/route53domains.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/s3.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/s3/bucket_region_cache.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/s3/presigner.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/service.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/ses.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/shared_credentials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/signers/base.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/signers/s3.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/signers/v2.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/signers/v3.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/signers/v4.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/simpledb.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/sns.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/sqs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/ssm.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/storagegateway.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/structure.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/sts.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/data_applicator.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/empty_stub.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/ec2.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/json.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/query.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/rest.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/stub_data.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/stubbing/xml_error.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/support.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/swf.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/tree_hash.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/type_builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/version.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/waiters/errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/waiters/null_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/waiters/poller.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/waiters/provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/waiters/waiter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/workspaces.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/default_list.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/default_map.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/doc_builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/error_handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/engines/libxml.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/engines/oga.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/engines/ox.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/engines/rexml.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/frame.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/parsing_error.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/aws-sdk-core/xml/parser/stack.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/base.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/block_io.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/configuration.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/events.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/handler_builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/handler_list.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/handler_list_entry.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/http/headers.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/http/request.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/http/response.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/logging/formatter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/logging/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/managed_file.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/net_http/connection_pool.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/net_http/handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/net_http/patches.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/networking_error.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugin.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugin_list.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/content_length.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/endpoint.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/logging.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/net_http.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/operation_methods.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/raise_response_errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/response_target.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/plugins/restful_bindings.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/request.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/request_context.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/client/response.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/model/api.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/model/operation.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/model/shapes.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/util.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-core-2.1.14/lib/seahorse/version.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/batch.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/builder.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/builder_sources.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/collection.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/definition.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/base_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/data_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/has_many_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/has_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/resource_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/documenter/waiter_operation_documenter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/operation_methods.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/operations.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/options.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/request.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/request_params.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/resource.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/ec2.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/ec2/instance.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/iam.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/bucket.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/client.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/decrypt_handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/default_cipher_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/default_key_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/encrypt_handler.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/errors.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/io_decrypter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/io_encrypter.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/key_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/kms_cipher_provider.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/materials.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/encryption/utils.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/file_part.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/file_uploader.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/multipart_file_uploader.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/multipart_upload.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/multipart_upload_error.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/object.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/object_copier.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/object_multipart_copier.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/object_summary.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/s3/presigned_post.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/sns.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/sns/message_verifier.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/sqs.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/services/sqs/queue_poller.rb +logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-resources-2.1.14/lib/aws-sdk-resources/source.rb logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/LICENSE.txt logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/README.md logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/bin/aws-rb @@ -1115,537 +1120,537 @@ logstash/vendor/bundle/jruby/1.9/gems/aw logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/lib/aws/support/errors.rb logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/lib/aws/version.rb logstash/vendor/bundle/jruby/1.9/gems/aws-sdk-v1-1.64.0/rails/init.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/CHANGELOG.rdoc -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/Gemfile -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/Gemfile.lock -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/LICENSE.txt -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/README.rdoc -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/Rakefile -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/backports.gemspec -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/default.mspec -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/bytes.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/chars.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/each_byte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/each_char.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/each_line.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/getbyte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/lines.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/argf/readbyte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/collect.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/combination.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/cycle.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/delete_if.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/each_index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/find_index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/flatten.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/map.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/permutation.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/pop.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/product.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/reject.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/reverse_each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/rindex.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/select.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/shift.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/array/shuffle.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/binding.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/binding/eval.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/dir.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/dir/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/dir/foreach.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/count.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/cycle.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/detect.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/drop.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/drop_while.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/each_cons.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/each_slice.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/each_with_index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/entries.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/find.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/find_all.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/find_index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/first.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/group_by.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/inject.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/max_by.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/min_by.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/minmax.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/minmax_by.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/none.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/one.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/partition.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/reduce.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/reject.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/reverse_each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/select.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/sort_by.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/take.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/take_while.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerable/to_a.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerator.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerator/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerator/next.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerator/rewind.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/enumerator/with_index.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/delete_if.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/each_key.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/each_pair.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/each_value.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/reject.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/env/select.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/fixnum.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/fixnum/div.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/fixnum/fdiv.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/float.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/float/fdiv.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/gc.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/gc/stress.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/constructor.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/delete_if.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/each_key.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/each_pair.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/each_value.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/eql.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/hash.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/reject.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/hash/select.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/downto.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/even.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/odd.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/ord.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/pred.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/times.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/integer/upto.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/bytes.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/chars.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/each_byte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/each_char.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/each_line.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/foreach.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/getbyte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/lines.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/io/readbyte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/kernel.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/kernel/__method__.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/kernel/instance_exec.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/kernel/tap.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/method.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/method/name.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/module.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/module/class_exec.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/module/module_exec.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/numeric.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/numeric/step.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/object_space.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/object_space/each_object.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/process.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/process/exec.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/range.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/range/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/range/step.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/regexp.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/regexp/union.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/stdlib.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/stdlib/tmpdir.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/stop_iteration.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/bytes.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/bytesize.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/each_byte.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/each_char.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/each_line.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/end_with.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/lines.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/partition.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/rpartition.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/start_with.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/string/upto.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/struct.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/struct/each.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/struct/each_pair.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/symbol.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.7/symbol/to_proc.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.8.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.8.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.9.1.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.9.1/array.rb -logstash/vendor/bundle/jruby/1.9/gems/backports-3.6.5/lib/backports/1.9.1/array/sample.rb *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Oct 6 02:24: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 7D1F49B9BD4; Tue, 6 Oct 2015 02:24:47 +0000 (UTC) (envelope-from junovitch@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 6D2BD8EB; Tue, 6 Oct 2015 02:24:47 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t962Ol68034192; Tue, 6 Oct 2015 02:24:47 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t962OlxZ034191; Tue, 6 Oct 2015 02:24:47 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510060224.t962OlxZ034191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 6 Oct 2015 02:24:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398677 - 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: Tue, 06 Oct 2015 02:24:47 -0000 Author: junovitch Date: Tue Oct 6 02:24:46 2015 New Revision: 398677 URL: https://svnweb.freebsd.org/changeset/ports/398677 Log: Document recent mbed TLS/PolarSSL security releases PR: 203544 Security: 5d280761-6bcf-11e5-9909-002590263bf5 Security: 953aaa57-6bce-11e5-9909-002590263bf5 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Oct 6 00:52:56 2015 (r398676) +++ head/security/vuxml/vuln.xml Tue Oct 6 02:24:46 2015 (r398677) @@ -58,6 +58,80 @@ Notes: --> + + mbedTLS/PolarSSL -- multiple vulnerabilities + + + polarssl + 1.2.01.2.16 + + + polarssl13 + 1.3.01.3.13 + + + mbedtls + 2.1.1 + + + + +

ARM Limited reports:

+
+

Florian Weimar from Red Hat published on Lenstra's RSA-CRT attach + for PKCS#1 v1.5 signatures. These releases include countermeasures + against that attack.

+

Fabian Foerg of Gotham Digital Science found a possible client-side + NULL pointer dereference, using the AFL Fuzzer. This dereference can + only occur when misusing the API, although a fix has still been + implemented.

+
+ + + + https://tls.mbed.org/tech-updates/releases/mbedtls-2.1.1-and-1.3.13-and-polarssl-1.2.16-released + + + 2015-09-18 + 2015-10-06 + + + + + mbedTLS/PolarSSL -- multiple vulnerabilities + + + polarssl + 1.2.01.2.15 + + + polarssl13 + 1.3.01.3.12 + + + + +

ARM Limited reports:

+
+

In order to strengthen the minimum requirements for connections and + to protect against the Logjam attack, the minimum size of + Diffie-Hellman parameters accepted by the client has been increased + to 1024 bits.

+

In addition the default size for the Diffie-Hellman parameters on + the server are increased to 2048 bits. This can be changed with + ssl_set_dh_params() in case this is necessary.

+
+ +
+ + https://tls.mbed.org/tech-updates/releases/polarssl-1.2.15-and-mbedtls-1.3.12-released + + + 2015-08-11 + 2015-10-06 + +
+ gdk-pixbuf2 -- head overflow and DoS From owner-svn-ports-head@freebsd.org Tue Oct 6 02:54: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 BAD6A9C2138; Tue, 6 Oct 2015 02:54:50 +0000 (UTC) (envelope-from junovitch@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 A7C957B5; Tue, 6 Oct 2015 02:54:50 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t962sorB043880; Tue, 6 Oct 2015 02:54:50 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t962soSd043879; Tue, 6 Oct 2015 02:54:50 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510060254.t962soSd043879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 6 Oct 2015 02:54:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398678 - 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: Tue, 06 Oct 2015 02:54:50 -0000 Author: junovitch Date: Tue Oct 6 02:54:49 2015 New Revision: 398678 URL: https://svnweb.freebsd.org/changeset/ports/398678 Log: Document OpenSMTPD vulnerabilities (5.7.3) Revise pkg name, add PORTEPOCH, add more detail to earlier entry (5.7.2) Security: 42852f72-6bd3-11e5-9909-002590263bf5 Security: ee7bdf7f-11bb-4eea-b054-c692ab848c20 Security: CVE-2015-7687 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Oct 6 02:24:46 2015 (r398677) +++ head/security/vuxml/vuln.xml Tue Oct 6 02:54:49 2015 (r398678) @@ -58,6 +58,37 @@ Notes: --> + + OpenSMTPD -- multiple vulnerabilities + + + opensmtpd + 5.7.3,1 + + + + +

OpenSMTPD developers report:

+
+

fix an mda buffer truncation bug which allows a user to create + forward files that pass session checks but fail delivery later down + the chain, within the user mda

+

fix remote buffer overflow in unprivileged pony process

+

reworked offline enqueue to better protect against hardlink + attacks

+
+ +
+ + http://www.openwall.com/lists/oss-security/2015/10/04/2 + https://www.opensmtpd.org/announces/release-5.7.3.txt + + + 2015-10-04 + 2015-10-06 + +
+ mbedTLS/PolarSSL -- multiple vulnerabilities @@ -254,16 +285,33 @@ Notes: OpenSMTPD -- multiple vulnerabilities - smtpd - 5.7.2 + opensmtpd + 5.7.2,1

OpenSMTPD developers report:

-

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

+

an oversight in the portable version of fgetln() that allows + attackers to read and write out-of-bounds memory

+

multiple denial-of-service vulnerabilities that allow local users + to kill or hang OpenSMTPD

+

a stack-based buffer overflow that allows local users to crash + OpenSMTPD, or execute arbitrary code as the non-chrooted _smtpd + user

+

a hardlink attack (or race-conditioned symlink attack) that allows + local users to unset the chflags() of arbitrary files

+

a hardlink attack that allows local users to read the first line of + arbitrary files (for example, root's hash from /etc/master.passwd) +

+

a denial-of-service vulnerability that allows remote attackers to + fill OpenSMTPD's queue or mailbox hard-disk partition

+

an out-of-bounds memory read that allows remote attackers to crash + OpenSMTPD, or leak information and defeat the ASLR protection

+

a use-after-free vulnerability that allows remote attackers to + crash OpenSMTPD, or execute arbitrary code as the non-chrooted + _smtpd user

@@ -274,6 +322,7 @@ Notes: 2015-10-02 2015-10-04 + 2015-10-06
From owner-svn-ports-head@freebsd.org Tue Oct 6 03:20:24 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 3F0AD9B6D75; Tue, 6 Oct 2015 03:20:24 +0000 (UTC) (envelope-from junovitch@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 2F2B41A89; Tue, 6 Oct 2015 03:20:24 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t963KO2Q051260; Tue, 6 Oct 2015 03:20:24 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t963KNpQ051258; Tue, 6 Oct 2015 03:20:23 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510060320.t963KNpQ051258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 6 Oct 2015 03:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398679 - head/mail/opensmtpd 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: Tue, 06 Oct 2015 03:20:24 -0000 Author: junovitch Date: Tue Oct 6 03:20:22 2015 New Revision: 398679 URL: https://svnweb.freebsd.org/changeset/ports/398679 Log: mail/opensmtpd: update 5.7.1 -> 5.7.3 Changes: https://www.opensmtpd.org/announces/release-5.7.2.txt Changes: https://www.opensmtpd.org/announces/release-5.7.3.txt Approved by: ashish (maintainer, implicit from AFK notice) Security: 42852f72-6bd3-11e5-9909-002590263bf5 Security: ee7bdf7f-11bb-4eea-b054-c692ab848c20 Security: CVE-2015-7687 MFH: 2015Q4 Modified: head/mail/opensmtpd/Makefile head/mail/opensmtpd/distinfo Modified: head/mail/opensmtpd/Makefile ============================================================================== --- head/mail/opensmtpd/Makefile Tue Oct 6 02:54:49 2015 (r398678) +++ head/mail/opensmtpd/Makefile Tue Oct 6 03:20:22 2015 (r398679) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opensmtpd -PORTVERSION= 5.7.1 -PORTREVISION= 2 +PORTVERSION= 5.7.3 PORTEPOCH= 1 CATEGORIES= mail MASTER_SITES= http://www.opensmtpd.org/archives/ \ Modified: head/mail/opensmtpd/distinfo ============================================================================== --- head/mail/opensmtpd/distinfo Tue Oct 6 02:54:49 2015 (r398678) +++ head/mail/opensmtpd/distinfo Tue Oct 6 03:20:22 2015 (r398679) @@ -1,2 +1,2 @@ -SHA256 (opensmtpd-5.7.1p1.tar.gz) = 67e9dd9682ca8c181e84e66c76245a4a8f6205834f915a2c021cdfeb22049e3a -SIZE (opensmtpd-5.7.1p1.tar.gz) = 708295 +SHA256 (opensmtpd-5.7.3p1.tar.gz) = 848a3c72dd22b216bb924b69dc356fc297e8b3671ec30856978950208cba74dd +SIZE (opensmtpd-5.7.3p1.tar.gz) = 709178 From owner-svn-ports-head@freebsd.org Tue Oct 6 03:20:29 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 4A7DD9B6DC7; Tue, 6 Oct 2015 03:20:29 +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 307A31AC9; Tue, 6 Oct 2015 03:20:29 +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 t963KTVb053698; Tue, 6 Oct 2015 03:20:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t963KQKJ051893; Tue, 6 Oct 2015 03:20:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510060320.t963KQKJ051893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Oct 2015 03:20:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398680 - in head/emulators: ppsspp ppsspp-devel ppsspp-devel/files ppsspp/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: Tue, 06 Oct 2015 03:20:29 -0000 Author: jbeich Date: Tue Oct 6 03:20:26 2015 New Revision: 398680 URL: https://svnweb.freebsd.org/changeset/ports/398680 Log: emulators/ppsspp: update to 1.1.0 - Integrate r397030 and r397702 into master port - Switch slave port back to use patches from master Changes: http://ppsspp.org/#news Added: head/emulators/ppsspp/files/patch-Core_FileLoaders_HTTPFileLoader.cpp (contents, props changed) - copied, changed from r398676, head/emulators/ppsspp-devel/files/patch-Core_FileLoaders_HTTPFileLoader.cpp head/emulators/ppsspp/files/patch-ext_native_image_png__load.cpp (contents, props changed) - copied, changed from r398676, head/emulators/ppsspp-devel/files/patch-ext_native_image_png__load.cpp Deleted: head/emulators/ppsspp-devel/files/ head/emulators/ppsspp/files/patch-CVE-2015-2331 head/emulators/ppsspp/files/patch-Common_CPUDetect.cpp head/emulators/ppsspp/files/patch-Common_FileUtil.cpp head/emulators/ppsspp/files/patch-Common_MemArena.cpp head/emulators/ppsspp/files/patch-Common_StdMutex.h head/emulators/ppsspp/files/patch-Common_Swap.h head/emulators/ppsspp/files/patch-Core_FileSystems_tlzrc.cpp head/emulators/ppsspp/files/patch-Core_HLE_ReplaceTables.cpp head/emulators/ppsspp/files/patch-Core_HLE_sceRtc.cpp head/emulators/ppsspp/files/patch-Core_Loaders.cpp head/emulators/ppsspp/files/patch-Core_MIPS_JitCommon_JitCommon.cpp head/emulators/ppsspp/files/patch-Core_MIPS_fake_FakeJit.cpp head/emulators/ppsspp/files/patch-Core_MemMap.cpp head/emulators/ppsspp/files/patch-Core_Reporting.cpp head/emulators/ppsspp/files/patch-GPU_GLES_TextureScaler.cpp head/emulators/ppsspp/files/patch-Qt_PPSSPP.pro head/emulators/ppsspp/files/patch-Qt_Platform_linux.pri head/emulators/ppsspp/files/patch-Qt_Settings.pri head/emulators/ppsspp/files/patch-UI_CwCheatScreen.cpp head/emulators/ppsspp/files/patch-UI_DevScreens.cpp head/emulators/ppsspp/files/patch-UI_NativeApp.cpp head/emulators/ppsspp/files/patch-git-version.cmake head/emulators/ppsspp/files/patch-native_base_PCMain.cpp head/emulators/ppsspp/files/patch-native_base_basictypes.h head/emulators/ppsspp/files/patch-native_ext_cityhash_city.cpp head/emulators/ppsspp/files/patch-native_ext_stb__vorbis_stb__vorbis.c head/emulators/ppsspp/files/patch-native_file_file__util.cpp head/emulators/ppsspp/files/patch-native_image_png__load.cpp head/emulators/ppsspp/files/patch-native_net_http__client.h head/emulators/ppsspp/files/patch-native_net_http__headers.cpp head/emulators/ppsspp/files/patch-native_net_http__server.cpp head/emulators/ppsspp/files/patch-native_net_resolve.cpp Modified: head/emulators/ppsspp-devel/Makefile (contents, props changed) head/emulators/ppsspp/Makefile (contents, props changed) head/emulators/ppsspp/distinfo (contents, props changed) head/emulators/ppsspp/files/patch-CMakeLists.txt (contents, props changed) head/emulators/ppsspp/files/patch-Common_MemoryUtil.cpp (contents, props changed) head/emulators/ppsspp/files/patch-ext_xbrz_xbrz.cpp (contents, props changed) Modified: head/emulators/ppsspp-devel/Makefile ============================================================================== --- head/emulators/ppsspp-devel/Makefile Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp-devel/Makefile Tue Oct 6 03:20:26 2015 (r398680) @@ -4,34 +4,12 @@ DISTVERSION= 1.0.1-2768 DISTVERSIONSUFFIX= -gd8b43dd PORTREVISION= 0 PKGNAMESUFFIX= -devel -# XXX Get from Debian once #697821 lands -MASTER_SITES= https://bazaar.launchpad.net/~sergio-br2/${PORTNAME}/debian-sdl/download/1/${PORTNAME}.1-20140802045408-dd26dik367ztj5xg-8/:manpage -DISTFILES= ${PORTNAME}.1:manpage -EXTRACT_ONLY= ${DISTFILES:N*\:manpage:C/:.*//} GH_TAGNAME= e22d7a5:lang a0b878f:ext_armips CONFLICTS_INSTALL?= ${PORTNAME}-[0-9]* -LIB_DEPENDS= libzip.so:${PORTSDIR}/archivers/libzip \ - libsnappy.so:${PORTSDIR}/archivers/snappy -USE_GL= glew - -EXCLUDE= glew snappy libzip zlib -EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} - MASTERDIR= ${.CURDIR}/../ppsspp -PATCHDIR= ${.CURDIR}/files DISTINFO_FILE= ${.CURDIR}/distinfo -post-patch: slave-post-patch -slave-post-patch: - @${REINPLACE_CMD} -e 's,/usr,${LOCALBASE},' \ - ${WRKSRC}/Qt/*.pr* - -post-install: slave-post-install -slave-post-install: - ${INSTALL_MAN} ${_DISTDIR}/${PORTNAME}.1 \ - ${STAGEDIR}${MAN1PREFIX}/man/man1 - .include "${MASTERDIR}/Makefile" Modified: head/emulators/ppsspp/Makefile ============================================================================== --- head/emulators/ppsspp/Makefile Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp/Makefile Tue Oct 6 03:20:26 2015 (r398680) @@ -2,37 +2,35 @@ PORTNAME= ppsspp DISTVERSIONPREFIX= v -DISTVERSION?= 1.0.1 -PORTREVISION?= 5 +DISTVERSION?= 1.1.0 +PORTREVISION?= 0 CATEGORIES= emulators - -.ifndef PKGNAMESUFFIX -PATCH_SITES= https://projects.archlinux.org/svntogit/community.git/plain/trunk/ -PATCHFILES= ${PORTNAME}-ffmpeg.patch?id=f2b9251:-p1 -.endif +# XXX Get from Debian once #697821 lands +MASTER_SITES= https://bazaar.launchpad.net/~sergio-br2/${PORTNAME}/debian-sdl/download/1/${PORTNAME}.1-20140802045408-dd26dik367ztj5xg-8/:manpage +DISTFILES= ${PORTNAME}.1:manpage +EXTRACT_ONLY= ${DISTFILES:N*\:manpage:C/:.*//} MAINTAINER= jbeich@FreeBSD.org COMMENT= PSP emulator in C++ with dynarec JIT for x86, ARM, MIPS LICENSE= GPLv2 # or any later version -LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +LIB_DEPENDS= libzip.so:${PORTSDIR}/archivers/libzip \ + libsnappy.so:${PORTSDIR}/archivers/snappy \ + libavcodec.so:${PORTSDIR}/multimedia/ffmpeg RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils USE_GITHUB= yes GH_ACCOUNT= hrydgard:DEFAULT,lang Kingcom:ext_armips GH_PROJECT= ${PORTNAME}-lang:lang armips:ext_armips -GH_TAGNAME?= 52c757e:lang 52ce9c1:native a0b878f:ext_armips - -.ifndef PKGNAMESUFFIX -GH_ACCOUNT+= hrydgard:native -GH_PROJECT+= native:native -.endif +GH_TAGNAME?= 38e1efe:lang a0b878f:ext_armips CONFLICTS_INSTALL?= ${PORTNAME}-devel-[0-9]* USES= compiler:c++11-lib localbase pkgconfig -USE_GL+= glu +EXCLUDE= glew snappy libzip zlib +EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} +USE_GL= glew glu USE_SDL= sdl2 # joystick CMAKE_ARGS= -DUSE_SYSTEM_FFMPEG=on QMAKE_SOURCE_PATH= ${WRKSRC}/Qt/PPSSPPQt.pro @@ -70,6 +68,8 @@ post-extract: post-patch: @${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,' \ ${WRKSRC}/UI/NativeApp.cpp + @${REINPLACE_CMD} -e 's,/usr,${LOCALBASE},' \ + ${WRKSRC}/Qt/*.pr* @${REINPLACE_CMD} \ -e 's/"unknown"/"${GH_TAGNAME}"/' \ -e 's/^\(VERSION =\).*/\1 ${GH_TAGNAME}/' \ @@ -91,10 +91,8 @@ do-install-SDL-off: ${STAGEDIR}${PREFIX}/bin post-install: -.ifndef PKGNAMESUFFIX - ${INSTALL_MAN} ${WRKSRC}/debian/${PORTNAME}.1 \ + ${INSTALL_MAN} ${_DISTDIR}/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 -.endif (cd ${WRKSRC}/assets/unix-icons && ${COPYTREE_SHARE} \ "hicolor" ${STAGEDIR}${PREFIX}/share/icons) ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps Modified: head/emulators/ppsspp/distinfo ============================================================================== --- head/emulators/ppsspp/distinfo Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp/distinfo Tue Oct 6 03:20:26 2015 (r398680) @@ -1,10 +1,8 @@ -SHA256 (hrydgard-ppsspp-v1.0.1_GH0.tar.gz) = e2d656671301a13e13f94c0a3021eaacacc9428fa9df60307b16ed5b4498812c -SIZE (hrydgard-ppsspp-v1.0.1_GH0.tar.gz) = 14199883 -SHA256 (hrydgard-ppsspp-lang-52c757e_GH0.tar.gz) = 9f9c97e1d506645f68dfb7fbd6c380be0bb66d23f56a33251bb50ac95b498e8a -SIZE (hrydgard-ppsspp-lang-52c757e_GH0.tar.gz) = 193165 -SHA256 (hrydgard-native-52ce9c1_GH0.tar.gz) = 2d3fbcc0685046326f21158892c235a1dcd4770d1cfedd29da0e06daa9c2ce5e -SIZE (hrydgard-native-52ce9c1_GH0.tar.gz) = 1393991 +SHA256 (ppsspp.1) = 8e335555393a6400c97d5f6d23798af801f88b909181bb5af676dfdcb4f8f8be +SIZE (ppsspp.1) = 1507 +SHA256 (hrydgard-ppsspp-v1.1.0_GH0.tar.gz) = b65d95e66d37bdcb2e9ab4d176014f2088951f4be7e0d13fc1de6786ab4ef736 +SIZE (hrydgard-ppsspp-v1.1.0_GH0.tar.gz) = 14767366 +SHA256 (hrydgard-ppsspp-lang-38e1efe_GH0.tar.gz) = 5585ff0b46d7ff7633b23d0069a20d27107003454c77f06762f4e6701725cd1c +SIZE (hrydgard-ppsspp-lang-38e1efe_GH0.tar.gz) = 214388 SHA256 (Kingcom-armips-a0b878f_GH0.tar.gz) = 64623bbddda609f9692904e6b6823b1d2d4dd0149349f2be9edcc600bf12bafa SIZE (Kingcom-armips-a0b878f_GH0.tar.gz) = 136535 -SHA256 (ppsspp-ffmpeg.patch?id=f2b9251) = 4d60b99f9e6fe1bb81b2b1b648845f9e76289ba824fcb5e53f2117d0319e086d -SIZE (ppsspp-ffmpeg.patch?id=f2b9251) = 6304 Modified: head/emulators/ppsspp/files/patch-CMakeLists.txt ============================================================================== --- head/emulators/ppsspp/files/patch-CMakeLists.txt Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp/files/patch-CMakeLists.txt Tue Oct 6 03:20:26 2015 (r398680) @@ -1,25 +1,5 @@ --- CMakeLists.txt.orig 2015-02-26 20:05:06 UTC +++ CMakeLists.txt -@@ -21,7 +21,9 @@ if(CMAKE_SYSTEM_PROCESSOR) - if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^armv7") - set(ARMV7 ON) - endif() -- elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^x86" OR ${CMAKE_SYSTEM_PROCESSOR} MATCHES "i.86") -+ elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^x86" OR -+ ${CMAKE_SYSTEM_PROCESSOR} MATCHES "^amd64" OR -+ ${CMAKE_SYSTEM_PROCESSOR} MATCHES "i.86") - set(X86 ON) - elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^mips") - set(MIPS ON) -@@ -250,7 +252,7 @@ if(NOT MSVC) - if (NOT CMAKE_C_COMPILER_ID STREQUAL "Intel" AND NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") - add_definitions(-Wno-psabi) - endif() -- add_definitions(-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED -D__BSD_VISIBLE=1) -+ add_definitions(-D_XOPEN_SOURCE=700 -D_XOPEN_SOURCE_EXTENDED -D__BSD_VISIBLE=1) - add_definitions(-D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64) - endif() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") @@ -525,9 +527,10 @@ target_link_libraries(libzip ${ZLIB_LIBR include_directories(native/ext/libzip) set(LIBZIP_LIBRARY libzip) Modified: head/emulators/ppsspp/files/patch-Common_MemoryUtil.cpp ============================================================================== --- head/emulators/ppsspp/files/patch-Common_MemoryUtil.cpp Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp/files/patch-Common_MemoryUtil.cpp Tue Oct 6 03:20:26 2015 (r398680) @@ -36,12 +36,3 @@ } else if (exec && (uintptr_t) map_hint > 0xFFFFFFFFULL) { -@@ -160,7 +182,7 @@ void* AllocateExecutableMemory(size_t si - // printf("Mapped executable memory at %p (size %ld)\n", ptr, - // (unsigned long)size); - --#if defined(__FreeBSD__) -+#if !defined(_WIN32) && !defined(__SYMBIAN32__) - if (ptr == MAP_FAILED) - { - ptr = NULL; Copied and modified: head/emulators/ppsspp/files/patch-Core_FileLoaders_HTTPFileLoader.cpp (from r398676, head/emulators/ppsspp-devel/files/patch-Core_FileLoaders_HTTPFileLoader.cpp) ============================================================================== Copied and modified: head/emulators/ppsspp/files/patch-ext_native_image_png__load.cpp (from r398676, head/emulators/ppsspp-devel/files/patch-ext_native_image_png__load.cpp) ============================================================================== Modified: head/emulators/ppsspp/files/patch-ext_xbrz_xbrz.cpp ============================================================================== --- head/emulators/ppsspp/files/patch-ext_xbrz_xbrz.cpp Tue Oct 6 03:20:22 2015 (r398679) +++ head/emulators/ppsspp/files/patch-ext_xbrz_xbrz.cpp Tue Oct 6 03:20:26 2015 (r398680) @@ -1,8 +1,8 @@ ---- ext/xbrz/xbrz.cpp.orig 2015-02-26 20:05:06 UTC +--- ext/xbrz/xbrz.cpp.orig 2015-05-28 17:02:46 UTC +++ ext/xbrz/xbrz.cpp -@@ -616,23 +616,21 @@ void scalePixel(const Kernel_3x3& ker, - auto eq = [&](uint32_t col1, uint32_t col2) { return ColorDistance::dist(col1, col2, cfg.luminanceWeight_) < cfg.equalColorTolerance_; }; - auto dist = [&](uint32_t col1, uint32_t col2) { return ColorDistance::dist(col1, col2, cfg.luminanceWeight_); }; +@@ -648,23 +648,21 @@ void scalePixel(const Kernel_3x3& ker, + auto eq = [&](uint32_t pix1, uint32_t pix2) { return ColorDistance::dist(pix1, pix2, cfg.luminanceWeight_) < cfg.equalColorTolerance_; }; + auto dist = [&](uint32_t pix1, uint32_t pix2) { return ColorDistance::dist(pix1, pix2, cfg.luminanceWeight_); }; - const bool doLineBlend = [&]() -> bool - { @@ -23,12 +23,12 @@ + else if (getBottomL(blend) != BLEND_NONE && !eq(e, c)) + doLineBlend = false; //no full blending for L-shapes; blend corner only (handles "mario mushroom eyes") -- if (eq(g, h) && eq(h , i) && eq(i, f) && eq(f, c) && !eq(e, i)) +- if (!eq(e, i) && eq(g, h) && eq(h , i) && eq(i, f) && eq(f, c)) - return false; - - return true; - }(); -+ else if (eq(g, h) && eq(h, i) && eq(i, f) && eq(f, c) && !eq(e, i)) ++ else if (!eq(e, i) && eq(g, h) && eq(h, i) && eq(i, f) && eq(f, c)) + doLineBlend = false; + else + doLineBlend = true; From owner-svn-ports-head@freebsd.org Tue Oct 6 04:42:29 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 E4F529B9396; Tue, 6 Oct 2015 04:42:29 +0000 (UTC) (envelope-from linimon@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 D5DD481E; Tue, 6 Oct 2015 04:42:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t964gTWX081125; Tue, 6 Oct 2015 04:42:29 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t964gTKV081124; Tue, 6 Oct 2015 04:42:29 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201510060442.t964gTKV081124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 6 Oct 2015 04:42:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398681 - head/databases/tarantool 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: Tue, 06 Oct 2015 04:42:30 -0000 Author: linimon Date: Tue Oct 6 04:42:28 2015 New Revision: 398681 URL: https://svnweb.freebsd.org/changeset/ports/398681 Log: Mark as ignore on sparc64: not yet ported to this architecture. Hat: sparc64 blanket Modified: head/databases/tarantool/Makefile Modified: head/databases/tarantool/Makefile ============================================================================== --- head/databases/tarantool/Makefile Tue Oct 6 03:20:26 2015 (r398680) +++ head/databases/tarantool/Makefile Tue Oct 6 04:42:28 2015 (r398681) @@ -51,6 +51,9 @@ DEBUG_DESC= Enable debug EXTRA_PATCHES= ${FILESDIR}/extra-patch-src_trivia_config.h.cmake .endif +NOT_FOR_ARCHS= sparc64 +NOT_FOR_ARCHS_REASON= not yet ported to this architecture + .include .if ${PORT_OPTIONS:MDEBUG} From owner-svn-ports-head@freebsd.org Tue Oct 6 05:13:17 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 A1DF09B6A2E; Tue, 6 Oct 2015 05:13:17 +0000 (UTC) (envelope-from hrs@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 90C447A1; Tue, 6 Oct 2015 05:13:17 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t965DHsf092263; Tue, 6 Oct 2015 05:13:17 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t965Cvaj092184; Tue, 6 Oct 2015 05:12:57 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201510060512.t965Cvaj092184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Tue, 6 Oct 2015 05:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398682 - in head/x11-wm: libwraster libwraster/files windowmaker windowmaker/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: Tue, 06 Oct 2015 05:13:17 -0000 Author: hrs Date: Tue Oct 6 05:12:56 2015 New Revision: 398682 URL: https://svnweb.freebsd.org/changeset/ports/398682 Log: Update to 0.95.7. Changes include: - Window snapping (maximize a window to a side or corder of the screen) by dragging is now supported. - It is now possible to customize behavior when a maximized window is dragged. - A knob is added to globally ignore decoration hints from GNOME appications. - A ICCCM protocol for window manager replacement has been supported. Added: head/x11-wm/libwraster/files/patch-configure (contents, props changed) Modified: head/x11-wm/libwraster/Makefile head/x11-wm/libwraster/distinfo head/x11-wm/libwraster/files/patch-wrlib__wraster.h head/x11-wm/windowmaker/Makefile head/x11-wm/windowmaker/distinfo head/x11-wm/windowmaker/files/patch-Makefile.in head/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in head/x11-wm/windowmaker/files/patch-WINGs__Extras__Makefile.in head/x11-wm/windowmaker/files/patch-WINGs__Makefile.in head/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h head/x11-wm/windowmaker/files/patch-WINGs__wapplication.c head/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in head/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c head/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-Makefile.in head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-WindowMaker.in head/x11-wm/windowmaker/files/patch-WindowMaker-menu head/x11-wm/windowmaker/files/patch-WindowMaker-menu.bg head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ca head/x11-wm/windowmaker/files/patch-WindowMaker-menu.cz head/x11-wm/windowmaker/files/patch-WindowMaker-menu.da head/x11-wm/windowmaker/files/patch-WindowMaker-menu.de head/x11-wm/windowmaker/files/patch-WindowMaker-menu.el head/x11-wm/windowmaker/files/patch-WindowMaker-menu.es head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fi head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fr head/x11-wm/windowmaker/files/patch-WindowMaker-menu.gl head/x11-wm/windowmaker/files/patch-WindowMaker-menu.he head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hr head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hu head/x11-wm/windowmaker/files/patch-WindowMaker-menu.it head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ja head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ko head/x11-wm/windowmaker/files/patch-WindowMaker-menu.nl head/x11-wm/windowmaker/files/patch-WindowMaker-menu.no head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pl head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pt head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ro head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ru head/x11-wm/windowmaker/files/patch-WindowMaker-menu.se head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sk head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sl head/x11-wm/windowmaker/files/patch-WindowMaker-menu.tr head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_CN head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_TW head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.bg head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.da head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.de head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.es head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fi head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fr head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.hr head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.it head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ja head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ko head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.pl head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ro head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.sk head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_CN head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_TW head/x11-wm/windowmaker/files/patch-configure head/x11-wm/windowmaker/files/patch-doc__Makefile.in head/x11-wm/windowmaker/files/patch-src__Makefile.in head/x11-wm/windowmaker/files/patch-src__startup.c head/x11-wm/windowmaker/files/patch-util__Makefile.in head/x11-wm/windowmaker/files/patch-util__wmiv.c head/x11-wm/windowmaker/pkg-plist Modified: head/x11-wm/libwraster/Makefile ============================================================================== --- head/x11-wm/libwraster/Makefile Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/libwraster/Makefile Tue Oct 6 05:12:56 2015 (r398682) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libwraster -PORTVERSION= 0.95.6 -PORTREVISION= 4 +PORTVERSION= 0.95.7 CATEGORIES= x11-wm windowmaker MASTER_SITES= http://windowmaker.org/pub/source/release/ DISTNAME= WindowMaker-${PORTVERSION} @@ -19,19 +18,21 @@ LIB_DEPENDS= libgif.so:${PORTSDIR}/graph libwebp.so:${PORTSDIR}/graphics/webp \ libMagickWand-6.so:${PORTSDIR}/graphics/ImageMagick -USES= libtool pathfix pkgconfig +USES= jpeg libtool pathfix pkgconfig USE_LDCONFIG= yes USE_XORG= xft xinerama xmu xpm BUILD_WRKSRC= ${WRKSRC}/wrlib INSTALL_WRKSRC= ${WRKSRC}/wrlib GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ - --with-nlsdir=${PREFIX}/share/locale \ + --with-localedir=${PREFIX}/share/locale \ --with-libs-from="-L${LOCALBASE}/lib" \ --with-incs-from="-I${LOCALBASE}/include" \ --with-gnustepdir="${PREFIX}/GNUstep" \ --enable-modelock \ - --enable-xinerama --enable-usermenu \ + --enable-xinerama \ + --enable-usermenu \ + --enable-wmreplace \ --with-x CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/x11-wm/libwraster/distinfo ============================================================================== --- head/x11-wm/libwraster/distinfo Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/libwraster/distinfo Tue Oct 6 05:12:56 2015 (r398682) @@ -1,2 +1,2 @@ -SHA256 (WindowMaker-0.95.6.tar.gz) = 435b0b4a318a3a00e8267f02cdbd826ad547b1f54259d193ce43e9a77ce06dc4 -SIZE (WindowMaker-0.95.6.tar.gz) = 3004856 +SHA256 (WindowMaker-0.95.7.tar.gz) = 842d486c4b212b19d10dbae2c315c6ff20c6e651471eaa45214b3b832d8097a9 +SIZE (WindowMaker-0.95.7.tar.gz) = 3238325 Added: head/x11-wm/libwraster/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/libwraster/files/patch-configure Tue Oct 6 05:12:56 2015 (r398682) @@ -0,0 +1,11 @@ +--- configure.orig 2015-08-11 18:52:18 UTC ++++ configure +@@ -13782,7 +13782,7 @@ case "$host" in #( + *-*-linux*|*-*-cygwin*|*-gnu*) : + WM_OSDEP="linux" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600" ;; #( + *-*-freebsd*|*-k*bsd-gnu*) : +- WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -DFREEBSD" ;; #( ++ WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=700 -DFREEBSD" ;; #( + *-*-netbsd*) : + WM_OSDEP="bsd" ; CPPFLAGS="$CPPFLAGS -DNETBSD" ;; #( + *-*-openbsd*) : Modified: head/x11-wm/libwraster/files/patch-wrlib__wraster.h ============================================================================== --- head/x11-wm/libwraster/files/patch-wrlib__wraster.h Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/libwraster/files/patch-wrlib__wraster.h Tue Oct 6 05:12:56 2015 (r398682) @@ -1,17 +1,20 @@ ---- wrlib/wraster.h.orig 2014-08-30 21:29:09.000000000 +0900 -+++ wrlib/wraster.h 2014-09-15 02:31:40.000000000 +0900 -@@ -61,7 +61,13 @@ +--- wrlib/wraster.h.orig 2015-08-11 18:41:14 UTC ++++ wrlib/wraster.h +@@ -61,10 +61,14 @@ * mechanism and define an internal macro appropriately. Please note that the macro are not considered being * part of the public API. */ --#if __GNUC__ >= 3 +-#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) +#ifndef __has_feature -+#define __has_feature(x) 0 ++#define __has_feature(x) 0 +#endif +#ifndef __has_extension -+#define __has_extension __has_feature ++#define __has_extension __has_feature +#endif -+#if __has_extension(attribute_deprecated_with_message) ++#if __has_extension(attribute_depreated_with_message) #define __wrlib_deprecated(msg) __attribute__ ((deprecated(msg))) +-#elif __GNUC__ >= 3 +-#define __wrlib_deprecated(msg) __attribute__ ((deprecated)) #else #define __wrlib_deprecated(msg) + #endif Modified: head/x11-wm/windowmaker/Makefile ============================================================================== --- head/x11-wm/windowmaker/Makefile Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/Makefile Tue Oct 6 05:12:56 2015 (r398682) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= windowmaker -PORTVERSION= 0.95.6 -PORTREVISION= 4 +PORTVERSION= 0.95.7 CATEGORIES= x11-wm windowmaker MASTER_SITES= http://windowmaker.org/pub/source/release/ DISTNAME= WindowMaker-${PORTVERSION} @@ -22,7 +21,7 @@ LIB_DEPENDS= libgif.so:${PORTSDIR}/graph libwraster.so.5:${PORTSDIR}/x11-wm/libwraster RUN_DEPENDS= ${LOCALBASE}/share/WindowMaker/Themes/LeetWM.themed/style:${PORTSDIR}/graphics/wmicons -USES= libtool shebangfix pathfix perl5 pkgconfig +USES= jpeg libtool shebangfix pathfix perl5 pkgconfig USE_LDCONFIG= yes USE_XORG= xft xinerama xmu xpm SHEBANG_FILES= util/wkdemenu.pl @@ -30,31 +29,34 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_sys_inotify_h=no \ wm_cv_func_secure_getenv=no CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ - --with-nlsdir=${PREFIX}/share/locale \ + --localedir=${PREFIX}/share/locale \ --with-libs-from="-L${LOCALBASE}/lib" \ --with-incs-from="-I${LOCALBASE}/include" \ --with-gnustepdir="${PREFIX}/GNUstep" \ --enable-modelock \ - --enable-xinerama --enable-usermenu \ + --enable-xinerama \ + --enable-usermenu \ + --enable-wmreplace \ --with-x CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog FAQ FAQ.I18N INSTALL \ - INSTALL-WMAKER NEWS README README.definable-cursor TODO -LINGUAS= be bg bs ca cs da de el es et fi fr gl hr hu hy it \ - ja ko ms nl no pl pt ro ru sk sv tr zh_CN zh_TW +PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog FAQ INSTALL \ + INSTALL-WMAKER NEWS README README.definable-cursor \ + README.i18n TODO The-perfect-Window-Maker-patch.txt OPTIONS_DEFINE= DOCS NLS OPTIONS_SUB= yes NLS_USES= gettext -NLS_CONFIGURE_ENV= LINGUAS="${LINGUAS}" +NLS_CONFIGURE_ENV= LINGUAS="*" NLS_CONFIGURE_ENABLE= locale post-install: @${MKDIR} \ ${STAGEDIR}${PREFIX}/GNUstep/Applications/WPrefs.app/xpm \ ${STAGEDIR}${PREFIX}/share/WindowMaker/Sounds + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} Modified: head/x11-wm/windowmaker/distinfo ============================================================================== --- head/x11-wm/windowmaker/distinfo Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/distinfo Tue Oct 6 05:12:56 2015 (r398682) @@ -1,2 +1,2 @@ -SHA256 (WindowMaker-0.95.6.tar.gz) = 435b0b4a318a3a00e8267f02cdbd826ad547b1f54259d193ce43e9a77ce06dc4 -SIZE (WindowMaker-0.95.6.tar.gz) = 3004856 +SHA256 (WindowMaker-0.95.7.tar.gz) = 842d486c4b212b19d10dbae2c315c6ff20c6e651471eaa45214b3b832d8097a9 +SIZE (WindowMaker-0.95.7.tar.gz) = 3238325 Modified: head/x11-wm/windowmaker/files/patch-Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,11 +1,11 @@ ---- Makefile.in.orig +--- Makefile.in.orig 2015-10-06 04:12:09 UTC +++ Makefile.in -@@ -271,7 +271,7 @@ - BUILT_SOURCES = config-paths.h - DISTCLEANFILES = config-paths.h - ACLOCAL_AMFLAGS = -I m4 --SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc test -+SUBDIRS = WINGs src util po WindowMaker wmlib WPrefs.app doc test - EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL \ - INSTALL-WMAKER README.definable-cursor \ - The-perfect-Window-Maker-patch.txt \ +@@ -374,7 +374,7 @@ ACLOCAL_AMFLAGS = -I m4 + + # Improve coverage in 'make distcheck' by checking that translations work + AM_DISTCHECK_CONFIGURE_FLAGS = --enable-silent-rules LINGUAS='*' +-SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc ++SUBDIRS = WINGs src util po WindowMaker wmlib WPrefs.app doc + DIST_SUBDIRS = $(SUBDIRS) test + EXTRA_DIST = TODO BUGS BUGFORM FAQ INSTALL \ + INSTALL-WMAKER README.i18n README.definable-cursor \ Modified: head/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__Examples__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,13 +1,13 @@ ---- WINGs/Examples/Makefile.in.orig 2014-09-05 03:57:46.000000000 +0900 -+++ WINGs/Examples/Makefile.in 2014-09-05 03:59:22.000000000 +0900 -@@ -286,14 +286,14 @@ +--- WINGs/Examples/Makefile.in.orig 2015-10-06 04:12:10 UTC ++++ WINGs/Examples/Makefile.in +@@ -342,14 +342,14 @@ top_srcdir = @top_srcdir@ wprefs_bindir = @wprefs_bindir@ wprefs_datadir = @wprefs_datadir@ AUTOMAKE_OPTIONS = -LDADD = $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \ +LDADD = $(top_builddir)/WINGs/libWINGs.la -lwraster \ $(top_builddir)/WINGs/libWUtil.la \ - @XFTLIBS@ @INTLIBS@ + @XFTLIBS@ @INTLIBS@ @XLIBS@ colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la Modified: head/x11-wm/windowmaker/files/patch-WINGs__Extras__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__Extras__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__Extras__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WINGs/Extras/Makefile.in.orig +--- WINGs/Extras/Makefile.in.orig 2015-10-06 04:12:10 UTC +++ WINGs/Extras/Makefile.in -@@ -86,7 +86,6 @@ +@@ -145,7 +145,6 @@ PROGRAMS = $(noinst_PROGRAMS) test_SOURCES = test.c test_OBJECTS = test.$(OBJEXT) am__DEPENDENCIES_1 = $(top_builddir)/WINGs/libWINGs.la \ @@ -8,7 +8,7 @@ $(top_builddir)/WINGs/libWUtil.la test_DEPENDENCIES = wtableview.o wtabledelegates.o \ $(am__DEPENDENCIES_1) -@@ -288,10 +287,10 @@ +@@ -386,10 +385,10 @@ libExtraWINGs_la_SOURCES = \ wtableview.h \ wtabledelegates.h Modified: head/x11-wm/windowmaker/files/patch-WINGs__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WINGs/Makefile.in.orig 2014-09-05 04:10:28.000000000 +0900 -+++ WINGs/Makefile.in 2014-09-05 04:12:50.000000000 +0900 -@@ -106,8 +106,7 @@ +--- WINGs/Makefile.in.orig 2015-10-06 04:12:10 UTC ++++ WINGs/Makefile.in +@@ -135,8 +135,7 @@ am__uninstall_files_from_dir = { \ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(pkgconfigdir)" LTLIBRARIES = $(lib_LTLIBRARIES) @@ -10,21 +10,21 @@ am_libWINGs_la_OBJECTS = configuration.lo dragcommon.lo \ dragdestination.lo dragsource.lo selection.lo wappresource.lo \ wballoon.lo wbox.lo wbrowser.lo wbutton.lo wcolor.lo \ -@@ -378,8 +377,8 @@ +@@ -438,8 +437,8 @@ libWINGs_la_LDFLAGS = -version-info @WIN libWUtil_la_LDFLAGS = -version-info @WUTIL_VERSION@ - bin_SCRIPTS = get-wings-flags get-wutil-flags + dist_bin_SCRIPTS = get-wings-flags get-wutil-flags lib_LTLIBRARIES = libWUtil.la libWINGs.la -LDADD = libWUtil.la libWINGs.la $(top_builddir)/wrlib/libwraster.la @INTLIBS@ --libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ +-libWINGs_la_LIBADD = libWUtil.la $(top_builddir)/wrlib/libwraster.la @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ @PANGOLIBS@ +LDADD = libWUtil.la libWINGs.la -lwraster @INTLIBS@ -+libWINGs_la_LIBADD = libWUtil.la -lwraster @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ ++libWINGs_la_LIBADD = libWUtil.la -lwraster @XLIBS@ @XFTLIBS@ @FCLIBS@ @LIBM@ @PANGOLIBS@ libWUtil_la_LIBADD = @LIBBSD@ - EXTRA_DIST = BUGS make-rgb Examples Extras Tests get-wings-flags.in get-wutil-flags.in + EXTRA_DIST = BUGS make-rgb Examples Extras Tests -@@ -453,7 +452,8 @@ +@@ -513,7 +512,8 @@ libWUtil_la_SOURCES = \ AM_CFLAGS = - AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\" -DRESOURCE_PATH=\"$(datadir)/WINGs\" \ + AM_CPPFLAGS = -DRESOURCE_PATH=\"$(datadir)/WINGs\" \ - -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \ + -DPREFIX=\"$(prefix)\" \ + -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/src \ Modified: head/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__Tests__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WINGs/Tests/Makefile.in.orig 2014-09-05 03:59:36.000000000 +0900 -+++ WINGs/Tests/Makefile.in 2014-09-05 04:00:47.000000000 +0900 -@@ -80,7 +80,6 @@ +--- WINGs/Tests/Makefile.in.orig 2015-10-06 04:12:10 UTC ++++ WINGs/Tests/Makefile.in +@@ -109,7 +109,6 @@ am_testmywidget_OBJECTS = testmywidget.$ testmywidget_OBJECTS = $(am_testmywidget_OBJECTS) testmywidget_LDADD = $(LDADD) testmywidget_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ @@ -8,7 +8,7 @@ $(top_builddir)/WINGs/libWUtil.la AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -@@ -89,13 +88,11 @@ +@@ -119,13 +118,11 @@ wmfile_SOURCES = wmfile.c wmfile_OBJECTS = wmfile.$(OBJEXT) wmfile_LDADD = $(LDADD) wmfile_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ @@ -22,7 +22,7 @@ $(top_builddir)/WINGs/libWUtil.la wtest_SOURCES = wtest.c wtest_OBJECTS = wtest.$(OBJEXT) -@@ -299,14 +296,14 @@ +@@ -355,14 +352,14 @@ top_srcdir = @top_srcdir@ wprefs_bindir = @wprefs_bindir@ wprefs_datadir = @wprefs_datadir@ AUTOMAKE_OPTIONS = Modified: head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WINGs/WINGs/WINGsP.h.orig 2013-03-06 03:52:04.000000000 +0900 -+++ WINGs/WINGs/WINGsP.h 2013-03-06 03:51:32.000000000 +0900 -@@ -14,7 +14,13 @@ +--- WINGs/WINGs/WINGsP.h.orig 2015-08-11 18:41:14 UTC ++++ WINGs/WINGs/WINGsP.h +@@ -17,7 +17,13 @@ #include Modified: head/x11-wm/windowmaker/files/patch-WINGs__wapplication.c ============================================================================== --- head/x11-wm/windowmaker/files/patch-WINGs__wapplication.c Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WINGs__wapplication.c Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WINGs/wapplication.c.orig 2013-05-03 02:55:29.000000000 +0900 -+++ WINGs/wapplication.c 2013-05-03 02:56:04.000000000 +0900 -@@ -159,7 +159,7 @@ +--- WINGs/wapplication.c.orig 2015-08-11 18:41:14 UTC ++++ WINGs/wapplication.c +@@ -187,7 +187,7 @@ char *WMPathForResourceOfType(const char if (path) goto out; Modified: head/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WPrefs.app__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,9 +1,9 @@ ---- WPrefs.app/Makefile.in.orig 2014-09-05 04:29:28.000000000 +0900 -+++ WPrefs.app/Makefile.in 2014-09-05 04:30:48.000000000 +0900 -@@ -395,13 +395,14 @@ +--- WPrefs.app/Makefile.in.orig 2015-10-06 04:12:10 UTC ++++ WPrefs.app/Makefile.in +@@ -455,13 +455,14 @@ WPrefs_SOURCES = \ # Themes.c AM_CFLAGS = - AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\" -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \ + AM_CPPFLAGS = -DRESOURCE_PATH=\"$(wpdatadir)\" -DWMAKER_RESOURCE_PATH=\"$(pkgdatadir)\" \ - -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ + -DPREFIX=\"$(prefix)\" \ + -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ @@ -15,5 +15,5 @@ - $(top_builddir)/wrlib/libwraster.la \ + -lwraster \ @XLFLAGS@ @XLIBS@ \ + @LIBM@ \ @FCLIBS@ \ - @INTLIBS@ Modified: head/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c ============================================================================== --- head/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WPrefs.app/Menu.c.orig 2013-05-03 02:57:08.000000000 +0900 -+++ WPrefs.app/Menu.c 2013-05-03 02:57:53.000000000 +0900 -@@ -512,19 +512,19 @@ +--- WPrefs.app/Menu.c.orig 2015-08-11 18:41:14 UTC ++++ WPrefs.app/Menu.c +@@ -517,19 +517,19 @@ static void createPanel(_Panel * p) data = putNewItem(panel, pad, DirectoryInfo, _("Themes")); data->param.directory.command = "setstyle"; data->param.directory.directory = Modified: head/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c ============================================================================== --- head/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WPrefs.app/Paths.c.orig 2013-05-03 02:52:46.000000000 +0900 -+++ WPrefs.app/Paths.c 2013-05-03 02:59:08.000000000 +0900 -@@ -78,9 +78,9 @@ +--- WPrefs.app/Paths.c.orig 2015-08-11 18:41:14 UTC ++++ WPrefs.app/Paths.c +@@ -78,9 +78,9 @@ static void showData(_Panel * panel) wwarning(_("bad value in option IconPath. Using default path list")); addPathToList(panel->icoL, -1, "~/pixmaps"); addPathToList(panel->icoL, -1, "~/GNUstep/Library/Icons"); @@ -13,7 +13,7 @@ addPathToList(panel->icoL, -1, "/usr/share/WindowMaker/Icons"); } else { for (i = 0; i < WMGetPropListItemCount(array); i++) { -@@ -95,7 +95,7 @@ +@@ -95,7 +95,7 @@ static void showData(_Panel * panel) wwarning(_("bad value in option PixmapPath. Using default path list")); addPathToList(panel->pixL, -1, "~/pixmaps"); addPathToList(panel->pixL, -1, "~/GNUstep/Library/WindowMaker/Pixmaps"); Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,13 +1,13 @@ ---- WindowMaker/Defaults/Makefile.in.orig 2013-01-10 06:43:07.000000000 +0900 -+++ WindowMaker/Defaults/Makefile.in 2013-05-03 03:47:45.000000000 +0900 -@@ -458,7 +458,9 @@ +--- WindowMaker/Defaults/Makefile.in.orig 2015-10-06 04:12:10 UTC ++++ WindowMaker/Defaults/Makefile.in +@@ -542,7 +542,9 @@ WMWindowAttributes: $(srcdir)/WMWindowAt + chmod 644 WMWindowAttributes WindowMaker: $(srcdir)/WindowMaker.in - -rm -f WindowMaker -- sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \ -+ sed -e "s:#pkgdatadir#:$(pkgdatadir):" \ -+ -e "s:#prefix#:$(prefix):" \ +- $(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \ ++ $(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" \ ++ -e "s:#prefix#:$(prefix):" \ + $(srcdir)/WindowMaker.in \ - > WindowMaker + > WindowMaker ; \ chmod 644 WindowMaker Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-WindowMaker.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-WindowMaker.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-WindowMaker.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- WindowMaker/Defaults/WindowMaker.in.orig 2013-01-10 06:42:39.000000000 +0900 -+++ WindowMaker/Defaults/WindowMaker.in 2013-05-03 03:50:44.000000000 +0900 -@@ -12,12 +12,10 @@ +--- WindowMaker/Defaults/WindowMaker.in.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/Defaults/WindowMaker.in +@@ -13,12 +13,10 @@ "~/GNUstep/Library/Icons", "#pkgdatadir#/Icons", "#pkgdatadir#/Pixmaps", @@ -15,7 +15,7 @@ ); PixmapPath = ( "~/GNUstep/Library/WindowMaker/Pixmaps", -@@ -25,9 +23,7 @@ +@@ -26,9 +24,7 @@ "~/GNUstep/Library/WindowMaker/CachedPixmaps", "#pkgdatadir#/Pixmaps", "#pkgdatadir#/Backgrounds", Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu @@ -208,7 +208,7 @@ "Background" END "Save Theme" SHEXEC getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/"%a(Theme name,Enter file name:)" Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.bg ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.bg Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.bg Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.bg.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.bg 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.bg.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.bg @@ -136,7 +136,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ca ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ca Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ca Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.ca.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.ca 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.ca.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.ca @@ -130,7 +130,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.cz ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.cz Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.cz Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.cz.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.cz 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.cz.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.cz @@ -84,7 +84,7 @@ // "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.da ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.da Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.da Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.da.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.da 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.da.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.da @@ -124,7 +124,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.de ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.de Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.de Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.de.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.de 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.de.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.de @@ -64,7 +64,7 @@ "Netscape" EXEC netscape "Ghostview" EXEC ghostview %a(Ghostview) Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.el ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.el Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.el Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.el.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.el 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.el.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.el @@ -139,7 +139,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.es ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.es Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.es Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.es.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.es 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.es.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.es @@ -90,7 +90,7 @@ "OffiX Files" EXEC files "LyX" EXEC lyx Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fi ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fi Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fi Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.fi.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.fi 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.fi.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.fi @@ -129,7 +129,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fr ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fr Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fr Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.fr.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.fr 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.fr.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.fr @@ -175,7 +175,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.gl ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.gl Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.gl Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.gl.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.gl 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.gl.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.gl @@ -64,7 +64,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.he ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.he Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.he Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.he.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.he 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.he.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.he @@ -116,7 +116,7 @@ "LyX" EXEC lyx "פייקסטנ" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hr ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hr Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hr Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.hr.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.hr 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.hr.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.hr @@ -118,7 +118,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hu ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hu Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hu Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.hu.orig 2013-05-03 03:12:26.000000000 +0900 -+++ WindowMaker/menu.hu 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.hu.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.hu @@ -133,7 +133,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.it ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.it Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.it Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.it.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.it 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.it.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.it @@ -65,7 +65,7 @@ "Netscape" EXEC netscape "Ghostview" EXEC ghostview %a(Ghostview) Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ja ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ja Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ja Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.ja.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.ja 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.ja.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.ja @@ -122,7 +122,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ko ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ko Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ko Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.ko.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.ko 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.ko.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.ko @@ -163,7 +163,7 @@ "세션 지움" CLEAR_SESSION "창 관 리" END Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.nl ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.nl Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.nl Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.nl.orig 2014-08-30 21:29:09.000000000 +0900 -+++ WindowMaker/menu.nl 2014-09-05 04:03:19.000000000 +0900 +--- WindowMaker/menu.nl.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.nl @@ -208,7 +208,7 @@ "Achtergrond" END "Thema opslaan" SHEXEC getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/"%a(Themanaam,Voer bestandsnaam in:)" Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.no ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.no Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.no Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.no.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.no 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.no.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.no @@ -119,7 +119,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pl ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pl Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pl Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.pl.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.pl 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.pl.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.pl @@ -134,7 +134,7 @@ "LyX" EXEC lyx "Ghostview" EXEC gv %a(GhostView,Wprowadz nazwe pliku *.ps *.pdf *.no:) Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pt ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pt Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pt Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.pt.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.pt 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.pt.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.pt @@ -126,7 +126,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ro ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ro Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ro Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.ro.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.ro 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.ro.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.ro @@ -129,7 +129,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ru ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ru Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ru Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.ru.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.ru 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.ru.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.ru @@ -77,7 +77,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.se ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.se Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.se Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.se.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.se 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.se.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.se @@ -126,7 +126,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sk ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sk Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sk Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.sk.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.sk 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.sk.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.sk @@ -143,7 +143,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sl ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sl Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sl Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.sl.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.sl 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.sl.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.sl @@ -125,7 +125,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.tr ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.tr Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.tr Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.tr.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.tr 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.tr.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.tr @@ -111,7 +111,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_CN ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_CN Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_CN Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.zh_CN.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.zh_CN 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.zh_CN.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.zh_CN @@ -129,7 +129,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_TW ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_TW Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_TW Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/menu.zh_TW.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/menu.zh_TW 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/menu.zh_TW.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/menu.zh_TW @@ -126,7 +126,7 @@ "LyX" EXEC lyx "Netscape" EXEC netscape Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu @@ -93,7 +93,7 @@ ), ("Save Theme", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.bg ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.bg Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.bg Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.bg.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.bg 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.bg.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.bg @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.da ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.da Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.da Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.da.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.da 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.da.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.da @@ -82,7 +82,7 @@ ( "Acrobat", Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.de ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.de Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.de Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.de.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.de 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.de.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.de @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.es ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.es Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.es Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.es.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.es 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.es.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.es @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fi ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fi Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fi Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.fi.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.fi 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.fi.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.fi @@ -94,7 +94,7 @@ ( "Acrobat", Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fr ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fr Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fr Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.fr.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.fr 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.fr.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.fr @@ -23,7 +23,7 @@ ("LyX", EXEC , "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.hr ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.hr Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.hr Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.hr.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.hr 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.hr.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.hr @@ -31,7 +31,7 @@ ( Acrobat, Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.it ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.it Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.it Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.it.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.it 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.it.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.it @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ja ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ja Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ja Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.ja.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.ja 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.ja.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.ja @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ko ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ko Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ko Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.ko.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.ko 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.ko.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.ko @@ -63,7 +63,7 @@ ), ("작업공간", WORKSPACE_MENU), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.pl ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.pl Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.pl Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.pl.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.pl 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.pl.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.pl @@ -32,7 +32,7 @@ ("LyX", EXEC, "lyx"), ("Ghostview", EXEC, "gv %a(Gv,Wprowadz nazwe pliku *.ps *.pdf *.no:)"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ro ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ro Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ro Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.ro.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.ro 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.ro.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.ro @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.sk ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.sk Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.sk Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.sk.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.sk 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.sk.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.sk @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_CN ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_CN Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_CN Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.zh_CN.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.zh_CN 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.zh_CN.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.zh_CN @@ -23,7 +23,7 @@ ("LyX", EXEC, "lyx"), ("Netscape", EXEC, "netscape"), Modified: head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_TW ============================================================================== --- head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_TW Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_TW Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- WindowMaker/plmenu.zh_TW.orig 2013-05-03 03:12:25.000000000 +0900 -+++ WindowMaker/plmenu.zh_TW 2013-05-03 03:12:17.000000000 +0900 +--- WindowMaker/plmenu.zh_TW.orig 2015-08-11 18:41:14 UTC ++++ WindowMaker/plmenu.zh_TW @@ -92,7 +92,7 @@ ), ("儲存主題", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/%a(主題名稱)"), Modified: head/x11-wm/windowmaker/files/patch-configure ============================================================================== --- head/x11-wm/windowmaker/files/patch-configure Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-configure Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- configure.orig 2014-09-05 04:28:09.000000000 +0900 -+++ configure 2014-09-05 04:29:09.000000000 +0900 -@@ -13046,7 +13046,7 @@ +--- configure.orig 2015-08-11 18:52:18 UTC ++++ configure +@@ -13782,7 +13782,7 @@ case "$host" in #( *-*-linux*|*-*-cygwin*|*-gnu*) : WM_OSDEP="linux" ; CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600" ;; #( *-*-freebsd*|*-k*bsd-gnu*) : Modified: head/x11-wm/windowmaker/files/patch-doc__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-doc__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-doc__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,10 +1,10 @@ ---- doc/Makefile.in.orig +--- doc/Makefile.in.orig 2015-10-06 04:12:09 UTC +++ doc/Makefile.in -@@ -282,7 +282,6 @@ - geticonset.1x \ - getstyle.1x \ +@@ -382,7 +382,6 @@ dist_man_MANS = \ + geticonset.1 \ + getstyle.1 \ get-wings-flags.1 \ - get-wraster-flags.1 \ get-wutil-flags.1 \ - seticons.1x \ - setstyle.1x \ + seticons.1 \ + setstyle.1 \ Modified: head/x11-wm/windowmaker/files/patch-src__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-src__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-src__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,8 +1,8 @@ ---- src/Makefile.in.orig 2014-09-05 04:06:51.000000000 +0900 -+++ src/Makefile.in 2014-09-05 04:07:46.000000000 +0900 -@@ -124,8 +124,7 @@ - $(am__objects_3) $(am__objects_4) - wmaker_OBJECTS = $(am_wmaker_OBJECTS) +--- src/Makefile.in.orig 2015-10-06 04:12:09 UTC ++++ src/Makefile.in +@@ -164,8 +164,7 @@ am_wmaker_OBJECTS = actions.$(OBJEXT) ap + @USE_NESTED_FUNC_FALSE@ xmodifier.hack_nf.$(OBJEXT) + wmaker_OBJECTS = $(am_wmaker_OBJECTS) $(nodist_wmaker_OBJECTS) wmaker_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ - $(top_builddir)/WINGs/libWUtil.la \ - $(top_builddir)/wrlib/libwraster.la @@ -10,10 +10,10 @@ AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent -@@ -353,13 +352,12 @@ +@@ -424,13 +423,12 @@ wmaker_SOURCES = GNUstep.h WindowMaker.h + @USE_NESTED_FUNC_FALSE@CLEANFILES = $(nodist_wmaker_SOURCES) AM_CFLAGS = - AM_CPPFLAGS = \ - $(DFLAGS) -DLOCALEDIR=\"$(NLSDIR)\" \ + AM_CPPFLAGS = $(DFLAGS) \ - -I$(top_srcdir)/wrlib \ -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ Modified: head/x11-wm/windowmaker/files/patch-src__startup.c ============================================================================== --- head/x11-wm/windowmaker/files/patch-src__startup.c Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-src__startup.c Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- src/startup.c.orig 2013-01-10 06:42:39.000000000 +0900 -+++ src/startup.c 2013-05-03 03:30:24.000000000 +0900 -@@ -758,7 +758,7 @@ +--- src/startup.c.orig 2015-08-11 18:41:14 UTC ++++ src/startup.c +@@ -666,7 +666,7 @@ void StartUp(Bool defaultScreenOnly) wMenuRestoreState(wScreen[j]); /* If we're not restarting, restore session */ Modified: head/x11-wm/windowmaker/files/patch-util__Makefile.in ============================================================================== --- head/x11-wm/windowmaker/files/patch-util__Makefile.in Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-util__Makefile.in Tue Oct 6 05:12:56 2015 (r398682) @@ -1,6 +1,6 @@ ---- util/Makefile.in.orig 2014-09-05 04:13:22.000000000 +0900 -+++ util/Makefile.in 2014-09-05 04:14:30.000000000 +0900 -@@ -115,14 +115,13 @@ +--- util/Makefile.in.orig 2015-10-06 04:12:09 UTC ++++ util/Makefile.in +@@ -145,14 +145,13 @@ wdwrite_DEPENDENCIES = $(top_builddir)/W wmagnify_SOURCES = wmagnify.c wmagnify_OBJECTS = wmagnify.$(OBJEXT) wmagnify_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ @@ -17,7 +17,7 @@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_wmmenugen_OBJECTS = wmmenugen.$(OBJEXT) wmmenugen_misc.$(OBJEXT) \ -@@ -133,8 +132,7 @@ +@@ -163,8 +162,7 @@ wmmenugen_DEPENDENCIES = $(top_builddir) wmsetbg_SOURCES = wmsetbg.c wmsetbg_OBJECTS = wmsetbg.$(OBJEXT) wmsetbg_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la \ @@ -27,16 +27,16 @@ wxcopy_SOURCES = wxcopy.c wxcopy_OBJECTS = wxcopy.$(OBJEXT) wxcopy_DEPENDENCIES = -@@ -417,7 +415,7 @@ +@@ -477,7 +475,7 @@ AUTOMAKE_OPTIONS = bin_SCRIPTS = wmaker.inst wm-oldmenu2new wkdemenu.pl EXTRA_DIST = wmaker.inst.in bughint wm-oldmenu2new wkdemenu.pl - AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\" \ + AM_CPPFLAGS = \ - $(DFLAGS) -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib \ + $(DFLAGS) -I$(top_srcdir)/WINGs \ @HEADER_SEARCH_PATH@ \ -DETCDIR=\"sysconfdir\" -DDATADIR=\"pkgdatadir\" -@@ -440,13 +438,13 @@ +@@ -500,13 +498,13 @@ geticonset_LDADD = $(top_builddir)/WINGs wmagnify_LDADD = \ $(top_builddir)/WINGs/libWINGs.la \ $(top_builddir)/WINGs/libWUtil.la \ @@ -52,7 +52,7 @@ @XLFLAGS@ @LIBXINERAMA@ @XLIBS@ @INTLIBS@ wmgenmenu_LDADD = \ -@@ -463,7 +461,7 @@ +@@ -523,7 +521,7 @@ wmmenugen_SOURCES = wmmenugen.c wmmenuge wmmenugen_parse_xdg.c wmiv_LDADD = \ Modified: head/x11-wm/windowmaker/files/patch-util__wmiv.c ============================================================================== --- head/x11-wm/windowmaker/files/patch-util__wmiv.c Tue Oct 6 04:42:28 2015 (r398681) +++ head/x11-wm/windowmaker/files/patch-util__wmiv.c Tue Oct 6 05:12:56 2015 (r398682) @@ -1,5 +1,5 @@ ---- util/wmiv.c.orig 2014-09-05 04:35:03.000000000 +0900 -+++ util/wmiv.c 2014-09-05 04:35:45.000000000 +0900 +--- util/wmiv.c.orig 2015-08-11 18:41:14 UTC ++++ util/wmiv.c @@ -28,7 +28,9 @@ #include *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Oct 6 06:10:41 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 59E2699A10A; Tue, 6 Oct 2015 06:10:41 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x233.google.com (mail-wi0-x233.google.com [IPv6:2a00:1450:400c:c05::233]) (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 E514481A; Tue, 6 Oct 2015 06:10:40 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wiclk2 with SMTP id lk2so150691990wic.0; Mon, 05 Oct 2015 23:10:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=vGet8Wbyeda/ElTgvGraM2X+dmI58wvbEVA+sKZAWjw=; b=joPEW4tm3dRNR15huoJ9ApGB8I9BXjQxIacR8gkH+RhAfptzQPY7cLmrSnBFXBRLZV cCbOg8idE97HbXzqRMUxrxUYFs6PXTX41DdbQkPPARc5Knp86zgs4GdBBUz3NWCgOLLi eTuo202exdAmnnWZcml4iOZyKXS/pWWkKW3pfA+EBuQmsCY5I+AIocub8TLaEUZGNvs5 NIXCgi3suZd1xUpaT1ZMFLVZwtSnNckBgFGsjMSDZ2UsNWwa7JlU0xWJj4PHClWTjb/A kWt3DIoa9Y8mfMuvCZJb6tdT1zQcHqCS1VrGprbMVz2/04zcKzL79NexvFDvbCqb2vTL 8KFA== X-Received: by 10.180.86.165 with SMTP id q5mr15896830wiz.27.1444111839410; Mon, 05 Oct 2015 23:10:39 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id pl7sm18341259wic.4.2015.10.05.23.10.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 05 Oct 2015 23:10:38 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 6 Oct 2015 08:10:36 +0200 From: Baptiste Daroussin To: Bryan Drewery Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r397911 - head Message-ID: <20151006061036.GE56064@ivaldir.etoilebsd.net> References: <201509260017.t8Q0H9tf028768@repo.freebsd.org> <5612FA4C.2080609@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0H629O+sVkh21xTi" Content-Disposition: inline In-Reply-To: <5612FA4C.2080609@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: Tue, 06 Oct 2015 06:10:41 -0000 --0H629O+sVkh21xTi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 05, 2015 at 03:31:40PM -0700, Bryan Drewery wrote: > On 9/25/2015 5:17 PM, Baptiste Daroussin wrote: > > Author: bapt > > Date: Sat Sep 26 00:17:08 2015 > > New Revision: 397911 > > URL: https://svnweb.freebsd.org/changeset/ports/397911 > >=20 > > Log: > > Document @{pre,post}[un]exec in CHANGES > >=20 > > Modified: > > head/CHANGES > >=20 > > Modified: head/CHANGES > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/CHANGES Sat Sep 26 00:11:29 2015 (r397910) > > +++ head/CHANGES Sat Sep 26 00:17:08 2015 (r397911) > > @@ -10,6 +10,18 @@ in the release notes and/or placed into=20 > > =20 > > All ports committers are allowed to commit to this file. > > =20 > > +20150926 > > +AUTHOR: bapt@FreeBSD.org > > + > > + New keywords are supported in pkg since 1.5.x: > > + @preexec : execute the during pre-install scripts > > + @postexec : execute the during post-install scrip= ts > > + @preunexec : execute the during pre-deinstall scr= ipts > > + @postunexec : execute the during post-deinstall s= cripts > > + > > + @exec does not specify when if should be executed and is now conside= red as > > + deprecated. > > + > > 20150914: > > AUTHOR: mat@FreeBSD.org > > =20 > >=20 >=20 > commit 9ffb1c5608740751493478c1e305519e272a7ef2 > Author: Baptiste Daroussin > Date: Tue Oct 7 18:38:06 2014 +0200 >=20 > Add @{pre,post}[un]exec counter parts to @[un]exec >=20 >=20 > ~/git/pkgng # git describe --tags 9ffb1c560 > 1.3.0.rc4-561-g9ffb1c5 >=20 >=20 > Doesn't this mean it was in 1.3.0 and that we don't need the 1.6.0 > minimal pkg version requirement? The minimal requirements for pkg 1.6.0 is not due to @*exec The minimal requirements on 1.6.0 is due to keywords with arguments it appe= ared in 1.5 and received some fixes and extensions in 1.6.0 It is used in the new @sample for example Best regards, Bapt --0H629O+sVkh21xTi Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlYTZdwACgkQ8kTtMUmk6EziVwCgv6C0THsw+scTRjYbB2vJVsUa tJUAn3O23QrM24UNr/U8y8FlSRujNvIJ =CXxF -----END PGP SIGNATURE----- --0H629O+sVkh21xTi-- From owner-svn-ports-head@freebsd.org Tue Oct 6 07:28:46 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 AABA59B92BF; Tue, 6 Oct 2015 07:28:46 +0000 (UTC) (envelope-from robak@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 95F13171; Tue, 6 Oct 2015 07:28:46 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t967Skoi038011; Tue, 6 Oct 2015 07:28:46 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t967Sk7D038009; Tue, 6 Oct 2015 07:28:46 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060728.t967Sk7D038009@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 07:28:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398683 - head/www/rubygem-sinatra-contrib 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: Tue, 06 Oct 2015 07:28:46 -0000 Author: robak Date: Tue Oct 6 07:28:45 2015 New Revision: 398683 URL: https://svnweb.freebsd.org/changeset/ports/398683 Log: www/rubygem-sinatra-contrib: update 1.4.2 -> 1.4.6 PR: 203373 Submitted by: Nick Hilliard Modified: head/www/rubygem-sinatra-contrib/Makefile head/www/rubygem-sinatra-contrib/distinfo Modified: head/www/rubygem-sinatra-contrib/Makefile ============================================================================== --- head/www/rubygem-sinatra-contrib/Makefile Tue Oct 6 05:12:56 2015 (r398682) +++ head/www/rubygem-sinatra-contrib/Makefile Tue Oct 6 07:28:45 2015 (r398683) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= sinatra-contrib -PORTVERSION= 1.4.2 -PORTREVISION= 1 +PORTVERSION= 1.4.6 CATEGORIES= www rubygems MASTER_SITES= RG @@ -17,7 +16,7 @@ RUN_DEPENDS= rubygem-backports>=2.0:${PO rubygem-rack-protection>=0:${PORTSDIR}/www/rubygem-rack-protection \ rubygem-rack-test>=0:${PORTSDIR}/www/rubygem-rack-test \ rubygem-sinatra>=1.4:${PORTSDIR}/www/rubygem-sinatra \ - rubygem-tilt1>=1.3:${PORTSDIR}/devel/rubygem-tilt1 + rubygem-tilt>=2.0:${PORTSDIR}/devel/rubygem-tilt1 NO_ARCH= yes Modified: head/www/rubygem-sinatra-contrib/distinfo ============================================================================== --- head/www/rubygem-sinatra-contrib/distinfo Tue Oct 6 05:12:56 2015 (r398682) +++ head/www/rubygem-sinatra-contrib/distinfo Tue Oct 6 07:28:45 2015 (r398683) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sinatra-contrib-1.4.2.gem) = 6f4ee213c67636d6ba06b8d8311e3a99dde2fcb8de06c954bd0e5f2ca7efabb6 -SIZE (rubygem/sinatra-contrib-1.4.2.gem) = 52224 +SHA256 (rubygem/sinatra-contrib-1.4.6.gem) = 1655fa858d2cd198ffeec29d949ddc0722a020de0a0de48fb5c37b3295006483 +SIZE (rubygem/sinatra-contrib-1.4.6.gem) = 54272 From owner-svn-ports-head@freebsd.org Tue Oct 6 07:57: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 884A59B6B43; Tue, 6 Oct 2015 07:57:18 +0000 (UTC) (envelope-from culot@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 794531431; Tue, 6 Oct 2015 07:57:18 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t967vIDJ050512; Tue, 6 Oct 2015 07:57:18 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t967vI8W050508; Tue, 6 Oct 2015 07:57:18 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510060757.t967vI8W050508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Tue, 6 Oct 2015 07:57:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398684 - head/devel/p5-Term-Menus 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: Tue, 06 Oct 2015 07:57:18 -0000 Author: culot Date: Tue Oct 6 07:57:17 2015 New Revision: 398684 URL: https://svnweb.freebsd.org/changeset/ports/398684 Log: - Update to 2.95 Changes: http://search.cpan.org/dist/Term-Menus/ChangeLog Modified: head/devel/p5-Term-Menus/Makefile head/devel/p5-Term-Menus/distinfo Modified: head/devel/p5-Term-Menus/Makefile ============================================================================== --- head/devel/p5-Term-Menus/Makefile Tue Oct 6 07:28:45 2015 (r398683) +++ head/devel/p5-Term-Menus/Makefile Tue Oct 6 07:57:17 2015 (r398684) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Term-Menus -PORTVERSION= 2.94 +PORTVERSION= 2.95 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:REEDFISH Modified: head/devel/p5-Term-Menus/distinfo ============================================================================== --- head/devel/p5-Term-Menus/distinfo Tue Oct 6 07:28:45 2015 (r398683) +++ head/devel/p5-Term-Menus/distinfo Tue Oct 6 07:57:17 2015 (r398684) @@ -1,2 +1,2 @@ -SHA256 (Term-Menus-2.94.tar.gz) = aaa67caf1703e715f3d0ee54c6c2e6bd4da7fdab8bf6e604b08314b5111ec5db -SIZE (Term-Menus-2.94.tar.gz) = 116230 +SHA256 (Term-Menus-2.95.tar.gz) = 662bc5ad20cde49e778e20728ee53bf88861745f8831996f15b9871a24796399 +SIZE (Term-Menus-2.95.tar.gz) = 116268 From owner-svn-ports-head@freebsd.org Tue Oct 6 08:09:02 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 0C27D9B1818; Tue, 6 Oct 2015 08:09:02 +0000 (UTC) (envelope-from robak@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 EF2171BF0; Tue, 6 Oct 2015 08:09:01 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t968915r055018; Tue, 6 Oct 2015 08:09:01 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96890AO055006; Tue, 6 Oct 2015 08:09:00 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060809.t96890AO055006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 08:09:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398685 - in head/net/yate: . 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: Tue, 06 Oct 2015 08:09:02 -0000 Author: robak Date: Tue Oct 6 08:08:59 2015 New Revision: 398685 URL: https://svnweb.freebsd.org/changeset/ports/398685 Log: net/yate: update 5.4.0 -> 5.5.0 - Delete obsolete patches PR: 203008 Submitted by: Nikola Kolev (maintainer) Deleted: head/net/yate/files/patch-configure.in head/net/yate/files/patch-engine-TelEngine.cpp Modified: head/net/yate/Makefile head/net/yate/distinfo head/net/yate/files/patch-Makefile.in head/net/yate/files/patch-conf.d__Makefile.in head/net/yate/files/patch-modules-Makefile.in head/net/yate/files/pkg-message.in head/net/yate/pkg-plist Modified: head/net/yate/Makefile ============================================================================== --- head/net/yate/Makefile Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/Makefile Tue Oct 6 08:08:59 2015 (r398685) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= yate -DISTVERSION= 5.4.0p1 -PORTREVISION= 4 +DISTVERSION= 5.5.0p1 CATEGORIES= net MASTER_SITES= http://yate.null.ro/tarballs/yate5/ -DISTNAME= ${PORTNAME}-5.4.0-1 +DISTNAME= ${PORTNAME}-5.5.0-1 MAINTAINER= koue@chaosophia.net COMMENT= Yet Another Telephony Engine @@ -144,7 +143,7 @@ post-extract: post-stage: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/yate @cd ${STAGEDIR}${PREFIX}/lib; \ - for FILE in *.5.4.0; do \ + for FILE in *.5.5.0; do \ ${STRIP_CMD} $${FILE}; \ done @cd ${STAGEDIR}${PREFIX}/lib/yate; \ Modified: head/net/yate/distinfo ============================================================================== --- head/net/yate/distinfo Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/distinfo Tue Oct 6 08:08:59 2015 (r398685) @@ -1,2 +1,2 @@ -SHA256 (yate-5.4.0-1.tar.gz) = 4705af7b4c110de11b0cee70e37f9815d130082a4c49b3f093cae07c79539344 -SIZE (yate-5.4.0-1.tar.gz) = 5027248 +SHA256 (yate-5.5.0-1.tar.gz) = a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676 +SIZE (yate-5.5.0-1.tar.gz) = 4186159 Modified: head/net/yate/files/patch-Makefile.in ============================================================================== --- head/net/yate/files/patch-Makefile.in Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/files/patch-Makefile.in Tue Oct 6 08:08:59 2015 (r398685) @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2014-08-26 10:40:38.000000000 +0300 -+++ Makefile.in 2014-08-26 10:41:58.000000000 +0300 -@@ -227,8 +227,8 @@ install-noconf: all +--- Makefile.in.orig 2015-05-08 09:34:48 UTC ++++ Makefile.in +@@ -230,8 +230,8 @@ install-noconf: all for i in $(MAN8) ; do \ install -m 0644 @srcdir@/docs/man/$$i "$(DESTDIR)$(mandir)/man8/" ; \ done @@ -11,7 +11,7 @@ @mkdir -p "$(DESTDIR)$(incdir)/" && \ for i in $(INCS) ; do \ install -m 0644 @srcdir@/$$i "$(DESTDIR)$(incdir)/" ; \ -@@ -261,7 +261,7 @@ uninstall uninstall-root: +@@ -270,7 +270,7 @@ uninstall uninstall-root: @-for i in $(PROGS) yate-config ; do \ rm "$(DESTDIR)$(bindir)/$$i" ; \ done Modified: head/net/yate/files/patch-conf.d__Makefile.in ============================================================================== --- head/net/yate/files/patch-conf.d__Makefile.in Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/files/patch-conf.d__Makefile.in Tue Oct 6 08:08:59 2015 (r398685) @@ -1,6 +1,6 @@ ---- ./conf.d/Makefile.in.orig 2009-09-19 17:55:58.000000000 +0400 -+++ ./conf.d/Makefile.in 2013-02-14 19:58:02.000000000 +0400 -@@ -20,14 +20,14 @@ +--- conf.d/Makefile.in.orig 2009-09-19 13:55:58 UTC ++++ conf.d/Makefile.in +@@ -20,14 +20,14 @@ install: lst="`ls -1 @srcdir@/*.conf @srcdir@/*.sample @srcdir@/*.default 2>/dev/null | sed 's/\.sample//g; s/\.default//g; s/[^ ]*\*\.[^ ]*//g' | sort | uniq`" ; \ for s in $$lst; do \ d="$(DESTDIR)$(confdir)/`echo $$s | sed 's,.*/,,'`" ; \ Modified: head/net/yate/files/patch-modules-Makefile.in ============================================================================== --- head/net/yate/files/patch-modules-Makefile.in Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/files/patch-modules-Makefile.in Tue Oct 6 08:08:59 2015 (r398685) @@ -1,6 +1,6 @@ ---- modules/Makefile.in.orig 2014-08-19 11:56:08.000000000 +0300 -+++ modules/Makefile.in 2014-08-19 11:56:22.000000000 +0300 -@@ -350,7 +350,7 @@ server/mgcpgw.yate: LOCALFLAGS = -I@top_ +--- modules/Makefile.in.orig 2015-05-08 09:34:48 UTC ++++ modules/Makefile.in +@@ -361,7 +361,7 @@ server/mgcpgw.yate: LOCALFLAGS = -I@top_ server/mgcpgw.yate: LOCALLIBS = -lyatemgcp -L../libs/ysdp -lyatesdp server/lksctp.yate: EXTERNFLAGS = @SCTP_FLAGS@ Modified: head/net/yate/files/pkg-message.in ============================================================================== --- head/net/yate/files/pkg-message.in Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/files/pkg-message.in Tue Oct 6 08:08:59 2015 (r398685) @@ -2,7 +2,7 @@ IMPORTANT! MAKE SURE TO READ THE FOLLOWING! To start the YATE sever automatically when the system is started, append -the following in your /etc/rc.conf file: +the following in your ${PREFIX}/etc/rc.conf file: yate_enable="YES" # YATE iPBX/Softswitch server Modified: head/net/yate/pkg-plist ============================================================================== --- head/net/yate/pkg-plist Tue Oct 6 07:57:17 2015 (r398684) +++ head/net/yate/pkg-plist Tue Oct 6 08:08:59 2015 (r398685) @@ -50,6 +50,7 @@ bin/yate-config @sample %%ETCDIR%%/sigtransport.conf.sample @sample %%ETCDIR%%/sip_cnam_lnp.conf.sample @sample %%ETCDIR%%/sipfeatures.conf.sample +@sample %%ETCDIR%%/sqlitedb.conf.sample @sample %%ETCDIR%%/ss7_lnp_ansi.conf.sample @sample %%ETCDIR%%/subscription.conf.sample @sample %%ETCDIR%%/tdmcard.conf.sample @@ -76,19 +77,23 @@ include/yate/yatephone.h include/yate/yatecbase.h include/yate/yatexml.h include/yate/yateversn.h -include/yate/yategsm.h -lib/libyate.so.5.4.0 +include/yate/yateasn.h +include/yate/yateradio.h +include/yate/yatescript.h +lib/libyate.so.5.5.0 lib/libyate.so -lib/libyatescript.so.5.4.0 +lib/libyatescript.so.5.5.0 lib/libyatescript.so -lib/libyatesig.so.5.4.0 +lib/libyatesig.so.5.5.0 lib/libyatesig.so -lib/libyategsm.so.5.4.0 -lib/libyategsm.so -lib/libyatemgcp.so.5.4.0 +lib/libyatemgcp.so.5.5.0 lib/libyatemgcp.so -lib/libyatejabber.so.5.4.0 +lib/libyatejabber.so.5.5.0 lib/libyatejabber.so +lib/libyateasn.so +lib/libyateasn.so.5.5.0 +lib/libyateradio.so +lib/libyateradio.so.5.5.0 lib/yate/client/jabberclient.yate lib/yate/client/osschan.yate lib/yate/client/alsachan.yate @@ -173,869 +178,288 @@ lib/yate/zlibcompress.yate libdata/pkgconfig/yate.pc man/man8/yate.8.gz man/man8/yate-config.8.gz -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__ApplicationSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Counter64.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__DateAndTime.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__DisplayString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Gauge32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__GetBulkRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__GetNextRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__GetRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__HeaderData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__InformRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SccpLocalSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SccpRemote.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/header-list.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__InstancePointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__IpAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__KeyChange.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__MacAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__ObjectName.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__ObjectSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Opaque.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__PDUs.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__PhysAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Report_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Response_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__RowPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__RowStatus.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SNMPv2_Trap_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SnmpSecurityLevel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SNMPv3Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__ScopedPDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__ScopedPduData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SetRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SimpleSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SnmpAdminString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SnmpEngineID.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SnmpMessageProcessingModel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SnmpSecurityModel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__StorageType.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__SysOREntry.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TDomain.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TestAndIncr.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TimeInterval.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TimeStamp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TimeTicks.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__TruthValue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Unsigned32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__UsmSecurityParameters.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__UsmUserEntry.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__VarBind.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__VarBindList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__VariablePointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ASNLib.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ASNObjId.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ASPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AnalogLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AnalogLineEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AnalogLineGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Array.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AsnMib.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AsnObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AsnTag.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__AsnValue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Atom.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Base64.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__BitAccumulator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__CallEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__CallInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__CallList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__CapturedEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__File.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ChanAssist.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ChanAssistList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Channel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Cipher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Client.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientAccount.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientAccountList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientChannel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientContact.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientDir.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientDriver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientFile.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientFileItem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/index-long.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientLogic.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientResource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ClientSound.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Compressor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Configuration.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataBlock.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataConsumer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataFormat.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataNode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataSource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DataTranslator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DebugEnabler.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/hier.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Debugger.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DefaultLogic.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DnsRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Driver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__DurationUpdate.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ETSIModem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Engine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__EngineCheck.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ExpEvaluator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ExpExtender.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ExpFunction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ExpOperation.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ExpWrapper.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__FSKModem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Flags32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__FormatInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__FormatRepository.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__GSML3Codec.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__GTT.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__GenObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__GenPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__HandledMSU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__HashList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Hasher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXAuthMethod.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXControl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXInfoElementBinary.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXFormat.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXFormatDesc.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXFrameOut.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXFullFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXIEList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXInfoElement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXInfoElementNumeric.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXInfoElementString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXMediaData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXMetaTrunkFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MD5.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__IAXTrunkInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNIUA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNIUAClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNLayer2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNLayer3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ921.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ921Management.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ921Passive.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931Call.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageDispatcher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931CallMonitor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931IE.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931IEData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931Monitor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931ParserData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ISDNQ931State.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ImageInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBClientEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBClientStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBClusterStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBConnect.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBEntityCaps.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBEntityCapsList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBRemoteDomainDef.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBServerEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBServerStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBStreamSet.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBStreamSetList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBStreamSetProcessor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JBStreamSetReceive.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGCrypto.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGRtpCandidate.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGRtpCandidateP2P.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGRtpCandidates.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGRtpMedia.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGRtpMediaList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGSentStanza.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGSession0.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGSession1.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGSessionContent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JGStreamHost.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JIDIdentity.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JIDIdentityList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JabberID.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JsArray.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JsFunction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JsObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JsParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__JsRegExp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ListIterator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Lock.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Lock2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Lockable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPEndpointId.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPEpInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MGCPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MemoryStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageHandler.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageHook.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageNotifier.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessagePostHook.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageQueue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MessageRelay.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeAuthLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeBinaryBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeHeaderLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeLinesBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeMultipartBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeSdpBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MimeStringBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Module.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MucRoom.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MucRoomMember.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MultiRouter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RemoteBackupSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Mutex.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__MutexPool.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedInt.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedIterator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NamedString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__NaptrRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ObjList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ObjVector.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__OctetString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ParsePoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Plugin.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPBaseIO.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPDejitter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPProcessor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPSecure.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPSender.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RTPTransport.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Random.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RefObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RefPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__RefPointerBase.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Regexp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Resolver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Router.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Runnable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SASL.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SCCPManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SCCPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SDPMedia.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SDPParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SDPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SHA1.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SHA256.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGAdaptClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGAdaptServer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGAdaptUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGAdaptation.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGTRAN.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIGTransport.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPDialog.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPParty.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPSequence.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SIPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7AnsiSccpManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7ItuSccpManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7BICC.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7ISUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7ISUPCall.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7L2User.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7L3User.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Label.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Layer2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Layer3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Layer4.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7M2PA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7M2UA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7M2UAClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7M3UA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPFeatureCompress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MSU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MTP2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MTP3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Management.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MsgISUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MsgMTN.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MsgSCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MsgSNM.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7MsgSccpReassemble.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7PointCode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Route.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Router.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7SCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7SUA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7SCCPDataSegment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPANSI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPComponent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPError.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPITU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPTransactionANSI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TCAPTransactionITU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7TUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SS7Testing.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Socket.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SccpLocalSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SccpRemote.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SccpSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptAsync.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptCode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptContext.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptRun.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ScriptStack.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SctpSocket.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Semaphore.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SharedVars.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCall.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/index.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCallControl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCircuit.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCircuitEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCircuitGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCircuitRange.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCircuitSpan.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingComponent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingDumpable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingDumper.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingFlags.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingInterface.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingMessageTimer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingMessageTimerList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingNotifier.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingTimer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SignallingUtils.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Stream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SocketAddr.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SocketFilter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SrvRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__String.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__StringArray.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SubsystemStatusTest.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__SysUsage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TCAPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TableEvaluator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TempObjectCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Thread.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__ThreadedSource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Time.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__URI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TokenDict.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TranslatorCaps.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TranslatorFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__TxtRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UART.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UARTBuffer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UChar.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UDPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UDPTLSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UIFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__UIWidget.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__Window.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPDirVal.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPError.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPFeature.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPFeatureList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPFeatureSasl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPNamespace.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XMPPUtils.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlCData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlChild.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlComment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlDeclaration.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlDoctype.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlDocument.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlDomParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SNMPv2_Trap_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlElement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlElementOut.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlEscape.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlFragment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlParent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlSaxParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlTag.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/TelEngine__XmlText.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/all-globals.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__ApplicationSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__AutonomousType.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__BulkPDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Opaque.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Counter32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Counter64.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__DateAndTime.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__DisplayString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Gauge32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__GetBulkRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__GetNextRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__GetRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__HeaderData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__InformRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__InstancePointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yatecbase_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__IpAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__KeyChange.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__MacAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__ObjectName.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__ObjectSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__PDUs.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__PhysAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Report_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Response_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__RowPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yateclass_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__RowStatus.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SNMPv3Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__ScopedPDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__ScopedPduData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SetRequest_PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SimpleSyntax.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SnmpAdminString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SnmpEngineID.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SnmpMessageProcessingModel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SnmpSecurityLevel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__UsmUserEntry.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SnmpSecurityModel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__StorageType.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__SysOREntry.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TAddress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TDomain.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TestAndIncr.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TimeInterval.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TimeStamp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TimeTicks.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__TruthValue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__Unsigned32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__UsmSecurityParameters.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__VarBind.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__VarBindList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-Snmp__VariablePointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ASNLib.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ASNObjId.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ASPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AnalogLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AnalogLineEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AnalogLineGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXInfoElementBinary.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Array.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AsnMib.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AsnObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AsnTag.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__AsnValue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Atom.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Base64.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__BitAccumulator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__CallEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__CallInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__CallList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yatemime_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__CapturedEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ChanAssist.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ChanAssistList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Channel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Cipher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Client.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientAccount.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientAccountList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientChannel.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientContact.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ysip___util_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientDir.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientDriver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientFile.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientFileItem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientLogic.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientResource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ClientSound.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Compressor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Configuration.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataBlock.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yatephone_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataConsumer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataFormat.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataNode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataSource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DataTranslator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DebugEnabler.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Debugger.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DefaultLogic.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DnsRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__File.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Driver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__DurationUpdate.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ETSIModem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Engine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__EngineCheck.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ExpEvaluator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ExpExtender.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ExpFunction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ExpOperation.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ExpWrapper.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__GTT.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__FSKModem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Flags32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__FormatInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__FormatRepository.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__GSML3Codec.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__GenObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__GenPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__HandledMSU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__HashList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Hasher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXAuthMethod.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXControl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXFormat.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXFormatDesc.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXFrameOut.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXFullFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXIEList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXInfoElement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXMediaData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXInfoElementNumeric.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXInfoElementString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXMetaTrunkFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__IAXTrunkInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNFrame.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNIUA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNIUAClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNLayer2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ921Management.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNLayer3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ921.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ921Passive.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931Call.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931CallMonitor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931IE.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931IEData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPEndpointId.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931Monitor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931ParserData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ISDNQ931State.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ImageInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBClientEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBClientStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBClusterStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBConnect.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBEntityCaps.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBEntityCapsList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBRemoteDomainDef.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBServerEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBServerStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBStreamSet.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBStreamSetList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBStreamSetProcessor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JBStreamSetReceive.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGCrypto.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGRtpCandidate.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGRtpCandidateP2P.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGRtpCandidates.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGRtpMedia.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGRtpMediaList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGSentStanza.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGSession0.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGSession1.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGSessionContent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JGStreamHost.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JIDIdentity.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JIDIdentityList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JabberID.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JsArray.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JsFunction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JsObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__AutonomousType.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JsParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__JsRegExp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ListIterator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Lock.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Lock2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Lockable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MD5.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPEndpoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPEpInfo.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MGCPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MemoryStream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Message.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageDispatcher.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageHandler.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageHook.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageNotifier.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessagePostHook.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageQueue.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MessageRelay.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeAuthLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeBinaryBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeHeaderLine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeLinesBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeMultipartBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeSdpBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RemoteBackupSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MimeStringBody.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Module.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MucRoom.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MucRoomMember.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MultiRouter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Mutex.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__MutexPool.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedInt.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedIterator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NamedString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__NaptrRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ObjList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ObjVector.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__OctetString.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ParsePoint.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Plugin.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPBaseIO.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPDejitter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPProcessor.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPSecure.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPSender.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RTPTransport.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Random.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RefObject.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RefPointer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__RefPointerBase.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Regexp.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Resolver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Router.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Runnable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SASL.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SCCPManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SCCPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SDPMedia.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SDPParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SDPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPTransactionITU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SHA1.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SHA256.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGAdaptClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGAdaptServer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGAdaptUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGAdaptation.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGTRAN.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIGTransport.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPDialog.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPParty.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPSequence.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SIPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7AnsiSccpManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7BICC.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7ISUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7ISUPCall.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7ItuSccpManagement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7L2User.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yatengine_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7L3User.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Label.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Layer2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Layer3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Layer4.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7M2PA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7M2UA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7M2UAClient.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7M3UA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MSU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MTP2.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/yatexml_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MTP3.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Management.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MsgISUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MsgMTN.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MsgSCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MsgSNM.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7MsgSccpReassemble.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7PointCode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Route.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Router.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7SCCP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7SCCPDataSegment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7SUA.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPANSI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPComponent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPError.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPITU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPTransaction.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TCAPTransactionANSI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7TUP.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SS7Testing.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SccpSubsystem.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptAsync.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptCode.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptContext.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ysnmp___yatesnmp_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yxml___yatexml_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptRun.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ScriptStack.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SctpSocket.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Semaphore.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SharedVars.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCall.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCallControl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCircuit.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCircuitEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCircuitGroup.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCircuitRange.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCircuitSpan.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingComponent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingDumpable.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingDumper.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingEngine.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingEvent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__PDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingFlags.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingInterface.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingMessage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingMessageTimer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingMessageTimerList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingNotifier.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingReceiver.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingTimer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SignallingUtils.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Socket.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SocketAddr.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SocketFilter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SrvRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Stream.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__String.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__StringArray.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SubsystemStatusTest.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__SysUsage.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TCAPUser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Thread.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TableEvaluator.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TempObjectCounter.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__ThreadedSource.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Time.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TokenDict.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TranslatorCaps.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TranslatorFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__TxtRecord.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UART.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UARTBuffer.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__Counter32.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UChar.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UDPSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UDPTLSession.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UIFactory.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__UIWidget.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__URI.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__Window.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPDirVal.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPError.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPFeature.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPFeatureCompress.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPFeatureList.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPFeatureSasl.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPNamespace.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XMPPUtils.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlCData.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlChild.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlComment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlDeclaration.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlDoctype.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlDocument.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/Snmp__BulkPDU.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlDomParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlElement.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlElementOut.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlEscape.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlFragment.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlParent.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlSaxParser.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlTag.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/full-list-TelEngine__XmlText.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yasn___yateasn_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ygsm___yategsm_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yiax___yateiax_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yjabber___xmpputils_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yjabber___yatejabber_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yjabber___yatejingle_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ymgcp___yatemgcp_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ymodem___yatemodem_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ypbx___yatepbx_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yrtp___yatertp_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___yscript___yatescript_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ysdp___yatesdp_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ysig___yatesig_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/api/libs___ysip___yatesip_h.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/README -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/COPYING -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/dataflow.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/extmodule.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/index.html -%%PORTDOCS%%%%DOCSDIR%%-5.4.0/messages.html +%%PORTDOCS%%%%DOCSDIR%%-5.5.0/WebRTC-LICENSE +%%PORTDOCS%%%%DOCSDIR%%-5.5.0/WebRTC-LICENSE_THIRD_PARTY +%%PORTDOCS%%%%DOCSDIR%%-5.5.0/WebRTC-PATENTS *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Oct 6 08:14:13 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 EBAA99B1DA3; Tue, 6 Oct 2015 08:14:13 +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 DC8518C; Tue, 6 Oct 2015 08:14:13 +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 t968EDcQ058760; Tue, 6 Oct 2015 08:14:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968EDJD058758; Tue, 6 Oct 2015 08:14:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510060814.t968EDJD058758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Oct 2015 08:14:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398686 - in head: . emulators emulators/ppsspp-devel 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: Tue, 06 Oct 2015 08:14:14 -0000 Author: jbeich Date: Tue Oct 6 08:14:12 2015 New Revision: 398686 URL: https://svnweb.freebsd.org/changeset/ports/398686 Log: emulators/ppsspp-devel: update to 1.1.0 by removing the port v1.1.0 was recently released and there're not enough changes after it to warrant a separate package. Move users back to stable until more time passes or some "interesting" conflicts appear. Changes: https://github.com/hrydgard/ppsspp/compare/d8b43dd...v1.1.0 Deleted: head/emulators/ppsspp-devel/ Modified: head/MOVED (contents, props changed) head/emulators/Makefile (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Tue Oct 6 08:08:59 2015 (r398685) +++ head/MOVED Tue Oct 6 08:14:12 2015 (r398686) @@ -7888,3 +7888,4 @@ net/linc||2015-09-27|Has expired: Last r net/linc-reference||2015-09-27|Has expired: Last release in 2003, not used by anything anymore x11/xlogout||2015-09-27|Has expired: Useless cruft from 1989 net/rubygem-amq-client||2015-10-01|Has expired: Deprecated by Upstream. It is part of net/rubygem-amqp codebase now +emulators/ppsspp-devel|emulators/ppsspp|2015-10-06|Out of date: use emulators/ppsspp for now Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Tue Oct 6 08:08:59 2015 (r398685) +++ head/emulators/Makefile Tue Oct 6 08:14:12 2015 (r398686) @@ -111,7 +111,6 @@ SUBDIR += pearpc SUBDIR += pipelight SUBDIR += ppsspp - SUBDIR += ppsspp-devel SUBDIR += py-gns3-converter SUBDIR += q4wine SUBDIR += qemu From owner-svn-ports-head@freebsd.org Tue Oct 6 08:14: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 7301C9B1E6A; Tue, 6 Oct 2015 08:14:44 +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 4A76817B; Tue, 6 Oct 2015 08:14:44 +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 t968Ei7o058908; Tue, 6 Oct 2015 08:14:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968Eiw3058907; Tue, 6 Oct 2015 08:14:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510060814.t968Eiw3058907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Oct 2015 08:14:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398687 - head/emulators/ppsspp/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: Tue, 06 Oct 2015 08:14:44 -0000 Author: jbeich Date: Tue Oct 6 08:14:43 2015 New Revision: 398687 URL: https://svnweb.freebsd.org/changeset/ports/398687 Log: emulators/ppsspp: drop FreeBSD 8.x support Deleted: head/emulators/ppsspp/files/patch-Core_FileLoaders_HTTPFileLoader.cpp From owner-svn-ports-head@freebsd.org Tue Oct 6 08:32: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 179AD9B2F57; Tue, 6 Oct 2015 08:32:45 +0000 (UTC) (envelope-from robak@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 075CBCF5; Tue, 6 Oct 2015 08:32:45 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t968Wi2V067202; Tue, 6 Oct 2015 08:32:44 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968WhSu067193; Tue, 6 Oct 2015 08:32:43 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060832.t968WhSu067193@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 08:32:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398688 - in head/devel/libosmocore: . 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: Tue, 06 Oct 2015 08:32:45 -0000 Author: robak Date: Tue Oct 6 08:32:42 2015 New Revision: 398688 URL: https://svnweb.freebsd.org/changeset/ports/398688 Log: devel/libosmocore: update 0.8.0 -> 0.8.3 PR: 203010 Submitted by: Nikola Kolev (maintainer) Modified: head/devel/libosmocore/Makefile head/devel/libosmocore/distinfo head/devel/libosmocore/files/patch-Doxyfile.codec.in head/devel/libosmocore/files/patch-Doxyfile.core.in head/devel/libosmocore/files/patch-Doxyfile.gsm.in head/devel/libosmocore/files/patch-Doxyfile.vty.in head/devel/libosmocore/pkg-plist Modified: head/devel/libosmocore/Makefile ============================================================================== --- head/devel/libosmocore/Makefile Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/Makefile Tue Oct 6 08:32:42 2015 (r398688) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libosmocore -PORTVERSION= 0.8.0 -PORTREVISION= 1 +PORTVERSION= 0.8.3 CATEGORIES= devel MASTER_SITES= http://git.osmocom.org/libosmocore/snapshot/ \ http://chaosophia.net/downloads/osmocom/${PORTNAME}/ Modified: head/devel/libosmocore/distinfo ============================================================================== --- head/devel/libosmocore/distinfo Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/distinfo Tue Oct 6 08:32:42 2015 (r398688) @@ -1,2 +1,2 @@ -SHA256 (libosmocore-0.8.0.tar.gz) = fd282d45909eafca9a855c71eab4235d0dadcd89e66f3a1c145e2132e5e3c09c -SIZE (libosmocore-0.8.0.tar.gz) = 557104 +SHA256 (libosmocore-0.8.3.tar.gz) = 63f3dd82298b3280a701d3159ee8273cca10c45899ec6513c4fed22be657cbf9 +SIZE (libosmocore-0.8.3.tar.gz) = 561299 Modified: head/devel/libosmocore/files/patch-Doxyfile.codec.in ============================================================================== --- head/devel/libosmocore/files/patch-Doxyfile.codec.in Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/files/patch-Doxyfile.codec.in Tue Oct 6 08:32:42 2015 (r398688) @@ -1,5 +1,5 @@ ---- ./Doxyfile.codec.in.orig 2014-03-31 15:40:46.000000000 +0200 -+++ ./Doxyfile.codec.in 2014-08-11 15:10:30.000000000 +0200 +--- Doxyfile.codec.in.orig 2015-08-23 15:39:14 UTC ++++ Doxyfile.codec.in @@ -1,109 +1,129 @@ -# Doxyfile 1.7.4 +# Doxyfile 1.8.7 @@ -185,7 +185,7 @@ ALWAYS_DETAILED_SEC = NO -@@ -111,153 +131,207 @@ +@@ -111,153 +131,207 @@ ALWAYS_DETAILED_SEC = NO # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. @@ -473,7 +473,7 @@ IDL_PROPERTY_SUPPORT = YES -@@ -265,394 +339,472 @@ +@@ -265,394 +339,472 @@ IDL_PROPERTY_SUPPORT = YES # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. @@ -1149,7 +1149,7 @@ EXCLUDE_PATTERNS = -@@ -661,740 +813,1076 @@ +@@ -661,740 +813,1076 @@ EXCLUDE_PATTERNS = # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test @@ -2620,7 +2620,7 @@ PERLMOD_MAKEVAR_PREFIX = -@@ -1402,110 +1890,128 @@ +@@ -1402,110 +1890,128 @@ PERLMOD_MAKEVAR_PREFIX = # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -2804,7 +2804,7 @@ PERL_PATH = /usr/bin/perl -@@ -1513,204 +2019,293 @@ +@@ -1513,204 +2019,293 @@ PERL_PATH = /usr/bin/perl # Configuration options related to the dot tool #--------------------------------------------------------------------------- Modified: head/devel/libosmocore/files/patch-Doxyfile.core.in ============================================================================== --- head/devel/libosmocore/files/patch-Doxyfile.core.in Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/files/patch-Doxyfile.core.in Tue Oct 6 08:32:42 2015 (r398688) @@ -1,5 +1,5 @@ ---- ./Doxyfile.core.in.orig 2014-03-31 15:40:46.000000000 +0200 -+++ ./Doxyfile.core.in 2014-08-11 15:10:30.000000000 +0200 +--- Doxyfile.core.in.orig 2015-08-23 15:39:14 UTC ++++ Doxyfile.core.in @@ -1,109 +1,129 @@ -# Doxyfile 1.7.4 +# Doxyfile 1.8.7 @@ -185,7 +185,7 @@ ALWAYS_DETAILED_SEC = NO -@@ -111,153 +131,207 @@ +@@ -111,153 +131,207 @@ ALWAYS_DETAILED_SEC = NO # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. @@ -473,7 +473,7 @@ IDL_PROPERTY_SUPPORT = YES -@@ -265,394 +339,472 @@ +@@ -265,394 +339,472 @@ IDL_PROPERTY_SUPPORT = YES # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. @@ -1149,7 +1149,7 @@ EXCLUDE_PATTERNS = -@@ -661,740 +813,1076 @@ +@@ -661,740 +813,1076 @@ EXCLUDE_PATTERNS = # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test @@ -2620,7 +2620,7 @@ PERLMOD_MAKEVAR_PREFIX = -@@ -1402,110 +1890,128 @@ +@@ -1402,110 +1890,128 @@ PERLMOD_MAKEVAR_PREFIX = # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -2804,7 +2804,7 @@ PERL_PATH = /usr/bin/perl -@@ -1513,204 +2019,293 @@ +@@ -1513,204 +2019,293 @@ PERL_PATH = /usr/bin/perl # Configuration options related to the dot tool #--------------------------------------------------------------------------- Modified: head/devel/libosmocore/files/patch-Doxyfile.gsm.in ============================================================================== --- head/devel/libosmocore/files/patch-Doxyfile.gsm.in Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/files/patch-Doxyfile.gsm.in Tue Oct 6 08:32:42 2015 (r398688) @@ -1,5 +1,5 @@ ---- ./Doxyfile.gsm.in.orig 2014-03-31 15:40:46.000000000 +0200 -+++ ./Doxyfile.gsm.in 2014-08-11 15:10:30.000000000 +0200 +--- Doxyfile.gsm.in.orig 2015-08-23 15:39:14 UTC ++++ Doxyfile.gsm.in @@ -1,109 +1,129 @@ -# Doxyfile 1.7.4 +# Doxyfile 1.8.7 @@ -185,7 +185,7 @@ ALWAYS_DETAILED_SEC = NO -@@ -111,153 +131,207 @@ +@@ -111,153 +131,207 @@ ALWAYS_DETAILED_SEC = NO # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. @@ -473,7 +473,7 @@ IDL_PROPERTY_SUPPORT = YES -@@ -265,394 +339,473 @@ +@@ -265,394 +339,473 @@ IDL_PROPERTY_SUPPORT = YES # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. @@ -1150,7 +1150,7 @@ EXCLUDE_PATTERNS = -@@ -661,740 +814,1076 @@ +@@ -661,740 +814,1076 @@ EXCLUDE_PATTERNS = # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test @@ -2621,7 +2621,7 @@ PERLMOD_MAKEVAR_PREFIX = -@@ -1402,110 +1891,128 @@ +@@ -1402,110 +1891,128 @@ PERLMOD_MAKEVAR_PREFIX = # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -2805,7 +2805,7 @@ PERL_PATH = /usr/bin/perl -@@ -1513,204 +2020,293 @@ +@@ -1513,204 +2020,293 @@ PERL_PATH = /usr/bin/perl # Configuration options related to the dot tool #--------------------------------------------------------------------------- Modified: head/devel/libosmocore/files/patch-Doxyfile.vty.in ============================================================================== --- head/devel/libosmocore/files/patch-Doxyfile.vty.in Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/files/patch-Doxyfile.vty.in Tue Oct 6 08:32:42 2015 (r398688) @@ -1,5 +1,5 @@ ---- ./Doxyfile.vty.in.orig 2014-03-31 15:40:46.000000000 +0200 -+++ ./Doxyfile.vty.in 2014-08-11 15:10:30.000000000 +0200 +--- Doxyfile.vty.in.orig 2015-08-23 15:39:14 UTC ++++ Doxyfile.vty.in @@ -1,109 +1,129 @@ -# Doxyfile 1.7.4 +# Doxyfile 1.8.7 @@ -185,7 +185,7 @@ ALWAYS_DETAILED_SEC = NO -@@ -111,153 +131,207 @@ +@@ -111,153 +131,207 @@ ALWAYS_DETAILED_SEC = NO # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. @@ -473,7 +473,7 @@ IDL_PROPERTY_SUPPORT = YES -@@ -265,394 +339,472 @@ +@@ -265,394 +339,472 @@ IDL_PROPERTY_SUPPORT = YES # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. @@ -1149,7 +1149,7 @@ EXCLUDE_PATTERNS = -@@ -661,740 +813,1076 @@ +@@ -661,740 +813,1076 @@ EXCLUDE_PATTERNS = # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test @@ -2620,7 +2620,7 @@ PERLMOD_MAKEVAR_PREFIX = -@@ -1402,110 +1890,128 @@ +@@ -1402,110 +1890,128 @@ PERLMOD_MAKEVAR_PREFIX = # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -2804,7 +2804,7 @@ PERL_PATH = /usr/bin/perl -@@ -1513,204 +2019,293 @@ +@@ -1513,204 +2019,293 @@ PERL_PATH = /usr/bin/perl # Configuration options related to the dot tool #--------------------------------------------------------------------------- Modified: head/devel/libosmocore/pkg-plist ============================================================================== --- head/devel/libosmocore/pkg-plist Tue Oct 6 08:14:43 2015 (r398687) +++ head/devel/libosmocore/pkg-plist Tue Oct 6 08:32:42 2015 (r398688) @@ -16,6 +16,7 @@ include/osmocom/core/crc64gen.h include/osmocom/core/crc8gen.h include/osmocom/core/crcgen.h include/osmocom/core/defs.h +include/osmocom/core/endian.h include/osmocom/core/gsmtap.h include/osmocom/core/gsmtap_util.h include/osmocom/core/linuxlist.h @@ -54,6 +55,7 @@ include/osmocom/gprs/protocol/gsm_08_16. include/osmocom/gprs/protocol/gsm_08_18.h include/osmocom/gsm/a5.h include/osmocom/gsm/abis_nm.h +include/osmocom/gsm/apn.h include/osmocom/gsm/comp128.h include/osmocom/gsm/comp128v23.h include/osmocom/gsm/gan.h @@ -110,8 +112,8 @@ lib/libosmocore.so.6 lib/libosmocore.so.6.0.0 lib/libosmogb.a lib/libosmogb.so -lib/libosmogb.so.3 -lib/libosmogb.so.3.0.1 +lib/libosmogb.so.4 +lib/libosmogb.so.4.0.0 lib/libosmogsm.a lib/libosmogsm.so lib/libosmogsm.so.5 @@ -122,8 +124,8 @@ lib/libosmosim.so.0 lib/libosmosim.so.0.0.0 lib/libosmovty.a lib/libosmovty.so -lib/libosmovty.so.1 -lib/libosmovty.so.1.0.0 +lib/libosmovty.so.2 +lib/libosmovty.so.2.0.0 lib/libosmoctrl.a lib/libosmoctrl.so lib/libosmoctrl.so.0 From owner-svn-ports-head@freebsd.org Tue Oct 6 08:44:16 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 688A59B696E; Tue, 6 Oct 2015 08:44:16 +0000 (UTC) (envelope-from robak@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 4CE7E3E9; Tue, 6 Oct 2015 08:44:16 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t968iGEO071649; Tue, 6 Oct 2015 08:44:16 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968iFWh071646; Tue, 6 Oct 2015 08:44:15 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060844.t968iFWh071646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 08:44:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398689 - head/devel/libosmo-sccp 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: Tue, 06 Oct 2015 08:44:16 -0000 Author: robak Date: Tue Oct 6 08:44:14 2015 New Revision: 398689 URL: https://svnweb.freebsd.org/changeset/ports/398689 Log: devel/libosmo-sccp: update 0.0.6.3 -> 0.7.0 - Adjust MASTER_SITES PR: 203015 Submitted by: Nikola Kolev (maintainer) Modified: head/devel/libosmo-sccp/Makefile head/devel/libosmo-sccp/distinfo head/devel/libosmo-sccp/pkg-plist Modified: head/devel/libosmo-sccp/Makefile ============================================================================== --- head/devel/libosmo-sccp/Makefile Tue Oct 6 08:32:42 2015 (r398688) +++ head/devel/libosmo-sccp/Makefile Tue Oct 6 08:44:14 2015 (r398689) @@ -1,11 +1,10 @@ # $FreeBSD$ PORTNAME= libosmo-sccp -PORTVERSION= 0.0.6.3 -PORTREVISION= 2 +PORTVERSION= 0.7.0 CATEGORIES= devel -MASTER_SITES= http://chaosophia.net/downloads/osmocom/${PORTNAME}/ \ - http://ns1.chaosophia.net/downloads/osmocom/${PORTNAME}/ +MASTER_SITES= http://git.osmocom.org/libosmo-sccp/snapshot/ \ + http://chaosophia.net/downloads/osmocom/${PORTNAME}/ MAINTAINER= koue@chaosophia.net COMMENT= SCCP network layer protocol implementation @@ -22,12 +21,6 @@ PATHFIX_MAKEFILEIN=Makefile.am GNU_CONFIGURE= yes post-patch: - ${REINPLACE_CMD} -e 's,endian\.h,sys/endian.h,' \ - -e 's,__BYTE_ORDER,BYTE_ORDER,' \ - -e 's,__LITTLE_ENDIAN,LITTLE_ENDIAN,' \ - -e 's,__BIG_ENDIAN,BIG_ENDIAN,' \ - ${WRKSRC}/include/mtp/mtp_level3.h \ - ${WRKSRC}/include/sccp/sccp_types.h ${ECHO_CMD} ${PORTVERSION} > ${WRKSRC}/.tarball-version .include Modified: head/devel/libosmo-sccp/distinfo ============================================================================== --- head/devel/libosmo-sccp/distinfo Tue Oct 6 08:32:42 2015 (r398688) +++ head/devel/libosmo-sccp/distinfo Tue Oct 6 08:44:14 2015 (r398689) @@ -1,2 +1,2 @@ -SHA256 (libosmo-sccp-0.0.6.3.tar.gz) = 3b7dee875ebfdb75b9f554c7d1fd8e822b8fcd2c59d59f7d85d300ec75fdf302 -SIZE (libosmo-sccp-0.0.6.3.tar.gz) = 40209 +SHA256 (libosmo-sccp-0.7.0.tar.gz) = 4f95f02bd58ee922bd9f8cf4624684cd52aa0035bafca5e42697f56abfa78c5e +SIZE (libosmo-sccp-0.7.0.tar.gz) = 41367 Modified: head/devel/libosmo-sccp/pkg-plist ============================================================================== --- head/devel/libosmo-sccp/pkg-plist Tue Oct 6 08:32:42 2015 (r398688) +++ head/devel/libosmo-sccp/pkg-plist Tue Oct 6 08:44:14 2015 (r398689) @@ -2,10 +2,12 @@ include/osmocom/sccp/sccp_types.h include/osmocom/sccp/sccp.h include/osmocom/mtp/mtp_level3.h include/osmocom/mtp/mtp_pcap.h -include/osmocom/m2ua/m2ua_types.h -include/osmocom/m2ua/m2ua_msg.h +include/osmocom/sigtran/m2ua_types.h +include/osmocom/sigtran/m3ua_types.h +include/osmocom/sigtran/xua_msg.h +include/osmocom/sigtran/xua_types.h +lib/libxua.a lib/libsccp.a lib/libmtp.a -lib/libm2ua.a libdata/pkgconfig/libosmo-sccp.pc libdata/pkgconfig/libosmo-mtp.pc From owner-svn-ports-head@freebsd.org Tue Oct 6 08:47: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 6E0C29B6C51; Tue, 6 Oct 2015 08:47:45 +0000 (UTC) (envelope-from girgen@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 5DB60831; Tue, 6 Oct 2015 08:47:45 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t968ljLE072218; Tue, 6 Oct 2015 08:47:45 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968lhGW072212; Tue, 6 Oct 2015 08:47:43 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201510060847.t968lhGW072212@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Tue, 6 Oct 2015 08:47:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398690 - in head/databases: postgresql92-contrib postgresql92-server postgresql93-contrib postgresql93-server postgresql94-contrib postgresql94-server 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: Tue, 06 Oct 2015 08:47:45 -0000 Author: girgen Date: Tue Oct 6 08:47:42 2015 New Revision: 398690 URL: https://svnweb.freebsd.org/changeset/ports/398690 Log: Fix broken XML support. PR: ports/202649 Modified: head/databases/postgresql92-contrib/Makefile head/databases/postgresql92-server/Makefile head/databases/postgresql93-contrib/Makefile head/databases/postgresql93-server/Makefile head/databases/postgresql94-contrib/Makefile head/databases/postgresql94-server/Makefile Modified: head/databases/postgresql92-contrib/Makefile ============================================================================== --- head/databases/postgresql92-contrib/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql92-contrib/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -4,6 +4,7 @@ PORTNAME= postgresql CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} +PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql92-server/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.2.13 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} @@ -74,7 +74,7 @@ CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PAT .endif .if defined(SERVER_ONLY) -OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA +OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA XML LDAP_DESC= Build with LDAP authentication support DTRACE_DESC= Build with DTrace probes TZDATA_DESC= Use internal timezone database Modified: head/databases/postgresql93-contrib/Makefile ============================================================================== --- head/databases/postgresql93-contrib/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql93-contrib/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -4,6 +4,7 @@ PORTNAME= postgresql CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} +PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql93-server/Makefile ============================================================================== --- head/databases/postgresql93-server/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql93-server/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -2,7 +2,6 @@ # $FreeBSD$ DISTVERSION?= 9.3.9 -PORTREVISION?= 1 PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql94-contrib/Makefile ============================================================================== --- head/databases/postgresql94-contrib/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql94-contrib/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -3,6 +3,7 @@ PORTNAME= postgresql CATEGORIES= databases +PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql94-server/Makefile ============================================================================== --- head/databases/postgresql94-server/Makefile Tue Oct 6 08:44:14 2015 (r398689) +++ head/databases/postgresql94-server/Makefile Tue Oct 6 08:47:42 2015 (r398690) @@ -2,7 +2,6 @@ # $FreeBSD$ DISTVERSION?= 9.4.4 -PORTREVISION?= 1 MAINTAINER?= pgsql@FreeBSD.org From owner-svn-ports-head@freebsd.org Tue Oct 6 08:55: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 AD2049D0582; Tue, 6 Oct 2015 08:55:47 +0000 (UTC) (envelope-from des@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 87C0ADE8; Tue, 6 Oct 2015 08:55:47 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t968tl5U076255; Tue, 6 Oct 2015 08:55:47 GMT (envelope-from des@FreeBSD.org) Received: (from des@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t968tlZ3076252; Tue, 6 Oct 2015 08:55:47 GMT (envelope-from des@FreeBSD.org) Message-Id: <201510060855.t968tlZ3076252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: des set sender to des@FreeBSD.org using -f From: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= Date: Tue, 6 Oct 2015 08:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398691 - in head/security/cyrus-sasl2-gssapi: . 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: Tue, 06 Oct 2015 08:55:47 -0000 Author: des Date: Tue Oct 6 08:55:46 2015 New Revision: 398691 URL: https://svnweb.freebsd.org/changeset/ports/398691 Log: Silence debugging message. Approved by: maintainer silence Added: head/security/cyrus-sasl2-gssapi/files/ head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c (contents, props changed) Modified: head/security/cyrus-sasl2-gssapi/Makefile Modified: head/security/cyrus-sasl2-gssapi/Makefile ============================================================================== --- head/security/cyrus-sasl2-gssapi/Makefile Tue Oct 6 08:47:42 2015 (r398690) +++ head/security/cyrus-sasl2-gssapi/Makefile Tue Oct 6 08:55:46 2015 (r398691) @@ -2,7 +2,7 @@ PORTNAME= gssapi PORTVERSION= 2.1.26 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-sasl/ \ http://cyrusimap.org/releases/ Added: head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c Tue Oct 6 08:55:46 2015 (r398691) @@ -0,0 +1,15 @@ +diff --git a/plugins/gssapi.c b/plugins/gssapi.c +index 2fd1b3b..0992912 100644 +--- a/plugins/gssapi.c ++++ b/plugins/gssapi.c +@@ -1490,8 +1490,10 @@ static int gssapi_client_mech_step(void *conn_context, + *clientout = NULL; + *clientoutlen = 0; + ++#if 0 + params->utils->log(NULL, SASL_LOG_DEBUG, + "GSSAPI client step %d", text->state); ++#endif + + switch (text->state) { + From owner-svn-ports-head@freebsd.org Tue Oct 6 09:29:05 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 9874F9D00BC; Tue, 6 Oct 2015 09:29:05 +0000 (UTC) (envelope-from robak@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 893ED21F; Tue, 6 Oct 2015 09:29:05 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t969T5XV089042; Tue, 6 Oct 2015 09:29:05 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t969T50n089040; Tue, 6 Oct 2015 09:29:05 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060929.t969T50n089040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 09:29:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398692 - head/www/py-django-extensions 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: Tue, 06 Oct 2015 09:29:05 -0000 Author: robak Date: Tue Oct 6 09:29:04 2015 New Revision: 398692 URL: https://svnweb.freebsd.org/changeset/ports/398692 Log: www/py-django-extensions: update 1.5.5 -> 1.5.6 PR: 202830 Submitted by: Kevin Golding (maintainer) Modified: head/www/py-django-extensions/Makefile head/www/py-django-extensions/distinfo Modified: head/www/py-django-extensions/Makefile ============================================================================== --- head/www/py-django-extensions/Makefile Tue Oct 6 08:55:46 2015 (r398691) +++ head/www/py-django-extensions/Makefile Tue Oct 6 09:29:04 2015 (r398692) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-extensions -PORTVERSION= 1.5.5 +PORTVERSION= 1.5.6 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-django-extensions/distinfo ============================================================================== --- head/www/py-django-extensions/distinfo Tue Oct 6 08:55:46 2015 (r398691) +++ head/www/py-django-extensions/distinfo Tue Oct 6 09:29:04 2015 (r398692) @@ -1,2 +1,2 @@ -SHA256 (django-extensions-1.5.5.tar.gz) = 59c77d2c1bfd0bb1099dcba124a96b28c976c1c7bdcefc22be76aa2d9623654f -SIZE (django-extensions-1.5.5.tar.gz) = 400104 +SHA256 (django-extensions-1.5.6.tar.gz) = 65fb2d714fd5bdb9b08832993c2c8478b25d98c2a3e787696cfe762acae64544 +SIZE (django-extensions-1.5.6.tar.gz) = 404366 From owner-svn-ports-head@freebsd.org Tue Oct 6 09:40:03 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 CA2D09D092C; Tue, 6 Oct 2015 09:40:03 +0000 (UTC) (envelope-from olgeni@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 AF601AC0; Tue, 6 Oct 2015 09:40:03 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t969e3jY093420; Tue, 6 Oct 2015 09:40:03 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t969e242093412; Tue, 6 Oct 2015 09:40:02 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510060940.t969e242093412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 6 Oct 2015 09:40:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398693 - in head/lang: erlang erlang-java erlang-wx 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: Tue, 06 Oct 2015 09:40:03 -0000 Author: olgeni Date: Tue Oct 6 09:40:01 2015 New Revision: 398693 URL: https://svnweb.freebsd.org/changeset/ports/398693 Log: Upgrade lang/erlang, erlang-java, and erlang-wx to version 18.1.1. Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo head/lang/erlang/Makefile head/lang/erlang/distinfo Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang-java/Makefile Tue Oct 6 09:40:01 2015 (r398693) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 18.1 +PORTVERSION= 18.1.1 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,7 +14,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-18.1.1 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang interface for Java Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang-java/distinfo Tue Oct 6 09:40:01 2015 (r398693) @@ -2,3 +2,5 @@ SHA256 (erlang/otp_src_18.1.tar.gz) = e4 SIZE (erlang/otp_src_18.1.tar.gz) = 68231709 SHA256 (erlang/otp_doc_html_18.1.tar.gz) = fe7d035f84492bbf86f8d53891bf31fa327a81ed7dde15c050e9c32615dceb3c SIZE (erlang/otp_doc_html_18.1.tar.gz) = 34049065 +SHA256 (erlang/patch-otp-18.1.1) = 2f9bf3c46668cc2528df1d4dfda073aeb3b39fedff45efc2fb06db59ebe570ca +SIZE (erlang/patch-otp-18.1.1) = 19047 Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang-wx/Makefile Tue Oct 6 09:40:01 2015 (r398693) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 18.1 +PORTVERSION= 18.1.1 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,7 +14,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-18.1.1 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang bindings for wxWindows Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang-wx/distinfo Tue Oct 6 09:40:01 2015 (r398693) @@ -2,3 +2,5 @@ SHA256 (erlang/otp_src_18.1.tar.gz) = e4 SIZE (erlang/otp_src_18.1.tar.gz) = 68231709 SHA256 (erlang/otp_doc_html_18.1.tar.gz) = fe7d035f84492bbf86f8d53891bf31fa327a81ed7dde15c050e9c32615dceb3c SIZE (erlang/otp_doc_html_18.1.tar.gz) = 34049065 +SHA256 (erlang/patch-otp-18.1.1) = 2f9bf3c46668cc2528df1d4dfda073aeb3b39fedff45efc2fb06db59ebe570ca +SIZE (erlang/patch-otp-18.1.1) = 19047 Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang/Makefile Tue Oct 6 09:40:01 2015 (r398693) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 18.1 +PORTVERSION= 18.1.1 PORTEPOCH= 3 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ @@ -20,7 +20,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-18.1.1 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -221,6 +221,14 @@ post-install: ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.0.1/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.0.2 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.0.1 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/mnesia-4.13.1/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/mnesia-4.13.2 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/mnesia-4.13.1 + ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Tue Oct 6 09:29:04 2015 (r398692) +++ head/lang/erlang/distinfo Tue Oct 6 09:40:01 2015 (r398693) @@ -16,3 +16,5 @@ SHA256 (erlang/mnesia_overview.pdf) = f0 SIZE (erlang/mnesia_overview.pdf) = 150266 SHA256 (erlang/programming_rules.pdf) = b95f8851004832b044e064c12976a422613ece897e98308a27ee8b66738b4502 SIZE (erlang/programming_rules.pdf) = 77025 +SHA256 (erlang/patch-otp-18.1.1) = 2f9bf3c46668cc2528df1d4dfda073aeb3b39fedff45efc2fb06db59ebe570ca +SIZE (erlang/patch-otp-18.1.1) = 19047 From owner-svn-ports-head@freebsd.org Tue Oct 6 09:42:55 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 A3EA39D0D2F; Tue, 6 Oct 2015 09:42:55 +0000 (UTC) (envelope-from robak@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 92585F51; Tue, 6 Oct 2015 09:42:55 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t969gtAQ096872; Tue, 6 Oct 2015 09:42:55 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t969gtrc096871; Tue, 6 Oct 2015 09:42:55 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510060942.t969gtrc096871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 09:42:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398694 - head/graphics/ocre 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: Tue, 06 Oct 2015 09:42:55 -0000 Author: robak Date: Tue Oct 6 09:42:54 2015 New Revision: 398694 URL: https://svnweb.freebsd.org/changeset/ports/398694 Log: graphics/ocre: correct LICENSE PR: 203577 Submitted by: Walter Schwarzenfeld (maintainer) Modified: head/graphics/ocre/Makefile Modified: head/graphics/ocre/Makefile ============================================================================== --- head/graphics/ocre/Makefile Tue Oct 6 09:40:01 2015 (r398693) +++ head/graphics/ocre/Makefile Tue Oct 6 09:42:54 2015 (r398694) @@ -10,7 +10,7 @@ DISTNAME= ${PORTNAME}_v${PORTVERSION:S/. MAINTAINER= w.schwarzenfeld@utanet.at COMMENT= Simple optical character recognition solution -LICENSE= GPLv2 +LICENSE= GPLv3 LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell RUN_DEPENDS= display:${PORTSDIR}/graphics/ImageMagick \ From owner-svn-ports-head@freebsd.org Tue Oct 6 11:07: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 D0CA79B6A29; Tue, 6 Oct 2015 11:07:37 +0000 (UTC) (envelope-from robak@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 A2AA619D; Tue, 6 Oct 2015 11:07:37 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96B7bAE030542; Tue, 6 Oct 2015 11:07:37 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96B7b69030540; Tue, 6 Oct 2015 11:07:37 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510061107.t96B7b69030540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 6 Oct 2015 11:07:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398696 - in head/net/libbgpdump: . 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: Tue, 06 Oct 2015 11:07:37 -0000 Author: robak Date: Tue Oct 6 11:07:36 2015 New Revision: 398696 URL: https://svnweb.freebsd.org/changeset/ports/398696 Log: net/libbgpdump: update 1.4.99.13 -> 1.4.99.15 - Delete obsolete patches - Unsilence the installation - Add USES tar:tgz PR: 203182 Submitted by: Matthew Luckie (maintainer) Deleted: head/net/libbgpdump/files/ Modified: head/net/libbgpdump/Makefile head/net/libbgpdump/distinfo Modified: head/net/libbgpdump/Makefile ============================================================================== --- head/net/libbgpdump/Makefile Tue Oct 6 10:40:05 2015 (r398695) +++ head/net/libbgpdump/Makefile Tue Oct 6 11:07:36 2015 (r398696) @@ -1,11 +1,9 @@ # $FreeBSD$ PORTNAME= libbgpdump -PORTVERSION= 1.4.99.13 -PORTREVISION= 3 +PORTVERSION= 1.4.99.15 CATEGORIES= net MASTER_SITES= http://www.ris.ripe.net/source/bgpdump/ -EXTRACT_SUFX= .tgz MAINTAINER= mjl@luckie.org.nz COMMENT= Analyzing dump files produced by Zebra/Quagga or MRT @@ -14,18 +12,19 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes USE_LDCONFIG= yes +USES= tar:tgz OPTIONS_DEFINE= DOCS EXAMPLES do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/bgpdump ${STAGEDIR}${PREFIX}/bin - @${INSTALL_DATA} ${WRKSRC}/libbgpdump.* ${STAGEDIR}${PREFIX}/lib - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libbgpdump.so + ${INSTALL_PROGRAM} ${WRKSRC}/bgpdump ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/libbgpdump.* ${STAGEDIR}${PREFIX}/lib + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libbgpdump.so .for i in bgpdump_attr.h bgpdump_formats.h bgpdump_lib.h - @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/include .endfor - @${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/example.c ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/example.c ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/net/libbgpdump/distinfo ============================================================================== --- head/net/libbgpdump/distinfo Tue Oct 6 10:40:05 2015 (r398695) +++ head/net/libbgpdump/distinfo Tue Oct 6 11:07:36 2015 (r398696) @@ -1,2 +1,2 @@ -SHA256 (libbgpdump-1.4.99.13.tgz) = 7551a285fa5c0885aec7290e1f316e58968baab70a4f3467f8f70868d338311e -SIZE (libbgpdump-1.4.99.13.tgz) = 84083 +SHA256 (libbgpdump-1.4.99.15.tgz) = 04ad874a745541ec88c87639cb6cfdddaba4db515360855108bc9d65f14b7576 +SIZE (libbgpdump-1.4.99.15.tgz) = 131580 From owner-svn-ports-head@freebsd.org Tue Oct 6 13:27:26 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 1EDD09B6FE0; Tue, 6 Oct 2015 13:27:26 +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 0D9B62F7; Tue, 6 Oct 2015 13:27:26 +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 t96DRQjh081061; Tue, 6 Oct 2015 13:27:26 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96DROdq081051; Tue, 6 Oct 2015 13:27:24 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510061327.t96DROdq081051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 6 Oct 2015 13:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398697 - in head/mail: thunderbird thunderbird-i18n thunderbird/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: Tue, 06 Oct 2015 13:27:26 -0000 Author: swills Date: Tue Oct 6 13:27:23 2015 New Revision: 398697 URL: https://svnweb.freebsd.org/changeset/ports/398697 Log: mail/thunderbird: update to 38.3.0 PR: 203503 Submitted by: dezillium@dezillium.com Security: 2d56c7f4-b354-428f-8f48-38150c607a05 Modified: head/mail/thunderbird-i18n/Makefile head/mail/thunderbird-i18n/Makefile.lang head/mail/thunderbird-i18n/Makefile.option head/mail/thunderbird-i18n/distinfo head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo head/mail/thunderbird/files/patch-toolkit_mozapps_installer_packager_mk Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird-i18n/Makefile Tue Oct 6 13:27:23 2015 (r398697) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 38.2.0 +PORTVERSION= 38.3.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: head/mail/thunderbird-i18n/Makefile.lang ============================================================================== --- head/mail/thunderbird-i18n/Makefile.lang Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird-i18n/Makefile.lang Tue Oct 6 13:27:23 2015 (r398697) @@ -117,9 +117,6 @@ THUNDERBIRD_I18N+= ko .if ${PORT_OPTIONS:MLANG_LT} THUNDERBIRD_I18N+= lt .endif -.if ${PORT_OPTIONS:MLANG_LV} -THUNDERBIRD_I18N+= lv -.endif .if ${PORT_OPTIONS:MLANG_NB} THUNDERBIRD_I18N+= nb-NO .endif Modified: head/mail/thunderbird-i18n/Makefile.option ============================================================================== --- head/mail/thunderbird-i18n/Makefile.option Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird-i18n/Makefile.option Tue Oct 6 13:27:23 2015 (r398697) @@ -37,7 +37,6 @@ OPTIONS_DEFINE= LANG_AR \ LANG_JA \ LANG_KO \ LANG_LT \ - LANG_LV \ LANG_NB \ LANG_NL \ LANG_NN \ Modified: head/mail/thunderbird-i18n/distinfo ============================================================================== --- head/mail/thunderbird-i18n/distinfo Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird-i18n/distinfo Tue Oct 6 13:27:23 2015 (r398697) @@ -1,116 +1,116 @@ -SHA256 (xpi/thunderbird-i18n-38.2.0/ar.xpi) = 9098f6665f740fc371a5bf4dcdd04f729f30a7d52354a210e691292d09c9c748 -SIZE (xpi/thunderbird-i18n-38.2.0/ar.xpi) = 475296 -SHA256 (xpi/thunderbird-i18n-38.2.0/ast.xpi) = d84deb50ad04d47895ef48496da0c8f06442575b16500eec79a57e42cb470219 -SIZE (xpi/thunderbird-i18n-38.2.0/ast.xpi) = 405894 -SHA256 (xpi/thunderbird-i18n-38.2.0/be.xpi) = 2144494aa25681d9dd6fe123615d5b2abf3c6aeb76e9885d2a3eb05557958a22 -SIZE (xpi/thunderbird-i18n-38.2.0/be.xpi) = 442474 -SHA256 (xpi/thunderbird-i18n-38.2.0/bg.xpi) = 7b180ca9c20f1c451f422a72de51dae5fbb7a29c38f63ac1b98c7757dfc00a4a -SIZE (xpi/thunderbird-i18n-38.2.0/bg.xpi) = 506146 -SHA256 (xpi/thunderbird-i18n-38.2.0/bn-BD.xpi) = bf023343d9bae46779886304017486cd2cb08507d92c388da60f62b82732d61a -SIZE (xpi/thunderbird-i18n-38.2.0/bn-BD.xpi) = 560648 -SHA256 (xpi/thunderbird-i18n-38.2.0/br.xpi) = 00e4e5d34419eae7e9f5a02a2ce2545fc509795c8c34eea7474ec978a076f54c -SIZE (xpi/thunderbird-i18n-38.2.0/br.xpi) = 449789 -SHA256 (xpi/thunderbird-i18n-38.2.0/ca.xpi) = 9aeee1bb2e8977883e1eea24286b2e4433d56f5a941a1bd6dd2d35c33403e898 -SIZE (xpi/thunderbird-i18n-38.2.0/ca.xpi) = 450347 -SHA256 (xpi/thunderbird-i18n-38.2.0/cs.xpi) = ec642029803c46da7c6f4a6326c8fa076ff4fa93d190f1c43fb0a25aa03fd4ab -SIZE (xpi/thunderbird-i18n-38.2.0/cs.xpi) = 448724 -SHA256 (xpi/thunderbird-i18n-38.2.0/cy.xpi) = ab60a050b4ab69b546e2a2798debc432f179f3b456dec33abc4687aaf763041e -SIZE (xpi/thunderbird-i18n-38.2.0/cy.xpi) = 434848 -SHA256 (xpi/thunderbird-i18n-38.2.0/da.xpi) = 6e6c97a5151245124424c501fa6f5ef5b36802c4fef8d2b8fae858db5f758fb2 -SIZE (xpi/thunderbird-i18n-38.2.0/da.xpi) = 425828 -SHA256 (xpi/thunderbird-i18n-38.2.0/de.xpi) = 16386d48e2bcf83f3caf3a38555f05a5b419a095518249a1c4367f3dde31e951 -SIZE (xpi/thunderbird-i18n-38.2.0/de.xpi) = 429877 -SHA256 (xpi/thunderbird-i18n-38.2.0/dsb.xpi) = 8d4f8240c778f78a3c1a09c68ad7dc4ec1a5d522f6447a5788dc504a990d8f0d -SIZE (xpi/thunderbird-i18n-38.2.0/dsb.xpi) = 458487 -SHA256 (xpi/thunderbird-i18n-38.2.0/el.xpi) = 26ac749beb090e13eef2347b9b264d385ea69995770abff3c883219ebb4e5fc8 -SIZE (xpi/thunderbird-i18n-38.2.0/el.xpi) = 493512 -SHA256 (xpi/thunderbird-i18n-38.2.0/en-GB.xpi) = cccc7c3957231f15075da844b92482e2820ed5a76779967e41749a7cbaa8c14b -SIZE (xpi/thunderbird-i18n-38.2.0/en-GB.xpi) = 416572 -SHA256 (xpi/thunderbird-i18n-38.2.0/en-US.xpi) = 741bb4141984b0d2f812e7cdead5585f3de055e124c604e762ae165f0550c09c -SIZE (xpi/thunderbird-i18n-38.2.0/en-US.xpi) = 416640 -SHA256 (xpi/thunderbird-i18n-38.2.0/es-AR.xpi) = 2bad7f085b2be607fb23e316e954483a9ebf33e3b53ceebc95f0c844c6c00f44 -SIZE (xpi/thunderbird-i18n-38.2.0/es-AR.xpi) = 442641 -SHA256 (xpi/thunderbird-i18n-38.2.0/es-ES.xpi) = 1f7c13cbb2f52a6396d73661cfe612df447f41438199f0089a7b9e0976ce32a2 -SIZE (xpi/thunderbird-i18n-38.2.0/es-ES.xpi) = 376067 -SHA256 (xpi/thunderbird-i18n-38.2.0/et.xpi) = 7b94fbea65c3c83eed004de5ca3fe83b44a41b2896257a4e6f86d6b7292f525b -SIZE (xpi/thunderbird-i18n-38.2.0/et.xpi) = 438262 -SHA256 (xpi/thunderbird-i18n-38.2.0/eu.xpi) = 249719b70ce5a693101dd93d92c3e6eb4c538222f623a5effd654c096b65a7ce -SIZE (xpi/thunderbird-i18n-38.2.0/eu.xpi) = 434837 -SHA256 (xpi/thunderbird-i18n-38.2.0/fi.xpi) = 169d338bd699dcc90f5e1e87e2aab0965bcc93d0ceb3954719726bc157117154 -SIZE (xpi/thunderbird-i18n-38.2.0/fi.xpi) = 438889 -SHA256 (xpi/thunderbird-i18n-38.2.0/fr.xpi) = ff44e3feb26895a51b2d49cd89ffeea28070780c0d6a1cd996a8aaa19578ac69 -SIZE (xpi/thunderbird-i18n-38.2.0/fr.xpi) = 448227 -SHA256 (xpi/thunderbird-i18n-38.2.0/fy-NL.xpi) = abebe200c6f4349b2283b9ff580d07439f4e2349c07b3df811f2b55806191a69 -SIZE (xpi/thunderbird-i18n-38.2.0/fy-NL.xpi) = 442162 -SHA256 (xpi/thunderbird-i18n-38.2.0/ga-IE.xpi) = 1d41006e6f48585cb39b450f715da59db11e697624fddea8c03db41d1e7bde7c -SIZE (xpi/thunderbird-i18n-38.2.0/ga-IE.xpi) = 457412 -SHA256 (xpi/thunderbird-i18n-38.2.0/gd.xpi) = a7cd4e81e55843b865eb3f7489022e76e2b20a81a666f54c5fb2ecde7cdd5ce2 -SIZE (xpi/thunderbird-i18n-38.2.0/gd.xpi) = 456317 -SHA256 (xpi/thunderbird-i18n-38.2.0/gl.xpi) = ef38ee1792936cfe31d7a885669f206a8a8870610e8d344d37e75649168a3471 -SIZE (xpi/thunderbird-i18n-38.2.0/gl.xpi) = 457861 -SHA256 (xpi/thunderbird-i18n-38.2.0/he.xpi) = 6dcaf1b2caea0dc059481ce4a91a81ecf59f13a1998449700b1e159203144f4c -SIZE (xpi/thunderbird-i18n-38.2.0/he.xpi) = 485889 -SHA256 (xpi/thunderbird-i18n-38.2.0/hr.xpi) = fe2548abeb34d5b562c0c9dbeea8a268a01112ce7a24303077b7fc61e273c13a -SIZE (xpi/thunderbird-i18n-38.2.0/hr.xpi) = 440420 -SHA256 (xpi/thunderbird-i18n-38.2.0/hsb.xpi) = d0aaeca9daf1f4366af1093d756972b5ac95c173eca4fa2e801f1cc5cfdea136 -SIZE (xpi/thunderbird-i18n-38.2.0/hsb.xpi) = 456451 -SHA256 (xpi/thunderbird-i18n-38.2.0/hu.xpi) = 56c17fd8383a246d6b0c787a78b79267a08dba2fe959b8b00979900c974e9985 -SIZE (xpi/thunderbird-i18n-38.2.0/hu.xpi) = 457988 -SHA256 (xpi/thunderbird-i18n-38.2.0/hy-AM.xpi) = b47b617e0b521bae29eefb7268253ec87a16a5c0d39b60d3a7193eb8eb6580c9 -SIZE (xpi/thunderbird-i18n-38.2.0/hy-AM.xpi) = 500377 -SHA256 (xpi/thunderbird-i18n-38.2.0/id.xpi) = 1876f8c429e7c892333a88ba300115d4a5c163f2f2ec8cdf441ebefdc39f1e7a -SIZE (xpi/thunderbird-i18n-38.2.0/id.xpi) = 483209 -SHA256 (xpi/thunderbird-i18n-38.2.0/is.xpi) = dcc3d628212b921e2e4836dcdfe6994a70d75b7a2712b283d2277660f8549f85 -SIZE (xpi/thunderbird-i18n-38.2.0/is.xpi) = 443008 -SHA256 (xpi/thunderbird-i18n-38.2.0/it.xpi) = 786694c8b4d64c252c338a29acef06b787f95c74d90af403d61ca60002775cd3 -SIZE (xpi/thunderbird-i18n-38.2.0/it.xpi) = 369024 -SHA256 (xpi/thunderbird-i18n-38.2.0/ja.xpi) = c4937083d159697b068d97c1f60d1ff988f50ff2a0c330d78c51d03c10f637b8 -SIZE (xpi/thunderbird-i18n-38.2.0/ja.xpi) = 492861 -SHA256 (xpi/thunderbird-i18n-38.2.0/ko.xpi) = c3fb6a4d1953e9ad235b996477ab097dbe7e7de114713f8f18df98e39e3a1bb3 -SIZE (xpi/thunderbird-i18n-38.2.0/ko.xpi) = 454852 -SHA256 (xpi/thunderbird-i18n-38.2.0/lt.xpi) = bab8d740b889f2de6c342da09a0e1781182f45d2481a03aab769cd635e3837d3 -SIZE (xpi/thunderbird-i18n-38.2.0/lt.xpi) = 454572 -SHA256 (xpi/thunderbird-i18n-38.2.0/nb-NO.xpi) = 841b9ea0945a1334614b335e01ef3fd9c812c13ea39fc508cc060b13aa5f2fcd -SIZE (xpi/thunderbird-i18n-38.2.0/nb-NO.xpi) = 434340 -SHA256 (xpi/thunderbird-i18n-38.2.0/nl.xpi) = a237053483f81b7ae53cb6ada04a8dab0ea1d840de33ab4c0f8453e38901089b -SIZE (xpi/thunderbird-i18n-38.2.0/nl.xpi) = 435108 -SHA256 (xpi/thunderbird-i18n-38.2.0/nn-NO.xpi) = 944e1ce71ac7b79f274bb273f92d493a83b3dcd774c5d874add869db3dc6fbbf -SIZE (xpi/thunderbird-i18n-38.2.0/nn-NO.xpi) = 436623 -SHA256 (xpi/thunderbird-i18n-38.2.0/pa-IN.xpi) = c91ec0f7a4652f260bde662bfd1fe73dd6ba067a4e4655dd008d81a67736bc61 -SIZE (xpi/thunderbird-i18n-38.2.0/pa-IN.xpi) = 530483 -SHA256 (xpi/thunderbird-i18n-38.2.0/pl.xpi) = 4f2b78757594d919109b22ebe23098d724147035822f58d0235ae071f91ebcc3 -SIZE (xpi/thunderbird-i18n-38.2.0/pl.xpi) = 411509 -SHA256 (xpi/thunderbird-i18n-38.2.0/pt-BR.xpi) = 12912d7eecb1bf47b6a68f9089e9157cb0df7c25ab688681c9da8f6f8b2c1650 -SIZE (xpi/thunderbird-i18n-38.2.0/pt-BR.xpi) = 443774 -SHA256 (xpi/thunderbird-i18n-38.2.0/pt-PT.xpi) = 3cfe6d0dcc70ac662d07d2b8dc446bf37cab39719e2276b87fbaa55126ccee42 -SIZE (xpi/thunderbird-i18n-38.2.0/pt-PT.xpi) = 442064 -SHA256 (xpi/thunderbird-i18n-38.2.0/rm.xpi) = 0a7691e4bfd1395d39cd4752954f687de4cd11a7fa541eb90949ad93e497f151 -SIZE (xpi/thunderbird-i18n-38.2.0/rm.xpi) = 442112 -SHA256 (xpi/thunderbird-i18n-38.2.0/ro.xpi) = e7d119cfee6180b5afd5b35adf8429f94fe50b3e08737aadb0503395df22f7d2 -SIZE (xpi/thunderbird-i18n-38.2.0/ro.xpi) = 448349 -SHA256 (xpi/thunderbird-i18n-38.2.0/ru.xpi) = ac800282f8096fb66e235f3918254235b45768a1ad2f202b344db91023435a2a -SIZE (xpi/thunderbird-i18n-38.2.0/ru.xpi) = 437591 -SHA256 (xpi/thunderbird-i18n-38.2.0/si.xpi) = 401b14f056c84605a2071b182a57d42853976546b01974ba5d69e9d813d29299 -SIZE (xpi/thunderbird-i18n-38.2.0/si.xpi) = 535363 -SHA256 (xpi/thunderbird-i18n-38.2.0/sk.xpi) = 37ee0495c8886cf17f95f4a153d58d768763778e429539cb8b657ce9b72ec0d6 -SIZE (xpi/thunderbird-i18n-38.2.0/sk.xpi) = 456606 -SHA256 (xpi/thunderbird-i18n-38.2.0/sl.xpi) = 5e23988a9ed60d301edcf5bcd384a7788774a9473b75d2713c7cbaa46de838b7 -SIZE (xpi/thunderbird-i18n-38.2.0/sl.xpi) = 437847 -SHA256 (xpi/thunderbird-i18n-38.2.0/sq.xpi) = 3139466f0a15bd888656856a1a4cf2a47eb449ad950adc190d975c099c10a390 -SIZE (xpi/thunderbird-i18n-38.2.0/sq.xpi) = 446897 -SHA256 (xpi/thunderbird-i18n-38.2.0/sr.xpi) = a3c8a7f2bda919098daf6d3277a5f4ef82e9eeae7eed54decba302ca6000c47d -SIZE (xpi/thunderbird-i18n-38.2.0/sr.xpi) = 543336 -SHA256 (xpi/thunderbird-i18n-38.2.0/sv-SE.xpi) = b308e65ff10ad62091b89eeb9fcb9e6e8d3c76ddf0de32b6a9ca3a4101552816 -SIZE (xpi/thunderbird-i18n-38.2.0/sv-SE.xpi) = 439633 -SHA256 (xpi/thunderbird-i18n-38.2.0/ta-LK.xpi) = ac7f32d19cee21c16bee288883091fc50bca8bc68b0b28fc7f768ef3a53daa12 -SIZE (xpi/thunderbird-i18n-38.2.0/ta-LK.xpi) = 558760 -SHA256 (xpi/thunderbird-i18n-38.2.0/tr.xpi) = 2063f17091816acd829caed8ba091c900df6638c8b5cbf2873c3b4fb83124e8a -SIZE (xpi/thunderbird-i18n-38.2.0/tr.xpi) = 447799 -SHA256 (xpi/thunderbird-i18n-38.2.0/uk.xpi) = 776b376d5ba62a9544bfd5689922a84e17cb30546e2a65d54597927af6decd86 -SIZE (xpi/thunderbird-i18n-38.2.0/uk.xpi) = 509622 -SHA256 (xpi/thunderbird-i18n-38.2.0/vi.xpi) = 21f4a2f7530ed099577a199e4b1529c3bd34a383b4dd76b1b78f41da155e4cf2 -SIZE (xpi/thunderbird-i18n-38.2.0/vi.xpi) = 519865 -SHA256 (xpi/thunderbird-i18n-38.2.0/zh-CN.xpi) = 030e2d1b57e3d0b547aaaa5230e00d0f42e62028a8500377042e61b87f332e32 -SIZE (xpi/thunderbird-i18n-38.2.0/zh-CN.xpi) = 466412 -SHA256 (xpi/thunderbird-i18n-38.2.0/zh-TW.xpi) = 4f0750f5b53d3c961d4b972ff33953c89bd0638282f03eedd0a09fcb647dd33a -SIZE (xpi/thunderbird-i18n-38.2.0/zh-TW.xpi) = 466662 +SHA256 (xpi/thunderbird-i18n-38.3.0/ar.xpi) = e3d72a91f7e644bd3d3bb31522f5d9a12bf14316cd95ada0dee700ddd765db38 +SIZE (xpi/thunderbird-i18n-38.3.0/ar.xpi) = 475296 +SHA256 (xpi/thunderbird-i18n-38.3.0/ast.xpi) = c78b3457825cd7e20094f2f162e1d2a9afb371fe7f7a53c8a2c948121d22c381 +SIZE (xpi/thunderbird-i18n-38.3.0/ast.xpi) = 405872 +SHA256 (xpi/thunderbird-i18n-38.3.0/be.xpi) = 4a4219218cf0ddf3b46da27124ba13e7b8e1ddcf2a0698f16e114ab572948a4a +SIZE (xpi/thunderbird-i18n-38.3.0/be.xpi) = 442452 +SHA256 (xpi/thunderbird-i18n-38.3.0/bg.xpi) = d3a259e1c1be845c471e7678755b8e33ac0f896231a406a3a50e92f5a17bc2ee +SIZE (xpi/thunderbird-i18n-38.3.0/bg.xpi) = 506124 +SHA256 (xpi/thunderbird-i18n-38.3.0/bn-BD.xpi) = b56ae358e7b69096d914a0dab48eaa1c3d9b1a78aeeccb9e45fd0f5dbf361294 +SIZE (xpi/thunderbird-i18n-38.3.0/bn-BD.xpi) = 560626 +SHA256 (xpi/thunderbird-i18n-38.3.0/br.xpi) = 62aa01dc67b2dbab4a3966fc77c9e6e146caeabbcb9aa818d90a6e920f750ac3 +SIZE (xpi/thunderbird-i18n-38.3.0/br.xpi) = 449767 +SHA256 (xpi/thunderbird-i18n-38.3.0/ca.xpi) = cf16841892fed72ed9c590d78e6bb93e7c4057f8070821b0a927fbd767ae6b9b +SIZE (xpi/thunderbird-i18n-38.3.0/ca.xpi) = 450325 +SHA256 (xpi/thunderbird-i18n-38.3.0/cs.xpi) = 4f0cec48206a84694e97e64776d26fc0eda5baa1b019b596af3ab1fe05a3c788 +SIZE (xpi/thunderbird-i18n-38.3.0/cs.xpi) = 448724 +SHA256 (xpi/thunderbird-i18n-38.3.0/cy.xpi) = 96b695296966a61760485210adf967cda82f562290492ca4d34a435966925dc8 +SIZE (xpi/thunderbird-i18n-38.3.0/cy.xpi) = 434848 +SHA256 (xpi/thunderbird-i18n-38.3.0/da.xpi) = 908fb80a392d1aeb835bbf5e213f6dd62c9c1611b268641a50ff61dba3c4084c +SIZE (xpi/thunderbird-i18n-38.3.0/da.xpi) = 425828 +SHA256 (xpi/thunderbird-i18n-38.3.0/de.xpi) = a488ed7de074380ff02db8fc5941375f27579a41e2ee3c63d61f43e18ab88664 +SIZE (xpi/thunderbird-i18n-38.3.0/de.xpi) = 429877 +SHA256 (xpi/thunderbird-i18n-38.3.0/dsb.xpi) = 47b6b3c044a6a25d2e9c116a9f900f4a2aa2c74ae70fb5045b4175971517daf4 +SIZE (xpi/thunderbird-i18n-38.3.0/dsb.xpi) = 458487 +SHA256 (xpi/thunderbird-i18n-38.3.0/el.xpi) = 99b9b14ffd11b5a07aa6d89d947a73f378a113574ef53680c1c6992a8406292a +SIZE (xpi/thunderbird-i18n-38.3.0/el.xpi) = 493490 +SHA256 (xpi/thunderbird-i18n-38.3.0/en-GB.xpi) = 1bf89952a3b876fffda0d94cd291a90a68dbebd55d286de9cf9ea87c7c241420 +SIZE (xpi/thunderbird-i18n-38.3.0/en-GB.xpi) = 416572 +SHA256 (xpi/thunderbird-i18n-38.3.0/en-US.xpi) = aff083bcdbe2fe23c314a2725d0b27b02e4b4533f1c6e57b9542d891a915b715 +SIZE (xpi/thunderbird-i18n-38.3.0/en-US.xpi) = 416618 +SHA256 (xpi/thunderbird-i18n-38.3.0/es-AR.xpi) = 021493ea03343e7563c69ef78dcef55c2cbf32d3024d66b4ac50b3c4588414cf +SIZE (xpi/thunderbird-i18n-38.3.0/es-AR.xpi) = 442641 +SHA256 (xpi/thunderbird-i18n-38.3.0/es-ES.xpi) = fe97ee27daa33aae86e51f4f6ea16d703a4cdce713c550c6fef35b72730a4fa9 +SIZE (xpi/thunderbird-i18n-38.3.0/es-ES.xpi) = 376067 +SHA256 (xpi/thunderbird-i18n-38.3.0/et.xpi) = 7bf5963dfe145dae28f9b7f8b62cd97039eb4b165a00f64ba4d4c654b11c40b1 +SIZE (xpi/thunderbird-i18n-38.3.0/et.xpi) = 438262 +SHA256 (xpi/thunderbird-i18n-38.3.0/eu.xpi) = e12806a8e1808e6cdba0db393fb444e17144599bdd3634530b89549dc55281e9 +SIZE (xpi/thunderbird-i18n-38.3.0/eu.xpi) = 434837 +SHA256 (xpi/thunderbird-i18n-38.3.0/fi.xpi) = b12b8b0d3ac1d051e33c249add1baecacae6b9e71365f7604d82f2775e725cf1 +SIZE (xpi/thunderbird-i18n-38.3.0/fi.xpi) = 438889 +SHA256 (xpi/thunderbird-i18n-38.3.0/fr.xpi) = dca0f3d8019dfdd3ce0489fa77a06d2d5cb39aa08e0ae3d16bb44ab630f75375 +SIZE (xpi/thunderbird-i18n-38.3.0/fr.xpi) = 448227 +SHA256 (xpi/thunderbird-i18n-38.3.0/fy-NL.xpi) = efb561b34d258448ca28a0c54c681272436198e9f5bc771994b05b005116422f +SIZE (xpi/thunderbird-i18n-38.3.0/fy-NL.xpi) = 442162 +SHA256 (xpi/thunderbird-i18n-38.3.0/ga-IE.xpi) = b809cb068a54bfdd08016a798623653ab3b045a3df1e259e3ef29db6b16a61cb +SIZE (xpi/thunderbird-i18n-38.3.0/ga-IE.xpi) = 457412 +SHA256 (xpi/thunderbird-i18n-38.3.0/gd.xpi) = 66243be7f539ca8dc376ecd5e9cd221b660af2313c0e13fe00c6c6cbbb20d2bf +SIZE (xpi/thunderbird-i18n-38.3.0/gd.xpi) = 456317 +SHA256 (xpi/thunderbird-i18n-38.3.0/gl.xpi) = 28870ca3614baddd95288000e7336503ad2e62d31b04c33394066d5d52443e09 +SIZE (xpi/thunderbird-i18n-38.3.0/gl.xpi) = 457839 +SHA256 (xpi/thunderbird-i18n-38.3.0/he.xpi) = c74aae3a9048e60669292095c1c446f3806e73cee14d10cd0aab852c9bf19066 +SIZE (xpi/thunderbird-i18n-38.3.0/he.xpi) = 485867 +SHA256 (xpi/thunderbird-i18n-38.3.0/hr.xpi) = fc6ae694a971c7db823a1809ebdeec91231080e57caa0ff1ff05945a07755c66 +SIZE (xpi/thunderbird-i18n-38.3.0/hr.xpi) = 440420 +SHA256 (xpi/thunderbird-i18n-38.3.0/hu.xpi) = ebeb2ce1192b5baf8a0a6061cb1dd8e44bd11418a65d2dc118141d1219104407 +SIZE (xpi/thunderbird-i18n-38.3.0/hu.xpi) = 457988 +SHA256 (xpi/thunderbird-i18n-38.3.0/hsb.xpi) = 3f2ea2b3ff1b662d09b3d4d2d611ffaf2f6dffba7cf6b0599587b61355012141 +SIZE (xpi/thunderbird-i18n-38.3.0/hsb.xpi) = 456451 +SHA256 (xpi/thunderbird-i18n-38.3.0/hy-AM.xpi) = b36e1bb1b3bd81185a6ff3f330f04e44a3f51278d900971faac8205b73775323 +SIZE (xpi/thunderbird-i18n-38.3.0/hy-AM.xpi) = 500355 +SHA256 (xpi/thunderbird-i18n-38.3.0/id.xpi) = 952d1a2a5ba664e5542448d656e37f410d0da60f0d45d88bc128ffff3a193d34 +SIZE (xpi/thunderbird-i18n-38.3.0/id.xpi) = 483187 +SHA256 (xpi/thunderbird-i18n-38.3.0/is.xpi) = f97a4ad94f84bb1601d9c1b283ac84e33d191e5f6abbcbe1d6790c93c700c261 +SIZE (xpi/thunderbird-i18n-38.3.0/is.xpi) = 443008 +SHA256 (xpi/thunderbird-i18n-38.3.0/it.xpi) = fe0461ac92410b68f6d2d506dd9ed5e85d3adcf090acfe02f88c9aea977f53db +SIZE (xpi/thunderbird-i18n-38.3.0/it.xpi) = 369024 +SHA256 (xpi/thunderbird-i18n-38.3.0/ja.xpi) = 2aa5e04e9d6a2c10e410e8dcbc51e2d2c093f0d5dc573b3cdc21e37facafb6d6 +SIZE (xpi/thunderbird-i18n-38.3.0/ja.xpi) = 492861 +SHA256 (xpi/thunderbird-i18n-38.3.0/ko.xpi) = ed9e84328318cdac30e605a8be9c609bdb44828f4c288cdc4af141669ba33008 +SIZE (xpi/thunderbird-i18n-38.3.0/ko.xpi) = 454852 +SHA256 (xpi/thunderbird-i18n-38.3.0/lt.xpi) = cab27cb9348180a19fdf32cdb67e03e2d98af10f39a3a158c495a72fcb9544f3 +SIZE (xpi/thunderbird-i18n-38.3.0/lt.xpi) = 454572 +SHA256 (xpi/thunderbird-i18n-38.3.0/nb-NO.xpi) = 62d9c3bc2d0a19384a5df220b9b6a190aeb8ee6ce4327839d08ad3a09b0f5b7b +SIZE (xpi/thunderbird-i18n-38.3.0/nb-NO.xpi) = 434340 +SHA256 (xpi/thunderbird-i18n-38.3.0/nl.xpi) = ffd7ba1110afc8096d0c316a5e4fb55b26f9d9f689705f795b00d3c296ceb5d3 +SIZE (xpi/thunderbird-i18n-38.3.0/nl.xpi) = 435108 +SHA256 (xpi/thunderbird-i18n-38.3.0/nn-NO.xpi) = 48d4095cfdd47fa876c17a13592be4c4b31f57709d770ea8cefa9293e54d8f87 +SIZE (xpi/thunderbird-i18n-38.3.0/nn-NO.xpi) = 436623 +SHA256 (xpi/thunderbird-i18n-38.3.0/pa-IN.xpi) = 78d139e9894b9ea9913f921d78ee3b8894770c08ad32c8530e32782439a36383 +SIZE (xpi/thunderbird-i18n-38.3.0/pa-IN.xpi) = 530461 +SHA256 (xpi/thunderbird-i18n-38.3.0/pl.xpi) = 8805fa13167f5fa509f44a31729e39800d8f022224cd86012bb18fc19ac21815 +SIZE (xpi/thunderbird-i18n-38.3.0/pl.xpi) = 411509 +SHA256 (xpi/thunderbird-i18n-38.3.0/pt-BR.xpi) = c7e4582522489eb8149db41c4f2c7f7a4d3121f4f5bbcf136e456ece8189d975 +SIZE (xpi/thunderbird-i18n-38.3.0/pt-BR.xpi) = 443752 +SHA256 (xpi/thunderbird-i18n-38.3.0/pt-PT.xpi) = 639a3b6d32be9dcc8d2f2eb8a2cca1cdbdb444ef00b10b76aa6f8dc9035e5b4e +SIZE (xpi/thunderbird-i18n-38.3.0/pt-PT.xpi) = 442064 +SHA256 (xpi/thunderbird-i18n-38.3.0/rm.xpi) = 72be95aae125d50fc9565c8bf40623040e37c5ca511d0f0a38f3924ddf48c845 +SIZE (xpi/thunderbird-i18n-38.3.0/rm.xpi) = 442112 +SHA256 (xpi/thunderbird-i18n-38.3.0/ro.xpi) = 51a28a8984e070e6ca886238aa834ebd9bf845c536ba44407976db7c8bd0ab04 +SIZE (xpi/thunderbird-i18n-38.3.0/ro.xpi) = 448349 +SHA256 (xpi/thunderbird-i18n-38.3.0/ru.xpi) = 2e16abf3a7f2c133b8ee8a078834e81f141143cff35306056111830252e435b8 +SIZE (xpi/thunderbird-i18n-38.3.0/ru.xpi) = 437591 +SHA256 (xpi/thunderbird-i18n-38.3.0/si.xpi) = 0561d311a4607e9db41d913fdae19dfc4ef9d0135d1b6bbb4bec8ec60617256f +SIZE (xpi/thunderbird-i18n-38.3.0/si.xpi) = 535341 +SHA256 (xpi/thunderbird-i18n-38.3.0/sk.xpi) = 5c937a4cc87299365991743f791d89a7ea11693f93a538659715f3dadb7d5b0d +SIZE (xpi/thunderbird-i18n-38.3.0/sk.xpi) = 456606 +SHA256 (xpi/thunderbird-i18n-38.3.0/sl.xpi) = a5d64faf18f4e05ecc68830ad7623bc378d30ab041d4fa65d9d15970c552a628 +SIZE (xpi/thunderbird-i18n-38.3.0/sl.xpi) = 437847 +SHA256 (xpi/thunderbird-i18n-38.3.0/sq.xpi) = f82cbbfed792a36383a8a78bd66b499de837dbbf1c0386a579bb602db31400e8 +SIZE (xpi/thunderbird-i18n-38.3.0/sq.xpi) = 446897 +SHA256 (xpi/thunderbird-i18n-38.3.0/sr.xpi) = 2fc3d2fda47c02cc3299e42a178b329dd43d3e09cb1b79be85a490deac77302a +SIZE (xpi/thunderbird-i18n-38.3.0/sr.xpi) = 543314 +SHA256 (xpi/thunderbird-i18n-38.3.0/sv-SE.xpi) = 0eeb64f903032b8456ec9fe9b1484add7ac45aa76406479f44abdb30b5bce119 +SIZE (xpi/thunderbird-i18n-38.3.0/sv-SE.xpi) = 439633 +SHA256 (xpi/thunderbird-i18n-38.3.0/ta-LK.xpi) = 2f68f7c0596253b3fa2a3c9d895cde48d8bdc55f006264cae84eaa485ae10f37 +SIZE (xpi/thunderbird-i18n-38.3.0/ta-LK.xpi) = 558738 +SHA256 (xpi/thunderbird-i18n-38.3.0/tr.xpi) = be6321c62f3d5dceee8df225810ed42ecc76ec79c35330da62fdb11027eb9e10 +SIZE (xpi/thunderbird-i18n-38.3.0/tr.xpi) = 447799 +SHA256 (xpi/thunderbird-i18n-38.3.0/uk.xpi) = 3e64a3c28621b7e76b2b705cee2e721fddba762728ab180449873e69ccd9bcc2 +SIZE (xpi/thunderbird-i18n-38.3.0/uk.xpi) = 509600 +SHA256 (xpi/thunderbird-i18n-38.3.0/vi.xpi) = d2d03bccd1bf564415e38ef3980b4a7e0a32fe30cada1ea8c15c0f96babca151 +SIZE (xpi/thunderbird-i18n-38.3.0/vi.xpi) = 519843 +SHA256 (xpi/thunderbird-i18n-38.3.0/zh-CN.xpi) = 8c3455bbe76b167f94f1b1f7c836aafd7f5d11e5fa7cc4071bde0fe77b4bcf49 +SIZE (xpi/thunderbird-i18n-38.3.0/zh-CN.xpi) = 466412 +SHA256 (xpi/thunderbird-i18n-38.3.0/zh-TW.xpi) = fd10d148424c21731b877104ac50628c973348f8bc813573130503d08a0e045e +SIZE (xpi/thunderbird-i18n-38.3.0/zh-TW.xpi) = 466661 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird/Makefile Tue Oct 6 13:27:23 2015 (r398697) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 38.2.0 -PORTREVISION= 1 +DISTVERSION= 38.3.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -33,7 +32,7 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l EM_VERSION= 1.8.2 -L_VERSION= 4.0.2 +L_VERSION= 4.0.3 SSP_UNSAFE= yes USE_GECKO= gecko Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird/distinfo Tue Oct 6 13:27:23 2015 (r398697) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-38.2.0.source.tar.bz2) = 4881cf0a721a9d0204a6cff01e20a6c54010f4b576df2820cd699d17892ac2d0 -SIZE (thunderbird-38.2.0.source.tar.bz2) = 204448261 +SHA256 (thunderbird-38.3.0.source.tar.bz2) = 9f3cb19a5ceabc5e8fa31f782b6d92720a77ef2c2d6c7b63b3d792cde491c961 +SIZE (thunderbird-38.3.0.source.tar.bz2) = 204361602 SHA256 (enigmail-1.8.2.tar.gz) = 1d2700799bc52aaa8e8c9f7a0f5111281ff9fbdffc093cdff070657d574eb2a6 SIZE (enigmail-1.8.2.tar.gz) = 1604159 Modified: head/mail/thunderbird/files/patch-toolkit_mozapps_installer_packager_mk ============================================================================== --- head/mail/thunderbird/files/patch-toolkit_mozapps_installer_packager_mk Tue Oct 6 11:07:36 2015 (r398696) +++ head/mail/thunderbird/files/patch-toolkit_mozapps_installer_packager_mk Tue Oct 6 13:27:23 2015 (r398697) @@ -2,7 +2,7 @@ $OpenBSD: patch-toolkit_mozapps_installe install headers/idl/sdk libs only if xulrunner --- mozilla/toolkit/mozapps/installer/packager.mk.orig Fri Jun 1 14:04:20 2012 +++ mozilla/toolkit/mozapps/installer/packager.mk Tue Jun 5 07:55:51 2012 -@@ -886,7 +886,7 @@ endif +@@ -123,7 +123,7 @@ endif $(NSINSTALL) -D $(DESTDIR)$(bindir) $(RM) -f $(DESTDIR)$(bindir)/$(MOZ_APP_NAME) ln -s $(installdir)/$(MOZ_APP_NAME) $(DESTDIR)$(bindir) From owner-svn-ports-head@freebsd.org Tue Oct 6 13:54: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 1855999A46D; Tue, 6 Oct 2015 13:54:33 +0000 (UTC) (envelope-from erwin@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 08ED27C7; Tue, 6 Oct 2015 13:54:33 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96DsWvo091617; Tue, 6 Oct 2015 13:54:32 GMT (envelope-from erwin@FreeBSD.org) Received: (from erwin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96DsWHU091614; Tue, 6 Oct 2015 13:54:32 GMT (envelope-from erwin@FreeBSD.org) Message-Id: <201510061354.t96DsWHU091614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: erwin set sender to erwin@FreeBSD.org using -f From: Erwin Lansing Date: Tue, 6 Oct 2015 13:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398698 - head/dns/opendnssec 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: Tue, 06 Oct 2015 13:54:33 -0000 Author: erwin Date: Tue Oct 6 13:54:31 2015 New Revision: 398698 URL: https://svnweb.freebsd.org/changeset/ports/398698 Log: Upgrade from version 1.4.7 to 1.4.8.2 NEWS: * Support for RFC5011 style KSK rollovers. KSK section in the KASP now accepts element. * Enforcer: New repository option allows to generate keys with CKA_EXTRACTABLE attribute set to TRUE so keys can be wrapped and extracted from HSM. Bugfixes: * SUPPORT-145: EOF handling an ARM architecture caused signer to hang. * Fixed signer hitting assertion on short reply XFR handler. * Include revoke bit in keytag calculation. * Increased stacksize on some systems (thanks Patrik Lundin!). * Stop ods-signerd on SIGINT. Fixes port problem (reported by *geoffroy desvernay*) * Now also installs previous missing migration script convert_database.pl PR: 203574 Submitted by: Jaap Akkerhuis (maintainer) Sponsored by: DK Hostmaster A/S Modified: head/dns/opendnssec/Makefile head/dns/opendnssec/distinfo head/dns/opendnssec/pkg-plist Modified: head/dns/opendnssec/Makefile ============================================================================== --- head/dns/opendnssec/Makefile Tue Oct 6 13:27:23 2015 (r398697) +++ head/dns/opendnssec/Makefile Tue Oct 6 13:54:31 2015 (r398698) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opendnssec -PORTVERSION= 1.4.7 +PORTVERSION= 1.4.8.2 CATEGORIES= dns MASTER_SITES= http://dist.opendnssec.org/source/ @@ -49,7 +49,8 @@ SQLITE_USE= yes CONFIGURE_ARGS+= --with-database-backend=mysql USE_MYSQL= compat SCRIPTDATA= migrate_adapters_1.mysql migrate_keyshare_mysql.pl \ - migrate_zone_delete.mysql migrate_id_mysql.pl migrate_to_ng_mysql.pl + migrate_zone_delete.mysql migrate_id_mysql.pl \ + migrate_to_ng_mysql.pl migrate_1_4_8.mysql .endif .if ${PORT_OPTIONS:MSQLITE} @@ -57,7 +58,8 @@ CONFIGURE_ARGS+= --with-sqlite3=${LOCALB CONFIGURE_ARGS+= --with-database-backend=sqlite3 BUILD_DEPENDS+= sqlite3>=3.3.9:${PORTSDIR}/databases/sqlite3 SCRIPTDATA= database_create.sqlite3 migrate_keyshare_sqlite3.pl \ - migrate_adapters_1.sqlite3 migrate_to_ng_sqlite.pl + migrate_adapters_1.sqlite3 migrate_to_ng_sqlite.pl \ + migrate_1_4_8.sqlite3 .endif .if ${PORT_OPTIONS:MSOFTHSM} @@ -65,6 +67,8 @@ CONFIGURE_ARGS+= --with-pkcs11-softhsm=$ RUN_DEPENDS+= softhsm>=1.2.0:${PORTSDIR}/security/softhsm .endif +SCRIPTDATA+= convert_database.pl + PKGMESSAGE= ${WRKSRC}/MIGRATION pre-install: Modified: head/dns/opendnssec/distinfo ============================================================================== --- head/dns/opendnssec/distinfo Tue Oct 6 13:27:23 2015 (r398697) +++ head/dns/opendnssec/distinfo Tue Oct 6 13:54:31 2015 (r398698) @@ -1,2 +1,2 @@ -SHA256 (opendnssec-1.4.7.tar.gz) = 8f757ca9e88d6a6dc8f9b6e46a3da5e3a2881b3311fb91c428bcf906683ac41f -SIZE (opendnssec-1.4.7.tar.gz) = 1038884 +SHA256 (opendnssec-1.4.8.2.tar.gz) = 7fd553ee39173e807477ed1daff6ee2f8b1c83875cd2e52a1df3315bf0015513 +SIZE (opendnssec-1.4.8.2.tar.gz) = 1043171 Modified: head/dns/opendnssec/pkg-plist ============================================================================== --- head/dns/opendnssec/pkg-plist Tue Oct 6 13:27:23 2015 (r398697) +++ head/dns/opendnssec/pkg-plist Tue Oct 6 13:54:31 2015 (r398698) @@ -18,14 +18,17 @@ sbin/ods-signerd %%DATADIR%%/conf.rng %%SQLITE%%%%DATADIR%%/database_create.sqlite3 %%MYSQL%%%%DATADIR%%/database_create.mysql +%%DATADIR%%/convert_database.pl %%DATADIR%%/enforcerstate.rnc %%DATADIR%%/enforcerstate.rng %%DATADIR%%/kasp.rnc %%DATADIR%%/kasp.rng %%DATADIR%%/kasp2html.xsl +%%SQLITE%%%%DATADIR%%/migrate_1_4_8.sqlite3 %%SQLITE%%%%DATADIR%%/migrate_adapters_1.sqlite3 %%SQLITE%%%%DATADIR%%/migrate_keyshare_sqlite3.pl %%SQLITE%%%%DATADIR%%/migrate_to_ng_sqlite.pl +%%MYSQL%%%%DATADIR%%/migrate_1_4_8.mysql %%MYSQL%%%%DATADIR%%/migrate_adapters_1.mysql %%MYSQL%%%%DATADIR%%/migrate_keyshare_mysql.pl %%MYSQL%%%%DATADIR%%/migrate_zone_delete.mysql From owner-svn-ports-head@freebsd.org Tue Oct 6 14:09:19 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 4B1A499ACAC; Tue, 6 Oct 2015 14:09:19 +0000 (UTC) (envelope-from demon@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 3C05BCBB; Tue, 6 Oct 2015 14:09:19 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96E9JL0095474; Tue, 6 Oct 2015 14:09:19 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96E9ILd095472; Tue, 6 Oct 2015 14:09:18 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201510061409.t96E9ILd095472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Tue, 6 Oct 2015 14:09:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398699 - in head/net/haproxy-devel: . 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: Tue, 06 Oct 2015 14:09:19 -0000 Author: demon Date: Tue Oct 6 14:09:18 2015 New Revision: 398699 URL: https://svnweb.freebsd.org/changeset/ports/398699 Log: Update to -dev7 Deleted: head/net/haproxy-devel/files/patch-src-proto_tcp.c Modified: head/net/haproxy-devel/Makefile head/net/haproxy-devel/distinfo Modified: head/net/haproxy-devel/Makefile ============================================================================== --- head/net/haproxy-devel/Makefile Tue Oct 6 13:54:31 2015 (r398698) +++ head/net/haproxy-devel/Makefile Tue Oct 6 14:09:18 2015 (r398699) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= haproxy -DISTVERSION= 1.6-dev6 +DISTVERSION= 1.6-dev7 CATEGORIES= net www MASTER_SITES= http://haproxy.1wt.eu/download/1.6/src/devel/ PKGNAMESUFFIX= -devel Modified: head/net/haproxy-devel/distinfo ============================================================================== --- head/net/haproxy-devel/distinfo Tue Oct 6 13:54:31 2015 (r398698) +++ head/net/haproxy-devel/distinfo Tue Oct 6 14:09:18 2015 (r398699) @@ -1,4 +1,4 @@ -SHA256 (haproxy-1.6-dev6.tar.gz) = 5a322a0215461cdc71c8259eb1b7f44e1002482d93c91c6f3093c45287215e67 -SIZE (haproxy-1.6-dev6.tar.gz) = 1652340 +SHA256 (haproxy-1.6-dev7.tar.gz) = 1d2a86f035e5bcda9d20c98084329c68a36f72d4095b93198e4acafd048c1372 +SIZE (haproxy-1.6-dev7.tar.gz) = 1653547 SHA256 (deviceatlas-enterprise-c-2.1.zip) = a02fc29486d245b1c8d946c663b71ba981e88fee8d037f5bc1bf255deb287974 SIZE (deviceatlas-enterprise-c-2.1.zip) = 504286 From owner-svn-ports-head@freebsd.org Tue Oct 6 15:02: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 8B1D99B63CA; Tue, 6 Oct 2015 15:02:39 +0000 (UTC) (envelope-from wg@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 7C57FA46; Tue, 6 Oct 2015 15:02:39 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96F2dUo016971; Tue, 6 Oct 2015 15:02:39 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96F2dwG016970; Tue, 6 Oct 2015 15:02:39 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201510061502.t96F2dwG016970@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 6 Oct 2015 15:02:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398701 - 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: Tue, 06 Oct 2015 15:02:39 -0000 Author: wg Date: Tue Oct 6 15:02:38 2015 New Revision: 398701 URL: https://svnweb.freebsd.org/changeset/ports/398701 Log: security/vuxml: Document Zend Framework 1 vulnerability PR: 203462 Security: d3324fdb-6bf0-11e5-bc5e-00505699053e Security: CVE-2014-8089 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Oct 6 14:44:09 2015 (r398700) +++ head/security/vuxml/vuln.xml Tue Oct 6 15:02:38 2015 (r398701) @@ -58,6 +58,35 @@ Notes: --> + + ZendFramework1 -- SQL injection vulnerability + + + ZendFramework1 + 1.12.16 + + + + +

Zend Framework developers report:

+
+

The PDO adapters of Zend Framework 1 do not filter null bytes values + in SQL statements. A PDO adapter can treat null bytes in a query as a + string terminator, allowing an attacker to add arbitrary SQL + following a null byte, and thus create a SQL injection.

+
+ +
+ + http://www.openwall.com/lists/oss-security/2015/09/30/6 + http://framework.zend.com/security/advisory/ZF2015-08 + + + 2015-09-15 + 2015-10-06 + +
+ OpenSMTPD -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Tue Oct 6 15:03:35 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 822439B648D; Tue, 6 Oct 2015 15:03:35 +0000 (UTC) (envelope-from wg@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 71467B64; Tue, 6 Oct 2015 15:03:35 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96F3Zio017145; Tue, 6 Oct 2015 15:03:35 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96F3YnB017142; Tue, 6 Oct 2015 15:03:34 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201510061503.t96F3YnB017142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 6 Oct 2015 15:03:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398702 - head/www/zend-framework1 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: Tue, 06 Oct 2015 15:03:35 -0000 Author: wg Date: Tue Oct 6 15:03:33 2015 New Revision: 398702 URL: https://svnweb.freebsd.org/changeset/ports/398702 Log: www/zend-framework1: update to 1.12.16 PR: 203462 Security: d3324fdb-6bf0-11e5-bc5e-00505699053e Modified: head/www/zend-framework1/Makefile head/www/zend-framework1/distinfo head/www/zend-framework1/pkg-plist Modified: head/www/zend-framework1/Makefile ============================================================================== --- head/www/zend-framework1/Makefile Tue Oct 6 15:02:38 2015 (r398701) +++ head/www/zend-framework1/Makefile Tue Oct 6 15:03:33 2015 (r398702) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ZendFramework -PORTVERSION= 1.12.7 -PORTREVISION= 1 +PORTVERSION= 1.12.16 CATEGORIES= www MASTER_SITES= https://packages.zendframework.com/releases/${DISTNAME}/ PKGNAMESUFFIX= 1 @@ -53,8 +52,8 @@ INSTALL_DIRS= library extras/library ext # for a table of what PHP extensions are required for what ZF classes. .if ${PORT_OPTIONS:MREQPHP} -USE_PHP+= apc ctype curl dom gd hash iconv mbstring ldap mcrypt \ - pcre pdo session simplexml soap \ +USE_PHP+= ctype curl dom gd hash iconv mbstring ldap mcrypt \ + opcache pcre pdo session simplexml soap \ wddx xml zlib .if ${PHP_VER} == 52 USE_PHP+= sqlite Modified: head/www/zend-framework1/distinfo ============================================================================== --- head/www/zend-framework1/distinfo Tue Oct 6 15:02:38 2015 (r398701) +++ head/www/zend-framework1/distinfo Tue Oct 6 15:03:33 2015 (r398702) @@ -1,4 +1,4 @@ -SHA256 (ZendFramework-1.12.7.tar.gz) = 87a970b9eeea3e50b19446213ba715bb93dc3e581cf4532fb8e72c8a8c3973a8 -SIZE (ZendFramework-1.12.7.tar.gz) = 27254416 -SHA256 (ZendFramework-1.12.7-manual-en.tar.gz) = 7077ee7c92454b038a9532081e87c2fc210880c1e4ede4f5659bc88f9e182e6f -SIZE (ZendFramework-1.12.7-manual-en.tar.gz) = 3476746 +SHA256 (ZendFramework-1.12.16.tar.gz) = 9dcd5296836ac814cb0fe81d1c51c8ae617debda0bf30a7cb1d15784618d57dd +SIZE (ZendFramework-1.12.16.tar.gz) = 27598699 +SHA256 (ZendFramework-1.12.16-manual-en.tar.gz) = fe4d72d67ffcc05ffd652ff5572a76cb28dd91d2a0a61a51235776f0aeb20c6c +SIZE (ZendFramework-1.12.16-manual-en.tar.gz) = 3459279 Modified: head/www/zend-framework1/pkg-plist ============================================================================== --- head/www/zend-framework1/pkg-plist Tue Oct 6 15:02:38 2015 (r398701) +++ head/www/zend-framework1/pkg-plist Tue Oct 6 15:03:33 2015 (r398702) @@ -1,7 +1,5 @@ bin/zf bin/zf.php -@owner %%WWWOWN%% -@group %%WWWGRP%% %%DATADIR%%/externals/dojo/dijit/Calendar.js %%DATADIR%%/externals/dojo/dijit/CheckedMenuItem.js %%DATADIR%%/externals/dojo/dijit/ColorPalette.js @@ -2199,7 +2197,7 @@ bin/zf.php %%DATADIR%%/externals/dojo/dojox/highlight/languages/_all.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/_dynamic.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/_static.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/_www.js +%%DATADIR%%/externals/dojo/dojox/highlight/languages/_%%WWWOWN%%.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/cpp.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/css.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/delphi.js @@ -2209,7 +2207,7 @@ bin/zf.php %%DATADIR%%/externals/dojo/dojox/highlight/languages/java.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/javascript.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/_html.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/_www.js +%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/_%%WWWOWN%%.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/css.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/html.js %%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/javascript.js @@ -3951,6 +3949,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Http/Exception.php %%DATADIR%%/library/Zend/Http/Header/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Http/Header/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Http/Header/HeaderValue.php %%DATADIR%%/library/Zend/Http/Header/SetCookie.php %%DATADIR%%/library/Zend/Http/Response.php %%DATADIR%%/library/Zend/Http/Response/Stream.php @@ -4087,6 +4086,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/ar_SA.xml %%DATADIR%%/library/Zend/Locale/Data/ar_SD.xml %%DATADIR%%/library/Zend/Locale/Data/ar_SO.xml +%%DATADIR%%/library/Zend/Locale/Data/ar_SS.xml %%DATADIR%%/library/Zend/Locale/Data/ar_SY.xml %%DATADIR%%/library/Zend/Locale/Data/ar_TD.xml %%DATADIR%%/library/Zend/Locale/Data/ar_TN.xml @@ -4134,6 +4134,9 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/ca.xml %%DATADIR%%/library/Zend/Locale/Data/ca_AD.xml %%DATADIR%%/library/Zend/Locale/Data/ca_ES.xml +%%DATADIR%%/library/Zend/Locale/Data/ca_ES_VALENCIA.xml +%%DATADIR%%/library/Zend/Locale/Data/ca_FR.xml +%%DATADIR%%/library/Zend/Locale/Data/ca_IT.xml %%DATADIR%%/library/Zend/Locale/Data/cgg.xml %%DATADIR%%/library/Zend/Locale/Data/cgg_UG.xml %%DATADIR%%/library/Zend/Locale/Data/characters.xml @@ -4146,6 +4149,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/cy_GB.xml %%DATADIR%%/library/Zend/Locale/Data/da.xml %%DATADIR%%/library/Zend/Locale/Data/da_DK.xml +%%DATADIR%%/library/Zend/Locale/Data/da_GL.xml %%DATADIR%%/library/Zend/Locale/Data/dav.xml %%DATADIR%%/library/Zend/Locale/Data/dav_KE.xml %%DATADIR%%/library/Zend/Locale/Data/dayPeriods.xml @@ -4173,8 +4177,10 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/el_CY.xml %%DATADIR%%/library/Zend/Locale/Data/el_GR.xml %%DATADIR%%/library/Zend/Locale/Data/en.xml +%%DATADIR%%/library/Zend/Locale/Data/en_001.xml %%DATADIR%%/library/Zend/Locale/Data/en_150.xml %%DATADIR%%/library/Zend/Locale/Data/en_AG.xml +%%DATADIR%%/library/Zend/Locale/Data/en_AI.xml %%DATADIR%%/library/Zend/Locale/Data/en_AS.xml %%DATADIR%%/library/Zend/Locale/Data/en_AU.xml %%DATADIR%%/library/Zend/Locale/Data/en_BB.xml @@ -4184,11 +4190,17 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/en_BW.xml %%DATADIR%%/library/Zend/Locale/Data/en_BZ.xml %%DATADIR%%/library/Zend/Locale/Data/en_CA.xml +%%DATADIR%%/library/Zend/Locale/Data/en_CC.xml +%%DATADIR%%/library/Zend/Locale/Data/en_CK.xml %%DATADIR%%/library/Zend/Locale/Data/en_CM.xml +%%DATADIR%%/library/Zend/Locale/Data/en_CX.xml +%%DATADIR%%/library/Zend/Locale/Data/en_DG.xml %%DATADIR%%/library/Zend/Locale/Data/en_DM.xml %%DATADIR%%/library/Zend/Locale/Data/en_Dsrt.xml %%DATADIR%%/library/Zend/Locale/Data/en_Dsrt_US.xml +%%DATADIR%%/library/Zend/Locale/Data/en_ER.xml %%DATADIR%%/library/Zend/Locale/Data/en_FJ.xml +%%DATADIR%%/library/Zend/Locale/Data/en_FK.xml %%DATADIR%%/library/Zend/Locale/Data/en_FM.xml %%DATADIR%%/library/Zend/Locale/Data/en_GB.xml %%DATADIR%%/library/Zend/Locale/Data/en_GD.xml @@ -4202,6 +4214,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/en_IE.xml %%DATADIR%%/library/Zend/Locale/Data/en_IM.xml %%DATADIR%%/library/Zend/Locale/Data/en_IN.xml +%%DATADIR%%/library/Zend/Locale/Data/en_IO.xml %%DATADIR%%/library/Zend/Locale/Data/en_JE.xml %%DATADIR%%/library/Zend/Locale/Data/en_JM.xml %%DATADIR%%/library/Zend/Locale/Data/en_KE.xml @@ -4213,27 +4226,39 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/en_LS.xml %%DATADIR%%/library/Zend/Locale/Data/en_MG.xml %%DATADIR%%/library/Zend/Locale/Data/en_MH.xml +%%DATADIR%%/library/Zend/Locale/Data/en_MO.xml %%DATADIR%%/library/Zend/Locale/Data/en_MP.xml +%%DATADIR%%/library/Zend/Locale/Data/en_MS.xml %%DATADIR%%/library/Zend/Locale/Data/en_MT.xml %%DATADIR%%/library/Zend/Locale/Data/en_MU.xml %%DATADIR%%/library/Zend/Locale/Data/en_MW.xml %%DATADIR%%/library/Zend/Locale/Data/en_NA.xml +%%DATADIR%%/library/Zend/Locale/Data/en_NF.xml %%DATADIR%%/library/Zend/Locale/Data/en_NG.xml +%%DATADIR%%/library/Zend/Locale/Data/en_NR.xml +%%DATADIR%%/library/Zend/Locale/Data/en_NU.xml %%DATADIR%%/library/Zend/Locale/Data/en_NZ.xml %%DATADIR%%/library/Zend/Locale/Data/en_PG.xml %%DATADIR%%/library/Zend/Locale/Data/en_PH.xml %%DATADIR%%/library/Zend/Locale/Data/en_PK.xml +%%DATADIR%%/library/Zend/Locale/Data/en_PN.xml %%DATADIR%%/library/Zend/Locale/Data/en_PR.xml %%DATADIR%%/library/Zend/Locale/Data/en_PW.xml +%%DATADIR%%/library/Zend/Locale/Data/en_RW.xml %%DATADIR%%/library/Zend/Locale/Data/en_SB.xml %%DATADIR%%/library/Zend/Locale/Data/en_SC.xml +%%DATADIR%%/library/Zend/Locale/Data/en_SD.xml %%DATADIR%%/library/Zend/Locale/Data/en_SG.xml +%%DATADIR%%/library/Zend/Locale/Data/en_SH.xml %%DATADIR%%/library/Zend/Locale/Data/en_SL.xml %%DATADIR%%/library/Zend/Locale/Data/en_SS.xml +%%DATADIR%%/library/Zend/Locale/Data/en_SX.xml %%DATADIR%%/library/Zend/Locale/Data/en_SZ.xml %%DATADIR%%/library/Zend/Locale/Data/en_TC.xml +%%DATADIR%%/library/Zend/Locale/Data/en_TK.xml %%DATADIR%%/library/Zend/Locale/Data/en_TO.xml %%DATADIR%%/library/Zend/Locale/Data/en_TT.xml +%%DATADIR%%/library/Zend/Locale/Data/en_TV.xml %%DATADIR%%/library/Zend/Locale/Data/en_TZ.xml %%DATADIR%%/library/Zend/Locale/Data/en_UG.xml %%DATADIR%%/library/Zend/Locale/Data/en_UM.xml @@ -4248,6 +4273,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/en_ZM.xml %%DATADIR%%/library/Zend/Locale/Data/en_ZW.xml %%DATADIR%%/library/Zend/Locale/Data/eo.xml +%%DATADIR%%/library/Zend/Locale/Data/eo_001.xml %%DATADIR%%/library/Zend/Locale/Data/es.xml %%DATADIR%%/library/Zend/Locale/Data/es_419.xml %%DATADIR%%/library/Zend/Locale/Data/es_AR.xml @@ -4285,6 +4311,9 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/fa_AF.xml %%DATADIR%%/library/Zend/Locale/Data/fa_IR.xml %%DATADIR%%/library/Zend/Locale/Data/ff.xml +%%DATADIR%%/library/Zend/Locale/Data/ff_CM.xml +%%DATADIR%%/library/Zend/Locale/Data/ff_GN.xml +%%DATADIR%%/library/Zend/Locale/Data/ff_MR.xml %%DATADIR%%/library/Zend/Locale/Data/ff_SN.xml %%DATADIR%%/library/Zend/Locale/Data/fi.xml %%DATADIR%%/library/Zend/Locale/Data/fi_FI.xml @@ -4327,6 +4356,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/fr_NC.xml %%DATADIR%%/library/Zend/Locale/Data/fr_NE.xml %%DATADIR%%/library/Zend/Locale/Data/fr_PF.xml +%%DATADIR%%/library/Zend/Locale/Data/fr_PM.xml %%DATADIR%%/library/Zend/Locale/Data/fr_RE.xml %%DATADIR%%/library/Zend/Locale/Data/fr_RW.xml %%DATADIR%%/library/Zend/Locale/Data/fr_SC.xml @@ -4336,9 +4366,12 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/fr_TG.xml %%DATADIR%%/library/Zend/Locale/Data/fr_TN.xml %%DATADIR%%/library/Zend/Locale/Data/fr_VU.xml +%%DATADIR%%/library/Zend/Locale/Data/fr_WF.xml %%DATADIR%%/library/Zend/Locale/Data/fr_YT.xml %%DATADIR%%/library/Zend/Locale/Data/fur.xml %%DATADIR%%/library/Zend/Locale/Data/fur_IT.xml +%%DATADIR%%/library/Zend/Locale/Data/fy.xml +%%DATADIR%%/library/Zend/Locale/Data/fy_NL.xml %%DATADIR%%/library/Zend/Locale/Data/ga.xml %%DATADIR%%/library/Zend/Locale/Data/ga_IE.xml %%DATADIR%%/library/Zend/Locale/Data/gd.xml @@ -4348,11 +4381,13 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/gl_ES.xml %%DATADIR%%/library/Zend/Locale/Data/gsw.xml %%DATADIR%%/library/Zend/Locale/Data/gsw_CH.xml +%%DATADIR%%/library/Zend/Locale/Data/gsw_LI.xml %%DATADIR%%/library/Zend/Locale/Data/gu.xml %%DATADIR%%/library/Zend/Locale/Data/gu_IN.xml %%DATADIR%%/library/Zend/Locale/Data/guz.xml %%DATADIR%%/library/Zend/Locale/Data/guz_KE.xml %%DATADIR%%/library/Zend/Locale/Data/gv.xml +%%DATADIR%%/library/Zend/Locale/Data/gv_IM.xml %%DATADIR%%/library/Zend/Locale/Data/ha.xml %%DATADIR%%/library/Zend/Locale/Data/ha_Latn.xml %%DATADIR%%/library/Zend/Locale/Data/ha_Latn_GH.xml @@ -4435,12 +4470,16 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/kw.xml %%DATADIR%%/library/Zend/Locale/Data/kw_GB.xml %%DATADIR%%/library/Zend/Locale/Data/ky.xml +%%DATADIR%%/library/Zend/Locale/Data/ky_Cyrl.xml +%%DATADIR%%/library/Zend/Locale/Data/ky_Cyrl_KG.xml %%DATADIR%%/library/Zend/Locale/Data/lag.xml %%DATADIR%%/library/Zend/Locale/Data/lag_TZ.xml %%DATADIR%%/library/Zend/Locale/Data/languageInfo.xml %%DATADIR%%/library/Zend/Locale/Data/lg.xml %%DATADIR%%/library/Zend/Locale/Data/lg_UG.xml %%DATADIR%%/library/Zend/Locale/Data/likelySubtags.xml +%%DATADIR%%/library/Zend/Locale/Data/lkt.xml +%%DATADIR%%/library/Zend/Locale/Data/lkt_US.xml %%DATADIR%%/library/Zend/Locale/Data/ln.xml %%DATADIR%%/library/Zend/Locale/Data/ln_AO.xml %%DATADIR%%/library/Zend/Locale/Data/ln_CD.xml @@ -4496,6 +4535,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/naq_NA.xml %%DATADIR%%/library/Zend/Locale/Data/nb.xml %%DATADIR%%/library/Zend/Locale/Data/nb_NO.xml +%%DATADIR%%/library/Zend/Locale/Data/nb_SJ.xml %%DATADIR%%/library/Zend/Locale/Data/nd.xml %%DATADIR%%/library/Zend/Locale/Data/nd_ZW.xml %%DATADIR%%/library/Zend/Locale/Data/ne.xml @@ -4504,6 +4544,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/nl.xml %%DATADIR%%/library/Zend/Locale/Data/nl_AW.xml %%DATADIR%%/library/Zend/Locale/Data/nl_BE.xml +%%DATADIR%%/library/Zend/Locale/Data/nl_BQ.xml %%DATADIR%%/library/Zend/Locale/Data/nl_CW.xml %%DATADIR%%/library/Zend/Locale/Data/nl_NL.xml %%DATADIR%%/library/Zend/Locale/Data/nl_SR.xml @@ -4678,6 +4719,9 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/tzm.xml %%DATADIR%%/library/Zend/Locale/Data/tzm_Latn.xml %%DATADIR%%/library/Zend/Locale/Data/tzm_Latn_MA.xml +%%DATADIR%%/library/Zend/Locale/Data/ug.xml +%%DATADIR%%/library/Zend/Locale/Data/ug_Arab.xml +%%DATADIR%%/library/Zend/Locale/Data/ug_Arab_CN.xml %%DATADIR%%/library/Zend/Locale/Data/uk.xml %%DATADIR%%/library/Zend/Locale/Data/uk_UA.xml %%DATADIR%%/library/Zend/Locale/Data/ur.xml @@ -4700,6 +4744,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/vi.xml %%DATADIR%%/library/Zend/Locale/Data/vi_VN.xml %%DATADIR%%/library/Zend/Locale/Data/vo.xml +%%DATADIR%%/library/Zend/Locale/Data/vo_001.xml %%DATADIR%%/library/Zend/Locale/Data/vun.xml %%DATADIR%%/library/Zend/Locale/Data/vun_TZ.xml %%DATADIR%%/library/Zend/Locale/Data/wae.xml @@ -4714,7 +4759,10 @@ bin/zf.php %%DATADIR%%/library/Zend/Locale/Data/yav.xml %%DATADIR%%/library/Zend/Locale/Data/yav_CM.xml %%DATADIR%%/library/Zend/Locale/Data/yo.xml +%%DATADIR%%/library/Zend/Locale/Data/yo_BJ.xml %%DATADIR%%/library/Zend/Locale/Data/yo_NG.xml +%%DATADIR%%/library/Zend/Locale/Data/zgh.xml +%%DATADIR%%/library/Zend/Locale/Data/zgh_MA.xml %%DATADIR%%/library/Zend/Locale/Data/zh.xml %%DATADIR%%/library/Zend/Locale/Data/zh_Hans.xml %%DATADIR%%/library/Zend/Locale/Data/zh_Hans_CN.xml @@ -4756,6 +4804,8 @@ bin/zf.php %%DATADIR%%/library/Zend/Log/Writer/ZendMonitor.php %%DATADIR%%/library/Zend/Mail.php %%DATADIR%%/library/Zend/Mail/Exception.php +%%DATADIR%%/library/Zend/Mail/Header/HeaderName.php +%%DATADIR%%/library/Zend/Mail/Header/HeaderValue.php %%DATADIR%%/library/Zend/Mail/Message.php %%DATADIR%%/library/Zend/Mail/Message/File.php %%DATADIR%%/library/Zend/Mail/Message/Interface.php @@ -5283,153 +5333,19 @@ bin/zf.php %%DATADIR%%/library/Zend/Service/Amazon/Sqs.php %%DATADIR%%/library/Zend/Service/Amazon/Sqs/Exception.php %%DATADIR%%/library/Zend/Service/Audioscrobbler.php +%%DATADIR%%/library/Zend/Service/Console/Command.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/Argv.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/ConfigFile.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/Env.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/ParameterSourceInterface.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/Prompt.php +%%DATADIR%%/library/Zend/Service/Console/Command/ParameterSource/StdIn.php +%%DATADIR%%/library/Zend/Service/Console/Exception.php %%DATADIR%%/library/Zend/Service/Delicious.php %%DATADIR%%/library/Zend/Service/Delicious/Exception.php %%DATADIR%%/library/Zend/Service/Delicious/Post.php %%DATADIR%%/library/Zend/Service/Delicious/PostList.php %%DATADIR%%/library/Zend/Service/Delicious/SimplePost.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/BaseUserService.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/BaseUserService/AccountBalance.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/ClientAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/Soap.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceAccount.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceSchedule.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/Participant.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantDetail.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Credential.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/IpLocation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/IpLocation/IpAddress.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch/SearchParameters.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/ChangeQuotaPool.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/GetAccountBalance.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/GetQuotaInformation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/AddConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CommitConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceListRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceStatusRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateListRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetParticipantStatusRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetRunningConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/NewParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/IpLocation/LocateIPRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/LocalSearch/LocalSearchRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/RequestAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendFlashSMS.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendSMS.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendSmsAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/GetValidatedNumbers.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/Invalidate.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/SendValidationKeyword.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/Validate.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/CallStatus.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCallSequenced.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/TearDownCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/ChangeQuotaPoolResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/GetAccountBalanceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/GetQuotaInformationResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CCSResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CommitConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/ConferenceCallAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/CityType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/GeoCoordinatesType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/IPAddressLocationType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/RegionType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ResponseAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/GetTokensResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Interface.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/SecurityTokenResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendFlashSMSResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendSMSResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendSmsAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/GetValidatedNumbersResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/InvalidateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/SendValidationKeywordResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidatedNumber.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatus2Response.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallSequencedResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/TearDownCallResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/VoiceButlerAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SecurityTokenServer.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SecurityTokenServer/Cache.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SendSms.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SmsValidation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/VoiceCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/IPLocation.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/IPLocation.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ODGBaseUserService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ODGBaseUserService.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/SmsService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/SmsValidationUserService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/TokenService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/VoiceButlerService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/VoiceButlerService.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ccsPort.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ccsPort.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/localsearch.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/localsearch.xsd %%DATADIR%%/library/Zend/Service/Ebay/Abstract.php %%DATADIR%%/library/Zend/Service/Ebay/Exception.php %%DATADIR%%/library/Zend/Service/Ebay/Finding.php @@ -5514,26 +5430,6 @@ bin/zf.php %%DATADIR%%/library/Zend/Service/StrikeIron/SalesUseTaxBasic.php %%DATADIR%%/library/Zend/Service/StrikeIron/USAddressVerification.php %%DATADIR%%/library/Zend/Service/StrikeIron/ZipCodeInfo.php -%%DATADIR%%/library/Zend/Service/Technorati.php -%%DATADIR%%/library/Zend/Service/Technorati/Author.php -%%DATADIR%%/library/Zend/Service/Technorati/BlogInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/CosmosResult.php -%%DATADIR%%/library/Zend/Service/Technorati/CosmosResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/DailyCountsResult.php -%%DATADIR%%/library/Zend/Service/Technorati/DailyCountsResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/Exception.php -%%DATADIR%%/library/Zend/Service/Technorati/GetInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/KeyInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/Result.php -%%DATADIR%%/library/Zend/Service/Technorati/ResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/SearchResult.php -%%DATADIR%%/library/Zend/Service/Technorati/SearchResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/TagResult.php -%%DATADIR%%/library/Zend/Service/Technorati/TagResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/TagsResult.php -%%DATADIR%%/library/Zend/Service/Technorati/TagsResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/Utils.php -%%DATADIR%%/library/Zend/Service/Technorati/Weblog.php %%DATADIR%%/library/Zend/Service/Twitter.php %%DATADIR%%/library/Zend/Service/Twitter/Exception.php %%DATADIR%%/library/Zend/Service/Twitter/Response.php @@ -5644,6 +5540,7 @@ bin/zf.php %%DATADIR%%/library/Zend/Session/SaveHandler/Exception.php %%DATADIR%%/library/Zend/Session/SaveHandler/Interface.php %%DATADIR%%/library/Zend/Session/Validator/Abstract.php +%%DATADIR%%/library/Zend/Session/Validator/Exception.php %%DATADIR%%/library/Zend/Session/Validator/HttpUserAgent.php %%DATADIR%%/library/Zend/Session/Validator/Interface.php %%DATADIR%%/library/Zend/Soap/AutoDiscover.php @@ -6119,8 +6016,6 @@ bin/zf.php %%DATADIR%%/library/Zend/XmlRpc/Value/Scalar.php %%DATADIR%%/library/Zend/XmlRpc/Value/String.php %%DATADIR%%/library/Zend/XmlRpc/Value/Struct.php -@owner -@group %%PORTDOCS%%%%DOCSDIR%%/INSTALL.md %%PORTDOCS%%%%DOCSDIR%%/README.md %%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.coding-style.html @@ -6470,10 +6365,7 @@ bin/zf.php %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.load.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.pluginloader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.autoload.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.constructor.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.register.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.set-options.html +%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.autoload.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.constructor.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.is-fallback-autoloader.html @@ -6612,7 +6504,6 @@ bin/zf.php %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.sqs.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.audioscrobbler.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.delicious.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.developergarden.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.ebay.finding.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.ebay.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.flickr.html @@ -6628,7 +6519,6 @@ bin/zf.php %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.advanced-uses.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.bundled-services.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.technorati.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.twitter.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.diagnostics.manager.html %%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.html @@ -6710,8 +6600,6 @@ bin/zf.php %%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.html %%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.introduction.html %%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.view.html -@owner %%WWWOWN%% -@group %%WWWGRP%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/.zfproject.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/Bootstrap.php @@ -8931,6 +8819,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/testImage.jpg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/AllTests.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/ClientTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/CommonHttpTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/CurlTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/ProxyAdapterTest.php @@ -8955,9 +8844,13 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testHeaders.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testHttpAuth.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testMultibyteChunkedResponseZF6218.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testOptionsData.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testPatchData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testPostData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testPutData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawDeleteData.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawOptionsData.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawPatchData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawPostData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawPutData.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRedirections.php @@ -8969,6 +8862,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/CookieJarTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/CookieTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Header/AllTests.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Header/HeaderValueTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Header/SetCookieTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/ResponseTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/DesktopDevice.php @@ -8990,6 +8884,9 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_403_nomessage %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_404 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_500 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_587 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_587_empty +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_587_null %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_chunked %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_chunked_case %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_crlf @@ -9082,6 +8979,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models/ZendLoaderAutoloaderResourceMethodOverloading.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models/ZendLoaderAutoloaderResourceTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/services/ZendLoaderAutoloaderResourceTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderFactoryClassMapLoaderTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderFactoryTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderMultiVersionTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderTest.php @@ -9145,6 +9043,9 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/_files/Zfns/Writer.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/FileTransportTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/Header/AllTests.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/Header/HeaderNameTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/Header/HeaderValueTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/ImapTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/InterfaceTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MailTest.php @@ -9311,6 +9212,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Filter/RunLengthTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/NamedDestinationsTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/ProcessingTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/PdfWithFields.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/ZF-8462.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/pdfarchiving.pdf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/stamp.jpg @@ -9329,6 +9231,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraMono.ttf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraSe.ttf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraSeBd.ttf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/PdfTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/ConsoleTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/JsPullTest.php @@ -9533,6 +9436,7 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/OfflineTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/OnlineTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/PageTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/OfflineTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/OnlineTest.php @@ -9557,24 +9461,6 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/PublicDataTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/SimplePostTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllOfflineTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllOnlineTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/BaseUserServiceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/ConferenceCallTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/IpLocationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/LocalSearchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineBaseUserServiceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineConferenceCallTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineCredentialTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineIpLocationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineLocalSearchParametersTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineSecurityTokenServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SecurityTokenServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SendSmsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SmsValidationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/VoiceCallTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/AbstractTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/AllTests.php @@ -9767,70 +9653,6 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/StrikeIronTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/AuthorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/BlogInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/CosmosResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/CosmosResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/DailyCountsResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/DailyCountsResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/GetInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/KeyInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/ResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/ResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/SearchResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/SearchResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagsResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagsResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TechnoratiTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/UtilsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/WeblogTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/MISSING -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestAuthor.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestAuthorNullFields.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoErrorUrlNotWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoResultUrlWithInvalidSchema.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsErrorUrlNotWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogLinkClaim.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblogClaim.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblogClaim2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteUrlWithInvalidSchema.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteWeblogWithMissingInboundblogs.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestSearchResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestSearchSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagsResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTopTagsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTopTagsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestWeblogTwoAuthors.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/TwitterTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/account.verify_credentials.json @@ -10369,7 +10191,9 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Wildfire/WildfireTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Wildfire/_files/IndexController.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Xml/AllTests.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Xml/MultibyteTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Xml/SecurityTest.php +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Xml/TestAsset/Security.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/BigIntegerValueTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/ClientTest.php @@ -10395,2091 +10219,14 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/ClassNonexistent.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Interface1.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir2/Class2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/install_dependencies.sh +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/config.ini +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/php52_config.ini +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/php52_install_dependencies.sh +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/php7_config.ini %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/phpunit.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/languages/AllTests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/languages/Zend_ValidateTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/runalltests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/runtests.sh -@dir %%DATADIR%%/externals/dojo/dijit/_base -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ar -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ca -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/cs -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/da -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/de -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/el -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/es -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/fi -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/fr -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/he -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/hu -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/it -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ja -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/kk -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ko -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/nb -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/nl -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/pl -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/pt -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ro -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/ru -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/sk -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/sl -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/sv -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/th -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/tr -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/zh -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dijit/_editor/nls -@dir %%DATADIR%%/externals/dojo/dijit/_editor/plugins -@dir %%DATADIR%%/externals/dojo/dijit/_editor -@dir %%DATADIR%%/externals/dojo/dijit/_tree -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ar -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ca -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/cs -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/da -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/de -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/el -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/es -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/fi -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/fr -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/he -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/hu -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/it -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ja -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/kk -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ko -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/nb -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/nl -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/pl -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/pt -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ro -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/ru -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/sk -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/sl -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/sv -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/th -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/tr -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/zh -@dir %%DATADIR%%/externals/dojo/dijit/form/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dijit/form/nls -@dir %%DATADIR%%/externals/dojo/dijit/form/templates -@dir %%DATADIR%%/externals/dojo/dijit/form -@dir %%DATADIR%%/externals/dojo/dijit/icons/images -@dir %%DATADIR%%/externals/dojo/dijit/icons -@dir %%DATADIR%%/externals/dojo/dijit/layout/templates -@dir %%DATADIR%%/externals/dojo/dijit/layout -@dir %%DATADIR%%/externals/dojo/dijit/nls/ar -@dir %%DATADIR%%/externals/dojo/dijit/nls/ca -@dir %%DATADIR%%/externals/dojo/dijit/nls/cs -@dir %%DATADIR%%/externals/dojo/dijit/nls/da -@dir %%DATADIR%%/externals/dojo/dijit/nls/de -@dir %%DATADIR%%/externals/dojo/dijit/nls/el -@dir %%DATADIR%%/externals/dojo/dijit/nls/es -@dir %%DATADIR%%/externals/dojo/dijit/nls/fi -@dir %%DATADIR%%/externals/dojo/dijit/nls/fr -@dir %%DATADIR%%/externals/dojo/dijit/nls/he -@dir %%DATADIR%%/externals/dojo/dijit/nls/hu -@dir %%DATADIR%%/externals/dojo/dijit/nls/it -@dir %%DATADIR%%/externals/dojo/dijit/nls/ja -@dir %%DATADIR%%/externals/dojo/dijit/nls/kk -@dir %%DATADIR%%/externals/dojo/dijit/nls/ko -@dir %%DATADIR%%/externals/dojo/dijit/nls/nb -@dir %%DATADIR%%/externals/dojo/dijit/nls/nl -@dir %%DATADIR%%/externals/dojo/dijit/nls/pl -@dir %%DATADIR%%/externals/dojo/dijit/nls/pt -@dir %%DATADIR%%/externals/dojo/dijit/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dijit/nls/ro -@dir %%DATADIR%%/externals/dojo/dijit/nls/ru -@dir %%DATADIR%%/externals/dojo/dijit/nls/sk -@dir %%DATADIR%%/externals/dojo/dijit/nls/sl -@dir %%DATADIR%%/externals/dojo/dijit/nls/sv -@dir %%DATADIR%%/externals/dojo/dijit/nls/th -@dir %%DATADIR%%/externals/dojo/dijit/nls/tr -@dir %%DATADIR%%/externals/dojo/dijit/nls/zh -@dir %%DATADIR%%/externals/dojo/dijit/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dijit/nls -@dir %%DATADIR%%/externals/dojo/dijit/resources -@dir %%DATADIR%%/externals/dojo/dijit/templates -@dir %%DATADIR%%/externals/dojo/dijit/tests/_data -@dir %%DATADIR%%/externals/dojo/dijit/tests -@dir %%DATADIR%%/externals/dojo/dijit/themes/a11y -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro/form/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro/form -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro/layout -@dir %%DATADIR%%/externals/dojo/dijit/themes/claro -@dir %%DATADIR%%/externals/dojo/dijit/themes/nihilo/form -@dir %%DATADIR%%/externals/dojo/dijit/themes/nihilo/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout -@dir %%DATADIR%%/externals/dojo/dijit/themes/nihilo -@dir %%DATADIR%%/externals/dojo/dijit/themes/soria/form -@dir %%DATADIR%%/externals/dojo/dijit/themes/soria/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/soria/layout -@dir %%DATADIR%%/externals/dojo/dijit/themes/soria -@dir %%DATADIR%%/externals/dojo/dijit/themes/themeTesterImages -@dir %%DATADIR%%/externals/dojo/dijit/themes/tundra/form -@dir %%DATADIR%%/externals/dojo/dijit/themes/tundra/images -@dir %%DATADIR%%/externals/dojo/dijit/themes/tundra/layout -@dir %%DATADIR%%/externals/dojo/dijit/themes/tundra -@dir %%DATADIR%%/externals/dojo/dijit/themes -@dir %%DATADIR%%/externals/dojo/dijit/tree -@dir %%DATADIR%%/externals/dojo/dijit -@dir %%DATADIR%%/externals/dojo/dojo/_base/_loader -@dir %%DATADIR%%/externals/dojo/dojo/_base -@dir %%DATADIR%%/externals/dojo/dojo/_firebug -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/ar -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/ca -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/cs -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/da -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/de -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/el -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/en -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-au -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-ca -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-gb -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/es -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/fi -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/fr -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/he -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/hu -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/it -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/ja -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/ko -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/nb -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/nl -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/pl -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/pt -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/ru -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/sk -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/sl -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/sv -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/th -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/tr -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/zh -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dojo/cldr/nls -@dir %%DATADIR%%/externals/dojo/dojo/cldr -@dir %%DATADIR%%/externals/dojo/dojo/data/api -@dir %%DATADIR%%/externals/dojo/dojo/data/util -@dir %%DATADIR%%/externals/dojo/dojo/data -@dir %%DATADIR%%/externals/dojo/dojo/date -@dir %%DATADIR%%/externals/dojo/dojo/dnd -@dir %%DATADIR%%/externals/dojo/dojo/fx -@dir %%DATADIR%%/externals/dojo/dojo/io -@dir %%DATADIR%%/externals/dojo/dojo/nls/ar -@dir %%DATADIR%%/externals/dojo/dojo/nls/ca -@dir %%DATADIR%%/externals/dojo/dojo/nls/cs -@dir %%DATADIR%%/externals/dojo/dojo/nls/da -@dir %%DATADIR%%/externals/dojo/dojo/nls/de -@dir %%DATADIR%%/externals/dojo/dojo/nls/el -@dir %%DATADIR%%/externals/dojo/dojo/nls/es -@dir %%DATADIR%%/externals/dojo/dojo/nls/fi -@dir %%DATADIR%%/externals/dojo/dojo/nls/fr -@dir %%DATADIR%%/externals/dojo/dojo/nls/he -@dir %%DATADIR%%/externals/dojo/dojo/nls/hu -@dir %%DATADIR%%/externals/dojo/dojo/nls/it -@dir %%DATADIR%%/externals/dojo/dojo/nls/ja -@dir %%DATADIR%%/externals/dojo/dojo/nls/kk -@dir %%DATADIR%%/externals/dojo/dojo/nls/ko -@dir %%DATADIR%%/externals/dojo/dojo/nls/nb -@dir %%DATADIR%%/externals/dojo/dojo/nls/nl -@dir %%DATADIR%%/externals/dojo/dojo/nls/pl -@dir %%DATADIR%%/externals/dojo/dojo/nls/pt -@dir %%DATADIR%%/externals/dojo/dojo/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dojo/nls/ro -@dir %%DATADIR%%/externals/dojo/dojo/nls/ru -@dir %%DATADIR%%/externals/dojo/dojo/nls/sk -@dir %%DATADIR%%/externals/dojo/dojo/nls/sl -@dir %%DATADIR%%/externals/dojo/dojo/nls/sv -@dir %%DATADIR%%/externals/dojo/dojo/nls/th -@dir %%DATADIR%%/externals/dojo/dojo/nls/tr -@dir %%DATADIR%%/externals/dojo/dojo/nls/zh -@dir %%DATADIR%%/externals/dojo/dojo/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dojo/nls -@dir %%DATADIR%%/externals/dojo/dojo/resources/images -@dir %%DATADIR%%/externals/dojo/dojo/resources -@dir %%DATADIR%%/externals/dojo/dojo/rpc -@dir %%DATADIR%%/externals/dojo/dojo @dir %%DATADIR%%/externals/dojo/dojox/analytics/logger/logs -@dir %%DATADIR%%/externals/dojo/dojox/analytics/logger -@dir %%DATADIR%%/externals/dojo/dojox/analytics/plugins -@dir %%DATADIR%%/externals/dojo/dojox/analytics/profiles -@dir %%DATADIR%%/externals/dojo/dojox/analytics -@dir %%DATADIR%%/externals/dojo/dojox/atom/io -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/nls -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget/templates -@dir %%DATADIR%%/externals/dojo/dojox/atom/widget -@dir %%DATADIR%%/externals/dojo/dojox/atom -@dir %%DATADIR%%/externals/dojo/dojox/av/resources -@dir %%DATADIR%%/externals/dojo/dojox/av/widget/resources/images -@dir %%DATADIR%%/externals/dojo/dojox/av/widget/resources -@dir %%DATADIR%%/externals/dojo/dojox/av/widget -@dir %%DATADIR%%/externals/dojo/dojox/av -@dir %%DATADIR%%/externals/dojo/dojox/charting/action2d -@dir %%DATADIR%%/externals/dojo/dojox/charting/axis2d -@dir %%DATADIR%%/externals/dojo/dojox/charting/plot2d -@dir %%DATADIR%%/externals/dojo/dojox/charting/plot3d -@dir %%DATADIR%%/externals/dojo/dojox/charting/scaler -@dir %%DATADIR%%/externals/dojo/dojox/charting/themes/ET -@dir %%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit -@dir %%DATADIR%%/externals/dojo/dojox/charting/themes *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Oct 6 15:37: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 1829C9D0F84; Tue, 6 Oct 2015 15:37:33 +0000 (UTC) (envelope-from koobs@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 08C90C7D; Tue, 6 Oct 2015 15:37:33 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96FbW6H028001; Tue, 6 Oct 2015 15:37:32 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96FbWIn027998; Tue, 6 Oct 2015 15:37:32 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201510061537.t96FbWIn027998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 6 Oct 2015 15:37:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398703 - in head/www/py-gandi.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: Tue, 06 Oct 2015 15:37:33 -0000 Author: koobs Date: Tue Oct 6 15:37:31 2015 New Revision: 398703 URL: https://svnweb.freebsd.org/changeset/ports/398703 Log: www/py-gandi.cli: Update to 0.16 - Update to 0.16 - Update click RUN_DEPENDS version [1] - Add NO_ARCH - Repatch setup.py (TODO: Upstream changes) Changes: https://github.com/Gandi/gandi.cli/blob/0.16/CHANGES.rst [1] https://github.com/Gandi/gandi.cli/issues/147 Requested by: bapt Modified: head/www/py-gandi.cli/Makefile head/www/py-gandi.cli/distinfo head/www/py-gandi.cli/files/patch-setup.py Modified: head/www/py-gandi.cli/Makefile ============================================================================== --- head/www/py-gandi.cli/Makefile Tue Oct 6 15:03:33 2015 (r398702) +++ head/www/py-gandi.cli/Makefile Tue Oct 6 15:37:31 2015 (r398703) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gandi.cli -PORTVERSION= 0.15 +PORTVERSION= 0.16 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ - ${PYTHON_PKGNAMEPREFIX}click>=3.0:${PORTSDIR}/devel/py-click \ + ${PYTHON_PKGNAMEPREFIX}click>=3.1:${PORTSDIR}/devel/py-click \ ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}ipy>0:${PORTSDIR}/net-mgmt/py-ipy TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ @@ -29,6 +29,8 @@ TESTS_BUILD_DEPENDS= ${RUN_DEPENDS} \ USES= python USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + .include .if ${PYTHON_REL} < 3300 Modified: head/www/py-gandi.cli/distinfo ============================================================================== --- head/www/py-gandi.cli/distinfo Tue Oct 6 15:03:33 2015 (r398702) +++ head/www/py-gandi.cli/distinfo Tue Oct 6 15:37:31 2015 (r398703) @@ -1,2 +1,2 @@ -SHA256 (gandi.cli-0.15.tar.gz) = 84c6e0aaa5fd509ab6b2e912a683f9090dc68ef122ae1a9df32ed0393df1ab7b -SIZE (gandi.cli-0.15.tar.gz) = 359801 +SHA256 (gandi.cli-0.16.tar.gz) = e417f7f7f5f3a32ac777f7c1c74943d4604c7ed35dbb3f6c45fd2dafcdaa3acc +SIZE (gandi.cli-0.16.tar.gz) = 379521 Modified: head/www/py-gandi.cli/files/patch-setup.py ============================================================================== --- head/www/py-gandi.cli/files/patch-setup.py Tue Oct 6 15:03:33 2015 (r398702) +++ head/www/py-gandi.cli/files/patch-setup.py Tue Oct 6 15:37:31 2015 (r398703) @@ -1,6 +1,6 @@ ---- setup.py.orig 2015-04-01 08:43:36 UTC +--- setup.py.orig 2015-09-18 16:37:16 UTC +++ setup.py -@@ -6,19 +6,20 @@ import os +@@ -6,11 +6,11 @@ import os import sys from setuptools import setup, find_packages @@ -9,27 +9,26 @@ here = os.path.abspath(os.path.dirname(__file__)) -README = open(os.path.join(here, 'README.md')).read() -CHANGES = open(os.path.join(here, 'CHANGES.rst')).read() +- +README = open(os.path.join(here, 'README.md'), encoding='utf-8').read() +CHANGES = open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8').read() - with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: version = re.compile(r".*__version__ = '(.*?)'", - re.S).match(v_file.read()).group(1) +@@ -18,7 +18,7 @@ with open(os.path.join(here, 'gandi', 'c --requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] -+requires = ['setuptools', 'pyyaml', 'click>=3.0', 'requests', 'IPy'] + requires = ['setuptools', 'pyyaml', 'click>=3.1', 'requests', 'IPy'] -tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] -+tests_require = ['nose', 'httpretty==0.8.6' ] ++tests_require = ['nose', 'httpretty==0.8.6'] if sys.version_info < (2, 7): tests_require += ['unittest2', 'importlib'] -@@ -52,6 +53,7 @@ setup(name='gandi.cli', - zip_safe=False, - install_requires=requires, - tests_require=tests_require, -+ test_suite='gandi.cli.tests', - extras_require=extras_require, - entry_points="""\ - [console_scripts] +@@ -53,6 +53,7 @@ setup(name='gandi.cli', + zip_safe=False, + install_requires=requires, + tests_require=tests_require, ++ test_suite='gandi.cli.tests', + extras_require=extras_require, + entry_points={ + 'console_scripts': [ From owner-svn-ports-head@freebsd.org Tue Oct 6 15:54: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 EF1AD9B6B01; Tue, 6 Oct 2015 15:54:49 +0000 (UTC) (envelope-from amdmi3@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 DFCE08E8; Tue, 6 Oct 2015 15:54:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96Fsn9U034991; Tue, 6 Oct 2015 15:54:49 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96FsmMY034987; Tue, 6 Oct 2015 15:54:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061554.t96FsmMY034987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 15:54:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398704 - in head/science: . orthanc-dicomweb 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: Tue, 06 Oct 2015 15:54:50 -0000 Author: amdmi3 Date: Tue Oct 6 15:54:48 2015 New Revision: 398704 URL: https://svnweb.freebsd.org/changeset/ports/398704 Log: This plugin extends the RESTful API of Orthanc with WADO and DICOMweb support. WWW: http://www.orthanc-server.com/ PR: 202816 Submitted by: mp39590@gmail.com Added: head/science/orthanc-dicomweb/ head/science/orthanc-dicomweb/Makefile (contents, props changed) head/science/orthanc-dicomweb/distinfo (contents, props changed) head/science/orthanc-dicomweb/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Tue Oct 6 15:37:31 2015 (r398703) +++ head/science/Makefile Tue Oct 6 15:54:48 2015 (r398704) @@ -98,6 +98,7 @@ SUBDIR += openbabel SUBDIR += openkim SUBDIR += orthanc + SUBDIR += orthanc-dicomweb SUBDIR += orthanc-postgresql SUBDIR += orthanc-webviewer SUBDIR += p5-Algorithm-SVMLight Added: head/science/orthanc-dicomweb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc-dicomweb/Makefile Tue Oct 6 15:54:48 2015 (r398704) @@ -0,0 +1,45 @@ +# Created by: mp39590@gmail.com +# $FreeBSD$ + +PORTNAME= orthanc-dicomweb +PORTVERSION= 0.1 +CATEGORIES= science net +MASTER_SITES= http://orthanc-server.com/downloads/get.php?path=/plugin-dicom-web/ +DISTNAME= OrthancDicomWeb-${PORTVERSION} +DIST_SUBDIR= orthanc + +MAINTAINER= mp39590@gmail.com +COMMENT= WADO and DICOMweb support for Orthanc + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/include/orthanc/OrthancCPlugin.h:${PORTSDIR}/science/orthanc \ + gtest-config:${PORTSDIR}/devel/googletest +LIB_DEPENDS= libgdcmCommon.so:${PORTSDIR}/devel/gdcm \ + libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ + libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libboost_date_time.so:${PORTSDIR}/devel/boost-libs \ + libboost_regex.so:${PORTSDIR}/devel/boost-libs \ + libboost_locale.so:${PORTSDIR}/devel/boost-libs \ + libjsoncpp.so:${PORTSDIR}/devel/jsoncpp \ + libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ + libpugixml.so:${PORTSDIR}/textproc/pugixml + +CXXFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +USES= cmake:outsource python:build +WRKSRC= ${WRKDIR}/OrthancDicomWeb-${PORTVERSION} + +PLIST_FILES= share/orthanc/plugins/libOrthancDicomWeb.so \ + share/orthanc/plugins/libOrthancDicomWeb.so.${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/Orthanc/Resources/CMake/*.cmake + +do-test: + @cd ${BUILD_WRKSRC} && ./UnitTests + +.include Added: head/science/orthanc-dicomweb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc-dicomweb/distinfo Tue Oct 6 15:54:48 2015 (r398704) @@ -0,0 +1,2 @@ +SHA256 (orthanc/OrthancDicomWeb-0.1.tar.gz) = c9f1a7c2873b157b434947d6b0bffe2d92cc94f5678c170b05bd702b969617f7 +SIZE (orthanc/OrthancDicomWeb-0.1.tar.gz) = 112788 Added: head/science/orthanc-dicomweb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc-dicomweb/pkg-descr Tue Oct 6 15:54:48 2015 (r398704) @@ -0,0 +1,4 @@ +This plugin extends the RESTful API of Orthanc with WADO and DICOMweb +support. + +WWW: http://www.orthanc-server.com/ From owner-svn-ports-head@freebsd.org Tue Oct 6 16:34:36 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 1EAEA9B6915; Tue, 6 Oct 2015 16:34:36 +0000 (UTC) (envelope-from gerald@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 0FCE68EC; Tue, 6 Oct 2015 16:34:36 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96GYZxm049305; Tue, 6 Oct 2015 16:34:35 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96GYZPm049303; Tue, 6 Oct 2015 16:34:35 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201510061634.t96GYZPm049303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 6 Oct 2015 16:34:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398705 - head/lang/gcc6-devel 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: Tue, 06 Oct 2015 16:34:36 -0000 Author: gerald Date: Tue Oct 6 16:34:34 2015 New Revision: 398705 URL: https://svnweb.freebsd.org/changeset/ports/398705 Log: Update to the 20151004 snapshot of GCC 6. Modified: head/lang/gcc6-devel/Makefile head/lang/gcc6-devel/distinfo Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Tue Oct 6 15:54:48 2015 (r398704) +++ head/lang/gcc6-devel/Makefile Tue Oct 6 16:34:34 2015 (r398705) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.0.0.s20150927 +PORTVERSION= 6.0.0.s20151004 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} Modified: head/lang/gcc6-devel/distinfo ============================================================================== --- head/lang/gcc6-devel/distinfo Tue Oct 6 15:54:48 2015 (r398704) +++ head/lang/gcc6-devel/distinfo Tue Oct 6 16:34:34 2015 (r398705) @@ -1,2 +1,2 @@ -SHA256 (gcc-6-20150927.tar.bz2) = 115f5799ba1725173aea1d6cfa4b33bbd69b17420182ec2a4e49ef569f0a622b -SIZE (gcc-6-20150927.tar.bz2) = 92402898 +SHA256 (gcc-6-20151004.tar.bz2) = 78473f2e15525c423dd646d9561536df44384d89d7f8c3f44cebcc20fdb15108 +SIZE (gcc-6-20151004.tar.bz2) = 92465678 From owner-svn-ports-head@freebsd.org Tue Oct 6 16:52: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 65ADB9D0576; Tue, 6 Oct 2015 16:52:45 +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 2AB6B3B3; Tue, 6 Oct 2015 16:52:44 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id 02420B061F; Tue, 6 Oct 2015 19:52:37 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 13F06C76; Tue, 6 Oct 2015 19:48:53 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id E1F7DD4; Tue, 6 Oct 2015 19:51:35 +0300 (MSK) Date: Tue, 6 Oct 2015 19:51:35 +0300 From: Dmitry Marakasov To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398474 - head/Mk/Uses Message-ID: <20151006165135.GB68979@hades.panopticon> References: <201510031706.t93H6qiu007585@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201510031706.t93H6qiu007585@repo.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: Tue, 06 Oct 2015 16:52:45 -0000 * Sunpoet Po-Chuan Hsieh (sunpoet@FreeBSD.org) wrote: > Log: > - Add NO_PERL5_TEST: allow ports with USES=perl5 to run default do-test: defined in bsd.port.mk > - Fix comment > > Modified: > head/Mk/Uses/perl5.mk > > Modified: head/Mk/Uses/perl5.mk > ============================================================================== > --- head/Mk/Uses/perl5.mk Sat Oct 3 16:30:19 2015 (r398473) > +++ head/Mk/Uses/perl5.mk Sat Oct 3 17:06:52 2015 (r398474) > @@ -308,7 +308,7 @@ fix-perl-things: > @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : > @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : > > -.if !target(do-test) > +.if !target(do-test) && !defined(NO_PERL5_TEST) > TEST_TARGET?= test > TEST_WRKSRC?= ${BUILD_WRKSRC} > do-test: > @@ -317,5 +317,5 @@ do-test: > .elif ${USE_PERL5:Mconfigure} > cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${MAKE_CMD} ${TEST_ARGS} ${TEST_TARGET} > .endif # USE_PERL5:Mmodbuild* > -.endif # regression-test > +.endif # do-test > .endif # defined(_POSTMKINCLUDED) Please roll this back. We already have NO_TEST specifically for this purpose. Also, I'd be really grateful if tests-related infrastructure changes are reviewed first with me CCd. -- 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 Tue Oct 6 16:55:46 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 1B5639D07C1; Tue, 6 Oct 2015 16:55:46 +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 0CABA7E4; Tue, 6 Oct 2015 16:55:46 +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 t96Gtj5u056505; Tue, 6 Oct 2015 16:55:45 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96GtjOJ056503; Tue, 6 Oct 2015 16:55:45 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510061655.t96GtjOJ056503@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Oct 2015 16:55:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398706 - head/multimedia/libmtp 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: Tue, 06 Oct 2015 16:55:46 -0000 Author: jbeich Date: Tue Oct 6 16:55:44 2015 New Revision: 398706 URL: https://svnweb.freebsd.org/changeset/ports/398706 Log: multimedia/libmtp: update to 1.1.10 Changes: http://sourceforge.net/projects/libmtp/files/libmtp/1.1.10/README/view Modified: head/multimedia/libmtp/Makefile (contents, props changed) head/multimedia/libmtp/distinfo (contents, props changed) Modified: head/multimedia/libmtp/Makefile ============================================================================== --- head/multimedia/libmtp/Makefile Tue Oct 6 16:34:34 2015 (r398705) +++ head/multimedia/libmtp/Makefile Tue Oct 6 16:55:44 2015 (r398706) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libmtp -PORTVERSION= 1.1.9 -PORTREVISION= 1 +PORTVERSION= 1.1.10 CATEGORIES= multimedia audio MASTER_SITES= SF Modified: head/multimedia/libmtp/distinfo ============================================================================== --- head/multimedia/libmtp/distinfo Tue Oct 6 16:34:34 2015 (r398705) +++ head/multimedia/libmtp/distinfo Tue Oct 6 16:55:44 2015 (r398706) @@ -1,2 +1,2 @@ -SHA256 (libmtp-1.1.9.tar.gz) = 23f1d3c0b54107388bf2824d56415e9e087c980c86e5d179865652c022b6b189 -SIZE (libmtp-1.1.9.tar.gz) = 760593 +SHA256 (libmtp-1.1.10.tar.gz) = 1eee8d4c052fe29e58a408fedc08a532e28626fa3e232157abd8fca063c90305 +SIZE (libmtp-1.1.10.tar.gz) = 787654 From owner-svn-ports-head@freebsd.org Tue Oct 6 16:59: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 D1B549D0A5B; Tue, 6 Oct 2015 16:59:10 +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 9B3E0A9D; Tue, 6 Oct 2015 16:59:10 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id EA839B061F; Tue, 6 Oct 2015 19:59:09 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 15F02C77; Tue, 6 Oct 2015 19:55:26 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id E3D0BD6; Tue, 6 Oct 2015 19:58:08 +0300 (MSK) Date: Tue, 6 Oct 2015 19:58:08 +0300 From: Dmitry Marakasov To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398474 - head/Mk/Uses Message-ID: <20151006165808.GC68979@hades.panopticon> References: <201510031706.t93H6qiu007585@repo.freebsd.org> <20151006165135.GB68979@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20151006165135.GB68979@hades.panopticon> 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: Tue, 06 Oct 2015 16:59:10 -0000 * Dmitry Marakasov (amdmi3@hades.panopticon) wrote: > * Sunpoet Po-Chuan Hsieh (sunpoet@FreeBSD.org) wrote: > > > Log: > > - Add NO_PERL5_TEST: allow ports with USES=perl5 to run default do-test: defined in bsd.port.mk > > - Fix comment > > > > Modified: > > head/Mk/Uses/perl5.mk > > > > Modified: head/Mk/Uses/perl5.mk > > ============================================================================== > > --- head/Mk/Uses/perl5.mk Sat Oct 3 16:30:19 2015 (r398473) > > +++ head/Mk/Uses/perl5.mk Sat Oct 3 17:06:52 2015 (r398474) > > @@ -308,7 +308,7 @@ fix-perl-things: > > @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : > > @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : > > > > -.if !target(do-test) > > +.if !target(do-test) && !defined(NO_PERL5_TEST) > > TEST_TARGET?= test > > TEST_WRKSRC?= ${BUILD_WRKSRC} > > do-test: > > @@ -317,5 +317,5 @@ do-test: > > .elif ${USE_PERL5:Mconfigure} > > cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${MAKE_CMD} ${TEST_ARGS} ${TEST_TARGET} > > .endif # USE_PERL5:Mmodbuild* > > -.endif # regression-test > > +.endif # do-test > > .endif # defined(_POSTMKINCLUDED) > > Please roll this back. We already have NO_TEST specifically for this > purpose. Also, I'd be really grateful if tests-related infrastructure > changes are reviewed first with me CCd. However it looks like it needs check for ${USE_PERL5:Mconfigure} || ${USE_PERL5:Mmodbuild*} -- 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 Tue Oct 6 17:20:25 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 1CB289B6EDA; Tue, 6 Oct 2015 17:20:25 +0000 (UTC) (envelope-from gblach@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 E8E2BE75; Tue, 6 Oct 2015 17:20:24 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96HKOX1064996; Tue, 6 Oct 2015 17:20:24 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96HKNnA064992; Tue, 6 Oct 2015 17:20:23 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201510061720.t96HKNnA064992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Tue, 6 Oct 2015 17:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398707 - in head: devel/efl x11-toolkits/elementary 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: Tue, 06 Oct 2015 17:20:25 -0000 Author: gblach Date: Tue Oct 6 17:20:23 2015 New Revision: 398707 URL: https://svnweb.freebsd.org/changeset/ports/398707 Log: Update to 1.15.2 Modified: head/devel/efl/Makefile head/devel/efl/distinfo head/x11-toolkits/elementary/Makefile head/x11-toolkits/elementary/distinfo Modified: head/devel/efl/Makefile ============================================================================== --- head/devel/efl/Makefile Tue Oct 6 16:55:44 2015 (r398706) +++ head/devel/efl/Makefile Tue Oct 6 17:20:23 2015 (r398707) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= efl -PORTVERSION= 1.15.1 +PORTVERSION= 1.15.2 CATEGORIES= devel enlightenment MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/ Modified: head/devel/efl/distinfo ============================================================================== --- head/devel/efl/distinfo Tue Oct 6 16:55:44 2015 (r398706) +++ head/devel/efl/distinfo Tue Oct 6 17:20:23 2015 (r398707) @@ -1,2 +1,2 @@ -SHA256 (enlightenment/efl-1.15.1.tar.xz) = 56efb5a88328f8ed04552d6e10d7b9ff2d3c7ed9da669ae06d457b9a801554d8 -SIZE (enlightenment/efl-1.15.1.tar.xz) = 43177472 +SHA256 (enlightenment/efl-1.15.2.tar.xz) = dd738f19f454621a7fa1fdb4c008457c170989f5f0c535edfed7b6773ae6c2a4 +SIZE (enlightenment/efl-1.15.2.tar.xz) = 43176564 Modified: head/x11-toolkits/elementary/Makefile ============================================================================== --- head/x11-toolkits/elementary/Makefile Tue Oct 6 16:55:44 2015 (r398706) +++ head/x11-toolkits/elementary/Makefile Tue Oct 6 17:20:23 2015 (r398707) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= elementary -PORTVERSION= 1.15.1 +PORTVERSION= 1.15.2 CATEGORIES= x11-toolkits enlightenment MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/ Modified: head/x11-toolkits/elementary/distinfo ============================================================================== --- head/x11-toolkits/elementary/distinfo Tue Oct 6 16:55:44 2015 (r398706) +++ head/x11-toolkits/elementary/distinfo Tue Oct 6 17:20:23 2015 (r398707) @@ -1,2 +1,2 @@ -SHA256 (enlightenment/elementary-1.15.1.tar.xz) = ab22a40a5108f7f988a34b0a791d202d2c6c538ea8508919c264bdbdce11ab04 -SIZE (enlightenment/elementary-1.15.1.tar.xz) = 18514596 +SHA256 (enlightenment/elementary-1.15.2.tar.xz) = 523c3073210b611817d0f56aa8348962ec757282f9f7dfde93825afa164a0f3f +SIZE (enlightenment/elementary-1.15.2.tar.xz) = 18514048 From owner-svn-ports-head@freebsd.org Tue Oct 6 17:55:26 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 052F59B67B3; Tue, 6 Oct 2015 17:55:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1A57357; Tue, 6 Oct 2015 17:55:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96HtOsX072449; Tue, 6 Oct 2015 17:55:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96HtOoI072448; Tue, 6 Oct 2015 17:55:24 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061755.t96HtOoI072448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 17:55:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398708 - head/graphics/inkscape 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: Tue, 06 Oct 2015 17:55:26 -0000 Author: amdmi3 Date: Tue Oct 6 17:55:24 2015 New Revision: 398708 URL: https://svnweb.freebsd.org/changeset/ports/398708 Log: - Add missing python run-dependency (inkscape installs bunch of python scripts) PR: 203517 Submitted by: amdmi3 Approved by: kwm Modified: head/graphics/inkscape/Makefile Modified: head/graphics/inkscape/Makefile ============================================================================== --- head/graphics/inkscape/Makefile Tue Oct 6 17:20:23 2015 (r398707) +++ head/graphics/inkscape/Makefile Tue Oct 6 17:55:24 2015 (r398708) @@ -3,7 +3,7 @@ PORTNAME= inkscape PORTVERSION= 0.91 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= https://inkscape.global.ssl.fastly.net/media/resources/file/ \ LOCAL/kwm @@ -23,7 +23,7 @@ LIB_DEPENDS= libpopt.so:${PORTSDIR}/deve USE_GNOME= gtkmm24 intlhack libxslt USES= compiler:c++0x cpe desktop-file-utils gettext gmake iconv \ - libtool pathfix perl5 pkgconfig shebangfix tar:bzip2 + libtool pathfix perl5 pkgconfig python:run shebangfix tar:bzip2 GNU_CONFIGURE= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-head@freebsd.org Tue Oct 6 18:00:46 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 C78BD9B6D73; Tue, 6 Oct 2015 18:00:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8DD5B9C0; Tue, 6 Oct 2015 18:00:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96I0jRW073014; Tue, 6 Oct 2015 18:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96I0jqX073013; Tue, 6 Oct 2015 18:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061800.t96I0jqX073013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 18:00:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398709 - head/print/openprinting 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: Tue, 06 Oct 2015 18:00:46 -0000 Author: amdmi3 Date: Tue Oct 6 18:00:45 2015 New Revision: 398709 URL: https://svnweb.freebsd.org/changeset/ports/398709 Log: - Unstage stuff not included into plist to fix stage-qa, assuming it's not needed in this port - Sort plist Modified: head/print/openprinting/Makefile Modified: head/print/openprinting/Makefile ============================================================================== --- head/print/openprinting/Makefile Tue Oct 6 17:55:24 2015 (r398708) +++ head/print/openprinting/Makefile Tue Oct 6 18:00:45 2015 (r398709) @@ -52,27 +52,27 @@ CONFIGURE_ARGS+=--without-cups .endif PLIST_FILES+=\ - include/papi.h \ - include/ipp.h \ include/debug.h \ - include/http.h \ include/http-private.h \ + include/http.h \ include/ipp-listener.h \ - lib/libpapi-common.so \ - lib/libpapi-common.so.0 \ - lib/libpapi-common.so.0.0.0 \ - lib/libpapi.so \ - lib/libpapi.so.0 \ - lib/libpapi.so.0.0.0 \ + include/ipp.h \ + include/papi.h \ lib/libipp-core.so \ lib/libipp-core.so.0 \ lib/libipp-core.so.0.0.0 \ lib/libipp-listener.so \ lib/libipp-listener.so.0 \ lib/libipp-listener.so.0.0.0 \ - libexec/psm-lpd.so \ - libexec/psm-ipp.so \ + lib/libpapi-common.so \ + lib/libpapi-common.so.0 \ + lib/libpapi-common.so.0.0.0 \ + lib/libpapi.so \ + lib/libpapi.so.0 \ + lib/libpapi.so.0.0.0 \ libexec/lpd-port \ + libexec/psm-ipp.so \ + libexec/psm-lpd.so \ man/man5/psm-ipp.5.gz .if defined(WITH_PSM_CUPS) @@ -91,4 +91,9 @@ post-patch: ${WRKSRC}/source/libpapi-cups/Makefile.in \ ${WRKSRC}/source/libpapi-dynamic/Makefile.in +post-install: +.for unneeded in bin sbin man/man1 man/mani share + @${RM} -rf ${STAGEDIR}${PREFIX}/${unneeded} +.endfor + .include From owner-svn-ports-head@freebsd.org Tue Oct 6 18:07:41 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 736A99D02FD; Tue, 6 Oct 2015 18:07:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 199792E4; Tue, 6 Oct 2015 18:07:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96I7dMW076291; Tue, 6 Oct 2015 18:07:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96I7dPx076290; Tue, 6 Oct 2015 18:07:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061807.t96I7dPx076290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 18:07:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398710 - head/mail/qmail-dk 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: Tue, 06 Oct 2015 18:07:41 -0000 Author: amdmi3 Date: Tue Oct 6 18:07:39 2015 New Revision: 398710 URL: https://svnweb.freebsd.org/changeset/ports/398710 Log: - Fix installation from non-root Modified: head/mail/qmail-dk/Makefile Modified: head/mail/qmail-dk/Makefile ============================================================================== --- head/mail/qmail-dk/Makefile Tue Oct 6 18:00:45 2015 (r398709) +++ head/mail/qmail-dk/Makefile Tue Oct 6 18:07:39 2015 (r398710) @@ -22,7 +22,7 @@ USES= qmail PREFIX?= ${QMAIL_PREFIX} WRKSRC= ${WRKDIR}/qmail-1.03 -PLIST_FILES= bin/qmail-dk \ +PLIST_FILES= "@(qmailq,,4711) bin/qmail-dk" \ man/man8/qmail-dk.8.gz ALL_TARGET= qmail-dk qmail-dk.8 CFLAGS+= -I${LOCALBASE}/include @@ -57,7 +57,7 @@ post-patch: ${WRKSRC}/conf-groups do-install: - ${INSTALL} -o qmailq -m 4711 ${WRKSRC}/qmail-dk ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/qmail-dk ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/qmail-dk.8 ${STAGEDIR}${MAN8PREFIX}/man/man8 .include From owner-svn-ports-head@freebsd.org Tue Oct 6 18:26:31 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 1E16B9D0F13; Tue, 6 Oct 2015 18:26:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC334E63; Tue, 6 Oct 2015 18:26:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96IQTxh082852; Tue, 6 Oct 2015 18:26:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96IQTrW082848; Tue, 6 Oct 2015 18:26:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061826.t96IQTrW082848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 18:26:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398711 - in head/mail/qmailadmin: . 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: Tue, 06 Oct 2015 18:26:31 -0000 Author: amdmi3 Date: Tue Oct 6 18:26:29 2015 New Revision: 398711 URL: https://svnweb.freebsd.org/changeset/ports/398711 Log: - Fix install from non-root - Strip binary - Drop @dirrm* from plist Added: head/mail/qmailadmin/files/patch-Makefile.am (contents, props changed) Modified: head/mail/qmailadmin/Makefile head/mail/qmailadmin/pkg-plist Modified: head/mail/qmailadmin/Makefile ============================================================================== --- head/mail/qmailadmin/Makefile Tue Oct 6 18:07:39 2015 (r398710) +++ head/mail/qmailadmin/Makefile Tue Oct 6 18:26:29 2015 (r398711) @@ -3,7 +3,7 @@ PORTNAME= qmailadmin PORTVERSION= 1.2.15 -PORTREVISION= 6 +PORTREVISION= 7 PORTEPOCH= 2 CATEGORIES= mail www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} \ @@ -104,7 +104,8 @@ LIBS+= -L${LOCALBASE}/lib -lcrack VPOPMAIL_DIR?= ${LOCALBASE}/vpopmail -GNU_CONFIGURE= YES +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip # Notes and comments: # Added: head/mail/qmailadmin/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/qmailadmin/files/patch-Makefile.am Tue Oct 6 18:26:29 2015 (r398711) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2010-03-26 06:08:58 UTC ++++ Makefile.am +@@ -14,7 +14,7 @@ VERSION=@QA_VERSION@ + # + # Install qmailadmin setuid to @vpopuser@ + # +-INSTALL_PROGRAM=${INSTALL} -o @vpopuser@ -m 6755 -g @vpopgroup@ $(AM_INSTALL_PROGRAM_FLAGS) ++INSTALL_PROGRAM=${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS) + INSTALL_STRIP_PROGRAM=${INSTALL_PROGRAM} -s + + bindir=@cgibindir@ Modified: head/mail/qmailadmin/pkg-plist ============================================================================== --- head/mail/qmailadmin/pkg-plist Tue Oct 6 18:07:39 2015 (r398710) +++ head/mail/qmailadmin/pkg-plist Tue Oct 6 18:26:29 2015 (r398711) @@ -54,7 +54,7 @@ %%DATADIR%%/lang/tr %%DATADIR%%/lang/zh-cn @cwd %%WEBPREFIX%% -%%CGIBINDIR%%/%%CGIBINSUBDIR%%/qmailadmin +@(vpopmail,vchkpw,6755) %%CGIBINDIR%%/%%CGIBINSUBDIR%%/qmailadmin %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/delete.png %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/disabled.png %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/lowerleft.png @@ -76,12 +76,8 @@ %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/uppermiddle1.png %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/uppermiddle2.png %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images/upperright.png -@dirrm %%WEBDATADIR%%/%%WEBDATASUBDIR%%/images @unexec rmdir %%WEBPREFIX%%/%%WEBDATADIR%%/%%WEBDATASUBDIR%% 2> /dev/null || true @unexec rmdir %%WEBPREFIX%%/%%WEBDATADIR%% 2> /dev/null || true @unexec rmdir %%WEBPREFIX%%/%%CGIBINDIR%%/%%CGIBINSUBDIR%% 2> /dev/null || true @unexec rmdir %%WEBPREFIX%%/%%CGIBINDIR%% 2> /dev/null || true @cwd %%REAL_PREFIX%% -@dirrm %%DATADIR%%/html -@dirrm %%DATADIR%%/lang -@dirrm %%DATADIR%% From owner-svn-ports-head@freebsd.org Tue Oct 6 18:53: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 E89F09D045D; Tue, 6 Oct 2015 18:53:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F454113; Tue, 6 Oct 2015 18:53:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96Iqx3p092843; Tue, 6 Oct 2015 18:52:59 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96IqxFw092836; Tue, 6 Oct 2015 18:52:59 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201510061852.t96IqxFw092836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Tue, 6 Oct 2015 18:52:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398712 - in head/devel/gdb: . files files/kgdb 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: Tue, 06 Oct 2015 18:53:01 -0000 Author: jhb (src,doc committer) Date: Tue Oct 6 18:52:58 2015 New Revision: 398712 URL: https://svnweb.freebsd.org/changeset/ports/398712 Log: Add a new KGDB option to the devel/gdb port. This adds a forward port of the kernel-specific bits of kgdb to recent gdb. It only supports amd64, i386, powerpc, powerpc64, and sparc64. PR: 203299 Reviewed by: bdrewery Glanced at by: emaste, jilles, luca.pizzamiglio@gmail.com (maintainer) Differential Revision: https://reviews.freebsd.org/D3727 Added: head/devel/gdb/files/extrapatch-kgdb (contents, props changed) head/devel/gdb/files/extrapatch-kgdb-configure.tgt-plain (contents, props changed) head/devel/gdb/files/extrapatch-kgdb-configure.tgt-threads (contents, props changed) head/devel/gdb/files/kgdb/ head/devel/gdb/files/kgdb/amd64fbsd-kern.c (contents, props changed) head/devel/gdb/files/kgdb/fbsd-kld.c (contents, props changed) head/devel/gdb/files/kgdb/fbsd-kthr.c (contents, props changed) head/devel/gdb/files/kgdb/fbsd-kvm.c (contents, props changed) head/devel/gdb/files/kgdb/i386fbsd-kern.c (contents, props changed) head/devel/gdb/files/kgdb/kgdb-main.c (contents, props changed) head/devel/gdb/files/kgdb/kgdb.h (contents, props changed) head/devel/gdb/files/kgdb/ppcfbsd-kern.c (contents, props changed) head/devel/gdb/files/kgdb/sparc64fbsd-kern.c (contents, props changed) Modified: head/devel/gdb/Makefile head/devel/gdb/pkg-plist Modified: head/devel/gdb/Makefile ============================================================================== --- head/devel/gdb/Makefile Tue Oct 6 18:26:29 2015 (r398711) +++ head/devel/gdb/Makefile Tue Oct 6 18:52:58 2015 (r398712) @@ -32,7 +32,7 @@ PLIST_SUB= VER=${VER} ONLY_FOR_ARCHS= i386 amd64 powerpc powerpc64 # untested elsewhere, might work -OPTIONS_DEFINE= DEBUG EXPAT GDB_LINK GUILE PYTHON THREADS TUI +OPTIONS_DEFINE= DEBUG EXPAT GDB_LINK GUILE KGDB PYTHON THREADS TUI OPTIONS_DEFAULT= GDB_LINK THREADS TUI PORT_READLINE @@ -40,6 +40,7 @@ OPTIONS_SINGLE= READLINE OPTIONS_SINGLE_READLINE= BASE_READLINE BUNDLED_READLINE PORT_READLINE GDB_LINK_DESC= Create ${PREFIX}/bin/gdb symlink +KGDB_DESC= Kernel Debugging Support BASE_READLINE_DESC= from base system (experimental) BUNDLED_READLINE_DESC= from gdb distfile PORT_READLINE_DESC= from devel/readline port @@ -76,10 +77,21 @@ CONFIGURE_TARGET= x86_64-portbld-freebsd post-patch: @${REINPLACE_CMD} -e 's|$$| [GDB v${PORTVERSION} for FreeBSD]|' \ ${WRKSRC}/gdb/version.in - -post-patch-THREADS-on: +.if ${PORT_OPTIONS:MTHREADS} @${CP} ${FILESDIR}/fbsd-threads.c ${WRKSRC}/gdb/ @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extrapatch-threads +.endif +.if ${PORT_OPTIONS:MKGDB} + @${CP} -r ${FILESDIR}/kgdb/*.[ch] ${WRKSRC}/gdb/ + @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extrapatch-kgdb +.if ${PORT_OPTIONS:MTHREADS} + @${PATCH} ${PATCH_ARGS} < \ + ${FILESDIR}/extrapatch-kgdb-configure.tgt-threads +.else + @${PATCH} ${PATCH_ARGS} < \ + ${FILESDIR}/extrapatch-kgdb-configure.tgt-plain +.endif +.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb \ @@ -87,11 +99,18 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/gdb/doc/gdb.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1/gdb${VER}.1 +do-install-KGDB-on: + ${INSTALL_PROGRAM} ${WRKSRC}/gdb/kgdb \ + ${STAGEDIR}${PREFIX}/bin/kgdb${VER} + do-install-TUI-on: ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdbtui${VER} do-install-GDB_LINK-on: ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdb +.if ${PORT_OPTIONS:MKGDB} + ${LN} -sf kgdb${VER} ${STAGEDIR}${PREFIX}/bin/kgdb +.endif do-install-PYTHON-on: (cd ${WRKSRC}/gdb; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install-python ) Added: head/devel/gdb/files/extrapatch-kgdb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/extrapatch-kgdb Tue Oct 6 18:52:58 2015 (r398712) @@ -0,0 +1,226 @@ +diff --git gdb/Makefile.in gdb/Makefile.in +index dfaa8a3..182d875 100644 +--- gdb/Makefile.in ++++ gdb/Makefile.in +@@ -650,7 +650,8 @@ ALL_64_TARGET_OBS = \ + ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \ + mips64obsd-tdep.o \ + sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \ +- sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o ++ sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o \ ++ amd64fbsd-kern.o sparc64fbsd-kern.o + + # All other target-dependent objects files (used with --enable-targets=all). + ALL_TARGET_OBS = \ +@@ -672,6 +673,7 @@ ALL_TARGET_OBS = \ + i386-sol2-tdep.o i386-tdep.o i387-tdep.o \ + i386-dicos-tdep.o i386-darwin-tdep.o \ + iq2000-tdep.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o i386fbsd-kern.o ppcfbsd-kern.o \ + linux-tdep.o \ + lm32-tdep.o \ + m32c-tdep.o \ +@@ -1123,7 +1125,7 @@ generated_files = config.h observer.h observer.inc ada-lex.c jit-reader.h \ + $(COMPILE) $< + $(POSTCOMPILE) + +-all: gdb$(EXEEXT) $(CONFIG_ALL) ++all: gdb$(EXEEXT) kgdb$(EXEEXT) $(CONFIG_ALL) + @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do + + installcheck: +@@ -1393,6 +1395,12 @@ gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS) + -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \ + $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) + ++kgdb$(EXEEXT): kgdb-main.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS) ++ rm -f kgdb$(EXEEXT) ++ $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \ ++ -o kgdb$(EXEEXT) kgdb-main.o $(LIBGDB_OBS) \ ++ $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) ++ + # Convenience rule to handle recursion. + $(LIBGNU) $(GNULIB_H): all-lib + all-lib: $(GNULIB_BUILDDIR)/Makefile +@@ -1437,7 +1445,7 @@ clean mostlyclean: $(CONFIG_CLEAN) + @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do + rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp + rm -f init.c version.c observer.h observer.inc +- rm -f gdb$(EXEEXT) core make.log ++ rm -f gdb$(EXEEXT) core make.log kgdb$(EXEEXT) + rm -f gdb[0-9]$(EXEEXT) + rm -f test-cp-name-parser$(EXEEXT) + rm -f xml-builtin.c stamp-xml +@@ -1667,6 +1675,9 @@ ALLDEPFILES = \ + core-regset.c \ + dcache.c dicos-tdep.c darwin-nat.c \ + exec.c \ ++ fbsd-kld.c fbsd-kthr.c fbsd-kvm.c \ ++ amd64fbsd-kern.c i386fbsd-kern.c ppcfbsd-kern.c \ ++ sparc64fbsd-kern.c \ + fbsd-nat.c \ + fbsd-tdep.c \ + fork-child.c \ +diff --git gdb/config.in gdb/config.in +index 9ef53b3..c55c01b 100644 +--- gdb/config.in ++++ gdb/config.in +@@ -216,6 +216,9 @@ + /* Define to 1 if your system has the kinfo_getvmmap function. */ + #undef HAVE_KINFO_GETVMMAP + ++/* Define to 1 if your system has the kvm_open2 function. */ ++#undef HAVE_KVM_OPEN2 ++ + /* Define if you have and nl_langinfo(CODESET). */ + #undef HAVE_LANGINFO_CODESET + +diff --git gdb/configure gdb/configure +index 48acfe5..f0cd958 100755 +--- gdb/configure ++++ gdb/configure +@@ -7104,6 +7104,66 @@ $as_echo "#define HAVE_KINFO_GETVMMAP 1" >>confdefs.h + fi + + ++# kgdb needs kvm_open2 for cross-debugging ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing kvm_open2" >&5 ++$as_echo_n "checking for library containing kvm_open2... " >&6; } ++if test "${ac_cv_search_kvm_open2+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_func_search_save_LIBS=$LIBS ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char kvm_open2 (); ++int ++main () ++{ ++return kvm_open2 (); ++ ; ++ return 0; ++} ++_ACEOF ++for ac_lib in '' kvm; do ++ if test -z "$ac_lib"; then ++ ac_res="none required" ++ else ++ ac_res=-l$ac_lib ++ LIBS="-l$ac_lib $ac_func_search_save_LIBS" ++ fi ++ if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_search_kvm_open2=$ac_res ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if test "${ac_cv_search_kvm_open2+set}" = set; then : ++ break ++fi ++done ++if test "${ac_cv_search_kvm_open2+set}" = set; then : ++ ++else ++ ac_cv_search_kvm_open2=no ++fi ++rm conftest.$ac_ext ++LIBS=$ac_func_search_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_kvm_open2" >&5 ++$as_echo "$ac_cv_search_kvm_open2" >&6; } ++ac_res=$ac_cv_search_kvm_open2 ++if test "$ac_res" != no; then : ++ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" ++ ++$as_echo "#define HAVE_KVM_OPEN2 1" >>confdefs.h ++ ++fi ++ ++ + + + +diff --git gdb/configure.ac gdb/configure.ac +index a40860a..9035d48 100644 +--- gdb/configure.ac ++++ gdb/configure.ac +@@ -539,6 +539,11 @@ AC_SEARCH_LIBS(kinfo_getvmmap, util, + [AC_DEFINE(HAVE_KINFO_GETVMMAP, 1, + [Define to 1 if your system has the kinfo_getvmmap function. ])]) + ++# kgdb needs kvm_open2 for cross-debugging ++AC_SEARCH_LIBS(kvm_open2, kvm, ++ [AC_DEFINE(HAVE_KVM_OPEN2, 1, ++ [Define to 1 if your system has the kvm_open2 function. ])]) ++ + AM_ICONV + + # GDB may fork/exec the iconv program to get the list of supported character +diff --git gdb/defs.h gdb/defs.h +index ccdab18..499944f 100644 +--- gdb/defs.h ++++ gdb/defs.h +@@ -549,6 +549,7 @@ enum gdb_osabi + GDB_OSABI_LINUX, + GDB_OSABI_FREEBSD_AOUT, + GDB_OSABI_FREEBSD_ELF, ++ GDB_OSABI_FREEBSD_ELF_KERNEL, + GDB_OSABI_NETBSD_AOUT, + GDB_OSABI_NETBSD_ELF, + GDB_OSABI_OPENBSD_ELF, +diff --git gdb/osabi.c gdb/osabi.c +index 3581eb3..d12656e 100644 +--- gdb/osabi.c ++++ gdb/osabi.c +@@ -66,6 +66,7 @@ static const struct osabi_names gdb_osabi_names[] = + { "GNU/Linux", "linux(-gnu)?" }, + { "FreeBSD a.out", NULL }, + { "FreeBSD ELF", NULL }, ++ { "FreeBSD ELF kernel", NULL }, + { "NetBSD a.out", NULL }, + { "NetBSD ELF", NULL }, + { "OpenBSD ELF", NULL }, +diff --git gdb/regcache.c gdb/regcache.c +index 86e648a..26a0fd5 100644 +--- gdb/regcache.c ++++ gdb/regcache.c +@@ -1065,6 +1065,20 @@ regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf) + } + } + ++void ++regcache_raw_supply_unsigned (struct regcache *regcache, int regnum, ++ ULONGEST val) ++{ ++ void *buf; ++ ++ gdb_assert (regcache != NULL); ++ gdb_assert (regnum >=0 && regnum < regcache->descr->nr_raw_registers); ++ buf = alloca (regcache->descr->sizeof_register[regnum]); ++ store_unsigned_integer (buf, regcache->descr->sizeof_register[regnum], ++ gdbarch_byte_order (regcache->descr->gdbarch), val); ++ regcache_raw_supply (regcache, regnum, buf); ++} ++ + /* Collect register REGNUM from REGCACHE and store its contents in BUF. */ + + void +diff --git gdb/regcache.h gdb/regcache.h +index a9fb44b..a156918 100644 +--- gdb/regcache.h ++++ gdb/regcache.h +@@ -147,6 +147,8 @@ extern void regcache_write_pc (struct regcache *regcache, CORE_ADDR pc); + + extern void regcache_raw_supply (struct regcache *regcache, + int regnum, const void *buf); ++extern void regcache_raw_supply_unsigned (struct regcache *regcache, ++ int regnum, ULONGEST val); + extern void regcache_raw_collect (const struct regcache *regcache, + int regnum, void *buf); + Added: head/devel/gdb/files/extrapatch-kgdb-configure.tgt-plain ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/extrapatch-kgdb-configure.tgt-plain Tue Oct 6 18:52:58 2015 (r398712) @@ -0,0 +1,50 @@ +diff --git gdb/configure.tgt gdb/configure.tgt +index 4e4d6a9..57e4b3a 100644 +--- gdb/configure.tgt ++++ gdb/configure.tgt +@@ -185,7 +185,13 @@ i[34567]86-*-dicos*) + i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu) + # Target: FreeBSD/i386 + gdb_target_obs="i386-tdep.o i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \ +- bsd-uthread.o fbsd-tdep.o solib-svr4.o" ++ bsd-uthread.o fbsd-tdep.o solib-svr4.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o i386fbsd-kern.o" ++ if test "x$enable_64_bit_bfd" = "xyes"; then ++ # Target: FreeBSD amd64 ++ gdb_target_obs="amd64-tdep.o amd64fbsd-tdep.o amd64fbsd-kern.o \ ++ ${gdb_target_obs}" ++ fi + ;; + i[34567]86-*-netbsd* | i[34567]86-*-knetbsd*-gnu) + # Target: NetBSD/i386 +@@ -405,7 +411,8 @@ powerpc*-*-freebsd*) + # Target: FreeBSD/powerpc + gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o ppc64-tdep.o \ + ppcfbsd-tdep.o fbsd-tdep.o solib-svr4.o \ +- ravenscar-thread.o ppc-ravenscar-thread.o" ++ ravenscar-thread.o ppc-ravenscar-thread.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o ppcfbsd-kern.o" + ;; + + powerpc-*-netbsd* | powerpc-*-knetbsd*-gnu) +@@ -534,7 +541,8 @@ sparc*-*-freebsd* | sparc*-*-kfreebsd*-gnu) + # Target: FreeBSD/sparc64 + gdb_target_obs="sparc-tdep.o sparc64-tdep.o sparc64fbsd-tdep.o \ + fbsd-tdep.o solib-svr4.o \ +- ravenscar-thread.o sparc-ravenscar-thread.o" ++ ravenscar-thread.o sparc-ravenscar-thread.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o sparc64fbsd-kern.o" + ;; + sparc-*-netbsd* | sparc-*-knetbsd*-gnu) + # Target: NetBSD/sparc +@@ -662,7 +670,9 @@ x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) + # Target: FreeBSD/amd64 + gdb_target_obs="amd64-tdep.o amd64fbsd-tdep.o i386-tdep.o \ + i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \ +- bsd-uthread.o fbsd-tdep.o solib-svr4.o" ++ bsd-uthread.o fbsd-tdep.o solib-svr4.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o amd64fbsd-kern.o \ ++ i386fbsd-kern.o" + ;; + x86_64-*-mingw* | x86_64-*-cygwin*) + # Target: MingW/amd64 Added: head/devel/gdb/files/extrapatch-kgdb-configure.tgt-threads ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/extrapatch-kgdb-configure.tgt-threads Tue Oct 6 18:52:58 2015 (r398712) @@ -0,0 +1,50 @@ +diff --git gdb/configure.tgt gdb/configure.tgt +index 4e4d6a9..57e4b3a 100644 +--- gdb/configure.tgt ++++ gdb/configure.tgt +@@ -185,7 +185,13 @@ i[34567]86-*-dicos*) + i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu) + # Target: FreeBSD/i386 + gdb_target_obs="i386-tdep.o i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \ +- fbsd-threads.o fbsd-tdep.o solib-svr4.o" ++ fbsd-threads.o fbsd-tdep.o solib-svr4.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o i386fbsd-kern.o" ++ if test "x$enable_64_bit_bfd" = "xyes"; then ++ # Target: FreeBSD amd64 ++ gdb_target_obs="amd64-tdep.o amd64fbsd-tdep.o amd64fbsd-kern.o \ ++ ${gdb_target_obs}" ++ fi + ;; + i[34567]86-*-netbsd* | i[34567]86-*-knetbsd*-gnu) + # Target: NetBSD/i386 +@@ -405,7 +411,8 @@ powerpc*-*-freebsd*) + # Target: FreeBSD/powerpc + gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o ppc64-tdep.o \ + ppcfbsd-tdep.o fbsd-threads.o fbsd-tdep.o solib-svr4.o \ +- ravenscar-thread.o ppc-ravenscar-thread.o" ++ ravenscar-thread.o ppc-ravenscar-thread.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o ppcfbsd-kern.o" + ;; + + powerpc-*-netbsd* | powerpc-*-knetbsd*-gnu) +@@ -534,7 +541,8 @@ sparc*-*-freebsd* | sparc*-*-kfreebsd*-gnu) + # Target: FreeBSD/sparc64 + gdb_target_obs="sparc-tdep.o sparc64-tdep.o sparc64fbsd-tdep.o \ + fbsd-tdep.o solib-svr4.o \ +- ravenscar-thread.o sparc-ravenscar-thread.o" ++ ravenscar-thread.o sparc-ravenscar-thread.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o sparc64fbsd-kern.o" + ;; + sparc-*-netbsd* | sparc-*-knetbsd*-gnu) + # Target: NetBSD/sparc +@@ -662,7 +670,9 @@ x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) + # Target: FreeBSD/amd64 + gdb_target_obs="amd64-tdep.o amd64fbsd-tdep.o i386-tdep.o \ + i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \ +- fbsd-threads.o fbsd-tdep.o solib-svr4.o" ++ fbsd-threads.o fbsd-tdep.o solib-svr4.o \ ++ fbsd-kld.o fbsd-kthr.o fbsd-kvm.o amd64fbsd-kern.o \ ++ i386fbsd-kern.o" + ;; + x86_64-*-mingw* | x86_64-*-cygwin*) + # Target: MingW/amd64 Added: head/devel/gdb/files/kgdb/amd64fbsd-kern.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/kgdb/amd64fbsd-kern.c Tue Oct 6 18:52:58 2015 (r398712) @@ -0,0 +1,304 @@ +/* + * Copyright (c) 2004 Marcel Moolenaar + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#ifdef __amd64__ +#include +#include +#endif +#include + +#include +#include +#include "gdbcore.h" +#include "osabi.h" +#include +#include "solib.h" +#include "stack.h" +#include "symtab.h" +#include "trad-frame.h" +#include + +#include "kgdb.h" + +static const int amd64fbsd_pcb_offset[] = { + -1, /* %rax */ + 6 * 8, /* %rbx */ + -1, /* %rcx */ + -1, /* %rdx */ + -1, /* %rsi */ + -1, /* %rdi */ + 4 * 8, /* %rbp */ + 5 * 8, /* %rsp */ + -1, /* %r8 ... */ + -1, + -1, + -1, + 3 * 8, + 2 * 8, + 1 * 8, + 0 * 8, /* ... %r15 */ + 7 * 8, /* %rip */ + -1, /* %eflags */ + -1, /* %cs */ + -1, /* %ss */ + -1, /* %ds */ + -1, /* %es */ + -1, /* %fs */ + -1 /* %gs */ +}; + +#define CODE_SEL (4 << 3) +#define DATA_SEL (5 << 3) + +static void +amd64fbsd_supply_pcb(struct regcache *regcache, CORE_ADDR pcb_addr) +{ + gdb_byte buf[8]; + int i; + + for (i = 0; i < ARRAY_SIZE (amd64fbsd_pcb_offset); i++) + if (amd64fbsd_pcb_offset[i] != -1) { + if (target_read_memory(pcb_addr + amd64fbsd_pcb_offset[i], buf, + sizeof buf) != 0) + continue; + regcache_raw_supply(regcache, i, buf); + } + + regcache_raw_supply_unsigned(regcache, AMD64_CS_REGNUM, CODE_SEL); + regcache_raw_supply_unsigned(regcache, AMD64_SS_REGNUM, DATA_SEL); +} + +static const int amd64fbsd_trapframe_offset[] = { + 6 * 8, /* %rax */ + 7 * 8, /* %rbx */ + 3 * 8, /* %rcx */ + 2 * 8, /* %rdx */ + 1 * 8, /* %rsi */ + 0 * 8, /* %rdi */ + 8 * 8, /* %rbp */ + 22 * 8, /* %rsp */ + 4 * 8, /* %r8 ... */ + 5 * 8, + 9 * 8, + 10 * 8, + 11 * 8, + 12 * 8, + 13 * 8, + 14 * 8, /* ... %r15 */ + 19 * 8, /* %rip */ + 21 * 8, /* %eflags */ + 20 * 8, /* %cs */ + 23 * 8, /* %ss */ + -1, /* %ds */ + -1, /* %es */ + -1, /* %fs */ + -1 /* %gs */ +}; + +#define TRAPFRAME_SIZE 192 + +static struct trad_frame_cache * +amd64fbsd_trapframe_cache (struct frame_info *this_frame, void **this_cache) +{ + struct gdbarch *gdbarch = get_frame_arch (this_frame); + enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); + struct trad_frame_cache *cache; + CORE_ADDR addr, func, pc, sp; + const char *name; + int i; + + if (*this_cache != NULL) + return (*this_cache); + + cache = trad_frame_cache_zalloc (this_frame); + *this_cache = cache; + + func = get_frame_func (this_frame); + sp = get_frame_register_unsigned (this_frame, AMD64_RSP_REGNUM); + + find_pc_partial_function (func, &name, NULL, NULL); + if (strcmp(name, "fork_trampoline") == 0 && get_frame_pc (this_frame) == func) + { + /* fork_exit hasn't been called (kthread has never run), so %rsp + in the pcb points to the trapframe. GDB has auto-adjusted + %rsp for this frame to account for the "call" into + fork_trampoline, so "undo" the adjustment. */ + sp += 8; + } + + for (i = 0; i < ARRAY_SIZE (amd64fbsd_trapframe_offset); i++) + if (amd64fbsd_trapframe_offset[i] != -1) + trad_frame_set_reg_addr (cache, i, sp + amd64fbsd_trapframe_offset[i]); + + /* Read %rip from trap frame. */ + addr = sp + amd64fbsd_trapframe_offset[AMD64_RIP_REGNUM]; + pc = read_memory_unsigned_integer (addr, 8, byte_order); + + if (pc == 0 && strcmp(name, "fork_trampoline") == 0) + { + /* Initial frame of a kthread; terminate backtrace. */ + trad_frame_set_id (cache, outer_frame_id); + } + else + { + /* Construct the frame ID using the function start. */ + trad_frame_set_id (cache, frame_id_build (sp + TRAPFRAME_SIZE, func)); + } + + return cache; +} + +static void +amd64fbsd_trapframe_this_id (struct frame_info *this_frame, + void **this_cache, struct frame_id *this_id) +{ + struct trad_frame_cache *cache = + amd64fbsd_trapframe_cache (this_frame, this_cache); + + trad_frame_get_id (cache, this_id); +} + +static struct value * +amd64fbsd_trapframe_prev_register (struct frame_info *this_frame, + void **this_cache, int regnum) +{ + struct trad_frame_cache *cache = + amd64fbsd_trapframe_cache (this_frame, this_cache); + + return trad_frame_get_register (cache, this_frame, regnum); +} + +static int +amd64fbsd_trapframe_sniffer (const struct frame_unwind *self, + struct frame_info *this_frame, + void **this_prologue_cache) +{ + const char *name; + + find_pc_partial_function (get_frame_func (this_frame), &name, NULL, NULL); + return (name && ((strcmp (name, "calltrap") == 0) + || (strcmp (name, "fork_trampoline") == 0) + || (strcmp (name, "nmi_calltrap") == 0) + || (name[0] == 'X' && name[1] != '_'))); +} + +static const struct frame_unwind amd64fbsd_trapframe_unwind = { + NORMAL_FRAME, + default_frame_unwind_stop_reason, + amd64fbsd_trapframe_this_id, + amd64fbsd_trapframe_prev_register, + NULL, + amd64fbsd_trapframe_sniffer +}; + +static void +amd64fbsd_kernel_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch) +{ + + amd64_init_abi(info, gdbarch); + + frame_unwind_prepend_unwinder(gdbarch, &amd64fbsd_trapframe_unwind); + + set_solib_ops(gdbarch, &kld_so_ops); + + fbsd_vmcore_set_supply_pcb(gdbarch, amd64fbsd_supply_pcb); + fbsd_vmcore_set_cpu_pcb_addr(gdbarch, kgdb_trgt_stop_pcb); +} + +void _initialize_amd64_kgdb_tdep(void); + +void +_initialize_amd64_kgdb_tdep(void) +{ + gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64, + GDB_OSABI_FREEBSD_ELF_KERNEL, amd64fbsd_kernel_init_abi); + +#ifdef __amd64__ + gdb_assert(offsetof(struct pcb, pcb_rbx) + == amd64fbsd_pcb_offset[AMD64_RBX_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_rbp) + == amd64fbsd_pcb_offset[AMD64_RBP_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_rsp) + == amd64fbsd_pcb_offset[AMD64_RSP_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_r12) + == amd64fbsd_pcb_offset[AMD64_R12_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_r13) + == amd64fbsd_pcb_offset[AMD64_R13_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_r14) + == amd64fbsd_pcb_offset[AMD64_R14_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_r15) + == amd64fbsd_pcb_offset[AMD64_R15_REGNUM]); + gdb_assert(offsetof(struct pcb, pcb_rip) + == amd64fbsd_pcb_offset[AMD64_RIP_REGNUM]); + gdb_assert(CODE_SEL == GSEL(GCODE_SEL, SEL_KPL)); + gdb_assert(DATA_SEL == GSEL(GDATA_SEL, SEL_KPL)); + gdb_assert(sizeof(struct trapframe) == TRAPFRAME_SIZE); + gdb_assert(offsetof(struct trapframe, tf_rax) + == amd64fbsd_trapframe_offset[AMD64_RAX_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rbx) + == amd64fbsd_trapframe_offset[AMD64_RBX_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rcx) + == amd64fbsd_trapframe_offset[AMD64_RCX_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rdx) + == amd64fbsd_trapframe_offset[AMD64_RDX_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rsi) + == amd64fbsd_trapframe_offset[AMD64_RSI_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rdi) + == amd64fbsd_trapframe_offset[AMD64_RDI_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rbp) + == amd64fbsd_trapframe_offset[AMD64_RBP_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rsp) + == amd64fbsd_trapframe_offset[AMD64_RSP_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r8) + == amd64fbsd_trapframe_offset[AMD64_R8_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r9) + == amd64fbsd_trapframe_offset[AMD64_R9_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r10) + == amd64fbsd_trapframe_offset[AMD64_R10_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r11) + == amd64fbsd_trapframe_offset[AMD64_R11_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r12) + == amd64fbsd_trapframe_offset[AMD64_R12_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r13) + == amd64fbsd_trapframe_offset[AMD64_R13_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r14) + == amd64fbsd_trapframe_offset[AMD64_R14_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_r15) + == amd64fbsd_trapframe_offset[AMD64_R15_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rip) + == amd64fbsd_trapframe_offset[AMD64_RIP_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_rflags) + == amd64fbsd_trapframe_offset[AMD64_EFLAGS_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_cs) + == amd64fbsd_trapframe_offset[AMD64_CS_REGNUM]); + gdb_assert(offsetof(struct trapframe, tf_ss) + == amd64fbsd_trapframe_offset[AMD64_SS_REGNUM]); +#endif +} Added: head/devel/gdb/files/kgdb/fbsd-kld.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/kgdb/fbsd-kld.c Tue Oct 6 18:52:58 2015 (r398712) @@ -0,0 +1,591 @@ +/* + * Copyright (c) 2004 Marcel Moolenaar + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "solib.h" +#include + +#include "kgdb.h" + +struct lm_info { + CORE_ADDR base_address; +}; + +struct kld_info { + /* Offsets of fields in linker_file structure. */ + CORE_ADDR off_address, off_filename, off_pathname, off_next; + + /* KVA of 'linker_path' which corresponds to the kern.module_path sysctl .*/ + CORE_ADDR module_path_addr; + CORE_ADDR linker_files_addr; + CORE_ADDR kernel_file_addr; +}; + +struct target_so_ops kld_so_ops; + +/* Per-program-space data key. */ +static const struct program_space_data *kld_pspace_data; + +static void +kld_pspace_data_cleanup (struct program_space *pspace, void *arg) +{ + struct kld_info *info = arg; + + xfree (info); +} + +/* Get the current kld data. If none is found yet, add it now. This + function always returns a valid object. */ + +static struct kld_info * +get_kld_info (void) +{ + struct kld_info *info; + + info = program_space_data (current_program_space, kld_pspace_data); + if (info != NULL) + return info; + + info = XCNEW (struct kld_info); + set_program_space_data (current_program_space, kld_pspace_data, info); + return info; +} + +static int +kld_ok (char *path) +{ + struct stat sb; + + if (stat(path, &sb) == 0 && S_ISREG(sb.st_mode)) + return (1); + return (0); +} + +/* + * Look for a matching file checking for debug suffixes before the raw file: + * - filename + ".debug" (e.g. foo.ko.debug) + * - filename (e.g. foo.ko) + */ +static const char *kld_suffixes[] = { + ".debug", + ".symbols", + "", + NULL +}; + +static int +check_kld_path (char *path, size_t path_size) +{ + const char **suffix; + char *ep; + + ep = path + strlen(path); + suffix = kld_suffixes; + while (*suffix != NULL) { + if (strlcat(path, *suffix, path_size) < path_size) { + if (kld_ok(path)) + return (1); + } + + /* Restore original path to remove suffix. */ + *ep = '\0'; + suffix++; + } + return (0); +} + +/* + * Try to find the path for a kld by looking in the kernel's directory and + * in the various paths in the module path. + */ +static int +find_kld_path (char *filename, char *path, size_t path_size) +{ + struct kld_info *info; + struct cleanup *cleanup; + char *module_path; + char *kernel_dir, *module_dir, *cp; + int error; + + info = get_kld_info(); + if (exec_bfd) { + kernel_dir = dirname(bfd_get_filename(exec_bfd)); + if (kernel_dir != NULL) { + snprintf(path, path_size, "%s/%s", kernel_dir, + filename); + if (check_kld_path(path, path_size)) + return (1); + } + } + if (info->module_path_addr != 0) { + target_read_string(info->module_path_addr, &module_path, + PATH_MAX, &error); + if (error == 0) { + cleanup = make_cleanup(xfree, module_path); + cp = module_path; + while ((module_dir = strsep(&cp, ";")) != NULL) { + snprintf(path, path_size, "%s/%s", module_dir, + filename); + if (check_kld_path(path, path_size)) { + do_cleanups(cleanup); + return (1); + } + } + do_cleanups(cleanup); + } + } + return (0); +} + +/* + * Read a kernel pointer given a KVA in 'address'. + */ +static CORE_ADDR +read_pointer (CORE_ADDR address) +{ + struct type *ptr_type; + gdb_byte ptr_buf[8]; + int arch_size; + + arch_size = bfd_get_arch_size (exec_bfd); + if (arch_size == -1) + return (0); + ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr; + if (target_read_memory(address, ptr_buf, arch_size / 8) != 0) + return (0); + return (extract_typed_address (ptr_buf, ptr_type)); +} + +/* + * Try to find this kld in the kernel linker's list of linker files. + */ +static int +find_kld_address (char *arg, CORE_ADDR *address) +{ + struct kld_info *info; + CORE_ADDR kld; + char *kld_filename; + char *filename; + int error; + + info = get_kld_info(); + if (info->linker_files_addr == 0 || info->off_address == 0 || + info->off_filename == 0 || info->off_next == 0) + return (0); + + filename = basename(arg); + for (kld = read_pointer(info->linker_files_addr); kld != 0; + kld = read_pointer(kld + info->off_next)) { + /* Try to read this linker file's filename. */ + target_read_string(read_pointer(kld + info->off_filename), + &kld_filename, PATH_MAX, &error); + if (error) + continue; + + /* Compare this kld's filename against our passed in name. */ + if (strcmp(kld_filename, filename) != 0) { + xfree(kld_filename); + continue; + } + xfree(kld_filename); + + /* + * We found a match, use its address as the base + * address if we can read it. + */ + *address = read_pointer(kld + info->off_address); + if (*address == 0) + return (0); + return (1); + } + return (0); +} + +static void +adjust_section_address (struct target_section *sec, CORE_ADDR *curr_base) +{ + struct bfd_section *asect = sec->the_bfd_section; + bfd *abfd = asect->owner; + + if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0) { + sec->addr += *curr_base; + sec->endaddr += *curr_base; + return; + } + + *curr_base = align_power(*curr_base, + bfd_get_section_alignment(abfd, asect)); + sec->addr = *curr_base; + sec->endaddr = sec->addr + bfd_section_size(abfd, asect); + *curr_base = sec->endaddr; +} + +static void +load_kld (char *path, CORE_ADDR base_addr, int from_tty) +{ + struct section_addr_info *sap; + struct target_section *sections = NULL, *sections_end = NULL, *s; + struct cleanup *cleanup; + bfd *bfd; + CORE_ADDR curr_addr; + int add_flags, i; + + /* Open the kld. */ + bfd = bfd_openr(path, gnutarget); + if (bfd == NULL) + error("\"%s\": can't open: %s", path, + bfd_errmsg(bfd_get_error())); + cleanup = make_cleanup_bfd_unref(bfd); + + if (!bfd_check_format(bfd, bfd_object)) + error("\%s\": not an object file", path); + + /* Make sure we have a .text section. */ + if (bfd_get_section_by_name (bfd, ".text") == NULL) + error("\"%s\": can't find text section", path); + + /* Build a section table from the bfd and relocate the sections. */ + if (build_section_table (bfd, §ions, §ions_end)) + error("\"%s\": can't find file sections", path); + make_cleanup(xfree, sections); + curr_addr = base_addr; + for (s = sections; s < sections_end; s++) + adjust_section_address(s, &curr_addr); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Oct 6 18:53: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 6DE299D0491; Tue, 6 Oct 2015 18:53:14 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39A561F8; Tue, 6 Oct 2015 18:53:14 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96IrDri092980; Tue, 6 Oct 2015 18:53:13 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96IrDeV092978; Tue, 6 Oct 2015 18:53:13 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201510061853.t96IrDeV092978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Tue, 6 Oct 2015 18:53:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398713 - head/www/squid 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: Tue, 06 Oct 2015 18:53:14 -0000 Author: flo Date: Tue Oct 6 18:53:12 2015 New Revision: 398713 URL: https://svnweb.freebsd.org/changeset/ports/398713 Log: Update to 3.5.10 PR: 203501 Submitted by: (maintainer) Modified: head/www/squid/Makefile head/www/squid/distinfo Modified: head/www/squid/Makefile ============================================================================== --- head/www/squid/Makefile Tue Oct 6 18:52:58 2015 (r398712) +++ head/www/squid/Makefile Tue Oct 6 18:53:12 2015 (r398713) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= squid -PORTVERSION= 3.5.9 -PORTREVISION= 1 +PORTVERSION= 3.5.10 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ Modified: head/www/squid/distinfo ============================================================================== --- head/www/squid/distinfo Tue Oct 6 18:52:58 2015 (r398712) +++ head/www/squid/distinfo Tue Oct 6 18:53:12 2015 (r398713) @@ -1,2 +1,2 @@ -SHA256 (squid3.5/squid-3.5.9.tar.xz) = 9e9a3dc16e6f97258f2c3589dc6163bec20fb9369aec1fe03612dbca76d185d3 -SIZE (squid3.5/squid-3.5.9.tar.xz) = 2296384 +SHA256 (squid3.5/squid-3.5.10.tar.xz) = 736e69fbddd6e985d2f85c995526f0a2bc4294c46dfb6737c0ccf09274a458b3 +SIZE (squid3.5/squid-3.5.10.tar.xz) = 2297452 From owner-svn-ports-head@freebsd.org Tue Oct 6 18:58:05 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 E1FBE9D079F; Tue, 6 Oct 2015 18:58:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3D22696; Tue, 6 Oct 2015 18:58:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96Iw31h093381; Tue, 6 Oct 2015 18:58:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96Iw3Mr093379; Tue, 6 Oct 2015 18:58:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510061858.t96Iw3Mr093379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 6 Oct 2015 18:58:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398714 - head/multimedia/mpv 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: Tue, 06 Oct 2015 18:58:05 -0000 Author: pi Date: Tue Oct 6 18:58:03 2015 New Revision: 398714 URL: https://svnweb.freebsd.org/changeset/ports/398714 Log: multimedia/mpv: 0.10.0 -> 0.11.0 - Update to 0.11.0 - Update Waf to 1.8.14 - Remove BS2B option - Remove LADSPA option PR: 203550 Submitted by: Carlos J. Puga Medina (maintainer) Modified: head/multimedia/mpv/Makefile head/multimedia/mpv/distinfo Modified: head/multimedia/mpv/Makefile ============================================================================== --- head/multimedia/mpv/Makefile Tue Oct 6 18:53:12 2015 (r398713) +++ head/multimedia/mpv/Makefile Tue Oct 6 18:58:03 2015 (r398714) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpv -PORTVERSION= 0.10.0 +PORTVERSION= 0.11.0 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= multimedia audio @@ -18,7 +18,7 @@ BUILD_DEPENDS= rst2man:${PORTSDIR}/textp USE_GITHUB= yes GH_ACCOUNT= mpv-player waf-project:waf GH_PROJECT= waf:waf -GH_TAGNAME= waf-1.8.12:waf +GH_TAGNAME= waf-1.8.14:waf WAF_CMD= ${WRKSRC_waf}/waf-light @@ -36,7 +36,7 @@ CONFIGURE_ARGS= --docdir=${EXAMPLESDIR} --disable-pdf \ --enable-libmpv-shared -OPTIONS_DEFINE= ASS BS2B DOCS ENCA LADSPA LCMS2 \ +OPTIONS_DEFINE= ASS DOCS ENCA LCMS2 \ LIBGUESS LUAJIT UCHARDET ZSH OPTIONS_DEFAULT= ASS DVDREAD DVDNAV ENCA X11 OPTIONS_GROUP= IN VO AO @@ -46,7 +46,6 @@ OPTIONS_GROUP_AO= ALSA JACK PULSEAUDIO OPTIONS_SUB= yes ASS_DESC= ASS/SSA subtitle and OSD rendering -BS2B_DESC= Enable Bauer Stereophonic-to-Binaural DSP support DVDREAD_DESC= DVD Playback support DVDNAV_DESC= DVD menu navigation ENCA_DESC= Enable encoding detection support @@ -63,9 +62,6 @@ ALSA_CONFIGURE_OFF= --disable-alsa ASS_LIB_DEPENDS= libass.so:${PORTSDIR}/multimedia/libass ASS_CONFIGURE_OFF= --disable-libass -BS2B_LIB_DEPENDS= libbs2b.so:${PORTSDIR}/audio/libbs2b -BS2B_CONFIGURE_OFF= --disable-libbs2b - CACA_LIB_DEPENDS= libcaca.so:${PORTSDIR}/graphics/libcaca CACA_CONFIGURE_OFF= --disable-caca @@ -84,10 +80,6 @@ ENCA_CONFIGURE_OFF= --disable-enca JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack JACK_CONFIGURE_OFF= --disable-jack -LADSPA_BUILD_DEPENDS= ${LOCALBASE}/lib/ladspa/amp.so:${PORTSDIR}/audio/ladspa -LADSPA_RUN_DEPENDS= ${LOCALBASE}/lib/ladspa/amp.so:${PORTSDIR}/audio/ladspa -LADSPA_CONFIGURE_OFF= --disable-ladspa - LCMS2_LIB_DEPENDS= liblcms2.so:${PORTSDIR}/graphics/lcms2 LCMS2_CONFIGURE_OFF= --disable-lcms2 Modified: head/multimedia/mpv/distinfo ============================================================================== --- head/multimedia/mpv/distinfo Tue Oct 6 18:53:12 2015 (r398713) +++ head/multimedia/mpv/distinfo Tue Oct 6 18:58:03 2015 (r398714) @@ -1,4 +1,4 @@ -SHA256 (mpv-player-mpv-v0.10.0_GH0.tar.gz) = f9eaec3e4f6094c4d889ab04f86c479a089c389616e1a5522c92fedb2fe7044c -SIZE (mpv-player-mpv-v0.10.0_GH0.tar.gz) = 2727566 -SHA256 (waf-project-waf-waf-1.8.12_GH0.tar.gz) = 5ba55fef2811a54c86c99270f3a43e6327f927b182c6e0af70647dfe7ee2973f -SIZE (waf-project-waf-waf-1.8.12_GH0.tar.gz) = 1349077 +SHA256 (mpv-player-mpv-v0.11.0_GH0.tar.gz) = a2157174e46db46dad5deb1fde94283e72ebe922fd15447cb16a2a243fae5bda +SIZE (mpv-player-mpv-v0.11.0_GH0.tar.gz) = 2689655 +SHA256 (waf-project-waf-waf-1.8.14_GH0.tar.gz) = e867f117001855a542b4366e0136b6468a4e59e5fd1d3800b5e7e6f242dd3ca2 +SIZE (waf-project-waf-waf-1.8.14_GH0.tar.gz) = 1353687 From owner-svn-ports-head@freebsd.org Tue Oct 6 19:18:25 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 568939D0611; Tue, 6 Oct 2015 19:18:25 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13664341; Tue, 6 Oct 2015 19:18:25 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96JIODp000258; Tue, 6 Oct 2015 19:18:24 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96JINBP000251; Tue, 6 Oct 2015 19:18:23 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510061918.t96JINBP000251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 6 Oct 2015 19:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398715 - in head/deskutils: . syncthing-gtk syncthing-gtk/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: Tue, 06 Oct 2015 19:18:25 -0000 Author: swills Date: Tue Oct 6 19:18:23 2015 New Revision: 398715 URL: https://svnweb.freebsd.org/changeset/ports/398715 Log: deskutils/syncthing-gtk: create port GTK3 & Python based GUI and notification area icon for Syncthing Supported Syncthing features: Everything what WebUI can display Adding / editing / deleting nodes Adding / editing / deleting repositories Restart / shutdown server Editing daemon settings WWW: https://syncthing.net/ PR: 203562 Submitted by: Ivan Added: head/deskutils/syncthing-gtk/ head/deskutils/syncthing-gtk/Makefile (contents, props changed) head/deskutils/syncthing-gtk/distinfo (contents, props changed) head/deskutils/syncthing-gtk/files/ head/deskutils/syncthing-gtk/files/patch-syncthing-gtk.desktop (contents, props changed) head/deskutils/syncthing-gtk/files/patch-syncthing__gtk_configuration.py (contents, props changed) head/deskutils/syncthing-gtk/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Tue Oct 6 18:58:03 2015 (r398714) +++ head/deskutils/Makefile Tue Oct 6 19:18:23 2015 (r398715) @@ -234,6 +234,7 @@ SUBDIR += superkaramba SUBDIR += superswitcher SUBDIR += surrealtodo + SUBDIR += syncthing-gtk SUBDIR += systempreferences SUBDIR += tagutils SUBDIR += taskcoach Added: head/deskutils/syncthing-gtk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/syncthing-gtk/Makefile Tue Oct 6 19:18:23 2015 (r398715) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= syncthing-gtk +PORTVERSION= 0.7.6 +DISTVERSIONPREFIX= v +CATEGORIES= deskutils python + +MAINTAINER= bsd@abinet.ru +COMMENT= Python based GUI for Syncthing + +LICENSE= GPLv2 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil + +USE_GITHUB= yes +GH_ACCOUNT= syncthing + +USES= python:2 +USE_PYTHON= autoplist distutils +USE_GNOME= gtk30 pygobject3 +INSTALLS_ICONS= yes + +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ + ${WRKSRC}/syncthing-gtk.desktop \ + ${WRKSRC}/syncthing_gtk/configuration.py + +.include Added: head/deskutils/syncthing-gtk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/syncthing-gtk/distinfo Tue Oct 6 19:18:23 2015 (r398715) @@ -0,0 +1,2 @@ +SHA256 (syncthing-syncthing-gtk-v0.7.6_GH0.tar.gz) = e7993135035114c43c06dcc12e52f665578166be089de422b691551a71fcceb4 +SIZE (syncthing-syncthing-gtk-v0.7.6_GH0.tar.gz) = 486984 Added: head/deskutils/syncthing-gtk/files/patch-syncthing-gtk.desktop ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/syncthing-gtk/files/patch-syncthing-gtk.desktop Tue Oct 6 19:18:23 2015 (r398715) @@ -0,0 +1,11 @@ +--- syncthing-gtk.desktop.orig 2015-10-06 17:39:30 UTC ++++ syncthing-gtk.desktop +@@ -2,7 +2,7 @@ + Name=Syncthing GTK + GenericName=Syncthing GTK + Comment=GUI for Syncthing +-Exec=/usr/bin/syncthing-gtk ++Exec=%%LOCALBASE%%/bin/syncthing-gtk + Type=Application + Icon=syncthing-gtk + Categories=Network Added: head/deskutils/syncthing-gtk/files/patch-syncthing__gtk_configuration.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/syncthing-gtk/files/patch-syncthing__gtk_configuration.py Tue Oct 6 19:18:23 2015 (r398715) @@ -0,0 +1,11 @@ +--- syncthing_gtk/configuration.py.orig 2015-10-06 17:40:00 UTC ++++ syncthing_gtk/configuration.py +@@ -30,7 +30,7 @@ class _Configuration(object): + "autokill_daemon" : (int, 2), # 0 - never kill, 1 - always kill, 2 - ask + "daemon_priority" : (int, 0), # uses nice values + "max_cpus" : (int, 0), # 0 for all cpus +- "syncthing_binary" : (str, "/usr/bin/syncthing"), ++ "syncthing_binary" : (str, "%%LOCALBASE%%/bin/syncthing"), + "minimize_on_start" : (bool, False), + "folder_as_path" : (bool, True), + "use_inotify" : (list, []), Added: head/deskutils/syncthing-gtk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/syncthing-gtk/pkg-descr Tue Oct 6 19:18:23 2015 (r398715) @@ -0,0 +1,10 @@ +GTK3 & Python based GUI and notification area icon for Syncthing + +Supported Syncthing features: + Everything what WebUI can display + Adding / editing / deleting nodes + Adding / editing / deleting repositories + Restart / shutdown server + Editing daemon settings + +WWW: https://syncthing.net/ From owner-svn-ports-head@freebsd.org Tue Oct 6 19:27: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 ACB9E9D0C24 for ; Tue, 6 Oct 2015 19:27:18 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-vk0-f52.google.com (mail-vk0-f52.google.com [209.85.213.52]) (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 6EFACAA0 for ; Tue, 6 Oct 2015 19:27:17 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: by vkgd64 with SMTP id d64so124317759vkg.0 for ; Tue, 06 Oct 2015 12:27:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=IwHD+pbj8Jv3LRVDOzMgjWphelDvpD/CzxFN2C6atFQ=; b=dfpqIBi+OiWywhjOhYbYvRb8wjdK8uv2POtAOYGqnbGbRa0/LZrXuTh6XEhkDcSOYA djVMBaat9ds45pyLYjiuV91NazbG7AWjsrESKv7+Y814/PJ4IOQCBZDmNrxJ07X5xh2v wsQig1Q7qlgpo6UDZqx6LElxdUhY9FFzQN9xcs67v7udYIdGzjPHSDZCfaSgESia1Kvo lpxAk0goqGYIuN5c0OFQEuFshih6Aa/EpWBPZymCf3BS8PhwwAn04+u3NplYcCA2U/fD wigIR1+1R1iVKz5Bl5EbJ/Ts5f9WDtjcYWGpPow7VIMnUinCpFYoc3Qru5p+YTuTGthQ CVNA== X-Gm-Message-State: ALoCoQniR9eh68rlUiR2l7mDfUOKHPeL5rnuODsrSHEUQEnYDuxQno0Cybp9HhATgKb0NiU2oRkm X-Received: by 10.31.132.10 with SMTP id g10mr25251173vkd.40.1444159631385; Tue, 06 Oct 2015 12:27:11 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.31.226.68 with HTTP; Tue, 6 Oct 2015 12:26:32 -0700 (PDT) In-Reply-To: <20151006165135.GB68979@hades.panopticon> References: <201510031706.t93H6qiu007585@repo.freebsd.org> <20151006165135.GB68979@hades.panopticon> From: Sunpoet Po-Chuan Hsieh Date: Wed, 7 Oct 2015 03:26:32 +0800 X-Google-Sender-Auth: 3bCsemxjZdSzbnB-oShKeS_Erz0 Message-ID: Subject: Re: svn commit: r398474 - head/Mk/Uses To: Dmitry Marakasov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 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: Tue, 06 Oct 2015 19:27:18 -0000 On Wed, Oct 7, 2015 at 12:51 AM, Dmitry Marakasov wrote: > * Sunpoet Po-Chuan Hsieh (sunpoet@FreeBSD.org) wrote: > > > Log: > > - Add NO_PERL5_TEST: allow ports with USES=perl5 to run default > do-test: defined in bsd.port.mk > > - Fix comment > > > > Modified: > > head/Mk/Uses/perl5.mk > > > > Modified: head/Mk/Uses/perl5.mk > > > ============================================================================== > > --- head/Mk/Uses/perl5.mk Sat Oct 3 16:30:19 2015 (r398473) > > +++ head/Mk/Uses/perl5.mk Sat Oct 3 17:06:52 2015 (r398474) > > @@ -308,7 +308,7 @@ fix-perl-things: > > @${RM} -f > ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : > > @${RMDIR} -p > ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : > > > > -.if !target(do-test) > > +.if !target(do-test) && !defined(NO_PERL5_TEST) > > TEST_TARGET?= test > > TEST_WRKSRC?= ${BUILD_WRKSRC} > > do-test: > > @@ -317,5 +317,5 @@ do-test: > > .elif ${USE_PERL5:Mconfigure} > > cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${MAKE_CMD} > ${TEST_ARGS} ${TEST_TARGET} > > .endif # USE_PERL5:Mmodbuild* > > -.endif # regression-test > > +.endif # do-test > > .endif # defined(_POSTMKINCLUDED) > > Please roll this back. We already have NO_TEST specifically for this > purpose. Also, I'd be really grateful if tests-related infrastructure > changes are reviewed first with me CCd. > > No, they are different. IIUC NO_TEST is used to bypass test framework entirely. A port requires perl would add USES=perl5 but it does not mean that it wants to run perl tests. Since we do not support multiple tests currently, we need to check NO_PERL5_TEST in order to skip do-test: from perl5.mk but run the do-test: from bsd.port.mk or other Uses/*.mk (e.g. USES=python). Please try ftp/curl with/without NO_PERL5_TEST. Regards, sunpoet > -- > 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 Tue Oct 6 19: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 13DF29B6AD3; Tue, 6 Oct 2015 19:45:09 +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 D039C1A25; Tue, 6 Oct 2015 19:45:08 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id 4478CB061E; Tue, 6 Oct 2015 22:45:06 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 371D0E2D; Tue, 6 Oct 2015 22:41:22 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 17C29128; Tue, 6 Oct 2015 22:44:05 +0300 (MSK) Date: Tue, 6 Oct 2015 22:44:05 +0300 From: Dmitry Marakasov To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398474 - head/Mk/Uses Message-ID: <20151006194404.GE68979@hades.panopticon> References: <201510031706.t93H6qiu007585@repo.freebsd.org> <20151006165135.GB68979@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: 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: Tue, 06 Oct 2015 19:45:09 -0000 * Sunpoet Po-Chuan Hsieh (sunpoet@freebsd.org) wrote: > > > Log: > > > - Add NO_PERL5_TEST: allow ports with USES=perl5 to run default > > do-test: defined in bsd.port.mk > > > - Fix comment > > > > > > Modified: > > > head/Mk/Uses/perl5.mk > > > > > > Modified: head/Mk/Uses/perl5.mk > > > > > ============================================================================== > > > --- head/Mk/Uses/perl5.mk Sat Oct 3 16:30:19 2015 (r398473) > > > +++ head/Mk/Uses/perl5.mk Sat Oct 3 17:06:52 2015 (r398474) > > > @@ -308,7 +308,7 @@ fix-perl-things: > > > @${RM} -f > > ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : > > > @${RMDIR} -p > > ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : > > > > > > -.if !target(do-test) > > > +.if !target(do-test) && !defined(NO_PERL5_TEST) > > > TEST_TARGET?= test > > > TEST_WRKSRC?= ${BUILD_WRKSRC} > > > do-test: > > > @@ -317,5 +317,5 @@ do-test: > > > .elif ${USE_PERL5:Mconfigure} > > > cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${MAKE_CMD} > > ${TEST_ARGS} ${TEST_TARGET} > > > .endif # USE_PERL5:Mmodbuild* > > > -.endif # regression-test > > > +.endif # do-test > > > .endif # defined(_POSTMKINCLUDED) > > > > Please roll this back. We already have NO_TEST specifically for this > > purpose. Also, I'd be really grateful if tests-related infrastructure > > changes are reviewed first with me CCd. > > > No, they are different. IIUC NO_TEST is used to bypass test framework > entirely. A port requires perl would add USES=perl5 but it does not mean > that it wants to run perl tests. Since we do not support multiple tests > currently, we need to check NO_PERL5_TEST in order to skip do-test: from > perl5.mk but run the do-test: from bsd.port.mk or other Uses/*.mk (e.g. > USES=python). As I've mentioned in addendum to my mail, the problem here is that perl5.mk lacks a check for modbuild/configure. There may be only one build system, and either that build system provides tests, or there are custom tests or there are no tests. That's default (for either perl modbuild, perl configure, pydistutils etc.), do-test: defined in Makefile or NO_TEST defined correspondingly. -- 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 Tue Oct 6 20:02:02 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 0C46C9D0BCA; Tue, 6 Oct 2015 20:02:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E80AD36; Tue, 6 Oct 2015 20:02:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96K20YJ016297; Tue, 6 Oct 2015 20:02:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96K20FG016283; Tue, 6 Oct 2015 20:02:00 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510062002.t96K20FG016283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 6 Oct 2015 20:02:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398716 - in head: Mk/Uses www/firefox www/firefox-i18n www/firefox/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: Tue, 06 Oct 2015 20:02:02 -0000 Author: swills Date: Tue Oct 6 20:01:59 2015 New Revision: 398716 URL: https://svnweb.freebsd.org/changeset/ports/398716 Log: www/firefox: update to 41.0 PR: 203384 Submitted by: Christoph Moench-Tegeder MFH: 2014Q4 Security: 2d56c7f4-b354-428f-8f48-38150c607a05 Modified: head/Mk/Uses/gecko.mk head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo head/www/firefox/files/patch-bug702179 head/www/firefox/files/patch-bug847568 head/www/firefox/files/patch-memory-jemalloc-Makefile.in head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk Modified: head/Mk/Uses/gecko.mk ============================================================================== --- head/Mk/Uses/gecko.mk Tue Oct 6 19:18:23 2015 (r398715) +++ head/Mk/Uses/gecko.mk Tue Oct 6 20:01:59 2015 (r398716) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=38:${PORTSDIR}/www .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 38 -_GECKO_VERSIONS= 38 40 +_GECKO_VERSIONS= 38 41 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 38_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -40_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +41_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox-i18n/Makefile Tue Oct 6 20:01:59 2015 (r398716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 40.0.3 +PORTVERSION= 41.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= zip:infozip gecko:firefox,40,build +USES= zip:infozip gecko:firefox,41,build USE_XPI= firefox linux-firefox NO_ARCH= yes Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox-i18n/distinfo Tue Oct 6 20:01:59 2015 (r398716) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-i18n-40.0.3/ach.xpi) = 931ff80fc7ab5a3515a31994dbc0787e6e381b66672949f510cc96a125c11a88 -SIZE (xpi/firefox-i18n-40.0.3/ach.xpi) = 494119 -SHA256 (xpi/firefox-i18n-40.0.3/af.xpi) = e6fac0b29616c3924530ea8714cb4bd6d836818b4b23b5fb2a8aa4e80dd1559b -SIZE (xpi/firefox-i18n-40.0.3/af.xpi) = 498500 -SHA256 (xpi/firefox-i18n-40.0.3/an.xpi) = cb4cf9363bae9c9e84bb7d763be998701c6f017824d9986c74b21b46d0cb011d -SIZE (xpi/firefox-i18n-40.0.3/an.xpi) = 476725 -SHA256 (xpi/firefox-i18n-40.0.3/ar.xpi) = 3635e6899a89ee93bc0f5290799471c8c8493782ee2819d47278ed1c385179cd -SIZE (xpi/firefox-i18n-40.0.3/ar.xpi) = 532106 -SHA256 (xpi/firefox-i18n-40.0.3/as.xpi) = bc13edcbf25ad488b0bcb81987f2c7be90ff38bf3d8abf40e9f14ab7a21b6474 -SIZE (xpi/firefox-i18n-40.0.3/as.xpi) = 522246 -SHA256 (xpi/firefox-i18n-40.0.3/ast.xpi) = c153cf18ab652c5535452ab514ed4288806298f32d8329e3adb8e67e53a025d1 -SIZE (xpi/firefox-i18n-40.0.3/ast.xpi) = 408919 -SHA256 (xpi/firefox-i18n-40.0.3/az.xpi) = 6f118a8ae96377c67d00ac4d8fe6ec72a57124593097b308779299d17fdc7a98 -SIZE (xpi/firefox-i18n-40.0.3/az.xpi) = 505061 -SHA256 (xpi/firefox-i18n-40.0.3/be.xpi) = 6a91c11e4c0c2e0469b972d80b286fb3bf600fb8eb30184b94a3001972e5b72b -SIZE (xpi/firefox-i18n-40.0.3/be.xpi) = 464201 -SHA256 (xpi/firefox-i18n-40.0.3/bg.xpi) = 0ed54d7e27ffa0040da087d716b1a23f36118e176bceef62becfa73ca3ed8b23 -SIZE (xpi/firefox-i18n-40.0.3/bg.xpi) = 503495 -SHA256 (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = 8a6555682596254f617b41a406b3ea48f74a9c0aa64a180ab9760e66fc0fee35 -SIZE (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = 538760 -SHA256 (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = cc0b8ae6969e5bf09d631dd621ee88bf25755dc0df6b851a4a0116c53a4e7b66 -SIZE (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = 541272 -SHA256 (xpi/firefox-i18n-40.0.3/br.xpi) = 54553c59ce2f62e5bed36372decd9e2480c770443011a8713d5cc23605caca0a -SIZE (xpi/firefox-i18n-40.0.3/br.xpi) = 456849 -SHA256 (xpi/firefox-i18n-40.0.3/bs.xpi) = 187626919baedd3be7d5525bb8114f3c6a2db0dfdec333977f42531ed500c064 -SIZE (xpi/firefox-i18n-40.0.3/bs.xpi) = 497332 -SHA256 (xpi/firefox-i18n-40.0.3/ca.xpi) = ee57b8bc19e33a08e89d6a3d028c3da5b7b741ba31eb5bc5ebeaf600bb4b00f3 -SIZE (xpi/firefox-i18n-40.0.3/ca.xpi) = 474110 -SHA256 (xpi/firefox-i18n-40.0.3/cs.xpi) = 3a02d4f6a36f882f8c3dac164a2984fdb42b07c6074e4b3c82c7066f6ee8aa34 -SIZE (xpi/firefox-i18n-40.0.3/cs.xpi) = 462358 -SHA256 (xpi/firefox-i18n-40.0.3/cy.xpi) = 6f1f87e2df406b2d8313ad0231751cd5f24e9103a2b5ab368dad23534da0a9ef -SIZE (xpi/firefox-i18n-40.0.3/cy.xpi) = 459246 -SHA256 (xpi/firefox-i18n-40.0.3/da.xpi) = cca57641cc00f92f7152c15363aad38566db57ae3df09e4701f20f2f3836f0ba -SIZE (xpi/firefox-i18n-40.0.3/da.xpi) = 465572 -SHA256 (xpi/firefox-i18n-40.0.3/de.xpi) = a7f26ebd30781adf98995a48b03b92ea294b9d0d6bb02f3806b8d9b3899a5ade -SIZE (xpi/firefox-i18n-40.0.3/de.xpi) = 467233 -SHA256 (xpi/firefox-i18n-40.0.3/dsb.xpi) = b031e2d9b694f0e029c15cd6be6eedd79f6f4a01005af1eb1a17f166918413ba -SIZE (xpi/firefox-i18n-40.0.3/dsb.xpi) = 486591 -SHA256 (xpi/firefox-i18n-40.0.3/el.xpi) = 40d7f63513bb3d0b280bb25813b6a13f52779b0558d75b65b6a8fcb69960e242 -SIZE (xpi/firefox-i18n-40.0.3/el.xpi) = 513117 -SHA256 (xpi/firefox-i18n-40.0.3/en-GB.xpi) = e4fc56e6d8ffbd88df62dc5ed94ecf3594efe5157165727b22bbde72fd4dd1a8 -SIZE (xpi/firefox-i18n-40.0.3/en-GB.xpi) = 451900 -SHA256 (xpi/firefox-i18n-40.0.3/en-US.xpi) = 78010ec1a26181d369c10363fb19f92d2640ee8dca61282eea65913fbed3224a -SIZE (xpi/firefox-i18n-40.0.3/en-US.xpi) = 483748 -SHA256 (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = 13b178fe4562587edb2ef0bfc72ea3daae9488d3125dee1288911d4d78cf8cae -SIZE (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = 455370 -SHA256 (xpi/firefox-i18n-40.0.3/eo.xpi) = 993c33ffece8ce4c1e1fe4d931a752033ba191cdce8bef89b4459a1164e16fa8 -SIZE (xpi/firefox-i18n-40.0.3/eo.xpi) = 500202 -SHA256 (xpi/firefox-i18n-40.0.3/es-AR.xpi) = afdca33ee50fcf90b19a781e3ff59766562c5c4f829c36961122dffcdc20f855 -SIZE (xpi/firefox-i18n-40.0.3/es-AR.xpi) = 468599 -SHA256 (xpi/firefox-i18n-40.0.3/es-CL.xpi) = f7928068f48d900b73db21ee0599017785eac6b9087364ccce55fc356003a540 -SIZE (xpi/firefox-i18n-40.0.3/es-CL.xpi) = 394972 -SHA256 (xpi/firefox-i18n-40.0.3/es-ES.xpi) = fc6564877ca5404395624dbc62e22b22731134c69078e432ffd174fedac8a0de -SIZE (xpi/firefox-i18n-40.0.3/es-ES.xpi) = 383894 -SHA256 (xpi/firefox-i18n-40.0.3/es-MX.xpi) = de9c338485a5a32bf0e6b9a51fbc948b90006d8cc63e2a7303cda8adc5ed4ff4 -SIZE (xpi/firefox-i18n-40.0.3/es-MX.xpi) = 472917 -SHA256 (xpi/firefox-i18n-40.0.3/et.xpi) = 679dcef606b9091e8018b0aaf40b0285a4557dd56e5dd7132b407d250fc76aa9 -SIZE (xpi/firefox-i18n-40.0.3/et.xpi) = 457409 -SHA256 (xpi/firefox-i18n-40.0.3/eu.xpi) = e33bac2ff93ae3760b95a3a176fd0cc9e1a402fa4f174c10e77e6797d8cd27ce -SIZE (xpi/firefox-i18n-40.0.3/eu.xpi) = 481824 -SHA256 (xpi/firefox-i18n-40.0.3/fa.xpi) = e2f4ff8871be1d3a779891ae857e17a45ce92d84405c274862aa125f080624bf -SIZE (xpi/firefox-i18n-40.0.3/fa.xpi) = 526972 -SHA256 (xpi/firefox-i18n-40.0.3/ff.xpi) = 14e28b03a128727581782ca4320acda4eb560aac307b0b9ce463821a233412ac -SIZE (xpi/firefox-i18n-40.0.3/ff.xpi) = 465793 -SHA256 (xpi/firefox-i18n-40.0.3/fi.xpi) = e62fad8b4b2d96fc3f35920c69a7529be6e275e6c63ed293a32acf8f5d2ecf66 -SIZE (xpi/firefox-i18n-40.0.3/fi.xpi) = 459382 -SHA256 (xpi/firefox-i18n-40.0.3/fr.xpi) = d1daead0f4dddf6b06959e32f601128cb2764fd20a58372c1e587ae9b5f3a754 -SIZE (xpi/firefox-i18n-40.0.3/fr.xpi) = 477148 -SHA256 (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = 511e4b459e7cd38236ef10bebcded90f360a30f08a3594815e298e1383b17453 -SIZE (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = 471145 -SHA256 (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = 6a9f8f72d0664c29214a7746aa83ac51fc5bd9c77b56d4048cd92b5bbcfaacf1 -SIZE (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = 485536 -SHA256 (xpi/firefox-i18n-40.0.3/gd.xpi) = 9dc62003d7501e9234145e269d22ae647b9d6309005346294d438977c72be322 -SIZE (xpi/firefox-i18n-40.0.3/gd.xpi) = 469750 -SHA256 (xpi/firefox-i18n-40.0.3/gl.xpi) = 59437020832a39a3314e9c6654ea79dd8cad9cb997a23e34e83697c27b92b821 -SIZE (xpi/firefox-i18n-40.0.3/gl.xpi) = 463634 -SHA256 (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = 9eaef0ede53a662b592d489ee033c60edf93292adefa3c4ea3d24b5eeaa99ccc -SIZE (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = 498591 -SHA256 (xpi/firefox-i18n-40.0.3/he.xpi) = e058879bdeab1c86fde3e07a7ceb589604c40aaa8319c16b709222ae305d1466 -SIZE (xpi/firefox-i18n-40.0.3/he.xpi) = 497110 -SHA256 (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = edf700377b3d384aacdc8a6a85fb9cad7385593d0689d6b0474b9a81782bbf80 -SIZE (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = 519929 -SHA256 (xpi/firefox-i18n-40.0.3/hr.xpi) = 4b4cf824c97d6c4992905a13bbe4c16338c0524ce8f1ed762dc87dd830e91a55 -SIZE (xpi/firefox-i18n-40.0.3/hr.xpi) = 494492 -SHA256 (xpi/firefox-i18n-40.0.3/hsb.xpi) = fb7c6391fe76f9a31fbcec53bc253b4c781196f8341690d55e91190bddcfdf87 -SIZE (xpi/firefox-i18n-40.0.3/hsb.xpi) = 484247 -SHA256 (xpi/firefox-i18n-40.0.3/hu.xpi) = f5d5313195455272dba460ee8b29f887ac0acddc14461c69dacde89b884b71d0 -SIZE (xpi/firefox-i18n-40.0.3/hu.xpi) = 469054 -SHA256 (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = 5a3d889d467a8d13bbe87b2e9fb8baafea19ba6730ce514ea953f52fadbba961 -SIZE (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = 550065 -SHA256 (xpi/firefox-i18n-40.0.3/id.xpi) = 996a53ac0c9d6c826b0403b1520a1e8ea50b77bbb952784695602b56b0e93861 -SIZE (xpi/firefox-i18n-40.0.3/id.xpi) = 446092 -SHA256 (xpi/firefox-i18n-40.0.3/is.xpi) = c2f79f33d52b4d0cee20990cc497727b3cc69b3afa5bc031176d3bfcc8aa136f -SIZE (xpi/firefox-i18n-40.0.3/is.xpi) = 499894 -SHA256 (xpi/firefox-i18n-40.0.3/it.xpi) = 7f2fe994fd74847bbc5de393954a526e9c17cef5089e506a616247541684b9f4 -SIZE (xpi/firefox-i18n-40.0.3/it.xpi) = 377833 -SHA256 (xpi/firefox-i18n-40.0.3/ja.xpi) = 6e3f6870ff749e14cf22ad82bdefedbb2b152c802b86ab7f9b588da382f2c88c -SIZE (xpi/firefox-i18n-40.0.3/ja.xpi) = 495439 -SHA256 (xpi/firefox-i18n-40.0.3/kk.xpi) = dde3b84aab92cadf4b30c279781907fdf12796b7d2a91d4fbc68b2220e267189 -SIZE (xpi/firefox-i18n-40.0.3/kk.xpi) = 520131 -SHA256 (xpi/firefox-i18n-40.0.3/km.xpi) = c6c2e8c52afebd11fa20f51e0ab38ed7c0fa08f6f00c31ed8258c322343d2435 -SIZE (xpi/firefox-i18n-40.0.3/km.xpi) = 578734 -SHA256 (xpi/firefox-i18n-40.0.3/kn.xpi) = eb28a17c7c34dba3a4792aacaad8d4b25553ccc4114e4f87e7fdb0de7cccd0b8 -SIZE (xpi/firefox-i18n-40.0.3/kn.xpi) = 550864 -SHA256 (xpi/firefox-i18n-40.0.3/ko.xpi) = ac39a4c8ebc3d5b43d00b788bdf62c3de4a6fec74a0f8906d3e6fd14f8f62eac -SIZE (xpi/firefox-i18n-40.0.3/ko.xpi) = 476892 -SHA256 (xpi/firefox-i18n-40.0.3/lij.xpi) = cb592d8995127529c4f21c6547a8f954fef27da331b82abc4586fd367e2cf374 -SIZE (xpi/firefox-i18n-40.0.3/lij.xpi) = 462239 -SHA256 (xpi/firefox-i18n-40.0.3/lt.xpi) = d1c483d45096b8fb00d24057948197d4413c545b0e2a0cacf609fbfbb1f18bad -SIZE (xpi/firefox-i18n-40.0.3/lt.xpi) = 502211 -SHA256 (xpi/firefox-i18n-40.0.3/lv.xpi) = 1c5a49e3f40456c1a99a60376ec697a19ff82f25b79220df56e8b1c8fc5f9bfb -SIZE (xpi/firefox-i18n-40.0.3/lv.xpi) = 482486 -SHA256 (xpi/firefox-i18n-40.0.3/mai.xpi) = ff0e82f02ddd321ecc7d0f07a5f5a9b09ed67f27381dc59595dfa27a818ed6ac -SIZE (xpi/firefox-i18n-40.0.3/mai.xpi) = 527990 -SHA256 (xpi/firefox-i18n-40.0.3/mk.xpi) = a8b9dd7940f6c269dbd428166bea9e1e71dd99de25756bf0ddacfc2ab2f71549 -SIZE (xpi/firefox-i18n-40.0.3/mk.xpi) = 542563 -SHA256 (xpi/firefox-i18n-40.0.3/ml.xpi) = f3d5b491a6c1d664ae1cf0717157e775a73049f457664ca4e131aa851ea02d2f -SIZE (xpi/firefox-i18n-40.0.3/ml.xpi) = 540383 -SHA256 (xpi/firefox-i18n-40.0.3/mr.xpi) = 23bed23751ed673b6211d1421405b01814e895b341977bbfbcda146f263585a3 -SIZE (xpi/firefox-i18n-40.0.3/mr.xpi) = 522286 -SHA256 (xpi/firefox-i18n-40.0.3/ms.xpi) = 65abedc8974aa260ab7199d0f2f9fd151a8ccea8a7a1d44074f17cc5d258e378 -SIZE (xpi/firefox-i18n-40.0.3/ms.xpi) = 504520 -SHA256 (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = 704280dc977a7d32c20416f2e9d7207e7ea05a0deb19368019b3120ddf480bc0 -SIZE (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = 458941 -SHA256 (xpi/firefox-i18n-40.0.3/nl.xpi) = f53d67db63953781fda06b72d3424acde9efdcf47e027316c27189ab5d1ec043 -SIZE (xpi/firefox-i18n-40.0.3/nl.xpi) = 458630 -SHA256 (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = 362f3f09a036d190156293ffee2d5a548fdb65fb07618bc2f8b5dbf40c6c831a -SIZE (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = 453068 -SHA256 (xpi/firefox-i18n-40.0.3/or.xpi) = 37d119640c4095e3afa53c1df2ca7b548f68793f281894ca47d7457688f55373 -SIZE (xpi/firefox-i18n-40.0.3/or.xpi) = 539212 -SHA256 (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = d70277e8b7d3805bb50ab1b6bb69b55dd84c871c567d7484b6c8a095d58730ef -SIZE (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = 509122 -SHA256 (xpi/firefox-i18n-40.0.3/pl.xpi) = 4dca0edaef047cd54689e2ea4296598be5a86e098efb5347ad6fd5e307b6f213 -SIZE (xpi/firefox-i18n-40.0.3/pl.xpi) = 415191 -SHA256 (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = 419ebf4fc0d8d23b17b6ff0b971d18f0b94b33267d1bbbc6b4437fb6c3c3150f -SIZE (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = 475443 -SHA256 (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = 1ba5b9fee35b1d35f4e7f4363056d379c016f1dc60f7ea03412bc29623ef60fc -SIZE (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = 456035 -SHA256 (xpi/firefox-i18n-40.0.3/rm.xpi) = 164438a83d9edd555aa39a4fed844c2520351b1ceb6e3a38786c89ff085acd57 -SIZE (xpi/firefox-i18n-40.0.3/rm.xpi) = 461466 -SHA256 (xpi/firefox-i18n-40.0.3/ro.xpi) = e6b69e1f86dfed31a103ae5f8b5c5bdc39abae0e10826177ef8d9118e37628ce -SIZE (xpi/firefox-i18n-40.0.3/ro.xpi) = 509716 -SHA256 (xpi/firefox-i18n-40.0.3/ru.xpi) = 2eb09947c80d43bcca12e30ff4320deb1f02dfaad8aa94f746a2088d362c8252 -SIZE (xpi/firefox-i18n-40.0.3/ru.xpi) = 425657 -SHA256 (xpi/firefox-i18n-40.0.3/si.xpi) = a3fdc5a4aac6c0e7ded4cfa6a3bf0d84545a44b064c5df736422bc41923e91a0 -SIZE (xpi/firefox-i18n-40.0.3/si.xpi) = 548768 -SHA256 (xpi/firefox-i18n-40.0.3/sk.xpi) = c379a93e531c2c412aa2e98c06a645c8e0b26b24d80d988966e23b2126c71358 -SIZE (xpi/firefox-i18n-40.0.3/sk.xpi) = 485121 -SHA256 (xpi/firefox-i18n-40.0.3/sl.xpi) = 8fd09f59342a80843e53c34b0d9d9ca5c347a08c64beccb9386f5ba7cc3637c0 -SIZE (xpi/firefox-i18n-40.0.3/sl.xpi) = 457940 -SHA256 (xpi/firefox-i18n-40.0.3/son.xpi) = d0265a35389b89f79fe8a92af7eef67160edfc21ccaa9c68c0b71c1bb7d1c8bf -SIZE (xpi/firefox-i18n-40.0.3/son.xpi) = 465948 -SHA256 (xpi/firefox-i18n-40.0.3/sq.xpi) = afd42e2a29f28d6c601d962acf709b33a010ee2a7bef4b4e3bcbbb42354cfc07 -SIZE (xpi/firefox-i18n-40.0.3/sq.xpi) = 501445 -SHA256 (xpi/firefox-i18n-40.0.3/sr.xpi) = c5981e3c19480f1fd3c9a4a952c734bf1b300d160fa03f05c56a1622b4676978 -SIZE (xpi/firefox-i18n-40.0.3/sr.xpi) = 494736 -SHA256 (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = fde03b6f0869804b7624667b01d468503e9cdbc22c9112cef781760712a98298 -SIZE (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = 467791 -SHA256 (xpi/firefox-i18n-40.0.3/ta.xpi) = 18e0e398117e2b1b99431d534c8b709113173b4b57abfd61f66f216f8f7bba11 -SIZE (xpi/firefox-i18n-40.0.3/ta.xpi) = 521801 -SHA256 (xpi/firefox-i18n-40.0.3/te.xpi) = 92543ca8942593ebc6c2033832136b411fffb3da5278727f766995245ecb6957 -SIZE (xpi/firefox-i18n-40.0.3/te.xpi) = 540972 -SHA256 (xpi/firefox-i18n-40.0.3/th.xpi) = 24dcadec477da92d757f72598b434a1e59613681ff9bbeca2530d7b28d7227e0 -SIZE (xpi/firefox-i18n-40.0.3/th.xpi) = 550265 -SHA256 (xpi/firefox-i18n-40.0.3/tr.xpi) = e0ee75872b49c201eb4b35f4e8bb877255c9b1af010641b3129672a409e64c77 -SIZE (xpi/firefox-i18n-40.0.3/tr.xpi) = 496254 -SHA256 (xpi/firefox-i18n-40.0.3/uk.xpi) = 67ab7024c3c29c6ce7e054a9c65362c942557aa636ffa673d05485ab717804fd -SIZE (xpi/firefox-i18n-40.0.3/uk.xpi) = 511145 -SHA256 (xpi/firefox-i18n-40.0.3/vi.xpi) = f64479928fd58ebe2bff6d09ac26e54e3f56db7b37a465dbe4e6078a8989a117 -SIZE (xpi/firefox-i18n-40.0.3/vi.xpi) = 481059 -SHA256 (xpi/firefox-i18n-40.0.3/xh.xpi) = 54948f041df5be3c074ba2bf2bf7769fa3b45751038dd61b94cf3fa09e0a9d72 -SIZE (xpi/firefox-i18n-40.0.3/xh.xpi) = 461039 -SHA256 (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = 86346005557d217110e624e1d98037a5cf634228b4bd42b38fb2b9ba38411999 -SIZE (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = 504409 -SHA256 (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = 36be93979c452610d01adafe926b05dd11d7e92211cea9f10bc697b70acb0a52 -SIZE (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = 491275 +SHA256 (xpi/firefox-i18n-41.0/ach.xpi) = 86755444fc1b53893f4fe3c181adbccc4bd4d6e24035aeb1ce4d0e90586bbc4c +SIZE (xpi/firefox-i18n-41.0/ach.xpi) = 483439 +SHA256 (xpi/firefox-i18n-41.0/af.xpi) = 9a81d311727c1b393eb5a1d420c77a26cc01327b3c326a935b8b31b426977ab0 +SIZE (xpi/firefox-i18n-41.0/af.xpi) = 486121 +SHA256 (xpi/firefox-i18n-41.0/an.xpi) = 2e9df1c9f67ef5cafd5fd9e4d4d2ddaa642aa29b81a96e02fb47a658e53a1146 +SIZE (xpi/firefox-i18n-41.0/an.xpi) = 464516 +SHA256 (xpi/firefox-i18n-41.0/ar.xpi) = bb9ee3d703c10f9bc3e12e9f62ea95511955239a20fae81918f0c0529685baf8 +SIZE (xpi/firefox-i18n-41.0/ar.xpi) = 521159 +SHA256 (xpi/firefox-i18n-41.0/as.xpi) = 2bb52d1a41ca3955a460f0f2d48efe3e2c99ab579d72f1c183faed70403bb869 +SIZE (xpi/firefox-i18n-41.0/as.xpi) = 511219 +SHA256 (xpi/firefox-i18n-41.0/ast.xpi) = 2be891b76d75d39310f35c290a7d93aab8b6d4cde87e65f0820760fd230c7985 +SIZE (xpi/firefox-i18n-41.0/ast.xpi) = 399122 +SHA256 (xpi/firefox-i18n-41.0/az.xpi) = a213f91389bd869fc3b6eb154965da9ebf00f422cc3173696a97c060b6382530 +SIZE (xpi/firefox-i18n-41.0/az.xpi) = 492916 +SHA256 (xpi/firefox-i18n-41.0/be.xpi) = 3611cb1cecd6fd6ddfcc57ef936a351704299a54362d000c16779aab7f7399ec +SIZE (xpi/firefox-i18n-41.0/be.xpi) = 453403 +SHA256 (xpi/firefox-i18n-41.0/bg.xpi) = 45842f478fbac439a828950fd8a708352e6f249c967d71def55eeae0ec49c78f +SIZE (xpi/firefox-i18n-41.0/bg.xpi) = 492965 +SHA256 (xpi/firefox-i18n-41.0/bn-BD.xpi) = de27686738705b1291118126d87f9f6f60075a35abc3651ebbe8c62d3624f8ba +SIZE (xpi/firefox-i18n-41.0/bn-BD.xpi) = 527570 +SHA256 (xpi/firefox-i18n-41.0/bn-IN.xpi) = bc94787dc80a9afd100c0b784374aae1bdb03e03e496ce6f6cd5b7e3d254056b +SIZE (xpi/firefox-i18n-41.0/bn-IN.xpi) = 530267 +SHA256 (xpi/firefox-i18n-41.0/br.xpi) = 98db3d58490a3bd71ef114a8d066fa8515450b6d85c8474316f46cf7e4c0a3be +SIZE (xpi/firefox-i18n-41.0/br.xpi) = 444530 +SHA256 (xpi/firefox-i18n-41.0/bs.xpi) = 20bb1ecb9f4aa63163c6121e74a25b5d6b55c33b2dbe13531962df1dc52dad10 +SIZE (xpi/firefox-i18n-41.0/bs.xpi) = 486281 +SHA256 (xpi/firefox-i18n-41.0/ca.xpi) = 4921859dd265dad50f39187b7036e9154a73d4d32d5153f2c55cf529fee38e57 +SIZE (xpi/firefox-i18n-41.0/ca.xpi) = 461321 +SHA256 (xpi/firefox-i18n-41.0/cs.xpi) = 5fc00e06ade7de4ab82d93fb87f698c990f3764fbe56ea2780ce06af0b752413 +SIZE (xpi/firefox-i18n-41.0/cs.xpi) = 450333 +SHA256 (xpi/firefox-i18n-41.0/cy.xpi) = 25c0e0d472878821b3c45867f910ba90414ee419894f7f01dd9484ff9ff7e973 +SIZE (xpi/firefox-i18n-41.0/cy.xpi) = 448183 +SHA256 (xpi/firefox-i18n-41.0/da.xpi) = 96d7193c09620bfe570ae37deaaf356d182399057ecd70341c2777188496e64e +SIZE (xpi/firefox-i18n-41.0/da.xpi) = 453403 +SHA256 (xpi/firefox-i18n-41.0/de.xpi) = 5a28c5751581e669d0979c62217cbf7b9ac61995dcc35a53ab675e241e374c7f +SIZE (xpi/firefox-i18n-41.0/de.xpi) = 455710 +SHA256 (xpi/firefox-i18n-41.0/dsb.xpi) = ec63d4b44d4a7d3bf5f0e8523fd9a3b00939ad873a8737f89f27792bfec3259f +SIZE (xpi/firefox-i18n-41.0/dsb.xpi) = 474536 +SHA256 (xpi/firefox-i18n-41.0/el.xpi) = f1437c41e2450d5101c3fe2b5e128157d33f5b93336483db36314f3a5e3c9f96 +SIZE (xpi/firefox-i18n-41.0/el.xpi) = 501619 +SHA256 (xpi/firefox-i18n-41.0/en-GB.xpi) = a419880aa591291868e86d15dd0af1fe20f55cf18e62cfe272e71bf09b2e6b7b +SIZE (xpi/firefox-i18n-41.0/en-GB.xpi) = 441098 +SHA256 (xpi/firefox-i18n-41.0/en-US.xpi) = 1650d4abba5fc7c9a37e79034fad2206bf6f365d6ee40c99da4626f70412cdef +SIZE (xpi/firefox-i18n-41.0/en-US.xpi) = 471246 +SHA256 (xpi/firefox-i18n-41.0/en-ZA.xpi) = 5dc4e9357ad6f826572f96305ca8d1c5fa74a4c9c82fcbb78b3a7f34d9ecb242 +SIZE (xpi/firefox-i18n-41.0/en-ZA.xpi) = 444145 +SHA256 (xpi/firefox-i18n-41.0/eo.xpi) = 15ec1dcf88b51b671e2369346e87a0503b2b1ff8c32b9e91389816a4eadbc8e9 +SIZE (xpi/firefox-i18n-41.0/eo.xpi) = 487994 +SHA256 (xpi/firefox-i18n-41.0/es-AR.xpi) = 535f578884c390698c97db2717dd91f3d948fb135b8ba4f1b5ec09d796092ce5 +SIZE (xpi/firefox-i18n-41.0/es-AR.xpi) = 456517 +SHA256 (xpi/firefox-i18n-41.0/es-CL.xpi) = b65d4c72e66642d5188bf12686f2541d2b5178be83ee2fb727d82877aa1aaa3a +SIZE (xpi/firefox-i18n-41.0/es-CL.xpi) = 381632 +SHA256 (xpi/firefox-i18n-41.0/es-ES.xpi) = ca7968f53f99bcf8e5369926b0e8b23ca7272e54bd15447fa42d8588fdbcdbd6 +SIZE (xpi/firefox-i18n-41.0/es-ES.xpi) = 370111 +SHA256 (xpi/firefox-i18n-41.0/es-MX.xpi) = a6384d393b6c82d29834089db412c98de0ce58ef7293c59166b6675f236ba0ef +SIZE (xpi/firefox-i18n-41.0/es-MX.xpi) = 460283 +SHA256 (xpi/firefox-i18n-41.0/et.xpi) = 71db72097253d9eb7964e220ac7d559d34dbf0e1214715814349ab5fbcbd2046 +SIZE (xpi/firefox-i18n-41.0/et.xpi) = 445439 +SHA256 (xpi/firefox-i18n-41.0/eu.xpi) = 47cc5e46baad2e03a17cdfeb054d0d3f102094b4e9dcb1c8a49d104324f6115d +SIZE (xpi/firefox-i18n-41.0/eu.xpi) = 469716 +SHA256 (xpi/firefox-i18n-41.0/fa.xpi) = d3c1491021de3477709b2f77a2ed95e4a4b37fdadf37dce2892edf689cbc015b +SIZE (xpi/firefox-i18n-41.0/fa.xpi) = 516157 +SHA256 (xpi/firefox-i18n-41.0/ff.xpi) = 59efd5d132c0026a6c31be1674fc398450b8bb2ec75c0786bf3c817627a5532e +SIZE (xpi/firefox-i18n-41.0/ff.xpi) = 454687 +SHA256 (xpi/firefox-i18n-41.0/fi.xpi) = 0c919f496c2a0e1503a8f37ded5938100680e810f6025cea0e84ae27f70b06ee +SIZE (xpi/firefox-i18n-41.0/fi.xpi) = 447174 +SHA256 (xpi/firefox-i18n-41.0/fr.xpi) = df5faa391722a201d6f6ecf08de01d393ce96dd122f378434f11440f825e5b10 +SIZE (xpi/firefox-i18n-41.0/fr.xpi) = 465091 +SHA256 (xpi/firefox-i18n-41.0/fy-NL.xpi) = 8aea345024bd99ceb013899e839170b61e6ae6e1bbb5b9c65cbf92f2f610f35a +SIZE (xpi/firefox-i18n-41.0/fy-NL.xpi) = 458775 +SHA256 (xpi/firefox-i18n-41.0/ga-IE.xpi) = ccb6e56af07c093f77db2224abefa80a77690f955d6d54f77a6d857fb672429d +SIZE (xpi/firefox-i18n-41.0/ga-IE.xpi) = 473255 +SHA256 (xpi/firefox-i18n-41.0/gd.xpi) = 12ec59d2dd84dbd1e9efbb6accbda523d93845b1198ed54ed4a1712bd50268ff +SIZE (xpi/firefox-i18n-41.0/gd.xpi) = 457498 +SHA256 (xpi/firefox-i18n-41.0/gl.xpi) = db9f28f2202dc2cbe96729d1afe9cf41ab94ada69e5f1305c4c15d2d0cc6416d +SIZE (xpi/firefox-i18n-41.0/gl.xpi) = 452610 +SHA256 (xpi/firefox-i18n-41.0/gu-IN.xpi) = 53463a96319f19c4966cbef96f2a6fdbabe6e7e8f77473e74541e26724516a92 +SIZE (xpi/firefox-i18n-41.0/gu-IN.xpi) = 487514 +SHA256 (xpi/firefox-i18n-41.0/he.xpi) = 21d0550c2c7a3f017f4e1f83859387929c41f7f1df06db3b073852ac436fc435 +SIZE (xpi/firefox-i18n-41.0/he.xpi) = 486489 +SHA256 (xpi/firefox-i18n-41.0/hi-IN.xpi) = b15756e16e5998219c2505e06d5a05aa291cfbb73bf31556d55ce57284c535f6 +SIZE (xpi/firefox-i18n-41.0/hi-IN.xpi) = 509161 +SHA256 (xpi/firefox-i18n-41.0/hr.xpi) = b7fda3f4bc5a7d6476f8ea5cd4e7f9d9445133dfc21f9257a802e75792543e21 +SIZE (xpi/firefox-i18n-41.0/hr.xpi) = 481334 +SHA256 (xpi/firefox-i18n-41.0/hsb.xpi) = 599261f6ddd9511872addf55a54ac27f8a2c629600e437a83986bec7325ffa49 +SIZE (xpi/firefox-i18n-41.0/hsb.xpi) = 472165 +SHA256 (xpi/firefox-i18n-41.0/hu.xpi) = ac254be8aae3d7feeb7e871f76d315a0d498bfc18ea706c5d51fad200554d86c +SIZE (xpi/firefox-i18n-41.0/hu.xpi) = 457034 +SHA256 (xpi/firefox-i18n-41.0/hy-AM.xpi) = 86019023a1bba2985fd44dc18fe6eca18faccee769d2702ed4f5be6ee68cd0d2 +SIZE (xpi/firefox-i18n-41.0/hy-AM.xpi) = 538340 +SHA256 (xpi/firefox-i18n-41.0/id.xpi) = 64ba7710b02a8454892dbb2de437e11a1e0ce660a6c072c54f3f2788aaf9ab0d +SIZE (xpi/firefox-i18n-41.0/id.xpi) = 433970 +SHA256 (xpi/firefox-i18n-41.0/is.xpi) = ea2916c2eec477ea0baac33c5b506f2cbcee0e4023cf4d96d3a927470c40be5c +SIZE (xpi/firefox-i18n-41.0/is.xpi) = 488111 +SHA256 (xpi/firefox-i18n-41.0/it.xpi) = 81c0df60bd9a20f1f3bf6861b085a5172b398fc0dcdfc603e34ce306f80f37e0 +SIZE (xpi/firefox-i18n-41.0/it.xpi) = 363984 +SHA256 (xpi/firefox-i18n-41.0/ja.xpi) = 32386da85ad191fc2c445759649d929fd7eab3940daea328dd3e1a56533a7c37 +SIZE (xpi/firefox-i18n-41.0/ja.xpi) = 483302 +SHA256 (xpi/firefox-i18n-41.0/kk.xpi) = 98e27a0caa00137e3a7908a18220af0b5447371875be40a20caf22678adba9d2 +SIZE (xpi/firefox-i18n-41.0/kk.xpi) = 508364 +SHA256 (xpi/firefox-i18n-41.0/km.xpi) = 0391cceb932ff1d7099605e51b8abf9e5cbb311e4fc6d5a0b3f58388428332ca +SIZE (xpi/firefox-i18n-41.0/km.xpi) = 571707 +SHA256 (xpi/firefox-i18n-41.0/kn.xpi) = 87c7e4b1b00499929fa89cff96ee7b2040bc3b2fa39da43d913b460730e9837a +SIZE (xpi/firefox-i18n-41.0/kn.xpi) = 539237 +SHA256 (xpi/firefox-i18n-41.0/ko.xpi) = bfd714e03b16a6e4e440bd1907186a9856780be70cd0af9daca3374a7a2006ce +SIZE (xpi/firefox-i18n-41.0/ko.xpi) = 464904 +SHA256 (xpi/firefox-i18n-41.0/lij.xpi) = ae514d960dca72cf7c057af190624947c56307db25d00b580ee8cbfc94be535c +SIZE (xpi/firefox-i18n-41.0/lij.xpi) = 451188 +SHA256 (xpi/firefox-i18n-41.0/lt.xpi) = 46d2bcc9842f74d1a78e41ce470d2197fc8e5243886c0b4b62535ed930c2a01f +SIZE (xpi/firefox-i18n-41.0/lt.xpi) = 490118 +SHA256 (xpi/firefox-i18n-41.0/lv.xpi) = 9f01b6c0c4647981f595c2827453e1209587c34ca947a5879f6b8fe9707c707f +SIZE (xpi/firefox-i18n-41.0/lv.xpi) = 470364 +SHA256 (xpi/firefox-i18n-41.0/mai.xpi) = f3ececf56f634f8dcf3950d4bf9a7a21508021a45b99dff045135c1c037266c7 +SIZE (xpi/firefox-i18n-41.0/mai.xpi) = 517160 +SHA256 (xpi/firefox-i18n-41.0/mk.xpi) = 1b8e4d2d5cfd8c8768b42b6d394b9132dc806672cab3d3f0acdd475e73d6abd3 +SIZE (xpi/firefox-i18n-41.0/mk.xpi) = 530865 +SHA256 (xpi/firefox-i18n-41.0/ml.xpi) = 602b9759448353e33b8800fb392bc2e3785058d1ec2331528abc91a1021bbabc +SIZE (xpi/firefox-i18n-41.0/ml.xpi) = 529030 +SHA256 (xpi/firefox-i18n-41.0/mr.xpi) = dbea36f8a4869cf15db2ae9a324d43297295d63c1a3dd8e45dfc4997e5d6676d +SIZE (xpi/firefox-i18n-41.0/mr.xpi) = 511323 +SHA256 (xpi/firefox-i18n-41.0/ms.xpi) = 59f5f143b9ed9cc12a2cf9cdc2e5d1af25bde7c78aec55a5232e680b737fdf9d +SIZE (xpi/firefox-i18n-41.0/ms.xpi) = 493483 +SHA256 (xpi/firefox-i18n-41.0/nb-NO.xpi) = b70ff1288f2ebd217c67f0b4fa1c48dcd6800d98ebca03d880d01592eb1f9fe8 +SIZE (xpi/firefox-i18n-41.0/nb-NO.xpi) = 446371 +SHA256 (xpi/firefox-i18n-41.0/nl.xpi) = 82998109c104b4277a54a9c6aad3caca8d40e89290ca33f18e876e85158ad428 +SIZE (xpi/firefox-i18n-41.0/nl.xpi) = 446545 +SHA256 (xpi/firefox-i18n-41.0/nn-NO.xpi) = 6f39bbb77c7c07bcc5612b1715262f94d4d962b5148384ab2ec052e1a4b64eeb +SIZE (xpi/firefox-i18n-41.0/nn-NO.xpi) = 442561 +SHA256 (xpi/firefox-i18n-41.0/or.xpi) = c4fd3a8b1fbc8b79612b3d24b556419acce11a7836e21e7196dbe4e9eb0b4799 +SIZE (xpi/firefox-i18n-41.0/or.xpi) = 528104 +SHA256 (xpi/firefox-i18n-41.0/pa-IN.xpi) = 5ccc34672873d883693412696e0538dc16b96a712e0decad211fee4de5a2485f +SIZE (xpi/firefox-i18n-41.0/pa-IN.xpi) = 498581 +SHA256 (xpi/firefox-i18n-41.0/pl.xpi) = 757411d39b98fbfb71a7e502e44c27f64f01f8a3936bbb84b08f2a33ccf0c2b8 +SIZE (xpi/firefox-i18n-41.0/pl.xpi) = 400465 +SHA256 (xpi/firefox-i18n-41.0/pt-BR.xpi) = 65ae606a712e05cfffcd2f48a352c6b1b5abf17af7bac53c33a4877957566149 +SIZE (xpi/firefox-i18n-41.0/pt-BR.xpi) = 463057 +SHA256 (xpi/firefox-i18n-41.0/pt-PT.xpi) = 550605379e3224bc792a9d0c892dfa78253f075fb127779500d36ca17c6f393e +SIZE (xpi/firefox-i18n-41.0/pt-PT.xpi) = 443381 +SHA256 (xpi/firefox-i18n-41.0/rm.xpi) = 55d2765289fb4c58c9563136f2fcf56f15e955c42a3bf13252aefb3f6545cb28 +SIZE (xpi/firefox-i18n-41.0/rm.xpi) = 450638 +SHA256 (xpi/firefox-i18n-41.0/ro.xpi) = 4bad82622089310900ce2bb8c51aa9706ead23e5db1f143f2f672ad203777d9f +SIZE (xpi/firefox-i18n-41.0/ro.xpi) = 497506 +SHA256 (xpi/firefox-i18n-41.0/ru.xpi) = ecc0253088e310b0c696a6d371f4ba8418c35b9a37af89e6ba6594b458ec289b +SIZE (xpi/firefox-i18n-41.0/ru.xpi) = 412445 +SHA256 (xpi/firefox-i18n-41.0/si.xpi) = 635a596421c06dd5d5b00906fefc46462ffc8124b5dda2bd409bdcf188921e70 +SIZE (xpi/firefox-i18n-41.0/si.xpi) = 537933 +SHA256 (xpi/firefox-i18n-41.0/sk.xpi) = c3936ccbc02c6ce91d2f8ad339489ddca1840e7f3d8b17bd22a7dc41a4e11992 +SIZE (xpi/firefox-i18n-41.0/sk.xpi) = 472933 +SHA256 (xpi/firefox-i18n-41.0/son.xpi) = 24ad972e0cf7101962340eca64fdc56851699f207c629d5ed33dfe425b6d14a7 +SIZE (xpi/firefox-i18n-41.0/son.xpi) = 453251 +SHA256 (xpi/firefox-i18n-41.0/sl.xpi) = 38cba1c04cf4f67d1dd5ff906cea46d85f7de0267f16abe6c3d4c907beccd2f9 +SIZE (xpi/firefox-i18n-41.0/sl.xpi) = 445744 +SHA256 (xpi/firefox-i18n-41.0/sq.xpi) = ca0bd383ad3c871e52e0006ec7489ef590edf72f4894ebea75edb6b52b567953 +SIZE (xpi/firefox-i18n-41.0/sq.xpi) = 491167 +SHA256 (xpi/firefox-i18n-41.0/sr.xpi) = 59be1f67f0de0daa1800f806ec5760e6df852b46a65c4d99ead16dab6d35bab7 +SIZE (xpi/firefox-i18n-41.0/sr.xpi) = 482969 +SHA256 (xpi/firefox-i18n-41.0/sv-SE.xpi) = 949e99a51e305e35e310b3bb6ce77f57ea9e67adc9609704b240dadeaffc4351 +SIZE (xpi/firefox-i18n-41.0/sv-SE.xpi) = 455381 +SHA256 (xpi/firefox-i18n-41.0/ta.xpi) = 38b8529a311078571bb3d876576c788b9b299f5d167e2a6820919238c23de979 +SIZE (xpi/firefox-i18n-41.0/ta.xpi) = 509543 +SHA256 (xpi/firefox-i18n-41.0/te.xpi) = 658c162206d3545f59f2b1847e4635a80211cb76bdb9d040e53bcaf52a6fed48 +SIZE (xpi/firefox-i18n-41.0/te.xpi) = 530202 +SHA256 (xpi/firefox-i18n-41.0/th.xpi) = 3d6344bf7c129acd3f5527ffdad07c9388e5351966c7eeec919b23e9653bbb64 +SIZE (xpi/firefox-i18n-41.0/th.xpi) = 539599 +SHA256 (xpi/firefox-i18n-41.0/tr.xpi) = 65e7b4601f9dc50dea179b0eaf3e6a41a4634d43c667e2d84eb0b85dd11e5302 +SIZE (xpi/firefox-i18n-41.0/tr.xpi) = 484231 +SHA256 (xpi/firefox-i18n-41.0/uk.xpi) = b53435b077205b2c7455b139f4555251da3df4dbe072e9ce779b72a8d8c19d47 +SIZE (xpi/firefox-i18n-41.0/uk.xpi) = 500109 +SHA256 (xpi/firefox-i18n-41.0/vi.xpi) = ea794e879c90d30185f61f744490fd29b706334b4d9068b7e65002ca5a51909c +SIZE (xpi/firefox-i18n-41.0/vi.xpi) = 470334 +SHA256 (xpi/firefox-i18n-41.0/xh.xpi) = 8bc89179c1e2e298104dd50f383c93e30ae330978abdeaa1869fd2160aea58dd +SIZE (xpi/firefox-i18n-41.0/xh.xpi) = 450078 +SHA256 (xpi/firefox-i18n-41.0/zh-CN.xpi) = 47fe8497bf214ab2275e5be325edba33c96c28a015f8d450f1be9b57710c8ab8 +SIZE (xpi/firefox-i18n-41.0/zh-CN.xpi) = 486220 +SHA256 (xpi/firefox-i18n-41.0/zh-TW.xpi) = c0163e959663dfcdb977f5fc87af13d4129b61a4b8d73889cd830f8f9d16ca29 +SIZE (xpi/firefox-i18n-41.0/zh-TW.xpi) = 479031 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/Makefile Tue Oct 6 20:01:59 2015 (r398716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 40.0.3 +DISTVERSION= 41.0 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 @@ -39,7 +39,7 @@ MOZILLA_NAME= Firefox USE_QT5= # empty QT_NONSTANDARD= yes USE_GL= gl -USES= dos2unix tar:bzip2 +USES= dos2unix tar:xz DOS2UNIX_FILES= media/webrtc/trunk/webrtc/system_wrappers/source/spreadsortlib/spreadsort.hpp FIREFOX_ICON= ${MOZILLA}.png Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/distinfo Tue Oct 6 20:01:59 2015 (r398716) @@ -1,2 +1,2 @@ -SHA256 (firefox-40.0.3.source.tar.bz2) = 56ab32bfa070a1d86d356ad14ce74252b38dab9307948de8e4a3a2b7f3f22634 -SIZE (firefox-40.0.3.source.tar.bz2) = 178261482 +SHA256 (firefox-41.0.source.tar.xz) = 18abb95e93770ab1cc0794349125aacf073eb04fd8b8a93c7a58312c94bf16fd +SIZE (firefox-41.0.source.tar.xz) = 159785356 Modified: head/www/firefox/files/patch-bug702179 ============================================================================== --- head/www/firefox/files/patch-bug702179 Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/files/patch-bug702179 Tue Oct 6 20:01:59 2015 (r398716) @@ -1,24 +1,10 @@ -commit 6ddaacd -Author: Ginn Chen -Date: Wed Nov 30 07:23:46 2011 +0800 - - Bug 702179 dtrace probes are not installed on Solaris with static js lib r=glandium ---- - js/src/Makefile.in | 3 --- - toolkit/library/moz.build | 5 ----- - 2 files changed, 8 deletions(-) - -diff --git js/src/Makefile.in js/src/Makefile.in -index 62bbfa0..90400cb 100644 ---- js/src/Makefile.in -+++ js/src/Makefile.in -@@ -17,9 +17,6 @@ TOPLEVEL_BUILD := 1 - run_for_side_effects := $(shell echo 'MAKE: $(MAKE)') - EXTRA_LIBS += $(NSPR_LIBS) +--- js/src/moz.build.orig 2015-10-03 18:05:51.136389000 +0200 ++++ js/src/moz.build 2015-10-03 18:06:12.457351000 +0200 +@@ -603,6 +603,6 @@ + if CONFIG['GNU_CXX']: + FAIL_ON_WARNINGS = True --DIST_INSTALL = 1 --NO_EXPAND_LIBS = 1 -- - ifdef JS_HAS_CTYPES - ifdef MOZ_NATIVE_FFI - LOCAL_INCLUDES = $(MOZ_FFI_CFLAGS) +-NO_EXPAND_LIBS = True ++NO_EXPAND_LIBS = False + + DIST_INSTALL = True Modified: head/www/firefox/files/patch-bug847568 ============================================================================== --- head/www/firefox/files/patch-bug847568 Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/files/patch-bug847568 Tue Oct 6 20:01:59 2015 (r398716) @@ -17,7 +17,7 @@ diff --git config/system-headers config/ index 18e8703..bdc5f82 100644 --- config/system-headers +++ config/system-headers -@@ -1357,3 +1357,11 @@ unicode/utypes.h +@@ -1350,3 +1350,11 @@ unicode/utypes.h #endif libutil.h unwind.h Modified: head/www/firefox/files/patch-memory-jemalloc-Makefile.in ============================================================================== --- head/www/firefox/files/patch-memory-jemalloc-Makefile.in Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/files/patch-memory-jemalloc-Makefile.in Tue Oct 6 20:01:59 2015 (r398716) @@ -1,6 +1,6 @@ --- memory/jemalloc/Makefile.in~ +++ memory/jemalloc/Makefile.in -@@ -12,3 +12,7 @@ include $(topsrcdir)/config/rules.mk +@@ -7,3 +7,7 @@ include $(topsrcdir)/config/rules.mk ifdef GNU_CC CFLAGS += -std=gnu99 endif Modified: head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk ============================================================================== --- head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk Tue Oct 6 19:18:23 2015 (r398715) +++ head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk Tue Oct 6 20:01:59 2015 (r398716) @@ -2,7 +2,7 @@ $OpenBSD: patch-toolkit_mozapps_installe install headers/idl/sdk libs only if xulrunner --- toolkit/mozapps/installer/packager.mk.orig Fri Jun 1 14:04:20 2012 +++ toolkit/mozapps/installer/packager.mk Tue Jun 5 07:55:51 2012 -@@ -886,7 +886,7 @@ endif +@@ -127,7 +127,7 @@ endif $(NSINSTALL) -D $(DESTDIR)$(bindir) $(RM) -f $(DESTDIR)$(bindir)/$(MOZ_APP_NAME) ln -s $(installdir)/$(MOZ_APP_NAME) $(DESTDIR)$(bindir) From owner-svn-ports-head@freebsd.org Tue Oct 6 20:20:46 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 778069D0976; Tue, 6 Oct 2015 20:20:46 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [IPv6:2001:470:1:117::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anubis.delphij.net", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3F2D4D93; Tue, 6 Oct 2015 20:20:46 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from zeta.ixsystems.com (unknown [12.229.62.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by anubis.delphij.net (Postfix) with ESMTPSA id 082E622B17; Tue, 6 Oct 2015 13:20:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=anubis; t=1444162845; x=1444177245; bh=W/iXTXdmsFsaog5pXUc8LtksAEkhyoPdGCd0E21erO8=; h=Reply-To:Subject:References:To:From:Date:In-Reply-To; b=zeBoDWOqp6iJcvzC+j7Nu2iDCYPaRB+wmTiI8GVoZQdF3vnzNY2guqImbwlQ3FeiE +Hq50MYXlfenNLIkzQvj/6AuAvWlgbf0K/qwAA+8+c4WjeffqXc2OpjWrtzC64S0ZL 5IWaOyqDxFocFfn2w4CCTY2oDkTXyTpPHecaSxiQ= Reply-To: d@delphij.net Subject: Re: svn commit: r398716 - in head: Mk/Uses www/firefox www/firefox-i18n www/firefox/files References: <201510062002.t96K20FG016283@repo.freebsd.org> To: Steve Wills , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Xin Li Organization: The FreeBSD Project Message-ID: <56142D17.4000904@delphij.net> Date: Tue, 6 Oct 2015 13:20:39 -0700 MIME-Version: 1.0 In-Reply-To: <201510062002.t96K20FG016283@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="NCowbj8Vnifhk4dJhcFkTnJLJWSCK37iB" 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: Tue, 06 Oct 2015 20:20:46 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --NCowbj8Vnifhk4dJhcFkTnJLJWSCK37iB Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/06/15 13:02, Steve Wills wrote: > Author: swills > Date: Tue Oct 6 20:01:59 2015 > New Revision: 398716 > URL: https://svnweb.freebsd.org/changeset/ports/398716 >=20 > Log: > www/firefox: update to 41.0 > =20 > PR: 203384 > Submitted by: Christoph Moench-Tegeder > MFH: 2014Q4 > Security: 2d56c7f4-b354-428f-8f48-38150c607a05 Approved (with dependent changesets, if needed). Cheers, --=20 Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die --NCowbj8Vnifhk4dJhcFkTnJLJWSCK37iB Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.1.8 (FreeBSD) iQIcBAEBCgAGBQJWFC0bAAoJEJW2GBstM+nsdSMP/2MphpzafeHvmWjuGwVQkQwA kimYpLoiRyJY6vqFGsqcTFCusjPwisrJS77SLzVCRe18AIBy2qRU5o/IEabD80S6 yfHztE+WRqAti/Pb+QzdEKHXowPgCNX/QnF3Ktxc0dG8vghfkKoQLmQGA6mb67L1 Tc4HrHWlRZldd0uXxenLpv2T+4guepKORPZdiZVEnbfPkVDbndGjEX3O6E28KpqI A/CMNhR+txO0Cksgypeal9DfCKWKyO9FWvfX009jWV9gtpYyt8yCiAIqhxdAMQ4I L68iYQJUGLzSbEemuBnM6hTqkBkSo1Dbi5xIe45W3ghTWFQ2+fCECD1HdoRWpPZk GRhN8QCVdwXIgXILl0bK/OWcbOucrGdS838Hc8iy6X1hX/Au4CQYZgnPRPC+buEo hUdEneH3uRoAsmvL/LMdTh4aeMxXLPo61cOroZF/DKF+bnPhPjmedmvYnETNkel7 aqhBiPqHTgwsKLSE5/kYvBWN1PZdketoqxXwln9jvx7oNdqi6kbPT+x++Zfvu3K/ 4pmDfMdOVwvQABiRcS5TGAV2uU0P7VCk5K5ZOj6IFeHwhJRrMrnE+1fD+rh5tsFH Z0E0Y/ksXbWoHUCJpfDFAwXtThB0v87ipqrKj5+Hc6dACO/55HRkwIqjUi6srIfE vPBJCMtB/Rr3MD0SFPGE =Ib26 -----END PGP SIGNATURE----- --NCowbj8Vnifhk4dJhcFkTnJLJWSCK37iB-- From owner-svn-ports-head@freebsd.org Tue Oct 6 20:27: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 9E8639D0E9A; Tue, 6 Oct 2015 20:27:01 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BBCE3CB; Tue, 6 Oct 2015 20:27:01 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96KR0tS022755; Tue, 6 Oct 2015 20:27:00 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96KR0RB022754; Tue, 6 Oct 2015 20:27:00 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510062027.t96KR0RB022754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 6 Oct 2015 20:27:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398717 - head/deskutils/calibre 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: Tue, 06 Oct 2015 20:27:01 -0000 Author: madpilot Date: Tue Oct 6 20:27:00 2015 New Revision: 398717 URL: https://svnweb.freebsd.org/changeset/ports/398717 Log: Fix packaging for some edge cases. PR: 203555 Submitted by: amdmi3@ MFH: 2015Q4 Modified: head/deskutils/calibre/Makefile Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Tue Oct 6 20:01:59 2015 (r398716) +++ head/deskutils/calibre/Makefile Tue Oct 6 20:27:00 2015 (r398717) @@ -70,7 +70,8 @@ MAKE_ENV+= FC_INC_DIR="${LOCALBASE}/incl WITH_USB=yes \ CALIBRE_CONFIG_DIRECTORY=${WRKDIR}/calibre-config \ XDG_DATA_DIRS=${STAGEDIR}${PREFIX}/share \ - XDG_CONFIG_HOME=${WRKDIR}/xdg-config + XDG_CONFIG_HOME=${WRKDIR}/xdg-config \ + XDG_UTILS_INSTALL_MODE=system .include From owner-svn-ports-head@freebsd.org Tue Oct 6 20:34:43 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 9F5B19B650E; Tue, 6 Oct 2015 20:34:43 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A36DB0A; Tue, 6 Oct 2015 20:34:43 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96KYghJ025686; Tue, 6 Oct 2015 20:34:42 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96KYgqq025683; Tue, 6 Oct 2015 20:34:42 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201510062034.t96KYgqq025683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 6 Oct 2015 20:34:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398718 - head/emulators/wine-devel 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: Tue, 06 Oct 2015 20:34:43 -0000 Author: gerald Date: Tue Oct 6 20:34:42 2015 New Revision: 398718 URL: https://svnweb.freebsd.org/changeset/ports/398718 Log: Update to Wine 1.7.52. This includes the following changes: - Unicode data updated to Unicode 8.0.0. - Some implementation of the Web Services DLL. - More Direct3D 11 interfaces. - A few more functions in the C++ runtime. - Output standard glyph names in the PostScript driver. - Various bug fixes. Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo head/emulators/wine-devel/pkg-plist Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Tue Oct 6 20:27:00 2015 (r398717) +++ head/emulators/wine-devel/Makefile Tue Oct 6 20:34:42 2015 (r398718) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.51 +DISTVERSION= 1.7.52 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Tue Oct 6 20:27:00 2015 (r398717) +++ head/emulators/wine-devel/distinfo Tue Oct 6 20:34:42 2015 (r398718) @@ -1,4 +1,4 @@ -SHA256 (wine-1.7.51.tar.bz2) = 397fc95b463d6ae1b65ab0477d9fe5d0871e8e2a3322bc9d984e438f2c4d0f52 -SIZE (wine-1.7.51.tar.bz2) = 22639053 -SHA256 (v1.7.51.tar.gz) = 662cbfcca95405045ba063f312fa4f605d8c48b7b0930c951e2ebac817f3b763 -SIZE (v1.7.51.tar.gz) = 9628831 +SHA256 (wine-1.7.52.tar.bz2) = 0773b32a0c358323db4c383ceb1e9e28d5d4ed4ea37570af2bcb41fecf0d554b +SIZE (wine-1.7.52.tar.bz2) = 22707539 +SHA256 (v1.7.52.tar.gz) = 84354a10e4226b5e456abb6d5727f4514c79d537ca809bb114a945830166cd73 +SIZE (v1.7.52.tar.gz) = 9654310 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Tue Oct 6 20:27:00 2015 (r398717) +++ head/emulators/wine-devel/pkg-plist Tue Oct 6 20:34:42 2015 (r398718) @@ -1,4 +1,5 @@ bin/function_grep.pl +%%STAGING%%bin/msidb bin/msiexec bin/notepad bin/regedit @@ -803,8 +804,13 @@ include/wine/windows/wtypes.h include/wine/windows/wtypes.idl include/wine/windows/wuapi.h include/wine/windows/wuapi.idl +include/wine/windows/x3daudio.h +include/wine/windows/xapo.h +include/wine/windows/xapo.idl include/wine/windows/xaudio2.h include/wine/windows/xaudio2.idl +include/wine/windows/xaudio2fx.h +include/wine/windows/xaudio2fx.idl include/wine/windows/xcmc.h include/wine/windows/xinput.h include/wine/windows/xmldom.h @@ -1091,6 +1097,7 @@ lib/wine/dxdiagn.dll.so lib/wine/dxgi.dll.so lib/wine/dxva2.dll.so lib/wine/eject.exe.so +lib/wine/esent.dll.so lib/wine/evr.dll.so lib/wine/expand.exe.so lib/wine/explorer.exe.so @@ -1348,6 +1355,7 @@ lib/wine/fakedlls/dxdiagn.dll lib/wine/fakedlls/dxgi.dll lib/wine/fakedlls/dxva2.dll lib/wine/fakedlls/eject.exe +lib/wine/fakedlls/esent.dll lib/wine/fakedlls/evr.dll lib/wine/fakedlls/expand.exe lib/wine/fakedlls/explorer.exe @@ -1447,6 +1455,7 @@ lib/wine/fakedlls/mscoree.dll lib/wine/fakedlls/msctf.dll lib/wine/fakedlls/msctfp.dll lib/wine/fakedlls/msdaps.dll +lib/wine/fakedlls/msdelta.dll lib/wine/fakedlls/msdmo.dll lib/wine/fakedlls/msftedit.dll lib/wine/fakedlls/msg711.acm @@ -1455,6 +1464,7 @@ lib/wine/fakedlls/mshta.exe lib/wine/fakedlls/mshtml.dll lib/wine/fakedlls/mshtml.tlb lib/wine/fakedlls/msi.dll +%%STAGING%%lib/wine/fakedlls/msidb.exe lib/wine/fakedlls/msident.dll lib/wine/fakedlls/msiexec.exe lib/wine/fakedlls/msimg32.dll @@ -2052,6 +2062,7 @@ lib/wine/mscoree.dll.so lib/wine/msctf.dll.so lib/wine/msctfp.dll.so lib/wine/msdaps.dll.so +lib/wine/msdelta.dll.so lib/wine/msdmo.dll.so lib/wine/msftedit.dll.so lib/wine/msg711.acm.so @@ -2060,6 +2071,7 @@ lib/wine/mshta.exe.so lib/wine/mshtml.dll.so lib/wine/mshtml.tlb.so lib/wine/msi.dll.so +%%STAGING%%lib/wine/msidb.exe.so lib/wine/msident.dll.so lib/wine/msiexec.exe.so lib/wine/msimg32.dll.so From owner-svn-ports-head@freebsd.org Tue Oct 6 20:38: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 F2DD49B6889; Tue, 6 Oct 2015 20:38:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB796D62; Tue, 6 Oct 2015 20:38:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96KcWEJ025929; Tue, 6 Oct 2015 20:38:32 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96KcWfo025928; Tue, 6 Oct 2015 20:38:32 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201510062038.t96KcWfo025928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 6 Oct 2015 20:38:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398719 - head/textproc/pootle 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: Tue, 06 Oct 2015 20:38:34 -0000 Author: rene Date: Tue Oct 6 20:38:32 2015 New Revision: 398719 URL: https://svnweb.freebsd.org/changeset/ports/398719 Log: textproc/pootle: fix run dependency for PGSQL Submitted by: HellSpawn via IRC Modified: head/textproc/pootle/Makefile Modified: head/textproc/pootle/Makefile ============================================================================== --- head/textproc/pootle/Makefile Tue Oct 6 20:34:42 2015 (r398718) +++ head/textproc/pootle/Makefile Tue Oct 6 20:38:32 2015 (r398719) @@ -55,7 +55,7 @@ MEMCACHED_RUN_DEPENDS= ${PYTHON_PKGNAMEP MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>0:${PORTSDIR}/databases/py-MySQLdb -PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:${PORTSDIR}/databases/py-pyscopg2 +PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:${PORTSDIR}/databases/py-psycopg2 SUBVERSION_RUN_DEPENDS= svn:${PORTSDIR}/devel/subversion From owner-svn-ports-head@freebsd.org Tue Oct 6 21:04:07 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 D78849D0D1E; Tue, 6 Oct 2015 21:04:07 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1399EFA; Tue, 6 Oct 2015 21:04:07 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96L460p034555; Tue, 6 Oct 2015 21:04:06 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96L46vt034552; Tue, 6 Oct 2015 21:04:06 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510062104.t96L46vt034552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 21:04:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398720 - in head/mail/vqadmin: . 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: Tue, 06 Oct 2015 21:04:08 -0000 Author: amdmi3 Date: Tue Oct 6 21:04:06 2015 New Revision: 398720 URL: https://svnweb.freebsd.org/changeset/ports/398720 Log: - Move owner/group/perm handling into plist, fixing packaging from non-root PR: 203566 Submitted by: amdmi3 Approved by: oliver (maintainer) Modified: head/mail/vqadmin/Makefile head/mail/vqadmin/files/patch-Makefile.in head/mail/vqadmin/pkg-plist Modified: head/mail/vqadmin/Makefile ============================================================================== --- head/mail/vqadmin/Makefile Tue Oct 6 20:38:32 2015 (r398719) +++ head/mail/vqadmin/Makefile Tue Oct 6 21:04:06 2015 (r398720) @@ -24,12 +24,10 @@ CONFIGURE_ARGS= --enable-cgibindir=${STA --enable-htmldir=${STAGEDIR}${PREFIX}/${WEBDATADIR} \ --enable-qmaildir=${QMAIL_PREFIX} -.include - PLIST_SUB+= CGIBINDIR=${CGIBINDIR} WEBDATADIR=${WEBDATADIR} post-patch: @${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \ ${WRKSRC}/Makefile.in -.include +.include Modified: head/mail/vqadmin/files/patch-Makefile.in ============================================================================== --- head/mail/vqadmin/files/patch-Makefile.in Tue Oct 6 20:38:32 2015 (r398719) +++ head/mail/vqadmin/files/patch-Makefile.in Tue Oct 6 21:04:06 2015 (r398720) @@ -1,7 +1,7 @@ ---- Makefile.in.orig Sat Jan 18 12:25:01 2003 -+++ Makefile.in Sat Jan 18 12:26:45 2003 -@@ -120,7 +120,7 @@ - DEFAULT_INCLUDES = -I. -I$(srcdir) -I. +--- Makefile.in.orig 2003-09-17 21:21:38 UTC ++++ Makefile.in +@@ -120,7 +120,7 @@ vqadmin_LDFLAGS = + DEFAULT_INCLUDES = -I. -I$(srcdir) -I. CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ @@ -9,3 +9,36 @@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +@@ -527,32 +527,12 @@ install-data-local: + cp vqadmin.acl @cgibindir@/vqadmin ; \ + fi + +- chown @vpopuser@ @cgibindir@/vqadmin +- chgrp @vpopgroup@ @cgibindir@/vqadmin +- chown -R @vpopuser@ @cgibindir@/vqadmin/* +- chgrp -R @vpopgroup@ @cgibindir@/vqadmin/* +- chown root @cgibindir@/vqadmin/vqadmin.cgi +- chgrp `id -g root` @cgibindir@/vqadmin/vqadmin.cgi +- chmod u+s,g+s @cgibindir@/vqadmin/vqadmin.cgi +- chmod 755 @cgibindir@/vqadmin +- chmod 755 @cgibindir@/vqadmin/html +- +- chown @vpopuser@ @wwwroot@/images/vqadmin +- chgrp @vpopgroup@ @wwwroot@/images/vqadmin +- chown -R @vpopuser@ @wwwroot@/images/vqadmin/* +- chgrp -R @vpopgroup@ @wwwroot@/images/vqadmin/* +- chmod 755 @wwwroot@/images/vqadmin +- + if test -f @cgibindir@/vqadmin/.htaccess ; then \ + echo ".htaccess file already in place" ; \ + else \ + cp htaccess @cgibindir@/vqadmin/.htaccess ; \ + fi + +- chown nobody @cgibindir@/vqadmin/.htaccess +- chmod u+rw @cgibindir@/vqadmin/.htaccess +- chmod go+r @cgibindir@/vqadmin/.htaccess +- + acl.o: config.h + cedit.o: config.h + cgi.o: config.h Modified: head/mail/vqadmin/pkg-plist ============================================================================== --- head/mail/vqadmin/pkg-plist Tue Oct 6 20:38:32 2015 (r398719) +++ head/mail/vqadmin/pkg-plist Tue Oct 6 21:04:06 2015 (r398720) @@ -1,5 +1,7 @@ bin/vqadmin -%%CGIBINDIR%%/vqadmin/.htaccess +@owner vpopmail +@group vchkpw +@(nobody,,644) %%CGIBINDIR%%/vqadmin/.htaccess %%CGIBINDIR%%/vqadmin/html/add_alias_domain.html %%CGIBINDIR%%/vqadmin/html/add_domain.html %%CGIBINDIR%%/vqadmin/html/add_domain_body.html @@ -37,5 +39,10 @@ bin/vqadmin %%CGIBINDIR%%/vqadmin/html/view_domain.html %%CGIBINDIR%%/vqadmin/html/view_user.html %%CGIBINDIR%%/vqadmin/vqadmin.acl -%%CGIBINDIR%%/vqadmin/vqadmin.cgi +@(root,wheel,6755) %%CGIBINDIR%%/vqadmin/vqadmin.cgi %%WEBDATADIR%%/images/vqadmin/vqadmin.css +@dir(,,755) %%WEBDATADIR%%/images/vqadmin +@dir(,,755) %%CGIBINDIR%%/vqadmin/html +@dir(,,755) %%CGIBINDIR%%/vqadmin +@owner +@group From owner-svn-ports-head@freebsd.org Tue Oct 6 21:06:53 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 D7DE49D0E9A; Tue, 6 Oct 2015 21:06:53 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from frv157.fwdcdn.com (frv157.fwdcdn.com [212.42.77.157]) (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 832A7A3; Tue, 6 Oct 2015 21:06:52 +0000 (UTC) (envelope-from fidaj@ukr.net) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ukr.net; s=fsm; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=f3yo5HiIVjpZskQ5XjXZkdBZIwWGsI3JkeQD0OykCc4=; b=HWKECFpHHWWKeY1VYHTNFGw+OBEoxmjJbaYzppKTXDwUIRuHghPxmp9lt+Bbjdm3v8ptaRobvvr1in9NNyRsbJyAPVBHa1Rr+54OTwA6V2fWJAXXmu9vfXBn+FUbRVzV9U6/gKH0UDWxAz880mihxFk/wRaxsVKzDbb70rztXk8=; Received: from [178.137.225.202] (helo=nonamehost.local) by frv157.fwdcdn.com with esmtpsa ID 1ZjZRb-0008ua-TL ; Wed, 07 Oct 2015 00:06:44 +0300 Date: Wed, 7 Oct 2015 00:06:41 +0300 From: Ivan Klymenko To: Steve Wills Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398716 - in head: Mk/Uses www/firefox www/firefox-i18n www/firefox/files Message-ID: <20151007000641.5ec031b0@nonamehost.local> In-Reply-To: <201510062002.t96K20FG016283@repo.freebsd.org> References: <201510062002.t96K20FG016283@repo.freebsd.org> X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Authentication-Result: IP=178.137.225.202; mail.from=fidaj@ukr.net; dkim=pass; header.d=ukr.net 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: Tue, 06 Oct 2015 21:06:54 -0000 On Tue, 6 Oct 2015 20:02:00 +0000 (UTC) Steve Wills wrote: > Author: swills > Date: Tue Oct 6 20:01:59 2015 > New Revision: 398716 > URL: https://svnweb.freebsd.org/changeset/ports/398716 > > Log: > www/firefox: update to 41.0 > > PR: 203384 > Submitted by: Christoph Moench-Tegeder > MFH: 2014Q4 > Security: 2d56c7f4-b354-428f-8f48-38150c607a05 > > Modified: > head/Mk/Uses/gecko.mk > head/www/firefox-i18n/Makefile > head/www/firefox-i18n/distinfo > head/www/firefox/Makefile > head/www/firefox/distinfo > head/www/firefox/files/patch-bug702179 > head/www/firefox/files/patch-bug847568 > head/www/firefox/files/patch-memory-jemalloc-Makefile.in > head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk > > Modified: head/Mk/Uses/gecko.mk > ============================================================================== > --- head/Mk/Uses/gecko.mk Tue Oct 6 19:18:23 2015 > (r398715) +++ head/Mk/Uses/gecko.mk Tue Oct 6 20:01:59 > 2015 (r398716) @@ -37,12 +37,12 @@ RUN_DEPENDS+= > libxul>=38:${PORTSDIR}/www .elif ${gecko_ARGS:Mfirefox} > > _GECKO_DEFAULT_VERSION= 38 > -_GECKO_VERSIONS= 38 40 > +_GECKO_VERSIONS= 38 41 > _GECKO_TYPE= firefox > > # Dependence lines for different Firefox versions > 38_DEPENDS= > ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr > -40_DEPENDS= > ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox > +41_DEPENDS= > ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox .if > exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= > ${LOCALBASE}/bin/firefox --version 2>/dev/null > > Modified: head/www/firefox-i18n/Makefile > ============================================================================== > --- head/www/firefox-i18n/Makefile Tue Oct 6 19:18:23 > 2015 (r398715) +++ head/www/firefox-i18n/Makefile Tue > Oct 6 20:01:59 2015 (r398716) @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= firefox-i18n > -PORTVERSION= 40.0.3 > +PORTVERSION= 41.0 > CATEGORIES= www > MASTER_SITES= > MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi > \ > MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi > @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox > EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip > -USES= zip:infozip gecko:firefox,40,build > +USES= zip:infozip gecko:firefox,41,build > USE_XPI= firefox linux-firefox > > NO_ARCH= yes > > Modified: head/www/firefox-i18n/distinfo > ============================================================================== > --- head/www/firefox-i18n/distinfo Tue Oct 6 19:18:23 > 2015 (r398715) +++ head/www/firefox-i18n/distinfo Tue > Oct 6 20:01:59 2015 (r398716) @@ -1,176 +1,176 @@ > -SHA256 (xpi/firefox-i18n-40.0.3/ach.xpi) = > 931ff80fc7ab5a3515a31994dbc0787e6e381b66672949f510cc96a125c11a88 > -SIZE (xpi/firefox-i18n-40.0.3/ach.xpi) = 494119 -SHA256 > (xpi/firefox-i18n-40.0.3/af.xpi) = > e6fac0b29616c3924530ea8714cb4bd6d836818b4b23b5fb2a8aa4e80dd1559b > -SIZE (xpi/firefox-i18n-40.0.3/af.xpi) = 498500 -SHA256 > (xpi/firefox-i18n-40.0.3/an.xpi) = > cb4cf9363bae9c9e84bb7d763be998701c6f017824d9986c74b21b46d0cb011d > -SIZE (xpi/firefox-i18n-40.0.3/an.xpi) = 476725 -SHA256 > (xpi/firefox-i18n-40.0.3/ar.xpi) = > 3635e6899a89ee93bc0f5290799471c8c8493782ee2819d47278ed1c385179cd > -SIZE (xpi/firefox-i18n-40.0.3/ar.xpi) = 532106 -SHA256 > (xpi/firefox-i18n-40.0.3/as.xpi) = > bc13edcbf25ad488b0bcb81987f2c7be90ff38bf3d8abf40e9f14ab7a21b6474 > -SIZE (xpi/firefox-i18n-40.0.3/as.xpi) = 522246 -SHA256 > (xpi/firefox-i18n-40.0.3/ast.xpi) = > c153cf18ab652c5535452ab514ed4288806298f32d8329e3adb8e67e53a025d1 > -SIZE (xpi/firefox-i18n-40.0.3/ast.xpi) = 408919 -SHA256 > (xpi/firefox-i18n-40.0.3/az.xpi) = > 6f118a8ae96377c67d00ac4d8fe6ec72a57124593097b308779299d17fdc7a98 > -SIZE (xpi/firefox-i18n-40.0.3/az.xpi) = 505061 -SHA256 > (xpi/firefox-i18n-40.0.3/be.xpi) = > 6a91c11e4c0c2e0469b972d80b286fb3bf600fb8eb30184b94a3001972e5b72b > -SIZE (xpi/firefox-i18n-40.0.3/be.xpi) = 464201 -SHA256 > (xpi/firefox-i18n-40.0.3/bg.xpi) = > 0ed54d7e27ffa0040da087d716b1a23f36118e176bceef62becfa73ca3ed8b23 > -SIZE (xpi/firefox-i18n-40.0.3/bg.xpi) = 503495 -SHA256 > (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = > 8a6555682596254f617b41a406b3ea48f74a9c0aa64a180ab9760e66fc0fee35 > -SIZE (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = 538760 -SHA256 > (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = > cc0b8ae6969e5bf09d631dd621ee88bf25755dc0df6b851a4a0116c53a4e7b66 > -SIZE (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = 541272 -SHA256 > (xpi/firefox-i18n-40.0.3/br.xpi) = > 54553c59ce2f62e5bed36372decd9e2480c770443011a8713d5cc23605caca0a > -SIZE (xpi/firefox-i18n-40.0.3/br.xpi) = 456849 -SHA256 > (xpi/firefox-i18n-40.0.3/bs.xpi) = > 187626919baedd3be7d5525bb8114f3c6a2db0dfdec333977f42531ed500c064 > -SIZE (xpi/firefox-i18n-40.0.3/bs.xpi) = 497332 -SHA256 > (xpi/firefox-i18n-40.0.3/ca.xpi) = > ee57b8bc19e33a08e89d6a3d028c3da5b7b741ba31eb5bc5ebeaf600bb4b00f3 > -SIZE (xpi/firefox-i18n-40.0.3/ca.xpi) = 474110 -SHA256 > (xpi/firefox-i18n-40.0.3/cs.xpi) = > 3a02d4f6a36f882f8c3dac164a2984fdb42b07c6074e4b3c82c7066f6ee8aa34 > -SIZE (xpi/firefox-i18n-40.0.3/cs.xpi) = 462358 -SHA256 > (xpi/firefox-i18n-40.0.3/cy.xpi) = > 6f1f87e2df406b2d8313ad0231751cd5f24e9103a2b5ab368dad23534da0a9ef > -SIZE (xpi/firefox-i18n-40.0.3/cy.xpi) = 459246 -SHA256 > (xpi/firefox-i18n-40.0.3/da.xpi) = > cca57641cc00f92f7152c15363aad38566db57ae3df09e4701f20f2f3836f0ba > -SIZE (xpi/firefox-i18n-40.0.3/da.xpi) = 465572 -SHA256 > (xpi/firefox-i18n-40.0.3/de.xpi) = > a7f26ebd30781adf98995a48b03b92ea294b9d0d6bb02f3806b8d9b3899a5ade > -SIZE (xpi/firefox-i18n-40.0.3/de.xpi) = 467233 -SHA256 > (xpi/firefox-i18n-40.0.3/dsb.xpi) = > b031e2d9b694f0e029c15cd6be6eedd79f6f4a01005af1eb1a17f166918413ba > -SIZE (xpi/firefox-i18n-40.0.3/dsb.xpi) = 486591 -SHA256 > (xpi/firefox-i18n-40.0.3/el.xpi) = > 40d7f63513bb3d0b280bb25813b6a13f52779b0558d75b65b6a8fcb69960e242 > -SIZE (xpi/firefox-i18n-40.0.3/el.xpi) = 513117 -SHA256 > (xpi/firefox-i18n-40.0.3/en-GB.xpi) = > e4fc56e6d8ffbd88df62dc5ed94ecf3594efe5157165727b22bbde72fd4dd1a8 > -SIZE (xpi/firefox-i18n-40.0.3/en-GB.xpi) = 451900 -SHA256 > (xpi/firefox-i18n-40.0.3/en-US.xpi) = > 78010ec1a26181d369c10363fb19f92d2640ee8dca61282eea65913fbed3224a > -SIZE (xpi/firefox-i18n-40.0.3/en-US.xpi) = 483748 -SHA256 > (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = > 13b178fe4562587edb2ef0bfc72ea3daae9488d3125dee1288911d4d78cf8cae > -SIZE (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = 455370 -SHA256 > (xpi/firefox-i18n-40.0.3/eo.xpi) = > 993c33ffece8ce4c1e1fe4d931a752033ba191cdce8bef89b4459a1164e16fa8 > -SIZE (xpi/firefox-i18n-40.0.3/eo.xpi) = 500202 -SHA256 > (xpi/firefox-i18n-40.0.3/es-AR.xpi) = > afdca33ee50fcf90b19a781e3ff59766562c5c4f829c36961122dffcdc20f855 > -SIZE (xpi/firefox-i18n-40.0.3/es-AR.xpi) = 468599 -SHA256 > (xpi/firefox-i18n-40.0.3/es-CL.xpi) = > f7928068f48d900b73db21ee0599017785eac6b9087364ccce55fc356003a540 > -SIZE (xpi/firefox-i18n-40.0.3/es-CL.xpi) = 394972 -SHA256 > (xpi/firefox-i18n-40.0.3/es-ES.xpi) = > fc6564877ca5404395624dbc62e22b22731134c69078e432ffd174fedac8a0de > -SIZE (xpi/firefox-i18n-40.0.3/es-ES.xpi) = 383894 -SHA256 > (xpi/firefox-i18n-40.0.3/es-MX.xpi) = > de9c338485a5a32bf0e6b9a51fbc948b90006d8cc63e2a7303cda8adc5ed4ff4 > -SIZE (xpi/firefox-i18n-40.0.3/es-MX.xpi) = 472917 -SHA256 > (xpi/firefox-i18n-40.0.3/et.xpi) = > 679dcef606b9091e8018b0aaf40b0285a4557dd56e5dd7132b407d250fc76aa9 > -SIZE (xpi/firefox-i18n-40.0.3/et.xpi) = 457409 -SHA256 > (xpi/firefox-i18n-40.0.3/eu.xpi) = > e33bac2ff93ae3760b95a3a176fd0cc9e1a402fa4f174c10e77e6797d8cd27ce > -SIZE (xpi/firefox-i18n-40.0.3/eu.xpi) = 481824 -SHA256 > (xpi/firefox-i18n-40.0.3/fa.xpi) = > e2f4ff8871be1d3a779891ae857e17a45ce92d84405c274862aa125f080624bf > -SIZE (xpi/firefox-i18n-40.0.3/fa.xpi) = 526972 -SHA256 > (xpi/firefox-i18n-40.0.3/ff.xpi) = > 14e28b03a128727581782ca4320acda4eb560aac307b0b9ce463821a233412ac > -SIZE (xpi/firefox-i18n-40.0.3/ff.xpi) = 465793 -SHA256 > (xpi/firefox-i18n-40.0.3/fi.xpi) = > e62fad8b4b2d96fc3f35920c69a7529be6e275e6c63ed293a32acf8f5d2ecf66 > -SIZE (xpi/firefox-i18n-40.0.3/fi.xpi) = 459382 -SHA256 > (xpi/firefox-i18n-40.0.3/fr.xpi) = > d1daead0f4dddf6b06959e32f601128cb2764fd20a58372c1e587ae9b5f3a754 > -SIZE (xpi/firefox-i18n-40.0.3/fr.xpi) = 477148 -SHA256 > (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = > 511e4b459e7cd38236ef10bebcded90f360a30f08a3594815e298e1383b17453 > -SIZE (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = 471145 -SHA256 > (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = > 6a9f8f72d0664c29214a7746aa83ac51fc5bd9c77b56d4048cd92b5bbcfaacf1 > -SIZE (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = 485536 -SHA256 > (xpi/firefox-i18n-40.0.3/gd.xpi) = > 9dc62003d7501e9234145e269d22ae647b9d6309005346294d438977c72be322 > -SIZE (xpi/firefox-i18n-40.0.3/gd.xpi) = 469750 -SHA256 > (xpi/firefox-i18n-40.0.3/gl.xpi) = > 59437020832a39a3314e9c6654ea79dd8cad9cb997a23e34e83697c27b92b821 > -SIZE (xpi/firefox-i18n-40.0.3/gl.xpi) = 463634 -SHA256 > (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = > 9eaef0ede53a662b592d489ee033c60edf93292adefa3c4ea3d24b5eeaa99ccc > -SIZE (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = 498591 -SHA256 > (xpi/firefox-i18n-40.0.3/he.xpi) = > e058879bdeab1c86fde3e07a7ceb589604c40aaa8319c16b709222ae305d1466 > -SIZE (xpi/firefox-i18n-40.0.3/he.xpi) = 497110 -SHA256 > (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = > edf700377b3d384aacdc8a6a85fb9cad7385593d0689d6b0474b9a81782bbf80 > -SIZE (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = 519929 -SHA256 > (xpi/firefox-i18n-40.0.3/hr.xpi) = > 4b4cf824c97d6c4992905a13bbe4c16338c0524ce8f1ed762dc87dd830e91a55 > -SIZE (xpi/firefox-i18n-40.0.3/hr.xpi) = 494492 -SHA256 > (xpi/firefox-i18n-40.0.3/hsb.xpi) = > fb7c6391fe76f9a31fbcec53bc253b4c781196f8341690d55e91190bddcfdf87 > -SIZE (xpi/firefox-i18n-40.0.3/hsb.xpi) = 484247 -SHA256 > (xpi/firefox-i18n-40.0.3/hu.xpi) = > f5d5313195455272dba460ee8b29f887ac0acddc14461c69dacde89b884b71d0 > -SIZE (xpi/firefox-i18n-40.0.3/hu.xpi) = 469054 -SHA256 > (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = > 5a3d889d467a8d13bbe87b2e9fb8baafea19ba6730ce514ea953f52fadbba961 > -SIZE (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = 550065 -SHA256 > (xpi/firefox-i18n-40.0.3/id.xpi) = > 996a53ac0c9d6c826b0403b1520a1e8ea50b77bbb952784695602b56b0e93861 > -SIZE (xpi/firefox-i18n-40.0.3/id.xpi) = 446092 -SHA256 > (xpi/firefox-i18n-40.0.3/is.xpi) = > c2f79f33d52b4d0cee20990cc497727b3cc69b3afa5bc031176d3bfcc8aa136f > -SIZE (xpi/firefox-i18n-40.0.3/is.xpi) = 499894 -SHA256 > (xpi/firefox-i18n-40.0.3/it.xpi) = > 7f2fe994fd74847bbc5de393954a526e9c17cef5089e506a616247541684b9f4 > -SIZE (xpi/firefox-i18n-40.0.3/it.xpi) = 377833 -SHA256 > (xpi/firefox-i18n-40.0.3/ja.xpi) = > 6e3f6870ff749e14cf22ad82bdefedbb2b152c802b86ab7f9b588da382f2c88c > -SIZE (xpi/firefox-i18n-40.0.3/ja.xpi) = 495439 -SHA256 > (xpi/firefox-i18n-40.0.3/kk.xpi) = > dde3b84aab92cadf4b30c279781907fdf12796b7d2a91d4fbc68b2220e267189 > -SIZE (xpi/firefox-i18n-40.0.3/kk.xpi) = 520131 -SHA256 > (xpi/firefox-i18n-40.0.3/km.xpi) = > c6c2e8c52afebd11fa20f51e0ab38ed7c0fa08f6f00c31ed8258c322343d2435 > -SIZE (xpi/firefox-i18n-40.0.3/km.xpi) = 578734 -SHA256 > (xpi/firefox-i18n-40.0.3/kn.xpi) = > eb28a17c7c34dba3a4792aacaad8d4b25553ccc4114e4f87e7fdb0de7cccd0b8 > -SIZE (xpi/firefox-i18n-40.0.3/kn.xpi) = 550864 -SHA256 > (xpi/firefox-i18n-40.0.3/ko.xpi) = > ac39a4c8ebc3d5b43d00b788bdf62c3de4a6fec74a0f8906d3e6fd14f8f62eac > -SIZE (xpi/firefox-i18n-40.0.3/ko.xpi) = 476892 -SHA256 > (xpi/firefox-i18n-40.0.3/lij.xpi) = > cb592d8995127529c4f21c6547a8f954fef27da331b82abc4586fd367e2cf374 > -SIZE (xpi/firefox-i18n-40.0.3/lij.xpi) = 462239 -SHA256 > (xpi/firefox-i18n-40.0.3/lt.xpi) = > d1c483d45096b8fb00d24057948197d4413c545b0e2a0cacf609fbfbb1f18bad > -SIZE (xpi/firefox-i18n-40.0.3/lt.xpi) = 502211 -SHA256 > (xpi/firefox-i18n-40.0.3/lv.xpi) = > 1c5a49e3f40456c1a99a60376ec697a19ff82f25b79220df56e8b1c8fc5f9bfb > -SIZE (xpi/firefox-i18n-40.0.3/lv.xpi) = 482486 -SHA256 > (xpi/firefox-i18n-40.0.3/mai.xpi) = > ff0e82f02ddd321ecc7d0f07a5f5a9b09ed67f27381dc59595dfa27a818ed6ac > -SIZE (xpi/firefox-i18n-40.0.3/mai.xpi) = 527990 -SHA256 > (xpi/firefox-i18n-40.0.3/mk.xpi) = > a8b9dd7940f6c269dbd428166bea9e1e71dd99de25756bf0ddacfc2ab2f71549 > -SIZE (xpi/firefox-i18n-40.0.3/mk.xpi) = 542563 -SHA256 > (xpi/firefox-i18n-40.0.3/ml.xpi) = > f3d5b491a6c1d664ae1cf0717157e775a73049f457664ca4e131aa851ea02d2f > -SIZE (xpi/firefox-i18n-40.0.3/ml.xpi) = 540383 -SHA256 > (xpi/firefox-i18n-40.0.3/mr.xpi) = > 23bed23751ed673b6211d1421405b01814e895b341977bbfbcda146f263585a3 > -SIZE (xpi/firefox-i18n-40.0.3/mr.xpi) = 522286 -SHA256 > (xpi/firefox-i18n-40.0.3/ms.xpi) = > 65abedc8974aa260ab7199d0f2f9fd151a8ccea8a7a1d44074f17cc5d258e378 > -SIZE (xpi/firefox-i18n-40.0.3/ms.xpi) = 504520 -SHA256 > (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = > 704280dc977a7d32c20416f2e9d7207e7ea05a0deb19368019b3120ddf480bc0 > -SIZE (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = 458941 -SHA256 > (xpi/firefox-i18n-40.0.3/nl.xpi) = > f53d67db63953781fda06b72d3424acde9efdcf47e027316c27189ab5d1ec043 > -SIZE (xpi/firefox-i18n-40.0.3/nl.xpi) = 458630 -SHA256 > (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = > 362f3f09a036d190156293ffee2d5a548fdb65fb07618bc2f8b5dbf40c6c831a > -SIZE (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = 453068 -SHA256 > (xpi/firefox-i18n-40.0.3/or.xpi) = > 37d119640c4095e3afa53c1df2ca7b548f68793f281894ca47d7457688f55373 > -SIZE (xpi/firefox-i18n-40.0.3/or.xpi) = 539212 -SHA256 > (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = > d70277e8b7d3805bb50ab1b6bb69b55dd84c871c567d7484b6c8a095d58730ef > -SIZE (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = 509122 -SHA256 > (xpi/firefox-i18n-40.0.3/pl.xpi) = > 4dca0edaef047cd54689e2ea4296598be5a86e098efb5347ad6fd5e307b6f213 > -SIZE (xpi/firefox-i18n-40.0.3/pl.xpi) = 415191 -SHA256 > (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = > 419ebf4fc0d8d23b17b6ff0b971d18f0b94b33267d1bbbc6b4437fb6c3c3150f > -SIZE (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = 475443 -SHA256 > (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = > 1ba5b9fee35b1d35f4e7f4363056d379c016f1dc60f7ea03412bc29623ef60fc > -SIZE (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = 456035 -SHA256 > (xpi/firefox-i18n-40.0.3/rm.xpi) = > 164438a83d9edd555aa39a4fed844c2520351b1ceb6e3a38786c89ff085acd57 > -SIZE (xpi/firefox-i18n-40.0.3/rm.xpi) = 461466 -SHA256 > (xpi/firefox-i18n-40.0.3/ro.xpi) = > e6b69e1f86dfed31a103ae5f8b5c5bdc39abae0e10826177ef8d9118e37628ce > -SIZE (xpi/firefox-i18n-40.0.3/ro.xpi) = 509716 -SHA256 > (xpi/firefox-i18n-40.0.3/ru.xpi) = > 2eb09947c80d43bcca12e30ff4320deb1f02dfaad8aa94f746a2088d362c8252 > -SIZE (xpi/firefox-i18n-40.0.3/ru.xpi) = 425657 -SHA256 > (xpi/firefox-i18n-40.0.3/si.xpi) = > a3fdc5a4aac6c0e7ded4cfa6a3bf0d84545a44b064c5df736422bc41923e91a0 > -SIZE (xpi/firefox-i18n-40.0.3/si.xpi) = 548768 -SHA256 > (xpi/firefox-i18n-40.0.3/sk.xpi) = > c379a93e531c2c412aa2e98c06a645c8e0b26b24d80d988966e23b2126c71358 > -SIZE (xpi/firefox-i18n-40.0.3/sk.xpi) = 485121 -SHA256 > (xpi/firefox-i18n-40.0.3/sl.xpi) = > 8fd09f59342a80843e53c34b0d9d9ca5c347a08c64beccb9386f5ba7cc3637c0 > -SIZE (xpi/firefox-i18n-40.0.3/sl.xpi) = 457940 -SHA256 > (xpi/firefox-i18n-40.0.3/son.xpi) = > d0265a35389b89f79fe8a92af7eef67160edfc21ccaa9c68c0b71c1bb7d1c8bf > -SIZE (xpi/firefox-i18n-40.0.3/son.xpi) = 465948 -SHA256 > (xpi/firefox-i18n-40.0.3/sq.xpi) = > afd42e2a29f28d6c601d962acf709b33a010ee2a7bef4b4e3bcbbb42354cfc07 > -SIZE (xpi/firefox-i18n-40.0.3/sq.xpi) = 501445 -SHA256 > (xpi/firefox-i18n-40.0.3/sr.xpi) = > c5981e3c19480f1fd3c9a4a952c734bf1b300d160fa03f05c56a1622b4676978 > -SIZE (xpi/firefox-i18n-40.0.3/sr.xpi) = 494736 -SHA256 > (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = > fde03b6f0869804b7624667b01d468503e9cdbc22c9112cef781760712a98298 > -SIZE (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = 467791 -SHA256 > (xpi/firefox-i18n-40.0.3/ta.xpi) = > 18e0e398117e2b1b99431d534c8b709113173b4b57abfd61f66f216f8f7bba11 > -SIZE (xpi/firefox-i18n-40.0.3/ta.xpi) = 521801 -SHA256 > (xpi/firefox-i18n-40.0.3/te.xpi) = > 92543ca8942593ebc6c2033832136b411fffb3da5278727f766995245ecb6957 > -SIZE (xpi/firefox-i18n-40.0.3/te.xpi) = 540972 -SHA256 > (xpi/firefox-i18n-40.0.3/th.xpi) = > 24dcadec477da92d757f72598b434a1e59613681ff9bbeca2530d7b28d7227e0 > -SIZE (xpi/firefox-i18n-40.0.3/th.xpi) = 550265 -SHA256 > (xpi/firefox-i18n-40.0.3/tr.xpi) = > e0ee75872b49c201eb4b35f4e8bb877255c9b1af010641b3129672a409e64c77 > -SIZE (xpi/firefox-i18n-40.0.3/tr.xpi) = 496254 -SHA256 > (xpi/firefox-i18n-40.0.3/uk.xpi) = > 67ab7024c3c29c6ce7e054a9c65362c942557aa636ffa673d05485ab717804fd > -SIZE (xpi/firefox-i18n-40.0.3/uk.xpi) = 511145 -SHA256 > (xpi/firefox-i18n-40.0.3/vi.xpi) = > f64479928fd58ebe2bff6d09ac26e54e3f56db7b37a465dbe4e6078a8989a117 > -SIZE (xpi/firefox-i18n-40.0.3/vi.xpi) = 481059 -SHA256 > (xpi/firefox-i18n-40.0.3/xh.xpi) = > 54948f041df5be3c074ba2bf2bf7769fa3b45751038dd61b94cf3fa09e0a9d72 > -SIZE (xpi/firefox-i18n-40.0.3/xh.xpi) = 461039 -SHA256 > (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = > 86346005557d217110e624e1d98037a5cf634228b4bd42b38fb2b9ba38411999 > -SIZE (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = 504409 -SHA256 > (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = > 36be93979c452610d01adafe926b05dd11d7e92211cea9f10bc697b70acb0a52 > -SIZE (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = 491275 +SHA256 > (xpi/firefox-i18n-41.0/ach.xpi) = > 86755444fc1b53893f4fe3c181adbccc4bd4d6e24035aeb1ce4d0e90586bbc4c > +SIZE (xpi/firefox-i18n-41.0/ach.xpi) = 483439 +SHA256 > (xpi/firefox-i18n-41.0/af.xpi) = > 9a81d311727c1b393eb5a1d420c77a26cc01327b3c326a935b8b31b426977ab0 > +SIZE (xpi/firefox-i18n-41.0/af.xpi) = 486121 +SHA256 > (xpi/firefox-i18n-41.0/an.xpi) = > 2e9df1c9f67ef5cafd5fd9e4d4d2ddaa642aa29b81a96e02fb47a658e53a1146 > +SIZE (xpi/firefox-i18n-41.0/an.xpi) = 464516 +SHA256 > (xpi/firefox-i18n-41.0/ar.xpi) = > bb9ee3d703c10f9bc3e12e9f62ea95511955239a20fae81918f0c0529685baf8 > +SIZE (xpi/firefox-i18n-41.0/ar.xpi) = 521159 +SHA256 > (xpi/firefox-i18n-41.0/as.xpi) = > 2bb52d1a41ca3955a460f0f2d48efe3e2c99ab579d72f1c183faed70403bb869 > +SIZE (xpi/firefox-i18n-41.0/as.xpi) = 511219 +SHA256 > (xpi/firefox-i18n-41.0/ast.xpi) = > 2be891b76d75d39310f35c290a7d93aab8b6d4cde87e65f0820760fd230c7985 > +SIZE (xpi/firefox-i18n-41.0/ast.xpi) = 399122 +SHA256 > (xpi/firefox-i18n-41.0/az.xpi) = > a213f91389bd869fc3b6eb154965da9ebf00f422cc3173696a97c060b6382530 > +SIZE (xpi/firefox-i18n-41.0/az.xpi) = 492916 +SHA256 > (xpi/firefox-i18n-41.0/be.xpi) = > 3611cb1cecd6fd6ddfcc57ef936a351704299a54362d000c16779aab7f7399ec > +SIZE (xpi/firefox-i18n-41.0/be.xpi) = 453403 +SHA256 > (xpi/firefox-i18n-41.0/bg.xpi) = > 45842f478fbac439a828950fd8a708352e6f249c967d71def55eeae0ec49c78f > +SIZE (xpi/firefox-i18n-41.0/bg.xpi) = 492965 +SHA256 > (xpi/firefox-i18n-41.0/bn-BD.xpi) = > de27686738705b1291118126d87f9f6f60075a35abc3651ebbe8c62d3624f8ba > +SIZE (xpi/firefox-i18n-41.0/bn-BD.xpi) = 527570 +SHA256 > (xpi/firefox-i18n-41.0/bn-IN.xpi) = > bc94787dc80a9afd100c0b784374aae1bdb03e03e496ce6f6cd5b7e3d254056b > +SIZE (xpi/firefox-i18n-41.0/bn-IN.xpi) = 530267 +SHA256 > (xpi/firefox-i18n-41.0/br.xpi) = > 98db3d58490a3bd71ef114a8d066fa8515450b6d85c8474316f46cf7e4c0a3be > +SIZE (xpi/firefox-i18n-41.0/br.xpi) = 444530 +SHA256 > (xpi/firefox-i18n-41.0/bs.xpi) = > 20bb1ecb9f4aa63163c6121e74a25b5d6b55c33b2dbe13531962df1dc52dad10 > +SIZE (xpi/firefox-i18n-41.0/bs.xpi) = 486281 +SHA256 > (xpi/firefox-i18n-41.0/ca.xpi) = > 4921859dd265dad50f39187b7036e9154a73d4d32d5153f2c55cf529fee38e57 > +SIZE (xpi/firefox-i18n-41.0/ca.xpi) = 461321 +SHA256 > (xpi/firefox-i18n-41.0/cs.xpi) = > 5fc00e06ade7de4ab82d93fb87f698c990f3764fbe56ea2780ce06af0b752413 > +SIZE (xpi/firefox-i18n-41.0/cs.xpi) = 450333 +SHA256 > (xpi/firefox-i18n-41.0/cy.xpi) = > 25c0e0d472878821b3c45867f910ba90414ee419894f7f01dd9484ff9ff7e973 > +SIZE (xpi/firefox-i18n-41.0/cy.xpi) = 448183 +SHA256 > (xpi/firefox-i18n-41.0/da.xpi) = > 96d7193c09620bfe570ae37deaaf356d182399057ecd70341c2777188496e64e > +SIZE (xpi/firefox-i18n-41.0/da.xpi) = 453403 +SHA256 > (xpi/firefox-i18n-41.0/de.xpi) = > 5a28c5751581e669d0979c62217cbf7b9ac61995dcc35a53ab675e241e374c7f > +SIZE (xpi/firefox-i18n-41.0/de.xpi) = 455710 +SHA256 > (xpi/firefox-i18n-41.0/dsb.xpi) = > ec63d4b44d4a7d3bf5f0e8523fd9a3b00939ad873a8737f89f27792bfec3259f > +SIZE (xpi/firefox-i18n-41.0/dsb.xpi) = 474536 +SHA256 > (xpi/firefox-i18n-41.0/el.xpi) = > f1437c41e2450d5101c3fe2b5e128157d33f5b93336483db36314f3a5e3c9f96 > +SIZE (xpi/firefox-i18n-41.0/el.xpi) = 501619 +SHA256 > (xpi/firefox-i18n-41.0/en-GB.xpi) = > a419880aa591291868e86d15dd0af1fe20f55cf18e62cfe272e71bf09b2e6b7b > +SIZE (xpi/firefox-i18n-41.0/en-GB.xpi) = 441098 +SHA256 > (xpi/firefox-i18n-41.0/en-US.xpi) = > 1650d4abba5fc7c9a37e79034fad2206bf6f365d6ee40c99da4626f70412cdef > +SIZE (xpi/firefox-i18n-41.0/en-US.xpi) = 471246 +SHA256 > (xpi/firefox-i18n-41.0/en-ZA.xpi) = > 5dc4e9357ad6f826572f96305ca8d1c5fa74a4c9c82fcbb78b3a7f34d9ecb242 > +SIZE (xpi/firefox-i18n-41.0/en-ZA.xpi) = 444145 +SHA256 > (xpi/firefox-i18n-41.0/eo.xpi) = > 15ec1dcf88b51b671e2369346e87a0503b2b1ff8c32b9e91389816a4eadbc8e9 > +SIZE (xpi/firefox-i18n-41.0/eo.xpi) = 487994 +SHA256 > (xpi/firefox-i18n-41.0/es-AR.xpi) = > 535f578884c390698c97db2717dd91f3d948fb135b8ba4f1b5ec09d796092ce5 > +SIZE (xpi/firefox-i18n-41.0/es-AR.xpi) = 456517 +SHA256 > (xpi/firefox-i18n-41.0/es-CL.xpi) = > b65d4c72e66642d5188bf12686f2541d2b5178be83ee2fb727d82877aa1aaa3a > +SIZE (xpi/firefox-i18n-41.0/es-CL.xpi) = 381632 +SHA256 > (xpi/firefox-i18n-41.0/es-ES.xpi) = > ca7968f53f99bcf8e5369926b0e8b23ca7272e54bd15447fa42d8588fdbcdbd6 > +SIZE (xpi/firefox-i18n-41.0/es-ES.xpi) = 370111 +SHA256 > (xpi/firefox-i18n-41.0/es-MX.xpi) = > a6384d393b6c82d29834089db412c98de0ce58ef7293c59166b6675f236ba0ef > +SIZE (xpi/firefox-i18n-41.0/es-MX.xpi) = 460283 +SHA256 > (xpi/firefox-i18n-41.0/et.xpi) = > 71db72097253d9eb7964e220ac7d559d34dbf0e1214715814349ab5fbcbd2046 > +SIZE (xpi/firefox-i18n-41.0/et.xpi) = 445439 +SHA256 > (xpi/firefox-i18n-41.0/eu.xpi) = > 47cc5e46baad2e03a17cdfeb054d0d3f102094b4e9dcb1c8a49d104324f6115d > +SIZE (xpi/firefox-i18n-41.0/eu.xpi) = 469716 +SHA256 > (xpi/firefox-i18n-41.0/fa.xpi) = > d3c1491021de3477709b2f77a2ed95e4a4b37fdadf37dce2892edf689cbc015b > +SIZE (xpi/firefox-i18n-41.0/fa.xpi) = 516157 +SHA256 > (xpi/firefox-i18n-41.0/ff.xpi) = > 59efd5d132c0026a6c31be1674fc398450b8bb2ec75c0786bf3c817627a5532e > +SIZE (xpi/firefox-i18n-41.0/ff.xpi) = 454687 +SHA256 > (xpi/firefox-i18n-41.0/fi.xpi) = > 0c919f496c2a0e1503a8f37ded5938100680e810f6025cea0e84ae27f70b06ee > +SIZE (xpi/firefox-i18n-41.0/fi.xpi) = 447174 +SHA256 > (xpi/firefox-i18n-41.0/fr.xpi) = > df5faa391722a201d6f6ecf08de01d393ce96dd122f378434f11440f825e5b10 > +SIZE (xpi/firefox-i18n-41.0/fr.xpi) = 465091 +SHA256 > (xpi/firefox-i18n-41.0/fy-NL.xpi) = > 8aea345024bd99ceb013899e839170b61e6ae6e1bbb5b9c65cbf92f2f610f35a > +SIZE (xpi/firefox-i18n-41.0/fy-NL.xpi) = 458775 +SHA256 > (xpi/firefox-i18n-41.0/ga-IE.xpi) = > ccb6e56af07c093f77db2224abefa80a77690f955d6d54f77a6d857fb672429d > +SIZE (xpi/firefox-i18n-41.0/ga-IE.xpi) = 473255 +SHA256 > (xpi/firefox-i18n-41.0/gd.xpi) = > 12ec59d2dd84dbd1e9efbb6accbda523d93845b1198ed54ed4a1712bd50268ff > +SIZE (xpi/firefox-i18n-41.0/gd.xpi) = 457498 +SHA256 > (xpi/firefox-i18n-41.0/gl.xpi) = > db9f28f2202dc2cbe96729d1afe9cf41ab94ada69e5f1305c4c15d2d0cc6416d > +SIZE (xpi/firefox-i18n-41.0/gl.xpi) = 452610 +SHA256 > (xpi/firefox-i18n-41.0/gu-IN.xpi) = > 53463a96319f19c4966cbef96f2a6fdbabe6e7e8f77473e74541e26724516a92 > +SIZE (xpi/firefox-i18n-41.0/gu-IN.xpi) = 487514 +SHA256 > (xpi/firefox-i18n-41.0/he.xpi) = > 21d0550c2c7a3f017f4e1f83859387929c41f7f1df06db3b073852ac436fc435 > +SIZE (xpi/firefox-i18n-41.0/he.xpi) = 486489 +SHA256 > (xpi/firefox-i18n-41.0/hi-IN.xpi) = > b15756e16e5998219c2505e06d5a05aa291cfbb73bf31556d55ce57284c535f6 > +SIZE (xpi/firefox-i18n-41.0/hi-IN.xpi) = 509161 +SHA256 > (xpi/firefox-i18n-41.0/hr.xpi) = > b7fda3f4bc5a7d6476f8ea5cd4e7f9d9445133dfc21f9257a802e75792543e21 > +SIZE (xpi/firefox-i18n-41.0/hr.xpi) = 481334 +SHA256 > (xpi/firefox-i18n-41.0/hsb.xpi) = > 599261f6ddd9511872addf55a54ac27f8a2c629600e437a83986bec7325ffa49 > +SIZE (xpi/firefox-i18n-41.0/hsb.xpi) = 472165 +SHA256 > (xpi/firefox-i18n-41.0/hu.xpi) = > ac254be8aae3d7feeb7e871f76d315a0d498bfc18ea706c5d51fad200554d86c > +SIZE (xpi/firefox-i18n-41.0/hu.xpi) = 457034 +SHA256 > (xpi/firefox-i18n-41.0/hy-AM.xpi) = > 86019023a1bba2985fd44dc18fe6eca18faccee769d2702ed4f5be6ee68cd0d2 > +SIZE (xpi/firefox-i18n-41.0/hy-AM.xpi) = 538340 +SHA256 > (xpi/firefox-i18n-41.0/id.xpi) = > 64ba7710b02a8454892dbb2de437e11a1e0ce660a6c072c54f3f2788aaf9ab0d > +SIZE (xpi/firefox-i18n-41.0/id.xpi) = 433970 +SHA256 > (xpi/firefox-i18n-41.0/is.xpi) = > ea2916c2eec477ea0baac33c5b506f2cbcee0e4023cf4d96d3a927470c40be5c > +SIZE (xpi/firefox-i18n-41.0/is.xpi) = 488111 +SHA256 > (xpi/firefox-i18n-41.0/it.xpi) = > 81c0df60bd9a20f1f3bf6861b085a5172b398fc0dcdfc603e34ce306f80f37e0 > +SIZE (xpi/firefox-i18n-41.0/it.xpi) = 363984 +SHA256 > (xpi/firefox-i18n-41.0/ja.xpi) = > 32386da85ad191fc2c445759649d929fd7eab3940daea328dd3e1a56533a7c37 > +SIZE (xpi/firefox-i18n-41.0/ja.xpi) = 483302 +SHA256 > (xpi/firefox-i18n-41.0/kk.xpi) = > 98e27a0caa00137e3a7908a18220af0b5447371875be40a20caf22678adba9d2 > +SIZE (xpi/firefox-i18n-41.0/kk.xpi) = 508364 +SHA256 > (xpi/firefox-i18n-41.0/km.xpi) = > 0391cceb932ff1d7099605e51b8abf9e5cbb311e4fc6d5a0b3f58388428332ca > +SIZE (xpi/firefox-i18n-41.0/km.xpi) = 571707 +SHA256 > (xpi/firefox-i18n-41.0/kn.xpi) = > 87c7e4b1b00499929fa89cff96ee7b2040bc3b2fa39da43d913b460730e9837a > +SIZE (xpi/firefox-i18n-41.0/kn.xpi) = 539237 +SHA256 > (xpi/firefox-i18n-41.0/ko.xpi) = > bfd714e03b16a6e4e440bd1907186a9856780be70cd0af9daca3374a7a2006ce > +SIZE (xpi/firefox-i18n-41.0/ko.xpi) = 464904 +SHA256 > (xpi/firefox-i18n-41.0/lij.xpi) = > ae514d960dca72cf7c057af190624947c56307db25d00b580ee8cbfc94be535c > +SIZE (xpi/firefox-i18n-41.0/lij.xpi) = 451188 +SHA256 > (xpi/firefox-i18n-41.0/lt.xpi) = > 46d2bcc9842f74d1a78e41ce470d2197fc8e5243886c0b4b62535ed930c2a01f > +SIZE (xpi/firefox-i18n-41.0/lt.xpi) = 490118 +SHA256 > (xpi/firefox-i18n-41.0/lv.xpi) = > 9f01b6c0c4647981f595c2827453e1209587c34ca947a5879f6b8fe9707c707f > +SIZE (xpi/firefox-i18n-41.0/lv.xpi) = 470364 +SHA256 > (xpi/firefox-i18n-41.0/mai.xpi) = > f3ececf56f634f8dcf3950d4bf9a7a21508021a45b99dff045135c1c037266c7 > +SIZE (xpi/firefox-i18n-41.0/mai.xpi) = 517160 +SHA256 > (xpi/firefox-i18n-41.0/mk.xpi) = > 1b8e4d2d5cfd8c8768b42b6d394b9132dc806672cab3d3f0acdd475e73d6abd3 > +SIZE (xpi/firefox-i18n-41.0/mk.xpi) = 530865 +SHA256 > (xpi/firefox-i18n-41.0/ml.xpi) = > 602b9759448353e33b8800fb392bc2e3785058d1ec2331528abc91a1021bbabc > +SIZE (xpi/firefox-i18n-41.0/ml.xpi) = 529030 +SHA256 > (xpi/firefox-i18n-41.0/mr.xpi) = > dbea36f8a4869cf15db2ae9a324d43297295d63c1a3dd8e45dfc4997e5d6676d > +SIZE (xpi/firefox-i18n-41.0/mr.xpi) = 511323 +SHA256 > (xpi/firefox-i18n-41.0/ms.xpi) = > 59f5f143b9ed9cc12a2cf9cdc2e5d1af25bde7c78aec55a5232e680b737fdf9d > +SIZE (xpi/firefox-i18n-41.0/ms.xpi) = 493483 +SHA256 > (xpi/firefox-i18n-41.0/nb-NO.xpi) = > b70ff1288f2ebd217c67f0b4fa1c48dcd6800d98ebca03d880d01592eb1f9fe8 > +SIZE (xpi/firefox-i18n-41.0/nb-NO.xpi) = 446371 +SHA256 > (xpi/firefox-i18n-41.0/nl.xpi) = > 82998109c104b4277a54a9c6aad3caca8d40e89290ca33f18e876e85158ad428 > +SIZE (xpi/firefox-i18n-41.0/nl.xpi) = 446545 +SHA256 > (xpi/firefox-i18n-41.0/nn-NO.xpi) = > 6f39bbb77c7c07bcc5612b1715262f94d4d962b5148384ab2ec052e1a4b64eeb > +SIZE (xpi/firefox-i18n-41.0/nn-NO.xpi) = 442561 +SHA256 > (xpi/firefox-i18n-41.0/or.xpi) = > c4fd3a8b1fbc8b79612b3d24b556419acce11a7836e21e7196dbe4e9eb0b4799 > +SIZE (xpi/firefox-i18n-41.0/or.xpi) = 528104 +SHA256 > (xpi/firefox-i18n-41.0/pa-IN.xpi) = > 5ccc34672873d883693412696e0538dc16b96a712e0decad211fee4de5a2485f > +SIZE (xpi/firefox-i18n-41.0/pa-IN.xpi) = 498581 +SHA256 > (xpi/firefox-i18n-41.0/pl.xpi) = > 757411d39b98fbfb71a7e502e44c27f64f01f8a3936bbb84b08f2a33ccf0c2b8 > +SIZE (xpi/firefox-i18n-41.0/pl.xpi) = 400465 +SHA256 > (xpi/firefox-i18n-41.0/pt-BR.xpi) = > 65ae606a712e05cfffcd2f48a352c6b1b5abf17af7bac53c33a4877957566149 > +SIZE (xpi/firefox-i18n-41.0/pt-BR.xpi) = 463057 +SHA256 > (xpi/firefox-i18n-41.0/pt-PT.xpi) = > 550605379e3224bc792a9d0c892dfa78253f075fb127779500d36ca17c6f393e > +SIZE (xpi/firefox-i18n-41.0/pt-PT.xpi) = 443381 +SHA256 > (xpi/firefox-i18n-41.0/rm.xpi) = > 55d2765289fb4c58c9563136f2fcf56f15e955c42a3bf13252aefb3f6545cb28 > +SIZE (xpi/firefox-i18n-41.0/rm.xpi) = 450638 +SHA256 > (xpi/firefox-i18n-41.0/ro.xpi) = > 4bad82622089310900ce2bb8c51aa9706ead23e5db1f143f2f672ad203777d9f > +SIZE (xpi/firefox-i18n-41.0/ro.xpi) = 497506 +SHA256 > (xpi/firefox-i18n-41.0/ru.xpi) = > ecc0253088e310b0c696a6d371f4ba8418c35b9a37af89e6ba6594b458ec289b > +SIZE (xpi/firefox-i18n-41.0/ru.xpi) = 412445 +SHA256 > (xpi/firefox-i18n-41.0/si.xpi) = > 635a596421c06dd5d5b00906fefc46462ffc8124b5dda2bd409bdcf188921e70 > +SIZE (xpi/firefox-i18n-41.0/si.xpi) = 537933 +SHA256 > (xpi/firefox-i18n-41.0/sk.xpi) = > c3936ccbc02c6ce91d2f8ad339489ddca1840e7f3d8b17bd22a7dc41a4e11992 > +SIZE (xpi/firefox-i18n-41.0/sk.xpi) = 472933 +SHA256 > (xpi/firefox-i18n-41.0/son.xpi) = > 24ad972e0cf7101962340eca64fdc56851699f207c629d5ed33dfe425b6d14a7 > +SIZE (xpi/firefox-i18n-41.0/son.xpi) = 453251 +SHA256 > (xpi/firefox-i18n-41.0/sl.xpi) = > 38cba1c04cf4f67d1dd5ff906cea46d85f7de0267f16abe6c3d4c907beccd2f9 > +SIZE (xpi/firefox-i18n-41.0/sl.xpi) = 445744 +SHA256 > (xpi/firefox-i18n-41.0/sq.xpi) = > ca0bd383ad3c871e52e0006ec7489ef590edf72f4894ebea75edb6b52b567953 > +SIZE (xpi/firefox-i18n-41.0/sq.xpi) = 491167 +SHA256 > (xpi/firefox-i18n-41.0/sr.xpi) = > 59be1f67f0de0daa1800f806ec5760e6df852b46a65c4d99ead16dab6d35bab7 > +SIZE (xpi/firefox-i18n-41.0/sr.xpi) = 482969 +SHA256 > (xpi/firefox-i18n-41.0/sv-SE.xpi) = > 949e99a51e305e35e310b3bb6ce77f57ea9e67adc9609704b240dadeaffc4351 > +SIZE (xpi/firefox-i18n-41.0/sv-SE.xpi) = 455381 +SHA256 > (xpi/firefox-i18n-41.0/ta.xpi) = > 38b8529a311078571bb3d876576c788b9b299f5d167e2a6820919238c23de979 > +SIZE (xpi/firefox-i18n-41.0/ta.xpi) = 509543 +SHA256 > (xpi/firefox-i18n-41.0/te.xpi) = > 658c162206d3545f59f2b1847e4635a80211cb76bdb9d040e53bcaf52a6fed48 > +SIZE (xpi/firefox-i18n-41.0/te.xpi) = 530202 +SHA256 > (xpi/firefox-i18n-41.0/th.xpi) = > 3d6344bf7c129acd3f5527ffdad07c9388e5351966c7eeec919b23e9653bbb64 > +SIZE (xpi/firefox-i18n-41.0/th.xpi) = 539599 +SHA256 > (xpi/firefox-i18n-41.0/tr.xpi) = > 65e7b4601f9dc50dea179b0eaf3e6a41a4634d43c667e2d84eb0b85dd11e5302 > +SIZE (xpi/firefox-i18n-41.0/tr.xpi) = 484231 +SHA256 > (xpi/firefox-i18n-41.0/uk.xpi) = > b53435b077205b2c7455b139f4555251da3df4dbe072e9ce779b72a8d8c19d47 > +SIZE (xpi/firefox-i18n-41.0/uk.xpi) = 500109 +SHA256 > (xpi/firefox-i18n-41.0/vi.xpi) = > ea794e879c90d30185f61f744490fd29b706334b4d9068b7e65002ca5a51909c > +SIZE (xpi/firefox-i18n-41.0/vi.xpi) = 470334 +SHA256 > (xpi/firefox-i18n-41.0/xh.xpi) = > 8bc89179c1e2e298104dd50f383c93e30ae330978abdeaa1869fd2160aea58dd > +SIZE (xpi/firefox-i18n-41.0/xh.xpi) = 450078 +SHA256 > (xpi/firefox-i18n-41.0/zh-CN.xpi) = > 47fe8497bf214ab2275e5be325edba33c96c28a015f8d450f1be9b57710c8ab8 > +SIZE (xpi/firefox-i18n-41.0/zh-CN.xpi) = 486220 +SHA256 > (xpi/firefox-i18n-41.0/zh-TW.xpi) = > c0163e959663dfcdb977f5fc87af13d4129b61a4b8d73889cd830f8f9d16ca29 > +SIZE (xpi/firefox-i18n-41.0/zh-TW.xpi) = 479031 > > Modified: head/www/firefox/Makefile > ============================================================================== > --- head/www/firefox/Makefile Tue Oct 6 19:18:23 2015 > (r398715) +++ head/www/firefox/Makefile Tue Oct 6 20:01:59 > 2015 (r398716) @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= firefox > -DISTVERSION= 40.0.3 > +DISTVERSION= 41.0 > DISTVERSIONSUFFIX=.source > PORTEPOCH= 1 > CATEGORIES= www ipv6 > @@ -39,7 +39,7 @@ MOZILLA_NAME= Firefox > USE_QT5= # empty > QT_NONSTANDARD= yes > USE_GL= gl > -USES= dos2unix tar:bzip2 > +USES= dos2unix tar:xz > DOS2UNIX_FILES= > media/webrtc/trunk/webrtc/system_wrappers/source/spreadsortlib/spreadsort.hpp > FIREFOX_ICON= ${MOZILLA}.png > > Modified: head/www/firefox/distinfo > ============================================================================== > --- head/www/firefox/distinfo Tue Oct 6 19:18:23 2015 > (r398715) +++ head/www/firefox/distinfo Tue Oct 6 20:01:59 > 2015 (r398716) @@ -1,2 +1,2 @@ > -SHA256 (firefox-40.0.3.source.tar.bz2) = > 56ab32bfa070a1d86d356ad14ce74252b38dab9307948de8e4a3a2b7f3f22634 > -SIZE (firefox-40.0.3.source.tar.bz2) = 178261482 +SHA256 > (firefox-41.0.source.tar.xz) = > 18abb95e93770ab1cc0794349125aacf073eb04fd8b8a93c7a58312c94bf16fd > +SIZE (firefox-41.0.source.tar.xz) = 159785356 > > Modified: head/www/firefox/files/patch-bug702179 > ============================================================================== > --- head/www/firefox/files/patch-bug702179 Tue Oct 6 19:18:23 > 2015 (r398715) +++ > head/www/firefox/files/patch-bug702179 Tue Oct 6 20:01:59 > 2015 (r398716) @@ -1,24 +1,10 @@ -commit 6ddaacd > -Author: Ginn Chen > -Date: Wed Nov 30 07:23:46 2011 +0800 > - > - Bug 702179 dtrace probes are not installed on Solaris with > static js lib r=glandium ---- > - js/src/Makefile.in | 3 --- > - toolkit/library/moz.build | 5 ----- > - 2 files changed, 8 deletions(-) > - > -diff --git js/src/Makefile.in js/src/Makefile.in > -index 62bbfa0..90400cb 100644 > ---- js/src/Makefile.in > -+++ js/src/Makefile.in > -@@ -17,9 +17,6 @@ TOPLEVEL_BUILD := 1 > - run_for_side_effects := $(shell echo 'MAKE: $(MAKE)') > - EXTRA_LIBS += $(NSPR_LIBS) > +--- js/src/moz.build.orig 2015-10-03 18:05:51.136389000 +0200 > ++++ js/src/moz.build 2015-10-03 18:06:12.457351000 +0200 > +@@ -603,6 +603,6 @@ > + if CONFIG['GNU_CXX']: > + FAIL_ON_WARNINGS = True > > --DIST_INSTALL = 1 > --NO_EXPAND_LIBS = 1 > -- > - ifdef JS_HAS_CTYPES > - ifdef MOZ_NATIVE_FFI > - LOCAL_INCLUDES = $(MOZ_FFI_CFLAGS) > +-NO_EXPAND_LIBS = True > ++NO_EXPAND_LIBS = False > + > + DIST_INSTALL = True > > Modified: head/www/firefox/files/patch-bug847568 > ============================================================================== > --- head/www/firefox/files/patch-bug847568 Tue Oct 6 19:18:23 > 2015 (r398715) +++ > head/www/firefox/files/patch-bug847568 Tue Oct 6 20:01:59 > 2015 (r398716) @@ -17,7 +17,7 @@ diff --git > config/system-headers config/ index 18e8703..bdc5f82 100644 --- > config/system-headers +++ config/system-headers > -@@ -1357,3 +1357,11 @@ unicode/utypes.h > +@@ -1350,3 +1350,11 @@ unicode/utypes.h > #endif > libutil.h > unwind.h > > Modified: head/www/firefox/files/patch-memory-jemalloc-Makefile.in > ============================================================================== > --- head/www/firefox/files/patch-memory-jemalloc-Makefile.in > Tue Oct 6 19:18:23 2015 (r398715) +++ > head/www/firefox/files/patch-memory-jemalloc-Makefile.in Tue > Oct 6 20:01:59 2015 (r398716) @@ -1,6 +1,6 @@ --- > memory/jemalloc/Makefile.in~ +++ memory/jemalloc/Makefile.in > -@@ -12,3 +12,7 @@ include $(topsrcdir)/config/rules.mk > +@@ -7,3 +7,7 @@ include $(topsrcdir)/config/rules.mk > ifdef GNU_CC > CFLAGS += -std=gnu99 > endif > > Modified: > head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk > ============================================================================== > --- > head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk > Tue Oct 6 19:18:23 2015 (r398715) +++ > head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk > Tue Oct 6 20:01:59 2015 (r398716) @@ -2,7 +2,7 @@ $OpenBSD: > patch-toolkit_mozapps_installe install headers/idl/sdk libs only if > xulrunner --- toolkit/mozapps/installer/packager.mk.orig Fri > Jun 1 14:04:20 2012 +++ toolkit/mozapps/installer/packager.mk > Tue Jun 5 07:55:51 2012 -@@ -886,7 +886,7 @@ endif +@@ -127,7 +127,7 > @@ endif $(NSINSTALL) -D $(DESTDIR)$(bindir) $(RM) -f > $(DESTDIR)$(bindir)/$(MOZ_APP_NAME) ln -s > $(installdir)/$(MOZ_APP_NAME) $(DESTDIR)$(bindir) > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all To > unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" Building error: http://pastebin.com/yEkVELLC From owner-svn-ports-head@freebsd.org Tue Oct 6 21:14:17 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 492169B6305; Tue, 6 Oct 2015 21:14:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 172CF6D1; Tue, 6 Oct 2015 21:14:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96LEG1p037654; Tue, 6 Oct 2015 21:14:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96LEG3X037652; Tue, 6 Oct 2015 21:14:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510062114.t96LEG3X037652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 21:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398722 - head/multimedia/x265 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: Tue, 06 Oct 2015 21:14:17 -0000 Author: amdmi3 Date: Tue Oct 6 21:14:15 2015 New Revision: 398722 URL: https://svnweb.freebsd.org/changeset/ports/398722 Log: - Clarify LICENSE - Add LICENSE_FILE - Pet portlint - Fix WWW: Modified: head/multimedia/x265/Makefile head/multimedia/x265/pkg-descr Modified: head/multimedia/x265/Makefile ============================================================================== --- head/multimedia/x265/Makefile Tue Oct 6 21:14:15 2015 (r398721) +++ head/multimedia/x265/Makefile Tue Oct 6 21:14:15 2015 (r398722) @@ -11,11 +11,12 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= H.265/High Efficiency Video Coding (HEVC) format -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/../COPYING BUILD_DEPENDS= yasm:${PORTSDIR}/devel/yasm -USES= tar:bz2 cmake +USES= cmake tar:bz2 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/multicoreware-${PORTNAME}-8425278def1e/source Modified: head/multimedia/x265/pkg-descr ============================================================================== --- head/multimedia/x265/pkg-descr Tue Oct 6 21:14:15 2015 (r398721) +++ head/multimedia/x265/pkg-descr Tue Oct 6 21:14:15 2015 (r398722) @@ -13,4 +13,4 @@ standard. * HEVC can support 8K Ultra High Definition video, with a picture size up to 8192x4320 pixels -WWW: http://www.x265.org +WWW: http://www.x265.org/ From owner-svn-ports-head@freebsd.org Tue Oct 6 21:14:17 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 1A7899B62FB; Tue, 6 Oct 2015 21:14:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D17AB6D0; Tue, 6 Oct 2015 21:14:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96LEFc3037625; Tue, 6 Oct 2015 21:14:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96LEFOa037620; Tue, 6 Oct 2015 21:14:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510062114.t96LEFOa037620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 21:14:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398721 - head/archivers/liblz4 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: Tue, 06 Oct 2015 21:14:17 -0000 Author: amdmi3 Date: Tue Oct 6 21:14:15 2015 New Revision: 398721 URL: https://svnweb.freebsd.org/changeset/ports/398721 Log: - Silence patching - Fix WWW: Modified: head/archivers/liblz4/Makefile head/archivers/liblz4/pkg-descr Modified: head/archivers/liblz4/Makefile ============================================================================== --- head/archivers/liblz4/Makefile Tue Oct 6 21:04:06 2015 (r398720) +++ head/archivers/liblz4/Makefile Tue Oct 6 21:14:15 2015 (r398721) @@ -25,15 +25,15 @@ SO_VER= 1.7.1 PLIST_SUB+= SO_VER=${SO_VER} SO_VER_MAJ=${SO_VER:R:R} post-patch: - ${FIND} ${WRKSRC} -name Makefile | ${XARGS} ${REINPLACE_CMD} \ + @${FIND} ${WRKSRC} -name Makefile | ${XARGS} ${REINPLACE_CMD} \ -e 's/LIBDIR?=/LOCALLIBDIR=/; s/$$(LIBDIR)/$$(LOCALLIBDIR)/g' \ -e 's|$$(LOCALLIBDIR)/pkgconfig|$$(PREFIX)/libdata/pkgconfig|' \ -e '/^MANDIR :=/s|share/||' \ -e 's/kFreeBSD/& FreeBSD/' \ -e 's|$$(MAKE)|${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS}|' - ${REINPLACE_CMD} -e '/^all:/s/$$/ liblz4.pc/' \ + @${REINPLACE_CMD} -e '/^all:/s/$$/ liblz4.pc/' \ ${WRKSRC}/lib/Makefile - ${REINPLACE_CMD} -e '/^all:/s|fullbench.*||' \ + @${REINPLACE_CMD} -e '/^all:/s|fullbench.*||' \ ${WRKSRC}/programs/Makefile post-install: Modified: head/archivers/liblz4/pkg-descr ============================================================================== --- head/archivers/liblz4/pkg-descr Tue Oct 6 21:04:06 2015 (r398720) +++ head/archivers/liblz4/pkg-descr Tue Oct 6 21:14:15 2015 (r398721) @@ -8,4 +8,4 @@ time for compression ratio. The libraries are BSD licensed, and the binaries are GPLv2. -WWW: http://www.lz4.info +WWW: http://www.lz4.info/ From owner-svn-ports-head@freebsd.org Tue Oct 6 21:14:31 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 6A40D9B636D; Tue, 6 Oct 2015 21:14:31 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mx2.freebsd.org (mx2.freebsd.org [8.8.178.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx2.freebsd.org", Issuer "Gandi Standard SSL CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5A38991B; Tue, 6 Oct 2015 21:14:31 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from hammer.pct.niksun.com (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx2.freebsd.org (Postfix) with ESMTP id B051719E7; Tue, 6 Oct 2015 21:14:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Subject: Re: svn commit: r398716 - in head: Mk/Uses www/firefox www/firefox-i18n www/firefox/files To: Ivan Klymenko , Steve Wills References: <201510062002.t96K20FG016283@repo.freebsd.org> <20151007000641.5ec031b0@nonamehost.local> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Jung-uk Kim Message-ID: <561439B6.2060106@FreeBSD.org> Date: Tue, 6 Oct 2015 17:14:30 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151007000641.5ec031b0@nonamehost.local> Content-Type: text/plain; charset=windows-1252 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: Tue, 06 Oct 2015 21:14:31 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 10/06/2015 17:06, Ivan Klymenko wrote: > Building error: http://pastebin.com/yEkVELLC databases/sqlite3 must be rebuilt with DBSTAT option. https://svnweb.freebsd.org/changeset/ports/398061 Jung-uk Kim -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWFDmsAAoJEHyflib82/FGOp4H/iW9bX+I3hPvtRzk84/o5uOy xsN3UDKt0Q9ZByCDAr+4KJyvK8JsRI/1UrVtxdx/ZRb5zC1PrsUqwFMIzmBs/vDN ZCHHZx+VUoDvz/2g0Ad1c4Um0dQnl3zRliQwmP2HBpZcc1NUg+w5sym2n9fJoiqW B/75fxz9ev49Yd3v8LU6+bKVm5KZ2F5bnITEgeiS2xC9D7mwqKLQ0O43mz5N7dn/ uT8nKJGcXuVUy0FuF2Dn1DK8cyzkub+tr2AKCFIPGbtvw3oHLk9lVKHx1PHYMzww fHVTO2LtNNVogtx0lGeh/2r1O0kIk5qqRMCQWJHc3C/rCmlWLdnxSUmN126trEM= =KuUx -----END PGP SIGNATURE----- From owner-svn-ports-head@freebsd.org Tue Oct 6 21:19:40 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 6976D9B675E; Tue, 6 Oct 2015 21:19:40 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F6E9C23; Tue, 6 Oct 2015 21:19:40 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96LJd8Z038007; Tue, 6 Oct 2015 21:19:39 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96LJcor038002; Tue, 6 Oct 2015 21:19:38 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510062119.t96LJcor038002@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Tue, 6 Oct 2015 21:19:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398723 - in head: devel devel/rubygem-ruby-progressbar misc/ruby-progressbar 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: Tue, 06 Oct 2015 21:19:40 -0000 Author: mmoll Date: Tue Oct 6 21:19:38 2015 New Revision: 398723 URL: https://svnweb.freebsd.org/changeset/ports/398723 Log: new port: devel/rubygem-ruby-progressbar Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby. The output can be customized with a flexible formatting system including percentage, bars of various formats, elapsed time and estimated time remaining. WWW: https://github.com/jfelchner/ruby-progressbar As this gem is based on the code that's available as misc/ruby-progressbar, conflict with it, to avoid problems. Added: head/devel/rubygem-ruby-progressbar/ head/devel/rubygem-ruby-progressbar/Makefile (contents, props changed) head/devel/rubygem-ruby-progressbar/distinfo (contents, props changed) head/devel/rubygem-ruby-progressbar/pkg-descr (contents, props changed) Modified: head/devel/Makefile head/misc/ruby-progressbar/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 6 21:14:15 2015 (r398722) +++ head/devel/Makefile Tue Oct 6 21:19:38 2015 (r398723) @@ -4907,6 +4907,7 @@ SUBDIR += rubygem-ruby-filemagic SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof + SUBDIR += rubygem-ruby-progressbar SUBDIR += rubygem-ruby-sdl-ffi SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-ruby_parser Added: head/devel/rubygem-ruby-progressbar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ruby-progressbar/Makefile Tue Oct 6 21:19:38 2015 (r398723) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= ruby-progressbar +PORTVERSION= 1.7.5 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Progressbar library for Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +CONFLICTS_INSTALL= ${RUBY_PKGNAMEPREFIX}progressbar-* + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-ruby-progressbar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ruby-progressbar/distinfo Tue Oct 6 21:19:38 2015 (r398723) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-progressbar-1.7.5.gem) = 71c754e2e3f26b87f307e360dee8f2267800b88327a7def0098d7e6cb752d643 +SIZE (rubygem/ruby-progressbar-1.7.5.gem) = 21504 Added: head/devel/rubygem-ruby-progressbar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ruby-progressbar/pkg-descr Tue Oct 6 21:19:38 2015 (r398723) @@ -0,0 +1,5 @@ +Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby. +The output can be customized with a flexible formatting system including +percentage, bars of various formats, elapsed time and estimated time remaining. + +WWW: https://github.com/jfelchner/ruby-progressbar Modified: head/misc/ruby-progressbar/Makefile ============================================================================== --- head/misc/ruby-progressbar/Makefile Tue Oct 6 21:14:15 2015 (r398722) +++ head/misc/ruby-progressbar/Makefile Tue Oct 6 21:19:38 2015 (r398723) @@ -3,6 +3,7 @@ PORTNAME= progressbar PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= misc ruby MASTER_SITES= http://0xcc.net/ruby-progressbar/ \ LOCAL/tota/progressbar @@ -12,6 +13,7 @@ DISTNAME= ruby-${PORTNAME}-${PORTVERSION MAINTAINER= tota@FreeBSD.org COMMENT= Text progress bar library for Ruby +CONFLICTS_INSTALL= rubygem-ruby-progressbar-* USE_RUBY= yes NO_BUILD= yes From owner-svn-ports-head@freebsd.org Tue Oct 6 21:21:26 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 3D7079B6A5E; Tue, 6 Oct 2015 21:21:26 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C910ECE; Tue, 6 Oct 2015 21:21:25 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96LLObG040745; Tue, 6 Oct 2015 21:21:24 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96LLO4f040740; Tue, 6 Oct 2015 21:21:24 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510062121.t96LLO4f040740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Tue, 6 Oct 2015 21:21:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398724 - in head/devel: . rubygem-rubocop 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: Tue, 06 Oct 2015 21:21:26 -0000 Author: mmoll Date: Tue Oct 6 21:21:23 2015 New Revision: 398724 URL: https://svnweb.freebsd.org/changeset/ports/398724 Log: new port: devel/rubygem-rubocop RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of the guidelines outlined in the community Ruby Style Guide, but most aspects of its behavior can be tweaked via various configuration options. WWW: http://batsov.com/rubocop/ Added: head/devel/rubygem-rubocop/ head/devel/rubygem-rubocop/Makefile (contents, props changed) head/devel/rubygem-rubocop/distinfo (contents, props changed) head/devel/rubygem-rubocop/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 6 21:19:38 2015 (r398723) +++ head/devel/Makefile Tue Oct 6 21:21:23 2015 (r398724) @@ -4902,6 +4902,7 @@ SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-support SUBDIR += rubygem-rubigen + SUBDIR += rubygem-rubocop SUBDIR += rubygem-ruby-atmos-pure SUBDIR += rubygem-ruby-bugzilla SUBDIR += rubygem-ruby-filemagic Added: head/devel/rubygem-rubocop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/Makefile Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= rubocop +PORTVERSION= 0.34.2 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Ruby code style checking tool + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-astrolabe>=1.3:${PORTSDIR}/devel/rubygem-astrolabe \ + rubygem-parser>=2.2.2.5:${PORTSDIR}/devel/rubygem-parser \ + rubygem-powerpack>=0.1:${PORTSDIR}/devel/rubygem-powerpack \ + rubygem-rainbow>=1.99.1:${PORTSDIR}/devel/rubygem-rainbow \ + rubygem-ruby-progressbar>=1.4:${PORTSDIR}/devel/rubygem-ruby-progressbar + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/rubocop + +.include Added: head/devel/rubygem-rubocop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/distinfo Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rubocop-0.34.2.gem) = d387d22b07c8ba54043d742ee7738dd31440808e371e86502e6d06fbf5d22b7a +SIZE (rubygem/rubocop-0.34.2.gem) = 297984 Added: head/devel/rubygem-rubocop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/pkg-descr Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,5 @@ +RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of +the guidelines outlined in the community Ruby Style Guide, but most aspects of +its behavior can be tweaked via various configuration options. + +WWW: http://batsov.com/rubocop/ From owner-svn-ports-head@freebsd.org Tue Oct 6 21:22:00 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 53A029B6B14; Tue, 6 Oct 2015 21:22:00 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from frv157.fwdcdn.com (frv157.fwdcdn.com [212.42.77.157]) (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 1292011F1; Tue, 6 Oct 2015 21:21:59 +0000 (UTC) (envelope-from fidaj@ukr.net) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ukr.net; s=fsm; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=K7gOhfpIqScLu+/vRSIpokPvyyDz8nfr8fZOFP63bas=; b=sy0w7S7o5xHjAdC3lEk7DPhlL3DkShLcgQDWuk4kLYp/uTwF7T5dh90qejilOymW1zZu21K4Sua165mFXRUyCfFQZu18FW9N4Ja3VWkO24hPC7Qra9+osqFrgHsULd/pvFVigNhEymmuhWWIxjnZrYk1I8W5TI8/Es4CUhK9Vps=; Received: from [178.137.225.202] (helo=nonamehost.local) by frv157.fwdcdn.com with esmtpsa ID 1ZjZgL-000Dmx-KO ; Wed, 07 Oct 2015 00:21:57 +0300 Date: Wed, 7 Oct 2015 00:21:56 +0300 From: Ivan Klymenko To: Jung-uk Kim Cc: Steve Wills , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r398716 - in head: Mk/Uses www/firefox www/firefox-i18n www/firefox/files Message-ID: <20151007002156.75768e54@nonamehost.local> In-Reply-To: <561439B6.2060106@FreeBSD.org> References: <201510062002.t96K20FG016283@repo.freebsd.org> <20151007000641.5ec031b0@nonamehost.local> <561439B6.2060106@FreeBSD.org> X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Authentication-Result: IP=178.137.225.202; mail.from=fidaj@ukr.net; dkim=pass; header.d=ukr.net 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: Tue, 06 Oct 2015 21:22:00 -0000 On Tue, 6 Oct 2015 17:14:30 -0400 Jung-uk Kim wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > On 10/06/2015 17:06, Ivan Klymenko wrote: > > Building error: http://pastebin.com/yEkVELLC > > databases/sqlite3 must be rebuilt with DBSTAT option. > > https://svnweb.freebsd.org/changeset/ports/398061 Thank you! It may be worth it to specify in the /usr/ports/UPDATING ? From owner-svn-ports-head@freebsd.org Tue Oct 6 22:16:02 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 08E289B62C5; Tue, 6 Oct 2015 22:16:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4F72BA9; Tue, 6 Oct 2015 22:16:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96MG01T056987; Tue, 6 Oct 2015 22:16:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96MG0rh056986; Tue, 6 Oct 2015 22:16:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510062216.t96MG0rh056986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Oct 2015 22:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398725 - 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: Tue, 06 Oct 2015 22:16:02 -0000 Author: jbeich Date: Tue Oct 6 22:16:00 2015 New Revision: 398725 URL: https://svnweb.freebsd.org/changeset/ports/398725 Log: Document recent pitfall when updating www/firefox r398061 only helps package users due to ports framework bugs: - {BUILD,RUN}_DEPENDS cannot specify options requirements - During updates default options' state aren't propagated once saved PR: 203384 Reported by: many Modified: head/UPDATING (contents, props changed) Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Oct 6 21:21:23 2015 (r398724) +++ head/UPDATING Tue Oct 6 22:16:00 2015 (r398725) @@ -5,6 +5,14 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20151006: + AFFECTS: users of www/firefox, www/seamonkey + AUTHOR: gecko@FreeBSD.org + + Firefox since 41.0 and SeaMonkey since 2.38 require databases/sqlite3 + port built with DBSTAT option enabled (default). Re-run "make config" + if the port(s) fail to build as described in ports/200853. + 20150921: AFFECTS: users of mail/rspamd AUTHOR: vsevolod@FreeBSD.org From owner-svn-ports-head@freebsd.org Tue Oct 6 22:40:53 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 7B44A9D0711; Tue, 6 Oct 2015 22:40:53 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31230C87; Tue, 6 Oct 2015 22:40:53 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96MeqBW064232; Tue, 6 Oct 2015 22:40:52 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96MeqXF064229; Tue, 6 Oct 2015 22:40:52 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201510062240.t96MeqXF064229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 6 Oct 2015 22:40:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398726 - head/www/p5-Reddit-Client 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: Tue, 06 Oct 2015 22:40:53 -0000 Author: ehaupt Date: Tue Oct 6 22:40:51 2015 New Revision: 398726 URL: https://svnweb.freebsd.org/changeset/ports/398726 Log: Update to 1.06 Modified: head/www/p5-Reddit-Client/Makefile head/www/p5-Reddit-Client/distinfo head/www/p5-Reddit-Client/pkg-plist Modified: head/www/p5-Reddit-Client/Makefile ============================================================================== --- head/www/p5-Reddit-Client/Makefile Tue Oct 6 22:16:00 2015 (r398725) +++ head/www/p5-Reddit-Client/Makefile Tue Oct 6 22:40:51 2015 (r398726) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Reddit-Client -PORTVERSION= 1.04 +PORTVERSION= 1.06 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Reddit-Client/distinfo ============================================================================== --- head/www/p5-Reddit-Client/distinfo Tue Oct 6 22:16:00 2015 (r398725) +++ head/www/p5-Reddit-Client/distinfo Tue Oct 6 22:40:51 2015 (r398726) @@ -1,2 +1,2 @@ -SHA256 (Reddit-Client-1.04.tar.gz) = 97f5dbf036142fa1f081b107d7d716bdc7b43167ada51235b80389a8dac1baf5 -SIZE (Reddit-Client-1.04.tar.gz) = 19105 +SHA256 (Reddit-Client-1.06.tar.gz) = 9a185c584bf3748a3881ee610df606a204858c63677c7fb5955d9761331b5c62 +SIZE (Reddit-Client-1.06.tar.gz) = 19150 Modified: head/www/p5-Reddit-Client/pkg-plist ============================================================================== --- head/www/p5-Reddit-Client/pkg-plist Tue Oct 6 22:16:00 2015 (r398725) +++ head/www/p5-Reddit-Client/pkg-plist Tue Oct 6 22:40:51 2015 (r398726) @@ -1,16 +1,18 @@ -%%SITE_PERL%%/Reddit/Client.pm -%%SITE_PERL%%/Reddit/Client/Account.pm -%%SITE_PERL%%/Reddit/Client/Comment.pm -%%SITE_PERL%%/Reddit/Client/Link.pm -%%SITE_PERL%%/Reddit/Client/Request.pm -%%SITE_PERL%%/Reddit/Client/SubReddit.pm -%%SITE_PERL%%/Reddit/Client/Thing.pm -%%SITE_PERL%%/Reddit/Client/VotableThing.pm %%PERL5_MAN3%%/Reddit::Client.3.gz %%PERL5_MAN3%%/Reddit::Client::Account.3.gz %%PERL5_MAN3%%/Reddit::Client::Comment.3.gz %%PERL5_MAN3%%/Reddit::Client::Link.3.gz +%%PERL5_MAN3%%/Reddit::Client::Message.3.gz %%PERL5_MAN3%%/Reddit::Client::Request.3.gz %%PERL5_MAN3%%/Reddit::Client::SubReddit.3.gz %%PERL5_MAN3%%/Reddit::Client::Thing.3.gz %%PERL5_MAN3%%/Reddit::Client::VotableThing.3.gz +%%SITE_PERL%%/Reddit/Client.pm +%%SITE_PERL%%/Reddit/Client/Account.pm +%%SITE_PERL%%/Reddit/Client/Comment.pm +%%SITE_PERL%%/Reddit/Client/Link.pm +%%SITE_PERL%%/Reddit/Client/Message.pm +%%SITE_PERL%%/Reddit/Client/Request.pm +%%SITE_PERL%%/Reddit/Client/SubReddit.pm +%%SITE_PERL%%/Reddit/Client/Thing.pm +%%SITE_PERL%%/Reddit/Client/VotableThing.pm From owner-svn-ports-head@freebsd.org Wed Oct 7 00:06:46 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 E32C49B6E95; Wed, 7 Oct 2015 00:06:46 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB09C387; Wed, 7 Oct 2015 00:06:46 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9706jYs090208; Wed, 7 Oct 2015 00:06:45 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9706jPL090206; Wed, 7 Oct 2015 00:06:45 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201510070006.t9706jPL090206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Wed, 7 Oct 2015 00:06:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398728 - head/x11-wm/enlightenment 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: Wed, 07 Oct 2015 00:06:47 -0000 Author: gblach Date: Wed Oct 7 00:06:45 2015 New Revision: 398728 URL: https://svnweb.freebsd.org/changeset/ports/398728 Log: Update to 0.19.12 Modified: head/x11-wm/enlightenment/Makefile head/x11-wm/enlightenment/distinfo Modified: head/x11-wm/enlightenment/Makefile ============================================================================== --- head/x11-wm/enlightenment/Makefile Tue Oct 6 23:33:01 2015 (r398727) +++ head/x11-wm/enlightenment/Makefile Wed Oct 7 00:06:45 2015 (r398728) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= enlightenment -PORTVERSION= 0.19.11 +PORTVERSION= 0.19.12 PORTEPOCH= 2 CATEGORIES= x11-wm enlightenment MASTER_SITES= http://download.enlightenment.org/rel/apps/${PORTNAME}/ Modified: head/x11-wm/enlightenment/distinfo ============================================================================== --- head/x11-wm/enlightenment/distinfo Tue Oct 6 23:33:01 2015 (r398727) +++ head/x11-wm/enlightenment/distinfo Wed Oct 7 00:06:45 2015 (r398728) @@ -1,2 +1,2 @@ -SHA256 (enlightenment/enlightenment-0.19.11.tar.xz) = c41ccb36cfb0c997dc98ccbf66d8769d4fa64f83a4d9745f185898280c30152d -SIZE (enlightenment/enlightenment-0.19.11.tar.xz) = 24597248 +SHA256 (enlightenment/enlightenment-0.19.12.tar.xz) = 55f23c337e3092e735ae37ada8f6701adab5ddd13f37ef38c63eec8a536f0b25 +SIZE (enlightenment/enlightenment-0.19.12.tar.xz) = 24569084 From owner-svn-ports-head@freebsd.org Wed Oct 7 00:26:15 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 8351E9D0D6C; Wed, 7 Oct 2015 00:26:15 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35B06168; Wed, 7 Oct 2015 00:26:15 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t970QEPt096165; Wed, 7 Oct 2015 00:26:14 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t970QE3l096161; Wed, 7 Oct 2015 00:26:14 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201510070026.t970QE3l096161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 7 Oct 2015 00:26:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398729 - head/devel/pmd 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: Wed, 07 Oct 2015 00:26:15 -0000 Author: danilo Date: Wed Oct 7 00:26:13 2015 New Revision: 398729 URL: https://svnweb.freebsd.org/changeset/ports/398729 Log: - Update to 5.4.0 - Change java version to 1.7+ (needed by this version) Modified: head/devel/pmd/Makefile head/devel/pmd/distinfo head/devel/pmd/pkg-plist Modified: head/devel/pmd/Makefile ============================================================================== --- head/devel/pmd/Makefile Wed Oct 7 00:06:45 2015 (r398728) +++ head/devel/pmd/Makefile Wed Oct 7 00:26:13 2015 (r398729) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pmd -PORTVERSION= 5.3.4 +PORTVERSION= 5.4.0 CATEGORIES= devel java MASTER_SITES= SF DISTNAME= ${PORTNAME}-bin-${PORTVERSION} @@ -15,7 +15,7 @@ LICENSE_COMB= dual USES= zip USE_JAVA= yes -JAVA_VERSION= 1.6+ +JAVA_VERSION= 1.7+ NO_BUILD= yes DATADIR= ${JAVASHAREDIR}/${PORTNAME} PLIST_SUB+= PORTVERSION=${PORTVERSION} Modified: head/devel/pmd/distinfo ============================================================================== --- head/devel/pmd/distinfo Wed Oct 7 00:06:45 2015 (r398728) +++ head/devel/pmd/distinfo Wed Oct 7 00:26:13 2015 (r398729) @@ -1,2 +1,2 @@ -SHA256 (pmd-bin-5.3.4.zip) = 89098ae93a08690725ab77e01411aa6ebca3c27337871ff4a59cb1bd565168ab -SIZE (pmd-bin-5.3.4.zip) = 28110915 +SHA256 (pmd-bin-5.4.0.zip) = 83f2a1ff99c16efce24a7dd817bdfeafbca53ebe74517696a65aa9b182ffdeae +SIZE (pmd-bin-5.4.0.zip) = 28266497 Modified: head/devel/pmd/pkg-plist ============================================================================== --- head/devel/pmd/pkg-plist Wed Oct 7 00:06:45 2015 (r398728) +++ head/devel/pmd/pkg-plist Wed Oct 7 00:26:13 2015 (r398729) @@ -1,10 +1,10 @@ bin/pmd -%%DATADIR%%/asm-5.0.3.jar +%%DATADIR%%/asm-5.0.4.jar %%DATADIR%%/commons-io-2.4.jar -%%DATADIR%%/commons-lang3-3.3.2.jar +%%DATADIR%%/commons-lang3-3.4.jar %%DATADIR%%/javacc-5.0.jar -%%DATADIR%%/jaxen-1.1.4.jar -%%DATADIR%%/jcommander-1.35.jar +%%DATADIR%%/jaxen-1.1.6.jar +%%DATADIR%%/jcommander-1.48.jar %%DATADIR%%/pmd-core-%%PORTVERSION%%.jar %%DATADIR%%/pmd-cpp-%%PORTVERSION%%.jar %%DATADIR%%/pmd-cs-%%PORTVERSION%%.jar @@ -22,7 +22,7 @@ bin/pmd %%DATADIR%%/pmd-scala-%%PORTVERSION%%.jar %%DATADIR%%/pmd-vm-%%PORTVERSION%%.jar %%DATADIR%%/pmd-xml-%%PORTVERSION%%.jar -%%DATADIR%%/rhino-1.7R4.jar +%%DATADIR%%/rhino-1.7.7.jar %%DATADIR%%/saxon-9.1.0.8-dom.jar %%DATADIR%%/saxon-9.1.0.8.jar %%DATADIR%%/scala-compiler-2.10.4.jar From owner-svn-ports-head@freebsd.org Wed Oct 7 00:26:35 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 7F1E99D0DCD; Wed, 7 Oct 2015 00:26:35 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BA06252; Wed, 7 Oct 2015 00:26:35 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t970QYJF096303; Wed, 7 Oct 2015 00:26:34 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t970QYXv096300; Wed, 7 Oct 2015 00:26:34 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201510070026.t970QYXv096300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 7 Oct 2015 00:26:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398730 - head/biology/iolib 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: Wed, 07 Oct 2015 00:26:35 -0000 Author: danilo Date: Wed Oct 7 00:26:33 2015 New Revision: 398730 URL: https://svnweb.freebsd.org/changeset/ports/398730 Log: - Update to 1.14.4 Modified: head/biology/iolib/Makefile head/biology/iolib/distinfo head/biology/iolib/pkg-plist Modified: head/biology/iolib/Makefile ============================================================================== --- head/biology/iolib/Makefile Wed Oct 7 00:26:13 2015 (r398729) +++ head/biology/iolib/Makefile Wed Oct 7 00:26:33 2015 (r398730) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= io_lib -PORTVERSION= 1.14.3 +PORTVERSION= 1.14.4 CATEGORIES= biology MASTER_SITES= SF/staden/${PORTNAME}/${PORTVERSION} Modified: head/biology/iolib/distinfo ============================================================================== --- head/biology/iolib/distinfo Wed Oct 7 00:26:13 2015 (r398729) +++ head/biology/iolib/distinfo Wed Oct 7 00:26:33 2015 (r398730) @@ -1,2 +1,2 @@ -SHA256 (io_lib-1.14.3.tar.gz) = f2dfda4ec9657c0ab154da8aebd6b528bddd4f94500b781359753fd8cd5708cb -SIZE (io_lib-1.14.3.tar.gz) = 2128714 +SHA256 (io_lib-1.14.4.tar.gz) = 71571640b8264bd167c6a4c75854713b0cd3d18e447eee99a77e25a832482b7e +SIZE (io_lib-1.14.4.tar.gz) = 2130525 Modified: head/biology/iolib/pkg-plist ============================================================================== --- head/biology/iolib/pkg-plist Wed Oct 7 00:26:13 2015 (r398729) +++ head/biology/iolib/pkg-plist Wed Oct 7 00:26:33 2015 (r398730) @@ -86,7 +86,7 @@ include/io_lib/ztr.h lib/libstaden-read.a lib/libstaden-read.so lib/libstaden-read.so.11 -lib/libstaden-read.so.11.0.2 +lib/libstaden-read.so.11.0.3 man/man1/scramble.1.gz man/man1/srf2fasta.1.gz man/man1/srf2fastq.1.gz From owner-svn-ports-head@freebsd.org Wed Oct 7 00:26:53 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 48BD29D0E29; Wed, 7 Oct 2015 00:26:53 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16FC835D; Wed, 7 Oct 2015 00:26:53 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t970QqmC096424; Wed, 7 Oct 2015 00:26:52 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t970QqV2096421; Wed, 7 Oct 2015 00:26:52 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201510070026.t970QqV2096421@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 7 Oct 2015 00:26:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398731 - head/ftp/tnftp 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: Wed, 07 Oct 2015 00:26:53 -0000 Author: danilo Date: Wed Oct 7 00:26:51 2015 New Revision: 398731 URL: https://svnweb.freebsd.org/changeset/ports/398731 Log: - Update to 20151004 Modified: head/ftp/tnftp/Makefile head/ftp/tnftp/distinfo Modified: head/ftp/tnftp/Makefile ============================================================================== --- head/ftp/tnftp/Makefile Wed Oct 7 00:26:33 2015 (r398730) +++ head/ftp/tnftp/Makefile Wed Oct 7 00:26:51 2015 (r398731) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tnftp -PORTVERSION= 20141104 -PORTREVISION= 1 +PORTVERSION= 20151004 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/ Modified: head/ftp/tnftp/distinfo ============================================================================== --- head/ftp/tnftp/distinfo Wed Oct 7 00:26:33 2015 (r398730) +++ head/ftp/tnftp/distinfo Wed Oct 7 00:26:51 2015 (r398731) @@ -1,2 +1,2 @@ -SHA256 (tnftp-20141104.tar.gz) = 124e9f263c01600acb4072f936d2d0ab5120e68cd8598b86ff4b1d15c87af7b8 -SIZE (tnftp-20141104.tar.gz) = 613180 +SHA256 (tnftp-20151004.tar.gz) = c94a8a49d3f4aec1965feea831d4d5bf6f90c65fd8381ee0863d11a5029a43a0 +SIZE (tnftp-20151004.tar.gz) = 613482 From owner-svn-ports-head@freebsd.org Wed Oct 7 00:27:12 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 53A509D0E74; Wed, 7 Oct 2015 00:27:12 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1F6E8665; Wed, 7 Oct 2015 00:27:12 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t970RB9p096566; Wed, 7 Oct 2015 00:27:11 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t970RAbY096563; Wed, 7 Oct 2015 00:27:10 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201510070027.t970RAbY096563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 7 Oct 2015 00:27:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398732 - head/graphics/wxsvg 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: Wed, 07 Oct 2015 00:27:12 -0000 Author: danilo Date: Wed Oct 7 00:27:10 2015 New Revision: 398732 URL: https://svnweb.freebsd.org/changeset/ports/398732 Log: - Update to 1.5.5 Modified: head/graphics/wxsvg/Makefile head/graphics/wxsvg/distinfo head/graphics/wxsvg/pkg-plist Modified: head/graphics/wxsvg/Makefile ============================================================================== --- head/graphics/wxsvg/Makefile Wed Oct 7 00:26:51 2015 (r398731) +++ head/graphics/wxsvg/Makefile Wed Oct 7 00:27:10 2015 (r398732) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wxsvg -PORTVERSION= 1.5.4 +PORTVERSION= 1.5.5 CATEGORIES= graphics MASTER_SITES= SF Modified: head/graphics/wxsvg/distinfo ============================================================================== --- head/graphics/wxsvg/distinfo Wed Oct 7 00:26:51 2015 (r398731) +++ head/graphics/wxsvg/distinfo Wed Oct 7 00:27:10 2015 (r398732) @@ -1,2 +1,2 @@ -SHA256 (wxsvg-1.5.4.tar.bz2) = 5ca0ce0fcb45a3f0801b645000e9b5179bab4d62fb56df51f027d75cbef5a655 -SIZE (wxsvg-1.5.4.tar.bz2) = 478568 +SHA256 (wxsvg-1.5.5.tar.bz2) = e6664de4ee2a0481f47f8b718793ef7c14d296ebe7aee4edbf099258cd9525fc +SIZE (wxsvg-1.5.5.tar.bz2) = 478828 Modified: head/graphics/wxsvg/pkg-plist ============================================================================== --- head/graphics/wxsvg/pkg-plist Wed Oct 7 00:26:51 2015 (r398731) +++ head/graphics/wxsvg/pkg-plist Wed Oct 7 00:27:10 2015 (r398732) @@ -190,5 +190,5 @@ include/wxSVGXML/svgxmlhelpr.h lib/libwxsvg.a lib/libwxsvg.so lib/libwxsvg.so.3 -lib/libwxsvg.so.3.8.3 +lib/libwxsvg.so.3.8.4 libdata/pkgconfig/libwxsvg.pc From owner-svn-ports-head@freebsd.org Wed Oct 7 01:36:23 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 693049D055D; Wed, 7 Oct 2015 01:36:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37F822BD; Wed, 7 Oct 2015 01:36:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971aMFi017918; Wed, 7 Oct 2015 01:36:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971aMxd017917; Wed, 7 Oct 2015 01:36:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070136.t971aMxd017917@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398733 - head/net/ocserv 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: Wed, 07 Oct 2015 01:36:23 -0000 Author: amdmi3 Date: Wed Oct 7 01:36:22 2015 New Revision: 398733 URL: https://svnweb.freebsd.org/changeset/ports/398733 Log: - Switch to options helpers - Pet portlint Approved by: portmgr blanket Modified: head/net/ocserv/Makefile Modified: head/net/ocserv/Makefile ============================================================================== --- head/net/ocserv/Makefile Wed Oct 7 00:27:10 2015 (r398732) +++ head/net/ocserv/Makefile Wed Oct 7 01:36:22 2015 (r398733) @@ -21,7 +21,8 @@ LIB_DEPENDS= liblz4.so:${PORTSDIR}/archi libgnutls.so:${PORTSDIR}/security/gnutls \ libtasn1.so:${PORTSDIR}/security/libtasn1 -USES= autoreconf cpe gmake gperf libtool ncurses pathfix pkgconfig readline tar:xz +USES= autoreconf cpe gettext gmake gperf libtool ncurses \ + pathfix pkgconfig readline tar:xz CPE_VENDOR= infradead CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lintl @@ -48,8 +49,6 @@ GSSAPI_USES= gssapi:mit GSSAPI_LIB_DEPENDS= libkrb5support.so:${PORTSDIR}/security/krb5 GSSAPI_CONFIGURE_OFF= --without-gssapi -.include - post-patch: ${RM} ${WRKSRC}/doc/occtl.8 ${RM} ${WRKSRC}/doc/ocpasswd.8 @@ -63,14 +62,12 @@ post-install: ${MKDIR} ${STAGEDIR}/var/run/ocserv/ ${CP} ${FILESDIR}/ocserv.conf ${STAGEDIR}${PREFIX}/etc/ocserv/conf.sample -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} -.endif .include From owner-svn-ports-head@freebsd.org Wed Oct 7 01:36: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 E3D3B9D0603; Wed, 7 Oct 2015 01:36:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B100F3B8; Wed, 7 Oct 2015 01:36:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971ak8B018031; Wed, 7 Oct 2015 01:36:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971akGY018030; Wed, 7 Oct 2015 01:36:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070136.t971akGY018030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398734 - head/benchmarks/mdtest 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: Wed, 07 Oct 2015 01:36:48 -0000 Author: amdmi3 Date: Wed Oct 7 01:36:46 2015 New Revision: 398734 URL: https://svnweb.freebsd.org/changeset/ports/398734 Log: - Switch to USES=tar - Switch to options helpers Modified: head/benchmarks/mdtest/Makefile Modified: head/benchmarks/mdtest/Makefile ============================================================================== --- head/benchmarks/mdtest/Makefile Wed Oct 7 01:36:22 2015 (r398733) +++ head/benchmarks/mdtest/Makefile Wed Oct 7 01:36:46 2015 (r398734) @@ -6,13 +6,13 @@ PORTVERSION= 1.9.3 PORTREVISION= 7 CATEGORIES= benchmarks MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20latest/${PORTNAME}-${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Filesystem metadata benchmark utility LICENSE= GPLv2 +USES= tar:tgz NO_WRKSUBDIR= yes CFLAGS+= -DDarwin @@ -23,17 +23,13 @@ PORTEXAMPLES= * OPTIONS_DEFINE= OPENMPI EXAMPLES OPENMPI_DESC= Use Open MPI instead of MPICH2 -.include - -.if ${PORT_OPTIONS:MOPENMPI} -BUILD_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi -RUN_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpirun:${PORTSDIR}/net/openmpi -MPICC= ${LOCALBASE}/mpi/openmpi/bin/mpicc -.else -BUILD_DEPENDS+= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 -RUN_DEPENDS+= ${LOCALBASE}/bin/mpirun:${PORTSDIR}/net/mpich2 -MPICC= ${LOCALBASE}/bin/mpicc -.endif +OPENMPI_BUILD_DEPENDS= ${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi +OPENMPI_RUN_DEPENDS= ${LOCALBASE}/mpi/openmpi/bin/mpirun:${PORTSDIR}/net/openmpi +OPENMPI_VARS= MPICC=${LOCALBASE}/mpi/openmpi/bin/mpicc + +OPENMPI_BUILD_DEPENDS_OFF= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 +OPENMPI_RUN_DEPENDS_OFF= ${LOCALBASE}/bin/mpirun:${PORTSDIR}/net/mpich2 +OPENMPI_VARS_OFF= MPICC=${LOCALBASE}/bin/mpicc do-build: (cd ${WRKSRC} && ${MPICC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c -lm) From owner-svn-ports-head@freebsd.org Wed Oct 7 01:36:55 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 9A3EF9D0629; Wed, 7 Oct 2015 01:36:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4678A6AD; Wed, 7 Oct 2015 01:36:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971asVo018142; Wed, 7 Oct 2015 01:36:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971asZ6018140; Wed, 7 Oct 2015 01:36:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070136.t971asZ6018140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:36:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398735 - head/x11/xterm 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: Wed, 07 Oct 2015 01:36:55 -0000 Author: amdmi3 Date: Wed Oct 7 01:36:53 2015 New Revision: 398735 URL: https://svnweb.freebsd.org/changeset/ports/398735 Log: - Switch to options helpers - Only use pkg-message specific to WCHAR option when the option is enabled - Drop 8.x support Approved by: portmgr blanket Added: head/x11/xterm/pkg-message.wchar - copied unchanged from r397601, head/x11/xterm/pkg-message Deleted: head/x11/xterm/pkg-message Modified: head/x11/xterm/Makefile Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Wed Oct 7 01:36:46 2015 (r398734) +++ head/x11/xterm/Makefile Wed Oct 7 01:36:53 2015 (r398735) @@ -48,6 +48,7 @@ OPTIONS_DEFAULT=WCHAR LUIT 256COLOR LUIT_BUILD_DEPENDS= luit:${PORTSDIR}/x11/luit LUIT_CONFIGURE_ENABLE= luit WCHAR_CONFIGURE_ENABLE= wide-chars +WCHAR_VARS= PKGMESSAGE="${PKGDIR}/pkg-message.wchar" DECTERM_CONFIGURE_ENABLE= dec-locator PCRE_CONFIGURE_WITH= pcre PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre @@ -68,10 +69,6 @@ NEXTAW_LIB_DEPENDS= libneXtaw.so:${PORT USE_XORG+= xaw .endif -.if ${OSVERSION} < 900004 -LIB_DEPENDS+= libutempter.so:${PORTSDIR}/sysutils/libutempter -.endif - post-extract: @${CP} ${WRKDIR}/bsd-xterm-icons-1/*.png \ ${WRKDIR}/bsd-xterm-icons-1/*.xpm \ @@ -84,8 +81,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/xterm.desktop \ ${STAGEDIR}${PREFIX}/share/applications/ -.if ${PORT_OPTIONS:MWCHAR} - @${CAT} ${PKGMESSAGE} -.endif - .include Copied: head/x11/xterm/pkg-message.wchar (from r397601, head/x11/xterm/pkg-message) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xterm/pkg-message.wchar Wed Oct 7 01:36:53 2015 (r398735, copy of r397601, head/x11/xterm/pkg-message) @@ -0,0 +1,10 @@ +================================================================================ +You installed xterm with wide chars support. This introduces some limitations +comparing to the plain single chars version: this version of xterm will use +UTF-8 charset for selection buffers, breaking 8-bit copy/paste support unless +you are using UTF-8 or ISO8859-1 locale. If you want 8-bit charset selections to +work as before, use "eightBitSelectTypes" XTerm resource setting. + +For further information refer to the SELECT/PASTE section of xterm(1) manual +page. +================================================================================ From owner-svn-ports-head@freebsd.org Wed Oct 7 01:37:00 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 422109D064E; Wed, 7 Oct 2015 01:37:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09A7B6C9; Wed, 7 Oct 2015 01:36:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971ax0f018245; Wed, 7 Oct 2015 01:36:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971axUU018244; Wed, 7 Oct 2015 01:36:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070136.t971axUU018244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398736 - head/audio/snack 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: Wed, 07 Oct 2015 01:37:00 -0000 Author: amdmi3 Date: Wed Oct 7 01:36:58 2015 New Revision: 398736 URL: https://svnweb.freebsd.org/changeset/ports/398736 Log: - Switch to options helpers Modified: head/audio/snack/Makefile Modified: head/audio/snack/Makefile ============================================================================== --- head/audio/snack/Makefile Wed Oct 7 01:36:53 2015 (r398735) +++ head/audio/snack/Makefile Wed Oct 7 01:36:58 2015 (r398736) @@ -11,11 +11,6 @@ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Sound toolkit for scripting languages -WRKSRC= ${WRKDIR}/${DISTNAME}/unix - -OPTIONS_DEFINE= VORBIS DOCS -OPTIONS_SUB= yes - USES= tk USE_LDCONFIG= ${PREFIX}/lib/snack${PORTVERSION:R} GNU_CONFIGURE= yes @@ -23,17 +18,18 @@ CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} --with-tk=${TK_LIBDIR} MAKE_ENV= prefix=${PREFIX} exec_prefix=${PREFIX} +WRKSRC= ${WRKDIR}/${DISTNAME}/unix + PLIST_SUB= SNACK_VER=${PORTVERSION:R} PORTDOCS= * -.include +OPTIONS_DEFINE= VORBIS DOCS +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis -CONFIGURE_ARGS+=--with-ogg-include=${LOCALBASE}/include \ - --with-ogg-lib=${LOCALBASE}/lib -ALL_TARGET= all libsnackogg.so -.endif +VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis +VORBIS_CONFIGURE_ON= --with-ogg-include=${LOCALBASE}/include \ + --with-ogg-lib=${LOCALBASE}/lib +VORBIS_ALL_TARGET= all libsnackogg.so post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/snack${PORTVERSION:R}/*.so From owner-svn-ports-head@freebsd.org Wed Oct 7 01:37: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 ED36D9D06AB; Wed, 7 Oct 2015 01:37:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B42C1900; Wed, 7 Oct 2015 01:37:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971bRWw018348; Wed, 7 Oct 2015 01:37:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971bRxe018347; Wed, 7 Oct 2015 01:37:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070137.t971bRxe018347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:37:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398737 - head/databases/hamsterdb 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: Wed, 07 Oct 2015 01:37:29 -0000 Author: amdmi3 Date: Wed Oct 7 01:37:27 2015 New Revision: 398737 URL: https://svnweb.freebsd.org/changeset/ports/398737 Log: - Drop 8.x support - Switch to options helpers Approved by: portmgr blanket Modified: head/databases/hamsterdb/Makefile Modified: head/databases/hamsterdb/Makefile ============================================================================== --- head/databases/hamsterdb/Makefile Wed Oct 7 01:36:58 2015 (r398736) +++ head/databases/hamsterdb/Makefile Wed Oct 7 01:37:27 2015 (r398737) @@ -24,21 +24,15 @@ HAM_DOCS= README INSTALL ChangeLog TODO OPTIONS_DEFINE= DOCS -.include - -.if ${OSVERSION} < 900000 -BROKEN= fails to compile on 8.x -.endif - post-patch: ${REINPLACE_CMD} -e 's#-ldl##g' ${WRKSRC}/configure ${REINPLACE_CMD} -e 's#-ldl##g' ${WRKSRC}/unittests/Makefile.in ${REINPLACE_CMD} -e 's#-ldl##g' ${WRKSRC}/tools/ham_bench/Makefile.in -post-install: +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${HAM_DOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/ .endfor -.include +.include From owner-svn-ports-head@freebsd.org Wed Oct 7 01:37:34 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 871E99D06CF; Wed, 7 Oct 2015 01:37:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3772195C; Wed, 7 Oct 2015 01:37:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971bXYq018435; Wed, 7 Oct 2015 01:37:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971bXu7018434; Wed, 7 Oct 2015 01:37:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070137.t971bXu7018434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:37:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398738 - head/x11/cool-retro-term 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: Wed, 07 Oct 2015 01:37:34 -0000 Author: amdmi3 Date: Wed Oct 7 01:37:32 2015 New Revision: 398738 URL: https://svnweb.freebsd.org/changeset/ports/398738 Log: - Drop 8.x support Approved by: portmgr blanket Modified: head/x11/cool-retro-term/Makefile Modified: head/x11/cool-retro-term/Makefile ============================================================================== --- head/x11/cool-retro-term/Makefile Wed Oct 7 01:37:27 2015 (r398737) +++ head/x11/cool-retro-term/Makefile Wed Oct 7 01:37:32 2015 (r398738) @@ -24,7 +24,7 @@ USE_LDCONFIG= yes .include -.if ${OSVERSION} < 900014 || ${ARCH} == powerpc +.if ${ARCH} == powerpc USE_GCC= yes .else CC= clang @@ -39,15 +39,8 @@ post-extract: post-patch: @${REINPLACE_CMD} -e '/DEFINES +=/s,^macx:,,' \ ${WRKSRC}/qmltermwidget/qmltermwidget.pro -.if ${OSVERSION} < 900007 - @${REINPLACE_CMD} -e 's,HAVE_UTMPX,HAVE_UTMP,' \ - ${WRKSRC}/qmltermwidget/qmltermwidget.pro - @${REINPLACE_CMD} -e 's,ut_user,ut_name,g' \ - ${WRKSRC}/qmltermwidget/lib/kpty.cpp -.else @${REINPLACE_CMD} -e '/define HAVE_LOGIN/d' \ ${WRKSRC}/qmltermwidget/lib/kpty.cpp -.endif @${REINPLACE_CMD} -e 's,/usr,${LOCALBASE},' \ ${WRKSRC}/app/app.pro ${WRKSRC}/cool-retro-term.pro @${REINPLACE_CMD} -e 's,\.\./icons,/icons,' \ From owner-svn-ports-head@freebsd.org Wed Oct 7 01:37:40 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 D65BB9D06FD; Wed, 7 Oct 2015 01:37:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 586EBA3D; Wed, 7 Oct 2015 01:37:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971bdJv018525; Wed, 7 Oct 2015 01:37:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971bdat018524; Wed, 7 Oct 2015 01:37:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070137.t971bdat018524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:37:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398739 - head/audio/sdl_mixer 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: Wed, 07 Oct 2015 01:37:40 -0000 Author: amdmi3 Date: Wed Oct 7 01:37:39 2015 New Revision: 398739 URL: https://svnweb.freebsd.org/changeset/ports/398739 Log: - Switch to options helpers Approved by: portmgr blanket Modified: head/audio/sdl_mixer/Makefile Modified: head/audio/sdl_mixer/Makefile ============================================================================== --- head/audio/sdl_mixer/Makefile Wed Oct 7 01:37:32 2015 (r398738) +++ head/audio/sdl_mixer/Makefile Wed Oct 7 01:37:39 2015 (r398739) @@ -47,15 +47,11 @@ SMPEG_CONFIGURE_ENABLE= music-mp3 VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis VORBIS_CONFIGURE_ENABLE= music-ogg -.include +TIMIDITYPLUS_RUN_DEPENDS= ${LOCALBASE}/share/timidity/timidity.cfg-eawpats:${PORTSDIR}/audio/eawpats +TIMIDITYPLUS_VARS= CONFIG_FILE=${LOCALBASE}/share/timidity/timidity.cfg-eawpats -.if ${PORT_OPTIONS:MTIMIDITYPLUS} -RUN_DEPENDS+= ${LOCALBASE}/share/timidity/timidity.cfg-eawpats:${PORTSDIR}/audio/eawpats -CONFIG_FILE= ${LOCALBASE}/share/timidity/timidity.cfg-eawpats -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/timidity/timidity.cfg:${PORTSDIR}/audio/timidity -CONFIG_FILE= ${LOCALBASE}/lib/timidity/timidity.cfg -.endif +TIMIDITYPLUS_RUN_DEPENDS_OFF= ${LOCALBASE}/lib/timidity/timidity.cfg:${PORTSDIR}/audio/timidity +TIMIDITYPLUS_VARS_OFF= CONFIG_FILE=${LOCALBASE}/lib/timidity/timidity.cfg post-patch: @${REINPLACE_CMD} -e 's|\($$(prefix)/libdata/pkgconfig\)|$$(DESTDIR)\1|' \ From owner-svn-ports-head@freebsd.org Wed Oct 7 01:37:48 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 79B1D9D0743; Wed, 7 Oct 2015 01:37:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27AB7B8F; Wed, 7 Oct 2015 01:37:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971blZK018616; Wed, 7 Oct 2015 01:37:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971blTl018615; Wed, 7 Oct 2015 01:37:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070137.t971blTl018615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398740 - head/audio/libsndfile 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: Wed, 07 Oct 2015 01:37:48 -0000 Author: amdmi3 Date: Wed Oct 7 01:37:46 2015 New Revision: 398740 URL: https://svnweb.freebsd.org/changeset/ports/398740 Log: - Switch to options helpers - Switch to new test framework Approved by: portmgr blanket Modified: head/audio/libsndfile/Makefile Modified: head/audio/libsndfile/Makefile ============================================================================== --- head/audio/libsndfile/Makefile Wed Oct 7 01:37:39 2015 (r398739) +++ head/audio/libsndfile/Makefile Wed Oct 7 01:37:46 2015 (r398740) @@ -21,6 +21,7 @@ CONFIGURE_ARGS= --disable-gcc-pipe \ CPPFLAGS+= -isystem /usr/include -isystem ${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes +TEST_TARGET= check PORTDOCS= AUTHORS ChangeLog NEWS README libsndfile.css \ new_file_type.HOWTO libsndfile.jpg *.html @@ -30,28 +31,16 @@ OPTIONS_DEFAULT= EXTERNAL CPU_CLIP_DESC= Allow machine-dependent clipping EXTERNAL_DESC= Enable FLAC and Ogg Vorbis support -.include +CPU_CLIP_VARS= MANUAL_PACKAGE_BUILD="WITH_CPU_CLIP may customize the package for the build machine" +CPU_CLIP_CONFIGURE_OFF= --disable-cpu-clip -.if ${PORT_OPTIONS:MCPU_CLIP} -MANUAL_PACKAGE_BUILD= WITH_CPU_CLIP may customize the package for the build machine -.else -CONFIGURE_ARGS+= --disable-cpu-clip -.endif - -.if ${PORT_OPTIONS:MEXTERNAL} -LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac \ - libvorbis.so:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+=--disable-external-libs -.endif +EXTERNAL_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac \ + libvorbis.so:${PORTSDIR}/audio/libvorbis +EXTERNAL_CONFIGURE_OFF= --disable-external-libs post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS =/s/ doc / /g' ${WRKSRC}/Makefile.in -check regression-test test: build - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} \ - check - post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} @${TAR} -C ${WRKSRC}/doc --exclude "*Makefile*" --exclude "*.in" \ From owner-svn-ports-head@freebsd.org Wed Oct 7 01:38: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 16C8E9D07C6; Wed, 7 Oct 2015 01:38:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7744C7D; Wed, 7 Oct 2015 01:38:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971c8td018727; Wed, 7 Oct 2015 01:38:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971c8aG018725; Wed, 7 Oct 2015 01:38:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070138.t971c8aG018725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398741 - head/sysutils/tmux 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: Wed, 07 Oct 2015 01:38:10 -0000 Author: amdmi3 Date: Wed Oct 7 01:38:08 2015 New Revision: 398741 URL: https://svnweb.freebsd.org/changeset/ports/398741 Log: - Drop 8.x support - Switch to options helpers - Fix WWW: Approved by: portmgr blanket Modified: head/sysutils/tmux/Makefile head/sysutils/tmux/pkg-descr Modified: head/sysutils/tmux/Makefile ============================================================================== --- head/sysutils/tmux/Makefile Wed Oct 7 01:37:46 2015 (r398740) +++ head/sysutils/tmux/Makefile Wed Oct 7 01:38:08 2015 (r398741) @@ -35,24 +35,14 @@ BACKSPACE_EXTRA_PATCHES= ${PATCHDIR}/ext LIBEVENT_STATIC_LIB_DEPENDS_OFF= libevent.so:${PORTSDIR}/devel/libevent2 LIBEVENT_STATIC_BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent2 - -.include - -.if ${OSVERSION} < 900004 -LIB_DEPENDS+= libutempter.so:${PORTSDIR}/sysutils/libutempter -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -.endif +LIBEVENT_STATIC_VARS= LESTATIC=${LOCALBASE}/lib/libevent.a post-patch: @${REINPLACE_CMD} -e 's|/etc/tmux.conf|${PREFIX}/etc/tmux.conf|g' ${WRKSRC}/CHANGES -.if ${PORT_OPTIONS:MLIBEVENT_STATIC} -LESTATIC= ${LOCALBASE}/lib/libevent.a -post-configure: +post-configure-LIBEVENT_STATIC-on: ${REINPLACE_CMD} -e '/LIBS/s|-levent[^[:blank:]]*|${LESTATIC}|' \ ${WRKSRC}/${MAKEFILE} -.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tmux ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/tmux/pkg-descr ============================================================================== --- head/sysutils/tmux/pkg-descr Wed Oct 7 01:37:46 2015 (r398740) +++ head/sysutils/tmux/pkg-descr Wed Oct 7 01:38:08 2015 (r398741) @@ -2,4 +2,4 @@ Tmux is a terminal multiplexer, it enabl and controlled from a single terminal. tmux is intended to be a simple, modern, BSD-licensed alternative to programs such as GNU screen. -WWW: http://www.sourceforge.net/projects/tmux/ +WWW: http://www.sourceforge.net/projects/tmux/ From owner-svn-ports-head@freebsd.org Wed Oct 7 01:38: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 AB74E9D07F7; Wed, 7 Oct 2015 01:38:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 74B15C9B; Wed, 7 Oct 2015 01:38:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t971cDvf018817; Wed, 7 Oct 2015 01:38:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t971cDZ8018816; Wed, 7 Oct 2015 01:38:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070138.t971cDZ8018816@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 01:38:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398742 - head/comms/morse 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: Wed, 07 Oct 2015 01:38:14 -0000 Author: amdmi3 Date: Wed Oct 7 01:38:13 2015 New Revision: 398742 URL: https://svnweb.freebsd.org/changeset/ports/398742 Log: - Switch to options helpers - Add LICENSE_FILE Approved by: portmgr blanket Modified: head/comms/morse/Makefile Modified: head/comms/morse/Makefile ============================================================================== --- head/comms/morse/Makefile Wed Oct 7 01:38:08 2015 (r398741) +++ head/comms/morse/Makefile Wed Oct 7 01:38:13 2015 (r398742) @@ -11,6 +11,7 @@ MAINTAINER= shurd@FreeBSD.org COMMENT= Morse Code Trainer LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING PLIST_FILES= bin/morsec bin/QSO man/man1/QSO.1.gz man/man1/morsec.1.gz @@ -22,22 +23,16 @@ OSS_DESC= Beep using OSS (/dev/dsp) X11_DESC= Beep using X server PULSEAUDIO_DESC= Beep using Pulse Audio -.include +OSS_MAKE_ARGS= DEVICE=OSS -.if ${PORT_OPTIONS:MOSS} -MAKE_FLAGS+= DEVICE=OSS - -.elif ${PORT_OPTIONS:MX11} -MAKE_FLAGS+= DEVICE=X11 -USE_XORG= x11 -CFLAGS+= -I${PREFIX}/include -LDFLAGS+= -L${PREFIX}/lib - -.elif ${PORT_OPTIONS:MPULSEAUDIO} -MAKE_FLAGS+= DEVICE=PA -LIB_DEPENDS+= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio -USES+= pkgconfig -.endif +X11_MAKE_ARGS= DEVICE=X11 +X11_USE= XORG=x11 +X11_CFLAGS= -I${LOCALBASE}/include +X11_LDFLAGS= -L${LOCALBASE}/lib + +PULSEAUDIO_MAKE_ARGS= DEVICE=PA +PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio +PULSEAUDIO_USES= pkgconfig do-install: ${INSTALL_PROGRAM} ${WRKSRC}/morse ${STAGEDIR}${PREFIX}/bin/morsec From owner-svn-ports-head@freebsd.org Wed Oct 7 03:30:06 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 3661A9D19A9; Wed, 7 Oct 2015 03:30:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01FF6DD8; Wed, 7 Oct 2015 03:30:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t973U5LD051590; Wed, 7 Oct 2015 03:30:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t973U4Jt051588; Wed, 7 Oct 2015 03:30:04 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070330.t973U4Jt051588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 03:30:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398743 - head/print/ghostscript7-commfont 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: Wed, 07 Oct 2015 03:30:06 -0000 Author: amdmi3 Date: Wed Oct 7 03:30:04 2015 New Revision: 398743 URL: https://svnweb.freebsd.org/changeset/ports/398743 Log: - Add missing files to plist, sort plist - Add NO_ARCH Approved by: portmgr blanket Modified: head/print/ghostscript7-commfont/Makefile head/print/ghostscript7-commfont/pkg-plist Modified: head/print/ghostscript7-commfont/Makefile ============================================================================== --- head/print/ghostscript7-commfont/Makefile Wed Oct 7 01:38:13 2015 (r398742) +++ head/print/ghostscript7-commfont/Makefile Wed Oct 7 03:30:04 2015 (r398743) @@ -3,7 +3,7 @@ PORTNAME= ghostscript PORTVERSION= 7.07 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= print MASTER_SITES= # empty PKGNAMESUFFIX= 7-commfont @@ -22,6 +22,7 @@ SUB_LIST= PORTVERSION="${PORTVERSION}" G PLIST_SUB= GS_RESDIR="${GS_RESDIR}" PKGMESSAGE= ${WRKDIR}/pkg-message USES= ghostscript:7,run +NO_ARCH= yes CONFLICTS_INSTALL= \ ghostscript[789]-[0-9]* \ Modified: head/print/ghostscript7-commfont/pkg-plist ============================================================================== --- head/print/ghostscript7-commfont/pkg-plist Wed Oct 7 01:38:13 2015 (r398742) +++ head/print/ghostscript7-commfont/pkg-plist Wed Oct 7 03:30:04 2015 (r398743) @@ -8,11 +8,213 @@ %%GS_RESDIR%%/CIDFont/HeiseiKakuGo-W5 %%GS_RESDIR%%/CIDFont/HeiseiMin-W3 %%GS_RESDIR%%/CIDFont/MSung-Light +%%GS_RESDIR%%/CIDFont/Munhwa-Regular +%%GS_RESDIR%%/CIDFont/MunhwaGothic-Regular %%GS_RESDIR%%/CIDFont/Ryumin-Light %%GS_RESDIR%%/CIDFont/STHeiti-Regular %%GS_RESDIR%%/CIDFont/STSong-Light -%%GS_RESDIR%%/CIDFont/Munhwa-Regular -%%GS_RESDIR%%/CIDFont/MunhwaGothic-Regular +%%GS_RESDIR%%/CMap/78-EUC-H +%%GS_RESDIR%%/CMap/78-EUC-V +%%GS_RESDIR%%/CMap/78-H +%%GS_RESDIR%%/CMap/78-RKSJ-H +%%GS_RESDIR%%/CMap/78-RKSJ-V +%%GS_RESDIR%%/CMap/78-V +%%GS_RESDIR%%/CMap/78ms-RKSJ-H +%%GS_RESDIR%%/CMap/78ms-RKSJ-V +%%GS_RESDIR%%/CMap/83pv-RKSJ-H +%%GS_RESDIR%%/CMap/90ms-RKSJ-H +%%GS_RESDIR%%/CMap/90ms-RKSJ-UCS2 +%%GS_RESDIR%%/CMap/90ms-RKSJ-V +%%GS_RESDIR%%/CMap/90msp-RKSJ-H +%%GS_RESDIR%%/CMap/90msp-RKSJ-V +%%GS_RESDIR%%/CMap/90pv-RKSJ-H +%%GS_RESDIR%%/CMap/90pv-RKSJ-UCS2 +%%GS_RESDIR%%/CMap/90pv-RKSJ-UCS2C +%%GS_RESDIR%%/CMap/90pv-RKSJ-V +%%GS_RESDIR%%/CMap/Add-H +%%GS_RESDIR%%/CMap/Add-RKSJ-H +%%GS_RESDIR%%/CMap/Add-RKSJ-V +%%GS_RESDIR%%/CMap/Add-V +%%GS_RESDIR%%/CMap/Adobe-CNS1-0 +%%GS_RESDIR%%/CMap/Adobe-CNS1-1 +%%GS_RESDIR%%/CMap/Adobe-CNS1-2 +%%GS_RESDIR%%/CMap/Adobe-CNS1-3 +%%GS_RESDIR%%/CMap/Adobe-CNS1-4 +%%GS_RESDIR%%/CMap/Adobe-CNS1-5 +%%GS_RESDIR%%/CMap/Adobe-CNS1-UCS2 +%%GS_RESDIR%%/CMap/Adobe-GB1-0 +%%GS_RESDIR%%/CMap/Adobe-GB1-1 +%%GS_RESDIR%%/CMap/Adobe-GB1-2 +%%GS_RESDIR%%/CMap/Adobe-GB1-3 +%%GS_RESDIR%%/CMap/Adobe-GB1-4 +%%GS_RESDIR%%/CMap/Adobe-GB1-5 +%%GS_RESDIR%%/CMap/Adobe-GB1-UCS2 +%%GS_RESDIR%%/CMap/Adobe-Japan1-0 +%%GS_RESDIR%%/CMap/Adobe-Japan1-1 +%%GS_RESDIR%%/CMap/Adobe-Japan1-2 +%%GS_RESDIR%%/CMap/Adobe-Japan1-3 +%%GS_RESDIR%%/CMap/Adobe-Japan1-4 +%%GS_RESDIR%%/CMap/Adobe-Japan1-5 +%%GS_RESDIR%%/CMap/Adobe-Japan1-6 +%%GS_RESDIR%%/CMap/Adobe-Japan1-UCS2 +%%GS_RESDIR%%/CMap/Adobe-Japan2-0 +%%GS_RESDIR%%/CMap/Adobe-Korea1-0 +%%GS_RESDIR%%/CMap/Adobe-Korea1-1 +%%GS_RESDIR%%/CMap/Adobe-Korea1-2 +%%GS_RESDIR%%/CMap/Adobe-Korea1-UCS2 +%%GS_RESDIR%%/CMap/B5-H +%%GS_RESDIR%%/CMap/B5-V +%%GS_RESDIR%%/CMap/B5pc-H +%%GS_RESDIR%%/CMap/B5pc-UCS2 +%%GS_RESDIR%%/CMap/B5pc-UCS2C +%%GS_RESDIR%%/CMap/B5pc-V +%%GS_RESDIR%%/CMap/CNS-EUC-H +%%GS_RESDIR%%/CMap/CNS-EUC-V +%%GS_RESDIR%%/CMap/CNS01-RKSJ-H +%%GS_RESDIR%%/CMap/CNS02-RKSJ-H +%%GS_RESDIR%%/CMap/CNS03-RKSJ-H +%%GS_RESDIR%%/CMap/CNS04-RKSJ-H +%%GS_RESDIR%%/CMap/CNS05-RKSJ-H +%%GS_RESDIR%%/CMap/CNS06-RKSJ-H +%%GS_RESDIR%%/CMap/CNS07-RKSJ-H +%%GS_RESDIR%%/CMap/CNS1-H +%%GS_RESDIR%%/CMap/CNS1-V +%%GS_RESDIR%%/CMap/CNS15-RKSJ-H +%%GS_RESDIR%%/CMap/CNS2-H +%%GS_RESDIR%%/CMap/CNS2-V +%%GS_RESDIR%%/CMap/ETHK-B5-H +%%GS_RESDIR%%/CMap/ETHK-B5-V +%%GS_RESDIR%%/CMap/ETen-B5-H +%%GS_RESDIR%%/CMap/ETen-B5-UCS2 +%%GS_RESDIR%%/CMap/ETen-B5-V +%%GS_RESDIR%%/CMap/EUC-H +%%GS_RESDIR%%/CMap/EUC-V +%%GS_RESDIR%%/CMap/Ext-H +%%GS_RESDIR%%/CMap/Ext-RKSJ-H +%%GS_RESDIR%%/CMap/Ext-RKSJ-V +%%GS_RESDIR%%/CMap/Ext-V +%%GS_RESDIR%%/CMap/GB-EUC-H +%%GS_RESDIR%%/CMap/GB-EUC-V +%%GS_RESDIR%%/CMap/GB-H +%%GS_RESDIR%%/CMap/GB-RKSJ-H +%%GS_RESDIR%%/CMap/GB-V +%%GS_RESDIR%%/CMap/GBK-EUC-H +%%GS_RESDIR%%/CMap/GBK-EUC-UCS2 +%%GS_RESDIR%%/CMap/GBK-EUC-V +%%GS_RESDIR%%/CMap/GBK2K-H +%%GS_RESDIR%%/CMap/GBK2K-V +%%GS_RESDIR%%/CMap/GBKp-EUC-H +%%GS_RESDIR%%/CMap/GBKp-EUC-V +%%GS_RESDIR%%/CMap/GBT-EUC-H +%%GS_RESDIR%%/CMap/GBT-EUC-V +%%GS_RESDIR%%/CMap/GBT-H +%%GS_RESDIR%%/CMap/GBT-RKSJ-H +%%GS_RESDIR%%/CMap/GBT-V +%%GS_RESDIR%%/CMap/GBTpc-EUC-H +%%GS_RESDIR%%/CMap/GBTpc-EUC-V +%%GS_RESDIR%%/CMap/GBpc-EUC-H +%%GS_RESDIR%%/CMap/GBpc-EUC-UCS2 +%%GS_RESDIR%%/CMap/GBpc-EUC-UCS2C +%%GS_RESDIR%%/CMap/GBpc-EUC-V +%%GS_RESDIR%%/CMap/H +%%GS_RESDIR%%/CMap/HK-RKSJ-H +%%GS_RESDIR%%/CMap/HKdla-B5-H +%%GS_RESDIR%%/CMap/HKdla-B5-V +%%GS_RESDIR%%/CMap/HKdlb-B5-H +%%GS_RESDIR%%/CMap/HKdlb-B5-V +%%GS_RESDIR%%/CMap/HKgccs-B5-H +%%GS_RESDIR%%/CMap/HKgccs-B5-V +%%GS_RESDIR%%/CMap/HKm314-B5-H +%%GS_RESDIR%%/CMap/HKm314-B5-V +%%GS_RESDIR%%/CMap/HKm471-B5-H +%%GS_RESDIR%%/CMap/HKm471-B5-V +%%GS_RESDIR%%/CMap/HKscs-B5-H +%%GS_RESDIR%%/CMap/HKscs-B5-V +%%GS_RESDIR%%/CMap/Hankaku +%%GS_RESDIR%%/CMap/Hiragana +%%GS_RESDIR%%/CMap/Hojo-EUC-H +%%GS_RESDIR%%/CMap/Hojo-EUC-V +%%GS_RESDIR%%/CMap/Hojo-H +%%GS_RESDIR%%/CMap/Hojo-RKSJ-H +%%GS_RESDIR%%/CMap/Hojo-V +%%GS_RESDIR%%/CMap/Identity-H +%%GS_RESDIR%%/CMap/Identity-V +%%GS_RESDIR%%/CMap/KSC-EUC-H +%%GS_RESDIR%%/CMap/KSC-EUC-V +%%GS_RESDIR%%/CMap/KSC-H +%%GS_RESDIR%%/CMap/KSC-Johab-H +%%GS_RESDIR%%/CMap/KSC-Johab-V +%%GS_RESDIR%%/CMap/KSC-RKSJ-H +%%GS_RESDIR%%/CMap/KSC-V +%%GS_RESDIR%%/CMap/KSC2-RKSJ-H +%%GS_RESDIR%%/CMap/KSCms-UHC-H +%%GS_RESDIR%%/CMap/KSCms-UHC-HW-H +%%GS_RESDIR%%/CMap/KSCms-UHC-HW-V +%%GS_RESDIR%%/CMap/KSCms-UHC-UCS2 +%%GS_RESDIR%%/CMap/KSCms-UHC-V +%%GS_RESDIR%%/CMap/KSCpc-EUC-H +%%GS_RESDIR%%/CMap/KSCpc-EUC-UCS2 +%%GS_RESDIR%%/CMap/KSCpc-EUC-UCS2C +%%GS_RESDIR%%/CMap/KSCpc-EUC-V +%%GS_RESDIR%%/CMap/Katakana +%%GS_RESDIR%%/CMap/NWP-H +%%GS_RESDIR%%/CMap/NWP-V +%%GS_RESDIR%%/CMap/RKSJ-H +%%GS_RESDIR%%/CMap/RKSJ-V +%%GS_RESDIR%%/CMap/Roman +%%GS_RESDIR%%/CMap/TCVN-RKSJ-H +%%GS_RESDIR%%/CMap/UniCNS-UCS2-H +%%GS_RESDIR%%/CMap/UniCNS-UCS2-V +%%GS_RESDIR%%/CMap/UniCNS-UTF16-H +%%GS_RESDIR%%/CMap/UniCNS-UTF16-V +%%GS_RESDIR%%/CMap/UniCNS-UTF32-H +%%GS_RESDIR%%/CMap/UniCNS-UTF32-V +%%GS_RESDIR%%/CMap/UniCNS-UTF8-H +%%GS_RESDIR%%/CMap/UniCNS-UTF8-V +%%GS_RESDIR%%/CMap/UniGB-UCS2-H +%%GS_RESDIR%%/CMap/UniGB-UCS2-V +%%GS_RESDIR%%/CMap/UniGB-UTF16-H +%%GS_RESDIR%%/CMap/UniGB-UTF16-V +%%GS_RESDIR%%/CMap/UniGB-UTF32-H +%%GS_RESDIR%%/CMap/UniGB-UTF32-V +%%GS_RESDIR%%/CMap/UniGB-UTF8-H +%%GS_RESDIR%%/CMap/UniGB-UTF8-V +%%GS_RESDIR%%/CMap/UniHojo-UCS2-H +%%GS_RESDIR%%/CMap/UniHojo-UCS2-V +%%GS_RESDIR%%/CMap/UniHojo-UTF16-H +%%GS_RESDIR%%/CMap/UniHojo-UTF16-V +%%GS_RESDIR%%/CMap/UniHojo-UTF32-H +%%GS_RESDIR%%/CMap/UniHojo-UTF32-V +%%GS_RESDIR%%/CMap/UniHojo-UTF8-H +%%GS_RESDIR%%/CMap/UniHojo-UTF8-V +%%GS_RESDIR%%/CMap/UniJIS-UCS2-H +%%GS_RESDIR%%/CMap/UniJIS-UCS2-HW-H +%%GS_RESDIR%%/CMap/UniJIS-UCS2-HW-V +%%GS_RESDIR%%/CMap/UniJIS-UCS2-V +%%GS_RESDIR%%/CMap/UniJIS-UTF16-H +%%GS_RESDIR%%/CMap/UniJIS-UTF16-V +%%GS_RESDIR%%/CMap/UniJIS-UTF32-H +%%GS_RESDIR%%/CMap/UniJIS-UTF32-V +%%GS_RESDIR%%/CMap/UniJIS-UTF8-H +%%GS_RESDIR%%/CMap/UniJIS-UTF8-V +%%GS_RESDIR%%/CMap/UniJISPro-UCS2-HW-V +%%GS_RESDIR%%/CMap/UniJISPro-UCS2-V +%%GS_RESDIR%%/CMap/UniJISPro-UTF8-V +%%GS_RESDIR%%/CMap/UniJISX0213-UTF32-H +%%GS_RESDIR%%/CMap/UniJISX0213-UTF32-V +%%GS_RESDIR%%/CMap/UniKS-UCS2-H +%%GS_RESDIR%%/CMap/UniKS-UCS2-V +%%GS_RESDIR%%/CMap/UniKS-UTF16-H +%%GS_RESDIR%%/CMap/UniKS-UTF16-V +%%GS_RESDIR%%/CMap/UniKS-UTF32-H +%%GS_RESDIR%%/CMap/UniKS-UTF32-V +%%GS_RESDIR%%/CMap/UniKS-UTF8-H +%%GS_RESDIR%%/CMap/UniKS-UTF8-V +%%GS_RESDIR%%/CMap/V +%%GS_RESDIR%%/CMap/WP-Symbol +%%GS_RESDIR%%/CMap/cid2code.txt +%%GS_RESDIR%%/CMap/fonts.dir +%%GS_RESDIR%%/CMap/fonts.scale %%GS_RESDIR%%/Font/FutoGoB101-Bold-78-EUC-H %%GS_RESDIR%%/Font/FutoGoB101-Bold-78-EUC-V %%GS_RESDIR%%/Font/FutoGoB101-Bold-78-H @@ -791,203 +993,3 @@ %%GS_RESDIR%%/Font/STSong-Light-UniCNS-UTF32-V %%GS_RESDIR%%/Font/STSong-Light-UniCNS-UTF8-H %%GS_RESDIR%%/Font/STSong-Light-UniCNS-UTF8-V -%%GS_RESDIR%%/CMap/78-EUC-H -%%GS_RESDIR%%/CMap/78-EUC-V -%%GS_RESDIR%%/CMap/78-H -%%GS_RESDIR%%/CMap/78-RKSJ-H -%%GS_RESDIR%%/CMap/78-RKSJ-V -%%GS_RESDIR%%/CMap/78-V -%%GS_RESDIR%%/CMap/78ms-RKSJ-H -%%GS_RESDIR%%/CMap/78ms-RKSJ-V -%%GS_RESDIR%%/CMap/83pv-RKSJ-H -%%GS_RESDIR%%/CMap/90ms-RKSJ-H -%%GS_RESDIR%%/CMap/90ms-RKSJ-UCS2 -%%GS_RESDIR%%/CMap/90ms-RKSJ-V -%%GS_RESDIR%%/CMap/90msp-RKSJ-H -%%GS_RESDIR%%/CMap/90msp-RKSJ-V -%%GS_RESDIR%%/CMap/90pv-RKSJ-H -%%GS_RESDIR%%/CMap/90pv-RKSJ-UCS2 -%%GS_RESDIR%%/CMap/90pv-RKSJ-UCS2C -%%GS_RESDIR%%/CMap/90pv-RKSJ-V -%%GS_RESDIR%%/CMap/Add-H -%%GS_RESDIR%%/CMap/Add-RKSJ-H -%%GS_RESDIR%%/CMap/Add-RKSJ-V -%%GS_RESDIR%%/CMap/Add-V -%%GS_RESDIR%%/CMap/Adobe-CNS1-0 -%%GS_RESDIR%%/CMap/Adobe-CNS1-1 -%%GS_RESDIR%%/CMap/Adobe-CNS1-2 -%%GS_RESDIR%%/CMap/Adobe-CNS1-3 -%%GS_RESDIR%%/CMap/Adobe-CNS1-4 -%%GS_RESDIR%%/CMap/Adobe-CNS1-5 -%%GS_RESDIR%%/CMap/Adobe-CNS1-UCS2 -%%GS_RESDIR%%/CMap/Adobe-GB1-0 -%%GS_RESDIR%%/CMap/Adobe-GB1-1 -%%GS_RESDIR%%/CMap/Adobe-GB1-2 -%%GS_RESDIR%%/CMap/Adobe-GB1-3 -%%GS_RESDIR%%/CMap/Adobe-GB1-4 -%%GS_RESDIR%%/CMap/Adobe-GB1-5 -%%GS_RESDIR%%/CMap/Adobe-GB1-UCS2 -%%GS_RESDIR%%/CMap/Adobe-Japan1-0 -%%GS_RESDIR%%/CMap/Adobe-Japan1-1 -%%GS_RESDIR%%/CMap/Adobe-Japan1-2 -%%GS_RESDIR%%/CMap/Adobe-Japan1-3 -%%GS_RESDIR%%/CMap/Adobe-Japan1-4 -%%GS_RESDIR%%/CMap/Adobe-Japan1-5 -%%GS_RESDIR%%/CMap/Adobe-Japan1-6 -%%GS_RESDIR%%/CMap/Adobe-Japan1-UCS2 -%%GS_RESDIR%%/CMap/Adobe-Japan2-0 -%%GS_RESDIR%%/CMap/Adobe-Korea1-0 -%%GS_RESDIR%%/CMap/Adobe-Korea1-1 -%%GS_RESDIR%%/CMap/Adobe-Korea1-2 -%%GS_RESDIR%%/CMap/Adobe-Korea1-UCS2 -%%GS_RESDIR%%/CMap/B5-H -%%GS_RESDIR%%/CMap/B5-V -%%GS_RESDIR%%/CMap/B5pc-H -%%GS_RESDIR%%/CMap/B5pc-UCS2 -%%GS_RESDIR%%/CMap/B5pc-UCS2C -%%GS_RESDIR%%/CMap/B5pc-V -%%GS_RESDIR%%/CMap/CNS-EUC-H -%%GS_RESDIR%%/CMap/CNS-EUC-V -%%GS_RESDIR%%/CMap/CNS01-RKSJ-H -%%GS_RESDIR%%/CMap/CNS02-RKSJ-H -%%GS_RESDIR%%/CMap/CNS03-RKSJ-H -%%GS_RESDIR%%/CMap/CNS04-RKSJ-H -%%GS_RESDIR%%/CMap/CNS05-RKSJ-H -%%GS_RESDIR%%/CMap/CNS06-RKSJ-H -%%GS_RESDIR%%/CMap/CNS07-RKSJ-H -%%GS_RESDIR%%/CMap/CNS1-H -%%GS_RESDIR%%/CMap/CNS1-V -%%GS_RESDIR%%/CMap/CNS15-RKSJ-H -%%GS_RESDIR%%/CMap/CNS2-H -%%GS_RESDIR%%/CMap/CNS2-V -%%GS_RESDIR%%/CMap/ETHK-B5-H -%%GS_RESDIR%%/CMap/ETHK-B5-V -%%GS_RESDIR%%/CMap/ETen-B5-H -%%GS_RESDIR%%/CMap/ETen-B5-UCS2 -%%GS_RESDIR%%/CMap/ETen-B5-V -%%GS_RESDIR%%/CMap/EUC-H -%%GS_RESDIR%%/CMap/EUC-V -%%GS_RESDIR%%/CMap/Ext-H -%%GS_RESDIR%%/CMap/Ext-RKSJ-H -%%GS_RESDIR%%/CMap/Ext-RKSJ-V -%%GS_RESDIR%%/CMap/Ext-V -%%GS_RESDIR%%/CMap/GB-EUC-H -%%GS_RESDIR%%/CMap/GB-EUC-V -%%GS_RESDIR%%/CMap/GB-H -%%GS_RESDIR%%/CMap/GB-RKSJ-H -%%GS_RESDIR%%/CMap/GB-V -%%GS_RESDIR%%/CMap/GBK-EUC-H -%%GS_RESDIR%%/CMap/GBK-EUC-UCS2 -%%GS_RESDIR%%/CMap/GBK-EUC-V -%%GS_RESDIR%%/CMap/GBK2K-H -%%GS_RESDIR%%/CMap/GBK2K-V -%%GS_RESDIR%%/CMap/GBKp-EUC-H -%%GS_RESDIR%%/CMap/GBKp-EUC-V -%%GS_RESDIR%%/CMap/GBT-EUC-H -%%GS_RESDIR%%/CMap/GBT-EUC-V -%%GS_RESDIR%%/CMap/GBT-H -%%GS_RESDIR%%/CMap/GBT-RKSJ-H -%%GS_RESDIR%%/CMap/GBT-V -%%GS_RESDIR%%/CMap/GBTpc-EUC-H -%%GS_RESDIR%%/CMap/GBTpc-EUC-V -%%GS_RESDIR%%/CMap/GBpc-EUC-H -%%GS_RESDIR%%/CMap/GBpc-EUC-UCS2 -%%GS_RESDIR%%/CMap/GBpc-EUC-UCS2C -%%GS_RESDIR%%/CMap/GBpc-EUC-V -%%GS_RESDIR%%/CMap/H -%%GS_RESDIR%%/CMap/HK-RKSJ-H -%%GS_RESDIR%%/CMap/HKdla-B5-H -%%GS_RESDIR%%/CMap/HKdla-B5-V -%%GS_RESDIR%%/CMap/HKdlb-B5-H -%%GS_RESDIR%%/CMap/HKdlb-B5-V -%%GS_RESDIR%%/CMap/HKgccs-B5-H -%%GS_RESDIR%%/CMap/HKgccs-B5-V -%%GS_RESDIR%%/CMap/HKm314-B5-H -%%GS_RESDIR%%/CMap/HKm314-B5-V -%%GS_RESDIR%%/CMap/HKm471-B5-H -%%GS_RESDIR%%/CMap/HKm471-B5-V -%%GS_RESDIR%%/CMap/HKscs-B5-H -%%GS_RESDIR%%/CMap/HKscs-B5-V -%%GS_RESDIR%%/CMap/Hankaku -%%GS_RESDIR%%/CMap/Hiragana -%%GS_RESDIR%%/CMap/Hojo-EUC-H -%%GS_RESDIR%%/CMap/Hojo-EUC-V -%%GS_RESDIR%%/CMap/Hojo-H -%%GS_RESDIR%%/CMap/Hojo-RKSJ-H -%%GS_RESDIR%%/CMap/Hojo-V -%%GS_RESDIR%%/CMap/Identity-H -%%GS_RESDIR%%/CMap/Identity-V -%%GS_RESDIR%%/CMap/KSC-EUC-H -%%GS_RESDIR%%/CMap/KSC-EUC-V -%%GS_RESDIR%%/CMap/KSC-H -%%GS_RESDIR%%/CMap/KSC-Johab-H -%%GS_RESDIR%%/CMap/KSC-Johab-V -%%GS_RESDIR%%/CMap/KSC-RKSJ-H -%%GS_RESDIR%%/CMap/KSC-V -%%GS_RESDIR%%/CMap/KSC2-RKSJ-H -%%GS_RESDIR%%/CMap/KSCms-UHC-H -%%GS_RESDIR%%/CMap/KSCms-UHC-HW-H -%%GS_RESDIR%%/CMap/KSCms-UHC-HW-V -%%GS_RESDIR%%/CMap/KSCms-UHC-UCS2 -%%GS_RESDIR%%/CMap/KSCms-UHC-V -%%GS_RESDIR%%/CMap/KSCpc-EUC-H -%%GS_RESDIR%%/CMap/KSCpc-EUC-UCS2 -%%GS_RESDIR%%/CMap/KSCpc-EUC-UCS2C -%%GS_RESDIR%%/CMap/KSCpc-EUC-V -%%GS_RESDIR%%/CMap/Katakana -%%GS_RESDIR%%/CMap/NWP-H -%%GS_RESDIR%%/CMap/NWP-V -%%GS_RESDIR%%/CMap/RKSJ-H -%%GS_RESDIR%%/CMap/RKSJ-V -%%GS_RESDIR%%/CMap/Roman -%%GS_RESDIR%%/CMap/TCVN-RKSJ-H -%%GS_RESDIR%%/CMap/UniCNS-UCS2-H -%%GS_RESDIR%%/CMap/UniCNS-UCS2-V -%%GS_RESDIR%%/CMap/UniCNS-UTF16-H -%%GS_RESDIR%%/CMap/UniCNS-UTF16-V -%%GS_RESDIR%%/CMap/UniCNS-UTF32-H -%%GS_RESDIR%%/CMap/UniCNS-UTF32-V -%%GS_RESDIR%%/CMap/UniCNS-UTF8-H -%%GS_RESDIR%%/CMap/UniCNS-UTF8-V -%%GS_RESDIR%%/CMap/UniGB-UCS2-H -%%GS_RESDIR%%/CMap/UniGB-UCS2-V -%%GS_RESDIR%%/CMap/UniGB-UTF16-H -%%GS_RESDIR%%/CMap/UniGB-UTF16-V -%%GS_RESDIR%%/CMap/UniGB-UTF32-H -%%GS_RESDIR%%/CMap/UniGB-UTF32-V -%%GS_RESDIR%%/CMap/UniGB-UTF8-H -%%GS_RESDIR%%/CMap/UniGB-UTF8-V -%%GS_RESDIR%%/CMap/UniHojo-UCS2-H -%%GS_RESDIR%%/CMap/UniHojo-UCS2-V -%%GS_RESDIR%%/CMap/UniHojo-UTF16-H -%%GS_RESDIR%%/CMap/UniHojo-UTF16-V -%%GS_RESDIR%%/CMap/UniHojo-UTF32-H -%%GS_RESDIR%%/CMap/UniHojo-UTF32-V -%%GS_RESDIR%%/CMap/UniHojo-UTF8-H -%%GS_RESDIR%%/CMap/UniHojo-UTF8-V -%%GS_RESDIR%%/CMap/UniJIS-UCS2-H -%%GS_RESDIR%%/CMap/UniJIS-UCS2-HW-H -%%GS_RESDIR%%/CMap/UniJIS-UCS2-HW-V -%%GS_RESDIR%%/CMap/UniJIS-UCS2-V -%%GS_RESDIR%%/CMap/UniJIS-UTF16-H -%%GS_RESDIR%%/CMap/UniJIS-UTF16-V -%%GS_RESDIR%%/CMap/UniJIS-UTF32-H -%%GS_RESDIR%%/CMap/UniJIS-UTF32-V -%%GS_RESDIR%%/CMap/UniJIS-UTF8-H -%%GS_RESDIR%%/CMap/UniJIS-UTF8-V -%%GS_RESDIR%%/CMap/UniJISPro-UCS2-HW-V -%%GS_RESDIR%%/CMap/UniJISPro-UCS2-V -%%GS_RESDIR%%/CMap/UniJISPro-UTF8-V -%%GS_RESDIR%%/CMap/UniJISX0213-UTF32-H -%%GS_RESDIR%%/CMap/UniJISX0213-UTF32-V -%%GS_RESDIR%%/CMap/UniKS-UCS2-H -%%GS_RESDIR%%/CMap/UniKS-UCS2-V -%%GS_RESDIR%%/CMap/UniKS-UTF16-H -%%GS_RESDIR%%/CMap/UniKS-UTF16-V -%%GS_RESDIR%%/CMap/UniKS-UTF32-H -%%GS_RESDIR%%/CMap/UniKS-UTF32-V -%%GS_RESDIR%%/CMap/UniKS-UTF8-H -%%GS_RESDIR%%/CMap/UniKS-UTF8-V -%%GS_RESDIR%%/CMap/V -%%GS_RESDIR%%/CMap/WP-Symbol -%%GS_RESDIR%%/CMap/cid2code.txt From owner-svn-ports-head@freebsd.org Wed Oct 7 03:37: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 E08189D1E5D; Wed, 7 Oct 2015 03:37:44 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B862379; Wed, 7 Oct 2015 03:37:44 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t973bhRk054606; Wed, 7 Oct 2015 03:37:43 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t973bhT4054600; Wed, 7 Oct 2015 03:37:43 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201510070337.t973bhT4054600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 7 Oct 2015 03:37:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398744 - in head/math/py-numpy: . 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: Wed, 07 Oct 2015 03:37:45 -0000 Author: olivierd Date: Wed Oct 7 03:37:42 2015 New Revision: 398744 URL: https://svnweb.freebsd.org/changeset/ports/398744 Log: Update to 1.10.0 Modified: head/math/py-numpy/Makefile head/math/py-numpy/distinfo head/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py head/math/py-numpy/files/patch-numpy_f2py_setup.py head/math/py-numpy/pkg-plist Modified: head/math/py-numpy/Makefile ============================================================================== --- head/math/py-numpy/Makefile Wed Oct 7 03:30:04 2015 (r398743) +++ head/math/py-numpy/Makefile Wed Oct 7 03:37:42 2015 (r398744) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= numpy -PORTVERSION= 1.9.2 +PORTVERSION= 1.10.0 PORTEPOCH= 1 CATEGORIES= math python MASTER_SITES= http://docs.scipy.org/doc/${PORTNAME}/:doc \ - SF/${PORTNAME}/NumPy/${PORTVERSION}:source + CHEESESHOP:source PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTFILES= numpy-${PORTVERSION:S/r/rc/}${EXTRACT_SUFX}:source \ numpy-ref-${DOCVERSION}.pdf:doc \ @@ -90,6 +90,7 @@ post-install: .if ${PYTHON_VERSION} == ${PYTHON_DEFAULT_VERSION} ${LN} -sf ${MANPREFIX}/man/man1/f2py-${PYTHON_VER}.1 ${STAGEDIR}${MANPREFIX}/man/man1/f2py.1 .endif + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' | ${XARGS} ${STRIP_CMD} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/math/py-numpy/distinfo ============================================================================== --- head/math/py-numpy/distinfo Wed Oct 7 03:30:04 2015 (r398743) +++ head/math/py-numpy/distinfo Wed Oct 7 03:37:42 2015 (r398744) @@ -1,5 +1,5 @@ -SHA256 (numpy-1.9.2.tar.gz) = 325e5f2b0b434ecb6e6882c7e1034cc6cdde3eeeea87dbc482575199a6aeef2a -SIZE (numpy-1.9.2.tar.gz) = 3986067 +SHA256 (numpy-1.10.0.tar.gz) = 43b00f5d52b374a731444ba2724bfa1debdbc93312a1b9b28e99700498d169b6 +SIZE (numpy-1.10.0.tar.gz) = 4047636 SHA256 (numpy-ref-1.9.1.pdf) = 3c8e5881a3460e1cc9da95fe2167044e8f832ab8e980c3606d1f353e7ac6dcee SIZE (numpy-ref-1.9.1.pdf) = 5318122 SHA256 (numpy-user-1.9.1.pdf) = e1f6baed0b73f3d4b106c88924c083f9a519e860c1beb718830bf1aee1892232 Modified: head/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py ============================================================================== --- head/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py Wed Oct 7 03:30:04 2015 (r398743) +++ head/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py Wed Oct 7 03:37:42 2015 (r398744) @@ -1,38 +1,35 @@ ---- numpy/distutils/fcompiler/gnu.py.orig 2013-10-30 22:31:40.000000000 +0400 -+++ numpy/distutils/fcompiler/gnu.py 2014-02-24 15:11:58.000000000 +0400 -@@ -66,7 +66,7 @@ - # Redhat: GNU Fortran (GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) 3.2.2 20030222 (Red Hat Linux 3.2.2-5) - # GNU Fortran (GCC) 3.4.2 (mingw-special) +--- numpy/distutils/fcompiler/gnu.py.orig 2015-09-13 16:21:27 UTC ++++ numpy/distutils/fcompiler/gnu.py +@@ -83,7 +83,7 @@ class GnuFCompiler(FCompiler): + return None + return v[1] - possible_executables = ['g77', 'f77'] + possible_executables = ['%%FC%%', 'g77', 'f77'] executables = { - 'version_cmd' : [None, "--version"], + 'version_cmd' : [None, "-dumpversion"], 'compiler_f77' : [None, "-g", "-Wall", "-fno-second-underscore"], -@@ -90,7 +90,7 @@ +@@ -107,11 +107,13 @@ class GnuFCompiler(FCompiler): for key in ['version_cmd', 'compiler_f77', 'linker_so', 'linker_exe']: executables[key].append('-mno-cygwin') - g2c = 'g2c' + g2c = '%%FC%%' - suggested_f90_compiler = 'gnu95' -@@ -103,6 +103,8 @@ - def get_flags_linker_so(self): opt = self.linker_so[1:] + if 'FFLAGS' in os.environ: -+ opt.append(os.environ['FFLAGS']) - if sys.platform=='darwin': ++ opt.append(os.environ['FFLAGS']) + if sys.platform == 'darwin': target = os.environ.get('MACOSX_DEPLOYMENT_TARGET', None) # If MACOSX_DEPLOYMENT_TARGET is set, we simply trust the value -@@ -249,7 +251,7 @@ - # GNU Fortran 95 (GCC) 4.2.0 20060218 (experimental) - # GNU Fortran (GCC) 4.3.0 20070316 (experimental) +@@ -265,7 +267,7 @@ class Gnu95FCompiler(GnuFCompiler): + self.executables[key].append('-mno-cygwin') + return v - possible_executables = ['gfortran', 'f95'] + possible_executables = ['%%FC%%', 'gfortran', 'f95'] executables = { - 'version_cmd' : ["", "--version"], - 'compiler_f77' : [None, "-Wall", "-ffixed-form", + 'version_cmd' : ["", "-dumpversion"], + 'compiler_f77' : [None, "-Wall", "-g", "-ffixed-form", Modified: head/math/py-numpy/files/patch-numpy_f2py_setup.py ============================================================================== --- head/math/py-numpy/files/patch-numpy_f2py_setup.py Wed Oct 7 03:30:04 2015 (r398743) +++ head/math/py-numpy/files/patch-numpy_f2py_setup.py Wed Oct 7 03:37:42 2015 (r398744) @@ -1,19 +1,11 @@ ---- numpy/f2py/setup.py.orig Mon Oct 2 17:08:55 2006 -+++ numpy/f2py/setup.py Mon Jun 11 12:17:13 2007 -@@ -34,14 +34,13 @@ - config.add_data_dir('docs') - - config.add_data_files('src/fortranobject.c', -- 'src/fortranobject.h', -- 'f2py.1' -+ 'src/fortranobject.h' - ) - +--- numpy/f2py/setup.py.orig 2015-08-11 17:03:43 UTC ++++ numpy/f2py/setup.py +@@ -55,7 +55,7 @@ def configuration(parent_package='', top config.make_svn_version_py() def generate_f2py_py(build_dir): -- f2py_exe = 'f2py'+os.path.basename(sys.executable)[6:] +- f2py_exe = 'f2py' + os.path.basename(sys.executable)[6:] + f2py_exe = 'f2py' - if f2py_exe[-4:]=='.exe': + if f2py_exe[-4:] == '.exe': f2py_exe = f2py_exe[:-4] + '.py' if 'bdist_wininst' in sys.argv and f2py_exe[-3:] != '.py': Modified: head/math/py-numpy/pkg-plist ============================================================================== --- head/math/py-numpy/pkg-plist Wed Oct 7 03:30:04 2015 (r398743) +++ head/math/py-numpy/pkg-plist Wed Oct 7 03:37:42 2015 (r398744) @@ -26,7 +26,6 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/core/__init__.py %%PYTHON_SITELIBDIR%%/numpy/core/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/numpy/core/_dotblas.so %%PYTHON_SITELIBDIR%%/numpy/core/_dummy.so %%PYTHON_SITELIBDIR%%/numpy/core/_internal.py %%PYTHON_SITELIBDIR%%/numpy/core/_internal.pyc @@ -105,7 +104,6 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/core/records.py %%PYTHON_SITELIBDIR%%/numpy/core/records.pyc %%PYTHON_SITELIBDIR%%/numpy/core/records.pyo -%%PYTHON_SITELIBDIR%%/numpy/core/scalarmath.so %%PYTHON_SITELIBDIR%%/numpy/core/setup.py %%PYTHON_SITELIBDIR%%/numpy/core/setup.pyc %%PYTHON_SITELIBDIR%%/numpy/core/setup.pyo @@ -122,7 +120,6 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_abc.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_api.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_arrayprint.py -%%PYTHON_SITELIBDIR%%/numpy/core/tests/test_blasdot.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_datetime.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_defchararray.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_deprecations.py @@ -318,6 +315,12 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/distutils/misc_util.py %%PYTHON_SITELIBDIR%%/numpy/distutils/misc_util.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/misc_util.pyo +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvc9compiler.py +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvc9compiler.pyc +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvc9compiler.pyo +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvccompiler.py +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvccompiler.pyc +%%PYTHON_SITELIBDIR%%/numpy/distutils/msvccompiler.pyo %%PYTHON_SITELIBDIR%%/numpy/distutils/npy_pkg_config.py %%PYTHON_SITELIBDIR%%/numpy/distutils/npy_pkg_config.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/npy_pkg_config.pyo @@ -366,6 +369,7 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/distutils/tests/test_fcompiler_intel.py %%PYTHON_SITELIBDIR%%/numpy/distutils/tests/test_misc_util.py %%PYTHON_SITELIBDIR%%/numpy/distutils/tests/test_npy_pkg_config.py +%%PYTHON_SITELIBDIR%%/numpy/distutils/tests/test_system_info.py %%PYTHON_SITELIBDIR%%/numpy/distutils/unixccompiler.py %%PYTHON_SITELIBDIR%%/numpy/distutils/unixccompiler.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/unixccompiler.pyo @@ -429,6 +433,9 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.py %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.pyo +%%PYTHON_SITELIBDIR%%/numpy/f2py/__main__.py +%%PYTHON_SITELIBDIR%%/numpy/f2py/__main__.pyc +%%PYTHON_SITELIBDIR%%/numpy/f2py/__main__.pyo %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.py %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.pyc %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.pyo @@ -525,7 +532,6 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/lib/__init__.py %%PYTHON_SITELIBDIR%%/numpy/lib/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/numpy/lib/_compiled_base.so %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.py %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.pyo @@ -583,6 +589,10 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.py %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.pyo +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/py2-objarr.npy +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/py2-objarr.npz +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/py3-objarr.npy +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/py3-objarr.npz %%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/python3.npy %%PYTHON_SITELIBDIR%%/numpy/lib/tests/data/win64python2.npy %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test__datasource.py @@ -597,6 +607,7 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_index_tricks.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_io.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_nanfunctions.py +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_packbits.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_polynomial.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_recfunctions.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_regression.py @@ -712,9 +723,6 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/polynomial/polynomial.py %%PYTHON_SITELIBDIR%%/numpy/polynomial/polynomial.pyc %%PYTHON_SITELIBDIR%%/numpy/polynomial/polynomial.pyo -%%PYTHON_SITELIBDIR%%/numpy/polynomial/polytemplate.py -%%PYTHON_SITELIBDIR%%/numpy/polynomial/polytemplate.pyc -%%PYTHON_SITELIBDIR%%/numpy/polynomial/polytemplate.pyo %%PYTHON_SITELIBDIR%%/numpy/polynomial/polyutils.py %%PYTHON_SITELIBDIR%%/numpy/polynomial/polyutils.pyc %%PYTHON_SITELIBDIR%%/numpy/polynomial/polyutils.pyo @@ -772,6 +780,7 @@ bin/f2py %%PYTHON_SITELIBDIR%%/numpy/testing/utils.pyo %%PYTHON_SITELIBDIR%%/numpy/tests/test_ctypeslib.py %%PYTHON_SITELIBDIR%%/numpy/tests/test_matlib.py +%%PYTHON_SITELIBDIR%%/numpy/tests/test_scripts.py %%PYTHON_SITELIBDIR%%/numpy/version.py %%PYTHON_SITELIBDIR%%/numpy/version.pyc %%PYTHON_SITELIBDIR%%/numpy/version.pyo From owner-svn-ports-head@freebsd.org Wed Oct 7 04:02: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 BF8EC9D110E; Wed, 7 Oct 2015 04:02:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BF5C378; Wed, 7 Oct 2015 04:02:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9742KTE063194; Wed, 7 Oct 2015 04:02:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9742K2h063192; Wed, 7 Oct 2015 04:02:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510070402.t9742K2h063192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 04:02:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398745 - head/net-mgmt/glpi-plugins-fusioninventory-server 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: Wed, 07 Oct 2015 04:02:21 -0000 Author: amdmi3 Date: Wed Oct 7 04:02:20 2015 New Revision: 398745 URL: https://svnweb.freebsd.org/changeset/ports/398745 Log: - Fix staging from non-root - Add NO_ARCH Approved by: portmgr blanket Modified: head/net-mgmt/glpi-plugins-fusioninventory-server/Makefile head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-plist Modified: head/net-mgmt/glpi-plugins-fusioninventory-server/Makefile ============================================================================== --- head/net-mgmt/glpi-plugins-fusioninventory-server/Makefile Wed Oct 7 03:37:42 2015 (r398744) +++ head/net-mgmt/glpi-plugins-fusioninventory-server/Makefile Wed Oct 7 04:02:20 2015 (r398745) @@ -22,10 +22,11 @@ GLPI_VER= 0.85 FUNV_VER= 1.2 WRKSRC= ${WRKDIR} NO_BUILD= yes +NO_ARCH= yes -GLPIPLUGINDIR?= www/glpi/plugins +PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} -.include +GLPIPLUGINDIR?= www/glpi/plugins do-install: .for i in get_agent_jobs.php cleanup_repository.php prepare_jobs.php get_job_logs.php @@ -37,6 +38,5 @@ do-install: @${CHMOD} -x ${WRKSRC}/fusioninventory/lib/mustache.js-2.0.0/hooks/install-hooks.sh @${MKDIR} -m 0755 ${STAGEDIR}${PREFIX}/${GLPIPLUGINDIR} @${CP} -R ${WRKSRC}/fusioninventory ${STAGEDIR}${PREFIX}/${GLPIPLUGINDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${PREFIX}/${GLPIPLUGINDIR}/fusioninventory -.include +.include Modified: head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-plist ============================================================================== --- head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-plist Wed Oct 7 03:37:42 2015 (r398744) +++ head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-plist Wed Oct 7 04:02:20 2015 (r398745) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% www/glpi/plugins/fusioninventory/CHANGES www/glpi/plugins/fusioninventory/LICENSE www/glpi/plugins/fusioninventory/PICTURES @@ -1857,3 +1859,146 @@ www/glpi/plugins/fusioninventory/scripts www/glpi/plugins/fusioninventory/scripts/logging.php www/glpi/plugins/fusioninventory/scripts/prepare_jobs.php www/glpi/plugins/fusioninventory/setup.php +@dir www/glpi/plugins/fusioninventory/scripts +@dir www/glpi/plugins/fusioninventory/report +@dir www/glpi/plugins/fusioninventory/pics/ext/extensions +@dir www/glpi/plugins/fusioninventory/pics/ext +@dir www/glpi/plugins/fusioninventory/pics +@dir www/glpi/plugins/fusioninventory/locales +@dir www/glpi/plugins/fusioninventory/lib/nvd3/test +@dir www/glpi/plugins/fusioninventory/lib/nvd3/src/models/backup +@dir www/glpi/plugins/fusioninventory/lib/nvd3/src/models +@dir www/glpi/plugins/fusioninventory/lib/nvd3/src +@dir www/glpi/plugins/fusioninventory/lib/nvd3/lib +@dir www/glpi/plugins/fusioninventory/lib/nvd3/examples/images +@dir www/glpi/plugins/fusioninventory/lib/nvd3/examples +@dir www/glpi/plugins/fusioninventory/lib/nvd3/deprecated/charts +@dir www/glpi/plugins/fusioninventory/lib/nvd3/deprecated +@dir www/glpi/plugins/fusioninventory/lib/nvd3 +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/wrappers/qooxdoo +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/wrappers/mootools +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/wrappers/jquery +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/wrappers/dojo +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/test/_files +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/test +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/hooks +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0/bin +@dir www/glpi/plugins/fusioninventory/lib/mustache.js-2.0.0 +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/spec/support +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/spec/data +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/spec +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/stylesheets/demos +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/stylesheets +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/layouts +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/javascripts/docs +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/javascripts/demos +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/javascripts +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/images +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/demos/primes +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/demos/json +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/demos/generators +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source/demos/events +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site/source +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/site +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/perf +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/experimental +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0/autodoc +@dir www/glpi/plugins/fusioninventory/lib/lazy.js-0.4.0 +@dir www/glpi/plugins/fusioninventory/lib/jquery +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/window +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/tree +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/toolbar +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/tabs +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/slider +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/sizer +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/shared +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/qtip +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/progress +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/panel +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/menu +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/layout +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/grid +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/form +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/editor +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/dd +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/button +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default/box +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/images/default +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/css/visual +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/css/theme-gray +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/css/theme-access +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/css/structure +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources/css +@dir www/glpi/plugins/fusioninventory/lib/extjs/resources +@dir www/glpi/plugins/fusioninventory/lib/extjs/locale +@dir www/glpi/plugins/fusioninventory/lib/extjs/adapter/prototype +@dir www/glpi/plugins/fusioninventory/lib/extjs/adapter/ext +@dir www/glpi/plugins/fusioninventory/lib/extjs +@dir www/glpi/plugins/fusioninventory/lib/expanding +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/xhr +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/transition +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/time +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/svg +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/selection +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/scale +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/math +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/locale +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/layout +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/interpolate +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/geom +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/geo +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/format +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/event +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/dsv +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/data +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/core +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/color +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test/arrays +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/test +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/xhr +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/transition +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/time +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/svg +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/selection +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/scale +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/math +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/locale +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/layout +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/interpolate +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/geom/voronoi +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/geom +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/geo +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/format +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/event +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/dsv +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/core +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/compat +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/color +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/behavior +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src/arrays +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/src +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/science +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/rhill-voronoi +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/protovis +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/polymaps +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/penner +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/geographiclib +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/lib/colorbrewer +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3/bin +@dir www/glpi/plugins/fusioninventory/lib/d3-3.4.3 +@dir www/glpi/plugins/fusioninventory/lib/REDIPS_drag +@dir www/glpi/plugins/fusioninventory/lib +@dir www/glpi/plugins/fusioninventory/js +@dir www/glpi/plugins/fusioninventory/install/mysql +@dir www/glpi/plugins/fusioninventory/install +@dir www/glpi/plugins/fusioninventory/inc +@dir www/glpi/plugins/fusioninventory/front +@dir www/glpi/plugins/fusioninventory/docs +@dir www/glpi/plugins/fusioninventory/css +@dir www/glpi/plugins/fusioninventory/b/esx +@dir www/glpi/plugins/fusioninventory/b/deploy +@dir www/glpi/plugins/fusioninventory/b/collect +@dir www/glpi/plugins/fusioninventory/ajax +@dir www/glpi/plugins/fusioninventory +@owner +@group From owner-svn-ports-head@freebsd.org Wed Oct 7 05:14: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 98EA49D0140; Wed, 7 Oct 2015 05:14:44 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63F432FF; Wed, 7 Oct 2015 05:14:44 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t975EhDE083412; Wed, 7 Oct 2015 05:14:43 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t975Eh0e083410; Wed, 7 Oct 2015 05:14:43 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510070514.t975Eh0e083410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 7 Oct 2015 05:14:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398746 - head/textproc/elasticsearch-plugin-sql 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: Wed, 07 Oct 2015 05:14:44 -0000 Author: olgeni Date: Wed Oct 7 05:14:43 2015 New Revision: 398746 URL: https://svnweb.freebsd.org/changeset/ports/398746 Log: Upgrade textproc/elasticsearch-plugin-sql to version 1.4.3. Modified: head/textproc/elasticsearch-plugin-sql/Makefile head/textproc/elasticsearch-plugin-sql/distinfo Modified: head/textproc/elasticsearch-plugin-sql/Makefile ============================================================================== --- head/textproc/elasticsearch-plugin-sql/Makefile Wed Oct 7 04:02:20 2015 (r398745) +++ head/textproc/elasticsearch-plugin-sql/Makefile Wed Oct 7 05:14:43 2015 (r398746) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sql -PORTVERSION= 1.4.2 +PORTVERSION= 1.4.3 CATEGORIES= textproc MASTER_SITES= http://github.com/NLPchina/elasticsearch-sql/releases/download/${PORTVERSION}/ PKGNAMEPREFIX= elasticsearch-plugin- Modified: head/textproc/elasticsearch-plugin-sql/distinfo ============================================================================== --- head/textproc/elasticsearch-plugin-sql/distinfo Wed Oct 7 04:02:20 2015 (r398745) +++ head/textproc/elasticsearch-plugin-sql/distinfo Wed Oct 7 05:14:43 2015 (r398746) @@ -1,2 +1,2 @@ -SHA256 (elasticsearch-sql-1.4.2.zip) = 97dd5b1457a2ab3b86e96df72c2dbf9a8c91bfe7cc398196bd6a04e06814df15 -SIZE (elasticsearch-sql-1.4.2.zip) = 5841835 +SHA256 (elasticsearch-sql-1.4.3.zip) = cd86da2c4f669943c25e988daea4aac1045287a700ce2a60e84db03d152e86d7 +SIZE (elasticsearch-sql-1.4.3.zip) = 5842179 From owner-svn-ports-head@freebsd.org Wed Oct 7 05:21:55 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 AC9639D0A01; Wed, 7 Oct 2015 05:21:55 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E741B65; Wed, 7 Oct 2015 05:21:55 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t975LslK086348; Wed, 7 Oct 2015 05:21:54 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t975LsQ8086345; Wed, 7 Oct 2015 05:21:54 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510070521.t975LsQ8086345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 7 Oct 2015 05:21:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398747 - head/devel/elixir-tzdata 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: Wed, 07 Oct 2015 05:21:55 -0000 Author: olgeni Date: Wed Oct 7 05:21:54 2015 New Revision: 398747 URL: https://svnweb.freebsd.org/changeset/ports/398747 Log: Upgrade devel/elixir-tzdata to version 0.5.4. Modified: head/devel/elixir-tzdata/Makefile head/devel/elixir-tzdata/distinfo head/devel/elixir-tzdata/pkg-plist Modified: head/devel/elixir-tzdata/Makefile ============================================================================== --- head/devel/elixir-tzdata/Makefile Wed Oct 7 05:14:43 2015 (r398746) +++ head/devel/elixir-tzdata/Makefile Wed Oct 7 05:21:54 2015 (r398747) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tzdata -PORTVERSION= 0.5.3 +PORTVERSION= 0.5.4 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= elixir- @@ -18,4 +18,7 @@ GH_ACCOUNT= lau MIX_BUILD_DEPS= www/elixir-httpoison \ www/erlang-hackney +post-extract: + @${RM} ${WRKSRC}/priv/release_ets/.gitkeep + .include Modified: head/devel/elixir-tzdata/distinfo ============================================================================== --- head/devel/elixir-tzdata/distinfo Wed Oct 7 05:14:43 2015 (r398746) +++ head/devel/elixir-tzdata/distinfo Wed Oct 7 05:21:54 2015 (r398747) @@ -1,2 +1,2 @@ -SHA256 (lau-tzdata-v0.5.3_GH0.tar.gz) = f78ac22c2a5225584229b819bb922d64912e13a3cb0a3a3c6ba6b7dae86b0368 -SIZE (lau-tzdata-v0.5.3_GH0.tar.gz) = 808744 +SHA256 (lau-tzdata-v0.5.4_GH0.tar.gz) = 30cf51257b194d29588ef2c5305b77098b1d8cf92199afe0e469cde3e37a7d49 +SIZE (lau-tzdata-v0.5.4_GH0.tar.gz) = 811102 Modified: head/devel/elixir-tzdata/pkg-plist ============================================================================== --- head/devel/elixir-tzdata/pkg-plist Wed Oct 7 05:14:43 2015 (r398746) +++ head/devel/elixir-tzdata/pkg-plist Wed Oct 7 05:21:54 2015 (r398747) @@ -3,7 +3,6 @@ lib/elixir/lib/tzdata/ebin/Elixir.Tzdata lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.DataBuilder.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.DataLoader.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.EtsHolder.beam -lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.EtsHolderSupervisor.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.FarFutureDynamicPeriods.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.LeapSecParser.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.Parser.beam @@ -11,7 +10,6 @@ lib/elixir/lib/tzdata/ebin/Elixir.Tzdata lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.PeriodBuilder.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.ReleaseReader.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.ReleaseUpdater.beam -lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.ReleaseUpdaterSupervisor.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.TableData.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.TableParser.beam lib/elixir/lib/tzdata/ebin/Elixir.Tzdata.Util.beam @@ -22,7 +20,6 @@ lib/elixir/lib/tzdata/lib/tzdata/basic_d lib/elixir/lib/tzdata/lib/tzdata/data_builder.ex lib/elixir/lib/tzdata/lib/tzdata/data_loader.ex lib/elixir/lib/tzdata/lib/tzdata/ets_holder.ex -lib/elixir/lib/tzdata/lib/tzdata/ets_holder_supervisor.ex lib/elixir/lib/tzdata/lib/tzdata/far_future_dynamic_periods.ex lib/elixir/lib/tzdata/lib/tzdata/leap_sec_parser.ex lib/elixir/lib/tzdata/lib/tzdata/parser.ex @@ -30,11 +27,9 @@ lib/elixir/lib/tzdata/lib/tzdata/parser_ lib/elixir/lib/tzdata/lib/tzdata/period_builder.ex lib/elixir/lib/tzdata/lib/tzdata/release_reader.ex lib/elixir/lib/tzdata/lib/tzdata/release_updater.ex -lib/elixir/lib/tzdata/lib/tzdata/release_updater_supervisor.ex lib/elixir/lib/tzdata/lib/tzdata/table_data.ex lib/elixir/lib/tzdata/lib/tzdata/table_parser.ex lib/elixir/lib/tzdata/lib/tzdata/tzdata_app.ex lib/elixir/lib/tzdata/lib/tzdata/util.ex -lib/elixir/lib/tzdata/priv/release_ets/.gitkeep -lib/elixir/lib/tzdata/priv/release_ets/2015f.ets +lib/elixir/lib/tzdata/priv/release_ets/2015g.ets %%PORTDOCS%%%%DOCSDIR%%/README.md From owner-svn-ports-head@freebsd.org Wed Oct 7 06:05:12 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 F27359D06CD; Wed, 7 Oct 2015 06:05:12 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF5D9CBB; Wed, 7 Oct 2015 06:05:12 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9765BX5098172; Wed, 7 Oct 2015 06:05:11 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9765BgT098171; Wed, 7 Oct 2015 06:05:11 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201510070605.t9765BgT098171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 7 Oct 2015 06:05:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398748 - 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: Wed, 07 Oct 2015 06:05:13 -0000 Author: gahr Date: Wed Oct 7 06:05:11 2015 New Revision: 398748 URL: https://svnweb.freebsd.org/changeset/ports/398748 Log: devel/catch - fix DISTVERSION Modified: head/devel/catch/Makefile Modified: head/devel/catch/Makefile ============================================================================== --- head/devel/catch/Makefile Wed Oct 7 05:21:54 2015 (r398747) +++ head/devel/catch/Makefile Wed Oct 7 06:05:11 2015 (r398748) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= catch -DISTVERSION= 1.2.1-develop.14 +DISTVERSION= v1.2.1-develop.14 CATEGORIES= devel MAINTAINER= gahr@FreeBSD.org From owner-svn-ports-head@freebsd.org Wed Oct 7 07:19:27 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 8FC0B9D0083; Wed, 7 Oct 2015 07:19:27 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A176D29; Wed, 7 Oct 2015 07:19:27 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t977JQhd019101; Wed, 7 Oct 2015 07:19:26 GMT (envelope-from des@FreeBSD.org) Received: (from des@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t977JQR4019099; Wed, 7 Oct 2015 07:19:26 GMT (envelope-from des@FreeBSD.org) Message-Id: <201510070719.t977JQR4019099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: des set sender to des@FreeBSD.org using -f From: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= Date: Wed, 7 Oct 2015 07:19:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398749 - in head/security: cyrus-sasl2-gssapi cyrus-sasl2-gssapi/files cyrus-sasl2/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: Wed, 07 Oct 2015 07:19:27 -0000 Author: des Date: Wed Oct 7 07:19:26 2015 New Revision: 398749 URL: https://svnweb.freebsd.org/changeset/ports/398749 Log: r398691 placed the patch in the wrong directory, where it had no effect. Move it to the master port and bump the subport again. Reviewed by: ume@ Added: head/security/cyrus-sasl2/files/patch-plugins_gssapi.c - copied, changed from r398707, head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c Deleted: head/security/cyrus-sasl2-gssapi/files/ Modified: head/security/cyrus-sasl2-gssapi/Makefile Modified: head/security/cyrus-sasl2-gssapi/Makefile ============================================================================== --- head/security/cyrus-sasl2-gssapi/Makefile Wed Oct 7 06:05:11 2015 (r398748) +++ head/security/cyrus-sasl2-gssapi/Makefile Wed Oct 7 07:19:26 2015 (r398749) @@ -2,7 +2,7 @@ PORTNAME= gssapi PORTVERSION= 2.1.26 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-sasl/ \ http://cyrusimap.org/releases/ Copied and modified: head/security/cyrus-sasl2/files/patch-plugins_gssapi.c (from r398707, head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c) ============================================================================== --- head/security/cyrus-sasl2-gssapi/files/patch-plugins_gssapi.c Tue Oct 6 17:20:23 2015 (r398707, copy source) +++ head/security/cyrus-sasl2/files/patch-plugins_gssapi.c Wed Oct 7 07:19:26 2015 (r398749) @@ -1,8 +1,6 @@ -diff --git a/plugins/gssapi.c b/plugins/gssapi.c -index 2fd1b3b..0992912 100644 ---- a/plugins/gssapi.c -+++ b/plugins/gssapi.c -@@ -1490,8 +1490,10 @@ static int gssapi_client_mech_step(void *conn_context, +--- plugins/gssapi.c.orig ++++ plugins/gssapi.c +@@ -1490,8 +1490,10 @@ *clientout = NULL; *clientoutlen = 0; From owner-svn-ports-head@freebsd.org Wed Oct 7 08:13:54 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 216169B6B5F; Wed, 7 Oct 2015 08:13:54 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0F28126; Wed, 7 Oct 2015 08:13:53 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t978DqQ6036469; Wed, 7 Oct 2015 08:13:52 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t978DqDA036467; Wed, 7 Oct 2015 08:13:52 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201510070813.t978DqDA036467@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Wed, 7 Oct 2015 08:13:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398751 - head/www/uwsgi 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: Wed, 07 Oct 2015 08:13:54 -0000 Author: demon Date: Wed Oct 7 08:13:52 2015 New Revision: 398751 URL: https://svnweb.freebsd.org/changeset/ports/398751 Log: Update to 2.0.11.2 Modified: head/www/uwsgi/Makefile head/www/uwsgi/distinfo Modified: head/www/uwsgi/Makefile ============================================================================== --- head/www/uwsgi/Makefile Wed Oct 7 07:58:12 2015 (r398750) +++ head/www/uwsgi/Makefile Wed Oct 7 08:13:52 2015 (r398751) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= uwsgi -PORTVERSION= 2.0.11.1 +PORTVERSION= 2.0.11.2 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ Modified: head/www/uwsgi/distinfo ============================================================================== --- head/www/uwsgi/distinfo Wed Oct 7 07:58:12 2015 (r398750) +++ head/www/uwsgi/distinfo Wed Oct 7 08:13:52 2015 (r398751) @@ -1,2 +1,2 @@ -SHA256 (uwsgi-2.0.11.1.tar.gz) = 75a7d3138cfa9cd81a760c2f8a43f3d80961edc8e4f27043dc1412206c926287 -SIZE (uwsgi-2.0.11.1.tar.gz) = 782091 +SHA256 (uwsgi-2.0.11.2.tar.gz) = 0b889b0b4d2dd3f6625df28cb0b86ec44a68d074ede2d0dfad0b91e88914885c +SIZE (uwsgi-2.0.11.2.tar.gz) = 782133 From owner-svn-ports-head@freebsd.org Wed Oct 7 08:18:31 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 3E79F9B6F68; Wed, 7 Oct 2015 08:18:31 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09D633F0; Wed, 7 Oct 2015 08:18:30 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t978IUmM036775; Wed, 7 Oct 2015 08:18:30 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t978ITRh036773; Wed, 7 Oct 2015 08:18:29 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201510070818.t978ITRh036773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Wed, 7 Oct 2015 08:18:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398752 - head/www/mod_proxy_uwsgi 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: Wed, 07 Oct 2015 08:18:31 -0000 Author: demon Date: Wed Oct 7 08:18:29 2015 New Revision: 398752 URL: https://svnweb.freebsd.org/changeset/ports/398752 Log: Update to 2.0.11.2. Modified: head/www/mod_proxy_uwsgi/Makefile head/www/mod_proxy_uwsgi/distinfo Modified: head/www/mod_proxy_uwsgi/Makefile ============================================================================== --- head/www/mod_proxy_uwsgi/Makefile Wed Oct 7 08:13:52 2015 (r398751) +++ head/www/mod_proxy_uwsgi/Makefile Wed Oct 7 08:18:29 2015 (r398752) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mod_proxy_uwsgi -PORTVERSION= 2.0.11 +PORTVERSION= 2.0.11.2 CATEGORIES= www MASTER_SITES= http://projects.unbit.it/downloads/ DISTNAME= uwsgi-${PORTVERSION} Modified: head/www/mod_proxy_uwsgi/distinfo ============================================================================== --- head/www/mod_proxy_uwsgi/distinfo Wed Oct 7 08:13:52 2015 (r398751) +++ head/www/mod_proxy_uwsgi/distinfo Wed Oct 7 08:18:29 2015 (r398752) @@ -1,2 +1,2 @@ -SHA256 (uwsgi-2.0.11.tar.gz) = 9541e20a4bb0929d3ac3d338b09d028eb278b84671e8c33a7fb1b3a0b82bd726 -SIZE (uwsgi-2.0.11.tar.gz) = 781930 +SHA256 (uwsgi-2.0.11.2.tar.gz) = 0b889b0b4d2dd3f6625df28cb0b86ec44a68d074ede2d0dfad0b91e88914885c +SIZE (uwsgi-2.0.11.2.tar.gz) = 782133 From owner-svn-ports-head@freebsd.org Wed Oct 7 09:42:58 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 23EDE9B9659; Wed, 7 Oct 2015 09:42:58 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E28921121; Wed, 7 Oct 2015 09:42:57 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t979gumS064045; Wed, 7 Oct 2015 09:42:56 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t979gu5a064044; Wed, 7 Oct 2015 09:42:56 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201510070942.t979gu5a064044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 7 Oct 2015 09:42:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398753 - head/graphics/openshadinglanguage 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: Wed, 07 Oct 2015 09:42:58 -0000 Author: danfe Date: Wed Oct 7 09:42:56 2015 New Revision: 398753 URL: https://svnweb.freebsd.org/changeset/ports/398753 Log: - Our LLVM ports are built with RTTI support, so it's safe to enable RTTI in OSL as well; this is required for e.g. `graphics/appleseed' - Remove BROKEN on 9.x statement that was added in r390561 for a previous version and was not removed alongside with 1.6.6 update (it builds fine) Approved by: maintainer Modified: head/graphics/openshadinglanguage/Makefile Modified: head/graphics/openshadinglanguage/Makefile ============================================================================== --- head/graphics/openshadinglanguage/Makefile Wed Oct 7 08:18:29 2015 (r398752) +++ head/graphics/openshadinglanguage/Makefile Wed Oct 7 09:42:56 2015 (r398753) @@ -18,13 +18,12 @@ LIB_DEPENDS= libboost_thread.so:${PORTSD libOpenImageIO.so:${PORTSDIR}/graphics/openimageio RUN_DEPENDS= llvm-config34:${PORTSDIR}/devel/llvm34 -BROKEN_FreeBSD_9= does not build - USE_GITHUB= yes GH_ACCOUNT= imageworks GH_PROJECT= OpenShadingLanguage -CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" +CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" \ + -DENABLERTTI:BOOL=ON USE_LDCONFIG= yes USES= bison cmake:outsource From owner-svn-ports-head@freebsd.org Wed Oct 7 09:49:19 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 306C79B9AFC; Wed, 7 Oct 2015 09:49:19 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1CC313AE; Wed, 7 Oct 2015 09:49:18 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t979nI3q064430; Wed, 7 Oct 2015 09:49:18 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t979nHxC064428; Wed, 7 Oct 2015 09:49:17 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510070949.t979nHxC064428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 7 Oct 2015 09:49:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398754 - head/www/kcgi 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: Wed, 07 Oct 2015 09:49:19 -0000 Author: bapt Date: Wed Oct 7 09:49:17 2015 New Revision: 398754 URL: https://svnweb.freebsd.org/changeset/ports/398754 Log: Update to 0.7.3 Mark the port as broken on FreeBSD 9 as it requires capsicum Modified: head/www/kcgi/Makefile head/www/kcgi/distinfo Modified: head/www/kcgi/Makefile ============================================================================== --- head/www/kcgi/Makefile Wed Oct 7 09:42:56 2015 (r398753) +++ head/www/kcgi/Makefile Wed Oct 7 09:49:17 2015 (r398754) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= kcgi -PORTVERSION= 0.7.2 +PORTVERSION= 0.7.3 CATEGORIES= www devel MASTER_SITES= http://kristaps.bsd.lv/kcgi/snapshots/ @@ -14,6 +14,8 @@ USES= tar:tgz OPTIONS_DEFINE= EXAMPLES +BROKEN_FreeBSD_9= Requires capsicum + HAS_CONFIGURE= yes MAKE_ARGS= DATADIR=${EXAMPLESDIR} Modified: head/www/kcgi/distinfo ============================================================================== --- head/www/kcgi/distinfo Wed Oct 7 09:42:56 2015 (r398753) +++ head/www/kcgi/distinfo Wed Oct 7 09:49:17 2015 (r398754) @@ -1,2 +1,2 @@ -SHA256 (kcgi-0.7.2.tgz) = 28523a9d7eb6b1a69d6e47a73b75f5f72b0ad74882111099aaded64b54d0b86c -SIZE (kcgi-0.7.2.tgz) = 108484 +SHA256 (kcgi-0.7.3.tgz) = 0fd765b2dc902bcfe190f101d53de877a1a1b7215a0f583ff5355fc8c312b924 +SIZE (kcgi-0.7.3.tgz) = 108885 From owner-svn-ports-head@freebsd.org Wed Oct 7 09:50: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 E45F59B9C06; Wed, 7 Oct 2015 09:50:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B22CA1844; Wed, 7 Oct 2015 09:50:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t979oJZF064573; Wed, 7 Oct 2015 09:50:19 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t979oJ1p064572; Wed, 7 Oct 2015 09:50:19 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201510070950.t979oJ1p064572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 7 Oct 2015 09:50:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398755 - 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: Wed, 07 Oct 2015 09:50:21 -0000 Author: gahr Date: Wed Oct 7 09:50:19 2015 New Revision: 398755 URL: https://svnweb.freebsd.org/changeset/ports/398755 Log: devel/catch - use DISTVERSIONPREFIX, pet portlint Notified by: Ruslan Makhmatkhanov Modified: head/devel/catch/Makefile Modified: head/devel/catch/Makefile ============================================================================== --- head/devel/catch/Makefile Wed Oct 7 09:49:17 2015 (r398754) +++ head/devel/catch/Makefile Wed Oct 7 09:50:19 2015 (r398755) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= catch -DISTVERSION= v1.2.1-develop.14 +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.1-develop.14 CATEGORIES= devel MAINTAINER= gahr@FreeBSD.org @@ -10,12 +11,13 @@ COMMENT= Header-only test framework for LICENSE= BSL +TEST_DEPENDS= cmake:${PORTSDIR}/devel/cmake + USE_GITHUB= yes GH_ACCOUNT= philsquared GH_PROJECT= Catch NO_BUILD= yes -TEST_DEPENDS= cmake:${PORTSDIR}/devel/cmake PLIST_FILES= include/catch.hpp From owner-svn-ports-head@freebsd.org Wed Oct 7 09:59: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 6D4639D01E8; Wed, 7 Oct 2015 09:59:14 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F3381E9F; Wed, 7 Oct 2015 09:59:14 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t979xDxu067534; Wed, 7 Oct 2015 09:59:13 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t979xCva067528; Wed, 7 Oct 2015 09:59:12 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510070959.t979xCva067528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 7 Oct 2015 09:59:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398756 - in head/devel: gettext gettext-runtime gettext-tools 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: Wed, 07 Oct 2015 09:59:14 -0000 Author: tijl Date: Wed Oct 7 09:59:12 2015 New Revision: 398756 URL: https://svnweb.freebsd.org/changeset/ports/398756 Log: - Update to 0.19.6 - Set TEST_TARGET PR: 203549 Exp-run by: antoine Approved by: portmgr (antoine) Modified: head/devel/gettext-runtime/Makefile head/devel/gettext-runtime/pkg-plist head/devel/gettext-tools/Makefile head/devel/gettext-tools/pkg-plist head/devel/gettext/Makefile.common head/devel/gettext/distinfo Modified: head/devel/gettext-runtime/Makefile ============================================================================== --- head/devel/gettext-runtime/Makefile Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext-runtime/Makefile Wed Oct 7 09:59:12 2015 (r398756) @@ -20,6 +20,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-csharp --disable-java --with-included-gettext \ ac_cv_lib_rt_sched_yield=no INSTALL_TARGET= install-strip +TEST_TARGET= check USES= charsetfix cpe iconv libtool tar:xz USE_LDCONFIG= yes WRKSRC_SUBDIR= gettext-runtime @@ -48,7 +49,4 @@ post-patch: post-install: ${LN} -s libintl.so.8 ${STAGEDIR}${PREFIX}/lib/libintl.so.9 -regression-test: build - @(cd ${WRKSRC} && ${MAKE_CMD} check) - .include Modified: head/devel/gettext-runtime/pkg-plist ============================================================================== --- head/devel/gettext-runtime/pkg-plist Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext-runtime/pkg-plist Wed Oct 7 09:59:12 2015 (r398756) @@ -11,7 +11,7 @@ lib/libasprintf.so.0.0.0 lib/libintl.a lib/libintl.so lib/libintl.so.8 -lib/libintl.so.8.1.3 +lib/libintl.so.8.1.4 lib/libintl.so.9 man/man1/envsubst.1.gz man/man1/gettext.1.gz Modified: head/devel/gettext-tools/Makefile ============================================================================== --- head/devel/gettext-tools/Makefile Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext-tools/Makefile Wed Oct 7 09:59:12 2015 (r398756) @@ -24,6 +24,7 @@ CONFIGURE_ARGS= --disable-csharp --disab CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +TEST_TARGET= check USES= charsetfix cpe gettext-runtime iconv libtool tar:xz USE_LDCONFIG= yes WRKSRC_SUBDIR= gettext-tools @@ -65,7 +66,4 @@ post-patch: @${REINPLACE_CMD} 's,[^ ]*libasprintf.la,-lasprintf,' \ ${WRKSRC}/tests/lang-c++ -regression-test: build - @(cd ${WRKSRC} && ${MAKE_CMD} check) - .include Modified: head/devel/gettext-tools/pkg-plist ============================================================================== --- head/devel/gettext-tools/pkg-plist Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext-tools/pkg-plist Wed Oct 7 09:59:12 2015 (r398756) @@ -17,13 +17,13 @@ bin/msguniq bin/recode-sr-latin bin/xgettext include/gettext-po.h -lib/libgettextlib-0.19.5.1.so +lib/libgettextlib-0.19.6.so lib/libgettextlib.so lib/libgettextpo.a lib/libgettextpo.so lib/libgettextpo.so.0 lib/libgettextpo.so.0.5.3 -lib/libgettextsrc-0.19.5.1.so +lib/libgettextsrc-0.19.6.so lib/libgettextsrc.so lib/gettext/cldr-plurals lib/gettext/hostname Modified: head/devel/gettext/Makefile.common ============================================================================== --- head/devel/gettext/Makefile.common Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext/Makefile.common Wed Oct 7 09:59:12 2015 (r398756) @@ -4,7 +4,7 @@ # experimental ports run. Untested commits may be backed out at portmgr's # discretion. -PORTVERSION= 0.19.5.1 +PORTVERSION= 0.19.6 PORTREVISION?= 0 # Leave this zero. Set in Makefile instead. CATEGORIES= devel MASTER_SITES= GNU/gettext Modified: head/devel/gettext/distinfo ============================================================================== --- head/devel/gettext/distinfo Wed Oct 7 09:50:19 2015 (r398755) +++ head/devel/gettext/distinfo Wed Oct 7 09:59:12 2015 (r398756) @@ -1,2 +1,2 @@ -SHA256 (gettext-0.19.5.1.tar.xz) = 66da00dc2c810d733b1f55a2a4af5cb669e2ee4259937d50a51d5614cdad323d -SIZE (gettext-0.19.5.1.tar.xz) = 6873540 +SHA256 (gettext-0.19.6.tar.xz) = 9b95816620fd1168cb4eeca0e9dc0ffd86e864fc668f76f5e37cc054d6982e51 +SIZE (gettext-0.19.6.tar.xz) = 6878652 From owner-svn-ports-head@freebsd.org Wed Oct 7 12:22:35 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 6FB5A9D01B7; Wed, 7 Oct 2015 12:22:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35CF3893; Wed, 7 Oct 2015 12:22:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97CMYJu010642; Wed, 7 Oct 2015 12:22:34 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97CMYgG010640; Wed, 7 Oct 2015 12:22:34 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201510071222.t97CMYgG010640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 7 Oct 2015 12:22:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398757 - head/security/p5-Crypt-SMIME 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: Wed, 07 Oct 2015 12:22:35 -0000 Author: ehaupt Date: Wed Oct 7 12:22:33 2015 New Revision: 398757 URL: https://svnweb.freebsd.org/changeset/ports/398757 Log: Update to 0.16 Modified: head/security/p5-Crypt-SMIME/Makefile head/security/p5-Crypt-SMIME/distinfo Modified: head/security/p5-Crypt-SMIME/Makefile ============================================================================== --- head/security/p5-Crypt-SMIME/Makefile Wed Oct 7 09:59:12 2015 (r398756) +++ head/security/p5-Crypt-SMIME/Makefile Wed Oct 7 12:22:33 2015 (r398757) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Crypt-SMIME -PORTVERSION= 0.15 -PORTREVISION= 4 +PORTVERSION= 0.16 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/security/p5-Crypt-SMIME/distinfo ============================================================================== --- head/security/p5-Crypt-SMIME/distinfo Wed Oct 7 09:59:12 2015 (r398756) +++ head/security/p5-Crypt-SMIME/distinfo Wed Oct 7 12:22:33 2015 (r398757) @@ -1,2 +1,2 @@ -SHA256 (Crypt-SMIME-0.15.tar.gz) = 0baa9af1209f62c6a409afa4b0ede163b44fe0dc4f5f5627800d46e0b4631e82 -SIZE (Crypt-SMIME-0.15.tar.gz) = 23647 +SHA256 (Crypt-SMIME-0.16.tar.gz) = f4d0f431e18c0750bc0495eccca5f685773df5d37a0f25dbacbfdba16446dbfa +SIZE (Crypt-SMIME-0.16.tar.gz) = 25106 From owner-svn-ports-head@freebsd.org Wed Oct 7 12:39:25 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 587579D0C8E; Wed, 7 Oct 2015 12:39:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2022BC8; Wed, 7 Oct 2015 12:39:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97CdOuP013970; Wed, 7 Oct 2015 12:39:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97CdOtn013969; Wed, 7 Oct 2015 12:39:24 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071239.t97CdOtn013969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 12:39:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398758 - head/games/meandmyshadow 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: Wed, 07 Oct 2015 12:39:25 -0000 Author: amdmi3 Date: Wed Oct 7 12:39:23 2015 New Revision: 398758 URL: https://svnweb.freebsd.org/changeset/ports/398758 Log: - Switch to USES=libarchive Modified: head/games/meandmyshadow/Makefile Modified: head/games/meandmyshadow/Makefile ============================================================================== --- head/games/meandmyshadow/Makefile Wed Oct 7 12:22:33 2015 (r398757) +++ head/games/meandmyshadow/Makefile Wed Oct 7 12:39:23 2015 (r398758) @@ -3,7 +3,7 @@ PORTNAME= meandmyshadow PORTVERSION= 0.4.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -15,7 +15,7 @@ LICENSE= GPLv3 LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl -USES= cmake +USES= cmake libarchive USE_SDL= sdl ttf image mixer image gfx WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} From owner-svn-ports-head@freebsd.org Wed Oct 7 12:45:36 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 EC76F9D115B; Wed, 7 Oct 2015 12:45:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B270C9A3; Wed, 7 Oct 2015 12:45:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97CjZ6q016897; Wed, 7 Oct 2015 12:45:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97CjZ0v016895; Wed, 7 Oct 2015 12:45:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071245.t97CjZ0v016895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 12:45:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398759 - head/www/cakephp13 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: Wed, 07 Oct 2015 12:45:37 -0000 Author: amdmi3 Date: Wed Oct 7 12:45:35 2015 New Revision: 398759 URL: https://svnweb.freebsd.org/changeset/ports/398759 Log: - Handle owner/group in plist, fixing install as non-root - Don't add needless @exec's to plist for tasks already done in Makefile - Add NO_ARCH PR: 203594 Submitted by: amdmi3 Approved by: theis@gmx.at (maintainer) Modified: head/www/cakephp13/Makefile head/www/cakephp13/pkg-plist Modified: head/www/cakephp13/Makefile ============================================================================== --- head/www/cakephp13/Makefile Wed Oct 7 12:39:23 2015 (r398758) +++ head/www/cakephp13/Makefile Wed Oct 7 12:45:35 2015 (r398759) @@ -18,6 +18,7 @@ PORTDOCS= README CONFLICTS= cakephp-1[12]-* cakephp-2?-.* cakephp-2.?.* NO_BUILD= yes +NO_ARCH= yes USES= gettext USE_PHP= session WANT_PHP_WEB= yes @@ -75,7 +76,8 @@ CONF= cakephp-${PROD}${CGI_EXT}.conf SUB_FILES+= ${CONF} PLIST_SUB+= CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \ - HTACCESS=${HTACCESS} APDEP=${APDEP} + HTACCESS=${HTACCESS} APDEP=${APDEP} \ + WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} DB_DEFINED= no @@ -147,26 +149,16 @@ do-install: # as noted by: # http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44 @${FIND} ${STAGEDIR}${WWWDIR} -type f -name .htaccess -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST} .endif # Get rid of the empty placeholder files @${FIND} ${STAGEDIR}${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} # Fix the permissions of the Cake console script @${CHMOD} 755 ${STAGEDIR}${WWWDIR}/${CAKE_CONSOLE} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST} post-install: @for i in ${CAKE_CONF_FILES}; do \ Modified: head/www/cakephp13/pkg-plist ============================================================================== --- head/www/cakephp13/pkg-plist Wed Oct 7 12:39:23 2015 (r398758) +++ head/www/cakephp13/pkg-plist Wed Oct 7 12:45:35 2015 (r398759) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%HTACCESS%%%%WWWDIR%%/.htaccess %%HTACCESS%%%%WWWDIR%%/app/.htaccess @sample %%WWWDIR%%/app/config/acl.ini.php.sample @@ -693,351 +695,353 @@ %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme/img/test.jpg %%WWWDIR%%/index.php %%APDEP%%%%CONFDIR%%/cakephp.conf -@dirrm %%WWWDIR%%/vendors/shells/templates -@dirrm %%WWWDIR%%/vendors/shells/tasks -@dirrm %%WWWDIR%%/vendors/shells -@dirrm %%WWWDIR%%/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme/img -@dirrm %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme/css -@dirrm %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/webroot/theme -@dirrm %%WWWDIR%%/cake/tests/test_app/webroot -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/pdfs -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/js/one -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/js -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/img -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/flash -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/css -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/elements -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme -@dirrm %%WWWDIR%%/cake/tests/test_app/views/themed -@dirrm %%WWWDIR%%/cake/tests/test_app/views/tests_apps -@dirrm %%WWWDIR%%/cake/tests/test_app/views/scaffolds -@dirrm %%WWWDIR%%/cake/tests/test_app/views/posts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/pages -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/xml -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/rss -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/js -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/views/errors -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/nocache -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/text -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email/html -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements/email -@dirrm %%WWWDIR%%/cake/tests/test_app/views/elements -@dirrm %%WWWDIR%%/cake/tests/test_app/views -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/somename -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates/test/classes -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates/test -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/img -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/css -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors/Test -@dirrm %%WWWDIR%%/cake/tests/test_app/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/tmp -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/pdfs -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/js/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/js -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/img -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/flash -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/css -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/elements -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources/test -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources/dbo -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/behaviors -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs/log -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs/cache -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/config/schema -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/config -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot/js/one -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot/js -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js -@dirrm %%WWWDIR%%/cake/tests/test_app/plugins -@dirrm %%WWWDIR%%/cake/tests/test_app/models/datasources/test -@dirrm %%WWWDIR%%/cake/tests/test_app/models/datasources -@dirrm %%WWWDIR%%/cake/tests/test_app/models/behaviors -@dirrm %%WWWDIR%%/cake/tests/test_app/models -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/time_test -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/ja_jp -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/cache_test_po/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/tests/test_app/locale/cache_test_po -@dirrm %%WWWDIR%%/cake/tests/test_app/locale -@dirrm %%WWWDIR%%/cake/tests/test_app/libs/log -@dirrm %%WWWDIR%%/cake/tests/test_app/libs/cache -@dirrm %%WWWDIR%%/cake/tests/test_app/libs -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers/components -@dirrm %%WWWDIR%%/cake/tests/test_app/controllers -@dirrm %%WWWDIR%%/cake/tests/test_app/config -@dirrm %%WWWDIR%%/cake/tests/test_app -@dirrm %%WWWDIR%%/cake/tests/lib/templates -@dirrm %%WWWDIR%%/cake/tests/lib/reporter -@dirrm %%WWWDIR%%/cake/tests/lib -@dirrm %%WWWDIR%%/cake/tests/groups -@dirrm %%WWWDIR%%/cake/tests/fixtures -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view/helpers -@dirrm %%WWWDIR%%/cake/tests/cases/libs/view -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/datasources -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/tests/cases/libs/model -@dirrm %%WWWDIR%%/cake/tests/cases/libs/log -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller/components -@dirrm %%WWWDIR%%/cake/tests/cases/libs/controller -@dirrm %%WWWDIR%%/cake/tests/cases/libs/cache -@dirrm %%WWWDIR%%/cake/tests/cases/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs/tasks -@dirrm %%WWWDIR%%/cake/tests/cases/console/libs -@dirrm %%WWWDIR%%/cake/tests/cases/console -@dirrm %%WWWDIR%%/cake/tests/cases -@dirrm %%WWWDIR%%/cake/tests -@dirrm %%WWWDIR%%/cake/libs/view/scaffolds -@dirrm %%WWWDIR%%/cake/libs/view/pages -@dirrm %%WWWDIR%%/cake/libs/view/layouts/xml -@dirrm %%WWWDIR%%/cake/libs/view/layouts/rss -@dirrm %%WWWDIR%%/cake/libs/view/layouts/js -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/text -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email/html -@dirrm %%WWWDIR%%/cake/libs/view/layouts/email -@dirrm %%WWWDIR%%/cake/libs/view/layouts -@dirrm %%WWWDIR%%/cake/libs/view/helpers -@dirrm %%WWWDIR%%/cake/libs/view/errors -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/text -@dirrm %%WWWDIR%%/cake/libs/view/elements/email/html -@dirrm %%WWWDIR%%/cake/libs/view/elements/email -@dirrm %%WWWDIR%%/cake/libs/view/elements -@dirrm %%WWWDIR%%/cake/libs/view -@dirrm %%WWWDIR%%/cake/libs/model/datasources/dbo -@dirrm %%WWWDIR%%/cake/libs/model/datasources -@dirrm %%WWWDIR%%/cake/libs/model/behaviors -@dirrm %%WWWDIR%%/cake/libs/model -@dirrm %%WWWDIR%%/cake/libs/log -@dirrm %%WWWDIR%%/cake/libs/controller/components -@dirrm %%WWWDIR%%/cake/libs/controller -@dirrm %%WWWDIR%%/cake/libs/cache -@dirrm %%WWWDIR%%/cake/libs -@dirrm %%WWWDIR%%/cake/console/templates/skel/webroot/js -@dirrm %%WWWDIR%%/cake/console/templates/skel/webroot/img -@dirrm %%WWWDIR%%/cake/console/templates/skel/webroot/css -@dirrm %%WWWDIR%%/cake/console/templates/skel/webroot -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/scaffolds -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/pages -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/xml -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/rss -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/js -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/email/text -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/email/html -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts/email -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/layouts -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/helpers -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/errors -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/elements/email/text -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/elements/email/html -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/elements/email -@dirrm %%WWWDIR%%/cake/console/templates/skel/views/elements -@dirrm %%WWWDIR%%/cake/console/templates/skel/views -@dirrm %%WWWDIR%%/cake/console/templates/skel/vendors/shells/tasks -@dirrm %%WWWDIR%%/cake/console/templates/skel/vendors/shells -@dirrm %%WWWDIR%%/cake/console/templates/skel/vendors -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/tests -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/sessions -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/logs -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/cache/views -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/cache/models -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp/cache -@dirrmtry %%WWWDIR%%/cake/console/templates/skel/tmp -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/groups -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/fixtures -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/shells -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/models -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/helpers -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/datasources -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/controllers -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/components -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases/behaviors -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests/cases -@dirrm %%WWWDIR%%/cake/console/templates/skel/tests -@dirrm %%WWWDIR%%/cake/console/templates/skel/plugins -@dirrm %%WWWDIR%%/cake/console/templates/skel/models/datasources -@dirrm %%WWWDIR%%/cake/console/templates/skel/models/behaviors -@dirrm %%WWWDIR%%/cake/console/templates/skel/models -@dirrm %%WWWDIR%%/cake/console/templates/skel/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/cake/console/templates/skel/locale/eng -@dirrm %%WWWDIR%%/cake/console/templates/skel/locale -@dirrm %%WWWDIR%%/cake/console/templates/skel/libs -@dirrm %%WWWDIR%%/cake/console/templates/skel/controllers/components -@dirrm %%WWWDIR%%/cake/console/templates/skel/controllers -@dirrm %%WWWDIR%%/cake/console/templates/skel/config/schema -@dirrm %%WWWDIR%%/cake/console/templates/skel/config -@dirrm %%WWWDIR%%/cake/console/templates/skel -@dirrm %%WWWDIR%%/cake/console/templates/default/views -@dirrm %%WWWDIR%%/cake/console/templates/default/classes -@dirrm %%WWWDIR%%/cake/console/templates/default/actions -@dirrm %%WWWDIR%%/cake/console/templates/default -@dirrm %%WWWDIR%%/cake/console/templates -@dirrm %%WWWDIR%%/cake/console/libs/tasks -@dirrm %%WWWDIR%%/cake/console/libs -@dirrm %%WWWDIR%%/cake/console -@dirrm %%WWWDIR%%/cake/config/unicode/casefolding -@dirrm %%WWWDIR%%/cake/config/unicode -@dirrm %%WWWDIR%%/cake/config -@dirrm %%WWWDIR%%/cake -@dirrm %%WWWDIR%%/app/webroot/js -@dirrm %%WWWDIR%%/app/webroot/img -@dirrm %%WWWDIR%%/app/webroot/files -@dirrm %%WWWDIR%%/app/webroot/css -@dirrm %%WWWDIR%%/app/webroot -@dirrm %%WWWDIR%%/app/views/scaffolds -@dirrm %%WWWDIR%%/app/views/layouts/xml -@dirrm %%WWWDIR%%/app/views/layouts/rss -@dirrm %%WWWDIR%%/app/views/layouts/js -@dirrm %%WWWDIR%%/app/views/layouts/email/text -@dirrm %%WWWDIR%%/app/views/layouts/email/html -@dirrm %%WWWDIR%%/app/views/layouts/email -@dirrm %%WWWDIR%%/app/views/layouts -@dirrm %%WWWDIR%%/app/views/pages -@dirrm %%WWWDIR%%/app/views/helpers -@dirrm %%WWWDIR%%/app/views/errors -@dirrm %%WWWDIR%%/app/views/elements/email/text -@dirrm %%WWWDIR%%/app/views/elements/email/html -@dirrm %%WWWDIR%%/app/views/elements/email -@dirrm %%WWWDIR%%/app/views/elements -@dirrm %%WWWDIR%%/app/views -@dirrm %%WWWDIR%%/app/vendors/shells/templates -@dirrm %%WWWDIR%%/app/vendors/shells/tasks -@dirrm %%WWWDIR%%/app/vendors/shells -@dirrm %%WWWDIR%%/app/vendors -@dirrmtry %%WWWDIR%%/app/tmp/tests -@dirrmtry %%WWWDIR%%/app/tmp/sessions -@dirrmtry %%WWWDIR%%/app/tmp/logs -@dirrmtry %%WWWDIR%%/app/tmp/cache/views -@dirrmtry %%WWWDIR%%/app/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/app/tmp/cache/models -@dirrmtry %%WWWDIR%%/app/tmp/cache -@dirrmtry %%WWWDIR%%/app/tmp -@dirrm %%WWWDIR%%/app/tests/groups -@dirrm %%WWWDIR%%/app/tests/fixtures -@dirrm %%WWWDIR%%/app/tests/cases/models -@dirrm %%WWWDIR%%/app/tests/cases/helpers -@dirrm %%WWWDIR%%/app/tests/cases/controllers -@dirrm %%WWWDIR%%/app/tests/cases/components -@dirrm %%WWWDIR%%/app/tests/cases/behaviors -@dirrm %%WWWDIR%%/app/tests/cases -@dirrm %%WWWDIR%%/app/tests -@dirrm %%WWWDIR%%/app/plugins -@dirrm %%WWWDIR%%/app/models/datasources -@dirrm %%WWWDIR%%/app/models/behaviors -@dirrm %%WWWDIR%%/app/models -@dirrm %%WWWDIR%%/app/locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/app/locale/eng -@dirrm %%WWWDIR%%/app/locale -@dirrm %%WWWDIR%%/app/libs -@dirrm %%WWWDIR%%/app/controllers/components -@dirrm %%WWWDIR%%/app/controllers -@dirrm %%WWWDIR%%/app/config/schema -@dirrmtry %%WWWDIR%%/app/config -@dirrmtry %%WWWDIR%%/app -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/vendors/shells/templates +@dir %%WWWDIR%%/vendors/shells/tasks +@dir %%WWWDIR%%/vendors/shells +@dir %%WWWDIR%%/vendors +@dir %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme/img +@dir %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme/css +@dir %%WWWDIR%%/cake/tests/test_app/webroot/theme/test_theme +@dir %%WWWDIR%%/cake/tests/test_app/webroot/theme +@dir %%WWWDIR%%/cake/tests/test_app/webroot +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/pdfs +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/js/one +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/js +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/img +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/flash +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot/css +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/webroot +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/posts +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/tests +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/layouts +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins/test_plugin +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/plugins +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/layouts +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme/elements +@dir %%WWWDIR%%/cake/tests/test_app/views/themed/test_theme +@dir %%WWWDIR%%/cake/tests/test_app/views/themed +@dir %%WWWDIR%%/cake/tests/test_app/views/tests_apps +@dir %%WWWDIR%%/cake/tests/test_app/views/scaffolds +@dir %%WWWDIR%%/cake/tests/test_app/views/posts +@dir %%WWWDIR%%/cake/tests/test_app/views/pages +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/xml +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/rss +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/js +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/email/text +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/email/html +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts/email +@dir %%WWWDIR%%/cake/tests/test_app/views/layouts +@dir %%WWWDIR%%/cake/tests/test_app/views/helpers +@dir %%WWWDIR%%/cake/tests/test_app/views/errors +@dir %%WWWDIR%%/cake/tests/test_app/views/elements/nocache +@dir %%WWWDIR%%/cake/tests/test_app/views/elements/email/text +@dir %%WWWDIR%%/cake/tests/test_app/views/elements/email/html +@dir %%WWWDIR%%/cake/tests/test_app/views/elements/email +@dir %%WWWDIR%%/cake/tests/test_app/views/elements +@dir %%WWWDIR%%/cake/tests/test_app/views +@dir %%WWWDIR%%/cake/tests/test_app/vendors/somename +@dir %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates/test/classes +@dir %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates/test +@dir %%WWWDIR%%/cake/tests/test_app/vendors/shells/templates +@dir %%WWWDIR%%/cake/tests/test_app/vendors/shells/tasks +@dir %%WWWDIR%%/cake/tests/test_app/vendors/shells +@dir %%WWWDIR%%/cake/tests/test_app/vendors/sample +@dir %%WWWDIR%%/cake/tests/test_app/vendors/img +@dir %%WWWDIR%%/cake/tests/test_app/vendors/css +@dir %%WWWDIR%%/cake/tests/test_app/vendors/Test +@dir %%WWWDIR%%/cake/tests/test_app/vendors +@dir %%WWWDIR%%/cake/tests/test_app/tmp +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors/shells +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two/vendors +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin_two +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/pdfs +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/js/test_plugin +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/js +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/img +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/flash +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot/css +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/webroot +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/tests +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/layouts +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/helpers +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views/elements +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/views +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/shells +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors/sample +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/vendors +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources/test +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources/dbo +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/datasources +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models/behaviors +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/models +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale/po +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/locale +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs/log +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs/cache +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/libs +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers/components +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/controllers +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/config/schema +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin/config +@dir %%WWWDIR%%/cake/tests/test_app/plugins/test_plugin +@dir %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot/js/one +@dir %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot/js +@dir %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js/webroot +@dir %%WWWDIR%%/cake/tests/test_app/plugins/plugin_js +@dir %%WWWDIR%%/cake/tests/test_app/plugins +@dir %%WWWDIR%%/cake/tests/test_app/models/datasources/test +@dir %%WWWDIR%%/cake/tests/test_app/models/datasources +@dir %%WWWDIR%%/cake/tests/test_app/models/behaviors +@dir %%WWWDIR%%/cake/tests/test_app/models +@dir %%WWWDIR%%/cake/tests/test_app/locale/time_test +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_9_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_9_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_8_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_8_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_7_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_7_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_6_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_6_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_5_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_5_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_4_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_4_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_3_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_3_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_2_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_2_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_1_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_1_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_14_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_14_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_13_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_13_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_12_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_12_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_11_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_11_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_10_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_10_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_0_po +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/rule_0_mo +@dir %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MONETARY +@dir %%WWWDIR%%/cake/tests/test_app/locale/po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/po +@dir %%WWWDIR%%/cake/tests/test_app/locale/ja_jp +@dir %%WWWDIR%%/cake/tests/test_app/locale/cache_test_po/LC_MESSAGES +@dir %%WWWDIR%%/cake/tests/test_app/locale/cache_test_po +@dir %%WWWDIR%%/cake/tests/test_app/locale +@dir %%WWWDIR%%/cake/tests/test_app/libs/log +@dir %%WWWDIR%%/cake/tests/test_app/libs/cache +@dir %%WWWDIR%%/cake/tests/test_app/libs +@dir %%WWWDIR%%/cake/tests/test_app/controllers/components +@dir %%WWWDIR%%/cake/tests/test_app/controllers +@dir %%WWWDIR%%/cake/tests/test_app/config +@dir %%WWWDIR%%/cake/tests/test_app +@dir %%WWWDIR%%/cake/tests/lib/templates +@dir %%WWWDIR%%/cake/tests/lib/reporter +@dir %%WWWDIR%%/cake/tests/lib +@dir %%WWWDIR%%/cake/tests/groups +@dir %%WWWDIR%%/cake/tests/fixtures +@dir %%WWWDIR%%/cake/tests/cases/libs/view/helpers +@dir %%WWWDIR%%/cake/tests/cases/libs/view +@dir %%WWWDIR%%/cake/tests/cases/libs/model/datasources/dbo +@dir %%WWWDIR%%/cake/tests/cases/libs/model/datasources +@dir %%WWWDIR%%/cake/tests/cases/libs/model/behaviors +@dir %%WWWDIR%%/cake/tests/cases/libs/model +@dir %%WWWDIR%%/cake/tests/cases/libs/log +@dir %%WWWDIR%%/cake/tests/cases/libs/controller/components +@dir %%WWWDIR%%/cake/tests/cases/libs/controller +@dir %%WWWDIR%%/cake/tests/cases/libs/cache +@dir %%WWWDIR%%/cake/tests/cases/libs +@dir %%WWWDIR%%/cake/tests/cases/console/libs/tasks +@dir %%WWWDIR%%/cake/tests/cases/console/libs +@dir %%WWWDIR%%/cake/tests/cases/console +@dir %%WWWDIR%%/cake/tests/cases +@dir %%WWWDIR%%/cake/tests +@dir %%WWWDIR%%/cake/libs/view/scaffolds +@dir %%WWWDIR%%/cake/libs/view/pages +@dir %%WWWDIR%%/cake/libs/view/layouts/xml +@dir %%WWWDIR%%/cake/libs/view/layouts/rss +@dir %%WWWDIR%%/cake/libs/view/layouts/js +@dir %%WWWDIR%%/cake/libs/view/layouts/email/text +@dir %%WWWDIR%%/cake/libs/view/layouts/email/html +@dir %%WWWDIR%%/cake/libs/view/layouts/email +@dir %%WWWDIR%%/cake/libs/view/layouts +@dir %%WWWDIR%%/cake/libs/view/helpers +@dir %%WWWDIR%%/cake/libs/view/errors +@dir %%WWWDIR%%/cake/libs/view/elements/email/text +@dir %%WWWDIR%%/cake/libs/view/elements/email/html +@dir %%WWWDIR%%/cake/libs/view/elements/email +@dir %%WWWDIR%%/cake/libs/view/elements +@dir %%WWWDIR%%/cake/libs/view +@dir %%WWWDIR%%/cake/libs/model/datasources/dbo +@dir %%WWWDIR%%/cake/libs/model/datasources +@dir %%WWWDIR%%/cake/libs/model/behaviors +@dir %%WWWDIR%%/cake/libs/model +@dir %%WWWDIR%%/cake/libs/log +@dir %%WWWDIR%%/cake/libs/controller/components +@dir %%WWWDIR%%/cake/libs/controller +@dir %%WWWDIR%%/cake/libs/cache +@dir %%WWWDIR%%/cake/libs +@dir %%WWWDIR%%/cake/console/templates/skel/webroot/js +@dir %%WWWDIR%%/cake/console/templates/skel/webroot/img +@dir %%WWWDIR%%/cake/console/templates/skel/webroot/css +@dir %%WWWDIR%%/cake/console/templates/skel/webroot +@dir %%WWWDIR%%/cake/console/templates/skel/views/scaffolds +@dir %%WWWDIR%%/cake/console/templates/skel/views/pages +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/xml +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/rss +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/js +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/email/text +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/email/html +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts/email +@dir %%WWWDIR%%/cake/console/templates/skel/views/layouts +@dir %%WWWDIR%%/cake/console/templates/skel/views/helpers +@dir %%WWWDIR%%/cake/console/templates/skel/views/errors +@dir %%WWWDIR%%/cake/console/templates/skel/views/elements/email/text +@dir %%WWWDIR%%/cake/console/templates/skel/views/elements/email/html +@dir %%WWWDIR%%/cake/console/templates/skel/views/elements/email +@dir %%WWWDIR%%/cake/console/templates/skel/views/elements +@dir %%WWWDIR%%/cake/console/templates/skel/views +@dir %%WWWDIR%%/cake/console/templates/skel/vendors/shells/tasks +@dir %%WWWDIR%%/cake/console/templates/skel/vendors/shells +@dir %%WWWDIR%%/cake/console/templates/skel/vendors +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/tests +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/sessions +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/logs +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/cache/views +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/cache/persistent +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/cache/models +@dir %%WWWDIR%%/cake/console/templates/skel/tmp/cache +@dir %%WWWDIR%%/cake/console/templates/skel/tmp +@dir %%WWWDIR%%/cake/console/templates/skel/tests/groups +@dir %%WWWDIR%%/cake/console/templates/skel/tests/fixtures +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/shells +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/models +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/helpers +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/datasources +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/controllers +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/components +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases/behaviors +@dir %%WWWDIR%%/cake/console/templates/skel/tests/cases +@dir %%WWWDIR%%/cake/console/templates/skel/tests +@dir %%WWWDIR%%/cake/console/templates/skel/plugins +@dir %%WWWDIR%%/cake/console/templates/skel/models/datasources +@dir %%WWWDIR%%/cake/console/templates/skel/models/behaviors +@dir %%WWWDIR%%/cake/console/templates/skel/models +@dir %%WWWDIR%%/cake/console/templates/skel/locale/eng/LC_MESSAGES +@dir %%WWWDIR%%/cake/console/templates/skel/locale/eng +@dir %%WWWDIR%%/cake/console/templates/skel/locale +@dir %%WWWDIR%%/cake/console/templates/skel/libs +@dir %%WWWDIR%%/cake/console/templates/skel/controllers/components +@dir %%WWWDIR%%/cake/console/templates/skel/controllers +@dir %%WWWDIR%%/cake/console/templates/skel/config/schema +@dir %%WWWDIR%%/cake/console/templates/skel/config +@dir %%WWWDIR%%/cake/console/templates/skel +@dir %%WWWDIR%%/cake/console/templates/default/views +@dir %%WWWDIR%%/cake/console/templates/default/classes +@dir %%WWWDIR%%/cake/console/templates/default/actions +@dir %%WWWDIR%%/cake/console/templates/default +@dir %%WWWDIR%%/cake/console/templates +@dir %%WWWDIR%%/cake/console/libs/tasks +@dir %%WWWDIR%%/cake/console/libs +@dir %%WWWDIR%%/cake/console +@dir %%WWWDIR%%/cake/config/unicode/casefolding +@dir %%WWWDIR%%/cake/config/unicode +@dir %%WWWDIR%%/cake/config +@dir %%WWWDIR%%/cake +@dir %%WWWDIR%%/app/webroot/js +@dir %%WWWDIR%%/app/webroot/img +@dir %%WWWDIR%%/app/webroot/files +@dir %%WWWDIR%%/app/webroot/css +@dir %%WWWDIR%%/app/webroot +@dir %%WWWDIR%%/app/views/scaffolds +@dir %%WWWDIR%%/app/views/layouts/xml +@dir %%WWWDIR%%/app/views/layouts/rss +@dir %%WWWDIR%%/app/views/layouts/js +@dir %%WWWDIR%%/app/views/layouts/email/text +@dir %%WWWDIR%%/app/views/layouts/email/html +@dir %%WWWDIR%%/app/views/layouts/email +@dir %%WWWDIR%%/app/views/layouts +@dir %%WWWDIR%%/app/views/pages +@dir %%WWWDIR%%/app/views/helpers +@dir %%WWWDIR%%/app/views/errors +@dir %%WWWDIR%%/app/views/elements/email/text +@dir %%WWWDIR%%/app/views/elements/email/html +@dir %%WWWDIR%%/app/views/elements/email +@dir %%WWWDIR%%/app/views/elements +@dir %%WWWDIR%%/app/views +@dir %%WWWDIR%%/app/vendors/shells/templates +@dir %%WWWDIR%%/app/vendors/shells/tasks +@dir %%WWWDIR%%/app/vendors/shells +@dir %%WWWDIR%%/app/vendors +@dir %%WWWDIR%%/app/tmp/tests +@dir %%WWWDIR%%/app/tmp/sessions +@dir %%WWWDIR%%/app/tmp/logs +@dir %%WWWDIR%%/app/tmp/cache/views +@dir %%WWWDIR%%/app/tmp/cache/persistent +@dir %%WWWDIR%%/app/tmp/cache/models +@dir %%WWWDIR%%/app/tmp/cache +@dir %%WWWDIR%%/app/tmp +@dir %%WWWDIR%%/app/tests/groups +@dir %%WWWDIR%%/app/tests/fixtures +@dir %%WWWDIR%%/app/tests/cases/models +@dir %%WWWDIR%%/app/tests/cases/helpers +@dir %%WWWDIR%%/app/tests/cases/controllers +@dir %%WWWDIR%%/app/tests/cases/components +@dir %%WWWDIR%%/app/tests/cases/behaviors +@dir %%WWWDIR%%/app/tests/cases +@dir %%WWWDIR%%/app/tests +@dir %%WWWDIR%%/app/plugins +@dir %%WWWDIR%%/app/models/datasources +@dir %%WWWDIR%%/app/models/behaviors +@dir %%WWWDIR%%/app/models +@dir %%WWWDIR%%/app/locale/eng/LC_MESSAGES +@dir %%WWWDIR%%/app/locale/eng +@dir %%WWWDIR%%/app/locale +@dir %%WWWDIR%%/app/libs +@dir %%WWWDIR%%/app/controllers/components +@dir %%WWWDIR%%/app/controllers +@dir %%WWWDIR%%/app/config/schema +@dir %%WWWDIR%%/app/config +@dir %%WWWDIR%%/app +@dir %%WWWDIR%% +@owner +@group From owner-svn-ports-head@freebsd.org Wed Oct 7 12:45: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 DEBA39D11C7; Wed, 7 Oct 2015 12:45:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FE64A8F; Wed, 7 Oct 2015 12:45:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97Cjlaf017034; Wed, 7 Oct 2015 12:45:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97CjlQ5017032; Wed, 7 Oct 2015 12:45:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071245.t97CjlQ5017032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 12:45:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398760 - head/www/cakephp21 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: Wed, 07 Oct 2015 12:45:49 -0000 Author: amdmi3 Date: Wed Oct 7 12:45:47 2015 New Revision: 398760 URL: https://svnweb.freebsd.org/changeset/ports/398760 Log: - Handle owner/group in plist, fixing install as non-root - Don't add needless @exec's to plist for tasks already done in Makefile - Add NO_ARCH PR: 203595 Submitted by: amdmi3 Approved by: theis@gmx.at (maintainer) Modified: head/www/cakephp21/Makefile head/www/cakephp21/pkg-plist Modified: head/www/cakephp21/Makefile ============================================================================== --- head/www/cakephp21/Makefile Wed Oct 7 12:45:35 2015 (r398759) +++ head/www/cakephp21/Makefile Wed Oct 7 12:45:47 2015 (r398760) @@ -18,6 +18,7 @@ PORTDOCS= README CONFLICTS= cakephp-1?-* cakephp-2[2]-.* cakephp-2.3.* NO_BUILD= yes +NO_ARCH= yes USES= gettext USE_PHP= ctype session WANT_PHP_WEB= yes @@ -83,7 +84,8 @@ CONF= cakephp-${PROD}${CGI_EXT}.conf SUB_FILES+= ${CONF} PLIST_SUB+= CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \ - HTACCESS=${HTACCESS} APDEP=${APDEP} + HTACCESS=${HTACCESS} APDEP=${APDEP} \ + WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} .if ${PORT_OPTIONS:MMYSQL} USE_PHP+= pdo pdo_mysql @@ -147,26 +149,16 @@ do-install: # as noted by: # http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44 @${FIND} ${STAGEDIR}${WWWDIR} -type f -name .htaccess -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST} .endif # Get rid of the empty placeholder files @${FIND} ${STAGEDIR}${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \; - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} # Fix the permissions of the Cake console script @${CHMOD} 755 ${STAGEDIR}${WWWDIR}/${CAKE_CONSOLE} - @${ECHO_CMD} '@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST} post-install: .if ${PORT_OPTIONS:MAP} Modified: head/www/cakephp21/pkg-plist ============================================================================== --- head/www/cakephp21/pkg-plist Wed Oct 7 12:45:35 2015 (r398759) +++ head/www/cakephp21/pkg-plist Wed Oct 7 12:45:47 2015 (r398760) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%HTACCESS%%%%WWWDIR%%/.htaccess %%HTACCESS%%%%WWWDIR%%/app/.htaccess @sample %%WWWDIR%%/app/Config/acl.php.sample @@ -911,401 +913,403 @@ %%WWWDIR%%/lib/Cake/basics.php %%WWWDIR%%/lib/Cake/bootstrap.php %%APDEP%%%%CONFDIR%%/cakephp.conf -@dirrm %%WWWDIR%%/vendors -@dirrm %%WWWDIR%%/plugins -@dirrm %%WWWDIR%%/lib/Cake/View/Scaffolds -@dirrm %%WWWDIR%%/lib/Cake/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/View/Errors -@dirrm %%WWWDIR%%/lib/Cake/View/Elements -@dirrm %%WWWDIR%%/lib/Cake/View -@dirrm %%WWWDIR%%/lib/Cake/Utility -@dirrm %%WWWDIR%%/lib/Cake/TestSuite/templates -@dirrm %%WWWDIR%%/lib/Cake/TestSuite/Reporter -@dirrm %%WWWDIR%%/lib/Cake/TestSuite/Fixture -@dirrm %%WWWDIR%%/lib/Cake/TestSuite/Coverage -@dirrm %%WWWDIR%%/lib/Cake/TestSuite -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme/img -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme/css -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot/img -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/webroot -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/tmp -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/pdfs -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/flash -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Posts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Tests -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Layouts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Layouts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Elements -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/TestsApps/json -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/TestsApps -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Scaffolds -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts/xml -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts/json -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Pages -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/xml -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/rss -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/json -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/js -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails/html -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Errors -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails/html -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Elements/nocache -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View/Elements -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/View -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/somename -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/sample -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/img -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/css -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/Test -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Vendor -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Utility -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Templates -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Config -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/pdfs -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js/test_plugin -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/flash -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/Emails -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/sub_dir -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor/sample -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor/Example -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Utility -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Session -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Log/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Log -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Error -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Custom/Package -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Custom -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Cache/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Cache -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Controller -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Templates -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Config/Schema -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Config -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/one -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/Config -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Plugin -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource/Session -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource/Database -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Model -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/time_test -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_mo -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po/LC_MONETARY -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/ja_jp -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale/cache_test_po -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Locale -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Utility -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Log/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Log -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Cache/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Cache -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Lib -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Error -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Controller -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test/views -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test/classes -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Console -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app/Config -@dirrm %%WWWDIR%%/lib/Cake/Test/test_app -@dirrm %%WWWDIR%%/lib/Cake/Test/Fixture -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/View -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Utility -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/TestSuite -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Routing/Route -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Routing -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Network/Http -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Network/Email -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Network -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource/Session -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource/Database -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Model -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Log/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Log -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/I18n -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Event -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Error -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Core -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component/Acl -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component/Auth -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Controller -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Console -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Configure -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Cache/Engine -@dirrm %%WWWDIR%%/lib/Cake/Test/Case/Cache -@dirrm %%WWWDIR%%/lib/Cake/Test/Case -@dirrm %%WWWDIR%%/lib/Cake/Test -@dirrm %%WWWDIR%%/lib/Cake/Routing/Route -@dirrm %%WWWDIR%%/lib/Cake/Routing -@dirrm %%WWWDIR%%/lib/Cake/Network/Http -@dirrm %%WWWDIR%%/lib/Cake/Network/Email -@dirrm %%WWWDIR%%/lib/Cake/Network -@dirrm %%WWWDIR%%/lib/Cake/Model/Datasource/Session -@dirrm %%WWWDIR%%/lib/Cake/Model/Datasource/Database -@dirrm %%WWWDIR%%/lib/Cake/Model/Datasource -@dirrm %%WWWDIR%%/lib/Cake/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Model -@dirrm %%WWWDIR%%/lib/Cake/Log/Engine -@dirrm %%WWWDIR%%/lib/Cake/Log -@dirrm %%WWWDIR%%/lib/Cake/I18n -@dirrm %%WWWDIR%%/lib/Cake/Event -@dirrm %%WWWDIR%%/lib/Cake/Error -@dirrm %%WWWDIR%%/lib/Cake/Core -@dirrm %%WWWDIR%%/lib/Cake/Controller/Component/Acl -@dirrm %%WWWDIR%%/lib/Cake/Controller/Component/Auth -@dirrm %%WWWDIR%%/lib/Cake/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Controller -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/js -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/files -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/img -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/css -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/tests -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/sessions -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/logs -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/views -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/models -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache -@dirrmtry %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Scaffolds -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Pages -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/xml -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/rss -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/js -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails/html -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Errors -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails/text -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails/html -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Elements -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/View -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Vendor -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Fixture -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/View/Helper -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/View -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Model -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Controller -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Plugin -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model/Datasource -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model/Behavior -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale/eng -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Lib -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Controller/Component -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Controller -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Templates -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Config/Schema -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel/Config -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/skel -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/default/views -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/default/classes -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/default/actions -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates/default -@dirrm %%WWWDIR%%/lib/Cake/Console/Templates -@dirrm %%WWWDIR%%/lib/Cake/Console/Command/Task -@dirrm %%WWWDIR%%/lib/Cake/Console/Command -@dirrm %%WWWDIR%%/lib/Cake/Console -@dirrm %%WWWDIR%%/lib/Cake/Configure -@dirrm %%WWWDIR%%/lib/Cake/Config/unicode/casefolding -@dirrm %%WWWDIR%%/lib/Cake/Config/unicode -@dirrm %%WWWDIR%%/lib/Cake/Config -@dirrm %%WWWDIR%%/lib/Cake/Cache/Engine -@dirrm %%WWWDIR%%/lib/Cake/Cache -@dirrm %%WWWDIR%%/lib/Cake -@dirrm %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/app/webroot/js -@dirrm %%WWWDIR%%/app/webroot/img -@dirrm %%WWWDIR%%/app/webroot/files -@dirrm %%WWWDIR%%/app/webroot/css -@dirrm %%WWWDIR%%/app/webroot -@dirrmtry %%WWWDIR%%/app/tmp/tests -@dirrmtry %%WWWDIR%%/app/tmp/sessions -@dirrmtry %%WWWDIR%%/app/tmp/logs -@dirrmtry %%WWWDIR%%/app/tmp/cache/views -@dirrmtry %%WWWDIR%%/app/tmp/cache/persistent -@dirrmtry %%WWWDIR%%/app/tmp/cache/models -@dirrmtry %%WWWDIR%%/app/tmp/cache -@dirrmtry %%WWWDIR%%/app/tmp -@dirrm %%WWWDIR%%/app/View/Scaffolds -@dirrm %%WWWDIR%%/app/View/Pages -@dirrm %%WWWDIR%%/app/View/Layouts/xml -@dirrm %%WWWDIR%%/app/View/Layouts/rss -@dirrm %%WWWDIR%%/app/View/Layouts/js -@dirrm %%WWWDIR%%/app/View/Layouts/Emails/text -@dirrm %%WWWDIR%%/app/View/Layouts/Emails/html -@dirrm %%WWWDIR%%/app/View/Layouts/Emails -@dirrm %%WWWDIR%%/app/View/Layouts -@dirrm %%WWWDIR%%/app/View/Helper -@dirrm %%WWWDIR%%/app/View/Errors -@dirrm %%WWWDIR%%/app/View/Emails/text -@dirrm %%WWWDIR%%/app/View/Emails/html -@dirrm %%WWWDIR%%/app/View/Emails -@dirrm %%WWWDIR%%/app/View/Elements -@dirrm %%WWWDIR%%/app/View -@dirrm %%WWWDIR%%/app/Vendor -@dirrm %%WWWDIR%%/app/Test/Fixture -@dirrm %%WWWDIR%%/app/Test/Case/View/Helper -@dirrm %%WWWDIR%%/app/Test/Case/View -@dirrm %%WWWDIR%%/app/Test/Case/Model/Behavior -@dirrm %%WWWDIR%%/app/Test/Case/Model -@dirrm %%WWWDIR%%/app/Test/Case/Controller/Component -@dirrm %%WWWDIR%%/app/Test/Case/Controller -@dirrm %%WWWDIR%%/app/Test/Case -@dirrm %%WWWDIR%%/app/Test -@dirrm %%WWWDIR%%/app/Plugin -@dirrm %%WWWDIR%%/app/Model/Datasource -@dirrm %%WWWDIR%%/app/Model/Behavior -@dirrm %%WWWDIR%%/app/Model -@dirrm %%WWWDIR%%/app/Locale/eng/LC_MESSAGES -@dirrm %%WWWDIR%%/app/Locale/eng -@dirrm %%WWWDIR%%/app/Locale -@dirrm %%WWWDIR%%/app/Lib -@dirrm %%WWWDIR%%/app/Controller/Component -@dirrm %%WWWDIR%%/app/Controller -@dirrm %%WWWDIR%%/app/Console/Templates -@dirrm %%WWWDIR%%/app/Console/Command/Task -@dirrm %%WWWDIR%%/app/Console/Command -@dirrm %%WWWDIR%%/app/Console -@dirrm %%WWWDIR%%/app/Config/Schema -@dirrmtry %%WWWDIR%%/app/Config -@dirrmtry %%WWWDIR%%/app -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/vendors +@dir %%WWWDIR%%/plugins +@dir %%WWWDIR%%/lib/Cake/View/Scaffolds +@dir %%WWWDIR%%/lib/Cake/View/Helper +@dir %%WWWDIR%%/lib/Cake/View/Errors +@dir %%WWWDIR%%/lib/Cake/View/Elements +@dir %%WWWDIR%%/lib/Cake/View +@dir %%WWWDIR%%/lib/Cake/Utility +@dir %%WWWDIR%%/lib/Cake/TestSuite/templates +@dir %%WWWDIR%%/lib/Cake/TestSuite/Reporter +@dir %%WWWDIR%%/lib/Cake/TestSuite/Fixture +@dir %%WWWDIR%%/lib/Cake/TestSuite/Coverage +@dir %%WWWDIR%%/lib/Cake/TestSuite +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme/img +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme/css +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme/test_theme +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot/theme +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot/img +@dir %%WWWDIR%%/lib/Cake/Test/test_app/webroot +@dir %%WWWDIR%%/lib/Cake/Test/test_app/tmp +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/pdfs +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/flash +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Posts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Tests +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Layouts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Layouts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme/Elements +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed/TestTheme +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Themed +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/TestsApps/json +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/TestsApps +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Scaffolds +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts/xml +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts/json +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Posts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Pages +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/xml +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/rss +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/json +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/js +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails/text +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails/html +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts/Emails +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Layouts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Helper +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Errors +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails/text +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails/html +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Emails +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Elements/nocache +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View/Elements +@dir %%WWWDIR%%/lib/Cake/Test/test_app/View +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/somename +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/sample +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/img +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/css +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor/Test +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Vendor +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Utility +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Templates +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Config +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPluginTwo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/pdfs +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js/test_plugin +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/flash +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/Emails/text +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/Emails +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Helper +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails/text +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/sub_dir +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/View +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor/sample +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor/Example +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Utility +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Session +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Model +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po/LC_MONETARY +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Locale +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Log/Engine +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Log +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Error +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Custom/Package +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Custom +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Cache/Engine +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Cache +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Lib +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Controller +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Templates +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Command +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Console +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Config/Schema +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin/Config +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/TestPlugin +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/one +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/webroot +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs/Config +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin/PluginJs +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Plugin +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource/Session +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource/Database +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Model/Datasource +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Model +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/time_test +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_9_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_8_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_7_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_6_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_5_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_4_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_3_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_2_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_1_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_14_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_13_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_12_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_11_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_10_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/rule_0_mo +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po/LC_MONETARY +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/ja_jp +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale/cache_test_po +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Locale +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Utility +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Log/Engine +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Log +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Cache/Engine +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib/Cache +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Lib +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Error +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Controller +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test/views +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test/classes +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates/test +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Templates +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console/Command +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Console +@dir %%WWWDIR%%/lib/Cake/Test/test_app/Config +@dir %%WWWDIR%%/lib/Cake/Test/test_app +@dir %%WWWDIR%%/lib/Cake/Test/Fixture +@dir %%WWWDIR%%/lib/Cake/Test/Case/View/Helper +@dir %%WWWDIR%%/lib/Cake/Test/Case/View +@dir %%WWWDIR%%/lib/Cake/Test/Case/Utility +@dir %%WWWDIR%%/lib/Cake/Test/Case/TestSuite +@dir %%WWWDIR%%/lib/Cake/Test/Case/Routing/Route +@dir %%WWWDIR%%/lib/Cake/Test/Case/Routing +@dir %%WWWDIR%%/lib/Cake/Test/Case/Network/Http +@dir %%WWWDIR%%/lib/Cake/Test/Case/Network/Email +@dir %%WWWDIR%%/lib/Cake/Test/Case/Network +@dir %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource/Session +@dir %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource/Database +@dir %%WWWDIR%%/lib/Cake/Test/Case/Model/Datasource +@dir %%WWWDIR%%/lib/Cake/Test/Case/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Test/Case/Model +@dir %%WWWDIR%%/lib/Cake/Test/Case/Log/Engine +@dir %%WWWDIR%%/lib/Cake/Test/Case/Log +@dir %%WWWDIR%%/lib/Cake/Test/Case/I18n +@dir %%WWWDIR%%/lib/Cake/Test/Case/Event +@dir %%WWWDIR%%/lib/Cake/Test/Case/Error +@dir %%WWWDIR%%/lib/Cake/Test/Case/Core +@dir %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component/Acl +@dir %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component/Auth +@dir %%WWWDIR%%/lib/Cake/Test/Case/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Test/Case/Controller +@dir %%WWWDIR%%/lib/Cake/Test/Case/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Test/Case/Console/Command +@dir %%WWWDIR%%/lib/Cake/Test/Case/Console +@dir %%WWWDIR%%/lib/Cake/Test/Case/Configure +@dir %%WWWDIR%%/lib/Cake/Test/Case/Cache/Engine +@dir %%WWWDIR%%/lib/Cake/Test/Case/Cache +@dir %%WWWDIR%%/lib/Cake/Test/Case +@dir %%WWWDIR%%/lib/Cake/Test +@dir %%WWWDIR%%/lib/Cake/Routing/Route +@dir %%WWWDIR%%/lib/Cake/Routing +@dir %%WWWDIR%%/lib/Cake/Network/Http +@dir %%WWWDIR%%/lib/Cake/Network/Email +@dir %%WWWDIR%%/lib/Cake/Network +@dir %%WWWDIR%%/lib/Cake/Model/Datasource/Session +@dir %%WWWDIR%%/lib/Cake/Model/Datasource/Database +@dir %%WWWDIR%%/lib/Cake/Model/Datasource +@dir %%WWWDIR%%/lib/Cake/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Model +@dir %%WWWDIR%%/lib/Cake/Log/Engine +@dir %%WWWDIR%%/lib/Cake/Log +@dir %%WWWDIR%%/lib/Cake/I18n +@dir %%WWWDIR%%/lib/Cake/Event +@dir %%WWWDIR%%/lib/Cake/Error +@dir %%WWWDIR%%/lib/Cake/Core +@dir %%WWWDIR%%/lib/Cake/Controller/Component/Acl +@dir %%WWWDIR%%/lib/Cake/Controller/Component/Auth +@dir %%WWWDIR%%/lib/Cake/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Controller +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/js +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/files +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/img +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot/css +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/webroot +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/tests +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/sessions +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/logs +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/views +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/persistent +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache/models +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp/cache +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/tmp +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Scaffolds +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Pages +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/xml +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/rss +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/js +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails/text +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails/html +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts/Emails +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Layouts +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Helper +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Errors +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails/text +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails/html +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Emails +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View/Elements +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/View +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Vendor +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Fixture +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/View/Helper +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/View +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Model +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case/Controller +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test/Case +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Test +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Plugin +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model/Datasource +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model/Behavior +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Model +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale/eng/LC_MESSAGES +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale/eng +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Locale +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Lib +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Controller/Component +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Controller +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Templates +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console/Command +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Console +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Config/Schema +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel/Config +@dir %%WWWDIR%%/lib/Cake/Console/Templates/skel +@dir %%WWWDIR%%/lib/Cake/Console/Templates/default/views +@dir %%WWWDIR%%/lib/Cake/Console/Templates/default/classes +@dir %%WWWDIR%%/lib/Cake/Console/Templates/default/actions +@dir %%WWWDIR%%/lib/Cake/Console/Templates/default +@dir %%WWWDIR%%/lib/Cake/Console/Templates +@dir %%WWWDIR%%/lib/Cake/Console/Command/Task +@dir %%WWWDIR%%/lib/Cake/Console/Command +@dir %%WWWDIR%%/lib/Cake/Console +@dir %%WWWDIR%%/lib/Cake/Configure +@dir %%WWWDIR%%/lib/Cake/Config/unicode/casefolding +@dir %%WWWDIR%%/lib/Cake/Config/unicode +@dir %%WWWDIR%%/lib/Cake/Config +@dir %%WWWDIR%%/lib/Cake/Cache/Engine +@dir %%WWWDIR%%/lib/Cake/Cache +@dir %%WWWDIR%%/lib/Cake +@dir %%WWWDIR%%/lib +@dir %%WWWDIR%%/app/webroot/js +@dir %%WWWDIR%%/app/webroot/img +@dir %%WWWDIR%%/app/webroot/files +@dir %%WWWDIR%%/app/webroot/css +@dir %%WWWDIR%%/app/webroot +@dir %%WWWDIR%%/app/tmp/tests +@dir %%WWWDIR%%/app/tmp/sessions +@dir %%WWWDIR%%/app/tmp/logs +@dir %%WWWDIR%%/app/tmp/cache/views +@dir %%WWWDIR%%/app/tmp/cache/persistent +@dir %%WWWDIR%%/app/tmp/cache/models +@dir %%WWWDIR%%/app/tmp/cache +@dir %%WWWDIR%%/app/tmp +@dir %%WWWDIR%%/app/View/Scaffolds +@dir %%WWWDIR%%/app/View/Pages +@dir %%WWWDIR%%/app/View/Layouts/xml +@dir %%WWWDIR%%/app/View/Layouts/rss +@dir %%WWWDIR%%/app/View/Layouts/js +@dir %%WWWDIR%%/app/View/Layouts/Emails/text +@dir %%WWWDIR%%/app/View/Layouts/Emails/html +@dir %%WWWDIR%%/app/View/Layouts/Emails +@dir %%WWWDIR%%/app/View/Layouts +@dir %%WWWDIR%%/app/View/Helper +@dir %%WWWDIR%%/app/View/Errors +@dir %%WWWDIR%%/app/View/Emails/text +@dir %%WWWDIR%%/app/View/Emails/html +@dir %%WWWDIR%%/app/View/Emails +@dir %%WWWDIR%%/app/View/Elements +@dir %%WWWDIR%%/app/View +@dir %%WWWDIR%%/app/Vendor +@dir %%WWWDIR%%/app/Test/Fixture +@dir %%WWWDIR%%/app/Test/Case/View/Helper +@dir %%WWWDIR%%/app/Test/Case/View +@dir %%WWWDIR%%/app/Test/Case/Model/Behavior +@dir %%WWWDIR%%/app/Test/Case/Model +@dir %%WWWDIR%%/app/Test/Case/Controller/Component +@dir %%WWWDIR%%/app/Test/Case/Controller +@dir %%WWWDIR%%/app/Test/Case +@dir %%WWWDIR%%/app/Test +@dir %%WWWDIR%%/app/Plugin +@dir %%WWWDIR%%/app/Model/Datasource +@dir %%WWWDIR%%/app/Model/Behavior +@dir %%WWWDIR%%/app/Model +@dir %%WWWDIR%%/app/Locale/eng/LC_MESSAGES +@dir %%WWWDIR%%/app/Locale/eng +@dir %%WWWDIR%%/app/Locale +@dir %%WWWDIR%%/app/Lib +@dir %%WWWDIR%%/app/Controller/Component +@dir %%WWWDIR%%/app/Controller +@dir %%WWWDIR%%/app/Console/Templates +@dir %%WWWDIR%%/app/Console/Command/Task +@dir %%WWWDIR%%/app/Console/Command +@dir %%WWWDIR%%/app/Console +@dir %%WWWDIR%%/app/Config/Schema +@dir %%WWWDIR%%/app/Config +@dir %%WWWDIR%%/app +@dir %%WWWDIR%% +@owner +@group From owner-svn-ports-head@freebsd.org Wed Oct 7 12:50: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 191939D14B9; Wed, 7 Oct 2015 12:50:44 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6CF7CA6; Wed, 7 Oct 2015 12:50:43 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97Cohtj017913; Wed, 7 Oct 2015 12:50:43 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97CohHB017912; Wed, 7 Oct 2015 12:50:43 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510071250.t97CohHB017912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 7 Oct 2015 12:50:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398761 - head/math/py-matplotlib 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: Wed, 07 Oct 2015 12:50:44 -0000 Author: olgeni Date: Wed Oct 7 12:50:42 2015 New Revision: 398761 URL: https://svnweb.freebsd.org/changeset/ports/398761 Log: Unbreak math/py-matplotlib when some options are disabled (original PR). The previous version tried to ${STRIP} non-existing files. Some additional fixes: - Fix WXAGGBACKEND_VARS, which was overwritten and broke the WX build - Fix permissions in .py files - Sort entries in post-install - Whitespace fixes PR: 203417 Submitted by: Tomi Kause Reviewed by: olgeni Approved by: maintainer Modified: head/math/py-matplotlib/Makefile Modified: head/math/py-matplotlib/Makefile ============================================================================== --- head/math/py-matplotlib/Makefile Wed Oct 7 12:45:47 2015 (r398760) +++ head/math/py-matplotlib/Makefile Wed Oct 7 12:50:42 2015 (r398761) @@ -24,7 +24,7 @@ USES= pkgconfig python shebangfix uniqu USE_PYTHON= autoplist distutils CFLAGS+= -I${LOCALBASE}/include -OPTIONS_DEFINE= EXAMPLES GTKBACKEND GTKAGGBACKEND TKAGGBACKEND WXAGGBACKEND +OPTIONS_DEFINE= EXAMPLES GTKBACKEND GTKAGGBACKEND TKAGGBACKEND WXAGGBACKEND OPTIONS_DEFAULT= GTKBACKEND GTKAGGBACKEND TKAGGBACKEND OPTIONS_SUB= yes GTKBACKEND_DESC= GTK backend support @@ -43,9 +43,8 @@ TKAGGBACKEND_VARS= TKAGG_BACKEND=True TKAGGBACKEND_VARS_OFF= TKAGG_BACKEND=False WXAGGBACKEND_DESC= WXAgg backend support WXAGGBACKEND_USE= WX=2.8+ -WXAGGBACKEND_VARS= WX_COMPS=python:lib,WX_UNICODE=yes WXAGGBACKEND_CONFIGURE_ENV= WX_CONFIG="${WX_CONFIG}" -WXAGGBACKEND_VARS= WXAGG_BACKEND=True +WXAGGBACKEND_VARS= WXAGG_BACKEND=True WX_COMPS=python:lib WX_UNICODE=yes WXAGGBACKEND_VARS_OFF= WXAGG_BACKEND=False PORTEXAMPLES= * @@ -58,7 +57,7 @@ WXAGGBACKEND_BUILD_DEPENDS= Xvfb:${PORTS .endif post-extract: - ${CHMOD} -R ga+r ${WRKDIR} + ${FIND} ${WRKSRC} -name \*.py | ${XARGS} ${CHMOD} -x post-patch: ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ @@ -76,19 +75,25 @@ post-patch: ${WRKSRC}/setup.cfg post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_cntr.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_delaunay.so ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_image.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_path.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_png.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_qhull.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_tri.so ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/backends/_backend_agg.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/ft2font.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/ttconv.so + +post-install-GTKAGGBACKEND-on: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/backends/_gtkagg.so + +post-install-TKAGGBACKEND-on: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/backends/_tkagg.so + +post-install-GTKBACKEND-on: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/backends/_backend_gdk.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_qhull.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/ttconv.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_delaunay.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_png.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_tri.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_path.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/_cntr.so - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/matplotlib/ft2font.so post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} From owner-svn-ports-head@freebsd.org Wed Oct 7 13:02: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 011739D1B56; Wed, 7 Oct 2015 13:02:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F7583C6; Wed, 7 Oct 2015 13:02:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97D22dx022882; Wed, 7 Oct 2015 13:02:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97D22WU022880; Wed, 7 Oct 2015 13:02:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071302.t97D22WU022880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 13:02:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398762 - head/science/orthanc-postgresql 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: Wed, 07 Oct 2015 13:02:04 -0000 Author: amdmi3 Date: Wed Oct 7 13:02:02 2015 New Revision: 398762 URL: https://svnweb.freebsd.org/changeset/ports/398762 Log: - Update from 1.2 to 1.3, fix build - Add minimum required API version PR: 203609 Submitted by: mp39590@gmail.com (maintainer) MFH: 2015Q4 Modified: head/science/orthanc-postgresql/Makefile head/science/orthanc-postgresql/distinfo Modified: head/science/orthanc-postgresql/Makefile ============================================================================== --- head/science/orthanc-postgresql/Makefile Wed Oct 7 12:50:42 2015 (r398761) +++ head/science/orthanc-postgresql/Makefile Wed Oct 7 13:02:02 2015 (r398762) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= orthanc-portgresql -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= science graphics MASTER_SITES= http://orthanc-server.com/downloads/get.php?path=/plugin-postgresql/ DISTNAME= OrthancPostgreSQL-${PORTVERSION} @@ -14,7 +14,7 @@ COMMENT= PostgreSQL plugin for Orthanc LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${LOCALBASE}/include/orthanc/OrthancCPlugin.h:${PORTSDIR}/science/orthanc +BUILD_DEPENDS= orthanc>=0.9.4:${PORTSDIR}/science/orthanc LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \ libjsoncpp.so:${PORTSDIR}/devel/jsoncpp Modified: head/science/orthanc-postgresql/distinfo ============================================================================== --- head/science/orthanc-postgresql/distinfo Wed Oct 7 12:50:42 2015 (r398761) +++ head/science/orthanc-postgresql/distinfo Wed Oct 7 13:02:02 2015 (r398762) @@ -1,2 +1,2 @@ -SHA256 (orthanc/OrthancPostgreSQL-1.2.tar.gz) = 629bf07a7365d9570b340f336cc2367b30fe6244d32ca881d7a3a0ea9802e8a9 -SIZE (orthanc/OrthancPostgreSQL-1.2.tar.gz) = 81424 +SHA256 (orthanc/OrthancPostgreSQL-1.3.tar.gz) = b8ecaa8b37fbd982f191c7c63288caa128a30884d811a5086a4f5ff68b32d6bd +SIZE (orthanc/OrthancPostgreSQL-1.3.tar.gz) = 90590 From owner-svn-ports-head@freebsd.org Wed Oct 7 13:13:07 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 99D409D0263; Wed, 7 Oct 2015 13:13:07 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 657A7D5C; Wed, 7 Oct 2015 13:13:07 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97DD6QW025962; Wed, 7 Oct 2015 13:13:06 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97DD6DV025960; Wed, 7 Oct 2015 13:13:06 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201510071313.t97DD6DV025960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 7 Oct 2015 13:13:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398763 - head/net/ntp-devel 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: Wed, 07 Oct 2015 13:13:07 -0000 Author: cy Date: Wed Oct 7 13:13:06 2015 New Revision: 398763 URL: https://svnweb.freebsd.org/changeset/ports/398763 Log: Update 4.3.71 --> 4.3.76 Modified: head/net/ntp-devel/Makefile head/net/ntp-devel/distinfo Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Wed Oct 7 13:02:02 2015 (r398762) +++ head/net/ntp-devel/Makefile Wed Oct 7 13:13:06 2015 (r398763) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.3.71 +PORTVERSION= 4.3.76 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ Modified: head/net/ntp-devel/distinfo ============================================================================== --- head/net/ntp-devel/distinfo Wed Oct 7 13:02:02 2015 (r398762) +++ head/net/ntp-devel/distinfo Wed Oct 7 13:13:06 2015 (r398763) @@ -1,2 +1,2 @@ -SHA256 (ntp-dev-4.3.71.tar.gz) = ccdf3efdee107b2e4d0f310bb5cd4d0ac8d949ad905597b7fd7ab6f8d69bf080 -SIZE (ntp-dev-4.3.71.tar.gz) = 23678015 +SHA256 (ntp-dev-4.3.76.tar.gz) = 038958cd50c0a1a609e0d538be4950594862d0dfb9be27bfe7961da43e25de6f +SIZE (ntp-dev-4.3.76.tar.gz) = 23672607 From owner-svn-ports-head@freebsd.org Wed Oct 7 13:14:53 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 D9D709D03D5; Wed, 7 Oct 2015 13:14:53 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A222EE81; Wed, 7 Oct 2015 13:14:53 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97DEqef026152; Wed, 7 Oct 2015 13:14:52 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97DEq5a026149; Wed, 7 Oct 2015 13:14:52 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201510071314.t97DEq5a026149@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 7 Oct 2015 13:14:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398764 - in head/net: . ntp-rc 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: Wed, 07 Oct 2015 13:14:54 -0000 Author: cy Date: Wed Oct 7 13:14:52 2015 New Revision: 398764 URL: https://svnweb.freebsd.org/changeset/ports/398764 Log: Introduce a new ntp release candidate, 4.2.8p4-RC1. Added: head/net/ntp-rc/ - copied from r398742, head/net/ntp/ Modified: head/net/Makefile head/net/ntp-rc/Makefile head/net/ntp-rc/distinfo Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Oct 7 13:13:06 2015 (r398763) +++ head/net/Makefile Wed Oct 7 13:14:52 2015 (r398764) @@ -448,6 +448,7 @@ SUBDIR += ntopng SUBDIR += ntp SUBDIR += ntp-devel + SUBDIR += ntp-rc SUBDIR += ntraceroute SUBDIR += nusoap SUBDIR += nxproxy Modified: head/net/ntp-rc/Makefile ============================================================================== --- head/net/ntp/Makefile Wed Oct 7 01:38:13 2015 (r398742) +++ head/net/ntp-rc/Makefile Wed Oct 7 13:14:52 2015 (r398764) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.2.8p3 -PORTREVISION= 1 +PORTVERSION= 4.2.8p4.r1 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ Modified: head/net/ntp-rc/distinfo ============================================================================== --- head/net/ntp/distinfo Wed Oct 7 01:38:13 2015 (r398742) +++ head/net/ntp-rc/distinfo Wed Oct 7 13:14:52 2015 (r398764) @@ -1,2 +1,2 @@ -SHA256 (ntp-4.2.8p3.tar.gz) = 818ca4f2ed6ca845b1c5ec43f5e6ad905eaa0fc0aab2d509ed6b962a37fbf38f -SIZE (ntp-4.2.8p3.tar.gz) = 7099575 +SHA256 (ntp-4.2.8p4-RC1.tar.gz) = 344915c3a675414e0368e076da314fd3baa2f9a5befe73ab2e93be5c0282eb37 +SIZE (ntp-4.2.8p4-RC1.tar.gz) = 7106646 From owner-svn-ports-head@freebsd.org Wed Oct 7 15:00:48 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 05A0D9D0C71; Wed, 7 Oct 2015 15:00:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8DAC337; Wed, 7 Oct 2015 15:00:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97F0k1r058606; Wed, 7 Oct 2015 15:00:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97F0kGg058605; Wed, 7 Oct 2015 15:00:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071500.t97F0kGg058605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 15:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398767 - head/lang/petite-chez 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: Wed, 07 Oct 2015 15:00:48 -0000 Author: amdmi3 Date: Wed Oct 7 15:00:46 2015 New Revision: 398767 URL: https://svnweb.freebsd.org/changeset/ports/398767 Log: - Mark MAKE_JOBS_UNSAFE, there's a race between ld and chmod which leads to build failure: chmod 551 ./scheme /usr/bin/ld: reopening ./scheme: Permission denied /usr/bin/ld: final link failed: Permission denied - Fix stripping, files are not writable Approved by: portmgr blanket Modified: head/lang/petite-chez/Makefile Modified: head/lang/petite-chez/Makefile ============================================================================== --- head/lang/petite-chez/Makefile Wed Oct 7 13:39:19 2015 (r398766) +++ head/lang/petite-chez/Makefile Wed Oct 7 15:00:46 2015 (r398767) @@ -33,6 +33,7 @@ CONFIGURE_ARGS= --installprefix=${PREFIX --force-relink \ --nogzip-man-pages \ -m=${CHEZ_MACHTYPE} +MAKE_JOBS_UNSAFE= yes ALL_TARGET= build @@ -74,7 +75,10 @@ post-configure: ${WRKSRC}/Mf-${CHEZ_MACHTYPE} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/petite - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/scheme-script +.for bin in petite scheme-script + ${CHMOD} u+w ${STAGEDIR}${PREFIX}/bin/${bin} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${bin} + ${CHMOD} u-w ${STAGEDIR}${PREFIX}/bin/${bin} +.endfor .include From owner-svn-ports-head@freebsd.org Wed Oct 7 16:19: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 CFA269D1D1A; Wed, 7 Oct 2015 16:19:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99BF1F6A; Wed, 7 Oct 2015 16:19:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97GJhUh080088; Wed, 7 Oct 2015 16:19:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97GJhuT080086; Wed, 7 Oct 2015 16:19:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071619.t97GJhuT080086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 16:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398768 - in head: Mk/Uses ftp/curl 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: Wed, 07 Oct 2015 16:19:44 -0000 Author: amdmi3 Date: Wed Oct 7 16:19:43 2015 New Revision: 398768 URL: https://svnweb.freebsd.org/changeset/ports/398768 Log: Do not provide empty do-test target for perl5-using ports perl5's do-test: target should only be enabled when USE_PERL5=configure or USE_PERL5=modbuild* are used, otherwise it'll end up being empty and will prevent other tests from running. Remove NO_PERL5_TEST as it isn't really needed after this fix. Approved by: mat, sunpoet Differential Revision: D3830 Modified: head/Mk/Uses/perl5.mk head/ftp/curl/Makefile Modified: head/Mk/Uses/perl5.mk ============================================================================== --- head/Mk/Uses/perl5.mk Wed Oct 7 15:00:46 2015 (r398767) +++ head/Mk/Uses/perl5.mk Wed Oct 7 16:19:43 2015 (r398768) @@ -308,7 +308,7 @@ fix-perl-things: @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : -.if !target(do-test) && !defined(NO_PERL5_TEST) +.if !target(do-test) && (${USE_PERL5:Mmodbuild*} || ${USE_PERL5:Mconfigure}) TEST_TARGET?= test TEST_WRKSRC?= ${BUILD_WRKSRC} do-test: Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Wed Oct 7 15:00:46 2015 (r398767) +++ head/ftp/curl/Makefile Wed Oct 7 16:19:43 2015 (r398768) @@ -48,7 +48,6 @@ CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ ac_cv_func_SSLv2_client_method=no GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -NO_PERL5_TEST= yes TEST_ENV= ${MAKE_ENV} LC_ALL=C TEST_TARGET= test USE_PERL5= build From owner-svn-ports-head@freebsd.org Wed Oct 7 16:22: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 072E29D1F4A; Wed, 7 Oct 2015 16:22:09 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C35053A4; Wed, 7 Oct 2015 16:22:08 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97GM7J3082977; Wed, 7 Oct 2015 16:22:07 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97GM7LN082975; Wed, 7 Oct 2015 16:22:07 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510071622.t97GM7LN082975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 7 Oct 2015 16:22:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398769 - head/net/rabbitmq 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: Wed, 07 Oct 2015 16:22:09 -0000 Author: olgeni Date: Wed Oct 7 16:22:07 2015 New Revision: 398769 URL: https://svnweb.freebsd.org/changeset/ports/398769 Log: Upgrade net/rabbitmq to version 3.5.6; set NO_ARCH. Modified: head/net/rabbitmq/Makefile head/net/rabbitmq/distinfo Modified: head/net/rabbitmq/Makefile ============================================================================== --- head/net/rabbitmq/Makefile Wed Oct 7 16:19:43 2015 (r398768) +++ head/net/rabbitmq/Makefile Wed Oct 7 16:22:07 2015 (r398769) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rabbitmq -PORTVERSION= 3.5.5 +PORTVERSION= 3.5.6 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} @@ -28,6 +28,7 @@ USES= cpe gmake python:build shebangfix USE_RC_SUBR= rabbitmq SHEBANG_FILES= calculate-relative plugins-src/rabbitmq-amqp1.0/codegen.py python_OLD_CMD= .*python +NO_ARCH= yes USERS= rabbitmq GROUPS= rabbitmq Modified: head/net/rabbitmq/distinfo ============================================================================== --- head/net/rabbitmq/distinfo Wed Oct 7 16:19:43 2015 (r398768) +++ head/net/rabbitmq/distinfo Wed Oct 7 16:22:07 2015 (r398769) @@ -1,2 +1,2 @@ -SHA256 (rabbitmq-server-3.5.5.tar.gz) = 8f354bc40166508e067dfdf0a38e53aaffedc1c687e238659a6a79f3ca2db0c3 -SIZE (rabbitmq-server-3.5.5.tar.gz) = 3744013 +SHA256 (rabbitmq-server-3.5.6.tar.gz) = 24be1433234112db391e0c5ef32bfb2ca111e51b2e57998cc0f3d97ba361671f +SIZE (rabbitmq-server-3.5.6.tar.gz) = 3747595 From owner-svn-ports-head@freebsd.org Wed Oct 7 16:32:51 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 DFDCE9D05BF; Wed, 7 Oct 2015 16:32:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6F91CA9; Wed, 7 Oct 2015 16:32:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97GWnuA086077; Wed, 7 Oct 2015 16:32:49 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97GWn0S086075; Wed, 7 Oct 2015 16:32:49 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071632.t97GWn0S086075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 16:32:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398770 - head/graphics/gimageview 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: Wed, 07 Oct 2015 16:32:51 -0000 Author: amdmi3 Date: Wed Oct 7 16:32:49 2015 New Revision: 398770 URL: https://svnweb.freebsd.org/changeset/ports/398770 Log: - Make DOCS optional - Pet portlint Modified: head/graphics/gimageview/Makefile head/graphics/gimageview/pkg-plist Modified: head/graphics/gimageview/Makefile ============================================================================== --- head/graphics/gimageview/Makefile Wed Oct 7 16:22:07 2015 (r398769) +++ head/graphics/gimageview/Makefile Wed Oct 7 16:32:49 2015 (r398770) @@ -18,15 +18,14 @@ LIB_DEPENDS= libpng.so:${PORTSDIR}/graph USES= gmake jpeg libtool pkgconfig GNU_CONFIGURE= yes USE_GNOME= gtk20 -USE_XORG= xinerama ice +USE_XORG= ice xinerama CONFIGURE_ARGS= --with-gtk2 CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -OPTIONS_DEFINE= SPLASH NLS LIBMNG LIBWMF LIBRSVG2 LIBEXIF MPLAYER LIBXINE +OPTIONS_DEFINE= SPLASH NLS LIBMNG LIBWMF LIBRSVG2 LIBEXIF MPLAYER LIBXINE DOCS OPTIONS_DEFAULT=SPLASH NLS LIBMNG LIBWMF LIBRSVG2 LIBEXIF MPLAYER -NO_OPTIONS_SORT=yes OPTIONS_SUB= yes SPLASH_DESC= Show splash screen on startup Modified: head/graphics/gimageview/pkg-plist ============================================================================== --- head/graphics/gimageview/pkg-plist Wed Oct 7 16:22:07 2015 (r398769) +++ head/graphics/gimageview/pkg-plist Wed Oct 7 16:32:49 2015 (r398770) @@ -33,36 +33,36 @@ lib/gimageview/thumbnail/libgimv_thumb.s lib/gimageview/thumbnail/libgimv_xvpics_thumb.so lib/gimageview/thumbnail_view/libgimv_thumbview_detail.so share/applications/gimageview.desktop -share/doc/gimageview/html/ja/01.html -share/doc/gimageview/html/ja/02.html -share/doc/gimageview/html/ja/03.html -share/doc/gimageview/html/ja/04.html -share/doc/gimageview/html/ja/05.html -share/doc/gimageview/html/ja/06.html -share/doc/gimageview/html/ja/07.html -share/doc/gimageview/html/ja/changelog.html -share/doc/gimageview/html/ja/document.html -share/doc/gimageview/html/ja/gimageview.css -share/doc/gimageview/html/ja/gimv_faq.html -share/doc/gimageview/html/ja/gimv_history.html -share/doc/gimageview/html/ja/gimv_tips.html -share/doc/gimageview/html/ja/index.html -share/doc/gimageview/html/ja/todo.html -share/doc/gimageview/text/C/AUTHORS -share/doc/gimageview/text/C/COPYING -share/doc/gimageview/text/C/ChangeLog -share/doc/gimageview/text/C/INSTALL -share/doc/gimageview/text/C/HACKING -share/doc/gimageview/text/C/NEWS -share/doc/gimageview/text/C/README -share/doc/gimageview/text/C/TODO -share/doc/gimageview/text/ja/COPYING.ja -share/doc/gimageview/text/ja/ChangeLog.ja -share/doc/gimageview/text/ja/INSTALL.ja -share/doc/gimageview/text/ja/NEWS.ja -share/doc/gimageview/text/ja/README.ja -share/doc/gimageview/text/ja/TODO.ja -share/doc/gimageview/text/ja/gimageview.txt +%%PORTDOCS%%%%DOCSDIR%%/html/ja/01.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/02.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/03.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/04.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/05.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/06.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/07.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/changelog.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/document.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/gimageview.css +%%PORTDOCS%%%%DOCSDIR%%/html/ja/gimv_faq.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/gimv_history.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/gimv_tips.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/ja/todo.html +%%PORTDOCS%%%%DOCSDIR%%/text/C/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/text/C/COPYING +%%PORTDOCS%%%%DOCSDIR%%/text/C/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/text/C/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/text/C/HACKING +%%PORTDOCS%%%%DOCSDIR%%/text/C/NEWS +%%PORTDOCS%%%%DOCSDIR%%/text/C/README +%%PORTDOCS%%%%DOCSDIR%%/text/C/TODO +%%PORTDOCS%%%%DOCSDIR%%/text/ja/COPYING.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/ChangeLog.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/INSTALL.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/NEWS.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/README.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/TODO.ja +%%PORTDOCS%%%%DOCSDIR%%/text/ja/gimageview.txt share/gimageview/gtkrc share/gimageview/mplayerrc share/gimageview/pixmaps/default/alert.xpm From owner-svn-ports-head@freebsd.org Wed Oct 7 16:35:57 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 24A709D07B1; Wed, 7 Oct 2015 16:35:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFD54E02; Wed, 7 Oct 2015 16:35:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97GZtVR086277; Wed, 7 Oct 2015 16:35:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97GZt5e086276; Wed, 7 Oct 2015 16:35:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071635.t97GZt5e086276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 16:35:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398771 - head/devel/avra 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: Wed, 07 Oct 2015 16:35:57 -0000 Author: amdmi3 Date: Wed Oct 7 16:35:55 2015 New Revision: 398771 URL: https://svnweb.freebsd.org/changeset/ports/398771 Log: - Switch to options helpers Approved by: portmgr blanket Modified: head/devel/avra/Makefile Modified: head/devel/avra/Makefile ============================================================================== --- head/devel/avra/Makefile Wed Oct 7 16:32:49 2015 (r398770) +++ head/devel/avra/Makefile Wed Oct 7 16:35:55 2015 (r398771) @@ -28,11 +28,15 @@ PLIST_FILES= bin/avra do-install: ${INSTALL_PROGRAM} ${WRKSRC}/avra ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC}/.. && ${COPYTREE_SHARE} includes ${STAGEDIR}${DATADIR}) + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/../doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + +do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/../examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) - @${MKDIR} ${STAGEDIR}${DATADIR} - (cd ${WRKSRC}/.. && ${COPYTREE_SHARE} includes ${STAGEDIR}${DATADIR}) .include From owner-svn-ports-head@freebsd.org Wed Oct 7 16:36: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 BEAC99D080B; Wed, 7 Oct 2015 16:36:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A9FEEDA; Wed, 7 Oct 2015 16:36:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97GaKUS086379; Wed, 7 Oct 2015 16:36:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97GaK0v086378; Wed, 7 Oct 2015 16:36:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071636.t97GaK0v086378@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 16:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398772 - head/devel/ccache 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: Wed, 07 Oct 2015 16:36:21 -0000 Author: amdmi3 Date: Wed Oct 7 16:36:20 2015 New Revision: 398772 URL: https://svnweb.freebsd.org/changeset/ports/398772 Log: - Switch to options helpers Approved by: portmgr blanket Modified: head/devel/ccache/Makefile Modified: head/devel/ccache/Makefile ============================================================================== --- head/devel/ccache/Makefile Wed Oct 7 16:35:55 2015 (r398771) +++ head/devel/ccache/Makefile Wed Oct 7 16:36:20 2015 (r398772) @@ -69,15 +69,13 @@ SUB_LIST+= CCACHE_COMPILERS="${CCACHE_CO ICCPREFIX="${LOCALBASE}/intel_cc_80/bin" \ HOWTO="${HOWTO}" -post-build: -.if ${PORT_OPTIONS:MTINDERBOX} +post-build-TINDERBOX-on: @${MKDIR} ${WRKDIR}/tb/opt @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${WRKDIR}/tb/opt .for l in ${CCACHE_COMPILERS} @${LN} -sf ${PORTNAME} ${WRKDIR}/tb/opt/${l} .endfor @${TAR} -C ${WRKDIR}/tb -cpf ${WRKSRC}/${PORTNAME}.tar opt -.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ccache ${STAGEDIR}${PREFIX}/bin @@ -87,14 +85,14 @@ do-install: ${STAGEDIR}${PREFIX}/${CCLINKDIR}/world/ccache ${INSTALL_SCRIPT} ${WRKDIR}/ccache-update-links.sh \ ${STAGEDIR}${PREFIX}/bin/ccache-update-links -.if ${PORT_OPTIONS:MTINDERBOX} + +do-install-TINDERBOX-on: ${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.tar ${STAGEDIR}${DATADIR} -.endif -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/MANUAL.html ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/${HOWTO} ${STAGEDIR}${DOCSDIR} -.endif .include From owner-svn-ports-head@freebsd.org Wed Oct 7 17:11:59 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 3A6FA9D1C00; Wed, 7 Oct 2015 17:11:59 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DFA612DD; Wed, 7 Oct 2015 17:11:58 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97HBwh4098127; Wed, 7 Oct 2015 17:11:58 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97HBu36098115; Wed, 7 Oct 2015 17:11:56 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201510071711.t97HBu36098115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Wed, 7 Oct 2015 17:11:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398773 - in head/sysutils: life-preserver pcbsd-appweb pcbsd-syscache pcbsd-utils pcbsd-utils-qt5 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: Wed, 07 Oct 2015 17:11:59 -0000 Author: kmoore Date: Wed Oct 7 17:11:56 2015 New Revision: 398773 URL: https://svnweb.freebsd.org/changeset/ports/398773 Log: - Update PC-BSD related ports to their respective 10.2 versions - Includes fixes to install pcbsd-utils-qt4 from non-root and shebang corrections PR: 203598 Modified: head/sysutils/life-preserver/Makefile head/sysutils/life-preserver/distinfo head/sysutils/pcbsd-appweb/Makefile head/sysutils/pcbsd-appweb/distinfo head/sysutils/pcbsd-appweb/pkg-plist head/sysutils/pcbsd-syscache/Makefile head/sysutils/pcbsd-syscache/distinfo head/sysutils/pcbsd-utils-qt5/Makefile head/sysutils/pcbsd-utils-qt5/distinfo head/sysutils/pcbsd-utils-qt5/pkg-plist head/sysutils/pcbsd-utils/Makefile head/sysutils/pcbsd-utils/distinfo Modified: head/sysutils/life-preserver/Makefile ============================================================================== --- head/sysutils/life-preserver/Makefile Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/life-preserver/Makefile Wed Oct 7 17:11:56 2015 (r398773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= life-preserver -PORTVERSION= 1438351389 +PORTVERSION= 1441050470 CATEGORIES= sysutils MAINTAINER= kmoore@FreeBSD.org @@ -21,7 +21,7 @@ MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} USE_GITHUB= yes GH_ACCOUNT= pcbsd GH_PROJECT= pcbsd -GH_TAGNAME= 2c5a0c +GH_TAGNAME= 3c4d2b .include Modified: head/sysutils/life-preserver/distinfo ============================================================================== --- head/sysutils/life-preserver/distinfo Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/life-preserver/distinfo Wed Oct 7 17:11:56 2015 (r398773) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-pcbsd-1438351389-2c5a0c_GH0.tar.xz) = b984df83714a5a3624576f1a724c19004036e6b3c71e7e2b1beae568662dad05 -SIZE (pcbsd-pcbsd-1438351389-2c5a0c_GH0.tar.xz) = 168697426 +SHA256 (pcbsd-pcbsd-1441050470-3c4d2b_GH0.tar.xz) = e085e2be27c7b14b5600b0e9ce28f2ef842dca0186b673aef415b4e2047d141b +SIZE (pcbsd-pcbsd-1441050470-3c4d2b_GH0.tar.xz) = 171198807 Modified: head/sysutils/pcbsd-appweb/Makefile ============================================================================== --- head/sysutils/pcbsd-appweb/Makefile Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-appweb/Makefile Wed Oct 7 17:11:56 2015 (r398773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcbsd-appweb -PORTVERSION= 1438362426 +PORTVERSION= 1441129621 CATEGORIES= sysutils MAINTAINER= kmoore@FreeBSD.org @@ -25,7 +25,7 @@ MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} USE_GITHUB= yes GH_ACCOUNT= pcbsd GH_PROJECT= pcbsd -GH_TAGNAME= 2c5a0c +GH_TAGNAME= 3c4d2b .include Modified: head/sysutils/pcbsd-appweb/distinfo ============================================================================== --- head/sysutils/pcbsd-appweb/distinfo Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-appweb/distinfo Wed Oct 7 17:11:56 2015 (r398773) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-pcbsd-1438362426-2c5a0c_GH0.tar.xz) = b984df83714a5a3624576f1a724c19004036e6b3c71e7e2b1beae568662dad05 -SIZE (pcbsd-pcbsd-1438362426-2c5a0c_GH0.tar.xz) = 168697426 +SHA256 (pcbsd-pcbsd-1441129621-3c4d2b_GH0.tar.xz) = e085e2be27c7b14b5600b0e9ce28f2ef842dca0186b673aef415b4e2047d141b +SIZE (pcbsd-pcbsd-1441129621-3c4d2b_GH0.tar.xz) = 171198807 Modified: head/sysutils/pcbsd-appweb/pkg-plist ============================================================================== --- head/sysutils/pcbsd-appweb/pkg-plist Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-appweb/pkg-plist Wed Oct 7 17:11:56 2015 (r398773) @@ -4,6 +4,7 @@ etc/sudoers.d/appcafe-sudoers share/appcafe/dispatcher share/appcafe/dispatcher-auth share/appcafe/dispatcher-localauth +share/appcafe/dispatcher-localauth-pam share/appcafe/fastcgi_params share/appcafe/mime.types share/appcafe/nginx.conf Modified: head/sysutils/pcbsd-syscache/Makefile ============================================================================== --- head/sysutils/pcbsd-syscache/Makefile Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-syscache/Makefile Wed Oct 7 17:11:56 2015 (r398773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcbsd-syscache -PORTVERSION= 1438369862 +PORTVERSION= 1439494375 CATEGORIES= sysutils MAINTAINER= kmoore@FreeBSD.org @@ -23,7 +23,7 @@ PLIST_FILES= bin/syscache \ USE_GITHUB= yes GH_ACCOUNT= pcbsd GH_PROJECT= pcbsd -GH_TAGNAME= 2c5a0c +GH_TAGNAME= 3c4d2b .include Modified: head/sysutils/pcbsd-syscache/distinfo ============================================================================== --- head/sysutils/pcbsd-syscache/distinfo Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-syscache/distinfo Wed Oct 7 17:11:56 2015 (r398773) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-pcbsd-1438369862-2c5a0c_GH0.tar.xz) = b984df83714a5a3624576f1a724c19004036e6b3c71e7e2b1beae568662dad05 -SIZE (pcbsd-pcbsd-1438369862-2c5a0c_GH0.tar.xz) = 168697426 +SHA256 (pcbsd-pcbsd-1439494375-3c4d2b_GH0.tar.xz) = e085e2be27c7b14b5600b0e9ce28f2ef842dca0186b673aef415b4e2047d141b +SIZE (pcbsd-pcbsd-1439494375-3c4d2b_GH0.tar.xz) = 171198807 Modified: head/sysutils/pcbsd-utils-qt5/Makefile ============================================================================== --- head/sysutils/pcbsd-utils-qt5/Makefile Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-utils-qt5/Makefile Wed Oct 7 17:11:56 2015 (r398773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcbsd-utils-qt5 -PORTVERSION= 1438365531 +PORTVERSION= 1444236547 PORTREVISION= 1 CATEGORIES= sysutils @@ -31,7 +31,9 @@ ONLY_FOR_ARCHS= amd64 USE_LDCONFIG= yes USE_QT5= core gui network svg linguist \ buildtools x11extras -USES= desktop-file-utils python qmake tar:xz +USES= desktop-file-utils python qmake shebangfix tar:xz +SHEBANG_FILES= pc-netmanager/src/NetworkManager/resources/umts_stick \ + pc-sysmanager/scripts/fastest_cvsup WRKSRC_SUBDIR= src-qt5 @@ -40,7 +42,7 @@ QMAKE_ARGS= CONFIG+="configure" USE_GITHUB= yes GH_ACCOUNT= pcbsd GH_PROJECT= pcbsd -GH_TAGNAME= 2c5a0c +GH_TAGNAME= 3c4d2b .include Modified: head/sysutils/pcbsd-utils-qt5/distinfo ============================================================================== --- head/sysutils/pcbsd-utils-qt5/distinfo Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-utils-qt5/distinfo Wed Oct 7 17:11:56 2015 (r398773) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-pcbsd-1438365531-2c5a0c_GH0.tar.xz) = b984df83714a5a3624576f1a724c19004036e6b3c71e7e2b1beae568662dad05 -SIZE (pcbsd-pcbsd-1438365531-2c5a0c_GH0.tar.xz) = 168697426 +SHA256 (pcbsd-pcbsd-1444236547-3c4d2b_GH0.tar.xz) = e085e2be27c7b14b5600b0e9ce28f2ef842dca0186b673aef415b4e2047d141b +SIZE (pcbsd-pcbsd-1444236547-3c4d2b_GH0.tar.xz) = 171198807 Modified: head/sysutils/pcbsd-utils-qt5/pkg-plist ============================================================================== --- head/sysutils/pcbsd-utils-qt5/pkg-plist Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-utils-qt5/pkg-plist Wed Oct 7 17:11:56 2015 (r398773) @@ -85,6 +85,21 @@ share/PCDM/themes/default/previousDE.png share/PCDM/themes/default/splashscreen.png share/PCDM/themes/default/system.png share/PCDM/themes/default/virtualkeyboard.png +share/PCDM/themes/enterprise/background.jpg +share/PCDM/themes/enterprise/banner.png +share/PCDM/themes/enterprise/default-desktop.png +share/PCDM/themes/enterprise/default-user.png +share/PCDM/themes/enterprise/enterprise.theme +share/PCDM/themes/enterprise/keyboardlayout.png +share/PCDM/themes/enterprise/localechange.png +share/PCDM/themes/enterprise/login-stealth.png +share/PCDM/themes/enterprise/login.png +share/PCDM/themes/enterprise/nextDE.png +share/PCDM/themes/enterprise/password.png +share/PCDM/themes/enterprise/previousDE.png +share/PCDM/themes/enterprise/splashscreen.png +share/PCDM/themes/enterprise/system.png +share/PCDM/themes/enterprise/virtualkeyboard.png share/applications/EasyPBI.desktop share/applications/about.desktop share/applications/fwmanager.desktop @@ -490,6 +505,7 @@ share/wallpapers/PCBSD/PCBSD_10_Joule_WP share/wallpapers/PCBSD/PCBSD_10_Joule_WP_1920x1200_v2.jpg share/wallpapers/PCBSD/PCBSD_10_Joule_WP_600x400_v2.jpg share/wallpapers/PCBSD/PCBSD_10_Joule_WP_800x600_v2.jpg +share/wallpapers/PCBSD/PCBSD_Enterprise_WP_1920x1080.jpg share/wallpapers/PCBSD/a2_1280x1024.jpg share/wallpapers/PCBSD/a_1280x1024.jpg share/wallpapers/PCBSD/b_1280x1024.jpg Modified: head/sysutils/pcbsd-utils/Makefile ============================================================================== --- head/sysutils/pcbsd-utils/Makefile Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-utils/Makefile Wed Oct 7 17:11:56 2015 (r398773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcbsd-utils -PORTVERSION= 1438359314 +PORTVERSION= 1440778617 CATEGORIES= sysutils MAINTAINER= kmoore@FreeBSD.org @@ -22,7 +22,7 @@ MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} USE_GITHUB= yes GH_ACCOUNT= pcbsd GH_PROJECT= pcbsd -GH_TAGNAME= 2c5a0c +GH_TAGNAME= 3c4d2b .include Modified: head/sysutils/pcbsd-utils/distinfo ============================================================================== --- head/sysutils/pcbsd-utils/distinfo Wed Oct 7 16:36:20 2015 (r398772) +++ head/sysutils/pcbsd-utils/distinfo Wed Oct 7 17:11:56 2015 (r398773) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-pcbsd-1438359314-2c5a0c_GH0.tar.xz) = b984df83714a5a3624576f1a724c19004036e6b3c71e7e2b1beae568662dad05 -SIZE (pcbsd-pcbsd-1438359314-2c5a0c_GH0.tar.xz) = 168697426 +SHA256 (pcbsd-pcbsd-1440778617-3c4d2b_GH0.tar.xz) = e085e2be27c7b14b5600b0e9ce28f2ef842dca0186b673aef415b4e2047d141b +SIZE (pcbsd-pcbsd-1440778617-3c4d2b_GH0.tar.xz) = 171198807 From owner-svn-ports-head@freebsd.org Wed Oct 7 17:27:40 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 838609D048A; Wed, 7 Oct 2015 17:27:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52ED41AC9; Wed, 7 Oct 2015 17:27:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97HRdZp001390; Wed, 7 Oct 2015 17:27:39 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97HRd2A001389; Wed, 7 Oct 2015 17:27:39 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201510071727.t97HRd2A001389@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 7 Oct 2015 17:27:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398774 - head/www/firefox/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: Wed, 07 Oct 2015 17:27:40 -0000 Author: jkim Date: Wed Oct 7 17:27:39 2015 New Revision: 398774 URL: https://svnweb.freebsd.org/changeset/ports/398774 Log: Fix build with clang. https://bugzilla.mozilla.org/show_bug.cgi?id=1181382 Added: head/www/firefox/files/patch-bug1181382 (contents, props changed) Added: head/www/firefox/files/patch-bug1181382 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-bug1181382 Wed Oct 7 17:27:39 2015 (r398774) @@ -0,0 +1,15 @@ +--- dom/mobilemessage/MobileMessageManager.h.orig 2015-09-17 22:13:25 UTC ++++ dom/mobilemessage/MobileMessageManager.h +@@ -14,11 +14,11 @@ + class nsISmsService; + class nsIDOMMozSmsMessage; + class nsIDOMMozMmsMessage; +-class Promise; + + namespace mozilla { + namespace dom { + ++class Promise; + class DOMRequest; + class DOMCursor; + struct MmsParameters; From owner-svn-ports-head@freebsd.org Wed Oct 7 18:03:54 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 561699D1CD4; Wed, 7 Oct 2015 18:03:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 095CC856; Wed, 7 Oct 2015 18:03:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I3rAV013087; Wed, 7 Oct 2015 18:03:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I3rGM013085; Wed, 7 Oct 2015 18:03:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071803.t97I3rGM013085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:03:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398775 - head/games/crafty-open-enormous 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: Wed, 07 Oct 2015 18:03:54 -0000 Author: amdmi3 Date: Wed Oct 7 18:03:52 2015 New Revision: 398775 URL: https://svnweb.freebsd.org/changeset/ports/398775 Log: - Pet portlint - Fix installation from non-root - Drop @dirrm* from plist Modified: head/games/crafty-open-enormous/Makefile head/games/crafty-open-enormous/pkg-plist Modified: head/games/crafty-open-enormous/Makefile ============================================================================== --- head/games/crafty-open-enormous/Makefile Wed Oct 7 17:27:39 2015 (r398774) +++ head/games/crafty-open-enormous/Makefile Wed Oct 7 18:03:52 2015 (r398775) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.cis.uab.edu/hyatt/crafty/pgn/ DISTFILES= enormous.zip -EXTRACT_ONLY= ${DISTFILES} +DIST_SUBDIR= crafty MAINTAINER= ports@FreeBSD.org COMMENT= Enormous opening book (about 270 MByte) for crafty @@ -15,7 +15,6 @@ COMMENT= Enormous opening book (about 27 BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty -DIST_SUBDIR= crafty USES= zip NO_WRKSUBDIR= yes NO_PACKAGE= Package is way too big @@ -26,12 +25,10 @@ do-build: @${ECHO_MSG} '================================================================' @${ECHO_MSG} 'Ignore warnings about illegal moves. These warnings are normal.' @${ECHO_MSG} '================================================================' - (cd ${WRKDIR}; ${CHOWN} nobody ${WRKDIR}; crafty bookpath=. <${FILESDIR}/book-building) + (cd ${WRKDIR} && crafty bookpath=. <${FILESDIR}/book-building) do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/crafty ${INSTALL_DATA} ${WRKDIR}/book.bin ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHOWN} nobody:nogroup ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHMOD} 664 ${STAGEDIR}${PREFIX}/lib/crafty/book.bin .include Modified: head/games/crafty-open-enormous/pkg-plist ============================================================================== --- head/games/crafty-open-enormous/pkg-plist Wed Oct 7 17:27:39 2015 (r398774) +++ head/games/crafty-open-enormous/pkg-plist Wed Oct 7 18:03:52 2015 (r398775) @@ -1,2 +1 @@ -lib/crafty/book.bin -@dirrmtry lib/crafty +@(nobody,nogroup,664) lib/crafty/book.bin From owner-svn-ports-head@freebsd.org Wed Oct 7 18:04: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 CB12B9D1D0C; Wed, 7 Oct 2015 18:04:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82953925; Wed, 7 Oct 2015 18:04:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I40jS013210; Wed, 7 Oct 2015 18:04:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I40IF013208; Wed, 7 Oct 2015 18:04:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071804.t97I40IF013208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398776 - head/devel/dbus-glib 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: Wed, 07 Oct 2015 18:04:02 -0000 Author: amdmi3 Date: Wed Oct 7 18:03:59 2015 New Revision: 398776 URL: https://svnweb.freebsd.org/changeset/ports/398776 Log: - Optionize DOCS Approved by: kwm Modified: head/devel/dbus-glib/Makefile head/devel/dbus-glib/pkg-plist Modified: head/devel/dbus-glib/Makefile ============================================================================== --- head/devel/dbus-glib/Makefile Wed Oct 7 18:03:52 2015 (r398775) +++ head/devel/dbus-glib/Makefile Wed Oct 7 18:03:59 2015 (r398776) @@ -26,4 +26,6 @@ PLIST_SUB= VERSION="1.0" DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} +OPTIONS_DEFINE= DOCS + .include Modified: head/devel/dbus-glib/pkg-plist ============================================================================== --- head/devel/dbus-glib/pkg-plist Wed Oct 7 18:03:52 2015 (r398775) +++ head/devel/dbus-glib/pkg-plist Wed Oct 7 18:03:59 2015 (r398776) @@ -12,27 +12,27 @@ lib/libdbus-glib-1.so.2.3.2 libdata/pkgconfig/dbus-glib-1.pc libexec/dbus-bash-completion-helper man/man1/dbus-binding-tool.1.gz -%%DOCSDIR%%/api-index-full.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch03.html -%%DOCSDIR%%/dbus-binding-tool.html -%%DOCSDIR%%/dbus-glib-DBus-GLib-low-level.html -%%DOCSDIR%%/dbus-glib-DBus-GObject-related-functions.html -%%DOCSDIR%%/dbus-glib-DBusGConnection.html -%%DOCSDIR%%/dbus-glib-DBusGError.html -%%DOCSDIR%%/dbus-glib-DBusGMessage.html -%%DOCSDIR%%/dbus-glib-DBusGMethod.html -%%DOCSDIR%%/dbus-glib-DBusGProxy.html -%%DOCSDIR%%/dbus-glib-Specializable-GType-System.html -%%DOCSDIR%%/dbus-glib.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left-insensitive.png -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right-insensitive.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up-insensitive.png -%%DOCSDIR%%/up.png +%%PORTDOCS%%%%DOCSDIR%%/api-index-full.html +%%PORTDOCS%%%%DOCSDIR%%/ch01.html +%%PORTDOCS%%%%DOCSDIR%%/ch02.html +%%PORTDOCS%%%%DOCSDIR%%/ch03.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-binding-tool.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBus-GLib-low-level.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBus-GObject-related-functions.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBusGConnection.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBusGError.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBusGMessage.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBusGMethod.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-DBusGProxy.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib-Specializable-GType-System.html +%%PORTDOCS%%%%DOCSDIR%%/dbus-glib.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/home.png +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/index.sgml +%%PORTDOCS%%%%DOCSDIR%%/left-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%/left.png +%%PORTDOCS%%%%DOCSDIR%%/right-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%/right.png +%%PORTDOCS%%%%DOCSDIR%%/style.css +%%PORTDOCS%%%%DOCSDIR%%/up-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%/up.png From owner-svn-ports-head@freebsd.org Wed Oct 7 18:04:05 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 10AC89D1D26; Wed, 7 Oct 2015 18:04:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D980892F; Wed, 7 Oct 2015 18:04:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I43x2013326; Wed, 7 Oct 2015 18:04:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I43k1013324; Wed, 7 Oct 2015 18:04:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071804.t97I43k1013324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:04:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398777 - head/security/libgnome-keyring 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: Wed, 07 Oct 2015 18:04:05 -0000 Author: amdmi3 Date: Wed Oct 7 18:04:03 2015 New Revision: 398777 URL: https://svnweb.freebsd.org/changeset/ports/398777 Log: - Optionize DOCS Approved by: kwm Modified: head/security/libgnome-keyring/Makefile head/security/libgnome-keyring/pkg-plist Modified: head/security/libgnome-keyring/Makefile ============================================================================== --- head/security/libgnome-keyring/Makefile Wed Oct 7 18:03:59 2015 (r398776) +++ head/security/libgnome-keyring/Makefile Wed Oct 7 18:04:03 2015 (r398777) @@ -24,4 +24,8 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-vala INSTALL_TARGET= install-strip +DOCSDIR= ${PREFIX}/share/doc/gnome-keyring + +OPTIONS_DEFINE= DOCS + .include Modified: head/security/libgnome-keyring/pkg-plist ============================================================================== --- head/security/libgnome-keyring/pkg-plist Wed Oct 7 18:03:59 2015 (r398776) +++ head/security/libgnome-keyring/pkg-plist Wed Oct 7 18:04:03 2015 (r398777) @@ -6,30 +6,30 @@ lib/libgnome-keyring.so lib/libgnome-keyring.so.0 lib/libgnome-keyring.so.0.2.0 libdata/pkgconfig/gnome-keyring-1.pc -share/doc/gnome-keyring/annotation-glossary.html -share/doc/gnome-keyring/ch01.html -share/doc/gnome-keyring/gnome-keyring-Callbacks.html -share/doc/gnome-keyring/gnome-keyring-Daemon-Management-Functions.html -share/doc/gnome-keyring/gnome-keyring-Item-ACLs.html -share/doc/gnome-keyring/gnome-keyring-Item-Attributes.html -share/doc/gnome-keyring/gnome-keyring-Item-Information.html -share/doc/gnome-keyring/gnome-keyring-Keyring-Info.html -share/doc/gnome-keyring/gnome-keyring-Keyring-Items.html -share/doc/gnome-keyring/gnome-keyring-Keyrings.html -share/doc/gnome-keyring/gnome-keyring-Miscellaneous-Functions.html -share/doc/gnome-keyring/gnome-keyring-Network-Passwords.html -share/doc/gnome-keyring/gnome-keyring-Non-pageable-Memory.html -share/doc/gnome-keyring/gnome-keyring-Result-Codes.html -share/doc/gnome-keyring/gnome-keyring-Search-Functionality.html -share/doc/gnome-keyring/gnome-keyring-Simple-Password-Storage.html -share/doc/gnome-keyring/gnome-keyring.devhelp2 -share/doc/gnome-keyring/home.png -share/doc/gnome-keyring/index.html -share/doc/gnome-keyring/index.sgml -share/doc/gnome-keyring/left.png -share/doc/gnome-keyring/right.png -share/doc/gnome-keyring/style.css -share/doc/gnome-keyring/up.png +%%PORTDOCS%%%%DOCSDIR%%/annotation-glossary.html +%%PORTDOCS%%%%DOCSDIR%%/ch01.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Callbacks.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Daemon-Management-Functions.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Item-ACLs.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Item-Attributes.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Item-Information.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Keyring-Info.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Keyring-Items.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Keyrings.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Miscellaneous-Functions.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Network-Passwords.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Non-pageable-Memory.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Result-Codes.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Search-Functionality.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring-Simple-Password-Storage.html +%%PORTDOCS%%%%DOCSDIR%%/gnome-keyring.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/home.png +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/index.sgml +%%PORTDOCS%%%%DOCSDIR%%/left.png +%%PORTDOCS%%%%DOCSDIR%%/right.png +%%PORTDOCS%%%%DOCSDIR%%/style.css +%%PORTDOCS%%%%DOCSDIR%%/up.png share/gir-1.0/GnomeKeyring-1.0.gir share/locale/af/LC_MESSAGES/libgnome-keyring.mo share/locale/an/LC_MESSAGES/libgnome-keyring.mo From owner-svn-ports-head@freebsd.org Wed Oct 7 18:04:13 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 87D139D1D7D; Wed, 7 Oct 2015 18:04:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2991AA6C; Wed, 7 Oct 2015 18:04:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I4C3R013445; Wed, 7 Oct 2015 18:04:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I4CMi013443; Wed, 7 Oct 2015 18:04:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071804.t97I4CMi013443@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:04:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398778 - head/devel/gconf2 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: Wed, 07 Oct 2015 18:04:13 -0000 Author: amdmi3 Date: Wed Oct 7 18:04:11 2015 New Revision: 398778 URL: https://svnweb.freebsd.org/changeset/ports/398778 Log: - Optionize DOCS - Switch to options helpers Approved by: kwm Modified: head/devel/gconf2/Makefile head/devel/gconf2/pkg-plist Modified: head/devel/gconf2/Makefile ============================================================================== --- head/devel/gconf2/Makefile Wed Oct 7 18:04:03 2015 (r398777) +++ head/devel/gconf2/Makefile Wed Oct 7 18:04:11 2015 (r398778) @@ -35,18 +35,13 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -OPTIONS_DEFINE= LDAP +DOCSDIR= ${PREFIX}/share/doc/gconf -.include +OPTIONS_DEFINE= LDAP DOCS +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MLDAP} -USE_OPENLDAP= yes -CONFIGURE_ARGS+=--with-openldap -PLIST_SUB+= LDAP="" -.else -CONFIGURE_ARGS+=--without-openldap -PLIST_SUB+= LDAP="@comment " -.endif +LDAP_USE= OPENLDAP=yes +LDAP_CONFIGURE_WITH= openldap post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/gconf/gconf.xml.system Modified: head/devel/gconf2/pkg-plist ============================================================================== --- head/devel/gconf2/pkg-plist Wed Oct 7 18:04:03 2015 (r398777) +++ head/devel/gconf2/pkg-plist Wed Oct 7 18:04:11 2015 (r398778) @@ -38,27 +38,27 @@ man/man1/gsettings-schema-convert.1.gz share/aclocal/gconf-2.m4 share/dbus-1/system-services/org.gnome.GConf.Defaults.service share/dbus-1/services/org.gnome.GConf.service -share/doc/gconf/ch01.html -share/doc/gconf/gconf-gconf-backend.html -share/doc/gconf/gconf-gconf-changeset.html -share/doc/gconf/gconf-gconf-client.html -share/doc/gconf/gconf-gconf-engine.html -share/doc/gconf/gconf-gconf-error.html -share/doc/gconf/gconf-gconf-internals.html -share/doc/gconf/gconf-gconf-listeners.html -share/doc/gconf/gconf-gconf-locale.html -share/doc/gconf/gconf-gconf-schema.html -share/doc/gconf/gconf-gconf-sources.html -share/doc/gconf/gconf-gconf-value.html -share/doc/gconf/gconf-gconf.html -share/doc/gconf/gconf.devhelp2 -share/doc/gconf/home.png -share/doc/gconf/index.html -share/doc/gconf/index.sgml -share/doc/gconf/left.png -share/doc/gconf/right.png -share/doc/gconf/style.css -share/doc/gconf/up.png +%%PORTDOCS%%%%DOCSDIR%%/ch01.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-backend.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-changeset.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-client.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-engine.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-error.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-internals.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-listeners.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-locale.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-schema.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-sources.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf-value.html +%%PORTDOCS%%%%DOCSDIR%%/gconf-gconf.html +%%PORTDOCS%%%%DOCSDIR%%/gconf.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/home.png +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/index.sgml +%%PORTDOCS%%%%DOCSDIR%%/left.png +%%PORTDOCS%%%%DOCSDIR%%/right.png +%%PORTDOCS%%%%DOCSDIR%%/style.css +%%PORTDOCS%%%%DOCSDIR%%/up.png share/gir-1.0/GConf-2.0.gir share/locale/am/LC_MESSAGES/GConf2.mo share/locale/ar/LC_MESSAGES/GConf2.mo From owner-svn-ports-head@freebsd.org Wed Oct 7 18: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 523F49D1DD9; Wed, 7 Oct 2015 18:04:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02CA0BD9; Wed, 7 Oct 2015 18:04:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I4V4A013686; Wed, 7 Oct 2015 18:04:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I4U3P013684; Wed, 7 Oct 2015 18:04:30 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071804.t97I4U3P013684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:04:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398780 - head/games/crafty-open-medium 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: Wed, 07 Oct 2015 18:04:32 -0000 Author: amdmi3 Date: Wed Oct 7 18:04:30 2015 New Revision: 398780 URL: https://svnweb.freebsd.org/changeset/ports/398780 Log: - Pet portlint - Fix installation from non-root - Drop @dirrm* from plist Modified: head/games/crafty-open-medium/Makefile head/games/crafty-open-medium/pkg-plist Modified: head/games/crafty-open-medium/Makefile ============================================================================== --- head/games/crafty-open-medium/Makefile Wed Oct 7 18:04:26 2015 (r398779) +++ head/games/crafty-open-medium/Makefile Wed Oct 7 18:04:30 2015 (r398780) @@ -7,14 +7,14 @@ PORTREVISION= 2 CATEGORIES= games MASTER_SITES= LOCAL/dd/crafty DISTNAME= medium +DIST_SUBDIR= crafty MAINTAINER= ports@FreeBSD.org -COMMENT= The medium opening book (about 1.9 MByte) for crafty +COMMENT= Medium opening book (about 1.9 MByte) for crafty BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty -DIST_SUBDIR= crafty USES= zip NO_WRKSUBDIR= yes CONFLICTS= crafty-open-enormous-* crafty-open-large-* crafty-open-default-* @@ -23,13 +23,11 @@ do-build: @${ECHO_MSG} '================================================================' @${ECHO_MSG} 'Ignore warnings about illegal moves. These warnings are normal.' @${ECHO_MSG} '================================================================' - (${CHOWN} nobody ${WRKDIR}; cd ${WRKDIR}; crafty <${FILESDIR}/book-building) + (cd ${WRKDIR} && crafty <${FILESDIR}/book-building) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/crafty ${INSTALL_DATA} ${WRKDIR}/book.bin \ ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHOWN} nobody:nogroup ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHMOD} 664 ${STAGEDIR}${PREFIX}/lib/crafty/book.bin .include Modified: head/games/crafty-open-medium/pkg-plist ============================================================================== --- head/games/crafty-open-medium/pkg-plist Wed Oct 7 18:04:26 2015 (r398779) +++ head/games/crafty-open-medium/pkg-plist Wed Oct 7 18:04:30 2015 (r398780) @@ -1,2 +1 @@ -lib/crafty/book.bin -@dirrmtry lib/crafty +@(nobody,nogroup,664) lib/crafty/book.bin From owner-svn-ports-head@freebsd.org Wed Oct 7 18:04:27 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 977AE9D1DBE; Wed, 7 Oct 2015 18:04:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C42FBC3; Wed, 7 Oct 2015 18:04:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I4QEQ013567; Wed, 7 Oct 2015 18:04:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I4Qe4013565; Wed, 7 Oct 2015 18:04:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071804.t97I4Qe4013565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:04:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398779 - head/games/crafty-open-large 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: Wed, 07 Oct 2015 18:04:27 -0000 Author: amdmi3 Date: Wed Oct 7 18:04:26 2015 New Revision: 398779 URL: https://svnweb.freebsd.org/changeset/ports/398779 Log: - Pet portlint - Move not on warnings to where it belongs - Fix installation from non-root Modified: head/games/crafty-open-large/Makefile head/games/crafty-open-large/pkg-plist Modified: head/games/crafty-open-large/Makefile ============================================================================== --- head/games/crafty-open-large/Makefile Wed Oct 7 18:04:11 2015 (r398778) +++ head/games/crafty-open-large/Makefile Wed Oct 7 18:04:26 2015 (r398779) @@ -7,32 +7,30 @@ PORTREVISION= 2 CATEGORIES= games MASTER_SITES= LOCAL/dd/crafty DISTFILES= large1.zip large2.zip large3.zip large4.zip +DIST_SUBDIR= crafty MAINTAINER= ports@FreeBSD.org -COMMENT= The large opening book for crafty +COMMENT= Large opening book for crafty BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty -DIST_SUBDIR= crafty USES= zip NO_WRKSUBDIR= yes CONFLICTS= crafty-open-enormous-* crafty-open-medium-* crafty-open-default-* post-extract: - @${ECHO_MSG} '================================================================' - @${ECHO_MSG} 'Ignore warnings about illegal moves. These warnings are normal.' - @${ECHO_MSG} '================================================================' ${CAT} ${WRKDIR}/Book1.pgn ${WRKDIR}/Book2.pgn ${WRKDIR}/Book3.pgn ${WRKDIR}/Book4.pgn >${WRKDIR}/Book.pgn ${RM} ${WRKDIR}/Book1.pgn ${WRKDIR}/Book2.pgn ${WRKDIR}/Book3.pgn ${WRKDIR}/Book4.pgn do-build: - (${CHOWN} nobody ${WRKDIR}; cd ${WRKDIR}; crafty <${FILESDIR}/book-building) + @${ECHO_MSG} '================================================================' + @${ECHO_MSG} 'Ignore warnings about illegal moves. These warnings are normal.' + @${ECHO_MSG} '================================================================' + (cd ${WRKDIR} && crafty <${FILESDIR}/book-building) do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/crafty ${INSTALL_DATA} ${WRKDIR}/book.bin ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHOWN} nobody:nogroup ${STAGEDIR}${PREFIX}/lib/crafty/book.bin - ${CHMOD} 664 ${STAGEDIR}${PREFIX}/lib/crafty/book.bin .include Modified: head/games/crafty-open-large/pkg-plist ============================================================================== --- head/games/crafty-open-large/pkg-plist Wed Oct 7 18:04:11 2015 (r398778) +++ head/games/crafty-open-large/pkg-plist Wed Oct 7 18:04:26 2015 (r398779) @@ -1 +1 @@ -lib/crafty/book.bin +@(nobody,nogroup,664) lib/crafty/book.bin From owner-svn-ports-head@freebsd.org Wed Oct 7 18:05:17 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 805509D1E83; Wed, 7 Oct 2015 18:05:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30B8BDBD; Wed, 7 Oct 2015 18:05:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97I5GsB013810; Wed, 7 Oct 2015 18:05:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97I5GQm013808; Wed, 7 Oct 2015 18:05:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071805.t97I5GQm013808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398781 - head/devel/atlassian-plugin-sdk 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: Wed, 07 Oct 2015 18:05:17 -0000 Author: amdmi3 Date: Wed Oct 7 18:05:15 2015 New Revision: 398781 URL: https://svnweb.freebsd.org/changeset/ports/398781 Log: - Add NO_ARCH - Switch to @dir - Switch to @sample, fixing stage-qa Approved by: portmgr blanket Modified: head/devel/atlassian-plugin-sdk/Makefile head/devel/atlassian-plugin-sdk/pkg-plist Modified: head/devel/atlassian-plugin-sdk/Makefile ============================================================================== --- head/devel/atlassian-plugin-sdk/Makefile Wed Oct 7 18:04:30 2015 (r398780) +++ head/devel/atlassian-plugin-sdk/Makefile Wed Oct 7 18:05:15 2015 (r398781) @@ -13,6 +13,7 @@ RUN_DEPENDS= mvn:${PORTSDIR}/devel/maven USE_JAVA= yes JAVA_VERSION= 1.7+ +NO_ARCH= yes EXTRACT_AFTER_ARGS=${DISTNAME}/bin ${DISTNAME}/apache-maven*/conf/settings.xml @@ -41,7 +42,7 @@ do-install: ${TAR} --strip-components 1 -C ${STAGEDIR}${DATADIR} -xv \ --no-same-permissions --no-same-owner --exclude maven \ -f ${DISTDIR}/${DISTFILES} ${DISTNAME}/repository 2>&1 | \ - ${SED} -e 's,^x ,${DATADIR_REL}/,' -e 's,.*/$$,@dirrm &,' | \ + ${SED} -e 's,^x ,${DATADIR_REL}/,' -e 's,.*/$$,@dir &,' | \ ${SORT} -r >> ${TMPPLIST} ${FIND} ${STAGEDIR}${DATADIR}/repository -type f | ${XARGS} ${CHMOD} ${_SHAREMODE} Modified: head/devel/atlassian-plugin-sdk/pkg-plist ============================================================================== --- head/devel/atlassian-plugin-sdk/pkg-plist Wed Oct 7 18:04:30 2015 (r398780) +++ head/devel/atlassian-plugin-sdk/pkg-plist Wed Oct 7 18:05:15 2015 (r398781) @@ -36,6 +36,4 @@ bin/atlas-unit-test bin/atlas-update bin/atlas-version @exec %D/%F -%%MAVEN_SETTINGS%%.dist -@unexec cmp -s %D/%F %D/%%MAVEN_SETTINGS%% && rm -f %D/%%MAVEN_SETTINGS%% && rmdir %D/%B || true -@exec [ -f %D/%%MAVEN_SETTINGS%% ] || cp -p %D/%F %D/%%MAVEN_SETTINGS%% +@sample %%MAVEN_SETTINGS%%.dist %%MAVEN_SETTINGS%% From owner-svn-ports-head@freebsd.org Wed Oct 7 18:45:29 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 622FA9D1B1C; Wed, 7 Oct 2015 18:45:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DBD26A7; Wed, 7 Oct 2015 18:45:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97IjSfd025395; Wed, 7 Oct 2015 18:45:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97IjS0Z025394; Wed, 7 Oct 2015 18:45:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510071845.t97IjS0Z025394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 7 Oct 2015 18:45:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398782 - head/Mk/Uses 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: Wed, 07 Oct 2015 18:45:29 -0000 Author: amdmi3 Date: Wed Oct 7 18:45:28 2015 New Revision: 398782 URL: https://svnweb.freebsd.org/changeset/ports/398782 Log: - Fix compatibility with fmake Approved by: portmgr blanket Modified: head/Mk/Uses/perl5.mk Modified: head/Mk/Uses/perl5.mk ============================================================================== --- head/Mk/Uses/perl5.mk Wed Oct 7 18:05:15 2015 (r398781) +++ head/Mk/Uses/perl5.mk Wed Oct 7 18:45:28 2015 (r398782) @@ -308,7 +308,7 @@ fix-perl-things: @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : -.if !target(do-test) && (${USE_PERL5:Mmodbuild*} || ${USE_PERL5:Mconfigure}) +.if !target(do-test) && (!empty(USE_PERL5:Mmodbuild*) || !empty(USE_PERL5:Mconfigure)) TEST_TARGET?= test TEST_WRKSRC?= ${BUILD_WRKSRC} do-test: From owner-svn-ports-head@freebsd.org Wed Oct 7 19:28: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 9E4BD9D1819; Wed, 7 Oct 2015 19:28:49 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7602CF82; Wed, 7 Oct 2015 19:28:49 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97JSmv6037545; Wed, 7 Oct 2015 19:28:48 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97JSmD5037539; Wed, 7 Oct 2015 19:28:48 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201510071928.t97JSmD5037539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 7 Oct 2015 19:28:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398783 - in head/textproc: . cmark cmark/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: Wed, 07 Oct 2015 19:28:49 -0000 Author: olivierd Date: Wed Oct 7 19:28:47 2015 New Revision: 398783 URL: https://svnweb.freebsd.org/changeset/ports/398783 Log: cmark is the C reference implementation of CommonMark, a rationalized version of Markdown syntax with a spec. It provides a shared library (libcmark) with functions for parsing CommonMark documents to an abstract syntax tree (AST), manipulating the AST, and rendering the document to HTML, groff man, LaTeX, CommonMark, or an XML representation of the AST. It also provides a command-line program (cmark) for parsing and rendering CommonMark documents. WWW: https://github.com/jgm/cmark PR: 203532 Submitted by: Tobias Kortkamp Added: head/textproc/cmark/ head/textproc/cmark/Makefile (contents, props changed) head/textproc/cmark/distinfo (contents, props changed) head/textproc/cmark/files/ head/textproc/cmark/files/patch-src_CMakeLists.txt (contents, props changed) head/textproc/cmark/pkg-descr (contents, props changed) head/textproc/cmark/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Oct 7 18:45:28 2015 (r398782) +++ head/textproc/Makefile Wed Oct 7 19:28:47 2015 (r398783) @@ -83,6 +83,7 @@ SUBDIR += clucene SUBDIR += clucene-qt4 SUBDIR += clucene-qt5 + SUBDIR += cmark SUBDIR += coccigrep SUBDIR += code2html SUBDIR += codespell Added: head/textproc/cmark/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/cmark/Makefile Wed Oct 7 19:28:47 2015 (r398783) @@ -0,0 +1,21 @@ +# Created by: Tobias Kortkamp +# $FreeBSD$ + +PORTNAME= cmark +PORTVERSION= 0.22.0 +CATEGORIES= textproc + +MAINTAINER= t@tobik.me +COMMENT= CommonMark parsing and rendering library and program in C + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= jgm + +USES= cmake:outsource + +post-patch: + ${REINPLACE_CMD} -i "" 's|share/||g' ${WRKSRC}/man/CMakeLists.txt + +.include Added: head/textproc/cmark/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/cmark/distinfo Wed Oct 7 19:28:47 2015 (r398783) @@ -0,0 +1,2 @@ +SHA256 (jgm-cmark-0.22.0_GH0.tar.gz) = a45956e6ee491d71e9271ddeb09364599a136b8956d219f0168dd6042f6f791b +SIZE (jgm-cmark-0.22.0_GH0.tar.gz) = 213617 Added: head/textproc/cmark/files/patch-src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/cmark/files/patch-src_CMakeLists.txt Wed Oct 7 19:28:47 2015 (r398783) @@ -0,0 +1,11 @@ +--- src/CMakeLists.txt.orig 2015-10-04 10:17:08 UTC ++++ src/CMakeLists.txt +@@ -55,7 +55,7 @@ configure_file(${CMAKE_CURRENT_SOURCE_DI + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libcmark.pc.in + ${CMAKE_CURRENT_BINARY_DIR}/libcmark.pc @ONLY) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libcmark.pc +- DESTINATION lib/pkgconfig) ++ DESTINATION libdata/pkgconfig) + + include (GenerateExportHeader) + Added: head/textproc/cmark/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/cmark/pkg-descr Wed Oct 7 19:28:47 2015 (r398783) @@ -0,0 +1,11 @@ +cmark is the C reference implementation of CommonMark, a rationalized +version of Markdown syntax with a spec. + +It provides a shared library (libcmark) with functions for parsing +CommonMark documents to an abstract syntax tree (AST), manipulating +the AST, and rendering the document to HTML, groff man, LaTeX, +CommonMark, or an XML representation of the AST. It also provides a +command-line program (cmark) for parsing and rendering CommonMark +documents. + +WWW: https://github.com/jgm/cmark Added: head/textproc/cmark/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/cmark/pkg-plist Wed Oct 7 19:28:47 2015 (r398783) @@ -0,0 +1,9 @@ +bin/cmark +include/cmark.h +include/cmark_export.h +include/cmark_version.h +lib/libcmark.so +lib/libcmark.so.0.22.0 +libdata/pkgconfig/libcmark.pc +man/man1/cmark.1.gz +man/man3/cmark.3.gz From owner-svn-ports-head@freebsd.org Wed Oct 7 19:46: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 6E5129D02F2; Wed, 7 Oct 2015 19:46:18 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4758BAD4; Wed, 7 Oct 2015 19:46:18 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97JkHKo043363; Wed, 7 Oct 2015 19:46:17 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97JkHoc043360; Wed, 7 Oct 2015 19:46:17 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201510071946.t97JkHoc043360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 7 Oct 2015 19:46:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398784 - head/net-im/corebird 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: Wed, 07 Oct 2015 19:46:18 -0000 Author: olivierd Date: Wed Oct 7 19:46:16 2015 New Revision: 398784 URL: https://svnweb.freebsd.org/changeset/ports/398784 Log: - Update to 1.1 [1] - Remove GSTREAMER_DESC (description is already in Mk/bsd.options.desc.mk) - Rewrite options helper Changelog: https://github.com/baedert/corebird/releases/tag/1.1 PR: 203612 [1] Submitted by: Carlos Puga Medina (maintainer) Modified: head/net-im/corebird/Makefile head/net-im/corebird/distinfo head/net-im/corebird/pkg-plist Modified: head/net-im/corebird/Makefile ============================================================================== --- head/net-im/corebird/Makefile Wed Oct 7 19:28:47 2015 (r398783) +++ head/net-im/corebird/Makefile Wed Oct 7 19:46:16 2015 (r398784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= corebird -PORTVERSION= 1.0.1 +PORTVERSION= 1.1 CATEGORIES= net-im MAINTAINER= cpm@fbsd.es @@ -28,23 +28,15 @@ INSTALLS_ICONS= yes OPTIONS_DEFINE= GSTREAMER OPTIONS_DEFAULT= GSTREAMER - -GSTREAMER_DESC= Gstreamer support +GSTREAMER_USE= gstreamer1=yes,bad,good,libav,x,ximagesrc +GSTREAMER_CONFIGURE_OFF= --disable-video GLIB_SCHEMAS= org.baedert.corebird.gschema.xml -.include - post-extract: cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in.in \ corebird.desktop.in.in -.if ${PORT_OPTIONS:MGSTREAMER} -USE_GSTREAMER1= yes bad good libav x ximagesrc -.else -CONFIGURE_ARGS+= --disable-video -.endif - pre-configure: ${MKDIR} ${WRKSRC}/m4 Modified: head/net-im/corebird/distinfo ============================================================================== --- head/net-im/corebird/distinfo Wed Oct 7 19:28:47 2015 (r398783) +++ head/net-im/corebird/distinfo Wed Oct 7 19:46:16 2015 (r398784) @@ -1,2 +1,2 @@ -SHA256 (baedert-corebird-1.0.1_GH0.tar.gz) = f469250fd0f4fcdefbd496fa04ecae44ee41e154f29d4be2003ba03e64d24d81 -SIZE (baedert-corebird-1.0.1_GH0.tar.gz) = 1697506 +SHA256 (baedert-corebird-1.1_GH0.tar.gz) = f6109cc2bdc7ee5893c28861a73df4eeaec4b76b99222a90aec381b03b19c8a7 +SIZE (baedert-corebird-1.1_GH0.tar.gz) = 1757414 Modified: head/net-im/corebird/pkg-plist ============================================================================== --- head/net-im/corebird/pkg-plist Wed Oct 7 19:28:47 2015 (r398783) +++ head/net-im/corebird/pkg-plist Wed Oct 7 19:46:16 2015 (r398784) @@ -5,7 +5,9 @@ share/applications/corebird.desktop %%DATADIR%%/sql/accounts/Create.1.sql %%DATADIR%%/sql/accounts/Create.2.sql %%DATADIR%%/sql/init/Create.1.sql +%%DATADIR%%/sql/init/Create.2.sql share/dbus-1/services/org.baedert.corebird.service +share/icons/hicolor/256x256/apps/corebird.png share/icons/hicolor/128x128/apps/corebird.png share/icons/hicolor/16x16/apps/corebird.png share/icons/hicolor/24x24/apps/corebird.png @@ -16,9 +18,11 @@ share/icons/hicolor/96x96/apps/corebird. share/locale/ar/LC_MESSAGES/corebird.mo share/locale/ast/LC_MESSAGES/corebird.mo share/locale/ca/LC_MESSAGES/corebird.mo +share/locale/ca@valencia/LC_MESSAGES/corebird.mo share/locale/de/LC_MESSAGES/corebird.mo share/locale/en_AU/LC_MESSAGES/corebird.mo share/locale/es/LC_MESSAGES/corebird.mo +share/locale/es_VE/LC_MESSAGES/corebird.mo share/locale/fa/LC_MESSAGES/corebird.mo share/locale/fi/LC_MESSAGES/corebird.mo share/locale/fr/LC_MESSAGES/corebird.mo From owner-svn-ports-head@freebsd.org Wed Oct 7 20:19: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 9E25C9D18E2; Wed, 7 Oct 2015 20:19:18 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C39A1603; Wed, 7 Oct 2015 20:19:18 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97KJHBA052341; Wed, 7 Oct 2015 20:19:17 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97KJHFZ052339; Wed, 7 Oct 2015 20:19:17 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201510072019.t97KJHFZ052339@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 7 Oct 2015 20:19:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398785 - head/www/p5-Mojolicious 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: Wed, 07 Oct 2015 20:19:18 -0000 Author: adamw Date: Wed Oct 7 20:19:17 2015 New Revision: 398785 URL: https://svnweb.freebsd.org/changeset/ports/398785 Log: Update to 6.23. Changes: https://metacpan.org/changes/distribution/Mojolicious Modified: head/www/p5-Mojolicious/Makefile head/www/p5-Mojolicious/distinfo Modified: head/www/p5-Mojolicious/Makefile ============================================================================== --- head/www/p5-Mojolicious/Makefile Wed Oct 7 19:46:16 2015 (r398784) +++ head/www/p5-Mojolicious/Makefile Wed Oct 7 20:19:17 2015 (r398785) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojolicious -PORTVERSION= 6.22 +PORTVERSION= 6.23 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Mojolicious/distinfo ============================================================================== --- head/www/p5-Mojolicious/distinfo Wed Oct 7 19:46:16 2015 (r398784) +++ head/www/p5-Mojolicious/distinfo Wed Oct 7 20:19:17 2015 (r398785) @@ -1,2 +1,2 @@ -SHA256 (Mojolicious-6.22.tar.gz) = ce35fb585a6ee9ea191303ae5c83e3afbfdfce6c3e5ae851c15dbbbff8f384af -SIZE (Mojolicious-6.22.tar.gz) = 650658 +SHA256 (Mojolicious-6.23.tar.gz) = 6205bd318e7059a7fa69a533cb0ddc1b0b5d370612c661ef45bcd646f2f3802a +SIZE (Mojolicious-6.23.tar.gz) = 651038 From owner-svn-ports-head@freebsd.org Wed Oct 7 20:24:06 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 D065B9D1C2D; Wed, 7 Oct 2015 20:24:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98CD21E5D; Wed, 7 Oct 2015 20:24:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97KO55O055153; Wed, 7 Oct 2015 20:24:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97KO5HM055152; Wed, 7 Oct 2015 20:24:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510072024.t97KO5HM055152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 7 Oct 2015 20:24:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398786 - in head/net: . ntp-rc 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: Wed, 07 Oct 2015 20:24:06 -0000 Author: antoine Date: Wed Oct 7 20:24:05 2015 New Revision: 398786 URL: https://svnweb.freebsd.org/changeset/ports/398786 Log: Remove net/ntp-rc: - it is removed according to MOVED - its PKGBASE collides with net/ntp With hat: portmgr Deleted: head/net/ntp-rc/ Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Oct 7 20:19:17 2015 (r398785) +++ head/net/Makefile Wed Oct 7 20:24:05 2015 (r398786) @@ -448,7 +448,6 @@ SUBDIR += ntopng SUBDIR += ntp SUBDIR += ntp-devel - SUBDIR += ntp-rc SUBDIR += ntraceroute SUBDIR += nusoap SUBDIR += nxproxy From owner-svn-ports-head@freebsd.org Wed Oct 7 20:46: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 2C7129D0BE3; Wed, 7 Oct 2015 20:46:32 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 05373151E; Wed, 7 Oct 2015 20:46:31 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97KkV4Q061444; Wed, 7 Oct 2015 20:46:31 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97KkUpY061439; Wed, 7 Oct 2015 20:46:30 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201510072046.t97KkUpY061439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Wed, 7 Oct 2015 20:46:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398787 - in head/net-im/xmpp-client: . 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: Wed, 07 Oct 2015 20:46:32 -0000 Author: cs Date: Wed Oct 7 20:46:30 2015 New Revision: 398787 URL: https://svnweb.freebsd.org/changeset/ports/398787 Log: Update to 20150822 Modified: head/net-im/xmpp-client/Makefile head/net-im/xmpp-client/distinfo head/net-im/xmpp-client/files/patch-config.go head/net-im/xmpp-client/files/patch-input.go head/net-im/xmpp-client/files/patch-ui.go Modified: head/net-im/xmpp-client/Makefile ============================================================================== --- head/net-im/xmpp-client/Makefile Wed Oct 7 20:24:05 2015 (r398786) +++ head/net-im/xmpp-client/Makefile Wed Oct 7 20:46:30 2015 (r398787) @@ -1,11 +1,9 @@ # $FreeBSD$ PORTNAME= xmpp-client -PORTVERSION= 20150208 +PORTVERSION= 20150822 CATEGORIES= net-im MASTER_SITES= http://c-s.li/ports/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - xmpp-20150105.tar.gz MAINTAINER= cs@FreeBSD.org COMMENT= XMPP client with OTR support @@ -21,7 +19,6 @@ GO_PKGNAME= github.com/agl/${PORTNAME} post-extract: @${MKDIR} ${GO_WRKSRC:H} @${LN} -sf ${WRKSRC} ${GO_WRKSRC} - @${LN} -sf ${WRKDIR}/xmpp-20150105 ${GO_WRKDIR_SRC}/github.com/agl/xmpp .include Modified: head/net-im/xmpp-client/distinfo ============================================================================== --- head/net-im/xmpp-client/distinfo Wed Oct 7 20:24:05 2015 (r398786) +++ head/net-im/xmpp-client/distinfo Wed Oct 7 20:46:30 2015 (r398787) @@ -1,4 +1,2 @@ -SHA256 (xmpp-client-20150208.tar.gz) = 9a2f079ee5b075d1af073e1dd566d4e2f2844d4383fa84668e94c41c33d9cba7 -SIZE (xmpp-client-20150208.tar.gz) = 23272 -SHA256 (xmpp-20150105.tar.gz) = f7b8867ebd943f859f5c98594874f282d3b6066af741e4a0eeaab7dfb1347f36 -SIZE (xmpp-20150105.tar.gz) = 12825 +SHA256 (xmpp-client-20150822.tar.gz) = 9004459bf1c01fcb9fe20af10ad0f56661a3d297c0a798dbeac7e690c8cfc9fa +SIZE (xmpp-client-20150822.tar.gz) = 38186 Modified: head/net-im/xmpp-client/files/patch-config.go ============================================================================== --- head/net-im/xmpp-client/files/patch-config.go Wed Oct 7 20:24:05 2015 (r398786) +++ head/net-im/xmpp-client/files/patch-config.go Wed Oct 7 20:46:30 2015 (r398787) @@ -1,9 +1,9 @@ ---- config.go.orig 2015-03-07 22:36:57.219206000 +0100 -+++ config.go 2015-03-07 22:39:28.246637000 +0100 +--- config.go.orig 2015-07-15 22:34:06.825572000 +0200 ++++ config.go 2015-07-15 22:36:21.406502000 +0200 @@ -12,9 +12,9 @@ "strings" - "github.com/agl/xmpp" + "github.com/agl/xmpp-client/xmpp" - "golang.org/x/crypto/otr" - "golang.org/x/crypto/ssh/terminal" - "golang.org/x/net/proxy" Modified: head/net-im/xmpp-client/files/patch-input.go ============================================================================== --- head/net-im/xmpp-client/files/patch-input.go Wed Oct 7 20:24:05 2015 (r398786) +++ head/net-im/xmpp-client/files/patch-input.go Wed Oct 7 20:46:30 2015 (r398787) @@ -1,5 +1,5 @@ ---- input.go.orig 2015-03-07 22:39:38.830132000 +0100 -+++ input.go 2015-03-07 22:39:59.824941000 +0100 +--- input.go.orig 2015-07-15 22:36:40.838076000 +0200 ++++ input.go 2015-07-15 22:36:50.956305000 +0200 @@ -7,7 +7,7 @@ "strings" "sync" Modified: head/net-im/xmpp-client/files/patch-ui.go ============================================================================== --- head/net-im/xmpp-client/files/patch-ui.go Wed Oct 7 20:24:05 2015 (r398786) +++ head/net-im/xmpp-client/files/patch-ui.go Wed Oct 7 20:46:30 2015 (r398787) @@ -1,9 +1,9 @@ ---- ui.go.orig 2015-03-07 22:40:10.096733000 +0100 -+++ ui.go 2015-03-07 22:41:07.136470000 +0100 -@@ -22,10 +22,10 @@ +--- ui.go.orig 2015-07-15 22:37:17.187612000 +0200 ++++ ui.go 2015-07-15 22:37:59.261081000 +0200 +@@ -23,10 +23,10 @@ "time" - "github.com/agl/xmpp" + "github.com/agl/xmpp-client/xmpp" - "golang.org/x/crypto/otr" - "golang.org/x/crypto/ssh/terminal" - "golang.org/x/net/html" From owner-svn-ports-head@freebsd.org Wed Oct 7 20:59: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 7CD719D12BC; Wed, 7 Oct 2015 20:59:01 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 489B6279; Wed, 7 Oct 2015 20:59:01 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97Kx0pX064694; Wed, 7 Oct 2015 20:59:00 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97Kx0NB064693; Wed, 7 Oct 2015 20:59:00 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201510072059.t97Kx0NB064693@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 7 Oct 2015 20:59:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398788 - head/emulators/linux_base-c6 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: Wed, 07 Oct 2015 20:59:01 -0000 Author: robak Date: Wed Oct 7 20:59:00 2015 New Revision: 398788 URL: https://svnweb.freebsd.org/changeset/ports/398788 Log: emulators/linux_base-c6: fix unfetchable distfiles - After Centos 6.6 was deprecated, the MASTER_SITE_SUBDIR was pointing to no longer existing location. This change gets that fixed, allowing the port to build again. Submitted by: Pawel Biernacki MFH: 2015Q4 Modified: head/emulators/linux_base-c6/Makefile Modified: head/emulators/linux_base-c6/Makefile ============================================================================== --- head/emulators/linux_base-c6/Makefile Wed Oct 7 20:46:30 2015 (r398787) +++ head/emulators/linux_base-c6/Makefile Wed Oct 7 20:59:00 2015 (r398788) @@ -6,9 +6,8 @@ PORTVERSION= 6.6 PORTREVISION= 6 CATEGORIES= emulators linux MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES -MASTER_SITE_SUBDIR= centos/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/\ - centos/${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ \ - ${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/ +MASTER_SITE_SUBDIR= ${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/\ + ${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ PKGNAMEPREFIX= linux_base- DISTFILES= ${PRE_BIN_DISTFILES} ${BIN_DISTFILES} ${SRC_DISTFILES} From owner-svn-ports-head@freebsd.org Wed Oct 7 22:03: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 28C109D1D20; Wed, 7 Oct 2015 22:03:39 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E998B9A1; Wed, 7 Oct 2015 22:03:38 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t97M3cDG084838; Wed, 7 Oct 2015 22:03:38 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t97M3cha084837; Wed, 7 Oct 2015 22:03:38 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510072203.t97M3cha084837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Wed, 7 Oct 2015 22:03:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398789 - head/misc/ruby-progressbar 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: Wed, 07 Oct 2015 22:03:39 -0000 Author: mmoll Date: Wed Oct 7 22:03:37 2015 New Revision: 398789 URL: https://svnweb.freebsd.org/changeset/ports/398789 Log: misc/ruby-progressbar: set to deprecated Approved by: tota (maintainer, via private mail) Modified: head/misc/ruby-progressbar/Makefile Modified: head/misc/ruby-progressbar/Makefile ============================================================================== --- head/misc/ruby-progressbar/Makefile Wed Oct 7 20:59:00 2015 (r398788) +++ head/misc/ruby-progressbar/Makefile Wed Oct 7 22:03:37 2015 (r398789) @@ -13,6 +13,9 @@ DISTNAME= ruby-${PORTNAME}-${PORTVERSION MAINTAINER= tota@FreeBSD.org COMMENT= Text progress bar library for Ruby +DEPRECATED= Abandoned upstream, superseded by devel/rubygem-ruby-progressbar +EXPIRATION_DATE= 2015-10-22 + CONFLICTS_INSTALL= rubygem-ruby-progressbar-* USE_RUBY= yes NO_BUILD= yes From owner-svn-ports-head@freebsd.org Thu Oct 8 01:09:40 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 61C649D0CDB; Thu, 8 Oct 2015 01:09:40 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 382901098; Thu, 8 Oct 2015 01:09:40 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9819db0037900; Thu, 8 Oct 2015 01:09:39 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9819d6Y037897; Thu, 8 Oct 2015 01:09:39 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201510080109.t9819d6Y037897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Thu, 8 Oct 2015 01:09:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398790 - in head/editors/openoffice-devel: . 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: Thu, 08 Oct 2015 01:09:40 -0000 Author: truckman Date: Thu Oct 8 01:09:38 2015 New Revision: 398790 URL: https://svnweb.freebsd.org/changeset/ports/398790 Log: Temporarily downgrade the openoffice-devel port from the upstream trunk branch to 4.1.2-RC1 in order to give the latter wider exposure before 4.1.2 is released. Add this missing missing bits of patch-i114430 that were committed to trunk upstream but that are not in 4.1.2-RC1. Removing --enable-symbols=small from CONFIGURE_ARGS allows us to avoid the need to use ${STRIP_CMD}. Added: head/editors/openoffice-devel/files/patch-i114430-41x (contents, props changed) Modified: head/editors/openoffice-devel/Makefile head/editors/openoffice-devel/distinfo Modified: head/editors/openoffice-devel/Makefile ============================================================================== --- head/editors/openoffice-devel/Makefile Wed Oct 7 22:03:37 2015 (r398789) +++ head/editors/openoffice-devel/Makefile Thu Oct 8 01:09:38 2015 (r398790) @@ -4,9 +4,9 @@ PORTNAME= apache-openoffice PORTVERSION= ${AOOVERSION1}.${AOOVERSION2}.${SVNREVISION} PORTREVISION= 1 -PORTEPOCH= 3 +PORTEPOCH= 4 CATEGORIES= editors java -MASTER_SITES= http://ci.apache.org/projects/openoffice/milestones/${AOOVERSION}-${AOORC}-r${SVNREVISION}/source/ \ +MASTER_SITES= https://dist.apache.org/repos/dist/dev/openoffice/${AOOVERSION}-${AOORC}-r1705606/source/ \ http://tools.openoffice.org/unowinreg_prebuild/680/:unoreg \ LOCAL/truckman/openoffice:snap,extsrc .if defined(LANG_PKGNAME) @@ -98,12 +98,12 @@ RUN_DEPENDS= \ ${LOCALBASE}/share/fonts/ChromeOS/Arimo-Bold.ttf:${PORTSDIR}/x11-fonts/croscorefonts-fonts-ttf AOOVERSION1= 4 -AOOVERSION2= 2 -AOOVERSION3= 0 +AOOVERSION2= 1 +AOOVERSION3= 2 # From solenv/inc/minor.mk SOURCEREVISION LAST_MINOR BUILD -AOOTAG= AOO420m1\(Build:9800\) -SVNREVISION= 1704217 -#AOORC=rc3 +AOOTAG= AOO412m1\(Build:9780\) +SVNREVISION= 1705575 +AOORC=rc1 EXTSRC= ApacheOpenOffice.ext_sources.${AOOVERSION1}.x.x.20150707.tar.gz AOOVERSION= ${AOOVERSION1}.${AOOVERSION2}.${AOOVERSION3} @@ -261,7 +261,6 @@ CONFIGURE_ARGS+= \ --with-system-sane \ --with-system-serf \ --with-system-stdlibs \ - --enable-symbols=small \ --without-stlport \ --with-vendor="FreeBSD ports system" \ --enable-verbose \ @@ -413,10 +412,6 @@ do-install: cd ${WRKSRC}/solver/${AOOXXX}/unxfbsd?.pro/bin/ ; \ ${INSTALL_DATA} ${AOOEXTENSIONS} \ ${STAGEDIR}${PRINSTALLATION_BASEDIR}/extensions/ - @cd ${STAGEDIR}${OOPATH}/program ; \ - ${ECHO_CMD} "stripping executables and shared libraries" ; \ - ${STRIP_CMD} crashrep pagein uri-encode javaldx regmerge \ - regview *.so* *.bin ${FIND} ${STAGEDIR}${PRINSTALLATION_BASEDIR} -type d -exec ${CHMOD} 755 {} \; ${REINPLACE_CMD} \ -e '/^UserInstallation/s/=.*/=$$SYSUSERCONFIG\/${AOOUDIR}/' \ Modified: head/editors/openoffice-devel/distinfo ============================================================================== --- head/editors/openoffice-devel/distinfo Wed Oct 7 22:03:37 2015 (r398789) +++ head/editors/openoffice-devel/distinfo Thu Oct 8 01:09:38 2015 (r398790) @@ -1,5 +1,5 @@ -SHA256 (openoffice/apache-openoffice-r1704217-src.tar.xz) = 52b0c1c54cfd0aa9ec1bd27a99c2c6240fd4279171bcf6025383fe7e0d55f24b -SIZE (openoffice/apache-openoffice-r1704217-src.tar.xz) = 215145548 +SHA256 (openoffice/apache-openoffice-4.1.2-r1705575-src.tar.bz2) = 1982bb65d0b37e3afee8e6508c2fcef7a4a6f19e3ece40d94499ba681ea44c9b +SIZE (openoffice/apache-openoffice-4.1.2-r1705575-src.tar.bz2) = 218997145 SHA256 (openoffice/unowinreg.dll) = f563e522922133db9340b0306711c2d8767cc3481dd9e7d9b0d059906d12653c SIZE (openoffice/unowinreg.dll) = 6144 SHA256 (openoffice/ApacheOpenOffice.ext_sources.4.x.x.20150707.tar.gz) = 966a8333c83a18ddd84401389006d6e0b52b8175924b808b54b88211669985fa Added: head/editors/openoffice-devel/files/patch-i114430-41x ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-devel/files/patch-i114430-41x Thu Oct 8 01:09:38 2015 (r398790) @@ -0,0 +1,73 @@ +--- sal/inc/rtl/math.h.orig 2014-02-25 08:31:58 UTC ++++ sal/inc/rtl/math.h +@@ -396,6 +396,21 @@ double SAL_CALL rtl_math_round(double fV + */ + double SAL_CALL rtl_math_pow10Exp(double fValue, int nExp) SAL_THROW_EXTERN_C(); + ++/** Similar to pow() with stricter exception handling for indeterminate values. ++ ++ powr is specified in the IEEE 754 - 2008 Floating Point Standard. ++ ++ @param fValue ++ The value to be raised. ++ ++ @param fExp ++ The exponent. ++ ++ @return ++ powr(fValue, fExp) ++ */ ++double SAL_CALL rtl_math_powr(double fValue, double fExp) SAL_THROW_EXTERN_C(); ++ + /** Rounds value to 15 significant decimal digits. + + @param fValue +--- sal/inc/rtl/math.hxx.orig 2014-02-25 08:31:58 UTC ++++ sal/inc/rtl/math.hxx +@@ -186,6 +186,13 @@ inline double pow10Exp(double fValue, in + return rtl_math_pow10Exp(fValue, nExp); + } + ++/** A wrapper around rtl_math_powr. ++ */ ++inline double powr(double fValue, double fExp) ++{ ++ return rtl_math_powr(fValue, fExp); ++} ++ + /** A wrapper around rtl_math_approxValue. + */ + inline double approxValue(double fValue) +--- sal/rtl/source/math.cxx.orig 2014-02-25 08:31:57 UTC ++++ sal/rtl/source/math.cxx +@@ -1113,6 +1113,19 @@ double SAL_CALL rtl_math_expm1( double f + return (fe-1.0) * fValue / log(fe); + } + ++double SAL_CALL rtl_math_powr( double fValue, double fExp ) SAL_THROW_EXTERN_C() ++{ ++ if ((fValue == 0.0 && fExp == 0.0) || ++ (rtl::math::isInf( fExp ) && !rtl::math::isSignBitSet( fExp )) || ++ (rtl::math::isInf( fValue ) && !rtl::math::isSignBitSet( fValue ))) ++ { ++ double fResult; ++ ::rtl::math::setNan( &fResult ); ++ return fResult; ++ } ++ return pow(fValue, fExp); ++} ++ + + double SAL_CALL rtl_math_log1p( double fValue ) SAL_THROW_EXTERN_C() + { +--- sal/util/sal.map.orig 2014-02-25 08:31:48 UTC ++++ sal/util/sal.map +@@ -629,6 +629,8 @@ UDK_3.12 { # AOO 3.5 + global: + osl_loadAsciiModule; + osl_loadAsciiModuleRelative; ++ ++ rtl_math_powr; + } UDK_3.11; + + PRIVATE_1.0 { From owner-svn-ports-head@freebsd.org Thu Oct 8 01:51:29 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 0314D9D10B9; Thu, 8 Oct 2015 01:51:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A39841174; Thu, 8 Oct 2015 01:51:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t981pROi049709; Thu, 8 Oct 2015 01:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t981pR9w049706; Thu, 8 Oct 2015 01:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510080151.t981pR9w049706@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 01:51:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398792 - in head/mail/dma: . 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: Thu, 08 Oct 2015 01:51:29 -0000 Author: amdmi3 Date: Thu Oct 8 01:51:27 2015 New Revision: 398792 URL: https://svnweb.freebsd.org/changeset/ports/398792 Log: - Drop 8.x support - Fix staging on 11.x Approved by: portmgr blanket Added: head/mail/dma/files/patch-spool.c - copied unchanged from r390640, head/mail/dma/files/extrapatch-else-spool.c Deleted: head/mail/dma/files/extrapatch-8-spool.c head/mail/dma/files/extrapatch-else-spool.c Modified: head/mail/dma/Makefile head/mail/dma/pkg-plist Modified: head/mail/dma/Makefile ============================================================================== --- head/mail/dma/Makefile Thu Oct 8 01:51:27 2015 (r398791) +++ head/mail/dma/Makefile Thu Oct 8 01:51:27 2015 (r398792) @@ -35,10 +35,11 @@ CONFFILES+= dma.conf auth.conf .include -.if ${OSVERSION} < 900000 -EXTRA_PATCHES= ${FILESDIR}/extrapatch-8-spool.c +# 11.x has dma imported into base and /var/spool/dma added to mtree +.if ${OSVERSION} < 1100009 +PLIST_SUB+= VARDIR="" .else -EXTRA_PATCHES= ${FILESDIR}/extrapatch-else-spool.c +PLIST_SUB+= VARDIR="@comment " .endif pre-patch: Copied: head/mail/dma/files/patch-spool.c (from r390640, head/mail/dma/files/extrapatch-else-spool.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dma/files/patch-spool.c Thu Oct 8 01:51:27 2015 (r398792, copy of r390640, head/mail/dma/files/extrapatch-else-spool.c) @@ -0,0 +1,11 @@ +--- spool.c.orig 2013-06-03 14:03:15.000000000 +0000 ++++ spool.c 2013-08-22 11:07:47.000000000 +0000 +@@ -415,7 +415,7 @@ flushqueue_since(unsigned int period) + return (0); + + /* Did the flush file get touched within the last period seconds? */ +- if (st.st_mtim.tv_sec + period >= now.tv_sec) ++ if (st.st_mtim.tv_sec + (int)period >= now.tv_sec) + return (1); + else + return (0); Modified: head/mail/dma/pkg-plist ============================================================================== --- head/mail/dma/pkg-plist Thu Oct 8 01:51:27 2015 (r398791) +++ head/mail/dma/pkg-plist Thu Oct 8 01:51:27 2015 (r398792) @@ -3,4 +3,4 @@ @sample(root,mail,0644) etc/dma/dma.conf.sample @sample(root,mail,0640) etc/dma/auth.conf.sample man/man8/dma.8.gz -@dir(root,mail,770) /var/spool/dma +%%VARDIR%%@dir(root,mail,770) /var/spool/dma From owner-svn-ports-head@freebsd.org Thu Oct 8 01:51: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 78CFC9D10B4; Thu, 8 Oct 2015 01:51:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AF411171; Thu, 8 Oct 2015 01:51:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t981pRvK049685; Thu, 8 Oct 2015 01:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t981pRsW049681; Thu, 8 Oct 2015 01:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510080151.t981pRsW049681@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 01:51:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398791 - head/net/ntop 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: Thu, 08 Oct 2015 01:51:28 -0000 Author: amdmi3 Date: Thu Oct 8 01:51:27 2015 New Revision: 398791 URL: https://svnweb.freebsd.org/changeset/ports/398791 Log: - Switch to options helpers - Fix build with PCAP_PORT by depending on specific .so version (otherwise dependency is satisfied with system libpcap.so, net/libpcap is not installed and the build fails) - Drop 8.x support Approved by: portmgr blanket Modified: head/net/ntop/Makefile Modified: head/net/ntop/Makefile ============================================================================== --- head/net/ntop/Makefile Thu Oct 8 01:09:38 2015 (r398790) +++ head/net/ntop/Makefile Thu Oct 8 01:51:27 2015 (r398791) @@ -50,44 +50,21 @@ XMLDUMP_DESC= Enable XML Dump support JUMBO_FRAMES_DESC= Jumbo Frames (experimental) MAKO_DESC= Install py-mako for Host Map, Region View -.include +PCAP_PORT_LIB_DEPENDS= libpcap.so.1:${PORTSDIR}/net/libpcap +PCAP_PORT_CONFIGURE_ON= --with-pcap-root=${LOCALBASE} +PCAP_PORT_CONFIGURE_OFF=--with-pcap-root=/usr -.if ${PORT_OPTIONS:MPCAP_PORT} -LIB_DEPENDS+= libpcap.so:${PORTSDIR}/net/libpcap -CONFIGURE_ARGS+= --with-pcap-root=${LOCALBASE} -.else -CONFIGURE_ARGS+= --with-pcap-root=/usr -.endif - -.if ${PORT_OPTIONS:MXMLDUMP} -LIB_DEPENDS+= libgdome.so:${PORTSDIR}/textproc/gdome2 -CPPFLAGS+= -I${LOCALBASE}/include/libxml2 \ +XMLDUMP_LIB_DEPENDS= libgdome.so:${PORTSDIR}/textproc/gdome2 +XMLDUMP_CPPFLAGS= -I${LOCALBASE}/include/libxml2 \ -I${LOCALBASE}/include/libxml2/libxml \ -I${LOCALBASE}/include/libgdome \ -I${LOCALBASE}/include/glib-2.0 -.endif -.if ${PORT_OPTIONS:MJUMBO_FRAMES} -CONFIGURE_ARGS+= --enable-jumbo-frames # should set your mtu to 9000 # see http://www.cyberciti.biz/faq/freebsd-jumbo-frames-networking-configration/ -.endif +JUMBO_FRAMES_CONFIGURE_ON= --enable-jumbo-frames -.if ${PORT_OPTIONS:MMAKO} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako -.endif - -.include - -# Quick and dirty hackaround - older binutils barf when asked to strip -# an .a file, newer complain about missing sections and succeed. -# The real fix would be for ntop to not try stripping .a files, -# but upstream seems to have gone ahead with ntopng so this may not -# ever be fixed. -.if ${OSVERSION} < 900033 -USE_BINUTILS= yes -CONFIGURE_ARGS+= STRIP=${LOCALBASE}/bin/strip -.endif +MAKO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako pre-configure: @(cd ${WRKSRC} && ./autogen.sh --noconfig) @@ -98,4 +75,4 @@ pre-install: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ntop/plugins/*.so -.include +.include From owner-svn-ports-head@freebsd.org Thu Oct 8 03:54:54 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 D1C869D1898; Thu, 8 Oct 2015 03:54:54 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92AA99F7; Thu, 8 Oct 2015 03:54:54 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t983srJa088520; Thu, 8 Oct 2015 03:54:53 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t983srbS088517; Thu, 8 Oct 2015 03:54:53 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080354.t983srbS088517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 03:54:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398793 - head/www/webalizer 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: Thu, 08 Oct 2015 03:54:55 -0000 Author: dinoex Date: Thu Oct 8 03:54:53 2015 New Revision: 398793 URL: https://svnweb.freebsd.org/changeset/ports/398793 Log: - update to geodb-20150901 Modified: head/www/webalizer/Makefile head/www/webalizer/distinfo Modified: head/www/webalizer/Makefile ============================================================================== --- head/www/webalizer/Makefile Thu Oct 8 01:51:27 2015 (r398792) +++ head/www/webalizer/Makefile Thu Oct 8 03:54:53 2015 (r398793) @@ -46,12 +46,12 @@ LARGE_URL_DESC=Enable URLs longer 512 by DISTFILES+= webalizer-flags.tgz:main .endif .if ${PORT_OPTIONS:MGEODB} || make(makesum) || defined(FETCH_ALL) -DISTFILES+= webalizer-geodb-20141101.tgz:geodb +DISTFILES+= webalizer-geodb-20150901.tgz:geodb .endif # slave ports override with languages specific gd .if !defined(LIB_DEPENDS) -LIB_DEPENDS= libgd.so:${PORTSDIR}/${GD_PORT} +LIB_DEPENDS+= libgd.so:${PORTSDIR}/${GD_PORT} .endif .if ${PORT_OPTIONS:MGEOIP} @@ -76,7 +76,7 @@ CONFIGURE_ARGS+= --enable-geoip \ CONFLICTS+= ${PKGNAMEPREFIX}webalizer-geoip-2* .endif -.if ${PORT_OPTIONS:MGEODB} || ${PORT_OPTIONS:MGEOIP} +.if ${PORT_OPTIONS:MGEODB} || ${PORT_OPTIONS:MGEOIP} PLIST_SUB+= WITH_GEOIP="" .else PLIST_SUB+= WITH_GEOIP="@comment " @@ -100,7 +100,7 @@ CONFIGURE_ARGS+= --enable-dns \ LDFLAGS+= -L${PREFIX}/lib CFLAGS+= -Wall -MAN1= ${PKGNAMEPREFIX}webalizer.1 ${PKGNAMEPREFIX}wcmgr.1 +LMAN1= ${PKGNAMEPREFIX}webalizer.1 ${PKGNAMEPREFIX}wcmgr.1 DOC1= CHANGES Copyright INSTALL \ README README.FIRST DNS.README country-codes.txt EXAMPLES1= msfree.png sample.conf webalizer.png @@ -178,10 +178,10 @@ do-install: ${STAGEDIR}${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ; post-install: -.for i in ${MAN1} +.for i in ${LMAN1} ${INSTALL_MAN} ${WRKSRC}/${i:S/^${PKGNAMEPREFIX}//} ${STAGEDIR}${PREFIX}/man/man1/${i} .endfor -.if ${PORT_OPTIONS:MGEODB} || ${PORT_OPTIONS:MGEOIP} +.if ${PORT_OPTIONS:MGEODB} || ${PORT_OPTIONS:MGEOIP} ${MKDIR} ${STAGEDIR}${PREFIX}/share/geolizer ${INSTALL_DATA} ${WRKDIR}/flags/* ${STAGEDIR}${PREFIX}/share/geolizer/ .endif Modified: head/www/webalizer/distinfo ============================================================================== --- head/www/webalizer/distinfo Thu Oct 8 01:51:27 2015 (r398792) +++ head/www/webalizer/distinfo Thu Oct 8 03:54:53 2015 (r398793) @@ -2,5 +2,5 @@ SHA256 (webalizer-2.23-08-src.tgz) = eda SIZE (webalizer-2.23-08-src.tgz) = 537037 SHA256 (webalizer-flags.tgz) = df9961fec7da2c16ed3faefb763f912c2db5ddce6a24e4f46647d7e64b8ab29a SIZE (webalizer-flags.tgz) = 146658 -SHA256 (webalizer-geodb-20141101.tgz) = 5a04ea0d0338234ec566de42a1ad6f1b88290ef0449b9b6fdc5bf383226d5e84 -SIZE (webalizer-geodb-20141101.tgz) = 819190 +SHA256 (webalizer-geodb-20150901.tgz) = dfc3023924968d45c1bad52ec89f63c6e885ce88c6aec48ae098a2db783709e7 +SIZE (webalizer-geodb-20150901.tgz) = 962059 From owner-svn-ports-head@freebsd.org Thu Oct 8 03:57:17 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 5B5009D19D6; Thu, 8 Oct 2015 03:57:17 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 276A1CCD; Thu, 8 Oct 2015 03:57:17 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t983vGq7088708; Thu, 8 Oct 2015 03:57:16 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t983vGfM088707; Thu, 8 Oct 2015 03:57:16 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080357.t983vGfM088707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 03:57:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398794 - head/x11-wm/afterstep 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: Thu, 08 Oct 2015 03:57:17 -0000 Author: dinoex Date: Thu Oct 8 03:57:16 2015 New Revision: 398794 URL: https://svnweb.freebsd.org/changeset/ports/398794 Log: - cleanup Modified: head/x11-wm/afterstep/Makefile Modified: head/x11-wm/afterstep/Makefile ============================================================================== --- head/x11-wm/afterstep/Makefile Thu Oct 8 03:54:53 2015 (r398793) +++ head/x11-wm/afterstep/Makefile Thu Oct 8 03:57:16 2015 (r398794) @@ -6,8 +6,8 @@ PORTVERSION= 1.0 PORTREVISION= 4 CATEGORIES= x11-wm afterstep MASTER_SITES= LOCAL/dinoex -DISTNAME= AfterStep-${PORTVERSION} PKGNAMESUFFIX= 1${PKGNAMESUFFIX2} +DISTNAME= AfterStep-${PORTVERSION} MAINTAINER= dinoex@FreeBSD.org COMMENT= Window manager originally based on the Bowman NeXTstep clone From owner-svn-ports-head@freebsd.org Thu Oct 8 03:57:55 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 899EF9D1A49; Thu, 8 Oct 2015 03:57:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D1F9DBF; Thu, 8 Oct 2015 03:57:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t983vskG088839; Thu, 8 Oct 2015 03:57:54 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t983vs6w088837; Thu, 8 Oct 2015 03:57:54 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080357.t983vs6w088837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 03:57:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398795 - head/textproc/agrep 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: Thu, 08 Oct 2015 03:57:55 -0000 Author: dinoex Date: Thu Oct 8 03:57:54 2015 New Revision: 398795 URL: https://svnweb.freebsd.org/changeset/ports/398795 Log: - cleanup Modified: head/textproc/agrep/Makefile head/textproc/agrep/pkg-descr Modified: head/textproc/agrep/Makefile ============================================================================== --- head/textproc/agrep/Makefile Thu Oct 8 03:57:16 2015 (r398794) +++ head/textproc/agrep/Makefile Thu Oct 8 03:57:54 2015 (r398795) @@ -6,7 +6,6 @@ PORTVERSION= 2.04 PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= ftp://ftp.cs.arizona.edu/agrep/ -EXTRACT_SUFX= .tar.Z DISTFILES= ${DISTNAME}${EXTRACT_SUFX} agrep.ps.1.Z agrep.ps.2.Z EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -15,6 +14,8 @@ COMMENT= Approximate grep (fast approxim NO_CDROM= No redistribution for profit +USES= tar:Z + ALL_TARGET= MAKE_ARGS= CFLAGS="${CFLAGS}" PLIST_FILES= bin/agrep man/man1/agrep.1.gz Modified: head/textproc/agrep/pkg-descr ============================================================================== --- head/textproc/agrep/pkg-descr Thu Oct 8 03:57:16 2015 (r398794) +++ head/textproc/agrep/pkg-descr Thu Oct 8 03:57:54 2015 (r398795) @@ -21,23 +21,4 @@ the grep family are "agrep -d '^From ' 'good;pizza' mbox" outputs all mail messages containing both keywords. -Putting these options together one can ask queries like - -agrep -d '$$' -2 ';TheAuthor;Curriculum;<198[5-9]>' bib - -which outputs all paragraphs referencing articles in CACM between -1985 and 1989 by TheAuthor dealing with curriculum. -Two errors are allowed, but they cannot be in either CACM or the year -(the <> brackets forbid errors in the pattern between them). - -Two technical papers describing agrep are available as: - - agrep.ps.1 is a technical report from June 1991 describing the - design and implementation of agrep - ftp://ftp.cs.arizona.edu/agrep/agrep.ps.1.Z - - agrep.ps.2 is a copy of the paper as appeared in the 1992 Winter - USENIX conference. - ftp://ftp.cs.arizona.edu/agrep/agrep.ps.2.Z - LICENSE: no redistribution for profit From owner-svn-ports-head@freebsd.org Thu Oct 8 03:58: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 0AFB49D1AB0; Thu, 8 Oct 2015 03:58:28 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBE13EA9; Thu, 8 Oct 2015 03:58:27 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t983wQJB088950; Thu, 8 Oct 2015 03:58:26 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t983wQAR088949; Thu, 8 Oct 2015 03:58:26 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080358.t983wQAR088949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 03:58:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398796 - head/net-p2p/ctorrent 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: Thu, 08 Oct 2015 03:58:28 -0000 Author: dinoex Date: Thu Oct 8 03:58:26 2015 New Revision: 398796 URL: https://svnweb.freebsd.org/changeset/ports/398796 Log: - cleanup Modified: head/net-p2p/ctorrent/pkg-message Modified: head/net-p2p/ctorrent/pkg-message ============================================================================== --- head/net-p2p/ctorrent/pkg-message Thu Oct 8 03:57:54 2015 (r398795) +++ head/net-p2p/ctorrent/pkg-message Thu Oct 8 03:58:26 2015 (r398796) @@ -1,8 +1,6 @@ - ------------------------------------------------------------------------- Ctorrent was installed. You might be interested in installing net-p2p/ctcs to control ctorrent remotely. ------------------------------------------------------------------------- - From owner-svn-ports-head@freebsd.org Thu Oct 8 03:59: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 4D58B9D1B40; Thu, 8 Oct 2015 03:59:04 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF84BF9E; Thu, 8 Oct 2015 03:59:03 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t983x2rH089086; Thu, 8 Oct 2015 03:59:02 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t983x2bL089084; Thu, 8 Oct 2015 03:59:02 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080359.t983x2bL089084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 03:59:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398797 - head/news/fidogate 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: Thu, 08 Oct 2015 03:59:04 -0000 Author: dinoex Date: Thu Oct 8 03:59:02 2015 New Revision: 398797 URL: https://svnweb.freebsd.org/changeset/ports/398797 Log: - cleanup Modified: head/news/fidogate/Makefile head/news/fidogate/pkg-plist Modified: head/news/fidogate/Makefile ============================================================================== --- head/news/fidogate/Makefile Thu Oct 8 03:58:26 2015 (r398796) +++ head/news/fidogate/Makefile Thu Oct 8 03:59:02 2015 (r398797) @@ -62,14 +62,12 @@ pre-install: ${STAGEDIR}${DOCSDIR}/gatebau .endif -post-install: -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${TAR} -C ${WRKSRC}/doc -cf - ${DOCLIST} | ${TAR} -C ${STAGEDIR}${DOCSDIR} -xf - -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${TAR} -C ${WRKSRC}/examples -cf - . | ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} -xf - -.endif .include Modified: head/news/fidogate/pkg-plist ============================================================================== --- head/news/fidogate/pkg-plist Thu Oct 8 03:58:26 2015 (r398796) +++ head/news/fidogate/pkg-plist Thu Oct 8 03:59:02 2015 (r398797) @@ -69,7 +69,6 @@ libexec/fidogate/rununpack libexec/fidogate/send-ffx libexec/fidogate/send-fidogate libexec/fidogate/sumcrc -@dirrm libexec/fidogate %%PORTDOCS%%%%DOCSDIR%%/dirs.html %%PORTDOCS%%%%DOCSDIR%%/fido/fsc-0018.txt %%PORTDOCS%%%%DOCSDIR%%/fido/fsc-0028.txt @@ -149,14 +148,6 @@ libexec/fidogate/sumcrc %%PORTDOCS%%%%DOCSDIR%%/rfc/son-of-1036.html %%PORTDOCS%%%%DOCSDIR%%/template.html %%PORTDOCS%%%%DOCSDIR%%/texinfo.tex -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/info -%%PORTDOCS%%@dirrm %%DOCSDIR%%/fido -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto -%%PORTDOCS%%@dirrm %%DOCSDIR%%/misc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/gatebau -%%PORTDOCS%%@dirrm %%DOCSDIR%%/rfc -%%PORTDOCS%%@dirrm %%DOCSDIR%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/README %%PORTEXAMPLES%%%%EXAMPLESDIR%%/morannon/aliases %%PORTEXAMPLES%%%%EXAMPLESDIR%%/morannon/areas @@ -209,9 +200,3 @@ libexec/fidogate/sumcrc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/win32/passwd %%PORTEXAMPLES%%%%EXAMPLESDIR%%/win32/routing %%PORTEXAMPLES%%%%EXAMPLESDIR%%/win32/test-win32 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/morannon -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/orodruin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/point -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rpm -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/win32 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% From owner-svn-ports-head@freebsd.org Thu Oct 8 04:00:55 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 458C29D1C49; Thu, 8 Oct 2015 04:00:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAA491B7; Thu, 8 Oct 2015 04:00:54 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9840sg4091793; Thu, 8 Oct 2015 04:00:54 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9840s1Y091792; Thu, 8 Oct 2015 04:00:54 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080400.t9840s1Y091792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:00:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398798 - head/news/ifmail 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: Thu, 08 Oct 2015 04:00:55 -0000 Author: dinoex Date: Thu Oct 8 04:00:53 2015 New Revision: 398798 URL: https://svnweb.freebsd.org/changeset/ports/398798 Log: - cleanup Modified: head/news/ifmail/Makefile Modified: head/news/ifmail/Makefile ============================================================================== --- head/news/ifmail/Makefile Thu Oct 8 03:59:02 2015 (r398797) +++ head/news/ifmail/Makefile Thu Oct 8 04:00:53 2015 (r398798) @@ -10,6 +10,13 @@ MAINTAINER= dinoex@FreeBSD.org COMMENT= FidoNet(tm) support package for UN*X platform USES= shebangfix +USERS= ifmail +CFLAGS+= -DHAS_STDARG_H -Wall +GID!= id -g +MAKE_ARGS= OWNER=${UID} CC="${CC}" GROUP=${GID} CFLAGS="${CFLAGS}" + +LMAN3= parsedate.3 +LMAN8= ifmail.8 iftoss.8 SHEBANG_FILES= misc/contrib/a2dbm \ misc/contrib/abbs2nf/abbs2nf.pl \ misc/contrib/areafix-0.5.07/areafix.pl \ @@ -34,18 +41,9 @@ SHEBANG_FILES= misc/contrib/a2dbm \ misc/contrib/u-tic/u-attach.pl \ misc/contrib/u-tic/u-fix.pl \ misc/contrib/u-tic/u-tic.pl -USERS= ifmail -CFLAGS+= -DHAS_STDARG_H -Wall -GID!= id -g -MAKE_ARGS= OWNER=${UID} CC="${CC}" GROUP=${GID} CFLAGS="${CFLAGS}" - -LMAN3= parsedate.3 -LMAN8= ifmail.8 iftoss.8 OPTIONS_DEFINE= DOCS EXAMPLES -.include - pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/ifmail @@ -57,16 +55,16 @@ post-install: .for i in ${LMAN3} ${INSTALL_MAN} ${WRKSRC}/iflib/${i} ${STAGEDIR}${PREFIX}/man/man3/ .endfor -.if ${PORT_OPTIONS:MDOCS} + +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ .for i in ifcico ifgate iflib ${INSTALL_DATA} ${WRKSRC}/${i}/README ${STAGEDIR}${DOCSDIR}/README.${i} .endfor -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${TAR} -C ${WRKSRC}/misc -cf - . | ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} -xf - -.endif .include From owner-svn-ports-head@freebsd.org Thu Oct 8 04:01: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 7FD259D1CEC; Thu, 8 Oct 2015 04:01:28 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B3A0806; Thu, 8 Oct 2015 04:01:28 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9841Rmt091916; Thu, 8 Oct 2015 04:01:27 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9841RNH091915; Thu, 8 Oct 2015 04:01:27 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080401.t9841RNH091915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398799 - head/emulators/frodo 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: Thu, 08 Oct 2015 04:01:28 -0000 Author: dinoex Date: Thu Oct 8 04:01:27 2015 New Revision: 398799 URL: https://svnweb.freebsd.org/changeset/ports/398799 Log: - cleanup Modified: head/emulators/frodo/Makefile Modified: head/emulators/frodo/Makefile ============================================================================== --- head/emulators/frodo/Makefile Thu Oct 8 04:00:53 2015 (r398798) +++ head/emulators/frodo/Makefile Thu Oct 8 04:01:27 2015 (r398799) @@ -52,12 +52,10 @@ do-install: ${TAR} -C ${INSTALL_WRKSRC}/64prgs -cf - . | \ ${TAR} -C ${STAGEDIR}${PREFIX}/libexec/frodo/64prgs -xf - -.if ${PORT_OPTIONS:MDOCS} -post-install: +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${INSTALL_WRKSRC}/CHANGES ${STAGEDIR}${DOCSDIR}/ ${TAR} -C ${INSTALL_WRKSRC}/Docs -cf - . | \ ${TAR} -C ${STAGEDIR}${DOCSDIR} -xf - -.endif .include From owner-svn-ports-head@freebsd.org Thu Oct 8 04:02:07 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 36DF19D1E3B; Thu, 8 Oct 2015 04:02:07 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0477C982; Thu, 8 Oct 2015 04:02:06 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98426MA092035; Thu, 8 Oct 2015 04:02:06 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98426Zq092034; Thu, 8 Oct 2015 04:02:06 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080402.t98426Zq092034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:02:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398800 - head/x11-wm/fvwm 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: Thu, 08 Oct 2015 04:02:07 -0000 Author: dinoex Date: Thu Oct 8 04:02:05 2015 New Revision: 398800 URL: https://svnweb.freebsd.org/changeset/ports/398800 Log: - cleanup Modified: head/x11-wm/fvwm/Makefile Modified: head/x11-wm/fvwm/Makefile ============================================================================== --- head/x11-wm/fvwm/Makefile Thu Oct 8 04:01:27 2015 (r398799) +++ head/x11-wm/fvwm/Makefile Thu Oct 8 04:02:05 2015 (r398800) @@ -9,7 +9,7 @@ MASTER_SITES= ftp://ftp.fvwm.org/pub/fvw PKGNAMESUFFIX= 1${PKGNAMESUFFIX2} MAINTAINER= dinoex@FreeBSD.org -COMMENT= The fvwm window manager +COMMENT= Fvwm window manager USES= imake USE_XORG= xbitmaps xpm xext x11 xmu From owner-svn-ports-head@freebsd.org Thu Oct 8 04:08:52 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 D63479D020B; Thu, 8 Oct 2015 04:08:52 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4969AF7; Thu, 8 Oct 2015 04:08:52 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9848pd6092359; Thu, 8 Oct 2015 04:08:51 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9848pum092358; Thu, 8 Oct 2015 04:08:51 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080408.t9848pum092358@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:08:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398801 - head/mail/dk-milter 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: Thu, 08 Oct 2015 04:08:52 -0000 Author: dinoex Date: Thu Oct 8 04:08:51 2015 New Revision: 398801 URL: https://svnweb.freebsd.org/changeset/ports/398801 Log: - drop maintainership Modified: head/mail/dk-milter/Makefile Modified: head/mail/dk-milter/Makefile ============================================================================== --- head/mail/dk-milter/Makefile Thu Oct 8 04:02:05 2015 (r398800) +++ head/mail/dk-milter/Makefile Thu Oct 8 04:08:51 2015 (r398801) @@ -7,7 +7,7 @@ PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= SF/${PORTNAME}/DomainKeys%20Milter/${PORTVERSION} -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Domainkeys milter for Sendmail USE_RC_SUBR= milter-dk From owner-svn-ports-head@freebsd.org Thu Oct 8 04:11:35 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 EFA089D0495; Thu, 8 Oct 2015 04:11:35 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7A23DD4; Thu, 8 Oct 2015 04:11:35 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984BY1d092576; Thu, 8 Oct 2015 04:11:34 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984BY8Z092575; Thu, 8 Oct 2015 04:11:34 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080411.t984BY8Z092575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:11:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398802 - head/graphics/graphviz 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: Thu, 08 Oct 2015 04:11:36 -0000 Author: dinoex Date: Thu Oct 8 04:11:34 2015 New Revision: 398802 URL: https://svnweb.freebsd.org/changeset/ports/398802 Log: - cleanup Modified: head/graphics/graphviz/Makefile Modified: head/graphics/graphviz/Makefile ============================================================================== --- head/graphics/graphviz/Makefile Thu Oct 8 04:08:51 2015 (r398801) +++ head/graphics/graphviz/Makefile Thu Oct 8 04:11:34 2015 (r398802) @@ -71,7 +71,7 @@ MING_DESC= ming plugin DEVIL_DESC= devil plugin GHOSTSCRIPT_DESC=ghostscript plugin (requires PANGOCAIRO) PERL_DESC= Perl bindings (swig) -PHP_DESC= PHP bindings (swig) +PHP_DESC= PHP bindings (swig) PYTHON_DESC= Python bindings (swig) RUBY_DESC= Ruby bindings (swig) LUA_DESC= Lua bindings (swig) @@ -97,7 +97,7 @@ PYTHON_USES= python:2.7,build RUBY_USE= RUBY=yes LUA_USES= lua TCL_USES= tcl:build -TK_USES= tk:build +TK_USES= tk:build POPPLER_LIB_DEPENDS= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib ANN_LIB_DEPENDS= libann.so:${PORTSDIR}/math/ann GTS_LIB_DEPENDS= libgts.so:${PORTSDIR}/graphics/gts @@ -261,7 +261,6 @@ SHEBANG_FILES+= tclpkg/gv/demo/modgraph. SHEBANG_FILES+= tclpkg/gv/demo/modgraph.tcl .endif - post-patch: ${FIND} ${WRKSRC} -name Makefile.in | \ ${XARGS} ${REINPLACE_CMD} \ From owner-svn-ports-head@freebsd.org Thu Oct 8 04:32:30 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 BDD8A9D1377; Thu, 8 Oct 2015 04:32:30 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D2C6A68; Thu, 8 Oct 2015 04:32:30 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984WTPk001161; Thu, 8 Oct 2015 04:32:29 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984WTRJ001158; Thu, 8 Oct 2015 04:32:29 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080432.t984WTRJ001158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:32:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398803 - in head/irc: iroffer iroffer-dinoex iroffer-lamm 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: Thu, 08 Oct 2015 04:32:30 -0000 Author: dinoex Date: Thu Oct 8 04:32:29 2015 New Revision: 398803 URL: https://svnweb.freebsd.org/changeset/ports/398803 Log: - cleanup Modified: head/irc/iroffer-dinoex/Makefile head/irc/iroffer-lamm/Makefile head/irc/iroffer/Makefile Modified: head/irc/iroffer-dinoex/Makefile ============================================================================== --- head/irc/iroffer-dinoex/Makefile Thu Oct 8 04:11:34 2015 (r398802) +++ head/irc/iroffer-dinoex/Makefile Thu Oct 8 04:32:29 2015 (r398803) @@ -32,7 +32,7 @@ IROFFER_DOCS= README README.modDinoex LI doc/INSTALL-vhost-de.html doc/INSTALL-vhost-de.txt \ doc/INSTALL-vhost-en.html doc/INSTALL-vhost-en.txt \ doc/INSTALL-vhost-fr.html doc/INSTALL-vhost-fr.txt -IROFFER_EXAMPLES= iroffer.cron \ +IROFFER_EXAMPLES= iroffer.cron \ sample.config beispiel.config exemple.config \ header.html footer.html ruby-sample.rb IROFFER_HTDOCS= iroffer-state.css robots.txt \ @@ -50,8 +50,6 @@ UPNP_CONFIGURE_ON= -upnp GEOIP_LIB_DEPENDS= libGeoIP.so:${PORTSDIR}/net/GeoIP GEOIP_CONFIGURE_ON= -geoip -.include - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/iroffer ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/iroffer-de ${STAGEDIR}${PREFIX}/bin/ @@ -59,13 +57,14 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/iroffer-fr ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/iroffer.1 ${STAGEDIR}${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/xdcc.7 ${STAGEDIR}${PREFIX}/man/man7/ -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${IROFFER_DOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/ .endfor -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/htdocs .for i in ${IROFFER_HTDOCS} ${INSTALL_DATA} ${WRKSRC}/htdocs/${i} ${STAGEDIR}${EXAMPLESDIR}/htdocs/ @@ -73,6 +72,5 @@ do-install: .for i in ${IROFFER_EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${EXAMPLESDIR}/ .endfor -.endif .include Modified: head/irc/iroffer-lamm/Makefile ============================================================================== --- head/irc/iroffer-lamm/Makefile Thu Oct 8 04:11:34 2015 (r398802) +++ head/irc/iroffer-lamm/Makefile Thu Oct 8 04:32:29 2015 (r398803) @@ -6,7 +6,6 @@ CATEGORIES= irc MASTER_SITES= SF/${PORTNAME}-lamm/${PORTNAME}1.4-lamm/${PORTNAME}1.4.b03-lamm.b02 PKGNAMESUFFIX= -lamm${PKGNAMESUFFIX2} DISTNAME= iroffer1.4.b03-lamm.b02 -EXTRACT_SUFX= .tgz MAINTAINER= dinoex@FreeBSD.org COMMENT= IRC "bot" that makes sharing files via DCC extremely easy @@ -15,13 +14,12 @@ LICENSE= GPLv2 CONFLICTS= iroffer-1.* iroffer-dinoex-3.* +USES= tar:tgz HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-patch: ${REINPLACE_CMD} -e 's|cctype="gcc"|cctype="${CC}"|' \ ${WRKSRC}/Configure @@ -29,16 +27,16 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/convertxdccfile ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/iroffer ${STAGEDIR}${PREFIX}/bin/ -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ ${INSTALL_DATA} ${WRKSRC}/WHATSNEW ${STAGEDIR}${DOCSDIR}/ -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/dynip.sh ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/iroffer.cron ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/sample.config ${STAGEDIR}${EXAMPLESDIR}/ -.endif .include Modified: head/irc/iroffer/Makefile ============================================================================== --- head/irc/iroffer/Makefile Thu Oct 8 04:11:34 2015 (r398802) +++ head/irc/iroffer/Makefile Thu Oct 8 04:32:29 2015 (r398803) @@ -6,7 +6,6 @@ PORTVERSION= 1.4.3 CATEGORIES= irc MASTER_SITES= http://iroffer.org/archive/v1.4/ DISTNAME= iroffer1.4.b03 -EXTRACT_SUFX= .tgz MAINTAINER= dinoex@FreeBSD.org COMMENT= IRC "bot" that makes sharing files via DCC extremely easy @@ -15,13 +14,12 @@ LICENSE= GPLv2 CONFLICTS= iroffer-lamm-1.* iroffer-dinoex-3.* +USES= tar:tgz HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-patch: ${REINPLACE_CMD} -e 's|cctype="gcc"|cctype="${CC}"|' \ ${WRKSRC}/Configure @@ -29,16 +27,16 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/convertxdccfile ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/iroffer ${STAGEDIR}${PREFIX}/bin/ -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ ${INSTALL_DATA} ${WRKSRC}/WHATSNEW ${STAGEDIR}${DOCSDIR}/ -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/dynip.sh ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/iroffer.cron ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/sample.config ${STAGEDIR}${EXAMPLESDIR}/ -.endif .include From owner-svn-ports-head@freebsd.org Thu Oct 8 04:34:35 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 8EF819D14AB; Thu, 8 Oct 2015 04:34:35 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 573F5B77; Thu, 8 Oct 2015 04:34:35 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984YYP1001335; Thu, 8 Oct 2015 04:34:34 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984YYZN001334; Thu, 8 Oct 2015 04:34:34 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080434.t984YYZN001334@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:34:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398804 - head/graphics/jasper 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: Thu, 08 Oct 2015 04:34:35 -0000 Author: dinoex Date: Thu Oct 8 04:34:34 2015 New Revision: 398804 URL: https://svnweb.freebsd.org/changeset/ports/398804 Log: - cleanup Modified: head/graphics/jasper/Makefile Modified: head/graphics/jasper/Makefile ============================================================================== --- head/graphics/jasper/Makefile Thu Oct 8 04:32:29 2015 (r398803) +++ head/graphics/jasper/Makefile Thu Oct 8 04:34:34 2015 (r398804) @@ -20,7 +20,7 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-shared --enable-static USE_LDCONFIG= yes -OPTIONS_DEFINE= OPENGL UUID DOCS +OPTIONS_DEFINE= OPENGL UUID DOCS UUID_DESC= UUID support (required by GDAL) .include @@ -39,10 +39,8 @@ PLIST_SUB+= OPENGL="@comment " EXTRA_PATCHES+= ${FILESDIR}/uuid.patch .endif -.if ${PORT_OPTIONS:MDOCS} -post-install: +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR}/ -.endif .include From owner-svn-ports-head@freebsd.org Thu Oct 8 04:35: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 B68079D1588; Thu, 8 Oct 2015 04:35:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85A68C87; Thu, 8 Oct 2015 04:35:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984ZnPK001476; Thu, 8 Oct 2015 04:35:49 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984Zn6P001475; Thu, 8 Oct 2015 04:35:49 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080435.t984Zn6P001475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:35:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398805 - head/archivers/lha-ac 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: Thu, 08 Oct 2015 04:35:50 -0000 Author: dinoex Date: Thu Oct 8 04:35:49 2015 New Revision: 398805 URL: https://svnweb.freebsd.org/changeset/ports/398805 Log: - cleanup Modified: head/archivers/lha-ac/Makefile Modified: head/archivers/lha-ac/Makefile ============================================================================== --- head/archivers/lha-ac/Makefile Thu Oct 8 04:34:34 2015 (r398804) +++ head/archivers/lha-ac/Makefile Thu Oct 8 04:35:49 2015 (r398805) @@ -4,8 +4,7 @@ PORTNAME= lha PORTVERSION= 1.14i PORTREVISION= 10 CATEGORIES= archivers -MASTER_SITES= SFJP/lha/22231 \ - http://osdn.dl.sourceforge.jp/lha/22231/ +MASTER_SITES= SFJP/lha/22231 PKGNAMESUFFIX= -ac${PKGNAMESUFFIX2} DISTNAME= ${PORTNAME}-${PORTVERSION}-ac20050924p1 From owner-svn-ports-head@freebsd.org Thu Oct 8 04:37: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 D9F1A9D1670; Thu, 8 Oct 2015 04:37:20 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6363D7C; Thu, 8 Oct 2015 04:37:20 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984bJXE001620; Thu, 8 Oct 2015 04:37:19 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984bJZ8001619; Thu, 8 Oct 2015 04:37:19 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080437.t984bJZ8001619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398806 - head/net-im/licq 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: Thu, 08 Oct 2015 04:37:21 -0000 Author: dinoex Date: Thu Oct 8 04:37:19 2015 New Revision: 398806 URL: https://svnweb.freebsd.org/changeset/ports/398806 Log: - cleanup Modified: head/net-im/licq/Makefile Modified: head/net-im/licq/Makefile ============================================================================== --- head/net-im/licq/Makefile Thu Oct 8 04:35:49 2015 (r398805) +++ head/net-im/licq/Makefile Thu Oct 8 04:37:19 2015 (r398806) @@ -10,10 +10,10 @@ PKGNAMESUFFIX= ${SOCKS_SUFFIX}${PKGNAMES MAINTAINER= dinoex@FreeBSD.org COMMENT= Popular ICQ-compatible plugin-based program -LIB_DEPENDS= libboost_regex.so:${PORTSDIR}/devel/boost-libs - LICENSE= GPLv2 +LIB_DEPENDS= libboost_regex.so:${PORTSDIR}/devel/boost-libs + USES= cmake iconv WRKSRC= ${WRKDIR}/${DISTNAME} LICQ_PORT?= net-im/licq From owner-svn-ports-head@freebsd.org Thu Oct 8 04:39:07 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 98AAB9D179C; Thu, 8 Oct 2015 04:39:07 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64BEFE87; Thu, 8 Oct 2015 04:39:07 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984d6sI001778; Thu, 8 Oct 2015 04:39:06 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984d6pr001777; Thu, 8 Oct 2015 04:39:06 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080439.t984d6pr001777@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:39:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398807 - head/misc/magicpoint 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: Thu, 08 Oct 2015 04:39:07 -0000 Author: dinoex Date: Thu Oct 8 04:39:06 2015 New Revision: 398807 URL: https://svnweb.freebsd.org/changeset/ports/398807 Log: - cleanup Modified: head/misc/magicpoint/Makefile Modified: head/misc/magicpoint/Makefile ============================================================================== --- head/misc/magicpoint/Makefile Thu Oct 8 04:37:19 2015 (r398806) +++ head/misc/magicpoint/Makefile Thu Oct 8 04:39:06 2015 (r398807) @@ -43,7 +43,6 @@ EMACS_LISPS= mgp-mode.el EMACS_LISPS_MGP=COPYING README mgp.el mgp.sty sample.tex SAMPLE_SCRIPTS= eqn2eps.sh tex2eps.sh mgp2html.pl mgp2latex.pl - OPTIONS_DEFINE= FREETYPE XFT GIF DOCS OPTIONS_DEFAULT=FREETYPE XFT GIF NO_OPTIONS_SORT=yes From owner-svn-ports-head@freebsd.org Thu Oct 8 04:44:51 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 0BB689D1BC8; Thu, 8 Oct 2015 04:44:51 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3D1726D; Thu, 8 Oct 2015 04:44:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t984inXJ004609; Thu, 8 Oct 2015 04:44:49 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t984inAx004608; Thu, 8 Oct 2015 04:44:49 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201510080444.t984inAx004608@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 8 Oct 2015 04:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398808 - head/mail/milter-regex 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: Thu, 08 Oct 2015 04:44:51 -0000 Author: dinoex Date: Thu Oct 8 04:44:49 2015 New Revision: 398808 URL: https://svnweb.freebsd.org/changeset/ports/398808 Log: - cleanup Modified: head/mail/milter-regex/pkg-descr Modified: head/mail/milter-regex/pkg-descr ============================================================================== --- head/mail/milter-regex/pkg-descr Thu Oct 8 04:39:06 2015 (r398807) +++ head/mail/milter-regex/pkg-descr Thu Oct 8 04:44:49 2015 (r398808) @@ -13,4 +13,4 @@ This program is developed on OpenBSD by LICENSE: BSD Copyright (c) 2003-2006 Daniel Hartmeier -WWW: http://www.benzedrine.cx/milter-regex.html +WWW: http://www.benzedrine.cx/milter-regex.html From owner-svn-ports-head@freebsd.org Thu Oct 8 06:16:12 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 2AF499D1DB1; Thu, 8 Oct 2015 06:16:12 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1F74B129; Thu, 8 Oct 2015 06:16:12 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 1DFF91CF8; Thu, 8 Oct 2015 06:16:12 +0000 (UTC) Date: Thu, 8 Oct 2015 06:16:12 +0000 From: Alexey Dokuchaev To: Dirk Meyer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398802 - head/graphics/graphviz Message-ID: <20151008061612.GC33319@FreeBSD.org> References: <201510080411.t984BY8Z092575@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510080411.t984BY8Z092575@repo.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: Thu, 08 Oct 2015 06:16:12 -0000 On Thu, Oct 08, 2015 at 04:11:34AM +0000, Dirk Meyer wrote: > New Revision: 398802 > URL: https://svnweb.freebsd.org/changeset/ports/398802 > > Log: > - cleanup Dirk, please try to provide more sensible commit logs; while it's OK to use "cleanup" in a local branch, it's not so in the official repo. ./danfe From owner-svn-ports-head@freebsd.org Thu Oct 8 09:11:17 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 EAF449D0780; Thu, 8 Oct 2015 09:11:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C264919E3; Thu, 8 Oct 2015 09:11:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t989BF7T083832; Thu, 8 Oct 2015 09:11:15 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t989BF9M083556; Thu, 8 Oct 2015 09:11:15 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510080911.t989BF9M083556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 8 Oct 2015 09:11:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398809 - in head/net/wpa_gui: . 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: Thu, 08 Oct 2015 09:11:17 -0000 Author: madpilot Date: Thu Oct 8 09:11:15 2015 New Revision: 398809 URL: https://svnweb.freebsd.org/changeset/ports/398809 Log: - Update to 2.5 - Update MASTER_SITES and WWW - Add LICENSE PR: 203483 Submitted by: Ports Fury Added: head/net/wpa_gui/files/ head/net/wpa_gui/files/patch-os_unix.c (contents, props changed) Modified: head/net/wpa_gui/Makefile head/net/wpa_gui/distinfo head/net/wpa_gui/pkg-descr Modified: head/net/wpa_gui/Makefile ============================================================================== --- head/net/wpa_gui/Makefile Thu Oct 8 04:44:49 2015 (r398808) +++ head/net/wpa_gui/Makefile Thu Oct 8 09:11:15 2015 (r398809) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= wpa_gui -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= net -MASTER_SITES= http://hostap.epitest.fi/releases/ \ +MASTER_SITES= http://w1.fi/releases/ \ http://partmedia.users.sourceforge.net/dist/:icons \ LOCAL/jgh/net/${PORTNAME}/:icons DISTNAME= wpa_supplicant-${PORTVERSION} @@ -14,21 +14,31 @@ DISTFILES= ${DISTNAME}.tar.gz \ MAINTAINER= ports@FreeBSD.org COMMENT= Qt-based frontend for wpa_supplicant +LICENSE= BSD3CLAUSE + +WRKSRC_SUBDIR= wpa_supplicant/wpa_gui-qt4 + PLIST_FILES= sbin/wpa_gui \ share/applications/wpa_gui.desktop \ - share/pixmaps/wpa_gui.svg -WRKSRC= ${WRKDIR}/${DISTNAME}/wpa_supplicant/wpa_gui-qt4 + share/icons/hicolor/16x16/apps/wpa_gui.png \ + share/icons/hicolor/scalable/apps/wpa_gui.svg + USE_QT4= gui moc_build rcc_build uic_build USES= qmake post-patch: - @${REINPLACE_CMD} -e "s|Exec=wpa_gui|Exec=${PREFIX}/sbin/wpa_gui|" \ - ${WRKSRC}/wpa_gui.desktop - ${MV} ${WRKDIR}/icons/hicolor ${WRKSRC}/icons + @${REINPLACE_CMD} -e \ + '/^Exec/s|=.*|=${PREFIX}/sbin/wpa_gui|' \ + ${WRKSRC}/wpa_gui.desktop do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/wpa_gui.desktop ${STAGEDIR}${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/icons/wpa_gui.svg ${STAGEDIR}${PREFIX}/share/pixmaps + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps + ${INSTALL_DATA} ${WRKDIR}/icons/hicolor/16x16/apps/wpa_gui.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + ${INSTALL_DATA} ${WRKSRC}/icons/wpa_gui.svg \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps .include Modified: head/net/wpa_gui/distinfo ============================================================================== --- head/net/wpa_gui/distinfo Thu Oct 8 04:44:49 2015 (r398808) +++ head/net/wpa_gui/distinfo Thu Oct 8 09:11:15 2015 (r398809) @@ -1,4 +1,4 @@ -SHA256 (wpa_supplicant-2.4.tar.gz) = 058dc832c096139a059e6df814080f50251a8d313c21b13364c54a1e70109122 -SIZE (wpa_supplicant-2.4.tar.gz) = 2525648 +SHA256 (wpa_supplicant-2.5.tar.gz) = cce55bae483b364eae55c35ba567c279be442ed8bab5b80a3c7fb0d057b9b316 +SIZE (wpa_supplicant-2.5.tar.gz) = 2607336 SHA256 (wpa-gui-icons.tar.gz) = c0d2adb4d8d9f58c015e4862a5ab50c7a562b6bb641e1bb6a0cc841249573b42 SIZE (wpa-gui-icons.tar.gz) = 3797 Added: head/net/wpa_gui/files/patch-os_unix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wpa_gui/files/patch-os_unix.c Thu Oct 8 09:11:15 2015 (r398809) @@ -0,0 +1,13 @@ +--- ../../src/utils/os_unix.c.orig 2015-09-27 19:02:05 UTC ++++ ../../src/utils/os_unix.c +@@ -23,6 +23,10 @@ + #include + #endif /* __MACH__ */ + ++#ifdef __FreeBSD__ ++#define fdatasync fsync ++#endif ++ + #include "os.h" + #include "common.h" + Modified: head/net/wpa_gui/pkg-descr ============================================================================== --- head/net/wpa_gui/pkg-descr Thu Oct 8 04:44:49 2015 (r398808) +++ head/net/wpa_gui/pkg-descr Thu Oct 8 09:11:15 2015 (r398809) @@ -1,3 +1,3 @@ wpa_gui is a nice GUI frontend for wpa_supplicant tool. -WWW: http://hostap.epitest.fi/wpa_supplicant/ +WWW: http://w1.fi/wpa_supplicant/ From owner-svn-ports-head@freebsd.org Thu Oct 8 09:53: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 1374C9D1BBD; Thu, 8 Oct 2015 09:53:21 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD1EB124C; Thu, 8 Oct 2015 09:53:20 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t989rJPY095561; Thu, 8 Oct 2015 09:53:19 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t989rJMl095559; Thu, 8 Oct 2015 09:53:19 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510080953.t989rJMl095559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 8 Oct 2015 09:53:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398810 - head/www/yaws 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: Thu, 08 Oct 2015 09:53:21 -0000 Author: olgeni Date: Thu Oct 8 09:53:19 2015 New Revision: 398810 URL: https://svnweb.freebsd.org/changeset/ports/398810 Log: Upgrade www/yaws to version 2.0.2. Modified: head/www/yaws/Makefile head/www/yaws/distinfo Modified: head/www/yaws/Makefile ============================================================================== --- head/www/yaws/Makefile Thu Oct 8 09:11:15 2015 (r398809) +++ head/www/yaws/Makefile Thu Oct 8 09:53:19 2015 (r398810) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yaws -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.2 CATEGORIES= www devel MASTER_SITES= http://yaws.hyber.org/download/ Modified: head/www/yaws/distinfo ============================================================================== --- head/www/yaws/distinfo Thu Oct 8 09:11:15 2015 (r398809) +++ head/www/yaws/distinfo Thu Oct 8 09:53:19 2015 (r398810) @@ -1,2 +1,2 @@ -SHA256 (yaws-2.0.1.tar.gz) = da40a624b48b05528fa06fe61c8d6960a9f8fb2eb3d368d4abfe791cbb8288b0 -SIZE (yaws-2.0.1.tar.gz) = 1650543 +SHA256 (yaws-2.0.2.tar.gz) = 24dd4aab844e7bb18a9a3cc795b8e8f5755e6f0f8eee3ebb54767ab19eacdde7 +SIZE (yaws-2.0.2.tar.gz) = 1651989 From owner-svn-ports-head@freebsd.org Thu Oct 8 10:10: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 99A139D0A0C; Thu, 8 Oct 2015 10:10:49 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65CC01EEB; Thu, 8 Oct 2015 10:10:49 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98AAmpV099648; Thu, 8 Oct 2015 10:10:48 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98AAmBq099645; Thu, 8 Oct 2015 10:10:48 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201510081010.t98AAmBq099645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 8 Oct 2015 10:10:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398811 - in head/devel/jenkins: . 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: Thu, 08 Oct 2015 10:10:49 -0000 Author: lwhsu Date: Thu Oct 8 10:10:48 2015 New Revision: 398811 URL: https://svnweb.freebsd.org/changeset/ports/398811 Log: - Update to 1.632 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo head/devel/jenkins/files/pkg-message Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Thu Oct 8 09:53:19 2015 (r398810) +++ head/devel/jenkins/Makefile Thu Oct 8 10:10:48 2015 (r398811) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.631 +PORTVERSION= 1.632 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Thu Oct 8 09:53:19 2015 (r398810) +++ head/devel/jenkins/distinfo Thu Oct 8 10:10:48 2015 (r398811) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.631/jenkins.war) = e8eae4caad8f48b5e38480c2a4b0c9acfdbf93eb1218e3fee42a4d3ff62bd02d -SIZE (jenkins/1.631/jenkins.war) = 63209930 +SHA256 (jenkins/1.632/jenkins.war) = 9bca55e5b0ee8fd0ba82e55cd9c51ba8d68e0fa61e047218e48ca90435ca9d23 +SIZE (jenkins/1.632/jenkins.war) = 63211059 Modified: head/devel/jenkins/files/pkg-message ============================================================================== --- head/devel/jenkins/files/pkg-message Thu Oct 8 09:53:19 2015 (r398810) +++ head/devel/jenkins/files/pkg-message Thu Oct 8 10:10:48 2015 (r398811) @@ -5,5 +5,6 @@ when installing for the first time. More information: https://wiki.jenkins-ci.org/display/JENKINS/Quick+and+Simple+Security +https://wiki.jenkins-ci.org/display/JENKINS/Standard+Security+Setup ************************************************************************ From owner-svn-ports-head@freebsd.org Thu Oct 8 10:53: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 112DF9D2909; Thu, 8 Oct 2015 10:53:44 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD73E15DA; Thu, 8 Oct 2015 10:53:43 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98ArgX9013927; Thu, 8 Oct 2015 10:53:42 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98ArgnX013924; Thu, 8 Oct 2015 10:53:42 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510081053.t98ArgnX013924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 8 Oct 2015 10:53:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398812 - head/graphics/gthumb 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: Thu, 08 Oct 2015 10:53:44 -0000 Author: madpilot Date: Thu Oct 8 10:53:42 2015 New Revision: 398812 URL: https://svnweb.freebsd.org/changeset/ports/398812 Log: Update to 3.4.1 PR: 203480 Submitted by: Ports Fury Modified: head/graphics/gthumb/Makefile head/graphics/gthumb/distinfo head/graphics/gthumb/pkg-plist Modified: head/graphics/gthumb/Makefile ============================================================================== --- head/graphics/gthumb/Makefile Thu Oct 8 10:10:48 2015 (r398811) +++ head/graphics/gthumb/Makefile Thu Oct 8 10:53:42 2015 (r398812) @@ -3,7 +3,7 @@ # $MCom: ports/trunk/graphics/gthumb/Makefile 19823 2014-08-20 09:28:14Z gusi $ PORTNAME= gthumb -PORTVERSION= 3.4.0 +PORTVERSION= 3.4.1 CATEGORIES= graphics MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -21,6 +21,8 @@ USES= bison compiler:c++11-lib desktop- libtool pathfix pkgconfig tar:xz USE_GNOME= gtk30 intltool librsvg2 GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \ + ac_cv_lib_tiff_TIFFWriteScanline=yes CONFIGURE_ARGS= --disable-silent-rules \ --disable-libchamplain \ --enable-compile-warnings=minimum \ Modified: head/graphics/gthumb/distinfo ============================================================================== --- head/graphics/gthumb/distinfo Thu Oct 8 10:10:48 2015 (r398811) +++ head/graphics/gthumb/distinfo Thu Oct 8 10:53:42 2015 (r398812) @@ -1,2 +1,2 @@ -SHA256 (gnome3/gthumb-3.4.0.tar.xz) = abd1afe457c65289af31c6db7037452faa3838356480857d8cdc19f0ecde4933 -SIZE (gnome3/gthumb-3.4.0.tar.xz) = 3366284 +SHA256 (gnome3/gthumb-3.4.1.tar.xz) = 1ec2cf49f499ed06eda851a3bd5c28a1768839a6ff06bc4efc5fbde46cabc857 +SIZE (gnome3/gthumb-3.4.1.tar.xz) = 3407712 Modified: head/graphics/gthumb/pkg-plist ============================================================================== --- head/graphics/gthumb/pkg-plist Thu Oct 8 10:10:48 2015 (r398811) +++ head/graphics/gthumb/pkg-plist Thu Oct 8 10:53:42 2015 (r398812) @@ -720,6 +720,51 @@ share/help/fr/gthumb/thumbnail-pane.page share/help/fr/gthumb/thumbnails.page share/help/fr/gthumb/viewer.page share/help/fr/gthumb/wallpaper.page +share/help/hu/gthumb/attributes.page +share/help/hu/gthumb/batch-change-date.page +share/help/hu/gthumb/batch-convert-format.page +share/help/hu/gthumb/batch-resize.page +share/help/hu/gthumb/batch-rotate.page +share/help/hu/gthumb/batch-scripts.page +share/help/hu/gthumb/bookmarks.page +share/help/hu/gthumb/browser.page +share/help/hu/gthumb/edit-colors.page +share/help/hu/gthumb/edit-redeye.page +share/help/hu/gthumb/edit-resize-crop.page +share/help/hu/gthumb/edit-rotate.page +share/help/hu/gthumb/edit-save-undo-redo.page +share/help/hu/gthumb/extensions.page +share/help/hu/gthumb/figures/comment.png +share/help/hu/gthumb/figures/general-filter.png +share/help/hu/gthumb/figures/import-pref-auto-folder.png +share/help/hu/gthumb/figures/import-pref-custom-format.png +share/help/hu/gthumb/figures/import.png +share/help/hu/gthumb/figures/main-win.png +share/help/hu/gthumb/figures/nav-button.png +share/help/hu/gthumb/figures/palette.png +share/help/hu/gthumb/figures/preferences.png +share/help/hu/gthumb/figures/specific-filter.png +share/help/hu/gthumb/figures/thumbnail-pane.png +share/help/hu/gthumb/file-copy-move.page +share/help/hu/gthumb/filtering.page +share/help/hu/gthumb/fullscreen.page +share/help/hu/gthumb/gimp.page +share/help/hu/gthumb/import.page +share/help/hu/gthumb/index.page +share/help/hu/gthumb/introduction.page +share/help/hu/gthumb/legal.xml +share/help/hu/gthumb/printing.page +share/help/hu/gthumb/rename-series.page +share/help/hu/gthumb/sharing-disc.page +share/help/hu/gthumb/sharing-social.page +share/help/hu/gthumb/shortcuts.page +share/help/hu/gthumb/slideshow.page +share/help/hu/gthumb/sorting.page +share/help/hu/gthumb/strftime.page +share/help/hu/gthumb/thumbnail-pane.page +share/help/hu/gthumb/thumbnails.page +share/help/hu/gthumb/viewer.page +share/help/hu/gthumb/wallpaper.page share/help/oc/gthumb/attributes.page share/help/oc/gthumb/batch-change-date.page share/help/oc/gthumb/batch-convert-format.page @@ -936,6 +981,7 @@ share/locale/hi/LC_MESSAGES/gthumb.mo share/locale/hr/LC_MESSAGES/gthumb.mo share/locale/hu/LC_MESSAGES/gthumb.mo share/locale/id/LC_MESSAGES/gthumb.mo +share/locale/is/LC_MESSAGES/gthumb.mo share/locale/it/LC_MESSAGES/gthumb.mo share/locale/ja/LC_MESSAGES/gthumb.mo share/locale/kn/LC_MESSAGES/gthumb.mo @@ -963,7 +1009,6 @@ share/locale/sk/LC_MESSAGES/gthumb.mo share/locale/sl/LC_MESSAGES/gthumb.mo share/locale/sq/LC_MESSAGES/gthumb.mo share/locale/sr/LC_MESSAGES/gthumb.mo -share/locale/sr@Latn/LC_MESSAGES/gthumb.mo share/locale/sr@latin/LC_MESSAGES/gthumb.mo share/locale/sv/LC_MESSAGES/gthumb.mo share/locale/th/LC_MESSAGES/gthumb.mo From owner-svn-ports-head@freebsd.org Thu Oct 8 11:28:30 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 CA5CE9D105E; Thu, 8 Oct 2015 11:28:30 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88099A67; Thu, 8 Oct 2015 11:28:30 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98BSTsW023188; Thu, 8 Oct 2015 11:28:29 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98BSTos023183; Thu, 8 Oct 2015 11:28:29 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510081128.t98BSTos023183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 8 Oct 2015 11:28:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398813 - in head/finance: gnucash gnucash-docs 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: Thu, 08 Oct 2015 11:28:31 -0000 Author: madpilot Date: Thu Oct 8 11:28:29 2015 New Revision: 398813 URL: https://svnweb.freebsd.org/changeset/ports/398813 Log: Update to 2.6.9 Approved by: kwm (gnome, implicit) Modified: head/finance/gnucash-docs/Makefile head/finance/gnucash-docs/distinfo head/finance/gnucash-docs/pkg-plist head/finance/gnucash/Makefile head/finance/gnucash/distinfo Modified: head/finance/gnucash-docs/Makefile ============================================================================== --- head/finance/gnucash-docs/Makefile Thu Oct 8 10:53:42 2015 (r398812) +++ head/finance/gnucash-docs/Makefile Thu Oct 8 11:28:29 2015 (r398813) @@ -3,7 +3,7 @@ # $MCom: ports/finance/gnucash-docs/Makefile,v 1.7 2007/08/04 03:51:29 marcus Exp $ PORTNAME= gnucash-docs -PORTVERSION= 2.6.8 +PORTVERSION= 2.6.9 CATEGORIES= finance gnome MASTER_SITES= SF/gnucash/${PORTNAME}/${PORTVERSION} \ http://www.gnucash.org/pub/gnucash/sources/stable/ \ @@ -17,7 +17,7 @@ LIB_DEPENDS= librarian.so:${PORTSDIR}/te RUN_DEPENDS= yelp:${PORTSDIR}/x11/yelp INSTALLS_OMF= yes -USES= gmake +USES= autoreconf gmake USE_GNOME= libxml2 GNU_CONFIGURE= yes NO_ARCH= yes Modified: head/finance/gnucash-docs/distinfo ============================================================================== --- head/finance/gnucash-docs/distinfo Thu Oct 8 10:53:42 2015 (r398812) +++ head/finance/gnucash-docs/distinfo Thu Oct 8 11:28:29 2015 (r398813) @@ -1,2 +1,2 @@ -SHA256 (gnucash-docs-2.6.8.tar.gz) = cf0de8694c12fd5847041975ba13c9ecc7808b2556cbdfbf8011220786322887 -SIZE (gnucash-docs-2.6.8.tar.gz) = 62017632 +SHA256 (gnucash-docs-2.6.9.tar.gz) = 5bd92664321c7447b61183d9eb0b57d7bab736f807b36fa901a2553aee06341b +SIZE (gnucash-docs-2.6.9.tar.gz) = 63820580 Modified: head/finance/gnucash-docs/pkg-plist ============================================================================== --- head/finance/gnucash-docs/pkg-plist Thu Oct 8 10:53:42 2015 (r398812) +++ head/finance/gnucash-docs/pkg-plist Thu Oct 8 11:28:29 2015 (r398813) @@ -199,6 +199,8 @@ share/gnome/help/gnucash-guide/de/ch_bas share/gnome/help/gnucash-guide/de/ch_bus_ap.xml share/gnome/help/gnucash-guide/de/ch_bus_ar.xml share/gnome/help/gnucash-guide/de/ch_capgain.xml +share/gnome/help/gnucash-guide/de/ch_cbook.xml +share/gnome/help/gnucash-guide/de/ch_cc.xml share/gnome/help/gnucash-guide/de/ch_invest.xml share/gnome/help/gnucash-guide/de/ch_loans.xml share/gnome/help/gnucash-guide/de/ch_oth_assets.xml @@ -275,6 +277,31 @@ share/gnome/help/gnucash-guide/de/figure share/gnome/help/gnucash-guide/de/figures/bus_ar_invoicepost.png share/gnome/help/gnucash-guide/de/figures/bus_ar_invoiceprint.png share/gnome/help/gnucash-guide/de/figures/bus_ar_payment.png +share/gnome/help/gnucash-guide/de/figures/cbook_CashFlow.png +share/gnome/help/gnucash-guide/de/figures/cbook_TransactionRptAssets.png +share/gnome/help/gnucash-guide/de/figures/cbook_TransactionRptExpenses.png +share/gnome/help/gnucash-guide/de/figures/cbook_atm.png +share/gnome/help/gnucash-guide/de/figures/cbook_bankstmt.png +share/gnome/help/gnucash-guide/de/figures/cbook_chartaccts5.png +share/gnome/help/gnucash-guide/de/figures/cbook_checkexamp.png +share/gnome/help/gnucash-guide/de/figures/cbook_gcashdata4.png +share/gnome/help/gnucash-guide/de/figures/cbook_reconciledCheckAct.png +share/gnome/help/gnucash-guide/de/figures/cbook_reconexamp.png +share/gnome/help/gnucash-guide/de/figures/cbook_servch.png +share/gnome/help/gnucash-guide/de/figures/cbook_transferin.png +share/gnome/help/gnucash-guide/de/figures/cc_CashFlow.png +share/gnome/help/gnucash-guide/de/figures/cc_Reversing_Transaction_1.png +share/gnome/help/gnucash-guide/de/figures/cc_Reversing_Transaction_2.png +share/gnome/help/gnucash-guide/de/figures/cc_TransactionRptExpenses.png +share/gnome/help/gnucash-guide/de/figures/cc_TransactionRptVisa.png +share/gnome/help/gnucash-guide/de/figures/cc_accounts.png +share/gnome/help/gnucash-guide/de/figures/cc_final.png +share/gnome/help/gnucash-guide/de/figures/cc_interest.png +share/gnome/help/gnucash-guide/de/figures/cc_payment.png +share/gnome/help/gnucash-guide/de/figures/cc_purchases.png +share/gnome/help/gnucash-guide/de/figures/cc_reconcile.png +share/gnome/help/gnucash-guide/de/figures/cc_reconcile_init.png +share/gnome/help/gnucash-guide/de/figures/cc_refund.png share/gnome/help/gnucash-guide/de/figures/gnc_welcome.png share/gnome/help/gnucash-guide/de/figures/invest_AccountsPredef.png share/gnome/help/gnucash-guide/de/figures/invest_SetupPortfolio2.png Modified: head/finance/gnucash/Makefile ============================================================================== --- head/finance/gnucash/Makefile Thu Oct 8 10:53:42 2015 (r398812) +++ head/finance/gnucash/Makefile Thu Oct 8 11:28:29 2015 (r398813) @@ -2,7 +2,7 @@ # $MCom: ports/finance/gnucash/Makefile,v 1.26 2008/12/31 03:25:18 mezz Exp $ PORTNAME= gnucash -PORTVERSION= 2.6.8 +PORTVERSION= 2.6.9 CATEGORIES= finance gnome MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} Modified: head/finance/gnucash/distinfo ============================================================================== --- head/finance/gnucash/distinfo Thu Oct 8 10:53:42 2015 (r398812) +++ head/finance/gnucash/distinfo Thu Oct 8 11:28:29 2015 (r398813) @@ -1,2 +1,2 @@ -SHA256 (gnucash-2.6.8.tar.bz2) = 809a3902f0ea9f1584b7a6e0fa160c4cb6b99527ab501d81d906db6c099ed430 -SIZE (gnucash-2.6.8.tar.bz2) = 13447262 +SHA256 (gnucash-2.6.9.tar.bz2) = cdaa61b393133e03bccce3d2740bb358d6bf590de16dd19c790c983d032d8247 +SIZE (gnucash-2.6.9.tar.bz2) = 13230536 From owner-svn-ports-head@freebsd.org Thu Oct 8 12:10: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 A8B7E9D0183; Thu, 8 Oct 2015 12:10:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 671F6A7A; Thu, 8 Oct 2015 12:10:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98CAtH3035019; Thu, 8 Oct 2015 12:10:55 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98CAtpN035014; Thu, 8 Oct 2015 12:10:55 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510081210.t98CAtpN035014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 8 Oct 2015 12:10:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398814 - in head/lang: perl5-devel perl5.16 perl5.18 perl5.20 perl5.22 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: Thu, 08 Oct 2015 12:10:56 -0000 Author: mat Date: Thu Oct 8 12:10:54 2015 New Revision: 398814 URL: https://svnweb.freebsd.org/changeset/ports/398814 Log: Use the test framework to run perl's tests. Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile head/lang/perl5.16/Makefile head/lang/perl5.18/Makefile head/lang/perl5.20/Makefile head/lang/perl5.22/Makefile Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Thu Oct 8 11:28:29 2015 (r398813) +++ head/lang/perl5-devel/Makefile Thu Oct 8 12:10:54 2015 (r398814) @@ -22,6 +22,9 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/Artistic LICENSE_FILE_GPLv1= ${WRKSRC}/Copying +TEST_TARGET= test_harness +TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} + # XXX Remove github things. USE_GITHUB= yes GH_ACCOUNT= Perl @@ -283,9 +286,4 @@ post-install: done ${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${STAGEDIR}${PREFIX}/etc/man.d/perl${PERL_VER}.conf -test: build - (cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) - -regression-test: test - .include Modified: head/lang/perl5.16/Makefile ============================================================================== --- head/lang/perl5.16/Makefile Thu Oct 8 11:28:29 2015 (r398813) +++ head/lang/perl5.16/Makefile Thu Oct 8 12:10:54 2015 (r398814) @@ -19,6 +19,9 @@ LICENSE_FILE_GPLv1= ${WRKSRC}/Copying DEPRECATED= Unsupported, please upgrade to a more recent version of Perl EXPIRATION_DATE=2015-12-31 +TEST_TARGET= test_harness +TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} + OPTIONS_DEFINE= DEBUG GDBM PERL_MALLOC PERL_64BITINT THREADS PTHREAD \ MULTIPLICITY SITECUSTOMIZE USE_PERL OPTIONS_DEFAULT= PERL_64BITINT THREADS PTHREAD USE_PERL MULTIPLICITY @@ -275,9 +278,4 @@ post-install: done ${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${STAGEDIR}${PREFIX}/etc/man.d/perl${PERL_VER}.conf -test: build - (cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) - -regression-test: test - .include Modified: head/lang/perl5.18/Makefile ============================================================================== --- head/lang/perl5.18/Makefile Thu Oct 8 11:28:29 2015 (r398813) +++ head/lang/perl5.18/Makefile Thu Oct 8 12:10:54 2015 (r398814) @@ -19,6 +19,9 @@ LICENSE_FILE_GPLv1= ${WRKSRC}/Copying DEPRECATED= Unsupported, please upgrade to a more recent version of Perl EXPIRATION_DATE=2016-12-31 +TEST_TARGET= test_harness +TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} + OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT PTHREAD \ MULTIPLICITY SITECUSTOMIZE USE_PERL # it seems perl malloc has problems with threaded perl on FreeBSD @@ -246,9 +249,4 @@ post-install: done ${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${STAGEDIR}${PREFIX}/etc/man.d/perl${PERL_VER}.conf -test: build - (cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) - -regression-test: test - .include Modified: head/lang/perl5.20/Makefile ============================================================================== --- head/lang/perl5.20/Makefile Thu Oct 8 11:28:29 2015 (r398813) +++ head/lang/perl5.20/Makefile Thu Oct 8 12:10:54 2015 (r398814) @@ -16,6 +16,9 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/Artistic LICENSE_FILE_GPLv1= ${WRKSRC}/Copying +TEST_TARGET= test_harness +TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} + OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT PTHREAD \ MULTIPLICITY SITECUSTOMIZE # it seems perl malloc has problems with threaded perl on FreeBSD @@ -240,9 +243,4 @@ post-install: done ${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${STAGEDIR}${PREFIX}/etc/man.d/perl${PERL_VER}.conf -test: build - (cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) - -regression-test: test - .include Modified: head/lang/perl5.22/Makefile ============================================================================== --- head/lang/perl5.22/Makefile Thu Oct 8 11:28:29 2015 (r398813) +++ head/lang/perl5.22/Makefile Thu Oct 8 12:10:54 2015 (r398814) @@ -16,6 +16,9 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/Artistic LICENSE_FILE_GPLv1= ${WRKSRC}/Copying +TEST_TARGET= test_harness +TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} + OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT PTHREAD \ MULTIPLICITY SITECUSTOMIZE # it seems perl malloc has problems with threaded perl on FreeBSD @@ -238,9 +241,4 @@ post-install: done ${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${STAGEDIR}${PREFIX}/etc/man.d/perl${PERL_VER}.conf -test: build - (cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) - -regression-test: test - .include From owner-svn-ports-head@freebsd.org Thu Oct 8 12:11: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 144B09D01DD; Thu, 8 Oct 2015 12:11:10 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4699C58; Thu, 8 Oct 2015 12:11:09 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98CB8Sp035164; Thu, 8 Oct 2015 12:11:08 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98CB8n1035162; Thu, 8 Oct 2015 12:11:08 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510081211.t98CB8n1035162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 8 Oct 2015 12:11:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398815 - head/lang/perl5-devel 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: Thu, 08 Oct 2015 12:11:10 -0000 Author: mat Date: Thu Oct 8 12:11:08 2015 New Revision: 398815 URL: https://svnweb.freebsd.org/changeset/ports/398815 Log: Update to v5.23.3-69-g0648b1f. Changes: https://github.com/Perl/perl5/compare/v5.23.3-12-g96f902f...v5.23.3-69-g0648b1f Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile head/lang/perl5-devel/distinfo Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Thu Oct 8 12:10:54 2015 (r398814) +++ head/lang/perl5-devel/Makefile Thu Oct 8 12:11:08 2015 (r398815) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= perl -PORTREVISION= 2 +PORTREVISION= 0 # XXX Remove second line, uncomment first #DISTVERSION= ${PERL_VERSION} DISTVERSION= ${GH_TAGNAME:C/^v//:C/-g[0-9a-f]*$//} @@ -29,7 +29,7 @@ TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_J USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.23.3-12-g96f902f +GH_TAGNAME= v5.23.3-69-g0648b1f OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT PTHREAD \ MULTIPLICITY SITECUSTOMIZE Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Thu Oct 8 12:10:54 2015 (r398814) +++ head/lang/perl5-devel/distinfo Thu Oct 8 12:11:08 2015 (r398815) @@ -1,2 +1,2 @@ -SHA256 (perl/perl-5.23.3-12_GH0.tar.gz) = 31bf6dd101ce41059df4f4eec902a4a94f5c2d0e76e8d0ee92fab070d73769d7 -SIZE (perl/perl-5.23.3-12_GH0.tar.gz) = 17581794 +SHA256 (perl/perl-5.23.3-69_GH0.tar.gz) = 38db0ec6c0c2407a05d0a6de8c26508e8e15d6fa40a275ef9d1e5a76df8652fa +SIZE (perl/perl-5.23.3-69_GH0.tar.gz) = 17574953 From owner-svn-ports-head@freebsd.org Thu Oct 8 12:14:38 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 90CF79D04E9; Thu, 8 Oct 2015 12:14:38 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3ED41E49; Thu, 8 Oct 2015 12:14:38 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98CEbfN037926; Thu, 8 Oct 2015 12:14:37 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98CEbMV037924; Thu, 8 Oct 2015 12:14:37 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510081214.t98CEbMV037924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 8 Oct 2015 12:14:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398816 - in head/net-mgmt/nagios-plugins: . 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: Thu, 08 Oct 2015 12:14:38 -0000 Author: mat Date: Thu Oct 8 12:14:37 2015 New Revision: 398816 URL: https://svnweb.freebsd.org/changeset/ports/398816 Log: Fix a regression where plugins would segfault if the monitored tcp port is closed. PR: 203572 Submitted by: johan stromnet se Obtained from: https://github.com/stromnet/nagios-plugins/commit/a18f60cc610c690cc0756bc258b8202a1541a067 MFH: 2015Q4 Sponsored by: Absolight Added: head/net-mgmt/nagios-plugins/files/patch-plugins_netutils.c (contents, props changed) Modified: head/net-mgmt/nagios-plugins/Makefile Modified: head/net-mgmt/nagios-plugins/Makefile ============================================================================== --- head/net-mgmt/nagios-plugins/Makefile Thu Oct 8 12:11:08 2015 (r398815) +++ head/net-mgmt/nagios-plugins/Makefile Thu Oct 8 12:14:37 2015 (r398816) @@ -3,7 +3,7 @@ PORTNAME= nagios-plugins PORTVERSION= 2.1.1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net-mgmt MASTER_SITES= https://www.nagios-plugins.org/download/ \ Added: head/net-mgmt/nagios-plugins/files/patch-plugins_netutils.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/nagios-plugins/files/patch-plugins_netutils.c Thu Oct 8 12:14:37 2015 (r398816) @@ -0,0 +1,44 @@ +--- plugins/netutils.c.orig 2015-07-30 21:40:06 UTC ++++ plugins/netutils.c +@@ -158,7 +158,7 @@ int + np_net_connect (const char *host_name, int port, int *sd, int proto) + { + struct addrinfo hints; +- struct addrinfo *res; ++ struct addrinfo *res, *res0; + struct sockaddr_un su; + char port_str[6], host[MAX_HOST_ADDRESS_LENGTH]; + size_t len; +@@ -185,12 +185,13 @@ np_net_connect (const char *host_name, i + memcpy (host, host_name, len); + host[len] = '\0'; + snprintf (port_str, sizeof (port_str), "%d", port); +- result = getaddrinfo (host, port_str, &hints, &res); ++ result = getaddrinfo (host, port_str, &hints, &res0); + + if (result != 0) { + printf ("%s\n", gai_strerror (result)); + return STATE_UNKNOWN; + } ++ res = res0; + + while (res) { + /* attempt to create a socket */ +@@ -198,7 +199,7 @@ np_net_connect (const char *host_name, i + + if (*sd < 0) { + printf ("%s\n", _("Socket creation failed")); +- freeaddrinfo (res); ++ freeaddrinfo (res0); + return STATE_UNKNOWN; + } + +@@ -221,7 +222,7 @@ np_net_connect (const char *host_name, i + close (*sd); + res = res->ai_next; + } +- freeaddrinfo (res); ++ freeaddrinfo (res0); + } + /* else the hostname is interpreted as a path to a unix socket */ + else { From owner-svn-ports-head@freebsd.org Thu Oct 8 12:14:43 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 4CBCF9D04FE; Thu, 8 Oct 2015 12:14:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25185E6B; Thu, 8 Oct 2015 12:14:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98CEg6w038064; Thu, 8 Oct 2015 12:14:42 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98CEgaH038062; Thu, 8 Oct 2015 12:14:42 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510081214.t98CEgaH038062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 8 Oct 2015 12:14:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398817 - in head/dns: bind910/files bind99/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: Thu, 08 Oct 2015 12:14:43 -0000 Author: mat Date: Thu Oct 8 12:14:41 2015 New Revision: 398817 URL: https://svnweb.freebsd.org/changeset/ports/398817 Log: Fix build WITH=DLZ_BDB. PR: 201715 Sponsored by: Absolight Modified: head/dns/bind910/files/patch-configure head/dns/bind99/files/patch-configure Modified: head/dns/bind910/files/patch-configure ============================================================================== --- head/dns/bind910/files/patch-configure Thu Oct 8 12:14:37 2015 (r398816) +++ head/dns/bind910/files/patch-configure Thu Oct 8 12:14:41 2015 (r398817) @@ -1,6 +1,6 @@ ---- configure.orig 2015-09-09 11:23:40.000000000 +0900 -+++ configure 2015-09-19 03:52:05.021434000 +0900 -@@ -14100,27 +14100,9 @@ +--- configure.orig 2015-09-09 02:23:40 UTC ++++ configure +@@ -14100,27 +14100,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,10 +30,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -14163,47 +14145,7 @@ +@@ -14163,47 +14145,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac - + - # - # XXXDCL Major kludge. Tries to cope with KTH in /usr/lib - # but MIT in /usr/local/lib and trying to build with KTH. @@ -77,5 +77,14 @@ - DST_GSSAPI_INC="-I$use_gssapi/include" + DST_GSSAPI_INC="$($KRB5CONFIG gssapi --cflags)" DNS_GSSAPI_LIBS="$LIBS" - + { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 +@@ -21451,7 +21393,7 @@ $as_echo "" >&6; } + # Check other locations for includes. + # Order is important (sigh). + +- bdb_incdirs="/db53 /db51 /db48 /db47 /db46 /db45 /db44 /db43 /db42 /db41 /db4 /db" ++ bdb_incdirs="/db6 /db5 /db48" + # include a blank element first + for d in "" $bdb_incdirs + do Modified: head/dns/bind99/files/patch-configure ============================================================================== --- head/dns/bind99/files/patch-configure Thu Oct 8 12:14:37 2015 (r398816) +++ head/dns/bind99/files/patch-configure Thu Oct 8 12:14:41 2015 (r398817) @@ -1,6 +1,6 @@ ---- configure.orig 2015-09-09 11:23:50.000000000 +0900 -+++ configure 2015-09-13 10:08:38.000000000 +0900 -@@ -14284,27 +14284,9 @@ +--- configure.orig 2015-09-09 02:23:50 UTC ++++ configure +@@ -14284,27 +14284,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,10 +30,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -14347,47 +14329,7 @@ +@@ -14347,47 +14329,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac - + - # - # XXXDCL Major kludge. Tries to cope with KTH in /usr/lib - # but MIT in /usr/local/lib and trying to build with KTH. @@ -77,5 +77,14 @@ - DST_GSSAPI_INC="-I$use_gssapi/include" + DST_GSSAPI_INC="$($KRB5CONFIG gssapi --cflags)" DNS_GSSAPI_LIBS="$LIBS" - + { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 +@@ -20337,7 +20279,7 @@ $as_echo "" >&6; } + # Check other locations for includes. + # Order is important (sigh). + +- bdb_incdirs="/db53 /db51 /db48 /db47 /db46 /db45 /db44 /db43 /db42 /db41 /db4 /db" ++ bdb_incdirs="/db6 /db5 /db48" + # include a blank element first + for d in "" $bdb_incdirs + do From owner-svn-ports-head@freebsd.org Thu Oct 8 12:56:38 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 E22809D18C5; Thu, 8 Oct 2015 12:56:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE0EC18E; Thu, 8 Oct 2015 12:56:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98CublO050260; Thu, 8 Oct 2015 12:56:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98CubW6050258; Thu, 8 Oct 2015 12:56:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081256.t98CubW6050258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 12:56:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398820 - head/games/crafty-tablebase-pawn 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: Thu, 08 Oct 2015 12:56:39 -0000 Author: amdmi3 Date: Thu Oct 8 12:56:37 2015 New Revision: 398820 URL: https://svnweb.freebsd.org/changeset/ports/398820 Log: - Drop @dirrm* from plist - Add NO_ARCH - Cosmetic fixes Modified: head/games/crafty-tablebase-pawn/Makefile head/games/crafty-tablebase-pawn/pkg-plist Modified: head/games/crafty-tablebase-pawn/Makefile ============================================================================== --- head/games/crafty-tablebase-pawn/Makefile Thu Oct 8 12:17:04 2015 (r398819) +++ head/games/crafty-tablebase-pawn/Makefile Thu Oct 8 12:56:37 2015 (r398820) @@ -31,7 +31,7 @@ krpkn.nbw.emd krpkp.nbb.emd krpkp.nbw.em krpkr.nbb.emd krpkr.nbw.emd krppk.nbb.emd krppk.nbw.emd krrkp.nbb.emd \ krrkp.nbw.emd krrpk.nbb.emd krrpk.nbw.emd DIST_SUBDIR= crafty -EXTRACT_ONLY= +EXTRACT_ONLY= # empty MAINTAINER= ports@FreeBSD.org COMMENT= These are the pawn tablebases (3,4,5 man) for crafty @@ -39,7 +39,8 @@ COMMENT= These are the pawn tablebases ( RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty NO_BUILD= yes -NO_PACKAGE= Way too big +NO_ARCH= yes +MANUAL_PACKAGE_BUILD= too big .if !defined(WITH_TBDIR) WITH_TBDIR= ${PREFIX}/lib/crafty/TB @@ -49,6 +50,6 @@ do-install: ${MKDIR} ${STAGEDIR}${WITH_TBDIR} @list='${DISTFILES}'; for i in $$list; do \ ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/$$i ${STAGEDIR}${WITH_TBDIR}/$$i; \ - done + done .include Modified: head/games/crafty-tablebase-pawn/pkg-plist ============================================================================== --- head/games/crafty-tablebase-pawn/pkg-plist Thu Oct 8 12:17:04 2015 (r398819) +++ head/games/crafty-tablebase-pawn/pkg-plist Thu Oct 8 12:56:37 2015 (r398820) @@ -120,4 +120,3 @@ lib/crafty/TB/krrkp.nbb.emd lib/crafty/TB/krrkp.nbw.emd lib/crafty/TB/krrpk.nbb.emd lib/crafty/TB/krrpk.nbw.emd -@dirrm lib/crafty/TB From owner-svn-ports-head@freebsd.org Thu Oct 8 13:19:43 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 737519D0B93; Thu, 8 Oct 2015 13:19:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 471569A5; Thu, 8 Oct 2015 13:19:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98DJgA9056189; Thu, 8 Oct 2015 13:19:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98DJg1g056186; Thu, 8 Oct 2015 13:19:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081319.t98DJg1g056186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 13:19:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398821 - head/security/maia 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: Thu, 08 Oct 2015 13:19:43 -0000 Author: amdmi3 Date: Thu Oct 8 13:19:42 2015 New Revision: 398821 URL: https://svnweb.freebsd.org/changeset/ports/398821 Log: - Move file owner handling to plist, fix stage as non-root PR: 203287 Submitted by: amdmi3 Approved by: maintainer timeout (ek@purplehat.org, 2 weeks) Modified: head/security/maia/Makefile head/security/maia/pkg-plist Modified: head/security/maia/Makefile ============================================================================== --- head/security/maia/Makefile Thu Oct 8 12:56:37 2015 (r398820) +++ head/security/maia/Makefile Thu Oct 8 13:19:42 2015 (r398821) @@ -338,7 +338,6 @@ post-patch: do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} @cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/ ${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty ${MKDIR} -p ${STAGEDIR}${DATADIR} @cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts @@ -350,11 +349,10 @@ do-install: ${INSTALL} -m 640 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.conf.dist ${INSTALL} -m 640 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.conf.dist -.if ${PORT_OPTIONS:MDOCS} +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include Modified: head/security/maia/pkg-plist ============================================================================== --- head/security/maia/pkg-plist Thu Oct 8 12:56:37 2015 (r398820) +++ head/security/maia/pkg-plist Thu Oct 8 13:19:42 2015 (r398821) @@ -40,6 +40,8 @@ sbin/maiad %%DATADIR%%/scripts/send-quarantine-reminders.pl %%DATADIR%%/scripts/stats-snapshot.pl @mode +@owner %%WWWOWN%% +@group %%WWWGRP%% %%WWWDIR%%/admin/configtest.php %%WWWDIR%%/admin/dblib.php %%WWWDIR%%/admin/internal-init.php @@ -59,11 +61,7 @@ sbin/maiad %%WWWDIR%%/chart_rules.php %%WWWDIR%%/chart_stats.php %%WWWDIR%%/chart_virus.php -@mode 640 -@group %%WWWGRP%% -%%WWWDIR%%/config.php.dist -@group -@mode +@(%%WWWOWN%%,%%WWWGRP%%,640) %%WWWDIR%%/config.php.dist %%WWWDIR%%/confirm.php %%WWWDIR%%/constants.php %%WWWDIR%%/core.php @@ -909,7 +907,53 @@ sbin/maiad %%WWWDIR%%/ximpersonate.php %%WWWDIR%%/xlogin.php %%WWWDIR%%/xsettings.php -@dir %%WWWDIR%%/themes/desert_sand/compiled -@dir %%WWWDIR%%/themes/dgm/compiled -@dir %%WWWDIR%%/themes/ocean_surf/compiled @dir %%WWWDIR%%/web +@dir %%WWWDIR%%/themes/ocean_surf/templates/settings +@dir %%WWWDIR%%/themes/ocean_surf/templates +@dir %%WWWDIR%%/themes/ocean_surf/javascript +@dir %%WWWDIR%%/themes/ocean_surf/images +@dir %%WWWDIR%%/themes/ocean_surf/css/images +@dir %%WWWDIR%%/themes/ocean_surf/css +@dir %%WWWDIR%%/themes/ocean_surf/compiled +@dir %%WWWDIR%%/themes/ocean_surf/code +@dir %%WWWDIR%%/themes/ocean_surf +@dir %%WWWDIR%%/themes/dgm/templates +@dir %%WWWDIR%%/themes/dgm/images +@dir %%WWWDIR%%/themes/dgm/css +@dir %%WWWDIR%%/themes/dgm/compiled +@dir %%WWWDIR%%/themes/dgm/code +@dir %%WWWDIR%%/themes/dgm +@dir %%WWWDIR%%/themes/desert_sand/templates/welcome +@dir %%WWWDIR%%/themes/desert_sand/templates/settings +@dir %%WWWDIR%%/themes/desert_sand/templates +@dir %%WWWDIR%%/themes/desert_sand/javascript +@dir %%WWWDIR%%/themes/desert_sand/images +@dir %%WWWDIR%%/themes/desert_sand/css/images +@dir %%WWWDIR%%/themes/desert_sand/css +@dir %%WWWDIR%%/themes/desert_sand/compiled +@dir %%WWWDIR%%/themes/desert_sand/code +@dir %%WWWDIR%%/themes/desert_sand +@dir %%WWWDIR%%/themes +@dir %%WWWDIR%%/overlib/mini +@dir %%WWWDIR%%/overlib +@dir %%WWWDIR%%/maia_db +@dir %%WWWDIR%%/locale/sv +@dir %%WWWDIR%%/locale/ru +@dir %%WWWDIR%%/locale/pt +@dir %%WWWDIR%%/locale/no +@dir %%WWWDIR%%/locale/nl +@dir %%WWWDIR%%/locale/it +@dir %%WWWDIR%%/locale/hu +@dir %%WWWDIR%%/locale/fr +@dir %%WWWDIR%%/locale/en +@dir %%WWWDIR%%/locale/de +@dir %%WWWDIR%%/locale/da +@dir %%WWWDIR%%/locale/cs +@dir %%WWWDIR%%/libs/jquery/images +@dir %%WWWDIR%%/libs/jquery +@dir %%WWWDIR%%/libs +@dir %%WWWDIR%%/images +@dir %%WWWDIR%%/admin +@dir %%WWWDIR%% +@owner +@group From owner-svn-ports-head@freebsd.org Thu Oct 8 13:26:00 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 CB0049B4130; Thu, 8 Oct 2015 13:26:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8732D7D; Thu, 8 Oct 2015 13:26:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98DPxFK059132; Thu, 8 Oct 2015 13:25:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98DPxZG059130; Thu, 8 Oct 2015 13:25:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081325.t98DPxZG059130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 13:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398822 - head/misc/compat4x 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: Thu, 08 Oct 2015 13:26:01 -0000 Author: amdmi3 Date: Thu Oct 8 13:25:59 2015 New Revision: 398822 URL: https://svnweb.freebsd.org/changeset/ports/398822 Log: - Remove obsolete logic used to coexist with compat3x, fix stage-qa PR: 203272 Approved by: mat Modified: head/misc/compat4x/Makefile head/misc/compat4x/pkg-plist.freebsd5 Modified: head/misc/compat4x/Makefile ============================================================================== --- head/misc/compat4x/Makefile Thu Oct 8 13:19:42 2015 (r398821) +++ head/misc/compat4x/Makefile Thu Oct 8 13:25:59 2015 (r398822) @@ -3,7 +3,7 @@ PORTNAME= compat4x PORTVERSION= ${COMPAT4X_PORTVERSION} -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= misc MASTER_SITES= ${COMPAT4X_MASTER_SITES} PKGNAMESUFFIX= -${COMPAT4X_ARCH} @@ -64,8 +64,6 @@ PLIST_SUB+= FORBIDDEN:="" PLIST_SUB+= FORBIDDEN:="@comment " .endif -FREEBSD4_LIBS= libc_r.so.4 libperl.so.3 - .if defined(COMPAT4X_OSRELDATE) && !empty(COMPAT4X_OSRELDATE) COMPAT4X_PORTVERSION= ${COMPAT4X_OSVERSION}.${COMPAT4X_OSRELDATE} COMPAT4X_MASTER_SITES= ftp://current.FreeBSD.org/pub/FreeBSD/snapshots/${COMPAT4X_ARCH}/${COMPAT4X_OSVERSION}-${COMPAT4X_OSBRANCH}-${COMPAT4X_OSRELDATE}-JPSNAP/${PORTNAME}/ @@ -77,9 +75,6 @@ COMPAT4X_MASTER_SITES= LOCAL/kris/${COMP do-extract: @${MKDIR} ${WRKDIR} @(cd ${DISTDIR}/${DIST_SUBDIR} && ${CAT} ${DISTFILES} | ${TAR} -xzf - -C ${WRKDIR} ) -.for lib in ${FREEBSD4_LIBS} - @${MV} ${WRKSRC}/${lib} ${WRKSRC}/${lib}.compat4x -.endfor .if !defined(FORCE_VULNERABLE_OPENSSL) .for lib in ${OPENSSL_LIBS} @${RM} -f ${WRKSRC}/${lib} @@ -89,9 +84,6 @@ do-extract: do-install: @${MKDIR} ${STAGEDIR}${TARGET_DIR} ${INSTALL_DATA} ${WRKSRC}/* ${STAGEDIR}${TARGET_DIR}/ -.for lib in ${FREEBSD4_LIBS} - ${LN} -sf ${lib}.compat4x ${STAGEDIR}${TARGET_DIR}/${lib} -.endfor pre-clean: @[ -w ${WRKDIR}/var ] && chflags -R noschg ${WRKDIR}/var || ${TRUE} Modified: head/misc/compat4x/pkg-plist.freebsd5 ============================================================================== --- head/misc/compat4x/pkg-plist.freebsd5 Thu Oct 8 13:19:42 2015 (r398821) +++ head/misc/compat4x/pkg-plist.freebsd5 Thu Oct 8 13:25:59 2015 (r398822) @@ -1,7 +1,5 @@ %%LIBDIR%%/compat/libc.so.4 -@unexec if [ -e %B/libc_r.so.4.compat3x ]; then ln -sf libc_r.so.4.compat3x %B/libc_r.so.4; else rm %B/libc_r.so.4; fi -%%LIBDIR%%/compat/libc_r.so.4.compat4x -@exec ln -sf %f %B/libc_r.so.4 +%%LIBDIR%%/compat/libc_r.so.4 %%FORBIDDEN:%%%%LIBDIR%%/compat/libcrypto.so.1 %%FORBIDDEN:%%%%LIBDIR%%/compat/libcrypto.so.2 %%LIBDIR%%/compat/libdevstat.so.2 @@ -14,9 +12,7 @@ %%LIBDIR%%/compat/libopie.so.2 %%LIBDIR%%/compat/libpam.so.1 %%LIBDIR%%/compat/libpcap.so.2 -@unexec if [ -e %B/libperl.so.3.compat3x ]; then ln -sf libperl.so.3.compat3x %B/libperl.so.3; else rm %B/libperl.so.3; fi -%%LIBDIR%%/compat/libperl.so.3.compat4x -@exec ln -sf %f %B/libperl.so.3 +%%LIBDIR%%/compat/libperl.so.3 %%LIBDIR%%/compat/libposix1e.so.2 %%LIBDIR%%/compat/libreadline.so.4 %%LIBDIR%%/compat/libskey.so.2 From owner-svn-ports-head@freebsd.org Thu Oct 8 13:26: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 BA9669B41D1; Thu, 8 Oct 2015 13:26:49 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x22f.google.com (mail-wi0-x22f.google.com [IPv6:2a00:1450:400c:c05::22f]) (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 5B3A41AA; Thu, 8 Oct 2015 13:26:49 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wicgb1 with SMTP id gb1so25657009wic.1; Thu, 08 Oct 2015 06:26:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=RIxmBmvFdybBVT/BUz8CO92hrh5rMNxOx1pt0sJgoGc=; b=zxs8AIpCRzRnorG2R2hXIwU6IvhVtMgCz0wRCZAh7b+qFCAIJ4C+ZOMCRqGpNdkVFc WSXTWETQIsEWtuWnGh7ki9+/lbKKEx3d0dxsypUvff4V8fy6hIXnayKdcqb+CW5EGchQ UDVOCcUkMWqH7bayRZiPEuCRuNU8m9DDVWQXoIH5x6eM2mkz6xMN0XwVmUU1yzcvdzGD 9gKwJVihHJXZBindUFFubnzbUgZ2kBYFjCVHX4mzhtHfRR1Lpr/Cb5vfpCzlvzrh3aag b4wPq4FtBIDrsGBWrrVHFhKtH16fOtcHFJnuYPabqhEpktPY8fK3TRArKc4YBX/0ybHu n3iA== X-Received: by 10.180.76.177 with SMTP id l17mr4223935wiw.16.1444310807863; Thu, 08 Oct 2015 06:26:47 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id bk4sm46110341wjc.1.2015.10.08.06.26.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Oct 2015 06:26:47 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 8 Oct 2015 15:26:45 +0200 From: Baptiste Daroussin To: Dmitry Marakasov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398821 - head/security/maia Message-ID: <20151008132645.GJ91729@ivaldir.etoilebsd.net> References: <201510081319.t98DJg1g056186@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SLfjTIIQuAzj8yil" Content-Disposition: inline In-Reply-To: <201510081319.t98DJg1g056186@repo.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: Thu, 08 Oct 2015 13:26:49 -0000 --SLfjTIIQuAzj8yil Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 08, 2015 at 01:19:42PM +0000, Dmitry Marakasov wrote: > Author: amdmi3 > Date: Thu Oct 8 13:19:42 2015 > New Revision: 398821 > URL: https://svnweb.freebsd.org/changeset/ports/398821 >=20 > Log: > - Move file owner handling to plist, fix stage as non-root > =20 > PR: 203287 > Submitted by: amdmi3 > Approved by: maintainer timeout (ek@purplehat.org, 2 weeks) >=20 > Modified: > head/security/maia/Makefile > head/security/maia/pkg-plist >=20 > Modified: head/security/maia/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/security/maia/Makefile Thu Oct 8 12:56:37 2015 (r398820) > +++ head/security/maia/Makefile Thu Oct 8 13:19:42 2015 (r398821) > @@ -338,7 +338,6 @@ post-patch: > do-install: > ${MKDIR} ${STAGEDIR}${WWWDIR} > @cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} > - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/ > ${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty > ${MKDIR} -p ${STAGEDIR}${DATADIR} > @cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scri= pts > @@ -350,11 +349,10 @@ do-install: > ${INSTALL} -m 640 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.= conf.dist > ${INSTALL} -m 640 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.co= nf.dist > =20 > -.if ${PORT_OPTIONS:MDOCS} > +do-install-DOCS-on: > ${MKDIR} ${STAGEDIR}${DOCSDIR} > .for i in ${DOCS} > ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} > .endfor > -.endif > =20 > .include >=20 > Modified: head/security/maia/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/security/maia/pkg-plist Thu Oct 8 12:56:37 2015 (r398820) > +++ head/security/maia/pkg-plist Thu Oct 8 13:19:42 2015 (r398821) > @@ -40,6 +40,8 @@ sbin/maiad > %%DATADIR%%/scripts/send-quarantine-reminders.pl > %%DATADIR%%/scripts/stats-snapshot.pl > @mode > +@owner %%WWWOWN%% > +@group %%WWWGRP%% There is absolutly no reason those files belongs to those users only direct= ories (like cache directories) and files that the app expect to be able to modifi= ed when run should be own by such user, otherwise everything should belong to root/wheel: aka the default Best regards, Bapt --SLfjTIIQuAzj8yil Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlYWbxUACgkQ8kTtMUmk6Ey94wCbBZkSUKslGBuLNP3sFU+Tmh9D n2YAoLszMDJY8NeEKWTD34dH2vjAdVcI =fRHb -----END PGP SIGNATURE----- --SLfjTIIQuAzj8yil-- From owner-svn-ports-head@freebsd.org Thu Oct 8 13:27: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 EB17B9B4246; Thu, 8 Oct 2015 13:27:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8D6B295; Thu, 8 Oct 2015 13:27:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98DR01i059277; Thu, 8 Oct 2015 13:27:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98DR08t059276; Thu, 8 Oct 2015 13:27:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081327.t98DR08t059276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 13:27:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398823 - head/x11-wm/wmakerconf 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: Thu, 08 Oct 2015 13:27:02 -0000 Author: amdmi3 Date: Thu Oct 8 13:27:00 2015 New Revision: 398823 URL: https://svnweb.freebsd.org/changeset/ports/398823 Log: - Add LICENSE_FILE - Fix build by linking with used libraries Modified: head/x11-wm/wmakerconf/Makefile Modified: head/x11-wm/wmakerconf/Makefile ============================================================================== --- head/x11-wm/wmakerconf/Makefile Thu Oct 8 13:25:59 2015 (r398822) +++ head/x11-wm/wmakerconf/Makefile Thu Oct 8 13:27:00 2015 (r398823) @@ -12,7 +12,8 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Configuration tool for Window Maker -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libWINGs.so:${PORTSDIR}/x11-wm/windowmaker RUN_DEPENDS= rpm:${PORTSDIR}/archivers/rpm4 @@ -25,6 +26,8 @@ SHEBANG_FILES= scripts/getfile.pl.in scr GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-wmakerdataprefix="${LOCALBASE}/share" \ --with-wmakeretcprefix="${LOCALBASE}/share" +USE_XORG= x11 +LIBS+= -L${LOCALBASE}/lib -lX11 post-extract: @${FIND} ${WRKSRC} -name "*.gmo" -delete From owner-svn-ports-head@freebsd.org Thu Oct 8 13:45:07 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 485309D1100; Thu, 8 Oct 2015 13:45:07 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12161F5; Thu, 8 Oct 2015 13:45:06 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Dj6x7065164; Thu, 8 Oct 2015 13:45:06 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Dj6VN065162; Thu, 8 Oct 2015 13:45:06 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510081345.t98Dj6VN065162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Thu, 8 Oct 2015 13:45:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398824 - head/devel/p5-Parse-CPAN-Packages-Fast 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: Thu, 08 Oct 2015 13:45:07 -0000 Author: culot Date: Thu Oct 8 13:45:05 2015 New Revision: 398824 URL: https://svnweb.freebsd.org/changeset/ports/398824 Log: - Update to 0.09 Changes: http://search.cpan.org/dist/Parse-CPAN-Packages-Fast/Changes Modified: head/devel/p5-Parse-CPAN-Packages-Fast/Makefile head/devel/p5-Parse-CPAN-Packages-Fast/distinfo Modified: head/devel/p5-Parse-CPAN-Packages-Fast/Makefile ============================================================================== --- head/devel/p5-Parse-CPAN-Packages-Fast/Makefile Thu Oct 8 13:27:00 2015 (r398823) +++ head/devel/p5-Parse-CPAN-Packages-Fast/Makefile Thu Oct 8 13:45:05 2015 (r398824) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Parse-CPAN-Packages-Fast -PORTVERSION= 0.08 -PORTREVISION= 1 +PORTVERSION= 0.09 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Parse-CPAN-Packages-Fast/distinfo ============================================================================== --- head/devel/p5-Parse-CPAN-Packages-Fast/distinfo Thu Oct 8 13:27:00 2015 (r398823) +++ head/devel/p5-Parse-CPAN-Packages-Fast/distinfo Thu Oct 8 13:45:05 2015 (r398824) @@ -1,2 +1,2 @@ -SHA256 (Parse-CPAN-Packages-Fast-0.08.tar.gz) = e526c875b8e55d3d7245f4bb66f121d93743d81897120729aa96ae55f917e38e -SIZE (Parse-CPAN-Packages-Fast-0.08.tar.gz) = 6970 +SHA256 (Parse-CPAN-Packages-Fast-0.09.tar.gz) = 95200d3a29927f82929290d08c46f93436de11fa526176e896792926730cd889 +SIZE (Parse-CPAN-Packages-Fast-0.09.tar.gz) = 7358 From owner-svn-ports-head@freebsd.org Thu Oct 8 13:47: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 C5A5E9D12E9; Thu, 8 Oct 2015 13:47:44 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9194C277; Thu, 8 Oct 2015 13:47:44 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98DlhSr065354; Thu, 8 Oct 2015 13:47:43 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Dlhqx065352; Thu, 8 Oct 2015 13:47:43 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510081347.t98Dlhqx065352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Thu, 8 Oct 2015 13:47:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398825 - head/devel/p5-Variable-Magic 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: Thu, 08 Oct 2015 13:47:44 -0000 Author: culot Date: Thu Oct 8 13:47:43 2015 New Revision: 398825 URL: https://svnweb.freebsd.org/changeset/ports/398825 Log: - Update to 0.59 Changes: http://search.cpan.org/dist/Variable-Magic/Changes Modified: head/devel/p5-Variable-Magic/Makefile head/devel/p5-Variable-Magic/distinfo Modified: head/devel/p5-Variable-Magic/Makefile ============================================================================== --- head/devel/p5-Variable-Magic/Makefile Thu Oct 8 13:45:05 2015 (r398824) +++ head/devel/p5-Variable-Magic/Makefile Thu Oct 8 13:47:43 2015 (r398825) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Variable-Magic -PORTVERSION= 0.58 +PORTVERSION= 0.59 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Variable-Magic/distinfo ============================================================================== --- head/devel/p5-Variable-Magic/distinfo Thu Oct 8 13:45:05 2015 (r398824) +++ head/devel/p5-Variable-Magic/distinfo Thu Oct 8 13:47:43 2015 (r398825) @@ -1,2 +1,2 @@ -SHA256 (Variable-Magic-0.58.tar.gz) = 036d6a18b2014fbe3a9e2c033157bd62dd82b175dbe63e12d7c874aed61f10fa -SIZE (Variable-Magic-0.58.tar.gz) = 73506 +SHA256 (Variable-Magic-0.59.tar.gz) = e01eb9fd803d8c9baf93f3dbb5cabf750e4bb74eccc8a1f9035e46246a688066 +SIZE (Variable-Magic-0.59.tar.gz) = 74019 From owner-svn-ports-head@freebsd.org Thu Oct 8 14:07: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 223AF9D0108; Thu, 8 Oct 2015 14:07:22 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9008169; Thu, 8 Oct 2015 14:07:21 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98E7Lu9071197; Thu, 8 Oct 2015 14:07:21 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98E7KmP071193; Thu, 8 Oct 2015 14:07:20 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201510081407.t98E7KmP071193@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 8 Oct 2015 14:07:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398826 - in head/net-mgmt/icingaweb2: . 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: Thu, 08 Oct 2015 14:07:22 -0000 Author: lme Date: Thu Oct 8 14:07:20 2015 New Revision: 398826 URL: https://svnweb.freebsd.org/changeset/ports/398826 Log: - Move SQL setup scripts from DATADIR to WWWDIR/etc, so the web setup wizard can find it - Mention the SQL setup scripts in pkg-message for use in a manual configuration - Bump PORTREVISION Modified: head/net-mgmt/icingaweb2/Makefile head/net-mgmt/icingaweb2/files/pkg-message.in head/net-mgmt/icingaweb2/pkg-plist Modified: head/net-mgmt/icingaweb2/Makefile ============================================================================== --- head/net-mgmt/icingaweb2/Makefile Thu Oct 8 13:47:43 2015 (r398825) +++ head/net-mgmt/icingaweb2/Makefile Thu Oct 8 14:07:20 2015 (r398826) @@ -3,6 +3,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v DISTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org @@ -41,11 +42,8 @@ do-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/bash_completion.d/ ${INSTALL_DATA} ${WRKSRC}/etc/bash_completion.d/icingacli \ ${STAGEDIR}${EXAMPLESDIR}/bash_completion.d - ${MKDIR} ${STAGEDIR}${DATADIR} - (cd ${WRKSRC}/etc && \ - ${COPYTREE_SHARE} schema ${STAGEDIR}${DATADIR}) (cd ${WRKSRC} && ${RM} -r .mailmap changelog.py icingaweb2.spec \ - bin/license_writer.py etc packages test) + bin/license_writer.py packages test) ${MKDIR} ${STAGEDIR}${WWWDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) Modified: head/net-mgmt/icingaweb2/files/pkg-message.in ============================================================================== --- head/net-mgmt/icingaweb2/files/pkg-message.in Thu Oct 8 13:47:43 2015 (r398825) +++ head/net-mgmt/icingaweb2/files/pkg-message.in Thu Oct 8 14:07:20 2015 (r398826) @@ -8,3 +8,6 @@ cd %%WWWDIR%% && ./bin/icingacli setup t Enter this token on Icinga Web 2's setup interface at http://localhost/icingaweb2/setup + +If you like to create the database schemas manually, you can find the +SQL files at %%WWWDIR%%/etc/schema Modified: head/net-mgmt/icingaweb2/pkg-plist ============================================================================== --- head/net-mgmt/icingaweb2/pkg-plist Thu Oct 8 13:47:43 2015 (r398825) +++ head/net-mgmt/icingaweb2/pkg-plist Thu Oct 8 14:07:20 2015 (r398826) @@ -1,10 +1,10 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/apache/icingaweb2.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bash_completion.d/icingacli %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nginx/icingaweb2.conf -%%DATADIR%%/schema/mysql-upgrades/2.0.0beta3-2.0.0rc1.sql -%%DATADIR%%/schema/mysql.schema.sql -%%DATADIR%%/schema/pgsql-upgrades/2.0.0beta3-2.0.0rc1.sql -%%DATADIR%%/schema/pgsql.schema.sql +%%ETCDIR%%/schema/mysql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%ETCDIR%%/schema/mysql.schema.sql +%%ETCDIR%%/schema/pgsql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%ETCDIR%%/schema/pgsql.schema.sql %%WWWDIR%%/AUTHORS %%WWWDIR%%/COPYING %%WWWDIR%%/ChangeLog From owner-svn-ports-head@freebsd.org Thu Oct 8 14:12: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 03B649D0533; Thu, 8 Oct 2015 14:12:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B345489B; Thu, 8 Oct 2015 14:12:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98ECsvI074154; Thu, 8 Oct 2015 14:12:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98ECrS5074142; Thu, 8 Oct 2015 14:12:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081412.t98ECrS5074142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 14:12:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398827 - in head: Keywords Mk Mk/Scripts Mk/Uses devel/ncurses sysutils/jfbterm x11/rxvt-unicode x11/rxvt-unicode/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: Thu, 08 Oct 2015 14:12:56 -0000 Author: amdmi3 Date: Thu Oct 8 14:12:53 2015 New Revision: 398827 URL: https://svnweb.freebsd.org/changeset/ports/398827 Log: Add a way to cleanly handle terminfo.db file used by devel/ncurses This database contains compiled terminfo entries and is merged from a large part which comes with ncurses themselves and compiled .terminfo files installed by other ports (currently only rxvt-unicode and jfbterm) - Now the database is always kept up to date, regardless of port installation order (both ncurses installed before .terminfo files and the other way around work as expected) - All affected ports now support clean deinstallation and do not produce stage-qa errors - Affected ports are simplified, as they now only need to define USES=terminfo - rxvt-unicode no longer pulls in ncurses: the dependency is not really needed for anything beside updating it's own database - The patch contains Q/A test to check whether a port needs, or needs not USES=terminfo Approved by: portmgr (mat, bapt) Differential Revision: D3747 Added: head/Keywords/terminfo.ucl (contents, props changed) head/Mk/Uses/terminfo.mk (contents, props changed) head/x11/rxvt-unicode/files/patch-doc_Makefile.in (contents, props changed) Modified: head/Mk/Scripts/qa.sh head/Mk/bsd.port.mk head/devel/ncurses/Makefile head/devel/ncurses/pkg-plist head/sysutils/jfbterm/Makefile head/sysutils/jfbterm/pkg-plist head/x11/rxvt-unicode/Makefile head/x11/rxvt-unicode/pkg-plist Added: head/Keywords/terminfo.ucl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/Keywords/terminfo.ucl Thu Oct 8 14:12:53 2015 (r398827) @@ -0,0 +1,22 @@ +# $FreeBSD$ +# + +actions: [] +post-install: < 900000 ${RM} -f ${STAGEDIR}${PREFIX}/lib/libncurses.so \ ${STAGEDIR}${PREFIX}/lib/libncursesw.so ${ECHO} "INPUT(libncurses.so.${RELEASE:R} AS_NEEDED(-ltinfo))" > ${STAGEDIR}${PREFIX}/lib/libncurses.so ${ECHO} "INPUT(libncursesw.so.${RELEASE:R} AS_NEEDED(-ltinfow))" > ${STAGEDIR}${PREFIX}/lib/libncursesw.so -.endif + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.5.9 + ${MV} ${STAGEDIR}${PREFIX}/share/misc/terminfo.db \ + ${STAGEDIR}${PREFIX}/share/misc/terminfo.db.default + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + .include Modified: head/devel/ncurses/pkg-plist ============================================================================== --- head/devel/ncurses/pkg-plist Thu Oct 8 14:07:20 2015 (r398826) +++ head/devel/ncurses/pkg-plist Thu Oct 8 14:12:53 2015 (r398827) @@ -977,5 +977,4 @@ share/misc/tabset/std share/misc/tabset/stdcrt share/misc/tabset/vt100 share/misc/tabset/vt300 -share/misc/terminfo.db -@exec find %D/share/misc -name "*.terminfo" -exec %D/bin/tic {} \; +share/misc/terminfo.db.default Modified: head/sysutils/jfbterm/Makefile ============================================================================== --- head/sysutils/jfbterm/Makefile Thu Oct 8 14:07:20 2015 (r398826) +++ head/sysutils/jfbterm/Makefile Thu Oct 8 14:12:53 2015 (r398827) @@ -4,7 +4,7 @@ PORTNAME= jfbterm PORTVERSION= 0.6.1 DISTVERSIONPREFIX=FreeBSD- -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= sysutils MASTER_SITES= http://www.ac.auone-net.jp/~baba/jfbterm/ @@ -17,14 +17,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= requires VESA support in kernel +USES= terminfo MAKEFILE= ${FILESDIR}/BSDmakefile MAKE_ENV+= VERSION=${PORTVERSION} GUNZIP=${GUNZIP_CMD:N-*} PLIST_SUB+= TERMCAP_ADD_RECORD="@exec ${TERMCAP_ADD_RECORD:S,^${PREFIX},%D,}" \ - TERMCAP_DEL_RECORD="@unexec ${TERMCAP_DEL_RECORD}" \ - TIC="@exec ${TIC} ${TERMINFO_FILE:S,^${PREFIX},%D,} 2>/dev/null || ${TRUE}" + TERMCAP_DEL_RECORD="@unexec ${TERMCAP_DEL_RECORD}" CAP_MKDB?= /usr/bin/cap_mkdb -TIC?= ${LOCALBASE}/bin/tic TERMINFO_FILE?= ${PREFIX}/share/misc/jfbterm.terminfo OPTIONS_DEFINE= ICONV PNG SETUID TERMCAP UNIFONT @@ -42,8 +41,6 @@ PLIST_SUB+= SETUID="" PLIST_SUB+= SETUID="@comment " .endif -ONLY_FOR_ARCHS+=amd64 - .if !defined(INSTALL_AS_USER) TERMCAP_FILE?= /usr/share/misc/termcap .else @@ -101,13 +98,13 @@ post-extract: .SILENT ${WRKSRC}/jfbterm.conf.sample post-patch: - ${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ + @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ -e 's|\(share\)/jfbterm/\(fonts\)|\1/misc/\2|' \ ${WRKSRC}/*.[0-9] ${WRKSRC}/*.conf.sample -.if !${PORT_OPTIONS:MTERMCAP} - ${REINPLACE_CMD} '/^term/s/:.*/: xterm/' \ + +post-patch-TERMCAP-off: + @${REINPLACE_CMD} '/^term/s/:.*/: xterm/' \ ${WRKSRC}/jfbterm.conf.sample -.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/jfbterm ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/jfbterm/pkg-plist ============================================================================== --- head/sysutils/jfbterm/pkg-plist Thu Oct 8 14:07:20 2015 (r398826) +++ head/sysutils/jfbterm/pkg-plist Thu Oct 8 14:12:53 2015 (r398827) @@ -9,4 +9,3 @@ share/misc/jfbterm.termcap share/misc/jfbterm.terminfo %%TERMCAP_ADD_RECORD%% %%TERMCAP_DEL_RECORD%% -%%TIC%% Modified: head/x11/rxvt-unicode/Makefile ============================================================================== --- head/x11/rxvt-unicode/Makefile Thu Oct 8 14:07:20 2015 (r398826) +++ head/x11/rxvt-unicode/Makefile Thu Oct 8 14:12:53 2015 (r398827) @@ -3,6 +3,7 @@ PORTNAME= rxvt-unicode PORTVERSION= 9.21 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/ MASTER_SITE_SUBDIR= . Attic @@ -12,12 +13,10 @@ COMMENT= Clone of the terminal emulator LICENSE= GPLv2 -BUILD_DEPENDS= tic:${PORTSDIR}/devel/ncurses \ - ${LOCALBASE}/libdata/pkgconfig/fontconfig.pc:${PORTSDIR}/x11-fonts/fontconfig -RUN_DEPENDS= ${LOCALBASE}/bin/fc-cache:${PORTSDIR}/x11-fonts/fontconfig \ - ${LOCALBASE}/share/misc/terminfo.db:${PORTSDIR}/devel/ncurses +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/fontconfig.pc:${PORTSDIR}/x11-fonts/fontconfig +RUN_DEPENDS= ${LOCALBASE}/bin/fc-cache:${PORTSDIR}/x11-fonts/fontconfig -USES= cpe pkgconfig shebangfix tar:bzip2 +USES= cpe pkgconfig shebangfix tar:bzip2 terminfo USE_XORG= xpm xft xrender GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Added: head/x11/rxvt-unicode/files/patch-doc_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rxvt-unicode/files/patch-doc_Makefile.in Thu Oct 8 14:12:53 2015 (r398827) @@ -0,0 +1,10 @@ +--- doc/Makefile.in.orig 2014-12-31 14:09:25 UTC ++++ doc/Makefile.in +@@ -98,7 +98,6 @@ install: all + $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext) + $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext) + $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext) +- @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo + + distdepend: alldoc + Modified: head/x11/rxvt-unicode/pkg-plist ============================================================================== --- head/x11/rxvt-unicode/pkg-plist Thu Oct 8 14:07:20 2015 (r398826) +++ head/x11/rxvt-unicode/pkg-plist Thu Oct 8 14:12:53 2015 (r398827) @@ -58,5 +58,3 @@ man/man1/urxvtd.1.gz %%PERL%%man/man3/urxvtperl.3.gz man/man7/urxvt.7.gz share/misc/rxvt-unicode.terminfo -@comment No unexec tic available -@postexec tic %D/share/misc/rxvt-unicode.terminfo From owner-svn-ports-head@freebsd.org Thu Oct 8 14:18:13 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 DD7FE9D0843; Thu, 8 Oct 2015 14:18:13 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4B99A50; Thu, 8 Oct 2015 14:18:13 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98EIC37074438; Thu, 8 Oct 2015 14:18:12 GMT (envelope-from theraven@FreeBSD.org) Received: (from theraven@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98EICrx074437; Thu, 8 Oct 2015 14:18:12 GMT (envelope-from theraven@FreeBSD.org) Message-Id: <201510081418.t98EICrx074437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: theraven set sender to theraven@FreeBSD.org using -f From: David Chisnall Date: Thu, 8 Oct 2015 14:18:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398828 - head/audio/musicpd/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: Thu, 08 Oct 2015 14:18:14 -0000 Author: theraven Date: Thu Oct 8 14:18:12 2015 New Revision: 398828 URL: https://svnweb.freebsd.org/changeset/ports/398828 Log: Fix the post-install message to only refer to ports that actually exist. While here, sort them a bit so that the user doesn't have to look up the relevant one for their DE / use case. PR: 202926 Modified: head/audio/musicpd/files/pkg-message.in Modified: head/audio/musicpd/files/pkg-message.in ============================================================================== --- head/audio/musicpd/files/pkg-message.in Thu Oct 8 14:12:53 2015 (r398827) +++ head/audio/musicpd/files/pkg-message.in Thu Oct 8 14:18:12 2015 (r398828) @@ -21,6 +21,11 @@ be stored in the /var/mpd/music director NOTE: The musicpd server is pretty useless without a client. You might want to install one of the following ports too: - musicpc, ncmpc, glurp, gmpc, kmp, or phpmp. + + Command line: musicpc, ncmpc (Curses) + GNOME / GTK: glurp, gmpc + KDE / Qt: quimup, qmpdlient + Web: phpmp + **************************************************************** From owner-svn-ports-head@freebsd.org Thu Oct 8 14: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 B583A9D0AA6; Thu, 8 Oct 2015 14:21:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80442CF8; Thu, 8 Oct 2015 14:21:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98ELAHZ074645; Thu, 8 Oct 2015 14:21:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98ELA4I074644; Thu, 8 Oct 2015 14:21:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081421.t98ELA4I074644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 14:21:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398829 - head/Mk 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: Thu, 08 Oct 2015 14:21:11 -0000 Author: amdmi3 Date: Thu Oct 8 14:21:10 2015 New Revision: 398829 URL: https://svnweb.freebsd.org/changeset/ports/398829 Log: Enable TEST option if DEVELOPER is set TEST option is used when a port needs extra depends or flags for build phase to enable tests (so TEST_DEPENDS don't work). Enable it by default for DEVELOPER builds, so interested parties and Q/A can have all tests available. Approved by: portmgr (bapt) Differential Revision: D3844 Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Thu Oct 8 14:18:12 2015 (r398828) +++ head/Mk/bsd.options.mk Thu Oct 8 14:21:10 2015 (r398829) @@ -189,6 +189,10 @@ WITHOUT+= EXAMPLES OPTIONS_WARNINGS_UNSET+= EXAMPLES .endif +.if defined(DEVELOPER) +PORT_OPTIONS+= TEST +.endif + PORT_OPTIONS+= IPV6 # Add per arch options From owner-svn-ports-head@freebsd.org Thu Oct 8 14:40:54 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 DDE5F9D1594; Thu, 8 Oct 2015 14:40:54 +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 1714DA35; Thu, 8 Oct 2015 14:40:54 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id 0E696B0620; Thu, 8 Oct 2015 17:40:47 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D0DDD5CE; Thu, 8 Oct 2015 17:37:00 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 171155A7; Thu, 8 Oct 2015 17:39:44 +0300 (MSK) Date: Thu, 8 Oct 2015 17:39:44 +0300 From: Dmitry Marakasov To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398821 - head/security/maia Message-ID: <20151008143944.GG68979@hades.panopticon> References: <201510081319.t98DJg1g056186@repo.freebsd.org> <20151008132645.GJ91729@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20151008132645.GJ91729@ivaldir.etoilebsd.net> 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: Thu, 08 Oct 2015 14:40:55 -0000 * Baptiste Daroussin (bapt@FreeBSD.org) wrote: > > Author: amdmi3 > > Date: Thu Oct 8 13:19:42 2015 > > New Revision: 398821 > > URL: https://svnweb.freebsd.org/changeset/ports/398821 > > > > Log: > > - Move file owner handling to plist, fix stage as non-root > > > > PR: 203287 > > Submitted by: amdmi3 > > Approved by: maintainer timeout (ek@purplehat.org, 2 weeks) > > > > Modified: > > head/security/maia/Makefile > > head/security/maia/pkg-plist > > > > Modified: head/security/maia/Makefile > > ============================================================================== > > --- head/security/maia/Makefile Thu Oct 8 12:56:37 2015 (r398820) > > +++ head/security/maia/Makefile Thu Oct 8 13:19:42 2015 (r398821) > > @@ -338,7 +338,6 @@ post-patch: > > do-install: > > ${MKDIR} ${STAGEDIR}${WWWDIR} > > @cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} > > - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/ > > ${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty > > ${MKDIR} -p ${STAGEDIR}${DATADIR} > > @cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts > > @@ -350,11 +349,10 @@ do-install: > > ${INSTALL} -m 640 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.conf.dist > > ${INSTALL} -m 640 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.conf.dist > > > > -.if ${PORT_OPTIONS:MDOCS} > > +do-install-DOCS-on: > > ${MKDIR} ${STAGEDIR}${DOCSDIR} > > .for i in ${DOCS} > > ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} > > .endfor > > -.endif > > > > .include > > > > Modified: head/security/maia/pkg-plist > > ============================================================================== > > --- head/security/maia/pkg-plist Thu Oct 8 12:56:37 2015 (r398820) > > +++ head/security/maia/pkg-plist Thu Oct 8 13:19:42 2015 (r398821) > > @@ -40,6 +40,8 @@ sbin/maiad > > %%DATADIR%%/scripts/send-quarantine-reminders.pl > > %%DATADIR%%/scripts/stats-snapshot.pl > > @mode > > +@owner %%WWWOWN%% > > +@group %%WWWGRP%% > > There is absolutly no reason those files belongs to those users only directories > (like cache directories) and files that the app expect to be able to modified > when run should be own by such user, otherwise everything should belong to > root/wheel: aka the default I know, and there's ton of ports like that. However my task currently is to fix stage-qa problems and packaging as non-root, so I do not change owner/group scope. Permissions should be fixed by maintainers. -- 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 Thu Oct 8 14:48:59 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 577EA9D18E9; Thu, 8 Oct 2015 14:48:59 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2363CE86; Thu, 8 Oct 2015 14:48:59 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98EmwQ2083377; Thu, 8 Oct 2015 14:48:58 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Emw3F083376; Thu, 8 Oct 2015 14:48:58 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510081448.t98Emw3F083376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 8 Oct 2015 14:48:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398830 - head/devel/swig13 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: Thu, 08 Oct 2015 14:48:59 -0000 Author: pawel Date: Thu Oct 8 14:48:57 2015 New Revision: 398830 URL: https://svnweb.freebsd.org/changeset/ports/398830 Log: - Convert to USES=autoreconf [1] - Use options helpers for LUA option PR: 202809 [1] Submitted by: takefu@airport.fm [1] Modified: head/devel/swig13/Makefile Modified: head/devel/swig13/Makefile ============================================================================== --- head/devel/swig13/Makefile Thu Oct 8 14:21:10 2015 (r398829) +++ head/devel/swig13/Makefile Thu Oct 8 14:48:57 2015 (r398830) @@ -11,7 +11,7 @@ PKGNAMESUFFIX= 13 MAINTAINER= ports@FreeBSD.org COMMENT= Simplified Wrapper and Interface Generator -USE_AUTOTOOLS= autoconf:env +USES= autoreconf:build GNU_CONFIGURE= yes VER= ${PORTVERSION:R} @@ -33,18 +33,13 @@ PORTDATA= * OPTIONS_DEFINE= LUA DOCS EXAMPLES OPTIONS_DEFAULT=DOCS EXAMPLES -LUA_DESC= Enable Lua support -.include - -.if ${PORT_OPTIONS:MLUA} -USES+= lua:51 -CONFIGURE_ARGS+=--with-lua=${LUA_BINDIR}/lua \ - --with-luaincl=${LUA_INCDIR} \ - --with-lualib=${LUA_LIBDIR} -.else -CONFIGURE_ARGS+=--without-lua -.endif +LUA_DESC= Lua support +LUA_USES= lua:51 +LUA_CONFIGURE_ON= --with-lua=${LUA_BINDIR}/lua \ + --with-luaincl=${LUA_INCDIR} \ + --with-lualib=${LUA_LIBDIR} +LUA_CONFIGURE_OFF= --without-lua OCTAVE_VER_CMD= ${LOCALBASE}/bin/octave-config -v 2>/dev/null || ${TRUE} @@ -68,4 +63,4 @@ post-install: cd ${WRKSRC}/Doc && ${COPYTREE_SHARE} '*' ${STAGEDIR}${DOCSDIR}/${PORTVERSION} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* -.include +.include From owner-svn-ports-head@freebsd.org Thu Oct 8 14:57:30 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 A31199D21F6; Thu, 8 Oct 2015 14:57:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 628EB847; Thu, 8 Oct 2015 14:57:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98EvT0X086350; Thu, 8 Oct 2015 14:57:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98EvTXp086349; Thu, 8 Oct 2015 14:57:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081457.t98EvTXp086349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 14:57:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398831 - head/Mk 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: Thu, 08 Oct 2015 14:57:30 -0000 Author: amdmi3 Date: Thu Oct 8 14:57:29 2015 New Revision: 398831 URL: https://svnweb.freebsd.org/changeset/ports/398831 Log: Add LOCALBASE-based ldconfig dir to plist for non-default PREFIX ldconfig file is always installed into LOCALBASE-based directory (${LOCALBASE}/${LDCONFIG_DIR}) which is first created. When a port redefines PREFIX (PREFIX != LOCALBASE), this directory needs to be mentioned in pkg-plist. Add the directory to the plist. While here, add identation to nested make conditions and loops to improve readability and simplify one empty .if body. This fixes stage-qa for biology/emboss and cad/brlcad Approved by: portmgr (bapt) Differential Revision: D3815 Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Thu Oct 8 14:48:57 2015 (r398830) +++ head/Mk/bsd.port.mk Thu Oct 8 14:57:29 2015 (r398831) @@ -3626,33 +3626,38 @@ install-mtree: .if !target(install-ldconfig-file) install-ldconfig-file: -.if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) -.if defined(USE_LDCONFIG) -.if defined(USE_LINUX_PREFIX) -.else -.if ${USE_LDCONFIG} != "${LOCALBASE}/lib" && !defined(INSTALL_AS_USER) +. if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) +. if defined(USE_LDCONFIG) +. if !defined(USE_LINUX_PREFIX) +. if ${USE_LDCONFIG} != "${LOCALBASE}/lib" && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing ldconfig configuration file" -.if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} +. if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR} -.endif +. endif @${ECHO_CMD} ${USE_LDCONFIG} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} >> ${TMPPLIST} -.endif -.endif -.endif -.if defined(USE_LDCONFIG32) -.if !defined(INSTALL_AS_USER) +. if ${PREFIX} != ${LOCALBASE} + @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG_DIR}" >> ${TMPPLIST} +. endif +. endif +. endif +. endif +. if defined(USE_LDCONFIG32) +. if !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing 32-bit ldconfig configuration file" -.if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} +. if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR} -.endif +. endif @${ECHO_CMD} ${USE_LDCONFIG32} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} >> ${TMPPLIST} -.endif -.endif -.endif +. if ${PREFIX} != ${LOCALBASE} + @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG32_DIR}" >> ${TMPPLIST} +. endif +. endif +. endif +. endif .endif .if !target(create-users-groups) From owner-svn-ports-head@freebsd.org Thu Oct 8 15:11: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 95BEA9D2C0A; Thu, 8 Oct 2015 15:11:37 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C57B1C8; Thu, 8 Oct 2015 15:11:37 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98FBa67091787; Thu, 8 Oct 2015 15:11:36 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98FBSCO091709; Thu, 8 Oct 2015 15:11:28 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510081511.t98FBSCO091709@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 8 Oct 2015 15:11:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398832 - in head: archivers/peazip audio/aften audio/festival audio/libcanberra audio/pytone audio/spiralloops cad/gdt/files cad/kicad-devel comms/predict/files databases/libgda5 datab... 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: Thu, 08 Oct 2015 15:11:37 -0000 Author: olgeni Date: Thu Oct 8 15:11:28 2015 New Revision: 398832 URL: https://svnweb.freebsd.org/changeset/ports/398832 Log: Remove trailing whitespace from Makefiles, A-L. Modified: head/archivers/peazip/Makefile head/audio/aften/Makefile head/audio/festival/Makefile head/audio/libcanberra/Makefile head/audio/pytone/Makefile head/audio/spiralloops/Makefile head/cad/gdt/files/Makefile head/cad/kicad-devel/Makefile head/comms/predict/files/Makefile head/databases/libgda5/Makefile head/databases/mariadb-client/Makefile head/databases/mysql51-server/Makefile head/databases/mysql55-server/Makefile head/databases/mysql56-server/Makefile head/databases/ocaml-dbm/Makefile head/databases/pgpool-II-22/Makefile head/databases/pgpool-II-23/Makefile head/databases/pgpool-II-30/Makefile head/databases/pgpool-II/Makefile head/databases/postgresql91-docs/Makefile head/devel/anjuta-extras/Makefile head/devel/boehm-gc-redirect/Makefile head/devel/cil/Makefile head/devel/elixir-estree/Makefile head/devel/gettext-tools/Makefile head/devel/hs-hint/Makefile head/devel/iniparser/Makefile head/devel/jgoodies-common/Makefile head/devel/libclc/Makefile head/devel/libdlmalloc/Makefile head/devel/libdlmalloc/files/Makefile head/devel/nana/Makefile head/devel/orc/Makefile head/devel/p5-Module-Install-TestBase/Makefile head/devel/pecl-parsekit/Makefile head/devel/py-jsonpatch/Makefile head/devel/pygobject3-common/Makefile head/devel/rubygem-georuby/Makefile head/devel/rubygem-rbtrace/Makefile head/devel/tclcheck/Makefile head/editors/textroom/Makefile head/emulators/loemu/Makefile head/emulators/rtc/files/Makefile head/games/crafty-open-enormous/Makefile head/games/gigalomania/Makefile head/games/gnome-sudoku/Makefile head/games/ishido/Makefile head/games/robotfindskitten/Makefile head/games/sampsvr/Makefile head/german/unix-connect/Makefile head/graphics/argyllcms/Makefile head/graphics/digikam-kde4-doc/Makefile head/graphics/fyre/Makefile head/graphics/goocanvas/Makefile head/graphics/ocaml-images/Makefile head/graphics/p5-Image-Scale/Makefile head/graphics/py-graph-dot/Makefile head/graphics/ristretto/Makefile head/irc/scrollz/Makefile head/japanese/cdrom2/files/Makefile head/japanese/font-jisx0213/files/Makefile head/japanese/scim-honoka-plugin-romkan/Makefile head/japanese/scim-honoka-plugin-wnn/Makefile head/japanese/today/files/Makefile head/java/java-cup/Makefile head/java/java-subversion/Makefile head/lang/clover/Makefile (contents, props changed) head/lang/lua-ada/Makefile head/lang/perl5-devel/Makefile head/lang/perl5.16/Makefile head/lang/perl5.18/Makefile head/lang/perl5.20/Makefile head/lang/perl5.22/Makefile head/lang/php55/Makefile head/lang/tcl-manual/Makefile Modified: head/archivers/peazip/Makefile ============================================================================== --- head/archivers/peazip/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/archivers/peazip/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -109,7 +109,7 @@ do-install: ${INSTALL_PROGRAM} peazip ${STAGEDIR}${DATADIR} @cd ${WRKSRC}/FreeDesktop_integration && \ ${INSTALL_DATA} peazip.desktop ${STAGEDIR}${DESKTOPDIR} && \ - ${INSTALL_DATA} peazip.png ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${INSTALL_DATA} peazip.png ${STAGEDIR}${PREFIX}/share/pixmaps/ ${INSTALL_SCRIPT} ${WRKDIR}/pea ${WRKDIR}/pealauncher ${WRKDIR}/peazip ${STAGEDIR}${PREFIX}/bin/ .include Modified: head/audio/aften/Makefile ============================================================================== --- head/audio/aften/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/audio/aften/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -12,7 +12,7 @@ COMMENT= ATSC A/52 audio encoder USES= tar:bzip2 cmake:outsource OPTIONS_DEFINE= SHARED_LIB CXX_BINDINGS DOUBLE -OPTIONS_DEFAULT= +OPTIONS_DEFAULT= SHARED_LIB_DESC= Build with shared library CXX_BINDINGS_DESC= Build with C++ bindings Modified: head/audio/festival/Makefile ============================================================================== --- head/audio/festival/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/audio/festival/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -30,7 +30,7 @@ OPTIONS_DEFAULT=NAS ESD ESD_DESC= ${ESOUND_DESC} DIST_SUBDIR= festival - + CXXFLAGS+= -DFTLIBDIR=${LOCALBASE}/share/festival/lib CONFIGURE_WRKSRC= ${WRKDIR}/festival USES= gmake Modified: head/audio/libcanberra/Makefile ============================================================================== --- head/audio/libcanberra/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/audio/libcanberra/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -19,7 +19,7 @@ LIB_DEPENDS= libvorbisfile.so:${PORTSDIR libltdl.so:${PORTSDIR}/devel/libltdl USES= gmake libtool pathfix pkgconfig tar:xz -USE_GNOME= gnomeprefix gtk20 +USE_GNOME= gnomeprefix gtk20 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-lynx --disable-tdb --disable-alsa Modified: head/audio/pytone/Makefile ============================================================================== --- head/audio/pytone/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/audio/pytone/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -17,7 +17,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_PKGNAMEPREFIX}mutagen>0:${PORTSDIR}/audio/py-mutagen - + USES= ncurses python:2 USE_PYTHON= autoplist distutils Modified: head/audio/spiralloops/Makefile ============================================================================== --- head/audio/spiralloops/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/audio/spiralloops/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -16,7 +16,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libfltk.so:${PORTSDIR}/x11-toolkits/fltk GNU_CONFIGURE= yes -MAKE_ENV= PTHREAD_LIBS="-lpthread" +MAKE_ENV= PTHREAD_LIBS="-lpthread" WRKSRC= ${WRKDIR}/${DISTNAME} PLIST_FILES= bin/SpiralLoops Modified: head/cad/gdt/files/Makefile ============================================================================== --- head/cad/gdt/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/cad/gdt/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -24,7 +24,7 @@ OBJS.${P}= ${SRCS.${P}:N*.h:R:S,$,.o,g} SRCS.gdt2gds= sRemoveWhiteSpace.C sRemoveTrailingZeros.C \ get_field.c stoupper.c sfind.C match_string.C \ - sRemoveSpaces.C mystrncpy.C gdsStream.C gdt2gds.C + sRemoveSpaces.C mystrncpy.C gdsStream.C gdt2gds.C BSD_INSTALL_PROGRAM?= install -s -m 555 Modified: head/cad/kicad-devel/Makefile ============================================================================== --- head/cad/kicad-devel/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/cad/kicad-devel/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -39,7 +39,7 @@ EXTRAS2RM= linux-non_unicode linux wings contrib_makefiles.txt running_kicad_under_W98.txt USES= desktop-file-utils shared-mime-info compiler:c++11-lib tar:bzip2 cmake \ gettext python - + CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_BUILD_TYPE="Debug" \ Modified: head/comms/predict/files/Makefile ============================================================================== --- head/comms/predict/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/comms/predict/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -20,7 +20,7 @@ LIBS = ${LDFLAGS} -pthread -lm -lncurses predict: predict.c predict.h ${CC} ${CFLAGS} -o predict predict.c ${LIBS} -vocalizer/vocalizer: vocalizer/vocalizer.c vocalizer/vocalizer.h +vocalizer/vocalizer: vocalizer/vocalizer.c vocalizer/vocalizer.h ${CC} ${CFLAGS} -o vocalizer/vocalizer vocalizer/vocalizer.c ${LIBS} clean: Modified: head/databases/libgda5/Makefile ============================================================================== --- head/databases/libgda5/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/libgda5/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -122,7 +122,7 @@ post-patch: .if ${LIBGDA5_SLAVE} == jdbc pre-configure: @cd ${WRKSRC} && ${LOCALBASE}/bin/javac getsp.java -.endif +.endif pre-build: .if ${LIBGDA5_SLAVE}==postgresql Modified: head/databases/mariadb-client/Makefile ============================================================================== --- head/databases/mariadb-client/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/mariadb-client/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -19,7 +19,7 @@ THREADSAFE_DESC= Build thread-safe clien CONFLICTS= mariadb5[4-9]-client-* \ mariadb1[0-9][0-9]-client-* \ mysql*-client-* \ - percona*-client-* + percona*-client-* PATCHDIR= ${.CURDIR}/files PLIST= ${.CURDIR}/pkg-plist Modified: head/databases/mysql51-server/Makefile ============================================================================== --- head/databases/mysql51-server/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/mysql51-server/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -162,7 +162,7 @@ post-patch: .if defined(CLIENT_ONLY) CONFLICTS_INSTALL= mysql5[02-9]-client-* \ mariadb*-client-* \ - percona*-client-* + percona*-client-* MAN1= mysql_config.1 mysql_upgrade.1 mysql.1 mysqladmin.1 \ mysqlbinlog.1 mysqlbug.1 mysqlcheck.1 \ Modified: head/databases/mysql55-server/Makefile ============================================================================== --- head/databases/mysql55-server/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/mysql55-server/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -86,8 +86,8 @@ post-patch: .include -.if ${ARCH} == "armv6" +.if ${ARCH} == "armv6" EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config.h.cmake .endif - + .include Modified: head/databases/mysql56-server/Makefile ============================================================================== --- head/databases/mysql56-server/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/mysql56-server/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -72,7 +72,7 @@ post-patch: .include -.if ${ARCH} == "armv6" +.if ${ARCH} == "armv6" EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config.h.cmake .endif Modified: head/databases/ocaml-dbm/Makefile ============================================================================== --- head/databases/ocaml-dbm/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/ocaml-dbm/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -24,7 +24,7 @@ MAKE_ENV+= DESTDIR="${STAGEDIR}" pre-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm \ ${STAGEDIR}${PREFIX}/lib/ocaml/stublibs - + post-install: ${INSTALL_DATA} ${WRKSRC}/META \ ${STAGEDIR}${PREFIX}/lib/ocaml/site-lib/dbm Modified: head/databases/pgpool-II-22/Makefile ============================================================================== --- head/databases/pgpool-II-22/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/pgpool-II-22/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -18,7 +18,7 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip -CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-23-* pgpool-II-30-* +CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-23-* pgpool-II-30-* USE_RC_SUBR= pgpool PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp Modified: head/databases/pgpool-II-23/Makefile ============================================================================== --- head/databases/pgpool-II-23/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/pgpool-II-23/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -18,7 +18,7 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip -CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-30-* +CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-30-* USE_RC_SUBR= pgpool PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp Modified: head/databases/pgpool-II-30/Makefile ============================================================================== --- head/databases/pgpool-II-30/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/pgpool-II-30/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -18,7 +18,7 @@ INSTALL_TARGET= install-strip USES= gmake pgsql:9.2- libtool USE_LDCONFIG= yes -CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-23-* +CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-23-* USE_RC_SUBR= pgpool PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp Modified: head/databases/pgpool-II/Makefile ============================================================================== --- head/databases/pgpool-II/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/pgpool-II/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -20,7 +20,7 @@ USE_LDCONFIG= yes USE_OPENSSL= yes CONFIGURE_ARGS= --with-openssl -CONFLICTS= pgpool-3.* pgpool-II-22-* pgpool-II-23-* pgpool-II-23-* +CONFLICTS= pgpool-3.* pgpool-II-22-* pgpool-II-23-* pgpool-II-23-* USE_RC_SUBR= pgpool PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp Modified: head/databases/postgresql91-docs/Makefile ============================================================================== --- head/databases/postgresql91-docs/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/databases/postgresql91-docs/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -41,6 +41,6 @@ post-install: @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type f) >> ${TMPPLIST} @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type d) | ${SORT} -r | \ ${SED} 's,.*,@unexec rmdir %D/& 2>/dev/null || true,' >>${TMPPLIST} - + .include "${MASTERDIR}/Makefile" Modified: head/devel/anjuta-extras/Makefile ============================================================================== --- head/devel/anjuta-extras/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/anjuta-extras/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -11,7 +11,7 @@ COMMENT= Extra anjuta 3 plugins BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool LIB_DEPENDS= libanjuta-3.so:${PORTSDIR}/devel/anjuta - + USES= gettext gmake libtool pkgconfig tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes Modified: head/devel/boehm-gc-redirect/Makefile ============================================================================== --- head/devel/boehm-gc-redirect/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/boehm-gc-redirect/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -7,7 +7,7 @@ COMMENT= Garbage collection and memory l LICENSE= MIT -MASTERDIR= ${.CURDIR}/../boehm-gc +MASTERDIR= ${.CURDIR}/../boehm-gc DESCR= ${.CURDIR}/pkg-descr GC_VARIANT= redirect Modified: head/devel/cil/Makefile ============================================================================== --- head/devel/cil/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/cil/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -65,7 +65,7 @@ post-patch: ${WRKSRC}/lib/App/Cilly/TempFile.pm @${REINPLACE_CMD} '/MACHDEPCC/ s|gcc|${CC}|' ${WRKSRC}/Makefile.in - + pre-install: @${STRIP_CMD} ${WRKSRC}/bin/cilly.native Modified: head/devel/elixir-estree/Makefile ============================================================================== --- head/devel/elixir-estree/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/elixir-estree/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -6,7 +6,7 @@ DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= olgeni@FreeBSD.org -COMMENT= JavaScript AST to JavaScript code generator in Elixir +COMMENT= JavaScript AST to JavaScript code generator in Elixir LICENSE= MIT Modified: head/devel/gettext-tools/Makefile ============================================================================== --- head/devel/gettext-tools/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/gettext-tools/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -10,7 +10,7 @@ PORTREVISION= 0 COMMENT= GNU gettext development and translation tools LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/../COPYING +LICENSE_FILE= ${WRKSRC}/../COPYING .include "${.CURDIR}/../gettext/Makefile.common" Modified: head/devel/hs-hint/Makefile ============================================================================== --- head/devel/hs-hint/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/hs-hint/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -14,7 +14,7 @@ USE_CABAL= exceptions extensible-excepti mtl random utf8-string INSTALL_PORTEXAMPLES= cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} - + INSTALL_PORTDATA= ${INSTALL_DATA} \ ${WRKSRC}/AUTHORS \ ${WRKSRC}/README \ Modified: head/devel/iniparser/Makefile ============================================================================== --- head/devel/iniparser/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/iniparser/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -13,7 +13,7 @@ LICENSE= MIT USE_LDCONFIG= yes MAKE_ARGS= CC="${CC}" -ALL_TARGET= +ALL_TARGET= WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= include/dictionary.h include/iniparser.h lib/libiniparser.a \ Modified: head/devel/jgoodies-common/Makefile ============================================================================== --- head/devel/jgoodies-common/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/jgoodies-common/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -57,7 +57,7 @@ do-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} README.html RELEASE-NOTES.txt \ - ${STAGEDIR}${DOCSDIR}) + ${STAGEDIR}${DOCSDIR}) (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) (cd ${WRKSRC}/build/docs && ${COPYTREE_SHARE} api \ ${STAGEDIR}${DOCSDIR}/docs) Modified: head/devel/libclc/Makefile ============================================================================== --- head/devel/libclc/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/libclc/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -21,7 +21,7 @@ MAKE_ENV= MAKE=${GMAKE} DESTDIR=${STAGED LLVMVER= 36 -ALL_TARGET= +ALL_TARGET= BROKEN_FreeBSD_9= missing header Modified: head/devel/libdlmalloc/Makefile ============================================================================== --- head/devel/libdlmalloc/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/libdlmalloc/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -4,7 +4,7 @@ PORTNAME= dlmalloc PORTVERSION= 2.8.6 CATEGORIES= devel -MASTER_SITES= ftp://gee.cs.oswego.edu/pub/misc/ +MASTER_SITES= ftp://gee.cs.oswego.edu/pub/misc/ DISTFILES= malloc-${PORTVERSION}.c malloc-${PORTVERSION}.h MAINTAINER= roberto@FreeBSD.org Modified: head/devel/libdlmalloc/files/Makefile ============================================================================== --- head/devel/libdlmalloc/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/libdlmalloc/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -4,8 +4,8 @@ # # Renamed dlmalloc # -# A version of malloc/free/realloc written by Doug Lea and released to the -# public domain. +# A version of malloc/free/realloc written by Doug Lea and released to the +# public domain. # # preliminary VERSION 2.8.4 # @@ -49,8 +49,8 @@ $(LIBMALLOC): $(OBJS) -$(RANLIB) $(LIBMALLOC) $(LIBSMALLOC): $(SOBJS) - rm -f $(LIBSMALLOC) - ld -Bshareable -soname $(LIBSMALLOC) -o $(LIBSMALLOC) $(SOBJS) + rm -f $(LIBSMALLOC) + ld -Bshareable -soname $(LIBSMALLOC) -o $(LIBSMALLOC) $(SOBJS) clean: -rm -f *.o \#* *~ *.core a.out gmon.out mon.out onefile.c *.sL prof.out Modified: head/devel/nana/Makefile ============================================================================== --- head/devel/nana/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/nana/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -5,7 +5,7 @@ PORTNAME= nana PORTVERSION= 2.5 CATEGORIES= devel MASTER_SITES= http://download.savannah.gnu.org/releases/nana/ \ - ftp://download.savannah.gnu.org/releases/nana/ + ftp://download.savannah.gnu.org/releases/nana/ MAINTAINER= pjm@gnu.org COMMENT= Support for assertion checking and logging using GNU C and GDB Modified: head/devel/orc/Makefile ============================================================================== --- head/devel/orc/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/orc/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -44,7 +44,7 @@ post-patch: @${REINPLACE_CMD} \ -E -e '/LIBS/s/-lrt(\ )*//; /LIBRT/s/-lrt//' \ -e 's|pkgconfigdir=.*|pkgconfigdir=\"\\$$(prefix)/libdata/pkgconfig\"|g' \ - ${WRKSRC}/configure + ${WRKSRC}/configure post-install: .if ${PORT_OPTIONS:MEXAMPLES} Modified: head/devel/p5-Module-Install-TestBase/Makefile ============================================================================== --- head/devel/p5-Module-Install-TestBase/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/p5-Module-Install-TestBase/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -20,6 +20,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -NO_ARCH= +NO_ARCH= .include Modified: head/devel/pecl-parsekit/Makefile ============================================================================== --- head/devel/pecl-parsekit/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/pecl-parsekit/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -10,7 +10,7 @@ EXTRACT_SUFX= .tgz DIST_SUBDIR= PECL MAINTAINER= dereckson@gmail.com -COMMENT= Extension for opcodes runtime analysis +COMMENT= Extension for opcodes runtime analysis LICENSE= PHP301 Modified: head/devel/py-jsonpatch/Makefile ============================================================================== --- head/devel/py-jsonpatch/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/py-jsonpatch/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -18,6 +18,6 @@ USE_PYTHON= autoplist distutils regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} tests.py - @cd ${WRKSRC} && ${PYTHON_CMD} ext_tests.py + @cd ${WRKSRC} && ${PYTHON_CMD} ext_tests.py .include Modified: head/devel/pygobject3-common/Makefile ============================================================================== --- head/devel/pygobject3-common/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/pygobject3-common/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -47,7 +47,7 @@ do-install: ${STAGEDIR}${PREFIX}/include/pygobject-3.0/pygobject.h ${INSTALL_DATA} ${WRKSRC}/pygobject-3.0.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/pygobject-3.0.pc -.else +.else PORTSCOUT= ignore:1 USE_GNOME+= glib20 introspection Modified: head/devel/rubygem-georuby/Makefile ============================================================================== --- head/devel/rubygem-georuby/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/rubygem-georuby/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -6,7 +6,7 @@ CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org -COMMENT= Holder for data returned from PostGIS and the Spatial Extensions of MySql +COMMENT= Holder for data returned from PostGIS and the Spatial Extensions of MySql LICENSE= MIT Modified: head/devel/rubygem-rbtrace/Makefile ============================================================================== --- head/devel/rubygem-rbtrace/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/rubygem-rbtrace/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -22,5 +22,5 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rbtrace \ %%GEM_LIB_DIR%%/ext/src/msgpack-0.5.7/src/.libs/libmsgpack.la \ %%GEM_LIB_DIR%%/ext/src/msgpack-0.5.7/src/.libs/libmsgpackc.la - + .include Modified: head/devel/tclcheck/Makefile ============================================================================== --- head/devel/tclcheck/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/devel/tclcheck/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -12,7 +12,7 @@ MAINTAINER= tcltk@FreeBSD.org COMMENT= Program to check the nesting of parenthesis in tcl scripts LICENSE_FILE= ${WRKSRC}/COPYRIGHT -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept PLIST_FILES= bin/tclCheck \ man/man1/tclCheck.1.gz Modified: head/editors/textroom/Makefile ============================================================================== --- head/editors/textroom/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/editors/textroom/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -23,7 +23,7 @@ USE_QT4= moc_build rcc_build uic_build \ corelib gui opengl qt3support svg xml post-patch: -.for i in getaword.cpp optionsdialog.cpp textroom.cpp +.for i in getaword.cpp optionsdialog.cpp textroom.cpp @${REINPLACE_CMD} -e \ 's|/usr/share|${PREFIX}/share|' ${WRKSRC}/application/src/${i} .endfor Modified: head/emulators/loemu/Makefile ============================================================================== --- head/emulators/loemu/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/emulators/loemu/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -42,7 +42,7 @@ MAMENAME= mame post-patch: @${REINPLACE_CMD} -i '' -e 's|/usr/bin/env python|${PYTHON_CMD}|' \ ${WRKSRC}/scripts/loemu \ - ${WRKSRC}/scripts/loemu-builder + ${WRKSRC}/scripts/loemu-builder @${REINPLACE_CMD} -i '' -e 's|sdlmame|${MAMENAME}|' \ ${WRKSRC}/config/sdlmame.conf Modified: head/emulators/rtc/files/Makefile ============================================================================== --- head/emulators/rtc/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/emulators/rtc/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -47,7 +47,7 @@ all: vnode_if.h #afterinstall: device device: - rm -f /dev/${DEVNAME} + rm -f /dev/${DEVNAME} mknod /dev/${DEVNAME} c ${CDEV_MAJOR} 0 .include Modified: head/games/crafty-open-enormous/Makefile ============================================================================== --- head/games/crafty-open-enormous/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/crafty-open-enormous/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -18,7 +18,7 @@ RUN_DEPENDS= crafty:${PORTSDIR}/games/cr USES= zip NO_WRKSUBDIR= yes NO_PACKAGE= Package is way too big -LEGAL_PACKAGE= +LEGAL_PACKAGE= CONFLICTS= crafty-open-large-* crafty-open-medium-* crafty-open-default-* do-build: Modified: head/games/gigalomania/Makefile ============================================================================== --- head/games/gigalomania/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/gigalomania/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -5,7 +5,7 @@ PORTNAME= gigalomania PORTVERSION= 0.27 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= https://launchpadlibrarian.net/180606846/ +MASTER_SITES= https://launchpadlibrarian.net/180606846/ DISTNAME= ${PORTNAME}src MAINTAINER= pawel@FreeBSD.org @@ -27,7 +27,7 @@ post-patch: @${FIND} ${WRKSRC} -exec ${GREP} -q "__linux" {} \; \ -exec ${REINPLACE_CMD} 's|__linux|__${OPSYS}__|' {} \; @${REINPLACE_CMD} 's|/opt/gigalomania/||g' \ - ${WRKSRC}/gigalomania.desktop + ${WRKSRC}/gigalomania.desktop @${REINPLACE_CMD} 's|/usr/share|${LOCALBASE}/share|g' \ ${WRKSRC}/game.cpp \ ${WRKSRC}/gamestate.cpp Modified: head/games/gnome-sudoku/Makefile ============================================================================== --- head/games/gnome-sudoku/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/gnome-sudoku/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -13,7 +13,7 @@ COMMENT= Sudoku game for gnome BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool LIB_DEPENDS= libgee-0.8.so:${PORTSDIR}/devel/libgee \ libqqwing.so:${PORTSDIR}/games/qqwing \ - libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib + libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib PORTSCOUT= limitw:1,even Modified: head/games/ishido/Makefile ============================================================================== --- head/games/ishido/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/ishido/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -17,5 +17,5 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/ishido.6 ${STAGEDIR}${PREFIX}/man/man6 ${INSTALL} ${COPY} ${STRIP} ${WRKSRC}/ishido ${STAGEDIR}${PREFIX}/bin ${INSTALL} ${COPY} ${WRKSRC}/ishido_scores ${STAGEDIR}${PREFIX}/share/misc/ishido_scores - + .include Modified: head/games/robotfindskitten/Makefile ============================================================================== --- head/games/robotfindskitten/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/robotfindskitten/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -19,7 +19,7 @@ GNU_CONFIGURE= YES OPTIONS_DEFINE= EXTRANKI MEGAHYPERDEATH EXTRANKI_DESC= Install additional Non Kitten Items -MEGAHYPERDEATH_DESC= Add the possibility of MEGA. HYPER. DEATH! +MEGAHYPERDEATH_DESC= Add the possibility of MEGA. HYPER. DEATH! OPTIONS_DEFAULT= EXTRANKI Modified: head/games/sampsvr/Makefile ============================================================================== --- head/games/sampsvr/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/games/sampsvr/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -40,7 +40,7 @@ do-install: ${FIND} ${i} -type f -exec \ ${INSTALL_DATA} "{}" "${STAGEDIR}${DATADIR}/{}" \; ${LN} -sf ${DATADIR}/${i} ${STAGEDIR}${SAMPDIR}/${i} -.endfor +.endfor ${INSTALL_DATA} ${WRKSRC}/server.cfg \ ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.cfg.sample ${LN} -sf ${PREFIX}/etc/${PORTNAME}.cfg ${STAGEDIR}${SAMPDIR}/server.cfg Modified: head/german/unix-connect/Makefile ============================================================================== --- head/german/unix-connect/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/german/unix-connect/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -4,7 +4,7 @@ PORTNAME= unix-connect PORTVERSION= 0.95 CATEGORIES= german comms news mail MASTER_SITES= ftp://ftp.dinoex.org/pub/unix-connect/ \ - SF + SF MAINTAINER= dinoex@FreeBSD.org COMMENT= Unix-Connect - mail+news-gateway for Zconnect (tm) Modified: head/graphics/argyllcms/Makefile ============================================================================== --- head/graphics/argyllcms/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/argyllcms/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -19,7 +19,7 @@ LIB_DEPENDS= libtiff.so:${PORTSDIR}/grap WRKSRC= ${WRKDIR}/Argyll_V${PORTVERSION} USES= compiler:c11 cpe jpeg zip -USE_XORG= x11 xau xdmcp xext xinerama xrandr xscrnsaver xxf86vm +USE_XORG= x11 xau xdmcp xext xinerama xrandr xscrnsaver xxf86vm post-patch: @${REINPLACE_CMD} 's:711:755:g' ${WRKSRC}/Jambase Modified: head/graphics/digikam-kde4-doc/Makefile ============================================================================== --- head/graphics/digikam-kde4-doc/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/digikam-kde4-doc/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -7,7 +7,7 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= Documentation for digiKam, showFoto, and Kipi-plugins -CONFLICTS_INSTALL= digikam-2.* kipi-plugins-2.* +CONFLICTS_INSTALL= digikam-2.* kipi-plugins-2.* WRKSRC= ${WRKDIR}/${DISTNAME}/doc Modified: head/graphics/fyre/Makefile ============================================================================== --- head/graphics/fyre/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/fyre/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -25,7 +25,7 @@ OPENEXR_CONFIGURE_ENABLE= openexr OPENEXR_LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR GNET_DESC= Networking support via GNet -GNET_CONFIGURE_ENABLE= gnet +GNET_CONFIGURE_ENABLE= gnet GNET_LIB_DEPENDS= libgnet-2.0.so:${PORTSDIR}/net/gnet2 .include Modified: head/graphics/goocanvas/Makefile ============================================================================== --- head/graphics/goocanvas/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/goocanvas/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -43,7 +43,7 @@ post-patch: .if ! ${PORT_OPTIONS:MNLS} @${REINPLACE_CMD} -e '/^SUBDIRS/s|po||g' ${WRKSRC}/Makefile.in .endif - + post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgoocanvas.so.* Modified: head/graphics/ocaml-images/Makefile ============================================================================== --- head/graphics/ocaml-images/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/ocaml-images/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -81,7 +81,7 @@ ocaml-findlib: # The consequence is that pkg-plist must be manually supported do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS} + @${MKDIR} ${STAGEDIR}${PREFIX}/${OCAML_LDLIBS} (cd ${WRKSRC} && ${OMAKE} ${OMARGS} install) .include Modified: head/graphics/p5-Image-Scale/Makefile ============================================================================== --- head/graphics/p5-Image-Scale/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/p5-Image-Scale/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -13,7 +13,7 @@ COMMENT= Perl module for fast, high-qual LICENSE= GPLv2 -LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png TEST_DEPENDS= p5-Test-NoWarnings>=0:${PORTSDIR}/devel/p5-Test-NoWarnings USES= jpeg perl5 Modified: head/graphics/py-graph-dot/Makefile ============================================================================== --- head/graphics/py-graph-dot/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/py-graph-dot/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -30,5 +30,5 @@ post-stage: add-plist-post: @${REINPLACE_CMD} -e "/readwrite\/__init__.py/d" ${TMPPLIST} - + .include Modified: head/graphics/ristretto/Makefile ============================================================================== --- head/graphics/ristretto/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/graphics/ristretto/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libexif.so:${PORTSDIR}/graphics/libexif \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ -USES= pkgconfig gettext desktop-file-utils gmake xfce tar:bzip2 +USES= pkgconfig gettext desktop-file-utils gmake xfce tar:bzip2 GNU_CONFIGURE= yes USE_GNOME= gtk20 glib20 intltool intlhack INSTALLS_ICONS= yes Modified: head/irc/scrollz/Makefile ============================================================================== --- head/irc/scrollz/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/irc/scrollz/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -1,6 +1,6 @@ # Created by: Will Andrews # $FreeBSD$ - + PORTNAME= scrollz PORTVERSION= 2.2.3 PORTREVISION= 1 Modified: head/japanese/cdrom2/files/Makefile ============================================================================== --- head/japanese/cdrom2/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/japanese/cdrom2/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -6,7 +6,7 @@ PREFIX?=/usr/local BINDIR=${PREFIX}/bin LIBDIR=${PREFIX}/lib/cdrom2 PROGRAMS=cdrom2 cdgaiji -TBL_FILES=kojien3.tbl ruigo.tbl +TBL_FILES=kojien3.tbl ruigo.tbl all: ${PROGRAMS} @@ -23,7 +23,7 @@ install: /bin/mkdir -p ${DESTDIR}${LIBDIR} for f in ${TBL_FILES} ; do \ ${BSD_INSTALL_DATA} $$f ${DESTDIR}${LIBDIR} ;\ - done + done clean: rm -f ${PROGRAMS} Modified: head/japanese/font-jisx0213/files/Makefile ============================================================================== --- head/japanese/font-jisx0213/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/japanese/font-jisx0213/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -16,7 +16,7 @@ SRCS= K12-1.bdf K12-2.bdf \ TARGETS=${SRCS:S/.bdf/.pcf.gz/} \ ${SRCS:S/.bdf/b.pcf.gz/} \ ${SRCS:S/.bdf/i.pcf.gz/} \ - ${SRCS:S/.bdf/bi.pcf.gz/} + ${SRCS:S/.bdf/bi.pcf.gz/} all: ${TARGETS} Modified: head/japanese/scim-honoka-plugin-romkan/Makefile ============================================================================== --- head/japanese/scim-honoka-plugin-romkan/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/japanese/scim-honoka-plugin-romkan/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -1,4 +1,4 @@ -# Created by: Masashi CHIBA +# Created by: Masashi CHIBA # $FreeBSD$ PORTNAME= scim-honoka-plugin-romkan Modified: head/japanese/scim-honoka-plugin-wnn/Makefile ============================================================================== --- head/japanese/scim-honoka-plugin-wnn/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/japanese/scim-honoka-plugin-wnn/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -1,4 +1,4 @@ -# Created by: Masashi CHIBA +# Created by: Masashi CHIBA # $FreeBSD$ PORTNAME= scim-honoka-plugin-wnn Modified: head/japanese/today/files/Makefile ============================================================================== --- head/japanese/today/files/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/japanese/today/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -8,7 +8,7 @@ CFLAGS += -DTRANS -DMSG_STYLE -DINTERNAL LDLIBS = -lm #-ltermcap HFILES = cdefs.h chu68k.h cmsdos.h cunix.h cwin32.h extern.h - + OBJST1 = birthday.o config.o date.o event.o getfile.o \ getsb.o history.o kansi.o kyureki.o \ kyusei.o list.o machine.o main.o misc.o @@ -34,7 +34,7 @@ install: today calendar dayinfo calendar: $(OBJS_CAL) $(CC) $(OBJS_CAL) $(LDLIBS) -o $@ - + today: $(OBJS_TDY) $(CC) $(OBJS_TDY) $(LDLIBS) -o $@ Modified: head/java/java-cup/Makefile ============================================================================== --- head/java/java-cup/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/java/java-cup/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -6,7 +6,7 @@ PORTVERSION= 11.a PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= http://www2.cs.tum.edu/projects/cup/ \ - http://mirrors.mcdermottroe.com/www2.cs.tum.edu/projects/cup/ + http://mirrors.mcdermottroe.com/www2.cs.tum.edu/projects/cup/ PKGNAMEPREFIX= java- DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-v${PORTVERSION:S|.||}-20050516-sources Modified: head/java/java-subversion/Makefile ============================================================================== --- head/java/java-subversion/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/java/java-subversion/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -35,7 +35,7 @@ CONFIGURE_ARGS+= --enable-javahl \ --without-gnome-keyring \ --without-kwallet \ --with-apxs=no - + MAKE_JOBS_UNSAFE= yes ALL_TARGET= javahl Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/clover/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -26,7 +26,7 @@ ONLY_FOR_ARCHS_REASON= Clover needs a gr MESA_INSTALL_WRKSRC= src/gallium/targets/opencl src/gallium/targets/pipe-loader .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001514 && ${ARCH} == powerpc64 -IGNORE= Clover is only support on powerpc64 in FreeBSD 10.2 +IGNORE= Clover is only support on powerpc64 in FreeBSD 10.2 .elif ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 && ${ARCH} != powerpc64 IGNORE= Clover is only supported on FreeBSD 10.1 and newer .endif Modified: head/lang/lua-ada/Makefile ============================================================================== --- head/lang/lua-ada/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/lua-ada/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -57,7 +57,7 @@ do-install: ${STAGEDIR}${PREFIX}/include/lua-ada .if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/example1/bin \ - ${STAGEDIR}${EXAMPLESDIR}/example2/bin + ${STAGEDIR}${EXAMPLESDIR}/example2/bin ${INSTALL_DATA} ${EXDIRPREFIX}1/example1.lua \ ${EXDIRPREFIX}1/src/main.adb \ ${STAGEDIR}${EXAMPLESDIR}/example1 Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/perl5-devel/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -273,7 +273,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/machine ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only - # staged, so, use the one in WRKDIR + # staged, so, use the one in WRKDIR (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph${BINSUFFIX} \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) Modified: head/lang/perl5.16/Makefile ============================================================================== --- head/lang/perl5.16/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/perl5.16/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -265,7 +265,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/machine ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only - # staged, so, use the one in WRKDIR + # staged, so, use the one in WRKDIR (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph${BINSUFFIX} \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) Modified: head/lang/perl5.18/Makefile ============================================================================== --- head/lang/perl5.18/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/perl5.18/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -236,7 +236,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/machine ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only - # staged, so, use the one in WRKDIR + # staged, so, use the one in WRKDIR (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph${BINSUFFIX} \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) Modified: head/lang/perl5.20/Makefile ============================================================================== --- head/lang/perl5.20/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/perl5.20/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -230,7 +230,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/machine ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only - # staged, so, use the one in WRKDIR + # staged, so, use the one in WRKDIR (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph${BINSUFFIX} \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) Modified: head/lang/perl5.22/Makefile ============================================================================== --- head/lang/perl5.22/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/perl5.22/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -228,7 +228,7 @@ post-install: ${MKDIR} ${STAGEDIR}${SITE_ARCH}/machine ${MKDIR} ${STAGEDIR}${SITE_ARCH}/sys # h2ph needs perl, but perl is not installed, it's only - # staged, so, use the one in WRKDIR + # staged, so, use the one in WRKDIR (cd /usr/include && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \ ${WRKSRC}/perl -I ${WRKSRC}/lib ${STAGEDIR}${PREFIX}/bin/h2ph${BINSUFFIX} \ -d ${STAGEDIR}${SITE_ARCH} *.h machine/*.h sys/*.h >/dev/null) Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/php55/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -89,7 +89,7 @@ CONFIGURE_ARGS+=--enable-fpm \ .if defined(OPTIONS_FILE_SET) && ${OPTIONS_FILE_SET:MAPACHE} IGNORE= doesn't install the Apache module anymore:\ - update your OPTIONS and build www/mod_php55 port instead + update your OPTIONS and build www/mod_php55 port instead .endif .if defined(PKGNAMEPREFIX) Modified: head/lang/tcl-manual/Makefile ============================================================================== --- head/lang/tcl-manual/Makefile Thu Oct 8 14:57:29 2015 (r398831) +++ head/lang/tcl-manual/Makefile Thu Oct 8 15:11:28 2015 (r398832) @@ -5,7 +5,7 @@ PORTNAME= tcl-manual PORTVERSION= 20131001 CATEGORIES= lang MASTER_SITES= SF/tcl/Tcl/ -DISTFILES= +DISTFILES= MAINTAINER= edwin@mavetju.org COMMENT= Documentation for TCL (Tool Command Language) From owner-svn-ports-head@freebsd.org Thu Oct 8 15:12: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 87EAB9D2CAF; Thu, 8 Oct 2015 15:12:32 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23B8C35C; Thu, 8 Oct 2015 15:12:32 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98FCVwA095645; Thu, 8 Oct 2015 15:12:31 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98FCMC9095559; Thu, 8 Oct 2015 15:12:22 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510081512.t98FCMC9095559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 8 Oct 2015 15:12:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398833 - in head: mail/balsa mail/cyrus-imapd23 mail/cyrus-imapd24 mail/cyrus-imapd25 mail/postfix-current mail/sendmail math/clfft math/gri math/scalapack/files misc/delay misc/elscre... 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: Thu, 08 Oct 2015 15:12:32 -0000 Author: olgeni Date: Thu Oct 8 15:12:22 2015 New Revision: 398833 URL: https://svnweb.freebsd.org/changeset/ports/398833 Log: Remove trailing whitespace from Makefiles, M-X. Modified: head/mail/balsa/Makefile head/mail/cyrus-imapd23/Makefile head/mail/cyrus-imapd24/Makefile head/mail/cyrus-imapd25/Makefile head/mail/postfix-current/Makefile head/mail/sendmail/Makefile head/math/clfft/Makefile (contents, props changed) head/math/gri/Makefile head/math/scalapack/files/Makefile head/misc/delay/Makefile head/misc/elscreen/Makefile head/misc/mc-light/Makefile head/misc/tkregexp/Makefile head/multimedia/audiopreview/Makefile head/multimedia/gstreamer-plugins/Makefile head/multimedia/libtheora/Makefile head/multimedia/linux-f10-libtheora/Makefile head/multimedia/smtube/Makefile head/net-im/cicquin/Makefile head/net-im/py-slackclient/Makefile head/net-mgmt/fetchconfig/Makefile head/net-mgmt/ndpmon/Makefile head/net-mgmt/p5-Net-NSCA-Client/Makefile head/net-mgmt/seafile/Makefile head/net-mgmt/snmptt/Makefile head/net-mgmt/xymon-server/files/Makefile head/net-p2p/dclib/Makefile head/net-p2p/gnunet-gtk/Makefile head/net-p2p/transmission-cli/Makefile head/net/bwi-firmware-kmod/Makefile head/net/bwn-firmware-kmod/Makefile head/net/geoclue/Makefile head/net/geocode-glib/Makefile head/net/grilo-plugins/Makefile head/net/icmpinfo/Makefile head/net/libproxy-python/Makefile head/net/liferea/Makefile head/net/nepenthes/Makefile head/net/samba4/Makefile head/net/samba41/Makefile head/net/samba42/Makefile head/net/sendsms/Makefile head/news/py-yenc/Makefile head/ports-mgmt/genpatch/Makefile head/ports-mgmt/managepkg/Makefile head/print/foomatic-db/Makefile head/print/foxitreader/Makefile head/science/jmol/Makefile head/science/liboglappth/Makefile head/security/authforce/Makefile head/security/bsmtrace/Makefile head/security/fwipe/Makefile head/security/pear-Horde_Secret/Makefile head/security/py-libnacl/Makefile head/security/sst/files/Makefile head/shells/v7sh/files/Makefile head/sysutils/bareos-server/Makefile head/sysutils/endian/Makefile head/sysutils/gnome-control-center/Makefile head/sysutils/livecd/Makefile head/sysutils/logwatch/files/Makefile head/sysutils/syslog-ng-devel/Makefile head/sysutils/u-boot-duovero/Makefile head/textproc/apertium/Makefile head/textproc/ecromedos/Makefile head/textproc/libucl/Makefile head/textproc/rubygem-nokogiri14/Makefile head/www/bareos-webui/Makefile head/www/libsocialweb/Makefile head/www/mod_tsa/Makefile head/www/nginx-devel/Makefile head/www/nginx/Makefile head/www/p5-Apache-Session-PHP/Makefile head/www/py-django14/Makefile head/www/seahub/Makefile head/www/webkit-gtk3/Makefile head/www/webkit2-gtk3/Makefile head/www/xpi-fasterfox/Makefile head/x11-fm/nemo/Makefile head/x11-fm/ultracopier/Makefile head/x11/3ddesktop/Makefile head/x11/gnome-menus/Makefile head/x11/xcb-util-cursor/Makefile Modified: head/mail/balsa/Makefile ============================================================================== --- head/mail/balsa/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/balsa/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -20,7 +20,7 @@ LIB_DEPENDS= libpcre.so:${PORTSDIR}/deve libcanberra-gtk3.so:${PORTSDIR}/audio/libcanberra-gtk3 RUN_DEPENDS= gnome-keyring:${PORTSDIR}/security/gnome-keyring -# Depends on gtkhtml4 (which is being abandonend). When our webkitgtk3 +# Depends on gtkhtml4 (which is being abandonend). When our webkitgtk3 # in ports gets updated to > 1.10.x, balsa should depend on it. USES= desktop-file-utils gettext gmake iconv pathfix \ perl5 pkgconfig tar:bzip2 Modified: head/mail/cyrus-imapd23/Makefile ============================================================================== --- head/mail/cyrus-imapd23/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/cyrus-imapd23/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -111,7 +111,7 @@ PORTEXAMPLES= * SUB_FILES= pkg-message pkg-install pkg-deinstall cyrus-imapd-man.conf -SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} +SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} CYRUS_USER?= cyrus CYRUS_GROUP?= cyrus Modified: head/mail/cyrus-imapd24/Makefile ============================================================================== --- head/mail/cyrus-imapd24/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/cyrus-imapd24/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -123,7 +123,7 @@ PORTEXAMPLES= * SUB_FILES= pkg-message pkg-install pkg-deinstall cyrus-imapd-man.conf -SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} +SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} CYRUS_USER?= cyrus CYRUS_GROUP?= cyrus Modified: head/mail/cyrus-imapd25/Makefile ============================================================================== --- head/mail/cyrus-imapd25/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/cyrus-imapd25/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -120,7 +120,7 @@ PORTEXAMPLES= * SUB_FILES= pkg-message pkg-install pkg-deinstall cyrus-imapd-man.conf -SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} +SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP} CYRUS_USER?= cyrus CYRUS_GROUP?= cyrus Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/postfix-current/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -372,10 +372,10 @@ post-stage: ${MV} ${STAGEDIR}${ETCDIR}/main.cf ${STAGEDIR}${ETCDIR}/main.cf.sample ${MV} ${STAGEDIR}${ETCDIR}/master.cf ${STAGEDIR}${ETCDIR}/master.cf.sample -# == chop dynamicmaps.cf entries into dedicated .cf files +# == chop dynamicmaps.cf entries into dedicated .cf files # for future sub-packages support .for f in ${DYN_EXT} -# adjust dynamicmaps.cf +# adjust dynamicmaps.cf ${GREP} -e "^#" -e "^${f}" ${STAGEDIR}${META_DIRECTORY}/dynamicmaps.cf \ > ${STAGEDIR}${META_DIRECTORY}/dynamicmaps.cf.d/${f}.cf && \ ${SED} -i '' -e '/${f}/d' ${STAGEDIR}${META_DIRECTORY}/dynamicmaps.cf @@ -386,7 +386,7 @@ post-stage: \n$$shlib_directory/postfix-${f}.so:f:root:-:755\ \n$$meta_directory/postfix-files.d/${f}-files:f:root:-:644\ \n$$meta_directory/dynamicmaps.cf.d/${f}.cf:f:root:-:644\n' \ - > ${STAGEDIR}${META_DIRECTORY}/postfix-files.d/${f}-files + > ${STAGEDIR}${META_DIRECTORY}/postfix-files.d/${f}-files .endfor # Fix compressed man pages and strip executables Modified: head/mail/sendmail/Makefile ============================================================================== --- head/mail/sendmail/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/mail/sendmail/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -193,7 +193,7 @@ do-configure: 'APPENDDEF(`confENVDEF'\'', `-DLA_TYPE=LA_ZERO'\'')' \ >> ${WCONF}/site.config.m4 .endif -.if ${PORT_OPTIONS:MMILTER} && ${PORT_OPTIONS:MMILTER_POOL} +.if ${PORT_OPTIONS:MMILTER} && ${PORT_OPTIONS:MMILTER_POOL} ${ECHO_CMD} \ 'APPENDDEF(`conf_libmilter_ENVDEF'\'', `-DSM_CONF_POLL=1'\'')' \ >> ${WCONF}/site.config.m4 Modified: head/math/clfft/Makefile ============================================================================== --- head/math/clfft/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/math/clfft/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= math MAINTAINER= dieterich@ogolem.org -COMMENT= Software library containing FFT functions written in OpenCL +COMMENT= Software library containing FFT functions written in OpenCL LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/math/gri/Makefile ============================================================================== --- head/math/gri/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/math/gri/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -62,7 +62,7 @@ post-install: ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .else ${INSTALL_MAN} ${WRKSRC}/doc/gri-manpage.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1/gri.1 + ${STAGEDIR}${MANPREFIX}/man/man1/gri.1 ${INSTALL_MAN} ${WRKSRC}/doc/gri_merge.1-skel \ ${STAGEDIR}${MANPREFIX}/man/man1/gri_merge.1 ${INSTALL_MAN} ${WRKSRC}/doc/gri_unpage.1-skel \ Modified: head/math/scalapack/files/Makefile ============================================================================== --- head/math/scalapack/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/math/scalapack/files/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -6,6 +6,6 @@ all: densg densg2 densg: example1.f # f77 version mpif77 -o densg example1.f -L/usr/local/lib -lscalapack -lblacs -lblacsf77 -lblacs -lf77blas - + densg2: example1.cc # C++ version mpiCC -o densg2 example1.cc -I/usr/local/mpich/include -I/usr/local/include -L/usr/local/lib -lscalapack -lblacs -lblacsf77 -lblacs -lf77blas -lg2c -lm Modified: head/misc/delay/Makefile ============================================================================== --- head/misc/delay/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/misc/delay/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -5,7 +5,7 @@ PORTNAME= delay PORTVERSION= 1.6 CATEGORIES= misc MASTER_SITES= http://onegeek.org/~tom/software/delay/dl/ \ - http://utenti.gufi.org/~gmarco/files/distfiles/ + http://utenti.gufi.org/~gmarco/files/distfiles/ MAINTAINER= gmarco@gufi.org COMMENT= Delay program with feedback to the user Modified: head/misc/elscreen/Makefile ============================================================================== --- head/misc/elscreen/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/misc/elscreen/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -16,7 +16,7 @@ USE_EMACS= yes .if (${EMACS_PORT_NAME} == "emacs20") DEPPORT_SUFFIX= -${EMACS_PORT_NAME} .else -DEPPORT_SUFFIX= +DEPPORT_SUFFIX= .endif RUN_DEPENDS= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/emu/emu.el:${PORTSDIR}/editors/apel${DEPPORT_SUFFIX} Modified: head/misc/mc-light/Makefile ============================================================================== --- head/misc/mc-light/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/misc/mc-light/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -48,7 +48,7 @@ post-patch: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mcserv .for i in a arfs audio cpio deb esp ftplist hp48 iso lha lslR mailfs patchfs rar rpm trpm uarj uha zip zoo - ${CHMOD} 755 ${STAGEDIR}${PREFIX}/share/mc/extfs/${i} + ${CHMOD} 755 ${STAGEDIR}${PREFIX}/share/mc/extfs/${i} .endfor .include Modified: head/misc/tkregexp/Makefile ============================================================================== --- head/misc/tkregexp/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/misc/tkregexp/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -7,7 +7,7 @@ CATEGORIES= misc tk MASTER_SITES= http://laurent.riesterer.free.fr/regexp/ DISTNAME= visual_regexp-${PORTVERSION} EXTRACT_SUFX= .tcl -EXTRACT_ONLY= +EXTRACT_ONLY= MAINTAINER= tcltk@FreeBSD.org COMMENT= Interactive regexp design tool Modified: head/multimedia/audiopreview/Makefile ============================================================================== --- head/multimedia/audiopreview/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/multimedia/audiopreview/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -1,4 +1,4 @@ -# Created by: kevlo +# Created by: kevlo # $FreeBSD$ PORTNAME= audiopreview Modified: head/multimedia/gstreamer-plugins/Makefile ============================================================================== --- head/multimedia/gstreamer-plugins/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/multimedia/gstreamer-plugins/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -4,7 +4,7 @@ PORTNAME= gstreamer PORTVERSION?= ${BASE_PORTVERSION} -# When chasing a shared library for a plug-in bump the PORTREVISION in the +# When chasing a shared library for a plug-in bump the PORTREVISION in the # plug-in port instead, like ${category}/gstreamer-plugin-${PLUGIN}. PORTREVISION?= 6 PORTEPOCH= 3 Modified: head/multimedia/libtheora/Makefile ============================================================================== --- head/multimedia/libtheora/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/multimedia/libtheora/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -16,7 +16,7 @@ LIB_DEPENDS= libvorbis.so:${PORTSDIR}/au GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-sdltest \ --disable-examples -CPPFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip USES= libtool tar:bzip2 Modified: head/multimedia/linux-f10-libtheora/Makefile ============================================================================== --- head/multimedia/linux-f10-libtheora/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/multimedia/linux-f10-libtheora/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -10,7 +10,7 @@ MASTER_SITES= LOCAL/ehaupt/rpm/${LINUX_R MAINTAINER= emulation@FreeBSD.org COMMENT= Theora Video Compression Codec (Linux Fedora 10) -CONFLICTS= linux-libtheora-[0-9]* +CONFLICTS= linux-libtheora-[0-9]* ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= f10 Modified: head/multimedia/smtube/Makefile ============================================================================== --- head/multimedia/smtube/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/multimedia/smtube/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -27,6 +27,6 @@ post-patch: ${WRKSRC}/Makefile post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include Modified: head/net-im/cicquin/Makefile ============================================================================== --- head/net-im/cicquin/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-im/cicquin/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -4,7 +4,7 @@ PORTNAME= cicquin PORTVERSION= 0.1 CATEGORIES= net-im -#MASTER_SITES= LOCAL/roam/misc/cicquin \ +#MASTER_SITES= LOCAL/roam/misc/cicquin \ MASTER_SITES= \ http://devel.ringlet.net/misc/cicquin/ \ http://people.FreeBSD.org/~roam/misc/cicquin/ Modified: head/net-im/py-slackclient/Makefile ============================================================================== --- head/net-im/py-slackclient/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-im/py-slackclient/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -11,7 +11,7 @@ MAINTAINER= koobs@FreeBSD.org COMMENT= Python client for Slack.com LICENSE= MIT - + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}websocket-client>0:${PORTSDIR}/www/py-websocket-client USES= python:-2.7 Modified: head/net-mgmt/fetchconfig/Makefile ============================================================================== --- head/net-mgmt/fetchconfig/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/fetchconfig/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -42,5 +42,5 @@ do-install: .for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor - + .include Modified: head/net-mgmt/ndpmon/Makefile ============================================================================== --- head/net-mgmt/ndpmon/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/ndpmon/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -14,7 +14,7 @@ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= PY4SUITE MACRESOLV -OPTIONS_DEFAULT= +OPTIONS_DEFAULT= PY4SUITE_DESC= Depend on py-4suite-xml (for generating HTML) MACRESOLV_DESC= Enable MAC Manufacturer Resolution (use p5-libwww) Modified: head/net-mgmt/p5-Net-NSCA-Client/Makefile ============================================================================== --- head/net-mgmt/p5-Net-NSCA-Client/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/p5-Net-NSCA-Client/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -40,14 +40,14 @@ TEST_DEPENDS= p5-Test-Class>=0.37:${PORT p5-Test-Fatal>=0.010:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0.06:${PORTSDIR}/devel/p5-Test-Requires \ p5-Test-TCP>=1.17:${PORTSDIR}/devel/p5-Test-TCP - + USES= perl5 USE_PERL5= modbuild post-patch: @cd ${WRKSRC} && ${RM} -f bin/send_nsca @cd ${WRKSRC} && ${RM} -f t/send_nsca.t - + regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./Build test Modified: head/net-mgmt/seafile/Makefile ============================================================================== --- head/net-mgmt/seafile/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/seafile/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -50,7 +50,7 @@ SEALIB= ${SEAFILE_SERVER}/seafile/lib SEAFILE_USERNAME?= www SEAFILE_GROUPNAME?= ${SEAFILE_USERNAME} -USE_RC_SUBR= ${PORTNAME} +USE_RC_SUBR= ${PORTNAME} PLIST_SUB= SEAFILE_USERNAME=${SEAFILE_USERNAME} \ SEAFILE_GROUPNAME=${SEAFILE_GROUPNAME} \ SEAFILE_SERVER=${SEAFILE_SERVER} \ Modified: head/net-mgmt/snmptt/Makefile ============================================================================== --- head/net-mgmt/snmptt/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/snmptt/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -36,7 +36,7 @@ do-install: .for _SCRIPT in ${SCRIPTS} @${INSTALL_SCRIPT} ${WRKSRC}/${_SCRIPT} ${STAGEDIR}${PREFIX}/sbin .endfor - + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/snmp ${INSTALL_DATA} ${WRKSRC}/snmptt.ini ${STAGEDIR}${PREFIX}/etc/snmp/snmptt.ini.sample ${INSTALL_DATA} ${WRKSRC}/examples/snmptt.conf.generic ${STAGEDIR}${PREFIX}/etc/snmp/snmptt.conf.generic.sample Modified: head/net-mgmt/xymon-server/files/Makefile ============================================================================== --- head/net-mgmt/xymon-server/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-mgmt/xymon-server/files/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -75,7 +75,7 @@ DOLDAP = yes endif # # clock_gettime() settings -LIBRTDEF = +LIBRTDEF = ifdef WITH_NETSNMP # Net-SNMP settings Modified: head/net-p2p/dclib/Makefile ============================================================================== --- head/net-p2p/dclib/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-p2p/dclib/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -1,4 +1,4 @@ -# Created by: Sverrir Valgeirsson and +# Created by: Sverrir Valgeirsson and # $FreeBSD$ PORTNAME= dclib Modified: head/net-p2p/gnunet-gtk/Makefile ============================================================================== --- head/net-p2p/gnunet-gtk/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-p2p/gnunet-gtk/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -41,7 +41,7 @@ post-patch: post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in AUTHORS ChangeLog NEWS README +.for i in AUTHORS ChangeLog NEWS README (cd ${WRKSRC} && ${INSTALL_DATA} ${i} \ ${STAGEDIR}${DOCSDIR}) .endfor Modified: head/net-p2p/transmission-cli/Makefile ============================================================================== --- head/net-p2p/transmission-cli/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net-p2p/transmission-cli/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -40,7 +40,7 @@ GEN_LIB_DEPENDS=libcurl.so:${PORTSDIR}/f libevent.so:${PORTSDIR}/devel/libevent2 GEN_RUN_DEPENDS=${LOCALBASE}/share/transmission/web/index.html:${PORTSDIR}/www/transmission-web -# This is master port of transmission-*, so don't override USES definition +# This is master port of transmission-*, so don't override USES definition USES+= gmake iconv libtool localbase pkgconfig USE_OPENSSL= yes GNU_CONFIGURE= yes Modified: head/net/bwi-firmware-kmod/Makefile ============================================================================== --- head/net/bwi-firmware-kmod/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/bwi-firmware-kmod/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -8,7 +8,7 @@ MASTER_SITES= http://downloads.openwrt.o http://mirror2.openwrt.org/sources/ PKGNAMESUFFIX= -kmod DISTFILES= ${FWFILE} -EXTRACT_ONLY= +EXTRACT_ONLY= MAINTAINER= swhetzel@gmail.com COMMENT= Broadcom AirForce IEEE 802.11 Firmware Kernel Module Modified: head/net/bwn-firmware-kmod/Makefile ============================================================================== --- head/net/bwn-firmware-kmod/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/bwn-firmware-kmod/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -8,7 +8,7 @@ MASTER_SITES= http://downloads.openwrt.o http://mirror2.openwrt.org/sources/ PKGNAMESUFFIX= -kmod DISTFILES= ${FWFILE} ${FWFILE_LP} -EXTRACT_ONLY= +EXTRACT_ONLY= MAINTAINER= swhetzel@gmail.com COMMENT= Broadcom AirForce IEEE 802.11 Firmware Kernel Module Modified: head/net/geoclue/Makefile ============================================================================== --- head/net/geoclue/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/geoclue/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -1,4 +1,4 @@ -# Created by: Gustau Perez i Querol +# Created by: Gustau Perez i Querol # $FreeBSD$ PORTNAME= geoclue @@ -11,9 +11,9 @@ COMMENT= D-Bus service that provides loc LIB_DEPENDS= libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \ libsoup-2.4.so:${PORTSDIR}/devel/libsoup - + USES= gettext gmake pathfix pkgconfig tar:xz -USE_GNOME= glib20 intlhack +USE_GNOME= glib20 intlhack GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-3g-source \ Modified: head/net/geocode-glib/Makefile ============================================================================== --- head/net/geocode-glib/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/geocode-glib/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -1,4 +1,4 @@ -# Created by: Gustau Perez i Querol +# Created by: Gustau Perez i Querol # $FreeBSD$ PORTNAME= geocode-glib Modified: head/net/grilo-plugins/Makefile ============================================================================== --- head/net/grilo-plugins/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/grilo-plugins/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -31,12 +31,12 @@ OPTIONS_DEFINE= TRACKER OPTIONS_DEFAULT= TRACKER METADATA TRACKER_DESC= Tracker support for grilo (used by gnome-music and possibly others) -TRACKER_CONFIGURE_ENABLE= tracker +TRACKER_CONFIGURE_ENABLE= tracker TRACKER_LIB_DEPENDS= libtracker-sparql-1.0.so:${PORTSDIR}/sysutils/tracker DMAP_DESC= DMAP (DAAP, DPAP & DACP) support with libdmapsharing DMAP_CONFIGURE_ENABLE= dmap DMAP_LIB_DEPENDS= libdmapsharing-3.0.so:${PORTSDIR}/net/libdmapsharing -DLEYNA_DESC= DLNA support for grilo +DLEYNA_DESC= DLNA support for grilo DLEYNA_CONFIGURE_ENABLE= dleyna DLEYNA_LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup METADATA_DESC= Enable Local-metadata plugin Modified: head/net/icmpinfo/Makefile ============================================================================== --- head/net/icmpinfo/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/icmpinfo/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -9,7 +9,7 @@ MASTER_SITES= SUNSITE/system/network/adm MAINTAINER= ports@FreeBSD.org COMMENT= Looks at the icmp messages received by the host -ALL_TARGET= +ALL_TARGET= PLIST_FILES= "@(,,4555) bin/icmpinfo" \ man/man1/icmpinfo.man.gz PORTDOCS= README Modified: head/net/libproxy-python/Makefile ============================================================================== --- head/net/libproxy-python/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/libproxy-python/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -19,7 +19,7 @@ USES+= python LIBPROXY_SLAVE= python do-build: -# empty +# empty post-build: ${PYTHON_CMD} -Qold ${PYTHON_LIBDIR}/compileall.py \ Modified: head/net/liferea/Makefile ============================================================================== --- head/net/liferea/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/liferea/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -36,6 +36,6 @@ OPTIONS_DEFINE= NOTIFY OPTIONS_DEFAULT=NOTIFY NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify -NOTIFY_CONFIGURE_ENABLE=libnotify +NOTIFY_CONFIGURE_ENABLE=libnotify .include Modified: head/net/nepenthes/Makefile ============================================================================== --- head/net/nepenthes/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/nepenthes/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -25,7 +25,7 @@ INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE= DEBUG_LOGGING PRELUDE +OPTIONS_DEFINE= DEBUG_LOGGING PRELUDE DEBUG_LOGGING_CONFIGURE_ENABLE= debug-logging PRELUDE_LIB_DEPENDS= libprelude.so:${PORTSDIR}/security/libprelude Modified: head/net/samba4/Makefile ============================================================================== --- head/net/samba4/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/samba4/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -84,7 +84,7 @@ LIB_DEPENDS+= libsunacl.so:${PORTSDIR}/ # External Samba dependencies # IDL compiler BUILD_DEPENDS+= p5-Parse-Pidl>=4.0.0:${PORTSDIR}/devel/p5-Parse-Pidl -# +# BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " Modified: head/net/samba41/Makefile ============================================================================== --- head/net/samba41/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/samba41/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -84,7 +84,7 @@ LIB_DEPENDS+= libsunacl.so:${PORTSDIR}/ # External Samba dependencies # IDL compiler BUILD_DEPENDS+= p5-Parse-Pidl>=4.0.0:${PORTSDIR}/devel/p5-Parse-Pidl -# +# BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " Modified: head/net/samba42/Makefile ============================================================================== --- head/net/samba42/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/samba42/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -86,7 +86,7 @@ RUN_DEPENDS+= libarchive>=3.1.2:${PORTS # External Samba dependencies # IDL compiler BUILD_DEPENDS+= p5-Parse-Pidl>=4.0.0:${PORTSDIR}/devel/p5-Parse-Pidl -# +# BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " Modified: head/net/sendsms/Makefile ============================================================================== --- head/net/sendsms/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/net/sendsms/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -13,7 +13,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Simple perl command-line utility to send SMS via from on provider site EXTRACT_CMD= ${GZCAT} -EXTRACT_BEFORE_ARGS= +EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= > ${WRKSRC}/${PORTNAME} PLIST_FILES= bin/sendsms Modified: head/news/py-yenc/Makefile ============================================================================== --- head/news/py-yenc/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/news/py-yenc/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -5,7 +5,7 @@ PORTNAME= yenc PORTVERSION= 0.3 CATEGORIES= news python MASTER_SITES= http://sabnzbd.sourceforge.net/ - + PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= jlaffaye@FreeBSD.org Modified: head/ports-mgmt/genpatch/Makefile ============================================================================== --- head/ports-mgmt/genpatch/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/ports-mgmt/genpatch/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -31,7 +31,7 @@ PORTWORK= /usr/obj/dports . else PORTWORK= /usr/ports . endif -.else +.else . if defined(WRKDIRPREFIX) && !empty(WRKDIRPREFIX) PORTWORK= ${WRKDIRPREFIX} . else Modified: head/ports-mgmt/managepkg/Makefile ============================================================================== --- head/ports-mgmt/managepkg/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/ports-mgmt/managepkg/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -14,7 +14,7 @@ COMMENT= Script for maintaining ports # Any ideas for a better comment? EXTRACT_CMD= ${GZCAT} -EXTRACT_BEFORE_ARGS= +EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= > ${WRKSRC}/${PORTNAME} WRKSRC= ${WRKDIR} NO_BUILD= yes Modified: head/print/foomatic-db/Makefile ============================================================================== --- head/print/foomatic-db/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/print/foomatic-db/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -5,7 +5,7 @@ PORTNAME= db PORTVERSION= 20150819 CATEGORIES= print MASTER_SITES= LOCAL/danilo - + PKGNAMEPREFIX= foomatic- DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${FOOMATICVER}-${PORTVERSION} Modified: head/print/foxitreader/Makefile ============================================================================== --- head/print/foxitreader/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/print/foxitreader/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -6,7 +6,7 @@ PORTVERSION= 1.1.0 PORTREVISION= 3 CATEGORIES= print MASTER_SITES= http://cdn04.foxitsoftware.com/pub/foxit/reader/desktop/linux/1.x/${PORTVERSION:R}/enu/:reader - + DISTFILES= FoxitReader-${PORTVERSION}.tar.bz2:reader EXTRACT_ONLY= FoxitReader-${PORTVERSION}.tar.bz2 Modified: head/science/jmol/Makefile ============================================================================== --- head/science/jmol/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/science/jmol/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -36,7 +36,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin (cd ${WRKSRC}/build && ${INSTALL_DATA} Jmol.jar JmolData.jar \ JmolLib.jar ${STAGEDIR}${JAVAJARDIR}) - (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include .undef MAKE_ARGS Modified: head/science/liboglappth/Makefile ============================================================================== --- head/science/liboglappth/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/science/liboglappth/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -7,7 +7,7 @@ PORTREVISION= 3 CATEGORIES= science MASTER_SITES= http://bioinformatics.org/ghemical/download/release20111012/ \ http://bioinformatics.org/ghemical/download/current - + MAINTAINER= maho@FreeBSD.org COMMENT= Support libraries of science/ghemical port Modified: head/security/authforce/Makefile ============================================================================== --- head/security/authforce/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/authforce/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -19,7 +19,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME} USE_GITHUB= yes GH_ACCOUNT= zlandau -USES= ncurses readline tar:bzip2 +USES= ncurses readline tar:bzip2 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/security/bsmtrace/Makefile ============================================================================== --- head/security/bsmtrace/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/bsmtrace/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -20,7 +20,7 @@ OPTIONS_DEFINE= PCRE EXAMPLES .if ${PORT_OPTIONS:MPCRE} LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre -MAKE_ENV+= PCRE=1 +MAKE_ENV+= PCRE=1 CFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lpcre .endif Modified: head/security/fwipe/Makefile ============================================================================== --- head/security/fwipe/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/fwipe/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -15,7 +15,7 @@ ALL_TARGET= it INSTALL_TARGET= setup PLIST_FILES= bin/fwipe bin/fwipe0 bin/echo0 man/man1/fwipe.1.gz \ - man/man1/fwipe0.1.gz man/man1/echo0.1.gz + man/man1/fwipe0.1.gz man/man1/echo0.1.gz post-extract: @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc Modified: head/security/pear-Horde_Secret/Makefile ============================================================================== --- head/security/pear-Horde_Secret/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/pear-Horde_Secret/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -12,7 +12,7 @@ USES= horde USE_HORDE_RUN= Horde_Crypt_Blowfish \ Horde_Exception \ Horde_Support - + USE_PHP= hash .include Modified: head/security/py-libnacl/Makefile ============================================================================== --- head/security/py-libnacl/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/py-libnacl/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -19,7 +19,7 @@ USES= python USE_PYTHON= autoplist distutils regression-test: build - ${TOUCH} ${WRKSRC}/tests/__init__.py + ${TOUCH} ${WRKSRC}/tests/__init__.py @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/security/sst/files/Makefile ============================================================================== --- head/security/sst/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/security/sst/files/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -8,7 +8,7 @@ MANDIR=${PREFIX}/man/man CFLAGS+= -DCONFDIR='"${OPENSSLDIR}"' -DCERTF='"certs/sst.pem"' \ -I${OPENSSLINC} .if exists(/usr/bin/nc) -CFLAGS+= -DNETCAT='"/usr/bin/nc"' +CFLAGS+= -DNETCAT='"/usr/bin/nc"' .else CFLAGS+= -DNETCAT='"${LOCALBASE}/bin/netcat"' .endif Modified: head/shells/v7sh/files/Makefile ============================================================================== --- head/shells/v7sh/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/shells/v7sh/files/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -13,7 +13,7 @@ SRCS= args.c blok.c builtin.c cmd.c ct #CFLAGS+= -DRENO #CFLAGS+= -DULTRIX -CWARNFLAGS?= -ansi -Wbad-function-cast +CWARNFLAGS?= -ansi -Wbad-function-cast WARNS?= 6 NO_WERROR=1 WFORMAT=0 Modified: head/sysutils/bareos-server/Makefile ============================================================================== --- head/sysutils/bareos-server/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/bareos-server/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -37,7 +37,7 @@ OPTIONS_DEFINE?= MTX PYTHON NLS OPENSSL OPTIONS_DEFAULT?= NLS OPENSSL PGSQL MTX_DESC= Install mtx for control of autochanger devices -.if ${PKGNAMESUFFIX} == "-server" +.if ${PKGNAMESUFFIX} == "-server" OPTIONS_SINGLE_DATABASE= SQLITE3 MYSQL PGSQL OPTIONS_SINGLE= DATABASE DATABASE_DESC= Database support Modified: head/sysutils/endian/Makefile ============================================================================== --- head/sysutils/endian/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/endian/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -5,7 +5,7 @@ PORTNAME= endian PORTVERSION= 1.1 CATEGORIES= sysutils MASTER_SITES= http://acadix.biz/Ports/distfiles/ \ - http://personalpages.tds.net/~jwbacon/Ports/distfiles/ + http://personalpages.tds.net/~jwbacon/Ports/distfiles/ MAINTAINER= jwbacon@tds.net COMMENT= Report endianness of a system Modified: head/sysutils/gnome-control-center/Makefile ============================================================================== --- head/sysutils/gnome-control-center/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/gnome-control-center/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -61,9 +61,9 @@ OPTIONS_DEFINE_amd64= CHEESE OPTIONS_DEFAULT_amd64= CHEESE CUPS_LIB_DEPENDS= libcups.so:${PORTSDIR}/print/cups-client \ libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient -CUPS_CONFIGURE_ENABLE= cups +CUPS_CONFIGURE_ENABLE= cups CHEESE_LIB_DEPENDS= libcheese.so:${PORTSDIR}/multimedia/cheese -CHEESE_CONFIGUE_WITH= cheese +CHEESE_CONFIGUE_WITH= cheese .include Modified: head/sysutils/livecd/Makefile ============================================================================== --- head/sysutils/livecd/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/livecd/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -1,4 +1,4 @@ -# Created by: Edson Brandi +# Created by: Edson Brandi # $FreeBSD$ PORTNAME= livecd Modified: head/sysutils/logwatch/files/Makefile ============================================================================== --- head/sysutils/logwatch/files/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/logwatch/files/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -87,7 +87,7 @@ install: vsftpd \ windows \ xferlog \ - yum + yum install -m 640 conf/logfiles/${logfile}.conf $(DESTDIR)${ETCDIR}/defaults/logfiles/${logfile}.conf .endfor .for service in \ @@ -210,13 +210,13 @@ install: onlyservice \ remove \ removeheaders \ - removeservice + removeservice install -m 555 scripts/shared/${script} $(DESTDIR)${LIBEXECDIR}/defaults/shared/${script} .endfor .for logfile in autorpm cron emerge samba up2date xferlog yum mkdir -p $(DESTDIR)${LIBEXECDIR}/defaults/logfiles/${logfile} install -m 555 scripts/logfiles/${logfile}/applydate $(DESTDIR)${LIBEXECDIR}/defaults/logfiles/${logfile} .endfor -.for logfile in samba up2date xferlog +.for logfile in samba up2date xferlog install -m 555 scripts/logfiles/${logfile}/removeheaders $(DESTDIR)${LIBEXECDIR}/defaults/logfiles/${logfile} .endfor Modified: head/sysutils/syslog-ng-devel/Makefile ============================================================================== --- head/sysutils/syslog-ng-devel/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/syslog-ng-devel/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -49,7 +49,7 @@ INSTALL_TARGET= install-strip CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc --localstatedir=/var/db \ --enable-dynamic-linking --enable-manpages \ --datadir=${PREFIX}/share/syslog-ng/ - + BROKEN_sparc64= Does not compile on sparc64: gcc core dump Modified: head/sysutils/u-boot-duovero/Makefile ============================================================================== --- head/sysutils/u-boot-duovero/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/sysutils/u-boot-duovero/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -7,7 +7,7 @@ MASTER_SITES= ftp://ftp.denx.de/pub/u-bo PKGNAMESUFFIX= -duovero MAINTAINER= ian@FreeBSD.org -COMMENT= Cross-build U-Boot loader for Duovero +COMMENT= Cross-build U-Boot loader for Duovero LICENSE= GPLv2 Modified: head/textproc/apertium/Makefile ============================================================================== --- head/textproc/apertium/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/textproc/apertium/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -29,7 +29,7 @@ LDFLAGS+= -L${LOCALBASE}/lib PLIST_SUB= APVER="${PORTVERSION:R}" post-patch: - + @${REINPLACE_CMD} -e 's/pcre_info/pcre_fullinfo/g' ${WRKSRC}/configure .include Modified: head/textproc/ecromedos/Makefile ============================================================================== --- head/textproc/ecromedos/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/textproc/ecromedos/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -33,7 +33,7 @@ post-patch: do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/bin - @${MKDIR} ${STAGEDIR}${ETCDIR} + @${MKDIR} ${STAGEDIR}${ETCDIR} (cd ${WRKSRC} ; \ ${COPYTREE_SHARE} "data lib transform" ${STAGEDIR}${DATADIR} \ "-not ( -name "*.orig" -or -name "*.bak" )" ; \ Modified: head/textproc/libucl/Makefile ============================================================================== --- head/textproc/libucl/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/textproc/libucl/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -49,5 +49,5 @@ CONFLICTS_INSTALL= ucl regression-test: build @cd ${WRKSRC} && ${MAKE} check - + .include Modified: head/textproc/rubygem-nokogiri14/Makefile ============================================================================== --- head/textproc/rubygem-nokogiri14/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/textproc/rubygem-nokogiri14/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -16,7 +16,7 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes USE_GNOME= libxml2 libxslt USES= pkgconfig -CONFIGURE_ARGS= --use-system-libraries +CONFIGURE_ARGS= --use-system-libraries PLIST_FILES= bin/nokogiri14 Modified: head/www/bareos-webui/Makefile ============================================================================== --- head/www/bareos-webui/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/bareos-webui/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -31,7 +31,7 @@ SUB_LIST= BAREOSWEBUIDIR=${BAREOSWEBUIDI OPTIONS_DEFINE= MYSQL PGSQL ZENDFRAMEWORK OPTIONS_DEFAULT= PGSQL -ZENDFRAMEWORK_DESC= Install zend framework +ZENDFRAMEWORK_DESC= Install zend framework .include Modified: head/www/libsocialweb/Makefile ============================================================================== --- head/www/libsocialweb/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/libsocialweb/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -23,7 +23,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-vala-bindings # review if we want all the services enabled, because of not completely # safe public API security wise? -CONFIGURE_ARGS+=--enable-all-services +CONFIGURE_ARGS+=--enable-all-services INSTALL_TARGET= install-strip .include Modified: head/www/mod_tsa/Makefile ============================================================================== --- head/www/mod_tsa/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/mod_tsa/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -53,7 +53,7 @@ AP_LIB+= -lpq .if ${PORT_OPTIONS:MFIREBIRD} USE_FIREBIRD= yes CONFIGURE_ARGS+= --enable-firebird=yes -SRC_FILE+= db_firebird.c +SRC_FILE+= db_firebird.c AP_LIB+= -lgds .endif Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/nginx-devel/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -555,7 +555,7 @@ CONFIGURE_ARGS+=--with-http_stub_status_ CONFIGURE_ARGS+=--with-http_sub_module .endif -.if ${PORT_OPTIONS:MHTTP_UPLOAD} +.if ${PORT_OPTIONS:MHTTP_UPLOAD} GIT_UPLOAD_VERSION= aba1e3f34c GH_ACCOUNT+= vkholodkov:upload GH_PROJECT+= nginx-upload-module:upload Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/nginx/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -550,7 +550,7 @@ CONFIGURE_ARGS+=--with-http_stub_status_ CONFIGURE_ARGS+=--with-http_sub_module .endif -.if ${PORT_OPTIONS:MHTTP_UPLOAD} +.if ${PORT_OPTIONS:MHTTP_UPLOAD} GIT_UPLOAD_VERSION= aba1e3f34c GH_ACCOUNT+= vkholodkov:upload GH_PROJECT+= nginx-upload-module:upload Modified: head/www/p5-Apache-Session-PHP/Makefile ============================================================================== --- head/www/p5-Apache-Session-PHP/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/p5-Apache-Session-PHP/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -12,7 +12,7 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Glue Apache::Session with PHP::Session BUILD_DEPENDS= p5-PHP-Session>=0:${PORTSDIR}/www/p5-PHP-Session \ - p5-Apache-Session>=0:${PORTSDIR}/www/p5-Apache-Session + p5-Apache-Session>=0:${PORTSDIR}/www/p5-Apache-Session RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 Modified: head/www/py-django14/Makefile ============================================================================== --- head/www/py-django14/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/py-django14/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -5,7 +5,7 @@ PORTNAME= django PORTVERSION= 1.4.22 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ - https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ + https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= 14 DISTNAME= Django-${PORTVERSION} Modified: head/www/seahub/Makefile ============================================================================== --- head/www/seahub/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/seahub/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -77,7 +77,7 @@ SITEPACKAGEDIR= ${SEAHUBDIR}/thirdpart SEAFILE_USERNAME?= www SEAFILE_GROUPNAME?= ${SEAFILE_USERNAME} -USE_RC_SUBR= ${PORTNAME} +USE_RC_SUBR= ${PORTNAME} PLIST_SUB= SEAFILE_USERNAME=${SEAFILE_USERNAME} \ SEAFILE_GROUPNAME=${SEAFILE_GROUPNAME} \ SEAFILE_SERVER=${SEAFILE_SERVER} \ Modified: head/www/webkit-gtk3/Makefile ============================================================================== --- head/www/webkit-gtk3/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/webkit-gtk3/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -21,7 +21,7 @@ LIB_DEPENDS= libenchant.so:${PORTSDIR}/t libwebp.so:${PORTSDIR}/graphics/webp \ libcurl.so:${PORTSDIR}/ftp/curl \ libsoup-2.4.so:${PORTSDIR}/devel/libsoup -RUN_DEPENDS= geoclue>=0:${PORTSDIR}/net/geoclue +RUN_DEPENDS= geoclue>=0:${PORTSDIR}/net/geoclue PORTSCOUT= limit:1.4.*$$ Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/webkit2-gtk3/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -21,7 +21,7 @@ LIB_DEPENDS= libenchant.so:${PORTSDIR}/t libicutu.so:${PORTSDIR}/devel/icu \ libharfbuzz.so:${PORTSDIR}/print/harfbuzz \ libsoup-2.4.so:${PORTSDIR}/devel/libsoup -RUN_DEPENDS= geoclue>=0:${PORTSDIR}/net/geoclue +RUN_DEPENDS= geoclue>=0:${PORTSDIR}/net/geoclue PORTSCOUT= limitw:1,even Modified: head/www/xpi-fasterfox/Makefile ============================================================================== --- head/www/xpi-fasterfox/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/www/xpi-fasterfox/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -12,8 +12,8 @@ COMMENT= Performance and network tweaks XPI_NUM= 1269 XPI_ID= {c36177c0-224a-11da-8cd6-0800200c9a66} XPI_FILES= chrome/fasterfox.jar chrome.manifest defaults/preferences/fasterfox.js \ - install.rdf readme.txt -XPI_DIRS= chrome defaults/preferences defaults + install.rdf readme.txt +XPI_DIRS= chrome defaults/preferences defaults .include "../xpi-adblock/Makefile.xpi" .include Modified: head/x11-fm/nemo/Makefile ============================================================================== --- head/x11-fm/nemo/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/x11-fm/nemo/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -27,7 +27,7 @@ USE_GNOME= gnomedesktop3 gnomeprefix int libxml2 pygobject3 USE_GITHUB= yes GH_ACCOUNT= linuxmint -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/x11-fm/ultracopier/Makefile ============================================================================== --- head/x11-fm/ultracopier/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/x11-fm/ultracopier/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -26,7 +26,7 @@ PLIST_FILES= ${DESKTOPDIR:Q}/ultracopier bin/ultracopier \ share/icons/hicolor/16x16/apps/ultracopier.png \ share/icons/hicolor/128x128/apps/ultracopier.png - + post-patch: @${REINPLACE_CMD} -E \ -e 's|0\.2\.0\.15|0.2.0.16|; \ Modified: head/x11/3ddesktop/Makefile ============================================================================== --- head/x11/3ddesktop/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/x11/3ddesktop/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -3,7 +3,7 @@ PORTNAME= 3ddesktop PORTVERSION= 0.2.9 -PORTREVISION= 13 +PORTREVISION= 13 CATEGORIES= x11 MASTER_SITES= SF/desk3d/${PORTNAME}/${PORTVERSION} Modified: head/x11/gnome-menus/Makefile ============================================================================== --- head/x11/gnome-menus/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/x11/gnome-menus/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -25,7 +25,7 @@ post-patch: < ${FILESDIR}/KDE.directory > ${WRKSRC}/KDE.directory post-install: - @${MKDIR} -p ${STAGEDIR}${PREFIX}/etc/xdg/menus/ + @${MKDIR} -p ${STAGEDIR}${PREFIX}/etc/xdg/menus/ @${INSTALL_DATA} ${WRKSRC}/layout/gnome-applications.menu \ ${STAGEDIR}${PREFIX}/etc/xdg/menus/gnome-applications.menu @${INSTALL_DATA} ${WRKSRC}/KDE.directory \ Modified: head/x11/xcb-util-cursor/Makefile ============================================================================== --- head/x11/xcb-util-cursor/Makefile Thu Oct 8 15:11:28 2015 (r398832) +++ head/x11/xcb-util-cursor/Makefile Thu Oct 8 15:12:22 2015 (r398833) @@ -11,7 +11,7 @@ COMMENT= XCB cursor library BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xcb-util.pc:${PORTSDIR}/x11/xcb-util \ ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util-renderutil \ ${LOCALBASE}/libdata/pkgconfig/xcb-image.pc:${PORTSDIR}/x11/xcb-util-image - + RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xcb-util.pc:${PORTSDIR}/x11/xcb-util \ ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util-renderutil \ ${LOCALBASE}/libdata/pkgconfig/xcb-image.pc:${PORTSDIR}/x11/xcb-util-image From owner-svn-ports-head@freebsd.org Thu Oct 8 17:08:41 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 3C67F9D1FB4; Thu, 8 Oct 2015 17:08:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 064532AD; Thu, 8 Oct 2015 17:08:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98H8eIo028741; Thu, 8 Oct 2015 17:08:40 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98H8epJ028740; Thu, 8 Oct 2015 17:08:40 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510081708.t98H8epJ028740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Oct 2015 17:08:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398834 - head/x11/wdm 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: Thu, 08 Oct 2015 17:08:41 -0000 Author: amdmi3 Date: Thu Oct 8 17:08:39 2015 New Revision: 398834 URL: https://svnweb.freebsd.org/changeset/ports/398834 Log: - Fix build Approved by: portmgr blanket Modified: head/x11/wdm/Makefile Modified: head/x11/wdm/Makefile ============================================================================== --- head/x11/wdm/Makefile Thu Oct 8 15:12:22 2015 (r398833) +++ head/x11/wdm/Makefile Thu Oct 8 17:08:39 2015 (r398834) @@ -42,7 +42,7 @@ CONFIGURE_ARGS= --with-logdir=/var/log \ --with-wmlist=wmaker:afterstep:blackbox:ctwm:enlightenment:fvwm:fvwm2:fvwm95:olvwm:qvwm:tvtwm CPPFLAGS+= -I${LOCALBASE}/include -DCSRG_BASED -DHAS_SETUSERCONTEXT -LIBS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lintl DEF_SERVER?= ${LOCALBASE}/bin/X XRDB_PATH?= ${LOCALBASE}/bin/xrdb From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:25 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 BDA449D2D0E; Thu, 8 Oct 2015 18:42:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6EFC62A9; Thu, 8 Oct 2015 18:42:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IgOd5058589; Thu, 8 Oct 2015 18:42:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgOTD058586; Thu, 8 Oct 2015 18:42:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgOTD058586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398836 - head/devel/p5-Module-ScanDeps 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: Thu, 08 Oct 2015 18:42:25 -0000 Author: sunpoet Date: Thu Oct 8 18:42:24 2015 New Revision: 398836 URL: https://svnweb.freebsd.org/changeset/ports/398836 Log: - Update to 1.20 - Sort PLIST Changes: http://search.cpan.org/dist/Module-ScanDeps/Changes Modified: head/devel/p5-Module-ScanDeps/Makefile head/devel/p5-Module-ScanDeps/distinfo head/devel/p5-Module-ScanDeps/pkg-plist Modified: head/devel/p5-Module-ScanDeps/Makefile ============================================================================== --- head/devel/p5-Module-ScanDeps/Makefile Thu Oct 8 18:42:18 2015 (r398835) +++ head/devel/p5-Module-ScanDeps/Makefile Thu Oct 8 18:42:24 2015 (r398836) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-ScanDeps -PORTVERSION= 1.19 +PORTVERSION= 1.20 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-ScanDeps/distinfo ============================================================================== --- head/devel/p5-Module-ScanDeps/distinfo Thu Oct 8 18:42:18 2015 (r398835) +++ head/devel/p5-Module-ScanDeps/distinfo Thu Oct 8 18:42:24 2015 (r398836) @@ -1,2 +1,2 @@ -SHA256 (Module-ScanDeps-1.19.tar.gz) = be77c31327d88382bbae4d11e6209d3222c848bd3ade8d3dcaae3dae748a66cb -SIZE (Module-ScanDeps-1.19.tar.gz) = 62007 +SHA256 (Module-ScanDeps-1.20.tar.gz) = 72003547e36db833f920eb85247943b755c94ded998e640bae20ff37d6104691 +SIZE (Module-ScanDeps-1.20.tar.gz) = 64260 Modified: head/devel/p5-Module-ScanDeps/pkg-plist ============================================================================== --- head/devel/p5-Module-ScanDeps/pkg-plist Thu Oct 8 18:42:18 2015 (r398835) +++ head/devel/p5-Module-ScanDeps/pkg-plist Thu Oct 8 18:42:24 2015 (r398836) @@ -1,6 +1,5 @@ bin/scandeps.pl %%SITE_PERL%%/Module/ScanDeps.pm %%SITE_PERL%%/Module/ScanDeps/Cache.pm -%%SITE_PERL%%/Module/ScanDeps/DataFeed.pm -%%PERL5_MAN3%%/Module::ScanDeps.3.gz %%PERL5_MAN1%%/scandeps.pl.1.gz +%%PERL5_MAN3%%/Module::ScanDeps.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42: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 9D8E39D2CDA; Thu, 8 Oct 2015 18:42:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B08927D; Thu, 8 Oct 2015 18:42:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IgJoD058456; Thu, 8 Oct 2015 18:42:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgJJK058453; Thu, 8 Oct 2015 18:42:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgJJK058453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398835 - in head/net/mDNSResponder: . 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: Thu, 08 Oct 2015 18:42:20 -0000 Author: sunpoet Date: Thu Oct 8 18:42:18 2015 New Revision: 398835 URL: https://svnweb.freebsd.org/changeset/ports/398835 Log: - Update to 576.30.4 Modified: head/net/mDNSResponder/Makefile head/net/mDNSResponder/distinfo head/net/mDNSResponder/files/patch-mDNSPosix-mDNSPosix.c Modified: head/net/mDNSResponder/Makefile ============================================================================== --- head/net/mDNSResponder/Makefile Thu Oct 8 17:08:39 2015 (r398834) +++ head/net/mDNSResponder/Makefile Thu Oct 8 18:42:18 2015 (r398835) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mDNSResponder -PORTVERSION= 567 +PORTVERSION= 576.30.4 CATEGORIES= net dns MASTER_SITES= http://opensource.apple.com/tarballs/${PORTNAME}/ Modified: head/net/mDNSResponder/distinfo ============================================================================== --- head/net/mDNSResponder/distinfo Thu Oct 8 17:08:39 2015 (r398834) +++ head/net/mDNSResponder/distinfo Thu Oct 8 18:42:18 2015 (r398835) @@ -1,2 +1,2 @@ -SHA256 (mDNSResponder-567.tar.gz) = 3239d9bb1e1e017be1ae12cff90802194b6e0312de628a1f324530b00b833018 -SIZE (mDNSResponder-567.tar.gz) = 2143110 +SHA256 (mDNSResponder-576.30.4.tar.gz) = 4737cb51378377e11d0edb7bcdd1bec79cbdaa7b27ea09c13e3006e58f8d92c0 +SIZE (mDNSResponder-576.30.4.tar.gz) = 2157791 Modified: head/net/mDNSResponder/files/patch-mDNSPosix-mDNSPosix.c ============================================================================== --- head/net/mDNSResponder/files/patch-mDNSPosix-mDNSPosix.c Thu Oct 8 17:08:39 2015 (r398834) +++ head/net/mDNSResponder/files/patch-mDNSPosix-mDNSPosix.c Thu Oct 8 18:42:18 2015 (r398835) @@ -1,4 +1,4 @@ ---- mDNSPosix/mDNSPosix.c.orig 2015-03-02 19:24:41 UTC +--- mDNSPosix/mDNSPosix.c.orig 2015-03-13 00:15:32 UTC +++ mDNSPosix/mDNSPosix.c @@ -516,6 +516,7 @@ mDNSexport int ParseDNSServers(mDNS *m, numOfServers++; @@ -38,3 +38,12 @@ if (err == 0) { err = setsockopt(*sktPtr, IPPROTO_IPV6, IPV6_2292_HOPLIMIT, &kOn, sizeof(kOn)); +@@ -1600,7 +1613,7 @@ mDNSexport mDNSs32 mDNSPlatformGetServic + return -1; + } + +-mDNSexport void mDNSPlatformSetDelegatePID(UDPSocket *src, const mDNSAddr *dst, DNSQuestion *q) ++mDNSexport void mDNSPlatformSetuDNSSocktOpt(UDPSocket *src, const mDNSAddr *dst, DNSQuestion *q) + { + (void) src; + (void) dst; From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:35 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 475409D2D82; Thu, 8 Oct 2015 18:42:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09E5D7EE; Thu, 8 Oct 2015 18:42:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IgYHv058806; Thu, 8 Oct 2015 18:42:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgY64058805; Thu, 8 Oct 2015 18:42:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgY64058805@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398838 - head/devel/p5-Parse-CPAN-Packages-Fast 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: Thu, 08 Oct 2015 18:42:35 -0000 Author: sunpoet Date: Thu Oct 8 18:42:33 2015 New Revision: 398838 URL: https://svnweb.freebsd.org/changeset/ports/398838 Log: - Add NO_ARCH Modified: head/devel/p5-Parse-CPAN-Packages-Fast/Makefile Modified: head/devel/p5-Parse-CPAN-Packages-Fast/Makefile ============================================================================== --- head/devel/p5-Parse-CPAN-Packages-Fast/Makefile Thu Oct 8 18:42:29 2015 (r398837) +++ head/devel/p5-Parse-CPAN-Packages-Fast/Makefile Thu Oct 8 18:42:33 2015 (r398838) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org -COMMENT= Parse CPAN's package index +COMMENT= Parse CPAN package index LICENSE= ART10 GPLv1 LICENSE_COMB= dual @@ -16,6 +16,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-CPAN-DistnameInfo>=0:${PORTSDIR}/devel/p5-CPAN-DistnameInfo RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:31 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 012579D2D46; Thu, 8 Oct 2015 18:42:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 828873E4; Thu, 8 Oct 2015 18:42:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IgTBO058703; Thu, 8 Oct 2015 18:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgTS7058701; Thu, 8 Oct 2015 18:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgTS7058701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398837 - head/devel/p5-MooseX-Types-DateTime 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: Thu, 08 Oct 2015 18:42:31 -0000 Author: sunpoet Date: Thu Oct 8 18:42:29 2015 New Revision: 398837 URL: https://svnweb.freebsd.org/changeset/ports/398837 Log: - Update to 0.13 Changes: http://search.cpan.org/dist/MooseX-Types-DateTime/Changes Modified: head/devel/p5-MooseX-Types-DateTime/Makefile head/devel/p5-MooseX-Types-DateTime/distinfo Modified: head/devel/p5-MooseX-Types-DateTime/Makefile ============================================================================== --- head/devel/p5-MooseX-Types-DateTime/Makefile Thu Oct 8 18:42:24 2015 (r398836) +++ head/devel/p5-MooseX-Types-DateTime/Makefile Thu Oct 8 18:42:29 2015 (r398837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MooseX-Types-DateTime -PORTVERSION= 0.12 +PORTVERSION= 0.13 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ETHER Modified: head/devel/p5-MooseX-Types-DateTime/distinfo ============================================================================== --- head/devel/p5-MooseX-Types-DateTime/distinfo Thu Oct 8 18:42:24 2015 (r398836) +++ head/devel/p5-MooseX-Types-DateTime/distinfo Thu Oct 8 18:42:29 2015 (r398837) @@ -1,2 +1,2 @@ -SHA256 (MooseX-Types-DateTime-0.12.tar.gz) = 2a1cb9049f5d36648c0fde87b3fe3d06a1b037997963b3ad01340011725f92f1 -SIZE (MooseX-Types-DateTime-0.12.tar.gz) = 30352 +SHA256 (MooseX-Types-DateTime-0.13.tar.gz) = b89fa26636f6a17eaa3868b4514340472b68bbdc2161a1d79a22a1bf5b1d39c6 +SIZE (MooseX-Types-DateTime-0.13.tar.gz) = 30494 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:40 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 4E4949D2DD9; Thu, 8 Oct 2015 18:42:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C01196F; Thu, 8 Oct 2015 18:42:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IgdYJ058921; Thu, 8 Oct 2015 18:42:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgcX1058919; Thu, 8 Oct 2015 18:42:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgcX1058919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398839 - head/devel/p5-Struct-Dumb 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: Thu, 08 Oct 2015 18:42:40 -0000 Author: sunpoet Date: Thu Oct 8 18:42:38 2015 New Revision: 398839 URL: https://svnweb.freebsd.org/changeset/ports/398839 Log: - Update to 0.06 Changes: http://search.cpan.org/dist/Struct-Dumb/Changes Modified: head/devel/p5-Struct-Dumb/Makefile head/devel/p5-Struct-Dumb/distinfo Modified: head/devel/p5-Struct-Dumb/Makefile ============================================================================== --- head/devel/p5-Struct-Dumb/Makefile Thu Oct 8 18:42:33 2015 (r398838) +++ head/devel/p5-Struct-Dumb/Makefile Thu Oct 8 18:42:38 2015 (r398839) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Struct-Dumb -PORTVERSION= 0.04 +PORTVERSION= 0.06 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PEVANS Modified: head/devel/p5-Struct-Dumb/distinfo ============================================================================== --- head/devel/p5-Struct-Dumb/distinfo Thu Oct 8 18:42:33 2015 (r398838) +++ head/devel/p5-Struct-Dumb/distinfo Thu Oct 8 18:42:38 2015 (r398839) @@ -1,2 +1,2 @@ -SHA256 (Struct-Dumb-0.04.tar.gz) = f19a487a68f445dd5202868c4fcab3deee964dbbf97a27a3a039299656475143 -SIZE (Struct-Dumb-0.04.tar.gz) = 13904 +SHA256 (Struct-Dumb-0.06.tar.gz) = 868c36e33f71b1678cacedc3bdaa72a4ade8f340c95649d45dde19995144c6f2 +SIZE (Struct-Dumb-0.06.tar.gz) = 14604 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42: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 252079D2E05; Thu, 8 Oct 2015 18:42:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1853AB6; Thu, 8 Oct 2015 18:42:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IghUE059037; Thu, 8 Oct 2015 18:42:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IghF2059035; Thu, 8 Oct 2015 18:42:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IghF2059035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398840 - head/devel/p5-Test-DependentModules 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: Thu, 08 Oct 2015 18:42:45 -0000 Author: sunpoet Date: Thu Oct 8 18:42:43 2015 New Revision: 398840 URL: https://svnweb.freebsd.org/changeset/ports/398840 Log: - Update to 0.24 Changes: http://search.cpan.org/dist/Test-DependentModules/Changes Modified: head/devel/p5-Test-DependentModules/Makefile head/devel/p5-Test-DependentModules/distinfo Modified: head/devel/p5-Test-DependentModules/Makefile ============================================================================== --- head/devel/p5-Test-DependentModules/Makefile Thu Oct 8 18:42:38 2015 (r398839) +++ head/devel/p5-Test-DependentModules/Makefile Thu Oct 8 18:42:43 2015 (r398840) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-DependentModules -PORTVERSION= 0.22 +PORTVERSION= 0.24 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-DependentModules/distinfo ============================================================================== --- head/devel/p5-Test-DependentModules/distinfo Thu Oct 8 18:42:38 2015 (r398839) +++ head/devel/p5-Test-DependentModules/distinfo Thu Oct 8 18:42:43 2015 (r398840) @@ -1,2 +1,2 @@ -SHA256 (Test-DependentModules-0.22.tar.gz) = 551b599c34c9657b84a547c248b6c8830661c03b26fda5daf20b4d505eaa5193 -SIZE (Test-DependentModules-0.22.tar.gz) = 29933 +SHA256 (Test-DependentModules-0.24.tar.gz) = 920658be8a3b5a3b07dfe944303d9f0798c96172be0bb41ae32bb1a36cae83bb +SIZE (Test-DependentModules-0.24.tar.gz) = 30099 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42: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 9AC939D2E2B; Thu, 8 Oct 2015 18:42:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64B8DB79; Thu, 8 Oct 2015 18:42:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Igm3g059142; Thu, 8 Oct 2015 18:42:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgmBe059141; Thu, 8 Oct 2015 18:42:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgmBe059141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398841 - head/finance/p5-Finance-Quote 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: Thu, 08 Oct 2015 18:42:49 -0000 Author: sunpoet Date: Thu Oct 8 18:42:48 2015 New Revision: 398841 URL: https://svnweb.freebsd.org/changeset/ports/398841 Log: - Add NO_ARCH Modified: head/finance/p5-Finance-Quote/Makefile Modified: head/finance/p5-Finance-Quote/Makefile ============================================================================== --- head/finance/p5-Finance-Quote/Makefile Thu Oct 8 18:42:43 2015 (r398840) +++ head/finance/p5-Finance-Quote/Makefile Thu Oct 8 18:42:48 2015 (r398841) @@ -26,6 +26,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Kwalitee>=0:${PORTSDIR}/devel/p5-Test-Kwalitee \ p5-Test-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Test-Perl-Critic +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:54 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 8F98F9D2E5C; Thu, 8 Oct 2015 18:42:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AB00C5A; Thu, 8 Oct 2015 18:42:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Igrl9059258; Thu, 8 Oct 2015 18:42:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgrVH059256; Thu, 8 Oct 2015 18:42:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgrVH059256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398842 - head/graphics/p5-GraphViz2 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: Thu, 08 Oct 2015 18:42:54 -0000 Author: sunpoet Date: Thu Oct 8 18:42:52 2015 New Revision: 398842 URL: https://svnweb.freebsd.org/changeset/ports/398842 Log: - Update to 2.36 - Convert to new options target helper Changes: http://search.cpan.org/dist/GraphViz2/Changes Modified: head/graphics/p5-GraphViz2/Makefile head/graphics/p5-GraphViz2/distinfo Modified: head/graphics/p5-GraphViz2/Makefile ============================================================================== --- head/graphics/p5-GraphViz2/Makefile Thu Oct 8 18:42:48 2015 (r398841) +++ head/graphics/p5-GraphViz2/Makefile Thu Oct 8 18:42:52 2015 (r398842) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= GraphViz2 -PORTVERSION= 2.34 -PORTREVISION= 2 +PORTVERSION= 2.36 CATEGORIES= graphics perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RSAVAGE @@ -42,7 +41,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/dot:${PO p5-XML-Bare>=0:${PORTSDIR}/textproc/p5-XML-Bare \ p5-XML-Tiny>=2.06:${PORTSDIR}/textproc/p5-XML-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Pod>=1.45:${PORTSDIR}/devel/p5-Test-Pod \ +TEST_DEPENDS= p5-Test-Pod>=1.48:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Version>=0:${PORTSDIR}/devel/p5-Test-Version OPTIONS_DEFINE= EXAMPLES @@ -55,7 +54,7 @@ PORTEXAMPLES= * SHEBANG_FILES= scripts/generate.png.sh scripts/generate.svg.sh scripts/pod2html.sh -post-install: +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/scripts/* ${STAGEDIR}${EXAMPLESDIR}/ @@ -66,4 +65,8 @@ BUILD_DEPENDS+= p5-PathTools>=3.4000:${P RUN_DEPENDS+= p5-PathTools>=3.4000:${PORTSDIR}/devel/p5-PathTools .endif +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001014:${PORTSDIR}/devel/p5-Test-Simple +.endif + .include Modified: head/graphics/p5-GraphViz2/distinfo ============================================================================== --- head/graphics/p5-GraphViz2/distinfo Thu Oct 8 18:42:48 2015 (r398841) +++ head/graphics/p5-GraphViz2/distinfo Thu Oct 8 18:42:52 2015 (r398842) @@ -1,2 +1,2 @@ -SHA256 (GraphViz2-2.34.tgz) = 8dcc582224aef093853370fede3cc0440d7c3f7b350c0bf0a04f66bb7c320286 -SIZE (GraphViz2-2.34.tgz) = 236040 +SHA256 (GraphViz2-2.36.tgz) = 0499c59755ae24c4be23d2d9bbb905e60f0286a0fdc832490ad56bce26a832b8 +SIZE (GraphViz2-2.36.tgz) = 200498 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:42:58 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 B64FF9D2E8A; Thu, 8 Oct 2015 18:42:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81642D31; Thu, 8 Oct 2015 18:42:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Igvn3059363; Thu, 8 Oct 2015 18:42:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IgvDh059362; Thu, 8 Oct 2015 18:42:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081842.t98IgvDh059362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:42:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398843 - head/sysutils/p5-Proc-PidUtil 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: Thu, 08 Oct 2015 18:42:58 -0000 Author: sunpoet Date: Thu Oct 8 18:42:57 2015 New Revision: 398843 URL: https://svnweb.freebsd.org/changeset/ports/398843 Log: - Add NO_ARCH Modified: head/sysutils/p5-Proc-PidUtil/Makefile Modified: head/sysutils/p5-Proc-PidUtil/Makefile ============================================================================== --- head/sysutils/p5-Proc-PidUtil/Makefile Thu Oct 8 18:42:52 2015 (r398842) +++ head/sysutils/p5-Proc-PidUtil/Makefile Thu Oct 8 18:42:57 2015 (r398843) @@ -14,6 +14,7 @@ COMMENT= PID file management utilities LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:03 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 D95CE9D2EB9; Thu, 8 Oct 2015 18:43:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6856AE16; Thu, 8 Oct 2015 18:43:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ih2BA059484; Thu, 8 Oct 2015 18:43:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ih2T3059482; Thu, 8 Oct 2015 18:43:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98Ih2T3059482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398844 - head/devel/rubygem-CFPropertyList 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: Thu, 08 Oct 2015 18:43:04 -0000 Author: sunpoet Date: Thu Oct 8 18:43:02 2015 New Revision: 398844 URL: https://svnweb.freebsd.org/changeset/ports/398844 Log: - Update to 2.3.2 - Add LICENSE_FILE Changes: https://github.com/ckruse/CFPropertyList/commits/master Modified: head/devel/rubygem-CFPropertyList/Makefile head/devel/rubygem-CFPropertyList/distinfo Modified: head/devel/rubygem-CFPropertyList/Makefile ============================================================================== --- head/devel/rubygem-CFPropertyList/Makefile Thu Oct 8 18:42:57 2015 (r398843) +++ head/devel/rubygem-CFPropertyList/Makefile Thu Oct 8 18:43:02 2015 (r398844) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CFPropertyList -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Read, write and manipulate both binary and XML property lists LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USE_RUBY= yes Modified: head/devel/rubygem-CFPropertyList/distinfo ============================================================================== --- head/devel/rubygem-CFPropertyList/distinfo Thu Oct 8 18:42:57 2015 (r398843) +++ head/devel/rubygem-CFPropertyList/distinfo Thu Oct 8 18:43:02 2015 (r398844) @@ -1,2 +1,2 @@ -SHA256 (rubygem/CFPropertyList-2.3.1.gem) = d368584640bac41886169a5bb409d8908e4e3fc48745701f5c4e3968fb1bd3f2 -SIZE (rubygem/CFPropertyList-2.3.1.gem) = 17920 +SHA256 (rubygem/CFPropertyList-2.3.2.gem) = e2f1b93707dfa2ae8b136caacab6e5307747c2ec4f3337ba8a907c6486214b56 +SIZE (rubygem/CFPropertyList-2.3.2.gem) = 17920 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:08 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 78F4B9D2EE0; Thu, 8 Oct 2015 18:43:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 406C0EE9; Thu, 8 Oct 2015 18:43:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ih78K059602; Thu, 8 Oct 2015 18:43:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ih7NO059600; Thu, 8 Oct 2015 18:43:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98Ih7NO059600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398845 - head/www/rubygem-faraday 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: Thu, 08 Oct 2015 18:43:08 -0000 Author: sunpoet Date: Thu Oct 8 18:43:06 2015 New Revision: 398845 URL: https://svnweb.freebsd.org/changeset/ports/398845 Log: - Update to 0.9.2 - Add LICENSE_FILE Changes: https://github.com/lostisland/faraday/releases Modified: head/www/rubygem-faraday/Makefile head/www/rubygem-faraday/distinfo Modified: head/www/rubygem-faraday/Makefile ============================================================================== --- head/www/rubygem-faraday/Makefile Thu Oct 8 18:43:02 2015 (r398844) +++ head/www/rubygem-faraday/Makefile Thu Oct 8 18:43:06 2015 (r398845) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= faraday -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.2 CATEGORIES= www rubygems MASTER_SITES= RG @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/REST API client library in Ruby LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-multipart-post>=1.2:${PORTSDIR}/www/rubygem-multipart-post Modified: head/www/rubygem-faraday/distinfo ============================================================================== --- head/www/rubygem-faraday/distinfo Thu Oct 8 18:43:02 2015 (r398844) +++ head/www/rubygem-faraday/distinfo Thu Oct 8 18:43:06 2015 (r398845) @@ -1,2 +1,2 @@ -SHA256 (rubygem/faraday-0.9.1.gem) = 5677350808cae1d7ee526fe8f78381c134193173292281ef63faf6efacfd63c0 -SIZE (rubygem/faraday-0.9.1.gem) = 59904 +SHA256 (rubygem/faraday-0.9.2.gem) = 0662e5caa257c256cff4b073deef5c73e3469d3ed0b8d6e9a05e6861efc4f4ce +SIZE (rubygem/faraday-0.9.2.gem) = 35840 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:13 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 0A5BC9D2EFD; Thu, 8 Oct 2015 18:43:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6AA0FB5; Thu, 8 Oct 2015 18:43:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhBJl059709; Thu, 8 Oct 2015 18:43:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhBbm059708; Thu, 8 Oct 2015 18:43:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhBbm059708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398846 - head/devel/rubygem-github_api 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: Thu, 08 Oct 2015 18:43:13 -0000 Author: sunpoet Date: Thu Oct 8 18:43:11 2015 New Revision: 398846 URL: https://svnweb.freebsd.org/changeset/ports/398846 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-github_api/Makefile Modified: head/devel/rubygem-github_api/Makefile ============================================================================== --- head/devel/rubygem-github_api/Makefile Thu Oct 8 18:43:06 2015 (r398845) +++ head/devel/rubygem-github_api/Makefile Thu Oct 8 18:43:11 2015 (r398846) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Wrapper that supports all of the GitHub API v3 methods LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.3:${PORTSDIR}/www/rubygem-addressable \ rubygem-descendants_tracker>=0.0.4:${PORTSDIR}/devel/rubygem-descendants_tracker \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:17 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 6EB959D2F3E; Thu, 8 Oct 2015 18:43:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 367DE100; Thu, 8 Oct 2015 18:43:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhGLM059809; Thu, 8 Oct 2015 18:43:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhGFF059808; Thu, 8 Oct 2015 18:43:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhGFF059808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398847 - head/net-im/rubygem-lita 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: Thu, 08 Oct 2015 18:43:17 -0000 Author: sunpoet Date: Thu Oct 8 18:43:16 2015 New Revision: 398847 URL: https://svnweb.freebsd.org/changeset/ports/398847 Log: - Add LICENSE_FILE Modified: head/net-im/rubygem-lita/Makefile Modified: head/net-im/rubygem-lita/Makefile ============================================================================== --- head/net-im/rubygem-lita/Makefile Thu Oct 8 18:43:11 2015 (r398846) +++ head/net-im/rubygem-lita/Makefile Thu Oct 8 18:43:16 2015 (r398847) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Multi-service chat bot with extendable behavior LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= redis>=0:${PORTSDIR}/databases/redis \ rubygem-bundler>=1.3:${PORTSDIR}/sysutils/rubygem-bundler \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43: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 AB3379D2F65; Thu, 8 Oct 2015 18:43:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78B3B1E7; Thu, 8 Oct 2015 18:43:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhK2M059912; Thu, 8 Oct 2015 18:43:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhKjl059911; Thu, 8 Oct 2015 18:43:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhKjl059911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398848 - head/net-im/rubygem-tinder 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: Thu, 08 Oct 2015 18:43:21 -0000 Author: sunpoet Date: Thu Oct 8 18:43:20 2015 New Revision: 398848 URL: https://svnweb.freebsd.org/changeset/ports/398848 Log: - Add LICENSE_FILE Modified: head/net-im/rubygem-tinder/Makefile Modified: head/net-im/rubygem-tinder/Makefile ============================================================================== --- head/net-im/rubygem-tinder/Makefile Thu Oct 8 18:43:16 2015 (r398847) +++ head/net-im/rubygem-tinder/Makefile Thu Oct 8 18:43:20 2015 (r398848) @@ -9,6 +9,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby API for interfacing with Campfire LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-eventmachine>=1.0:${PORTSDIR}/devel/rubygem-eventmachine \ rubygem-faraday>=0.9.0:${PORTSDIR}/www/rubygem-faraday\ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:26 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 44D3A9D2F88; Thu, 8 Oct 2015 18:43:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 11D022FA; Thu, 8 Oct 2015 18:43:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhPp3060012; Thu, 8 Oct 2015 18:43:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhPak060011; Thu, 8 Oct 2015 18:43:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhPak060011@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398849 - head/net/rubygem-oauth2 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: Thu, 08 Oct 2015 18:43:26 -0000 Author: sunpoet Date: Thu Oct 8 18:43:24 2015 New Revision: 398849 URL: https://svnweb.freebsd.org/changeset/ports/398849 Log: - Add LICENSE_FILE Modified: head/net/rubygem-oauth2/Makefile Modified: head/net/rubygem-oauth2/Makefile ============================================================================== --- head/net/rubygem-oauth2/Makefile Thu Oct 8 18:43:20 2015 (r398848) +++ head/net/rubygem-oauth2/Makefile Thu Oct 8 18:43:24 2015 (r398849) @@ -11,6 +11,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the OAuth 2.0 protocol LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=0.8:${PORTSDIR}/www/rubygem-faraday \ rubygem-jwt>=1:${PORTSDIR}/www/rubygem-jwt \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:30 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 A9E8C9D2FAD; Thu, 8 Oct 2015 18:43:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 749975F5; Thu, 8 Oct 2015 18:43:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhTDi060115; Thu, 8 Oct 2015 18:43:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhTO9060114; Thu, 8 Oct 2015 18:43:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhTO9060114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398850 - head/www/rubygem-faraday_middleware 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: Thu, 08 Oct 2015 18:43:30 -0000 Author: sunpoet Date: Thu Oct 8 18:43:29 2015 New Revision: 398850 URL: https://svnweb.freebsd.org/changeset/ports/398850 Log: - Add LICENSE_FILE Modified: head/www/rubygem-faraday_middleware/Makefile Modified: head/www/rubygem-faraday_middleware/Makefile ============================================================================== --- head/www/rubygem-faraday_middleware/Makefile Thu Oct 8 18:43:24 2015 (r398849) +++ head/www/rubygem-faraday_middleware/Makefile Thu Oct 8 18:43:29 2015 (r398850) @@ -10,11 +10,11 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Collection of Ruby Faraday middlewares LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=0.7.4:${PORTSDIR}/www/rubygem-faraday NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:35 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 0CB3E9D2FEF; Thu, 8 Oct 2015 18:43:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE7E6793; Thu, 8 Oct 2015 18:43:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhXmN060216; Thu, 8 Oct 2015 18:43:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhXCt060215; Thu, 8 Oct 2015 18:43:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhXCt060215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398851 - head/www/rubygem-feedjira 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: Thu, 08 Oct 2015 18:43:35 -0000 Author: sunpoet Date: Thu Oct 8 18:43:33 2015 New Revision: 398851 URL: https://svnweb.freebsd.org/changeset/ports/398851 Log: - Add LICENSE_FILE Modified: head/www/rubygem-feedjira/Makefile Modified: head/www/rubygem-feedjira/Makefile ============================================================================== --- head/www/rubygem-feedjira/Makefile Thu Oct 8 18:43:29 2015 (r398850) +++ head/www/rubygem-feedjira/Makefile Thu Oct 8 18:43:33 2015 (r398851) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Feed fetching and parsing library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday>=0.9:${PORTSDIR}/www/rubygem-faraday \ rubygem-faraday_middleware>=0.9:${PORTSDIR}/www/rubygem-faraday_middleware \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43: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 BFE4D9D101D; Thu, 8 Oct 2015 18:43:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68DE6877; Thu, 8 Oct 2015 18:43:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ihc34060318; Thu, 8 Oct 2015 18:43:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhcoK060317; Thu, 8 Oct 2015 18:43:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhcoK060317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398852 - head/www/rubygem-geminabox 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: Thu, 08 Oct 2015 18:43:39 -0000 Author: sunpoet Date: Thu Oct 8 18:43:38 2015 New Revision: 398852 URL: https://svnweb.freebsd.org/changeset/ports/398852 Log: - Add LICENSE_FILE Modified: head/www/rubygem-geminabox/Makefile Modified: head/www/rubygem-geminabox/Makefile ============================================================================== --- head/www/rubygem-geminabox/Makefile Thu Oct 8 18:43:33 2015 (r398851) +++ head/www/rubygem-geminabox/Makefile Thu Oct 8 18:43:38 2015 (r398852) @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sinatra based gem hosting app LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-builder32>=0:${PORTSDIR}/devel/rubygem-builder32 \ rubygem-faraday>=0:${PORTSDIR}/www/rubygem-faraday \ @@ -19,7 +20,6 @@ RUN_DEPENDS= rubygem-builder32>=0:${PORT rubygem-sinatra>=1.2.7:${PORTSDIR}/www/rubygem-sinatra NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43: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 0F05A9D104A; Thu, 8 Oct 2015 18:43:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D14D7949; Thu, 8 Oct 2015 18:43:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ihgo8060420; Thu, 8 Oct 2015 18:43:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ihgdw060419; Thu, 8 Oct 2015 18:43:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98Ihgdw060419@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398853 - head/www/rubygem-sawyer 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: Thu, 08 Oct 2015 18:43:44 -0000 Author: sunpoet Date: Thu Oct 8 18:43:42 2015 New Revision: 398853 URL: https://svnweb.freebsd.org/changeset/ports/398853 Log: - Add LICENSE_FILE Modified: head/www/rubygem-sawyer/Makefile Modified: head/www/rubygem-sawyer/Makefile ============================================================================== --- head/www/rubygem-sawyer/Makefile Thu Oct 8 18:43:38 2015 (r398852) +++ head/www/rubygem-sawyer/Makefile Thu Oct 8 18:43:42 2015 (r398853) @@ -10,12 +10,12 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Secret User Agent of HTTP LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=2.3.5:${PORTSDIR}/www/rubygem-addressable \ rubygem-faraday>=0.8:${PORTSDIR}/www/rubygem-faraday NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:48 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 565B69D107F; Thu, 8 Oct 2015 18:43:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 218A8A22; Thu, 8 Oct 2015 18:43:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IhlMO060523; Thu, 8 Oct 2015 18:43:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhlQn060522; Thu, 8 Oct 2015 18:43:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhlQn060522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398854 - head/emulators/rubygem-fission 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: Thu, 08 Oct 2015 18:43:48 -0000 Author: sunpoet Date: Thu Oct 8 18:43:47 2015 New Revision: 398854 URL: https://svnweb.freebsd.org/changeset/ports/398854 Log: - Add LICENSE_FILE Modified: head/emulators/rubygem-fission/Makefile Modified: head/emulators/rubygem-fission/Makefile ============================================================================== --- head/emulators/rubygem-fission/Makefile Thu Oct 8 18:43:42 2015 (r398853) +++ head/emulators/rubygem-fission/Makefile Thu Oct 8 18:43:47 2015 (r398854) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility to manage VMware Fusion VMs from the command line LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-CFPropertyList>=2.2:${PORTSDIR}/devel/rubygem-CFPropertyList From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:53 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 3E3FD9D10BB; Thu, 8 Oct 2015 18:43:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A882AFE; Thu, 8 Oct 2015 18:43:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ihq3P060644; Thu, 8 Oct 2015 18:43:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhqQW060642; Thu, 8 Oct 2015 18:43:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhqQW060642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398855 - head/devel/rubygem-gitlab_git 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: Thu, 08 Oct 2015 18:43:53 -0000 Author: sunpoet Date: Thu Oct 8 18:43:51 2015 New Revision: 398855 URL: https://svnweb.freebsd.org/changeset/ports/398855 Log: - Update to 7.2.18 Changes: https://github.com/gitlabhq/gitlab_git/blob/master/CHANGELOG Modified: head/devel/rubygem-gitlab_git/Makefile head/devel/rubygem-gitlab_git/distinfo Modified: head/devel/rubygem-gitlab_git/Makefile ============================================================================== --- head/devel/rubygem-gitlab_git/Makefile Thu Oct 8 18:43:47 2015 (r398854) +++ head/devel/rubygem-gitlab_git/Makefile Thu Oct 8 18:43:51 2015 (r398855) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitlab_git -PORTVERSION= 7.2.17 +PORTVERSION= 7.2.18 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-gitlab_git/distinfo ============================================================================== --- head/devel/rubygem-gitlab_git/distinfo Thu Oct 8 18:43:47 2015 (r398854) +++ head/devel/rubygem-gitlab_git/distinfo Thu Oct 8 18:43:51 2015 (r398855) @@ -1,2 +1,2 @@ -SHA256 (rubygem/gitlab_git-7.2.17.gem) = b9d911f6e848c738e6ad71dec9d6411803967eced47e205eaac748054460d371 -SIZE (rubygem/gitlab_git-7.2.17.gem) = 22528 +SHA256 (rubygem/gitlab_git-7.2.18.gem) = 8358fb9911ed294bff5b6bbe941dc37251f09d66b6c86237b378e1b5d7ab2dbe +SIZE (rubygem/gitlab_git-7.2.18.gem) = 23552 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:43:58 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 415D29D1110; Thu, 8 Oct 2015 18:43:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E424BEF; Thu, 8 Oct 2015 18:43:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ihvk2060760; Thu, 8 Oct 2015 18:43:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IhvDq060758; Thu, 8 Oct 2015 18:43:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081843.t98IhvDq060758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:43:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398856 - head/devel/rubygem-sprockets3 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: Thu, 08 Oct 2015 18:43:58 -0000 Author: sunpoet Date: Thu Oct 8 18:43:56 2015 New Revision: 398856 URL: https://svnweb.freebsd.org/changeset/ports/398856 Log: - Update to 3.4.0 - Add LICENSE_FILE Changes: https://github.com/rails/sprockets/blob/3.x/CHANGELOG.md Modified: head/devel/rubygem-sprockets3/Makefile head/devel/rubygem-sprockets3/distinfo Modified: head/devel/rubygem-sprockets3/Makefile ============================================================================== --- head/devel/rubygem-sprockets3/Makefile Thu Oct 8 18:43:51 2015 (r398855) +++ head/devel/rubygem-sprockets3/Makefile Thu Oct 8 18:43:56 2015 (r398856) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sprockets -PORTVERSION= 3.3.5 +PORTVERSION= 3.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library that preprocesses and concatenates JavaScript files LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack16>=1.0:${PORTSDIR}/www/rubygem-rack16 Modified: head/devel/rubygem-sprockets3/distinfo ============================================================================== --- head/devel/rubygem-sprockets3/distinfo Thu Oct 8 18:43:51 2015 (r398855) +++ head/devel/rubygem-sprockets3/distinfo Thu Oct 8 18:43:56 2015 (r398856) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sprockets-3.3.5.gem) = 413f41734a38daad56fa718f314853a0a4f5dd5810a5af1cfc15440be10743ed -SIZE (rubygem/sprockets-3.3.5.gem) = 68096 +SHA256 (rubygem/sprockets-3.4.0.gem) = 9589af673fd7818cb65219bf0a4842904c99cd4e88b8cf7cf8d0a3a65b8f17bc +SIZE (rubygem/sprockets-3.4.0.gem) = 68096 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44:03 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 06C1C9D1150; Thu, 8 Oct 2015 18:44:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C57EFCC6; Thu, 8 Oct 2015 18:44:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ii1Dt060882; Thu, 8 Oct 2015 18:44:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ii1Ws060881; Thu, 8 Oct 2015 18:44:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98Ii1Ws060881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398857 - head/devel/rubygem-sprockets-helpers 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: Thu, 08 Oct 2015 18:44:03 -0000 Author: sunpoet Date: Thu Oct 8 18:44:01 2015 New Revision: 398857 URL: https://svnweb.freebsd.org/changeset/ports/398857 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-sprockets-helpers/Makefile Modified: head/devel/rubygem-sprockets-helpers/Makefile ============================================================================== --- head/devel/rubygem-sprockets-helpers/Makefile Thu Oct 8 18:43:56 2015 (r398856) +++ head/devel/rubygem-sprockets-helpers/Makefile Thu Oct 8 18:44:01 2015 (r398857) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Asset path helpers for Sprockets 2.x applications LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-sprockets3>=2.2:${PORTSDIR}/devel/rubygem-sprockets3 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44:07 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 B13A89D118E; Thu, 8 Oct 2015 18:44:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C72EDB4; Thu, 8 Oct 2015 18:44:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ii6vV060985; Thu, 8 Oct 2015 18:44:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ii6fu060984; Thu, 8 Oct 2015 18:44:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98Ii6fu060984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398858 - head/devel/rubygem-sprockets-rails 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: Thu, 08 Oct 2015 18:44:07 -0000 Author: sunpoet Date: Thu Oct 8 18:44:06 2015 New Revision: 398858 URL: https://svnweb.freebsd.org/changeset/ports/398858 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-sprockets-rails/Makefile Modified: head/devel/rubygem-sprockets-rails/Makefile ============================================================================== --- head/devel/rubygem-sprockets-rails/Makefile Thu Oct 8 18:44:01 2015 (r398857) +++ head/devel/rubygem-sprockets-rails/Makefile Thu Oct 8 18:44:06 2015 (r398858) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sprockets Rails integration LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS?= rubygem-actionpack4>=4.0:${PORTSDIR}/www/rubygem-actionpack4 \ rubygem-activesupport4>=4.0:${PORTSDIR}/devel/rubygem-activesupport4 \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44:12 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 5CCC79D11CF; Thu, 8 Oct 2015 18:44:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27124E86; Thu, 8 Oct 2015 18:44:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IiBYt061101; Thu, 8 Oct 2015 18:44:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IiBvv061099; Thu, 8 Oct 2015 18:44:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98IiBvv061099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398859 - head/net/rubygem-domain_name 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: Thu, 08 Oct 2015 18:44:12 -0000 Author: sunpoet Date: Thu Oct 8 18:44:10 2015 New Revision: 398859 URL: https://svnweb.freebsd.org/changeset/ports/398859 Log: - Update to 0.5.25 Changes: https://github.com/knu/ruby-domain_name/commits/master Modified: head/net/rubygem-domain_name/Makefile head/net/rubygem-domain_name/distinfo Modified: head/net/rubygem-domain_name/Makefile ============================================================================== --- head/net/rubygem-domain_name/Makefile Thu Oct 8 18:44:06 2015 (r398858) +++ head/net/rubygem-domain_name/Makefile Thu Oct 8 18:44:10 2015 (r398859) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= domain_name -PORTVERSION= 0.5.24 +PORTVERSION= 0.5.25 CATEGORIES= net rubygems MASTER_SITES= RG @@ -14,7 +14,6 @@ LICENSE= BSD2CLAUSE RUN_DEPENDS= rubygem-unf>=0.0.5:${PORTSDIR}/textproc/rubygem-unf NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/net/rubygem-domain_name/distinfo ============================================================================== --- head/net/rubygem-domain_name/distinfo Thu Oct 8 18:44:06 2015 (r398858) +++ head/net/rubygem-domain_name/distinfo Thu Oct 8 18:44:10 2015 (r398859) @@ -1,2 +1,2 @@ -SHA256 (rubygem/domain_name-0.5.24.gem) = 8cbd6aea8859823f89aefeec49232e9d4377456fd42d08accfbc0cc6b32a55f6 -SIZE (rubygem/domain_name-0.5.24.gem) = 104448 +SHA256 (rubygem/domain_name-0.5.25.gem) = 5b492888a095f2f00027a268932c93d0432bf8ada568a5c601ff53ce6a761b9b +SIZE (rubygem/domain_name-0.5.25.gem) = 112128 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44:16 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 B59C99D1227; Thu, 8 Oct 2015 18:44:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E80BF63; Thu, 8 Oct 2015 18:44:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IiFBv061207; Thu, 8 Oct 2015 18:44:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IiFZL061206; Thu, 8 Oct 2015 18:44:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98IiFZL061206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398860 - head/textproc/rubygem-sass-rails5 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: Thu, 08 Oct 2015 18:44:16 -0000 Author: sunpoet Date: Thu Oct 8 18:44:15 2015 New Revision: 398860 URL: https://svnweb.freebsd.org/changeset/ports/398860 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-sass-rails5/Makefile Modified: head/textproc/rubygem-sass-rails5/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails5/Makefile Thu Oct 8 18:44:10 2015 (r398859) +++ head/textproc/rubygem-sass-rails5/Makefile Thu Oct 8 18:44:15 2015 (r398860) @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44: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 ACF319D1261; Thu, 8 Oct 2015 18:44:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40A8710B7; Thu, 8 Oct 2015 18:44:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IiLsN061405; Thu, 8 Oct 2015 18:44:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IiKnf061399; Thu, 8 Oct 2015 18:44:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98IiKnf061399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398861 - in head/graphics: ming ming/files p5-ming p5-ming/files py-ming 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: Thu, 08 Oct 2015 18:44:22 -0000 Author: sunpoet Date: Thu Oct 8 18:44:20 2015 New Revision: 398861 URL: https://svnweb.freebsd.org/changeset/ports/398861 Log: - Update to 0.4.7 - Add LICENSE_FILE Changes: https://github.com/libming/libming/blob/master/NEWS Deleted: head/graphics/ming/files/ head/graphics/p5-ming/files/ Modified: head/graphics/ming/Makefile head/graphics/ming/distinfo head/graphics/ming/pkg-plist head/graphics/p5-ming/Makefile head/graphics/py-ming/Makefile Modified: head/graphics/ming/Makefile ============================================================================== --- head/graphics/ming/Makefile Thu Oct 8 18:44:15 2015 (r398860) +++ head/graphics/ming/Makefile Thu Oct 8 18:44:20 2015 (r398861) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= ming -PORTVERSION= 0.4.5 -PORTREVISION?= 6 +PORTVERSION= 0.4.7 CATEGORIES= graphics -MASTER_SITES= SF/${PORTNAME}/Releases/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flash 4/5 movie output library with many languages support LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_GPL2 +LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ libgif.so:${PORTSDIR}/graphics/giflib \ @@ -27,33 +27,37 @@ OPTIONS_DEFINE= DOCS CONFIGURE_ARGS+=--includedir=${PREFIX}/include/ming CPPFLAGS+= -I. -I.. -I${LOCALBASE}/include -LDFLAGS+= -L. -L.. -L${LOCALBASE}/lib GNU_CONFIGURE= yes INSTALL_TARGET= install-strip +LDFLAGS+= -L. -L.. -L${LOCALBASE}/lib MAKE_JOBS_UNSAFE= yes +PATHFIX_MAKEFILEIN= Makefile.am USE_LDCONFIG= yes -USES+= bison gmake libtool pathfix shebangfix +USES+= autoreconf bison gmake libtool pathfix shebangfix DOCS= HISTORY NEWS README TODO DOCS_UTIL= README TIPS TODO swftoperl.html +USE_GITHUB= yes +GH_ACCOUNT= lib${PORTNAME} +GH_PROJECT= lib${PORTNAME} +GH_TAGNAME= ${PORTNAME}-${PORTVERSION:S|.|_|g} + SHEBANG_FILES= util/cws2fws SLAVEDIRS= graphics/p5-ming graphics/py-ming post-patch: - @${REINPLACE_CMD} -e 's|ungif|gif|g' ${WRKSRC}/configure ${WRKSRC}/docs/man/Makefile \ - ${WRKSRC}/perl_ext/Makefile.PL ${WRKSRC}/py_ext/setup.py.in - @${REINPLACE_CMD} -e '/PrintGifError();/d' ${WRKSRC}/src/blocks/gifdbl.c \ - ${WRKSRC}/util/gif2dbl.c ${WRKSRC}/util/gif2mask.c - @${REINPLACE_CMD} -e 's|#if GIFLIB_GIFERRORSTRING|#if 0|' ${WRKSRC}/src/libming.h +# @${REINPLACE_CMD} -e 's|ungif|gif|g' ${WRKSRC}/configure.in ${WRKSRC}/docs/man/Makefile.am ${WRKSRC}/perl_ext/Makefile.PL ${WRKSRC}/py_ext/setup.py.in +# @${REINPLACE_CMD} -e '/PrintGifError();/d' ${WRKSRC}/src/blocks/gifdbl.c ${WRKSRC}/util/gif2dbl.c ${WRKSRC}/util/gif2mask.c +# @${REINPLACE_CMD} -e 's|#if GIFLIB_GIFERRORSTRING|#if 0|' ${WRKSRC}/src/libming.h # patch for graphics/p5-ming @${REINPLACE_CMD} -e '/ming_is_compiled()/ s|^|#|; /LIBS/d' ${WRKSRC}/perl_ext/Makefile.PL @${REINPLACE_CMD} -e 's|\.3pm|.3|g' ${WRKSRC}/perl_ext/Makefile.PL ${WRKSRC}/perl_ext/mkdoc @${REINPLACE_CMD} -e 's|GvCV(\(.*\)) = \(.*\);|GvCV_set(\1, \2);|' ${WRKSRC}/perl_ext/Exports.c @${REINPLACE_CMD} -e '1 s|/usr/bin/perl|${PERL}|' ${WRKSRC}/perl_ext/examples/*.cgi # patch for graphics/py-ming - @${REINPLACE_CMD} -e 's| --root ".*"||' ${WRKSRC}/py_ext/Makefile.in + @${REINPLACE_CMD} -e 's| --root ".*"||' ${WRKSRC}/py_ext/Makefile.am @${REINPLACE_CMD} -e 's|/usr/local/|${LOCALBASE}/|g' ${WRKSRC}/py_ext/setup.py.in @${LN} -sf ${LOCALBASE}/include/ming ${WRKSRC}/src Modified: head/graphics/ming/distinfo ============================================================================== --- head/graphics/ming/distinfo Thu Oct 8 18:44:15 2015 (r398860) +++ head/graphics/ming/distinfo Thu Oct 8 18:44:20 2015 (r398861) @@ -1,2 +1,2 @@ -SHA256 (ming-0.4.5.tar.gz) = f73f171424b5907efbba0be0824ab9dd425c61544229c1825c32bff565e65143 -SIZE (ming-0.4.5.tar.gz) = 15029578 +SHA256 (libming-libming-0.4.7-ming-0_4_7_GH0.tar.gz) = 118aa1338dd74b34dd2cd22bce286ca0571e8b9aa433999646d1c0157ea9a7dc +SIZE (libming-libming-0.4.7-ming-0_4_7_GH0.tar.gz) = 14903570 Modified: head/graphics/ming/pkg-plist ============================================================================== --- head/graphics/ming/pkg-plist Thu Oct 8 18:44:15 2015 (r398860) +++ head/graphics/ming/pkg-plist Thu Oct 8 18:44:20 2015 (r398861) @@ -103,7 +103,7 @@ include/ming/util/vasprintf.h lib/libming.a lib/libming.so lib/libming.so.1 -lib/libming.so.1.4.4 +lib/libming.so.1.4.6 libdata/pkgconfig/libming.pc %%PORTDOCS%%%%DOCSDIR%%/HISTORY %%PORTDOCS%%%%DOCSDIR%%/NEWS Modified: head/graphics/p5-ming/Makefile ============================================================================== --- head/graphics/p5-ming/Makefile Thu Oct 8 18:44:15 2015 (r398860) +++ head/graphics/p5-ming/Makefile Thu Oct 8 18:44:20 2015 (r398861) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= ming -PORTREVISION= 4 CATEGORIES= graphics perl5 PKGNAMEPREFIX= p5- @@ -11,6 +10,8 @@ COMMENT= Perl5 module for Ming which all LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_GPL2 +LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE OPTIONS_DEFINE= EXAMPLES Modified: head/graphics/py-ming/Makefile ============================================================================== --- head/graphics/py-ming/Makefile Thu Oct 8 18:44:15 2015 (r398860) +++ head/graphics/py-ming/Makefile Thu Oct 8 18:44:20 2015 (r398861) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= ming -PORTREVISION= 4 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,6 +10,8 @@ COMMENT= Python module for Ming which al LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_GPL2 +LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE CONFIGURE_ARGS= --enable-python USE_PYTHON= autoplist distutils From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44: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 B7F049D12EC; Thu, 8 Oct 2015 18:44:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 821341212; Thu, 8 Oct 2015 18:44:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Iingj061532; Thu, 8 Oct 2015 18:44:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IinuY061530; Thu, 8 Oct 2015 18:44:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98IinuY061530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398862 - head/databases/p5-Dancer-Plugin-Database-Core 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: Thu, 08 Oct 2015 18:44:50 -0000 Author: sunpoet Date: Thu Oct 8 18:44:49 2015 New Revision: 398862 URL: https://svnweb.freebsd.org/changeset/ports/398862 Log: - Update to 0.13 Changes: http://search.cpan.org/dist/Dancer-Plugin-Database-Core/Changes Modified: head/databases/p5-Dancer-Plugin-Database-Core/Makefile head/databases/p5-Dancer-Plugin-Database-Core/distinfo Modified: head/databases/p5-Dancer-Plugin-Database-Core/Makefile ============================================================================== --- head/databases/p5-Dancer-Plugin-Database-Core/Makefile Thu Oct 8 18:44:20 2015 (r398861) +++ head/databases/p5-Dancer-Plugin-Database-Core/Makefile Thu Oct 8 18:44:49 2015 (r398862) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Dancer-Plugin-Database-Core -PORTVERSION= 0.12 +PORTVERSION= 0.13 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-Dancer-Plugin-Database-Core/distinfo ============================================================================== --- head/databases/p5-Dancer-Plugin-Database-Core/distinfo Thu Oct 8 18:44:20 2015 (r398861) +++ head/databases/p5-Dancer-Plugin-Database-Core/distinfo Thu Oct 8 18:44:49 2015 (r398862) @@ -1,2 +1,2 @@ -SHA256 (Dancer-Plugin-Database-Core-0.12.tar.gz) = 7b9bae84d4cacb11fa9eae6ffc441c16511867e79d958d828b492b836ac2dad1 -SIZE (Dancer-Plugin-Database-Core-0.12.tar.gz) = 15625 +SHA256 (Dancer-Plugin-Database-Core-0.13.tar.gz) = e070d60b26873876c4377b977c902680cfac0c31fbbee93c4b2fc0e10d79d5a1 +SIZE (Dancer-Plugin-Database-Core-0.13.tar.gz) = 15724 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:44:55 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 71FF49D1314; Thu, 8 Oct 2015 18:44:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 398121234; Thu, 8 Oct 2015 18:44:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IisAV061649; Thu, 8 Oct 2015 18:44:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Iis63061647; Thu, 8 Oct 2015 18:44:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98Iis63061647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398863 - head/databases/p5-Mojo-Pg 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: Thu, 08 Oct 2015 18:44:55 -0000 Author: sunpoet Date: Thu Oct 8 18:44:53 2015 New Revision: 398863 URL: https://svnweb.freebsd.org/changeset/ports/398863 Log: - Update to 2.12 Changes: http://search.cpan.org/dist/Mojo-Pg/Changes Modified: head/databases/p5-Mojo-Pg/Makefile head/databases/p5-Mojo-Pg/distinfo Modified: head/databases/p5-Mojo-Pg/Makefile ============================================================================== --- head/databases/p5-Mojo-Pg/Makefile Thu Oct 8 18:44:49 2015 (r398862) +++ head/databases/p5-Mojo-Pg/Makefile Thu Oct 8 18:44:53 2015 (r398863) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojo-Pg -PORTVERSION= 2.11 +PORTVERSION= 2.12 CATEGORIES= databases www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/databases/p5-Mojo-Pg/distinfo ============================================================================== --- head/databases/p5-Mojo-Pg/distinfo Thu Oct 8 18:44:49 2015 (r398862) +++ head/databases/p5-Mojo-Pg/distinfo Thu Oct 8 18:44:53 2015 (r398863) @@ -1,2 +1,2 @@ -SHA256 (Mojo-Pg-2.11.tar.gz) = aed783cef578b9a01fce6a2f22495dd3c5ab366a8460b9aa48775ee18319fc35 -SIZE (Mojo-Pg-2.11.tar.gz) = 23841 +SHA256 (Mojo-Pg-2.12.tar.gz) = 1765fc3fdf5773b40a0080e300d4b18b5d14838b00643f88f0ae4e62d351b51d +SIZE (Mojo-Pg-2.12.tar.gz) = 23843 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:00 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 849E29D133D; Thu, 8 Oct 2015 18:45:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BE16130D; Thu, 8 Oct 2015 18:45:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IixLO061784; Thu, 8 Oct 2015 18:44:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IixtA061781; Thu, 8 Oct 2015 18:44:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081844.t98IixtA061781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398864 - head/devel/p5-Coro 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: Thu, 08 Oct 2015 18:45:00 -0000 Author: sunpoet Date: Thu Oct 8 18:44:58 2015 New Revision: 398864 URL: https://svnweb.freebsd.org/changeset/ports/398864 Log: - Update to 6.48 - Strip shared library - Convert to new options target helper - Sort PLIST Changes: http://search.cpan.org/dist/Coro/Changes Modified: head/devel/p5-Coro/Makefile head/devel/p5-Coro/distinfo head/devel/p5-Coro/pkg-plist Modified: head/devel/p5-Coro/Makefile ============================================================================== --- head/devel/p5-Coro/Makefile Thu Oct 8 18:44:53 2015 (r398863) +++ head/devel/p5-Coro/Makefile Thu Oct 8 18:44:58 2015 (r398864) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Coro -PORTVERSION= 6.47 +PORTVERSION= 6.48 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN @@ -34,15 +34,23 @@ PORTEXAMPLES= * SHEBANG_FILES= Coro/*.pl eg/* perl_OLD_CMD= /.*/bin/perl -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ ${STAGEDIR}${EXAMPLESDIR}/ - ${INSTALL_DATA} ${WRKSRC}/doc/cede-vs-schedule ${STAGEDIR}${DOCSDIR}/ - ${INSTALL_SCRIPT} ${WRKSRC}/eg/* ${STAGEDIR}${EXAMPLESDIR}/ - .include .if ${PERL_LEVEL} >= 502200 BROKEN= Perl >= 5.22 is not supported .endif +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Coro/EV/EV.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Coro/Event/Event.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Coro/State/State.so + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/doc/cede-vs-schedule ${STAGEDIR}${DOCSDIR}/ + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + ${INSTALL_SCRIPT} ${WRKSRC}/eg/* ${STAGEDIR}${EXAMPLESDIR}/ + .include Modified: head/devel/p5-Coro/distinfo ============================================================================== --- head/devel/p5-Coro/distinfo Thu Oct 8 18:44:53 2015 (r398863) +++ head/devel/p5-Coro/distinfo Thu Oct 8 18:44:58 2015 (r398864) @@ -1,2 +1,2 @@ -SHA256 (Coro-6.47.tar.gz) = c341cd0968d61948eefcb83c4fafaf3c5b81e12676c4198e3bae2dbc1ae0c00f -SIZE (Coro-6.47.tar.gz) = 191649 +SHA256 (Coro-6.48.tar.gz) = fe3dd716ad66530a185b96b0fa3e1a973ad8ca152c45641682ac49a849ca01ae +SIZE (Coro-6.48.tar.gz) = 191735 Modified: head/devel/p5-Coro/pkg-plist ============================================================================== --- head/devel/p5-Coro/pkg-plist Thu Oct 8 18:44:53 2015 (r398863) +++ head/devel/p5-Coro/pkg-plist Thu Oct 8 18:44:58 2015 (r398864) @@ -1,26 +1,3 @@ -%%PERL5_MAN3%%/Coro.3.gz -%%PERL5_MAN3%%/Coro::AIO.3.gz -%%PERL5_MAN3%%/Coro::AnyEvent.3.gz -%%PERL5_MAN3%%/Coro::BDB.3.gz -%%PERL5_MAN3%%/Coro::Channel.3.gz -%%PERL5_MAN3%%/Coro::Debug.3.gz -%%PERL5_MAN3%%/Coro::EV.3.gz -%%PERL5_MAN3%%/Coro::Event.3.gz -%%PERL5_MAN3%%/Coro::Handle.3.gz -%%PERL5_MAN3%%/Coro::Intro.3.gz -%%PERL5_MAN3%%/Coro::LWP.3.gz -%%PERL5_MAN3%%/Coro::MakeMaker.3.gz -%%PERL5_MAN3%%/Coro::RWLock.3.gz -%%PERL5_MAN3%%/Coro::Select.3.gz -%%PERL5_MAN3%%/Coro::Semaphore.3.gz -%%PERL5_MAN3%%/Coro::SemaphoreSet.3.gz -%%PERL5_MAN3%%/Coro::Signal.3.gz -%%PERL5_MAN3%%/Coro::Socket.3.gz -%%PERL5_MAN3%%/Coro::Specific.3.gz -%%PERL5_MAN3%%/Coro::State.3.gz -%%PERL5_MAN3%%/Coro::Storable.3.gz -%%PERL5_MAN3%%/Coro::Timer.3.gz -%%PERL5_MAN3%%/Coro::Util.3.gz %%SITE_ARCH%%/Coro.pm %%SITE_ARCH%%/Coro/AIO.pm %%SITE_ARCH%%/Coro/AnyEvent.pm @@ -50,3 +27,26 @@ %%SITE_ARCH%%/auto/Coro/EV/EV.so %%SITE_ARCH%%/auto/Coro/Event/Event.so %%SITE_ARCH%%/auto/Coro/State/State.so +%%PERL5_MAN3%%/Coro.3.gz +%%PERL5_MAN3%%/Coro::AIO.3.gz +%%PERL5_MAN3%%/Coro::AnyEvent.3.gz +%%PERL5_MAN3%%/Coro::BDB.3.gz +%%PERL5_MAN3%%/Coro::Channel.3.gz +%%PERL5_MAN3%%/Coro::Debug.3.gz +%%PERL5_MAN3%%/Coro::EV.3.gz +%%PERL5_MAN3%%/Coro::Event.3.gz +%%PERL5_MAN3%%/Coro::Handle.3.gz +%%PERL5_MAN3%%/Coro::Intro.3.gz +%%PERL5_MAN3%%/Coro::LWP.3.gz +%%PERL5_MAN3%%/Coro::MakeMaker.3.gz +%%PERL5_MAN3%%/Coro::RWLock.3.gz +%%PERL5_MAN3%%/Coro::Select.3.gz +%%PERL5_MAN3%%/Coro::Semaphore.3.gz +%%PERL5_MAN3%%/Coro::SemaphoreSet.3.gz +%%PERL5_MAN3%%/Coro::Signal.3.gz +%%PERL5_MAN3%%/Coro::Socket.3.gz +%%PERL5_MAN3%%/Coro::Specific.3.gz +%%PERL5_MAN3%%/Coro::State.3.gz +%%PERL5_MAN3%%/Coro::Storable.3.gz +%%PERL5_MAN3%%/Coro::Timer.3.gz +%%PERL5_MAN3%%/Coro::Util.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45: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 0238B9D1388; Thu, 8 Oct 2015 18:45:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3373151D; Thu, 8 Oct 2015 18:45:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ij9ka062047; Thu, 8 Oct 2015 18:45:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ij9hI062044; Thu, 8 Oct 2015 18:45:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98Ij9hI062044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398866 - head/devel/p5-Log-Any-App 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: Thu, 08 Oct 2015 18:45:11 -0000 Author: sunpoet Date: Thu Oct 8 18:45:09 2015 New Revision: 398866 URL: https://svnweb.freebsd.org/changeset/ports/398866 Log: - Update to 0.51 Changes: http://search.cpan.org/dist/Log-Any-App/Changes Modified: head/devel/p5-Log-Any-App/Makefile head/devel/p5-Log-Any-App/distinfo Modified: head/devel/p5-Log-Any-App/Makefile ============================================================================== --- head/devel/p5-Log-Any-App/Makefile Thu Oct 8 18:45:04 2015 (r398865) +++ head/devel/p5-Log-Any-App/Makefile Thu Oct 8 18:45:09 2015 (r398866) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Log-Any-App -PORTVERSION= 0.49 +PORTVERSION= 0.51 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Log-Any-App/distinfo ============================================================================== --- head/devel/p5-Log-Any-App/distinfo Thu Oct 8 18:45:04 2015 (r398865) +++ head/devel/p5-Log-Any-App/distinfo Thu Oct 8 18:45:09 2015 (r398866) @@ -1,2 +1,2 @@ -SHA256 (Log-Any-App-0.49.tar.gz) = 4673ad7cbec5a178f5d48b2d55dcb23d164f4ba909f19c0a7038636b78f64663 -SIZE (Log-Any-App-0.49.tar.gz) = 48732 +SHA256 (Log-Any-App-0.51.tar.gz) = 983f9cb791a0f22c7a6ae9520b780933d529c22f3ec9b71d624ddfbe514169f7 +SIZE (Log-Any-App-0.51.tar.gz) = 50677 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:05 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 D684E9D135C; Thu, 8 Oct 2015 18:45:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B4CB13C5; Thu, 8 Oct 2015 18:45:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ij4OI061929; Thu, 8 Oct 2015 18:45:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ij46g061926; Thu, 8 Oct 2015 18:45:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98Ij46g061926@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398865 - head/devel/p5-DateTime-Format-Strptime 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: Thu, 08 Oct 2015 18:45:05 -0000 Author: sunpoet Date: Thu Oct 8 18:45:04 2015 New Revision: 398865 URL: https://svnweb.freebsd.org/changeset/ports/398865 Log: - Update to 1.57 - Sort PLIST Changes: http://search.cpan.org/dist/DateTime-Format-Strptime/Changes Modified: head/devel/p5-DateTime-Format-Strptime/Makefile head/devel/p5-DateTime-Format-Strptime/distinfo head/devel/p5-DateTime-Format-Strptime/pkg-plist Modified: head/devel/p5-DateTime-Format-Strptime/Makefile ============================================================================== --- head/devel/p5-DateTime-Format-Strptime/Makefile Thu Oct 8 18:44:58 2015 (r398864) +++ head/devel/p5-DateTime-Format-Strptime/Makefile Thu Oct 8 18:45:04 2015 (r398865) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DateTime-Format-Strptime -PORTVERSION= 1.56 +PORTVERSION= 1.57 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN Modified: head/devel/p5-DateTime-Format-Strptime/distinfo ============================================================================== --- head/devel/p5-DateTime-Format-Strptime/distinfo Thu Oct 8 18:44:58 2015 (r398864) +++ head/devel/p5-DateTime-Format-Strptime/distinfo Thu Oct 8 18:45:04 2015 (r398865) @@ -1,2 +1,2 @@ -SHA256 (DateTime-Format-Strptime-1.56.tar.gz) = 2ff69d0f5a0359aab04e7276db5bee3be10040da24fbf09de1d904e7ead78b28 -SIZE (DateTime-Format-Strptime-1.56.tar.gz) = 36863 +SHA256 (DateTime-Format-Strptime-1.57.tar.gz) = 87fe0184d760f780de2405b2dffd579e19c755d006f1c4e799eb3d3476892659 +SIZE (DateTime-Format-Strptime-1.57.tar.gz) = 40220 Modified: head/devel/p5-DateTime-Format-Strptime/pkg-plist ============================================================================== --- head/devel/p5-DateTime-Format-Strptime/pkg-plist Thu Oct 8 18:44:58 2015 (r398864) +++ head/devel/p5-DateTime-Format-Strptime/pkg-plist Thu Oct 8 18:45:04 2015 (r398865) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/DateTime::Format::Strptime.3.gz %%SITE_PERL%%/DateTime/Format/Strptime.pm +%%PERL5_MAN3%%/DateTime::Format::Strptime.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:16 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 19AF59D13C0; Thu, 8 Oct 2015 18:45:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCE1A161C; Thu, 8 Oct 2015 18:45:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IjE0U062162; Thu, 8 Oct 2015 18:45:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjEtj062160; Thu, 8 Oct 2015 18:45:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjEtj062160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398867 - head/devel/p5-MooseX-Method-Signatures 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: Thu, 08 Oct 2015 18:45:16 -0000 Author: sunpoet Date: Thu Oct 8 18:45:14 2015 New Revision: 398867 URL: https://svnweb.freebsd.org/changeset/ports/398867 Log: - Update to 0.49 - Add NO_ARCH Changes: http://search.cpan.org/dist/MooseX-Method-Signatures/Changes Modified: head/devel/p5-MooseX-Method-Signatures/Makefile head/devel/p5-MooseX-Method-Signatures/distinfo Modified: head/devel/p5-MooseX-Method-Signatures/Makefile ============================================================================== --- head/devel/p5-MooseX-Method-Signatures/Makefile Thu Oct 8 18:45:09 2015 (r398866) +++ head/devel/p5-MooseX-Method-Signatures/Makefile Thu Oct 8 18:45:14 2015 (r398867) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MooseX-Method-Signatures -PORTVERSION= 0.48 +PORTVERSION= 0.49 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -27,12 +27,13 @@ BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0. p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken \ p5-aliased>=0:${PORTSDIR}/devel/p5-aliased \ p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean \ - p5-namespace-clean>=0:${PORTSDIR}/devel/p5-namespace-clean + p5-namespace-clean>=0.19:${PORTSDIR}/devel/p5-namespace-clean RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Eval-Closure>=0:${PORTSDIR}/devel/p5-Eval-Closure \ p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal +NO_ARCH= yes USES= perl5 USE_PERL5= modbuildtiny Modified: head/devel/p5-MooseX-Method-Signatures/distinfo ============================================================================== --- head/devel/p5-MooseX-Method-Signatures/distinfo Thu Oct 8 18:45:09 2015 (r398866) +++ head/devel/p5-MooseX-Method-Signatures/distinfo Thu Oct 8 18:45:14 2015 (r398867) @@ -1,2 +1,2 @@ -SHA256 (MooseX-Method-Signatures-0.48.tar.gz) = ae28113f59545a84a3d7ef7f6c8aa1d17b006e53ea384651c75547bcd3afeb4c -SIZE (MooseX-Method-Signatures-0.48.tar.gz) = 50635 +SHA256 (MooseX-Method-Signatures-0.49.tar.gz) = 3a3c12bcb1d1b2e6d4bc3fbba06e242255fddab87c12c0d540366a3905193a12 +SIZE (MooseX-Method-Signatures-0.49.tar.gz) = 52729 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45: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 239369D13EF; Thu, 8 Oct 2015 18:45:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D48551831; Thu, 8 Oct 2015 18:45:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IjJZg062297; Thu, 8 Oct 2015 18:45:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjJ8r062294; Thu, 8 Oct 2015 18:45:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjJ8r062294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398868 - head/devel/p5-namespace-clean 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: Thu, 08 Oct 2015 18:45:21 -0000 Author: sunpoet Date: Thu Oct 8 18:45:19 2015 New Revision: 398868 URL: https://svnweb.freebsd.org/changeset/ports/398868 Log: - Update to 0.26 Changes: http://search.cpan.org/dist/namespace-clean/Changes Modified: head/devel/p5-namespace-clean/Makefile head/devel/p5-namespace-clean/distinfo head/devel/p5-namespace-clean/pkg-plist Modified: head/devel/p5-namespace-clean/Makefile ============================================================================== --- head/devel/p5-namespace-clean/Makefile Thu Oct 8 18:45:14 2015 (r398867) +++ head/devel/p5-namespace-clean/Makefile Thu Oct 8 18:45:19 2015 (r398868) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= namespace-clean -PORTVERSION= 0.25 -PORTREVISION= 2 +PORTVERSION= 0.26 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-namespace-clean/distinfo ============================================================================== --- head/devel/p5-namespace-clean/distinfo Thu Oct 8 18:45:14 2015 (r398867) +++ head/devel/p5-namespace-clean/distinfo Thu Oct 8 18:45:19 2015 (r398868) @@ -1,2 +1,2 @@ -SHA256 (namespace-clean-0.25.tar.gz) = 946a2b7b8219562818867ad915cd493637e2639f901db050b835500c8e6ecd04 -SIZE (namespace-clean-0.25.tar.gz) = 12816 +SHA256 (namespace-clean-0.26.tar.gz) = 73986e19c4ad0e634e35f4f26e81437f152d8026eb1d91fe795725746ce13eca +SIZE (namespace-clean-0.26.tar.gz) = 15414 Modified: head/devel/p5-namespace-clean/pkg-plist ============================================================================== --- head/devel/p5-namespace-clean/pkg-plist Thu Oct 8 18:45:14 2015 (r398867) +++ head/devel/p5-namespace-clean/pkg-plist Thu Oct 8 18:45:19 2015 (r398868) @@ -1,2 +1,3 @@ %%SITE_PERL%%/namespace/clean.pm +%%SITE_PERL%%/namespace/clean/_Util.pm %%PERL5_MAN3%%/namespace::clean.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:25 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 903B59D143C; Thu, 8 Oct 2015 18:45:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55FBF18E7; Thu, 8 Oct 2015 18:45:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IjO4X062407; Thu, 8 Oct 2015 18:45:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjOfl062406; Thu, 8 Oct 2015 18:45:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjOfl062406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398869 - head/net/p5-SOAP-XML-Client 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: Thu, 08 Oct 2015 18:45:25 -0000 Author: sunpoet Date: Thu Oct 8 18:45:24 2015 New Revision: 398869 URL: https://svnweb.freebsd.org/changeset/ports/398869 Log: - Fix *_DEPENDS: Carp, Encode and Scalar::Util are already in all supported Perl releases - Update *_DEPENDS - Add PORTSCOUT - Add NO_ARCH - Bump PORTREVISION for dependency change Modified: head/net/p5-SOAP-XML-Client/Makefile Modified: head/net/p5-SOAP-XML-Client/Makefile ============================================================================== --- head/net/p5-SOAP-XML-Client/Makefile Thu Oct 8 18:45:19 2015 (r398868) +++ head/net/p5-SOAP-XML-Client/Makefile Thu Oct 8 18:45:24 2015 (r398869) @@ -3,6 +3,7 @@ PORTNAME= SOAP-XML-Client PORTVERSION= 2.8 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,16 +14,16 @@ COMMENT= Simple frame work for talking w LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp>0:${PORTSDIR}/devel/p5-Carp \ - p5-Class-Accessor>0:${PORTSDIR}/devel/p5-Class-Accessor \ - p5-Encode>0:${PORTSDIR}/converters/p5-Encode \ - p5-File-Slurp>0:${PORTSDIR}/devel/p5-File-Slurp \ - p5-SOAP-Data-Builder>0:${PORTSDIR}/net/p5-SOAP-Data-Builder \ - p5-SOAP-Lite>0:${PORTSDIR}/net/p5-SOAP-Lite \ - p5-Scalar-List-Utils>0:${PORTSDIR}/lang/p5-Scalar-List-Utils \ - p5-XML-LibXML>0:${PORTSDIR}/textproc/p5-XML-LibXML +BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ + p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp \ + p5-SOAP-Data-Builder>=0.8:${PORTSDIR}/net/p5-SOAP-Data-Builder \ + p5-SOAP-Lite>=0.67:${PORTSDIR}/net/p5-SOAP-Lite \ + p5-XML-LibXML>=0.6:${PORTSDIR}/textproc/p5-XML-LibXML RUN_DEPENDS:= ${BUILD_DEPENDS} +PORTSCOUT= skipv:2.26 + +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:30 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 610F29D1469; Thu, 8 Oct 2015 18:45:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B01F19DA; Thu, 8 Oct 2015 18:45:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IjTKf062545; Thu, 8 Oct 2015 18:45:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjTBQ062541; Thu, 8 Oct 2015 18:45:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjTBQ062541@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398870 - head/textproc/p5-Text-NSP 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: Thu, 08 Oct 2015 18:45:30 -0000 Author: sunpoet Date: Thu Oct 8 18:45:28 2015 New Revision: 398870 URL: https://svnweb.freebsd.org/changeset/ports/398870 Log: - Update to 1.31 - Add NO_ARCH - Convert to new options target helper - Fix indent - Sort PLIST Changes: http://search.cpan.org/dist/Text-NSP/CHANGES Modified: head/textproc/p5-Text-NSP/Makefile head/textproc/p5-Text-NSP/distinfo head/textproc/p5-Text-NSP/pkg-plist Modified: head/textproc/p5-Text-NSP/Makefile ============================================================================== --- head/textproc/p5-Text-NSP/Makefile Thu Oct 8 18:45:24 2015 (r398869) +++ head/textproc/p5-Text-NSP/Makefile Thu Oct 8 18:45:28 2015 (r398870) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Text-NSP -PORTVERSION= 1.27 -PORTREVISION= 1 +PORTVERSION= 1.31 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,17 +13,18 @@ COMMENT= Perl5 modules for Ngram Statist LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual +NO_ARCH= yes USES= perl5 USE_PERL5= configure -DOCS= CHANGES README doc/FAQ.pod doc/NSP-Class-diagram.pdf \ - doc/NSP-Class-diagram.png doc/README.pod doc/TODO.pod \ - doc/USAGE.pod doc/cicling2003.pdf doc/cicling2003.ps +DOCS= CHANGES README doc/FAQ.pod doc/NSP-Class-diagram.pdf \ + doc/NSP-Class-diagram.png doc/README.pod doc/TODO.pod \ + doc/USAGE.pod doc/cicling2003.pdf doc/cicling2003.ps PORTDOCS= * OPTIONS_DEFINE= DOCS -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}) Modified: head/textproc/p5-Text-NSP/distinfo ============================================================================== --- head/textproc/p5-Text-NSP/distinfo Thu Oct 8 18:45:24 2015 (r398869) +++ head/textproc/p5-Text-NSP/distinfo Thu Oct 8 18:45:28 2015 (r398870) @@ -1,2 +1,2 @@ -SHA256 (Text-NSP-1.27.tar.gz) = 1fe103e613ba1873852b2ebead52ca1b438eb0b5ee9c570a621c427f108e5dd5 -SIZE (Text-NSP-1.27.tar.gz) = 1006878 +SHA256 (Text-NSP-1.31.tar.gz) = a01201beb29636b3e41ecda2a6cf6522fd265416bd6d994fad02f59fb49cf595 +SIZE (Text-NSP-1.31.tar.gz) = 1019796 Modified: head/textproc/p5-Text-NSP/pkg-plist ============================================================================== --- head/textproc/p5-Text-NSP/pkg-plist Thu Oct 8 18:45:24 2015 (r398869) +++ head/textproc/p5-Text-NSP/pkg-plist Thu Oct 8 18:45:28 2015 (r398870) @@ -13,39 +13,6 @@ bin/kocos.pl bin/rank-script.sh bin/rank.pl bin/statistic.pl -%%PERL5_MAN3%%/Text::NSP.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::phi.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::tscore.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::x2.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice::dice.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice::jaccard.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::left.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::right.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::twotailed.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::left.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::right.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::twotailed.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::ll.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::pmi.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::ps.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::tmi.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::2D::odds.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::ll.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::pmi.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::ps.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::tmi.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::4D.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::4D::MI.3.gz -%%PERL5_MAN3%%/Text::NSP::Measures::4D::MI::ll.3.gz %%SITE_PERL%%/Text/NSP.pm %%SITE_PERL%%/Text/NSP/Measures.pm %%SITE_PERL%%/Text/NSP/Measures/2D.pm @@ -91,3 +58,36 @@ bin/statistic.pl %%PERL5_MAN1%%/kocos.pl.1.gz %%PERL5_MAN1%%/rank.pl.1.gz %%PERL5_MAN1%%/statistic.pl.1.gz +%%PERL5_MAN3%%/Text::NSP.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::phi.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::tscore.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::CHI::x2.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice::dice.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Dice::jaccard.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::left.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::right.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher2::twotailed.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::left.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::right.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::Fisher::twotailed.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::ll.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::pmi.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::ps.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::MI::tmi.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::2D::odds.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::ll.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::pmi.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::ps.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::3D::MI::tmi.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::4D.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::4D::MI.3.gz +%%PERL5_MAN3%%/Text::NSP::Measures::4D::MI::ll.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:35 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 BB8AF9D14B7; Thu, 8 Oct 2015 18:45:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BF931B19; Thu, 8 Oct 2015 18:45:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IjY5u062680; Thu, 8 Oct 2015 18:45:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjYVD062677; Thu, 8 Oct 2015 18:45:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjYVD062677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398871 - head/textproc/p5-Text-Similarity 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: Thu, 08 Oct 2015 18:45:35 -0000 Author: sunpoet Date: Thu Oct 8 18:45:34 2015 New Revision: 398871 URL: https://svnweb.freebsd.org/changeset/ports/398871 Log: - Update to 0.11 - Update LICENSE - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Text-Similarity/CHANGES Modified: head/textproc/p5-Text-Similarity/Makefile head/textproc/p5-Text-Similarity/distinfo head/textproc/p5-Text-Similarity/pkg-plist Modified: head/textproc/p5-Text-Similarity/Makefile ============================================================================== --- head/textproc/p5-Text-Similarity/Makefile Thu Oct 8 18:45:28 2015 (r398870) +++ head/textproc/p5-Text-Similarity/Makefile Thu Oct 8 18:45:34 2015 (r398871) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Text-Similarity -PORTVERSION= 0.10 -PORTREVISION= 1 +PORTVERSION= 0.11 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,8 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Measure the similarity of text documents -LICENSE= GPLv2 # (or later) +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/GPL.txt +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/textproc/p5-Text-Similarity/distinfo ============================================================================== --- head/textproc/p5-Text-Similarity/distinfo Thu Oct 8 18:45:28 2015 (r398870) +++ head/textproc/p5-Text-Similarity/distinfo Thu Oct 8 18:45:34 2015 (r398871) @@ -1,2 +1,2 @@ -SHA256 (Text-Similarity-0.10.tar.gz) = 724e8e3d047c3bf14e16d541438f7eeb7ff6c9ca857795936bec2a68457913cd -SIZE (Text-Similarity-0.10.tar.gz) = 40984 +SHA256 (Text-Similarity-0.11.tar.gz) = e669849fecb47da057338ca99d84d9b0bc8ad0ee9389caa0be650a7343ef8778 +SIZE (Text-Similarity-0.11.tar.gz) = 42220 Modified: head/textproc/p5-Text-Similarity/pkg-plist ============================================================================== --- head/textproc/p5-Text-Similarity/pkg-plist Thu Oct 8 18:45:28 2015 (r398870) +++ head/textproc/p5-Text-Similarity/pkg-plist Thu Oct 8 18:45:34 2015 (r398871) @@ -1,8 +1,8 @@ bin/text_similarity.pl -%%PERL5_MAN3%%/Text::OverlapFinder.3.gz -%%PERL5_MAN3%%/Text::Similarity.3.gz -%%PERL5_MAN3%%/Text::Similarity::Overlaps.3.gz %%SITE_PERL%%/Text/OverlapFinder.pm %%SITE_PERL%%/Text/Similarity.pm %%SITE_PERL%%/Text/Similarity/Overlaps.pm %%PERL5_MAN1%%/text_similarity.pl.1.gz +%%PERL5_MAN3%%/Text::OverlapFinder.3.gz +%%PERL5_MAN3%%/Text::Similarity.3.gz +%%PERL5_MAN3%%/Text::Similarity::Overlaps.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45:40 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 6ABDB9D14ED; Thu, 8 Oct 2015 18:45:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B58B1C61; Thu, 8 Oct 2015 18:45:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ijd8G062814; Thu, 8 Oct 2015 18:45:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjdmT062810; Thu, 8 Oct 2015 18:45:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjdmT062810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398872 - head/textproc/p5-WordNet-Similarity 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: Thu, 08 Oct 2015 18:45:40 -0000 Author: sunpoet Date: Thu Oct 8 18:45:38 2015 New Revision: 398872 URL: https://svnweb.freebsd.org/changeset/ports/398872 Log: - Update to 2.07 - Add LICENSE - Update and sort *_DEPENDS - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/WordNet-Similarity/CHANGES Modified: head/textproc/p5-WordNet-Similarity/Makefile head/textproc/p5-WordNet-Similarity/distinfo head/textproc/p5-WordNet-Similarity/pkg-plist Modified: head/textproc/p5-WordNet-Similarity/Makefile ============================================================================== --- head/textproc/p5-WordNet-Similarity/Makefile Thu Oct 8 18:45:34 2015 (r398871) +++ head/textproc/p5-WordNet-Similarity/Makefile Thu Oct 8 18:45:38 2015 (r398872) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= WordNet-Similarity -PORTVERSION= 2.05 -PORTREVISION= 1 +PORTVERSION= 2.07 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,13 +10,17 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Modules/CLI to determine semantic relatedness using the WordNet -BUILD_DEPENDS= p5-WordNet-QueryData>=0:${PORTSDIR}/textproc/p5-WordNet-QueryData \ - p5-Text-Similarity>=0:${PORTSDIR}/textproc/p5-Text-Similarity \ - p5-Digest-SHA1>=2.10:${PORTSDIR}/security/p5-Digest-SHA1 +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ + p5-Text-Similarity>=0.10:${PORTSDIR}/textproc/p5-Text-Similarity \ + p5-WordNet-QueryData>=1.49:${PORTSDIR}/textproc/p5-WordNet-QueryData RUN_DEPENDS:= ${BUILD_DEPENDS} WNHOME?= ${LOCALBASE}/share/WordNet +NO_ARCH= yes USES= perl5 USE_PERL5= configure CONFIGURE_ARGS= WNHOME=${WNHOME} Modified: head/textproc/p5-WordNet-Similarity/distinfo ============================================================================== --- head/textproc/p5-WordNet-Similarity/distinfo Thu Oct 8 18:45:34 2015 (r398871) +++ head/textproc/p5-WordNet-Similarity/distinfo Thu Oct 8 18:45:38 2015 (r398872) @@ -1,2 +1,2 @@ -SHA256 (WordNet-Similarity-2.05.tar.gz) = 2fb49f1ed74e6aac6bf4e4bed89057d3e8c405fde6d1ea20f6b9007031420b19 -SIZE (WordNet-Similarity-2.05.tar.gz) = 5846871 +SHA256 (WordNet-Similarity-2.07.tar.gz) = 3ee3df2f5ff3ba80ea296378cdfa48f308587fc9053b08325491329bd6c1791d +SIZE (WordNet-Similarity-2.07.tar.gz) = 5766219 Modified: head/textproc/p5-WordNet-Similarity/pkg-plist ============================================================================== --- head/textproc/p5-WordNet-Similarity/pkg-plist Thu Oct 8 18:45:34 2015 (r398871) +++ head/textproc/p5-WordNet-Similarity/pkg-plist Thu Oct 8 18:45:38 2015 (r398872) @@ -9,27 +9,6 @@ bin/similarity_server.pl bin/treebankFreq.pl bin/wnDepths.pl bin/wordVectors.pl -%%PERL5_MAN3%%/WordNet::Similarity.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::DepthFinder.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::FrequencyCounter.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::GlossFinder.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::ICFinder.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::PathFinder.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::hso.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::jcn.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::lch.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::lesk.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::lin.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::path.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::random.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::res.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::vector.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::vector_pairs.3.gz -%%PERL5_MAN3%%/WordNet::Similarity::wup.3.gz -%%PERL5_MAN3%%/WordNet::Tools.3.gz -%%PERL5_MAN3%%/WordNet::get_wn_info.3.gz -%%PERL5_MAN3%%/WordNet::stem.3.gz -%%PERL5_MAN3%%/WordNet::vectorFile.3.gz %%SITE_PERL%%/WordNet/Similarity.pm %%SITE_PERL%%/WordNet/Similarity/DepthFinder.pm %%SITE_PERL%%/WordNet/Similarity/FrequencyCounter.pm @@ -69,3 +48,24 @@ bin/wordVectors.pl %%PERL5_MAN1%%/treebankFreq.pl.1.gz %%PERL5_MAN1%%/wnDepths.pl.1.gz %%PERL5_MAN1%%/wordVectors.pl.1.gz +%%PERL5_MAN3%%/WordNet::Similarity.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::DepthFinder.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::FrequencyCounter.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::GlossFinder.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::ICFinder.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::PathFinder.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::hso.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::jcn.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::lch.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::lesk.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::lin.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::path.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::random.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::res.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::vector.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::vector_pairs.3.gz +%%PERL5_MAN3%%/WordNet::Similarity::wup.3.gz +%%PERL5_MAN3%%/WordNet::Tools.3.gz +%%PERL5_MAN3%%/WordNet::get_wn_info.3.gz +%%PERL5_MAN3%%/WordNet::stem.3.gz +%%PERL5_MAN3%%/WordNet::vectorFile.3.gz From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45: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 2A06C9D1517; Thu, 8 Oct 2015 18:45:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E58E31D5D; Thu, 8 Oct 2015 18:45:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ijhrg062933; Thu, 8 Oct 2015 18:45:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ijhm5062931; Thu, 8 Oct 2015 18:45:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98Ijhm5062931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398873 - head/www/p5-Catalyst-View-TT 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: Thu, 08 Oct 2015 18:45:45 -0000 Author: sunpoet Date: Thu Oct 8 18:45:43 2015 New Revision: 398873 URL: https://svnweb.freebsd.org/changeset/ports/398873 Log: - Update to 0.44 Changes: http://search.cpan.org/dist/Catalyst-View-TT/Changes Modified: head/www/p5-Catalyst-View-TT/Makefile head/www/p5-Catalyst-View-TT/distinfo Modified: head/www/p5-Catalyst-View-TT/Makefile ============================================================================== --- head/www/p5-Catalyst-View-TT/Makefile Thu Oct 8 18:45:38 2015 (r398872) +++ head/www/p5-Catalyst-View-TT/Makefile Thu Oct 8 18:45:43 2015 (r398873) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Catalyst-View-TT -PORTVERSION= 0.43 +PORTVERSION= 0.44 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,6 +15,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \ p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ + p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump \ p5-MRO-Compat>=0:${PORTSDIR}/devel/p5-MRO-Compat \ p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \ p5-Template-Timer>=0:${PORTSDIR}/www/p5-Template-Timer \ Modified: head/www/p5-Catalyst-View-TT/distinfo ============================================================================== --- head/www/p5-Catalyst-View-TT/distinfo Thu Oct 8 18:45:38 2015 (r398872) +++ head/www/p5-Catalyst-View-TT/distinfo Thu Oct 8 18:45:43 2015 (r398873) @@ -1,2 +1,2 @@ -SHA256 (Catalyst-View-TT-0.43.tar.gz) = 6d97a4031fb638aed2ed3b9e3410c0d50ab98b6d1c691de705dd0dbaf1a9d76f -SIZE (Catalyst-View-TT-0.43.tar.gz) = 26829 +SHA256 (Catalyst-View-TT-0.44.tar.gz) = 706744ddf3f2a0701c490d148372679a7ef2919bb97bbba467d3ac65c9fba119 +SIZE (Catalyst-View-TT-0.44.tar.gz) = 26933 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:45: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 B22C19D1551; Thu, 8 Oct 2015 18:45:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E2231E42; Thu, 8 Oct 2015 18:45:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ijmeq063050; Thu, 8 Oct 2015 18:45:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IjmOr063048; Thu, 8 Oct 2015 18:45:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081845.t98IjmOr063048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:45:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398874 - head/www/p5-CGI-Ex 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: Thu, 08 Oct 2015 18:45:49 -0000 Author: sunpoet Date: Thu Oct 8 18:45:48 2015 New Revision: 398874 URL: https://svnweb.freebsd.org/changeset/ports/398874 Log: - Update to 2.44 Changes: http://search.cpan.org/dist/CGI-Ex/Changes Modified: head/www/p5-CGI-Ex/Makefile head/www/p5-CGI-Ex/distinfo Modified: head/www/p5-CGI-Ex/Makefile ============================================================================== --- head/www/p5-CGI-Ex/Makefile Thu Oct 8 18:45:43 2015 (r398873) +++ head/www/p5-CGI-Ex/Makefile Thu Oct 8 18:45:48 2015 (r398874) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CGI-Ex -PORTVERSION= 2.43 +PORTVERSION= 2.44 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-CGI-Ex/distinfo ============================================================================== --- head/www/p5-CGI-Ex/distinfo Thu Oct 8 18:45:43 2015 (r398873) +++ head/www/p5-CGI-Ex/distinfo Thu Oct 8 18:45:48 2015 (r398874) @@ -1,2 +1,2 @@ -SHA256 (CGI-Ex-2.43.tar.gz) = 30b759639926ae851e782923b9ca305bfc822bf3e049da518f666f34e81b7f51 -SIZE (CGI-Ex-2.43.tar.gz) = 192688 +SHA256 (CGI-Ex-2.44.tar.gz) = 09cf5233c7d0400c0238cc4a26ca33c9c5eb242cb73df9917396cdc9c8fc2398 +SIZE (CGI-Ex-2.44.tar.gz) = 192755 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:02 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 2962C9D172D; Thu, 8 Oct 2015 18:47:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E621EB4; Thu, 8 Oct 2015 18:47:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Il05I063248; Thu, 8 Oct 2015 18:47:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Il01h063247; Thu, 8 Oct 2015 18:47:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98Il01h063247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398875 - head/devel/rubygem-blobstore_client/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: Thu, 08 Oct 2015 18:47:02 -0000 Author: sunpoet Date: Thu Oct 8 18:47:00 2015 New Revision: 398875 URL: https://svnweb.freebsd.org/changeset/ports/398875 Log: - Rename gemspec patch to patch-gemspec Added: head/devel/rubygem-blobstore_client/files/patch-gemspec - copied unchanged from r398833, head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec Deleted: head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec Copied: head/devel/rubygem-blobstore_client/files/patch-gemspec (from r398833, head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-blobstore_client/files/patch-gemspec Thu Oct 8 18:47:00 2015 (r398875, copy of r398833, head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec) @@ -0,0 +1,13 @@ +--- blobstore_client.gemspec.orig 2015-08-10 18:41:21 UTC ++++ blobstore_client.gemspec +@@ -24,8 +24,8 @@ Gem::Specification.new do |s| + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, ["= 1.60.2"]) +- s.add_runtime_dependency(%q, ["~> 1.27.0"]) +- s.add_runtime_dependency(%q, ["= 2.4.0"]) ++ s.add_runtime_dependency(%q, ["~> 1.27"]) ++ s.add_runtime_dependency(%q, [">= 2.4.0"]) + s.add_runtime_dependency(%q, ["~> 1.1"]) + s.add_runtime_dependency(%q, ["~> 1.0.5"]) + s.add_runtime_dependency(%q, ["~> 1.2941.0"]) From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:07 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 183F09D175F; Thu, 8 Oct 2015 18:47:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C386E121; Thu, 8 Oct 2015 18:47:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Il522063367; Thu, 8 Oct 2015 18:47:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Il5Yt063364; Thu, 8 Oct 2015 18:47:05 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98Il5Yt063364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398876 - head/devel/rubygem-redis-activesupport 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: Thu, 08 Oct 2015 18:47:07 -0000 Author: sunpoet Date: Thu Oct 8 18:47:05 2015 New Revision: 398876 URL: https://svnweb.freebsd.org/changeset/ports/398876 Log: - Update to 4.1.4 Changes: https://github.com/redis-store/redis-activesupport/commits/master Modified: head/devel/rubygem-redis-activesupport/Makefile head/devel/rubygem-redis-activesupport/distinfo Modified: head/devel/rubygem-redis-activesupport/Makefile ============================================================================== --- head/devel/rubygem-redis-activesupport/Makefile Thu Oct 8 18:47:00 2015 (r398875) +++ head/devel/rubygem-redis-activesupport/Makefile Thu Oct 8 18:47:05 2015 (r398876) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= redis-activesupport -PORTVERSION= 4.1.3 +PORTVERSION= 4.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-redis-activesupport/distinfo ============================================================================== --- head/devel/rubygem-redis-activesupport/distinfo Thu Oct 8 18:47:00 2015 (r398875) +++ head/devel/rubygem-redis-activesupport/distinfo Thu Oct 8 18:47:05 2015 (r398876) @@ -1,2 +1,2 @@ -SHA256 (rubygem/redis-activesupport-4.1.3.gem) = 7ddd87bdbc26a6e2852af57d25c8aafdbd049cbf1b49653e13c082a3d418b910 -SIZE (rubygem/redis-activesupport-4.1.3.gem) = 11776 +SHA256 (rubygem/redis-activesupport-4.1.4.gem) = e140afe883dd8baeac1eaa128886651261695438226e575fc024d0091dc251f2 +SIZE (rubygem/redis-activesupport-4.1.4.gem) = 11776 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47: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 903829D178A; Thu, 8 Oct 2015 18:47:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5731EE; Thu, 8 Oct 2015 18:47:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlA0d063483; Thu, 8 Oct 2015 18:47:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlA8x063481; Thu, 8 Oct 2015 18:47:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlA8x063481@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398877 - head/sysutils/rubygem-puppet_forge 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: Thu, 08 Oct 2015 18:47:11 -0000 Author: sunpoet Date: Thu Oct 8 18:47:10 2015 New Revision: 398877 URL: https://svnweb.freebsd.org/changeset/ports/398877 Log: - Update to 2.1.1 Changes: https://github.com/puppetlabs/forge-ruby/blob/master/CHANGELOG.md Modified: head/sysutils/rubygem-puppet_forge/Makefile head/sysutils/rubygem-puppet_forge/distinfo Modified: head/sysutils/rubygem-puppet_forge/Makefile ============================================================================== --- head/sysutils/rubygem-puppet_forge/Makefile Thu Oct 8 18:47:05 2015 (r398876) +++ head/sysutils/rubygem-puppet_forge/Makefile Thu Oct 8 18:47:10 2015 (r398877) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= puppet_forge -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-puppet_forge/distinfo ============================================================================== --- head/sysutils/rubygem-puppet_forge/distinfo Thu Oct 8 18:47:05 2015 (r398876) +++ head/sysutils/rubygem-puppet_forge/distinfo Thu Oct 8 18:47:10 2015 (r398877) @@ -1,2 +1,2 @@ -SHA256 (rubygem/puppet_forge-2.1.0.gem) = 95bfc8794681d51324c0db030eafc76151bbd247797b2769452027b7e902f0d7 -SIZE (rubygem/puppet_forge-2.1.0.gem) = 768512 +SHA256 (rubygem/puppet_forge-2.1.1.gem) = f4a429ffbb417e430a956d01d991b3c5ee72175b98d74453f7cc43eb8b8885df +SIZE (rubygem/puppet_forge-2.1.1.gem) = 768512 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:16 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 2CF149D17C6; Thu, 8 Oct 2015 18:47:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED37B302; Thu, 8 Oct 2015 18:47:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlFQe063604; Thu, 8 Oct 2015 18:47:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlEaD063602; Thu, 8 Oct 2015 18:47:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlEaD063602@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398878 - head/portuguese/hunspell 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: Thu, 08 Oct 2015 18:47:16 -0000 Author: sunpoet Date: Thu Oct 8 18:47:14 2015 New Revision: 398878 URL: https://svnweb.freebsd.org/changeset/ports/398878 Log: - Update to 20151003 Modified: head/portuguese/hunspell/Makefile head/portuguese/hunspell/distinfo Modified: head/portuguese/hunspell/Makefile ============================================================================== --- head/portuguese/hunspell/Makefile Thu Oct 8 18:47:10 2015 (r398877) +++ head/portuguese/hunspell/Makefile Thu Oct 8 18:47:14 2015 (r398878) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20150704 +PORTVERSION= 20151003 CATEGORIES= portuguese textproc MASTER_SITES= http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/:PT \ http://www.broffice.org/files/:BR \ Modified: head/portuguese/hunspell/distinfo ============================================================================== --- head/portuguese/hunspell/distinfo Thu Oct 8 18:47:10 2015 (r398877) +++ head/portuguese/hunspell/distinfo Thu Oct 8 18:47:14 2015 (r398878) @@ -1,4 +1,4 @@ -SHA256 (hunspell/hunspell-pt_PT-20150704.tar.gz) = 2cf4b5ff5e48744636adc310fc9b57e8e5d3e38df2c73512924c0466e6aeb76f -SIZE (hunspell/hunspell-pt_PT-20150704.tar.gz) = 255687 +SHA256 (hunspell/hunspell-pt_PT-20151003.tar.gz) = acd5a74a7ffa7cc454e33ce6e945c6cd1700b401e8b794e9bf23f46e1fbeb94a +SIZE (hunspell/hunspell-pt_PT-20151003.tar.gz) = 255686 SHA256 (hunspell/pt_BR-2012-06-09AOC.zip) = 883d616f2f302a34802e8a60e17c2d6d292c9d125022c0f79ab4a60870c73f4f SIZE (hunspell/pt_BR-2012-06-09AOC.zip) = 1362087 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47: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 ABEB99D17F4; Thu, 8 Oct 2015 18:47:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75C535E7; Thu, 8 Oct 2015 18:47:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlJoG063724; Thu, 8 Oct 2015 18:47:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlJ7a063722; Thu, 8 Oct 2015 18:47:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlJ7a063722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398879 - head/german/mythes 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: Thu, 08 Oct 2015 18:47:20 -0000 Author: sunpoet Date: Thu Oct 8 18:47:19 2015 New Revision: 398879 URL: https://svnweb.freebsd.org/changeset/ports/398879 Log: - Update to 2015.10.04 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Thu Oct 8 18:47:14 2015 (r398878) +++ head/german/mythes/Makefile Thu Oct 8 18:47:19 2015 (r398879) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.09.27 +PORTVERSION= 2015.10.04 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Thu Oct 8 18:47:14 2015 (r398878) +++ head/german/mythes/distinfo Thu Oct 8 18:47:19 2015 (r398879) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20150927.oxt) = 5d1c6f2c9986aca1ec70674075826f592ab07cc7a14ea22f4f6e4dd4f4ad7249 -SIZE (mythes/Deutscher-Thesaurus-20150927.oxt) = 7148447 +SHA256 (mythes/Deutscher-Thesaurus-20151004.oxt) = 7fb804207d2837c55e121d5421f7cfc19caed7bef4b43757cfec118d4733ca5c +SIZE (mythes/Deutscher-Thesaurus-20151004.oxt) = 7158947 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:25 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 3DC189D181F; Thu, 8 Oct 2015 18:47:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01BDD7E7; Thu, 8 Oct 2015 18:47:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlObY063843; Thu, 8 Oct 2015 18:47:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlNZp063841; Thu, 8 Oct 2015 18:47:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlNZp063841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398880 - head/textproc/nl-mythes 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: Thu, 08 Oct 2015 18:47:25 -0000 Author: sunpoet Date: Thu Oct 8 18:47:23 2015 New Revision: 398880 URL: https://svnweb.freebsd.org/changeset/ports/398880 Log: - Update to 2015.10.04 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Thu Oct 8 18:47:19 2015 (r398879) +++ head/textproc/nl-mythes/Makefile Thu Oct 8 18:47:23 2015 (r398880) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.09.27 +PORTVERSION= 2015.10.04 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Thu Oct 8 18:47:19 2015 (r398879) +++ head/textproc/nl-mythes/distinfo Thu Oct 8 18:47:23 2015 (r398880) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20150927.oxt) = 3ae5e720a0b8973082482ffed493f8db8d2605bc669a28e059c728cba8018de7 -SIZE (mythes/thes_nl-20150927.oxt) = 1956070 +SHA256 (mythes/thes_nl-20151004.oxt) = 35789b0d5fa3813cb2bb852b0119787e9d2af537aff9a7c7e7b7eb2298f73a54 +SIZE (mythes/thes_nl-20151004.oxt) = 1956070 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:30 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 F3BF89D1857; Thu, 8 Oct 2015 18:47:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9A7993D; Thu, 8 Oct 2015 18:47:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlSQG063961; Thu, 8 Oct 2015 18:47:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlSHt063959; Thu, 8 Oct 2015 18:47:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlSHt063959@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398881 - head/textproc/sk-mythes 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: Thu, 08 Oct 2015 18:47:30 -0000 Author: sunpoet Date: Thu Oct 8 18:47:28 2015 New Revision: 398881 URL: https://svnweb.freebsd.org/changeset/ports/398881 Log: - Update to 2015.10.04 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Thu Oct 8 18:47:23 2015 (r398880) +++ head/textproc/sk-mythes/Makefile Thu Oct 8 18:47:28 2015 (r398881) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.09.27 +PORTVERSION= 2015.10.04 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Thu Oct 8 18:47:23 2015 (r398880) +++ head/textproc/sk-mythes/distinfo Thu Oct 8 18:47:28 2015 (r398881) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20150927.zip) = 5f51f85b7dbe5d39f5777517e0b269c3573280284224135c61eaf379ea4493b9 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20150927.zip) = 239160 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20151004.zip) = f75d0c4ff853b2ccebc440a29de93deb007624cd70b0abd572c5ade3d14b49ec +SIZE (mythes/OOo-Thesaurus2-sk_SK-20151004.zip) = 239160 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:47:43 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 E81229D18DC; Thu, 8 Oct 2015 18:47:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6982C27; Thu, 8 Oct 2015 18:47:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IlgOV064092; Thu, 8 Oct 2015 18:47:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IlgW9064090; Thu, 8 Oct 2015 18:47:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081847.t98IlgW9064090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 18:47:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398882 - head/textproc/sl-mythes 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: Thu, 08 Oct 2015 18:47:44 -0000 Author: sunpoet Date: Thu Oct 8 18:47:42 2015 New Revision: 398882 URL: https://svnweb.freebsd.org/changeset/ports/398882 Log: - Update to 2015.10.04 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Thu Oct 8 18:47:28 2015 (r398881) +++ head/textproc/sl-mythes/Makefile Thu Oct 8 18:47:42 2015 (r398882) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.09.27 +PORTVERSION= 2015.10.04 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Thu Oct 8 18:47:28 2015 (r398881) +++ head/textproc/sl-mythes/distinfo Thu Oct 8 18:47:42 2015 (r398882) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20150927.zip) = f4bfd769cc74f8150980d4a9186dec2e44d0c1690766cb1b56a0b69f500b0234 -SIZE (mythes/thes_sl_SI_v2-20150927.zip) = 374657 +SHA256 (mythes/thes_sl_SI_v2-20151004.zip) = 7e36df3c857986d0aff3eca4ba7f863be238e8fd280a62d27baeed8e33721e55 +SIZE (mythes/thes_sl_SI_v2-20151004.zip) = 374655 From owner-svn-ports-head@freebsd.org Thu Oct 8 18:51: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 F37EC9D1D82; Thu, 8 Oct 2015 18:51:50 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD8D0FF8; Thu, 8 Oct 2015 18:51:50 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Ipn2G066982; Thu, 8 Oct 2015 18:51:49 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Ipnxl066980; Thu, 8 Oct 2015 18:51:49 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510081851.t98Ipnxl066980@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 8 Oct 2015 18:51:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398883 - head/dns/dnsdist 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: Thu, 08 Oct 2015 18:51:51 -0000 Author: pi Date: Thu Oct 8 18:51:49 2015 New Revision: 398883 URL: https://svnweb.freebsd.org/changeset/ports/398883 Log: dns/dnsdist: 0.0.251g6efad44 -> 0.0.281gade4ced - added support for RRs CDS, CDNSKEY, among other changes PR: 203613 Submitted by: Carlos J. Puga Medina (maintainer) Modified: head/dns/dnsdist/Makefile head/dns/dnsdist/distinfo Modified: head/dns/dnsdist/Makefile ============================================================================== --- head/dns/dnsdist/Makefile Thu Oct 8 18:47:42 2015 (r398882) +++ head/dns/dnsdist/Makefile Thu Oct 8 18:51:49 2015 (r398883) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dnsdist -DISTVERSION= 0.0.251g6efad44 +DISTVERSION= 0.0.281gade4ced CATEGORIES= dns net MASTER_SITES= http://builder.powerdns.com/files/dnsdist/dist/ Modified: head/dns/dnsdist/distinfo ============================================================================== --- head/dns/dnsdist/distinfo Thu Oct 8 18:47:42 2015 (r398882) +++ head/dns/dnsdist/distinfo Thu Oct 8 18:51:49 2015 (r398883) @@ -1,2 +1,2 @@ -SHA256 (dnsdist-0.0.251g6efad44.tar.bz2) = 237ebbc88e27c3840491c8ffc70b8048c7a181df56a82ddd84d1d42d7f572b59 -SIZE (dnsdist-0.0.251g6efad44.tar.bz2) = 559756 +SHA256 (dnsdist-0.0.281gade4ced.tar.bz2) = 0dfb9c00fcaed707aedca1b8b1adbebaaf73010deb269143f206a86063bb8ace +SIZE (dnsdist-0.0.281gade4ced.tar.bz2) = 560342 From owner-svn-ports-head@freebsd.org Thu Oct 8 18: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 1A18C9D22EA; Thu, 8 Oct 2015 18:59:42 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBDA27C2; Thu, 8 Oct 2015 18:59:41 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98IxeTu067562; Thu, 8 Oct 2015 18:59:40 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98IxenW067561; Thu, 8 Oct 2015 18:59:40 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201510081859.t98IxenW067561@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Thu, 8 Oct 2015 18:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398884 - head/devel/tcltls 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: Thu, 08 Oct 2015 18:59:42 -0000 Author: mi Date: Thu Oct 8 18:59:40 2015 New Revision: 398884 URL: https://svnweb.freebsd.org/changeset/ports/398884 Log: Do not install tls.h -- it does not declare anything useful but conflicts with the file installed by LibreSSL. PR: 202676 Modified: head/devel/tcltls/Makefile Modified: head/devel/tcltls/Makefile ============================================================================== --- head/devel/tcltls/Makefile Thu Oct 8 18:51:49 2015 (r398883) +++ head/devel/tcltls/Makefile Thu Oct 8 18:59:40 2015 (r398884) @@ -3,6 +3,7 @@ PORTNAME= tcltls PORTVERSION= 1.6.7 +PORTREVISION= 1 CATEGORIES= devel tcl MASTER_SITES= SF/tls/tls/${PORTVERSION} DISTNAME= tls${PORTVERSION}-src @@ -26,11 +27,12 @@ CONFIGURE_ARGS+=--exec-prefix=${PREFIX} TCLPKG= tls${PORTVERSION} WRKSRC= ${WRKDIR}/${TCLPKG} -PLIST_FILES= include/tls.h \ +PLIST_FILES= \ lib/${TCLPKG}/libtls.so.1 \ lib/${TCLPKG}/pkgIndex.tcl \ lib/${TCLPKG}/tls.tcl PORTDOCS= * +INSTALL_TARGET= install-binaries install-doc post-patch: ${REINPLACE_CMD} -e \ From owner-svn-ports-head@freebsd.org Thu Oct 8 19:07:27 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 51AE79D283E; Thu, 8 Oct 2015 19:07:27 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B7D4E64; Thu, 8 Oct 2015 19:07:27 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98J7QDJ070524; Thu, 8 Oct 2015 19:07:26 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98J7QtN070523; Thu, 8 Oct 2015 19:07:26 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510081907.t98J7QtN070523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 8 Oct 2015 19:07:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398885 - head/www/rubygem-sinatra-contrib 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: Thu, 08 Oct 2015 19:07:27 -0000 Author: antoine Date: Thu Oct 8 19:07:25 2015 New Revision: 398885 URL: https://svnweb.freebsd.org/changeset/ports/398885 Log: Fix dependencies Modified: head/www/rubygem-sinatra-contrib/Makefile Modified: head/www/rubygem-sinatra-contrib/Makefile ============================================================================== --- head/www/rubygem-sinatra-contrib/Makefile Thu Oct 8 18:59:40 2015 (r398884) +++ head/www/rubygem-sinatra-contrib/Makefile Thu Oct 8 19:07:25 2015 (r398885) @@ -16,7 +16,7 @@ RUN_DEPENDS= rubygem-backports>=2.0:${PO rubygem-rack-protection>=0:${PORTSDIR}/www/rubygem-rack-protection \ rubygem-rack-test>=0:${PORTSDIR}/www/rubygem-rack-test \ rubygem-sinatra>=1.4:${PORTSDIR}/www/rubygem-sinatra \ - rubygem-tilt>=2.0:${PORTSDIR}/devel/rubygem-tilt1 + rubygem-tilt>=2.0:${PORTSDIR}/devel/rubygem-tilt NO_ARCH= yes From owner-svn-ports-head@freebsd.org Thu Oct 8 19:08:03 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 B9AA09D286F; Thu, 8 Oct 2015 19:08:03 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6782BF44; Thu, 8 Oct 2015 19:08:03 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98J82NE070671; Thu, 8 Oct 2015 19:08:02 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98J82oU070668; Thu, 8 Oct 2015 19:08:02 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510081908.t98J82oU070668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 8 Oct 2015 19:08:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398886 - head/comms/ncid 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: Thu, 08 Oct 2015 19:08:03 -0000 Author: pi Date: Thu Oct 8 19:08:02 2015 New Revision: 398886 URL: https://svnweb.freebsd.org/changeset/ports/398886 Log: comms/ncid: 1.1 -> 1.2 Changes: See doc/CHANGES - added a hangup-feature - man-pages updated PR: 203615 Submitted by: Carlos J. Puga Medina (maintainer) Modified: head/comms/ncid/Makefile head/comms/ncid/distinfo head/comms/ncid/pkg-descr Modified: head/comms/ncid/Makefile ============================================================================== --- head/comms/ncid/Makefile Thu Oct 8 19:07:25 2015 (r398885) +++ head/comms/ncid/Makefile Thu Oct 8 19:08:02 2015 (r398886) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ncid -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= comms MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-src Modified: head/comms/ncid/distinfo ============================================================================== --- head/comms/ncid/distinfo Thu Oct 8 19:07:25 2015 (r398885) +++ head/comms/ncid/distinfo Thu Oct 8 19:08:02 2015 (r398886) @@ -1,2 +1,2 @@ -SHA256 (ncid-1.1-src.tar.gz) = ea4bc740477c9e674ac60b2fda83017a2774405c2a710ee2aef71ac705986c4c -SIZE (ncid-1.1-src.tar.gz) = 644249 +SHA256 (ncid-1.2-src.tar.gz) = 9f9b6c6f8247d2a5636f53411e0dea96dbeb996f7524a0d77044b473bb6a791f +SIZE (ncid-1.2-src.tar.gz) = 1581364 Modified: head/comms/ncid/pkg-descr ============================================================================== --- head/comms/ncid/pkg-descr Thu Oct 8 19:07:25 2015 (r398885) +++ head/comms/ncid/pkg-descr Thu Oct 8 19:08:02 2015 (r398886) @@ -1,5 +1,6 @@ -NCID is a network based Caller ID package that contains a server to obtain the -CID information from a modem, and a client to display the CID information on a -computer, TiVo, text pager, or cell phone. Multiple clients are permitted. +NCID is a network based Caller ID package that contains a server +to obtain the CID information from a modem, and a client to display +the CID information on a computer, TiVo, text pager, or cell phone. +Multiple clients are permitted. WWW: http://ncid.sourceforge.net/ From owner-svn-ports-head@freebsd.org Thu Oct 8 19:11: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 84AC39D2B72; Thu, 8 Oct 2015 19:11:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 500A013E4; Thu, 8 Oct 2015 19:11:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98JBh9B073520; Thu, 8 Oct 2015 19:11:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98JBhV9073518; Thu, 8 Oct 2015 19:11:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081911.t98JBhV9073518@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 19:11:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398887 - head/devel/rubygem-aws-sdk-core 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: Thu, 08 Oct 2015 19:11:44 -0000 Author: sunpoet Date: Thu Oct 8 19:11:43 2015 New Revision: 398887 URL: https://svnweb.freebsd.org/changeset/ports/398887 Log: - Update to 2.1.28 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Thu Oct 8 19:08:02 2015 (r398886) +++ head/devel/rubygem-aws-sdk-core/Makefile Thu Oct 8 19:11:43 2015 (r398887) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.1.26 +PORTVERSION= 2.1.28 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Thu Oct 8 19:08:02 2015 (r398886) +++ head/devel/rubygem-aws-sdk-core/distinfo Thu Oct 8 19:11:43 2015 (r398887) @@ -1,2 +1,2 @@ -SHA256 (rubygem/aws-sdk-core-2.1.26.gem) = 313788beb45f3ef27b1b7924663aa0a72a54f6205c0965872259b5e7220a1100 -SIZE (rubygem/aws-sdk-core-2.1.26.gem) = 457216 +SHA256 (rubygem/aws-sdk-core-2.1.28.gem) = 1ca631db65e311075666965af271e38f6325e41ebfd30968a7d2264ed36dbc98 +SIZE (rubygem/aws-sdk-core-2.1.28.gem) = 467456 From owner-svn-ports-head@freebsd.org Thu Oct 8 19:11: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 A00189D2B86; Thu, 8 Oct 2015 19:11:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 674921452; Thu, 8 Oct 2015 19:11:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98JBmT6073637; Thu, 8 Oct 2015 19:11:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98JBmXH073635; Thu, 8 Oct 2015 19:11:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510081911.t98JBmXH073635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 8 Oct 2015 19:11:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398888 - head/devel/rubygem-aws-sdk-resources 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: Thu, 08 Oct 2015 19:11:49 -0000 Author: sunpoet Date: Thu Oct 8 19:11:48 2015 New Revision: 398888 URL: https://svnweb.freebsd.org/changeset/ports/398888 Log: - Update to 2.1.28 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Thu Oct 8 19:11:43 2015 (r398887) +++ head/devel/rubygem-aws-sdk-resources/Makefile Thu Oct 8 19:11:48 2015 (r398888) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.1.26 +PORTVERSION= 2.1.28 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Thu Oct 8 19:11:43 2015 (r398887) +++ head/devel/rubygem-aws-sdk-resources/distinfo Thu Oct 8 19:11:48 2015 (r398888) @@ -1,2 +1,2 @@ -SHA256 (rubygem/aws-sdk-resources-2.1.26.gem) = 75672a00edd9e9cdb12c385f8744d9d8868412ae95db7cbf79f2de8880ddb89b -SIZE (rubygem/aws-sdk-resources-2.1.26.gem) = 44032 +SHA256 (rubygem/aws-sdk-resources-2.1.28.gem) = 553a393d04d52275bb70ac1c50726233f2a533703c9d894a12791ffc7846bedf +SIZE (rubygem/aws-sdk-resources-2.1.28.gem) = 44032 From owner-svn-ports-head@freebsd.org Thu Oct 8 19:38:54 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 B35A49D1DCB; Thu, 8 Oct 2015 19:38:54 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66312A02; Thu, 8 Oct 2015 19:38:54 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98JcraA079882; Thu, 8 Oct 2015 19:38:53 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98JcrfO079880; Thu, 8 Oct 2015 19:38:53 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201510081938.t98JcrfO079880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 8 Oct 2015 19:38:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398889 - head/security/stunnel 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: Thu, 08 Oct 2015 19:38:54 -0000 Author: brnrd Date: Thu Oct 8 19:38:53 2015 New Revision: 398889 URL: https://svnweb.freebsd.org/changeset/ports/398889 Log: security/stunnel: Update to 5.24 - Supports building without EGD - Order options alphabetical Reviewed by: koobs (mentor), zi (maintainer) Approved by: zi (maintainer) PR: 198997 Differential Revision: https://reviews.freebsd.org/D2694 Modified: head/security/stunnel/Makefile head/security/stunnel/distinfo Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Thu Oct 8 19:11:48 2015 (r398888) +++ head/security/stunnel/Makefile Thu Oct 8 19:38:53 2015 (r398889) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= stunnel -PORTVERSION= 5.23 +PORTVERSION= 5.24 CATEGORIES= security MASTER_SITES= https://www.stunnel.org/downloads/%SUBDIR%/ \ http://mirrors.zerg.biz/stunnel/%SUBDIR%/ \ @@ -36,19 +36,19 @@ CONFIGURE_ARGS= --localstatedir=/var/tmp --with-ssl="${OPENSSLBASE}" SHEBANG_FILES= src/stunnel3.in -OPTIONS_DEFINE= IPV6 LIBWRAP FIPS DOCS EXAMPLES +OPTIONS_DEFINE= DOCS EXAMPLES FIPS IPV6 LIBWRAP OPTIONS_SINGLE= THREAD OPTIONS_SINGLE_THREAD= FORK PTHREAD UCONTEXT OPTIONS_DEFAULT= PTHREAD +FIPS_CONFIGURE_ENABLE= fips IPV6_CONFIGURE_ENABLE= ipv6 LIBWRAP_CONFIGURE_ENABLE= libwrap -FIPS_CONFIGURE_ENABLE= fips +FIPS_DESC= Enable OpenSSL FIPS mode FORK_DESC= Use the fork(3) threading model PTHREAD_DESC= Use the pthread(3) threading model UCONTEXT_DESC= Use the ucontext(3) threading model -FIPS_DESC= Enable OpenSSL FIPS mode STUNNEL_USER?= stunnel STUNNEL_GROUP?= stunnel @@ -72,6 +72,14 @@ CONFIGURE_ARGS+=--with-threads=pthread LDFLAGS+= -lpthread .endif +.if ${PORT_OPTIONS:MFIPS} && "${OPENSSL_PORT}" == "security/libressl" +IGNORE= LibreSSL does not support FIPS standard +.endif + +.if "${OPENSSL_PORT}" == "security/libressl" +NO_PACKAGE= The stunnel license restricts distribution when linked to non-OpenSSL non-base SSL-libraries +.endif + post-patch: # place files under /var/tmp so that this can be run by an unprivileged # user stunnel and group stunnel Modified: head/security/stunnel/distinfo ============================================================================== --- head/security/stunnel/distinfo Thu Oct 8 19:11:48 2015 (r398888) +++ head/security/stunnel/distinfo Thu Oct 8 19:38:53 2015 (r398889) @@ -1,2 +1,2 @@ -SHA256 (stunnel-5.23.tar.gz) = 0fc4a702afd2e857bae8ad1f39c51546eb282c3d0ff4f4d55d62aece7328ddea -SIZE (stunnel-5.23.tar.gz) = 630943 +SHA256 (stunnel-5.24.tar.gz) = ab2e5a1034d422951ddad21b572eb7fa8efb4c4ce04bc86536c6845f3d02b07e +SIZE (stunnel-5.24.tar.gz) = 631730 From owner-svn-ports-head@freebsd.org Thu Oct 8 19:38:58 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 69F939D1DFF; Thu, 8 Oct 2015 19:38:58 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 365DCA36; Thu, 8 Oct 2015 19:38:58 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98JcvsT079993; Thu, 8 Oct 2015 19:38:57 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98JcvlM079992; Thu, 8 Oct 2015 19:38:57 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201510081938.t98JcvlM079992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Thu, 8 Oct 2015 19:38:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398890 - head/cad/iverilog 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: Thu, 08 Oct 2015 19:38:58 -0000 Author: zeising Date: Thu Oct 8 19:38:57 2015 New Revision: 398890 URL: https://svnweb.freebsd.org/changeset/ports/398890 Log: Fix build on FreeBSD 9.* FreeBSD 9.* has an older, noncompatible version of flex. Fix this by using flex from ports instead. Submitted by: kwm Modified: head/cad/iverilog/Makefile Modified: head/cad/iverilog/Makefile ============================================================================== --- head/cad/iverilog/Makefile Thu Oct 8 19:38:53 2015 (r398889) +++ head/cad/iverilog/Makefile Thu Oct 8 19:38:57 2015 (r398890) @@ -15,6 +15,13 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes USES= bison gmake +.include + +.if ${OSVERSION} < 1000033 +BUILD_DEPENDS+= flex>=0:${PORTSDIR}/textproc/flex +CONFIGURE_ENV+= ac_cv_prog_LEX="${LOCALBASE}/bin/flex" +.endif + CONFIGURE_ARGS= --disable-suffix .include From owner-svn-ports-head@freebsd.org Thu Oct 8 19:52:02 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 0C8D09B69C8; Thu, 8 Oct 2015 19:52:02 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8147152B; Thu, 8 Oct 2015 19:52:01 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98Jq0xl085663; Thu, 8 Oct 2015 19:52:00 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98Jq0QM085662; Thu, 8 Oct 2015 19:52:00 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510081952.t98Jq0QM085662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 8 Oct 2015 19:52:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398891 - head/security/stunnel 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: Thu, 08 Oct 2015 19:52:02 -0000 Author: antoine Date: Thu Oct 8 19:52:00 2015 New Revision: 398891 URL: https://svnweb.freebsd.org/changeset/ports/398891 Log: Unbreak INDEX Modified: head/security/stunnel/Makefile Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Thu Oct 8 19:38:57 2015 (r398890) +++ head/security/stunnel/Makefile Thu Oct 8 19:52:00 2015 (r398891) @@ -72,11 +72,11 @@ CONFIGURE_ARGS+=--with-threads=pthread LDFLAGS+= -lpthread .endif -.if ${PORT_OPTIONS:MFIPS} && "${OPENSSL_PORT}" == "security/libressl" +.if ${PORT_OPTIONS:MFIPS} && defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl IGNORE= LibreSSL does not support FIPS standard .endif -.if "${OPENSSL_PORT}" == "security/libressl" +.if defined(OPENSSL_PORT) && ${OPENSSL_PORT} == security/libressl NO_PACKAGE= The stunnel license restricts distribution when linked to non-OpenSSL non-base SSL-libraries .endif From owner-svn-ports-head@freebsd.org Thu Oct 8 20:05:24 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 640B29D03AB; Thu, 8 Oct 2015 20:05:24 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1429F1C1D; Thu, 8 Oct 2015 20:05:24 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98K5NPB088762; Thu, 8 Oct 2015 20:05:23 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98K5N4F088760; Thu, 8 Oct 2015 20:05:23 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201510082005.t98K5N4F088760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 8 Oct 2015 20:05:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398892 - head/net-mgmt/icingaweb2 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: Thu, 08 Oct 2015 20:05:24 -0000 Author: lme Date: Thu Oct 8 20:05:22 2015 New Revision: 398892 URL: https://svnweb.freebsd.org/changeset/ports/398892 Log: - Fix plist (I forgot to commit the plist change in the last commit) - Bump PORTREVISION Noticed by: ohauer Modified: head/net-mgmt/icingaweb2/Makefile head/net-mgmt/icingaweb2/pkg-plist Modified: head/net-mgmt/icingaweb2/Makefile ============================================================================== --- head/net-mgmt/icingaweb2/Makefile Thu Oct 8 19:52:00 2015 (r398891) +++ head/net-mgmt/icingaweb2/Makefile Thu Oct 8 20:05:22 2015 (r398892) @@ -3,7 +3,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v DISTVERSION= 2.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org Modified: head/net-mgmt/icingaweb2/pkg-plist ============================================================================== --- head/net-mgmt/icingaweb2/pkg-plist Thu Oct 8 19:52:00 2015 (r398891) +++ head/net-mgmt/icingaweb2/pkg-plist Thu Oct 8 20:05:22 2015 (r398892) @@ -1,10 +1,6 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/apache/icingaweb2.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bash_completion.d/icingacli %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nginx/icingaweb2.conf -%%ETCDIR%%/schema/mysql-upgrades/2.0.0beta3-2.0.0rc1.sql -%%ETCDIR%%/schema/mysql.schema.sql -%%ETCDIR%%/schema/pgsql-upgrades/2.0.0beta3-2.0.0rc1.sql -%%ETCDIR%%/schema/pgsql.schema.sql %%WWWDIR%%/AUTHORS %%WWWDIR%%/COPYING %%WWWDIR%%/ChangeLog @@ -171,6 +167,11 @@ %%WWWDIR%%/doc/resources.md %%WWWDIR%%/doc/security.md %%WWWDIR%%/doc/vagrant.md +%%WWWDIR%%/etc/bash_completion.d/icingacli +%%WWWDIR%%/etc/schema/mysql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%WWWDIR%%/etc/schema/mysql.schema.sql +%%WWWDIR%%/etc/schema/pgsql-upgrades/2.0.0beta3-2.0.0rc1.sql +%%WWWDIR%%/etc/schema/pgsql.schema.sql %%WWWDIR%%/library/Icinga/Application/ApplicationBootstrap.php %%WWWDIR%%/library/Icinga/Application/Benchmark.php %%WWWDIR%%/library/Icinga/Application/ClassLoader.php From owner-svn-ports-head@freebsd.org Thu Oct 8 20:13:55 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 BB7619D0A92; Thu, 8 Oct 2015 20:13:55 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep35.mx.upcmail.net (fep35.mx.upcmail.net [62.179.121.53]) by mx1.freebsd.org (Postfix) with ESMTP id 8DEB2C0; Thu, 8 Oct 2015 20:13:54 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep19-int.chello.at (InterMail vM.8.01.05.18 201-2260-151-151-20140610) with ESMTP id <20151008194223.OUEX14985.viefep19-int.chello.at@edge03.upcmail.net>; Thu, 8 Oct 2015 21:42:23 +0200 Received: from [127.0.0.1] ([178.84.134.112]) by edge03.upcmail.net with edge id SjiN1r00H2Rg3Ey01jiNli; Thu, 08 Oct 2015 21:42:23 +0200 X-SourceIP: 178.84.134.112 Subject: Re: svn commit: r398812 - head/graphics/gthumb To: Guido Falsi , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201510081053.t98ArgnX013924@repo.freebsd.org> From: Koop Mast Message-ID: <5616C715.6070203@rainbow-runner.nl> Date: Thu, 8 Oct 2015 21:42:13 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <201510081053.t98ArgnX013924@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 151008-2, 08/10/2015), Outbound message X-Antivirus-Status: Clean 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: Thu, 08 Oct 2015 20:13:55 -0000 On 08/10/2015 12:53, Guido Falsi wrote: > Author: madpilot > Date: Thu Oct 8 10:53:42 2015 > New Revision: 398812 > URL: https://svnweb.freebsd.org/changeset/ports/398812 > > Log: > Update to 3.4.1 > > PR: 203480 > Submitted by: Ports Fury > > Modified: > head/graphics/gthumb/Makefile > head/graphics/gthumb/distinfo > head/graphics/gthumb/pkg-plist > > Modified: head/graphics/gthumb/Makefile > ============================================================================== > --- head/graphics/gthumb/Makefile Thu Oct 8 10:10:48 2015 (r398811) > +++ head/graphics/gthumb/Makefile Thu Oct 8 10:53:42 2015 (r398812) > @@ -3,7 +3,7 @@ > # $MCom: ports/trunk/graphics/gthumb/Makefile 19823 2014-08-20 09:28:14Z gusi $ > > PORTNAME= gthumb > -PORTVERSION= 3.4.0 > +PORTVERSION= 3.4.1 > CATEGORIES= graphics > MASTER_SITES= GNOME > DIST_SUBDIR= gnome3 > @@ -21,6 +21,8 @@ USES= bison compiler:c++11-lib desktop- > libtool pathfix pkgconfig tar:xz > USE_GNOME= gtk30 intltool librsvg2 > GNU_CONFIGURE= yes > +CONFIGURE_ENV= ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \ > + ac_cv_lib_tiff_TIFFWriteScanline=yes This gives me the idea that the configure script is broken in some way. From owner-svn-ports-head@freebsd.org Thu Oct 8 21:18:54 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 E94A29D13BE; Thu, 8 Oct 2015 21:18:54 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94B47F0F; Thu, 8 Oct 2015 21:18:54 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98LIrbw010618; Thu, 8 Oct 2015 21:18:53 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98LIrIo010616; Thu, 8 Oct 2015 21:18:53 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201510082118.t98LIrIo010616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Thu, 8 Oct 2015 21:18:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398894 - 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: Thu, 08 Oct 2015 21:18:55 -0000 Author: girgen Date: Thu Oct 8 21:18:53 2015 New Revision: 398894 URL: https://svnweb.freebsd.org/changeset/ports/398894 Log: Add entry for two security problems in PostgreSQL CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service. CVE-2015-5288: The crypt() function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Oct 8 20:30:34 2015 (r398893) +++ head/security/vuxml/vuln.xml Thu Oct 8 21:18:53 2015 (r398894) @@ -58,6 +58,61 @@ Notes: --> + + PostgreSQL -- minor security problems. + + + postgresql90-server + 9.0.09.0.22 + + + postgresql91-server + 9.1.09.1.18 + + + postgresql92-server + 9.2.09.2.13 + + + postgresql93-server + 9.3.09.3.9 + + + postgresql94-server + 9.4.09.4.4 + + + + +

PostgreSQL project reports:

+
+

+ Two security issues have been fixed in this release which affect + users of specific PostgreSQL features. +

+
    +
  • CVE-2015-5289 json or jsonb input values constructed from + arbitrary user input can crash the PostgreSQL server and cause a denial of + service. +
  • +
  • CVE-2015-5288: The crypt() function included with the optional pgCrypto + extension could be exploited to read a few additional bytes of memory. + No working exploit for this issue has been developed. +
  • +
+
+ +
+ + CVE-2015-5289 + CVE-2015-5288 + + + 2015-10-08 + 2015-10-08 + +
+ ZendFramework1 -- SQL injection vulnerability From owner-svn-ports-head@freebsd.org Thu Oct 8 21:25:05 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 25B739D1913; Thu, 8 Oct 2015 21:25:05 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDE866DB; Thu, 8 Oct 2015 21:25:04 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98LP4OA014076; Thu, 8 Oct 2015 21:25:04 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98LP1bJ014049; Thu, 8 Oct 2015 21:25:01 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201510082125.t98LP1bJ014049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Thu, 8 Oct 2015 21:25:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398895 - in head/databases: postgresql90-client postgresql90-server postgresql91-client postgresql91-docs postgresql91-pltcl postgresql91-server postgresql92-client postgresql92-contri... 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: Thu, 08 Oct 2015 21:25:05 -0000 Author: girgen Date: Thu Oct 8 21:25:01 2015 New Revision: 398895 URL: https://svnweb.freebsd.org/changeset/ports/398895 Log: Update PostgreSQL port to latest version. Two security issues have been fixed in this release which affect users of specific PostgreSQL features: CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service. CVE-2015-5288: The crypt( function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed. This update will also disable SSL renegotiation by default; previously, it was enabled by default. SSL renegotiation will be removed entirely in PostgreSQL versions 9.5 and later. URL: http://www.postgresql.org/about/news/1615/ Security: CVE-2015-5288 CVE-2015-5289 Modified: head/databases/postgresql90-client/Makefile head/databases/postgresql90-server/Makefile head/databases/postgresql90-server/distinfo head/databases/postgresql90-server/pkg-plist-server head/databases/postgresql91-client/Makefile head/databases/postgresql91-docs/Makefile head/databases/postgresql91-pltcl/Makefile head/databases/postgresql91-server/Makefile head/databases/postgresql91-server/distinfo head/databases/postgresql91-server/pkg-plist-server head/databases/postgresql92-client/Makefile head/databases/postgresql92-contrib/Makefile head/databases/postgresql92-server/Makefile head/databases/postgresql92-server/distinfo head/databases/postgresql92-server/pkg-plist-server head/databases/postgresql93-client/Makefile head/databases/postgresql93-contrib/Makefile head/databases/postgresql93-server/Makefile head/databases/postgresql93-server/distinfo head/databases/postgresql93-server/pkg-plist-server head/databases/postgresql94-client/Makefile head/databases/postgresql94-contrib/Makefile head/databases/postgresql94-plperl/Makefile head/databases/postgresql94-plpython/Makefile head/databases/postgresql94-server/Makefile head/databases/postgresql94-server/distinfo head/databases/postgresql94-server/pkg-plist-server Modified: head/databases/postgresql90-client/Makefile ============================================================================== --- head/databases/postgresql90-client/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql90-client/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql COMMENT= PostgreSQL database (client) -PORTREVISION= 0 MASTERDIR= ${.CURDIR}/../postgresql90-server Modified: head/databases/postgresql90-server/Makefile ============================================================================== --- head/databases/postgresql90-server/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql90-server/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -1,8 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.0.22 -PORTREVISION?= 1 +DISTVERSION?= 9.0.23 PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql90-server/distinfo ============================================================================== --- head/databases/postgresql90-server/distinfo Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql90-server/distinfo Thu Oct 8 21:25:01 2015 (r398895) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.0.22.tar.bz2) = 94d4b20d854cd7fa4c9c322c0b602751edbc5ca0d4f29fe92f996e28bb32f8a5 -SIZE (postgresql/postgresql-9.0.22.tar.bz2) = 15046629 +SHA256 (postgresql/postgresql-9.0.23.tar.bz2) = 3dbcbe19c814139a3f4be8bc6b49db804753cbc49979f345083e835c52b4d7de +SIZE (postgresql/postgresql-9.0.23.tar.bz2) = 15045569 SHA256 (postgresql/pg-9019-icu-2015-04-18.diff.gz) = 44436558d3414b964e6acda18148188be88446b3773d133a4b3b0d63d17bd807 SIZE (postgresql/pg-9019-icu-2015-04-18.diff.gz) = 4412 Modified: head/databases/postgresql90-server/pkg-plist-server ============================================================================== --- head/databases/postgresql90-server/pkg-plist-server Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql90-server/pkg-plist-server Thu Oct 8 21:25:01 2015 (r398895) @@ -247,6 +247,7 @@ lib/postgresql/utf8_and_win.so %%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe %%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador %%TZDATA%%%%DATADIR%%/timezone/America/Ensenada +%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson %%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne %%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza %%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay Modified: head/databases/postgresql91-client/Makefile ============================================================================== --- head/databases/postgresql91-client/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-client/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql COMMENT= PostgreSQL database (client) -PORTREVISION= 0 MASTERDIR= ${.CURDIR}/../postgresql91-server Modified: head/databases/postgresql91-docs/Makefile ============================================================================== --- head/databases/postgresql91-docs/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-docs/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 0 PKGNAMESUFFIX?= ${DISTV:S/.//}-docs DISTV= ${DISTVERSION:R} Modified: head/databases/postgresql91-pltcl/Makefile ============================================================================== --- head/databases/postgresql91-pltcl/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-pltcl/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 0 CATEGORIES= databases tcl PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/postgresql91-server/Makefile ============================================================================== --- head/databases/postgresql91-server/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-server/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= postgresql -DISTVERSION?= 9.1.18 -PORTREVISION?= 1 +DISTVERSION?= 9.1.19 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} @@ -11,10 +10,10 @@ PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${ MAINTAINER?= pgsql@FreeBSD.org COMMENT?= The most advanced open-source database available anywhere -#CONFLICTS?= ${PORTNAME}[^${PORTVERSION:R:R}]?-client* \ -# ${PORTNAME}${COMPONENT}-[^${PORTVERSION:R:R}].* \ -# ${PORTNAME}9[^${PORTVERSION:R:E}]-client* \ -# ${PORTNAME}${COMPONENT}-9.[^${PORTVERSION:R:E}].* +CONFLICTS?= ${PORTNAME}[^${PORTVERSION:R:R}]?-client* \ + ${PORTNAME}${COMPONENT}-[^${PORTVERSION:R:R}].* \ + ${PORTNAME}9[^${PORTVERSION:R:E}]-client* \ + ${PORTNAME}${COMPONENT}-9.[^${PORTVERSION:R:E}].* WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} DIST_SUBDIR= postgresql Modified: head/databases/postgresql91-server/distinfo ============================================================================== --- head/databases/postgresql91-server/distinfo Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-server/distinfo Thu Oct 8 21:25:01 2015 (r398895) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.1.18.tar.bz2) = 2726d526666904b454f87fe2ae54357c2ab9eb8aba299a4c904829b7598584a8 -SIZE (postgresql/postgresql-9.1.18.tar.bz2) = 15822081 +SHA256 (postgresql/postgresql-9.1.19.tar.bz2) = cbd5057451147dd63a1e764176a4e17a7795773be1e4266ea9faa951064c0ec6 +SIZE (postgresql/postgresql-9.1.19.tar.bz2) = 15843978 SHA256 (postgresql/pg-929-icu-2015-04-18.diff.gz) = 9aff1ba25fbe5892a3868bff516df685531c85901c360548e38bf2e5fa0e14ab SIZE (postgresql/pg-929-icu-2015-04-18.diff.gz) = 4469 Modified: head/databases/postgresql91-server/pkg-plist-server ============================================================================== --- head/databases/postgresql91-server/pkg-plist-server Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql91-server/pkg-plist-server Thu Oct 8 21:25:01 2015 (r398895) @@ -253,6 +253,7 @@ lib/postgresql/utf8_and_win.so %%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe %%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador %%TZDATA%%%%DATADIR%%/timezone/America/Ensenada +%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson %%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne %%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza %%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay Modified: head/databases/postgresql92-client/Makefile ============================================================================== --- head/databases/postgresql92-client/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql92-client/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql COMMENT= PostgreSQL database (client) -PORTREVISION= 0 MASTERDIR= ${.CURDIR}/../postgresql92-server Modified: head/databases/postgresql92-contrib/Makefile ============================================================================== --- head/databases/postgresql92-contrib/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql92-contrib/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -4,7 +4,6 @@ PORTNAME= postgresql CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} -PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql92-server/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= postgresql -DISTVERSION?= 9.2.13 -PORTREVISION?= 2 +DISTVERSION?= 9.2.14 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/postgresql92-server/distinfo ============================================================================== --- head/databases/postgresql92-server/distinfo Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql92-server/distinfo Thu Oct 8 21:25:01 2015 (r398895) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.2.13.tar.bz2) = 5dcbd6209a8c0f508504fa433486583a42caaa240c823e1b3576db8a72db6a44 -SIZE (postgresql/postgresql-9.2.13.tar.bz2) = 16401289 +SHA256 (postgresql/postgresql-9.2.14.tar.bz2) = 54c20b3f320a48c38487f2711e98b2fa3f9ce4305905a294ad0449e8b4fb292e +SIZE (postgresql/postgresql-9.2.14.tar.bz2) = 16451398 SHA256 (postgresql/pg-929-icu-2015-04-18.diff.gz) = 9aff1ba25fbe5892a3868bff516df685531c85901c360548e38bf2e5fa0e14ab SIZE (postgresql/pg-929-icu-2015-04-18.diff.gz) = 4469 Modified: head/databases/postgresql92-server/pkg-plist-server ============================================================================== --- head/databases/postgresql92-server/pkg-plist-server Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql92-server/pkg-plist-server Thu Oct 8 21:25:01 2015 (r398895) @@ -250,6 +250,7 @@ lib/postgresql/utf8_and_win.so %%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe %%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador %%TZDATA%%%%DATADIR%%/timezone/America/Ensenada +%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson %%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne %%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza %%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay Modified: head/databases/postgresql93-client/Makefile ============================================================================== --- head/databases/postgresql93-client/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql93-client/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql COMMENT= PostgreSQL database (client) -PORTREVISION= 0 MASTERDIR= ${.CURDIR}/../postgresql93-server Modified: head/databases/postgresql93-contrib/Makefile ============================================================================== --- head/databases/postgresql93-contrib/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql93-contrib/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -4,7 +4,6 @@ PORTNAME= postgresql CATEGORIES= databases PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} -PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql93-server/Makefile ============================================================================== --- head/databases/postgresql93-server/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql93-server/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.3.9 +DISTVERSION?= 9.3.10 PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql93-server/distinfo ============================================================================== --- head/databases/postgresql93-server/distinfo Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql93-server/distinfo Thu Oct 8 21:25:01 2015 (r398895) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.3.9.tar.bz2) = f73bd0ec2028511732430beb22414a022d2114231366e8cbe78c149793910549 -SIZE (postgresql/postgresql-9.3.9.tar.bz2) = 16959310 +SHA256 (postgresql/postgresql-9.3.10.tar.bz2) = e5444f0f76aff98a251400b7c28bc361d65e3d72d8d6cb9bb5d8361a69541531 +SIZE (postgresql/postgresql-9.3.10.tar.bz2) = 16995860 SHA256 (postgresql/pg-929-icu-2015-04-18.diff.gz) = 9aff1ba25fbe5892a3868bff516df685531c85901c360548e38bf2e5fa0e14ab SIZE (postgresql/pg-929-icu-2015-04-18.diff.gz) = 4469 Modified: head/databases/postgresql93-server/pkg-plist-server ============================================================================== --- head/databases/postgresql93-server/pkg-plist-server Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql93-server/pkg-plist-server Thu Oct 8 21:25:01 2015 (r398895) @@ -239,6 +239,7 @@ lib/libpgcommon.a %%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe %%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador %%TZDATA%%%%DATADIR%%/timezone/America/Ensenada +%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson %%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne %%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza %%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay Modified: head/databases/postgresql94-client/Makefile ============================================================================== --- head/databases/postgresql94-client/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-client/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql COMMENT= PostgreSQL database (client) -PORTREVISION= 0 MASTERDIR= ${.CURDIR}/../postgresql94-server Modified: head/databases/postgresql94-contrib/Makefile ============================================================================== --- head/databases/postgresql94-contrib/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-contrib/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -3,7 +3,6 @@ PORTNAME= postgresql CATEGORIES= databases -PORTREVISION= 1 MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution Modified: head/databases/postgresql94-plperl/Makefile ============================================================================== --- head/databases/postgresql94-plperl/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-plperl/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -1,7 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ -PORTREVISION= 0 WANT_PGSQL_VER= 9.4 .include "${.CURDIR}/../postgresql90-plperl/Makefile" Modified: head/databases/postgresql94-plpython/Makefile ============================================================================== --- head/databases/postgresql94-plpython/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-plpython/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -1,6 +1,5 @@ # $FreeBSD$ -PORTREVISION= 0 WANT_PGSQL_VER= 9.4 .include "${.CURDIR}/../postgresql90-plpython/Makefile" Modified: head/databases/postgresql94-server/Makefile ============================================================================== --- head/databases/postgresql94-server/Makefile Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-server/Makefile Thu Oct 8 21:25:01 2015 (r398895) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.4.4 +DISTVERSION?= 9.4.5 MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql94-server/distinfo ============================================================================== --- head/databases/postgresql94-server/distinfo Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-server/distinfo Thu Oct 8 21:25:01 2015 (r398895) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.4.4.tar.bz2) = 538ed99688d6fdbec6fd166d1779cf4588bf2f16c52304e5ef29f904c43b0013 -SIZE (postgresql/postgresql-9.4.4.tar.bz2) = 17616272 +SHA256 (postgresql/postgresql-9.4.5.tar.bz2) = b87c50c66b6ea42a9712b5f6284794fabad0616e6ae420cf0f10523be6d94a39 +SIZE (postgresql/postgresql-9.4.5.tar.bz2) = 17660960 SHA256 (postgresql/pg-941-icu-2015-04-18.diff.gz) = 30c1366539fd0833db37a98b32bd22e8da4538e58f8dbc2ad2f63dc54835609b SIZE (postgresql/pg-941-icu-2015-04-18.diff.gz) = 4279 Modified: head/databases/postgresql94-server/pkg-plist-server ============================================================================== --- head/databases/postgresql94-server/pkg-plist-server Thu Oct 8 21:18:53 2015 (r398894) +++ head/databases/postgresql94-server/pkg-plist-server Thu Oct 8 21:25:01 2015 (r398895) @@ -240,6 +240,7 @@ lib/libpgcommon.a %%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe %%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador %%TZDATA%%%%DATADIR%%/timezone/America/Ensenada +%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson %%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne %%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza %%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay From owner-svn-ports-head@freebsd.org Thu Oct 8 21:56:19 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 A9F549D1141; Thu, 8 Oct 2015 21:56:19 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (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 6EB34F34; Thu, 8 Oct 2015 21:56:19 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3nX5vY5yHCzZxb; Thu, 8 Oct 2015 23:56:09 +0200 (CEST) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id 2I_LyXbU5EVy; Thu, 8 Oct 2015 23:56:07 +0200 (CEST) Received: from tommy.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Thu, 8 Oct 2015 23:56:07 +0200 (CEST) Subject: Re: svn commit: r398812 - head/graphics/gthumb To: Koop Mast , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201510081053.t98ArgnX013924@repo.freebsd.org> <5616C715.6070203@rainbow-runner.nl> From: Guido Falsi Message-ID: <5616E677.6040205@FreeBSD.org> Date: Thu, 8 Oct 2015 23:56:07 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <5616C715.6070203@rainbow-runner.nl> 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: Thu, 08 Oct 2015 21:56:19 -0000 On 10/08/15 21:42, Koop Mast wrote: > On 08/10/2015 12:53, Guido Falsi wrote: >> Author: madpilot >> Date: Thu Oct 8 10:53:42 2015 >> New Revision: 398812 >> URL: https://svnweb.freebsd.org/changeset/ports/398812 >> >> Log: >> Update to 3.4.1 >> PR: 203480 >> Submitted by: Ports Fury >> >> Modified: >> head/graphics/gthumb/Makefile >> head/graphics/gthumb/distinfo >> head/graphics/gthumb/pkg-plist >> >> Modified: head/graphics/gthumb/Makefile >> ============================================================================== >> >> --- head/graphics/gthumb/Makefile Thu Oct 8 10:10:48 2015 >> (r398811) >> +++ head/graphics/gthumb/Makefile Thu Oct 8 10:53:42 2015 >> (r398812) >> @@ -3,7 +3,7 @@ >> # $MCom: ports/trunk/graphics/gthumb/Makefile 19823 2014-08-20 >> 09:28:14Z gusi $ >> PORTNAME= gthumb >> -PORTVERSION= 3.4.0 >> +PORTVERSION= 3.4.1 >> CATEGORIES= graphics >> MASTER_SITES= GNOME >> DIST_SUBDIR= gnome3 >> @@ -21,6 +21,8 @@ USES= bison compiler:c++11-lib desktop- >> libtool pathfix pkgconfig tar:xz >> USE_GNOME= gtk30 intltool librsvg2 >> GNU_CONFIGURE= yes >> +CONFIGURE_ENV= ac_cv_lib_jpeg_jpeg_destroy_decompress=yes \ >> + ac_cv_lib_tiff_TIFFWriteScanline=yes > > This gives me the idea that the configure script is broken in some way. > It is, since without those lines configure fails to detect those functions and afterwards the build fails. Keeping those lines makes it work. -- Guido Falsi From owner-svn-ports-head@freebsd.org Thu Oct 8 22:15:12 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 1E56E9D1E09; Thu, 8 Oct 2015 22:15:12 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D70F01CA6; Thu, 8 Oct 2015 22:15:11 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98MFA8G028707; Thu, 8 Oct 2015 22:15:10 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98MFAQO028705; Thu, 8 Oct 2015 22:15:10 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201510082215.t98MFAQO028705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 8 Oct 2015 22:15:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398896 - head/lang/gcc5-devel 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: Thu, 08 Oct 2015 22:15:12 -0000 Author: gerald Date: Thu Oct 8 22:15:10 2015 New Revision: 398896 URL: https://svnweb.freebsd.org/changeset/ports/398896 Log: Update to the 20151006 snapshot of GCC 5. Modified: head/lang/gcc5-devel/Makefile head/lang/gcc5-devel/distinfo Modified: head/lang/gcc5-devel/Makefile ============================================================================== --- head/lang/gcc5-devel/Makefile Thu Oct 8 21:25:01 2015 (r398895) +++ head/lang/gcc5-devel/Makefile Thu Oct 8 22:15:10 2015 (r398896) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 5.2.1.s20150929 +PORTVERSION= 5.2.1.s20151006 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc5-devel/distinfo ============================================================================== --- head/lang/gcc5-devel/distinfo Thu Oct 8 21:25:01 2015 (r398895) +++ head/lang/gcc5-devel/distinfo Thu Oct 8 22:15:10 2015 (r398896) @@ -1,2 +1,2 @@ -SHA256 (gcc-5-20150929.tar.bz2) = 5b194d7712a755c7d232ca0ad47fa94b41e30fbff50d0482b1bc4c8f75f25ffd -SIZE (gcc-5-20150929.tar.bz2) = 91258162 +SHA256 (gcc-5-20151006.tar.bz2) = a5cc72192094ceb9278ef73b5b15b812ccaef99828c889ad3f6492cbf3eceb06 +SIZE (gcc-5-20151006.tar.bz2) = 91252755 From owner-svn-ports-head@freebsd.org Thu Oct 8 23:14: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 A61A39D251E; Thu, 8 Oct 2015 23:14:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 629A3F42; Thu, 8 Oct 2015 23:14:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98NEJI9045969; Thu, 8 Oct 2015 23:14:19 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98NEJJJ045966; Thu, 8 Oct 2015 23:14:19 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201510082314.t98NEJJJ045966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 8 Oct 2015 23:14:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398897 - in head/databases/firebird25-server: . 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: Thu, 08 Oct 2015 23:14:20 -0000 Author: jkim Date: Thu Oct 8 23:14:18 2015 New Revision: 398897 URL: https://svnweb.freebsd.org/changeset/ports/398897 Log: Fix dependencies and add LICENSE. Added: head/databases/firebird25-server/files/patch-builds_posix_make.defaults - copied, changed from r398833, head/databases/firebird25-server/files/patch-builds-posix_make.defaults head/databases/firebird25-server/files/patch-builds_posix_make.rules (contents, props changed) Deleted: head/databases/firebird25-server/files/patch-builds-posix_make.defaults Modified: head/databases/firebird25-server/Makefile Modified: head/databases/firebird25-server/Makefile ============================================================================== --- head/databases/firebird25-server/Makefile Thu Oct 8 22:15:10 2015 (r398896) +++ head/databases/firebird25-server/Makefile Thu Oct 8 23:14:18 2015 (r398897) @@ -3,6 +3,7 @@ PORTNAME= firebird PORTVERSION= 2.5.4 +PORTREVISION= 1 CATEGORIES?= databases MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/.0//}-Release/ PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}-server @@ -12,6 +13,15 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT?= Firebird-2 relational database (server) +LICENSE= IDPL IPL +LICENSE_COMB= multi +LICENSE_NAME_IDPL= Initial Developer's Public License +LICENSE_NAME_IPL= InterBase Public License +LICENSE_FILE_IDPL= ${WRKSRC}/builds/install/misc/IDPLicense.txt +LICENSE_FILE_IPL= ${WRKSRC}/builds/install/misc/IPLicense.txt +LICENSE_PERMS_IDPL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_IPL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + CONFLICTS?= ${PORTNAME}20-client-* \ ${PORTNAME}21-client-* \ ${PORTNAME}20-server-* \ @@ -19,7 +29,7 @@ CONFLICTS?= ${PORTNAME}20-client-* \ LIB_DEPENDS= libicuuc.so:${PORTSDIR}/devel/icu -USES= bison tar:bzip2 gmake +USES= gmake pkgconfig tar:bzip2 GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes @@ -37,10 +47,10 @@ CONFIGURE_ARGS= --with-system-editline \ --with-fbsbin=${PREFIX}/sbin \ --with-fbsecure-db=${LOCALSTATEDIR} \ --with-fbudf=${LIBEXECDIR}/UDF -CONFIGURE_ENV+= PTHREAD_LIBS="-lpthread" - -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV+= PTHREAD_LIBS="-lpthread" \ + ac_cv_header_atomic_ops_h="no" \ + ac_cv_lib_atomic_ops_main="no" \ + ac_cv_lib_edit_readline="yes" LOCALSTATEDIR= /var/db/firebird CONFDIR= etc/firebird @@ -69,6 +79,7 @@ IGNORE= your system does not support sy .if !defined(CLIENT_ONLY) # Server part stuff +BUILD_DEPENDS= ${LOCALBASE}/lib/libedit.so:${PORTSDIR}/devel/libedit LIB_DEPENDS+= libfbembed.so:${PORTSDIR}/databases/firebird25-client CONFIGURE_ARGS+=--enable-superserver @@ -87,11 +98,11 @@ UDF_SQL= src/extlib/ib_udf2.sql src/extl PKGINSTALL?= ${PKGDIR}/pkg-install-server .else # Client part stuff +LIB_DEPENDS+= libedit.so.0:${PORTSDIR}/devel/libedit + ALL_TARGET= firebird_basic libfbembed libfbclient embed_isql embed_gpre \ embed_gdef embed_qli extlib -USES+= libedit - USE_LDCONFIG= yes CLIENT_BIN= gpre isql-fb qli @@ -107,9 +118,6 @@ FB_DOCS_DIRS= sql.extensions license upg MAKE_ENV+= FIREBIRD_TMP="${WRKDIR}" FIREBIRD_LOCK="${WRKDIR}" MAKE_ARGS+= PREFIX="${STAGEDIR}${PREFIX}" -post-extract: - @${RM} -rf ${WRKSRC}/extern/icu - post-patch: ${FIND} ${WRKSRC} -name "*.sh" -exec ${CHMOD} +x {} \+ ${REINPLACE_CMD} -e \ Copied and modified: head/databases/firebird25-server/files/patch-builds_posix_make.defaults (from r398833, head/databases/firebird25-server/files/patch-builds-posix_make.defaults) ============================================================================== --- head/databases/firebird25-server/files/patch-builds-posix_make.defaults Thu Oct 8 15:12:22 2015 (r398833, copy source) +++ head/databases/firebird25-server/files/patch-builds_posix_make.defaults Thu Oct 8 23:14:18 2015 (r398897) @@ -1,6 +1,6 @@ ---- builds/posix/make.defaults 2010-09-08 03:41:23.000000000 -0500 -+++ builds/posix/make.defaults 2010-12-18 20:25:29.000000000 -0500 -@@ -127,7 +127,7 @@ +--- builds/posix/make.defaults.orig 2015-03-27 13:46:38 UTC ++++ builds/posix/make.defaults +@@ -126,7 +126,7 @@ RM_R= rm -rf CHMOD= chmod CHMOD_6= chmod 666 CHMOD_7= chmod 777 @@ -9,16 +9,23 @@ MV= mv -f TOUCH= touch CP= cp -@@ -153,7 +153,7 @@ - STATICEXE_LINK:= @CXX@ $(GLOB_OPTIONS) +@@ -152,7 +152,7 @@ EXE_LINK:= @CXX@ $(GLOB_OPTIONS) $(CXXFL + STATICEXE_LINK:= @CXX@ $(GLOB_OPTIONS) $(CXXFLAGS) LINK_LIBS = @LIBS@ -ICU_LIBS = -licuuc -licudata -licui18n -+ICU_LIBS = `icu-config --ldflags-libsonly` `icu-config --ldflags-searchpath` ++ICU_LIBS = $(shell icu-config --ldflags) STATICLINK_LIBS = @LIBS@ SO_LINK_LIBS = @LIBS@ -@@ -230,10 +230,6 @@ +@@ -223,16 +223,12 @@ LIBFBSTATIC_A = $(LIB)/libfbstatic.a + + ifeq ($(EDITLINE_FLG),Y) + ifeq ($(STD_EDITLINE), true) +- LIBEDITLINE := -l$(READLINE) ++ LIBEDITLINE := $(shell pkgconf libedit --libs) + else + LIBEDITLINE := $(LIB)/libedit.a endif endif Added: head/databases/firebird25-server/files/patch-builds_posix_make.rules ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/firebird25-server/files/patch-builds_posix_make.rules Thu Oct 8 23:14:18 2015 (r398897) @@ -0,0 +1,11 @@ +--- builds/posix/make.rules.orig 2015-03-27 13:46:38 UTC ++++ builds/posix/make.rules +@@ -37,6 +37,8 @@ WFLAGS:=$(CPPFLAGS) -I$(SRC_ROOT)/includ + + ifeq ($(STD_ICU),false) + WFLAGS:= $(WFLAGS) -I$(ROOT)/extern/icu/source/common -I$(ROOT)/extern/icu/source/i18n ++else ++ WFLAGS:= $(WFLAGS) $(shell icu-config --cppflags) + endif + + ifeq ($(IsProdTypeBuild),Y) From owner-svn-ports-head@freebsd.org Thu Oct 8 23:21:53 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 72FAE9D2A02; Thu, 8 Oct 2015 23:21:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DB541510; Thu, 8 Oct 2015 23:21:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t98NLq3o048953; Thu, 8 Oct 2015 23:21:52 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t98NLqud048951; Thu, 8 Oct 2015 23:21:52 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510082321.t98NLqud048951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 8 Oct 2015 23:21:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398898 - head/x11-wm/i3 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: Thu, 08 Oct 2015 23:21:53 -0000 Author: bapt Date: Thu Oct 8 23:21:52 2015 New Revision: 398898 URL: https://svnweb.freebsd.org/changeset/ports/398898 Log: Update to 4.11 Modified: head/x11-wm/i3/Makefile head/x11-wm/i3/distinfo Modified: head/x11-wm/i3/Makefile ============================================================================== --- head/x11-wm/i3/Makefile Thu Oct 8 23:14:18 2015 (r398897) +++ head/x11-wm/i3/Makefile Thu Oct 8 23:21:52 2015 (r398898) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= i3 -DISTVERSION= 4.10.4 +DISTVERSION= 4.11 CATEGORIES= x11-wm MASTER_SITES= http://i3wm.org/downloads/ Modified: head/x11-wm/i3/distinfo ============================================================================== --- head/x11-wm/i3/distinfo Thu Oct 8 23:14:18 2015 (r398897) +++ head/x11-wm/i3/distinfo Thu Oct 8 23:21:52 2015 (r398898) @@ -1,2 +1,2 @@ -SHA256 (i3-4.10.4.tar.bz2) = dd4fa7a5c5b8feaf83f196fc181bfd33aff65c11d81c91b3ae9d9d3d2540655e -SIZE (i3-4.10.4.tar.bz2) = 940744 +SHA256 (i3-4.11.tar.bz2) = 78ce1e06fbd92fd63765bbe23faa7b8f929c17f99ed623f7abf2e568169d982f +SIZE (i3-4.11.tar.bz2) = 972929 From owner-svn-ports-head@freebsd.org Fri Oct 9 02:56:51 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 8E5449D2DE0; Fri, 9 Oct 2015 02:56:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C26D68D; Fri, 9 Oct 2015 02:56:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t992uocD010986; Fri, 9 Oct 2015 02:56:50 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t992uokG010984; Fri, 9 Oct 2015 02:56:50 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201510090256.t992uokG010984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Fri, 9 Oct 2015 02:56:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398899 - in head/x11/i3status: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 02:56:51 -0000 Author: jhb (src,doc committer) Date: Fri Oct 9 02:56:49 2015 New Revision: 398899 URL: https://svnweb.freebsd.org/changeset/ports/398899 Log: Properly check for the charging flag in the returned battery status to determine if the battery is charging. Reviewed by: bapt (maintainer) Differential Revision: https://reviews.freebsd.org/D3849 Added: head/x11/i3status/files/patch-print_battery_info.c (contents, props changed) Modified: head/x11/i3status/Makefile Modified: head/x11/i3status/Makefile ============================================================================== --- head/x11/i3status/Makefile Thu Oct 8 23:21:52 2015 (r398898) +++ head/x11/i3status/Makefile Fri Oct 9 02:56:49 2015 (r398899) @@ -2,7 +2,7 @@ PORTNAME= i3status PORTVERSION= 2.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11 MASTER_SITES= http://i3wm.org/i3status/ Added: head/x11/i3status/files/patch-print_battery_info.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/i3status/files/patch-print_battery_info.c Fri Oct 9 02:56:49 2015 (r398899) @@ -0,0 +1,28 @@ +--- src/print_battery_info.c.orig 2014-01-05 03:34:07.000000000 -0800 ++++ src/print_battery_info.c 2015-10-08 13:33:45.452887000 -0700 +@@ -12,6 +12,7 @@ + #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + #include + #include ++#include + #endif + + #if defined(__OpenBSD__) +@@ -215,7 +216,7 @@ void print_battery_info(yajl_gen json_ge + state = sysctl_rslt; + if (state == 0 && present_rate == 100) + status = CS_FULL; +- else if (state == 0 && present_rate < 100) ++ else if ((state & ACPI_BATT_STAT_CHARGING) && present_rate < 100) + status = CS_CHARGING; + else + status = CS_DISCHARGING; +@@ -227,7 +228,7 @@ void print_battery_info(yajl_gen json_ge + (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", + present_rate); + +- if (state == 1) { ++ if (state == ACPI_BATT_STAT_DISCHARG) { + int hours, minutes; + minutes = remaining; + hours = minutes / 60; From owner-svn-ports-head@freebsd.org Fri Oct 9 03:31: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 E7BDC9D2798; Fri, 9 Oct 2015 03:31:00 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A187B19E7; Fri, 9 Oct 2015 03:31:00 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t993UxvY021004; Fri, 9 Oct 2015 03:30:59 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t993UxXs021001; Fri, 9 Oct 2015 03:30:59 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201510090330.t993UxXs021001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 9 Oct 2015 03:30:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398900 - head/devel/elixir-excoveralls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 03:31:01 -0000 Author: vanilla Date: Fri Oct 9 03:30:59 2015 New Revision: 398900 URL: https://svnweb.freebsd.org/changeset/ports/398900 Log: Upgrade to 0.4.0. Modified: head/devel/elixir-excoveralls/Makefile head/devel/elixir-excoveralls/distinfo head/devel/elixir-excoveralls/pkg-plist Modified: head/devel/elixir-excoveralls/Makefile ============================================================================== --- head/devel/elixir-excoveralls/Makefile Fri Oct 9 02:56:49 2015 (r398899) +++ head/devel/elixir-excoveralls/Makefile Fri Oct 9 03:30:59 2015 (r398900) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= excoveralls -PORTVERSION= 0.3.11 +PORTVERSION= 0.4.0 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-excoveralls/distinfo ============================================================================== --- head/devel/elixir-excoveralls/distinfo Fri Oct 9 02:56:49 2015 (r398899) +++ head/devel/elixir-excoveralls/distinfo Fri Oct 9 03:30:59 2015 (r398900) @@ -1,2 +1,2 @@ -SHA256 (parroty-excoveralls-v0.3.11_GH0.tar.gz) = 1cb49e9b9c1958035ce18f8e9285fa1f55544ddd76df6e772a620b2fa50d48fa -SIZE (parroty-excoveralls-v0.3.11_GH0.tar.gz) = 13226 +SHA256 (parroty-excoveralls-v0.4.0_GH0.tar.gz) = be00fd9558dd0ad79dcfda1736141d959e1dbf731cde3c1f776a4d3adf411dad +SIZE (parroty-excoveralls-v0.4.0_GH0.tar.gz) = 14913 Modified: head/devel/elixir-excoveralls/pkg-plist ============================================================================== --- head/devel/elixir-excoveralls/pkg-plist Fri Oct 9 02:56:49 2015 (r398899) +++ head/devel/elixir-excoveralls/pkg-plist Fri Oct 9 03:30:59 2015 (r398900) @@ -9,8 +9,10 @@ lib/elixir/lib/excoveralls/ebin/Elixir.E lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Poster.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Settings.Files.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Settings.beam +lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.StatServer.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Stats.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.StopWords.beam +lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.SubApps.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Task.Util.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.Travis.beam lib/elixir/lib/excoveralls/ebin/Elixir.ExCoveralls.beam @@ -29,8 +31,10 @@ lib/elixir/lib/excoveralls/lib/excoveral lib/elixir/lib/excoveralls/lib/excoveralls/post.ex lib/elixir/lib/excoveralls/lib/excoveralls/poster.ex lib/elixir/lib/excoveralls/lib/excoveralls/settings.ex +lib/elixir/lib/excoveralls/lib/excoveralls/stat_server.ex lib/elixir/lib/excoveralls/lib/excoveralls/stats.ex lib/elixir/lib/excoveralls/lib/excoveralls/stop_words.ex +lib/elixir/lib/excoveralls/lib/excoveralls/sub_apps.ex lib/elixir/lib/excoveralls/lib/excoveralls/task/util.ex lib/elixir/lib/excoveralls/lib/excoveralls/travis.ex lib/elixir/lib/excoveralls/lib/mix/tasks.ex From owner-svn-ports-head@freebsd.org Fri Oct 9 05:28:35 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 D0CE99D18E1; Fri, 9 Oct 2015 05:28:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E4D3BBD; Fri, 9 Oct 2015 05:28:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t995SYwN054789; Fri, 9 Oct 2015 05:28:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t995SYuT054788; Fri, 9 Oct 2015 05:28:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510090528.t995SYuT054788@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Oct 2015 05:28:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398901 - head/multimedia/mpv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 05:28:35 -0000 Author: jbeich Date: Fri Oct 9 05:28:34 2015 New Revision: 398901 URL: https://svnweb.freebsd.org/changeset/ports/398901 Log: multimedia/mpv: enable more options by default OPENGL, V4L, VAAPI, VDPAU, XINERAMA, ZSH are now enabled to make package more useful. OPENGL, VAAPI, VDPAU also support hardware decoding but only if multimedia/ffmpeg is built with VAAPI, VDPAU (currently off by default). PR: 203534 Submitted by: tobias.kortkamp@gmail.com Approved by: Carlos J Puga Medina (maintainer) Modified: head/multimedia/mpv/Makefile (contents, props changed) Modified: head/multimedia/mpv/Makefile ============================================================================== --- head/multimedia/mpv/Makefile Fri Oct 9 03:30:59 2015 (r398900) +++ head/multimedia/mpv/Makefile Fri Oct 9 05:28:34 2015 (r398901) @@ -4,6 +4,7 @@ PORTNAME= mpv PORTVERSION= 0.11.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= multimedia audio @@ -38,7 +39,8 @@ CONFIGURE_ARGS= --docdir=${EXAMPLESDIR} OPTIONS_DEFINE= ASS DOCS ENCA LCMS2 \ LIBGUESS LUAJIT UCHARDET ZSH -OPTIONS_DEFAULT= ASS DVDREAD DVDNAV ENCA X11 +OPTIONS_DEFAULT= ASS DVDREAD DVDNAV ENCA OPENGL \ + V4L VAAPI VDPAU X11 XINERAMA ZSH OPTIONS_GROUP= IN VO AO OPTIONS_GROUP_IN= CDIO DVDREAD DVDNAV LIBBLURAY V4L SMB OPTIONS_GROUP_VO= CACA OPENGL VAAPI VDPAU X11 XINERAMA From owner-svn-ports-head@freebsd.org Fri Oct 9 06:57:16 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 9FABF9D171F; Fri, 9 Oct 2015 06:57:16 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E63683C; Fri, 9 Oct 2015 06:57:16 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t996vFS9080648; Fri, 9 Oct 2015 06:57:15 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t996vF7f080646; Fri, 9 Oct 2015 06:57:15 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510090657.t996vF7f080646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 9 Oct 2015 06:57:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398902 - head/textproc/p5-Unicode-Normalize X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 06:57:16 -0000 Author: culot Date: Fri Oct 9 06:57:15 2015 New Revision: 398902 URL: https://svnweb.freebsd.org/changeset/ports/398902 Log: - Update to 1.21 Changes: http://search.cpan.org/dist/Unicode-Normalize/Changes Modified: head/textproc/p5-Unicode-Normalize/Makefile head/textproc/p5-Unicode-Normalize/distinfo Modified: head/textproc/p5-Unicode-Normalize/Makefile ============================================================================== --- head/textproc/p5-Unicode-Normalize/Makefile Fri Oct 9 05:28:34 2015 (r398901) +++ head/textproc/p5-Unicode-Normalize/Makefile Fri Oct 9 06:57:15 2015 (r398902) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Unicode-Normalize -PORTVERSION= 1.19 +PORTVERSION= 1.21 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-Unicode-Normalize/distinfo ============================================================================== --- head/textproc/p5-Unicode-Normalize/distinfo Fri Oct 9 05:28:34 2015 (r398901) +++ head/textproc/p5-Unicode-Normalize/distinfo Fri Oct 9 06:57:15 2015 (r398902) @@ -1,2 +1,2 @@ -SHA256 (Unicode-Normalize-1.19.tar.gz) = ab16467692cb78ced706fb7bee4145ac09d9f14d9eed92be4a305de3172ce6c4 -SIZE (Unicode-Normalize-1.19.tar.gz) = 19870 +SHA256 (Unicode-Normalize-1.21.tar.gz) = 232577c3b665fb2347e27ec2bb059d84327dd4783d89e7b2d9dce66a6119eba6 +SIZE (Unicode-Normalize-1.21.tar.gz) = 21192 From owner-svn-ports-head@freebsd.org Fri Oct 9 07:17:16 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 BF2939D230B; Fri, 9 Oct 2015 07:17:16 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B27D19A; Fri, 9 Oct 2015 07:17:16 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t997HFde086596; Fri, 9 Oct 2015 07:17:15 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t997HFU0086589; Fri, 9 Oct 2015 07:17:15 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201510090717.t997HFU0086589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 9 Oct 2015 07:17:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398903 - in head/www: e107 mediawiki123 mediawiki124 mediawiki125 punbb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 07:17:16 -0000 Author: wen Date: Fri Oct 9 07:17:14 2015 New Revision: 398903 URL: https://svnweb.freebsd.org/changeset/ports/398903 Log: - Add missing depend to fix upload error PR: 203633 Submitted by: packet@nerdheim.de Modified: head/www/e107/Makefile head/www/e107/distinfo head/www/mediawiki123/Makefile head/www/mediawiki124/Makefile head/www/mediawiki125/Makefile head/www/punbb/Makefile head/www/punbb/distinfo Modified: head/www/e107/Makefile ============================================================================== --- head/www/e107/Makefile Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/e107/Makefile Fri Oct 9 07:17:14 2015 (r398903) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= e107 -PORTVERSION= 1.0.4 -PORTREVISION= 1 +PORTVERSION= 2.0 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20v${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION}_full @@ -22,13 +21,12 @@ SUB_FILES= pkg-message SUB_LIST= E107DIR=${E107DIR} E107DIR= www/e107 -post-extract: - @cd ${WRKDIR} && ${MKDIR} ${WRKSRC} - @cd ${WRKDIR} && ${MV} *.php ${WRKSRC} - @cd ${WRKDIR} && ${MV} e107_* ${WRKSRC} - @cd ${WRKDIR} && ${MV} e107.htaccess ${WRKSRC} - @cd ${WRKDIR} && ${MV} favicon.ico ${WRKSRC} - @cd ${WRKDIR} && ${MV} e107.robots.txt ${WRKSRC} +USES= dos2unix shebangfix +SHEBANG_FILES= cron.php e107_handlers/bounce_handler.php + +do-extract: + @${MKDIR} ${WRKSRC} + @${TAR} -yxf ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} -C ${WRKSRC} pre-install: @${ECHO_CMD} -e '@owner ${WWWOWN}\n@group ${WWWGRP}' > ${PLIST} Modified: head/www/e107/distinfo ============================================================================== --- head/www/e107/distinfo Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/e107/distinfo Fri Oct 9 07:17:14 2015 (r398903) @@ -1,2 +1,2 @@ -SHA256 (e107_1.0.4_full.tar.gz) = 2a4abbb062b1330aa8052b9688a84502f1ae5a8fac592ec74e67e74de72b0dad -SIZE (e107_1.0.4_full.tar.gz) = 4400394 +SHA256 (e107_2.0_full.tar.gz) = c139f48c7f5d7b496e40a021c65a875f7fc942f0a074cd8c8e2749f9f23c76ea +SIZE (e107_2.0_full.tar.gz) = 6238386 Modified: head/www/mediawiki123/Makefile ============================================================================== --- head/www/mediawiki123/Makefile Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/mediawiki123/Makefile Fri Oct 9 07:17:14 2015 (r398903) @@ -3,7 +3,7 @@ PORTNAME= mediawiki PORTVERSION= 1.23.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 123 @@ -21,7 +21,8 @@ SHEBANG_FILES= maintenance/dev/*.sh \ SHEBANG_LANG= hhvm hhvm_OLD_CMD= /usr/bin/hhvm hhvm_CMD= ${LOCALBASE}/bin/hhvm # not installed by anything yet -USE_PHP= ctype hash iconv mbstring pcre session xml zlib readline dom json +USE_PHP= ctype dom hash iconv json mbstring pcre readline \ + session xml xmlreader zlib WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki @@ -79,6 +80,9 @@ USE_PHP+= sockets pre-install: @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} + @${ECHO} "@mode 0777" >> ${PLIST} + @${ECHO} "@dir %%WWWDIR%%/images" >> ${PLIST} + @${ECHO} "@mode" >> ${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} do-install: Modified: head/www/mediawiki124/Makefile ============================================================================== --- head/www/mediawiki124/Makefile Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/mediawiki124/Makefile Fri Oct 9 07:17:14 2015 (r398903) @@ -3,7 +3,7 @@ PORTNAME= mediawiki PORTVERSION= 1.24.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 124 @@ -21,7 +21,8 @@ SHEBANG_FILES= maintenance/dev/*.sh \ SHEBANG_LANG= hhvm hhvm_OLD_CMD= /usr/bin/hhvm hhvm_CMD= ${LOCALBASE}/bin/hhvm # not installed by anything yet -USE_PHP= ctype hash iconv mbstring pcre session xml zlib readline dom json +USE_PHP= ctype dom hash iconv json mbstring pcre readline \ + session xml xmlreader zlib WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki @@ -79,6 +80,9 @@ USE_PHP+= sockets pre-install: @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} + @${ECHO} "@mode 0777" >> ${PLIST} + @${ECHO} "@dir %%WWWDIR%%/images" >> ${PLIST} + @${ECHO} "@mode" >> ${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} do-install: Modified: head/www/mediawiki125/Makefile ============================================================================== --- head/www/mediawiki125/Makefile Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/mediawiki125/Makefile Fri Oct 9 07:17:14 2015 (r398903) @@ -3,7 +3,7 @@ PORTNAME= mediawiki PORTVERSION= 1.25.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 125 @@ -26,7 +26,8 @@ SHEBANG_FILES= maintenance/dev/*.sh \ SHEBANG_LANG= hhvm hhvm_OLD_CMD= /usr/bin/hhvm hhvm_CMD= ${LOCALBASE}/bin/hhvm # not installed by anything yet -USE_PHP= ctype hash iconv mbstring pcre session xml zlib readline dom json +USE_PHP= ctype dom hash iconv json mbstring pcre readline \ + session xml xmlreader zlib WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki @@ -63,10 +64,13 @@ XCACHE_RUN_DEPENDS= ${LOCALBASE}/lib/php pre-install: @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} @${ECHO} "@dir %%WWWDIR%%/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures" >> ${PLIST} + @${ECHO} "@mode 0777" >> ${PLIST} + @${ECHO} "@dir %%WWWDIR%%/images" >> ${PLIST} + @${ECHO} "@mode" >> ${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} - ${CP} -r ${WRKSRC}/ ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} .include Modified: head/www/punbb/Makefile ============================================================================== --- head/www/punbb/Makefile Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/punbb/Makefile Fri Oct 9 07:17:14 2015 (r398903) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= punbb -PORTVERSION= 1.2.23 +PORTVERSION= 1.4.3 CATEGORIES= www MASTER_SITES= http://punbb.informer.com/download/ \ http://punbb.informer.com/download/plugins/:plugins \ Modified: head/www/punbb/distinfo ============================================================================== --- head/www/punbb/distinfo Fri Oct 9 06:57:15 2015 (r398902) +++ head/www/punbb/distinfo Fri Oct 9 07:17:14 2015 (r398903) @@ -1,5 +1,5 @@ -SHA256 (punbb-1.2.23.tar.bz2) = c175872b029acd7ac68b7a77affcc15dcf5b672b6dd592df0cbe8703a1c00602 -SIZE (punbb-1.2.23.tar.bz2) = 112727 +SHA256 (punbb-1.4.3.tar.bz2) = 7e6bc271b4a1568746ae50513e2073855061e6cae3550e00f47a5eb590042fc3 +SIZE (punbb-1.4.3.tar.bz2) = 272897 SHA256 (Arabic.zip) = b7d00d1d9fcdc266b3876e719feb7c57729ba1a0e012a0392ad39d9df054812d SIZE (Arabic.zip) = 18921 SHA256 (Bangla_UTF8.zip) = 594d065f96fe8ee2953d2367df30a81d83ae00da2d0a7d6aeafcc96f1db84234 From owner-svn-ports-head@freebsd.org Fri Oct 9 07:22: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 5301F9D267E; Fri, 9 Oct 2015 07:22:37 +0000 (UTC) (envelope-from wenheping2000@hotmail.com) Received: from BLU004-OMC1S34.hotmail.com (blu004-omc1s34.hotmail.com [65.55.116.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F1A9888D; Fri, 9 Oct 2015 07:22:36 +0000 (UTC) (envelope-from wenheping2000@hotmail.com) Received: from BLU168-W98 ([65.55.116.7]) by BLU004-OMC1S34.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Fri, 9 Oct 2015 00:21:28 -0700 X-TMN: [lKiu09pIUPawdZmgUZPJD7rYzgZDwitV] X-Originating-Email: [wenheping2000@hotmail.com] Message-ID: From: wenheping To: heping wen , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: RE: svn commit: r398903 - in head/www: e107 mediawiki123 mediawiki124 mediawiki125 punbb Date: Fri, 9 Oct 2015 15:21:27 +0800 Importance: Normal In-Reply-To: <201510090717.t997HFU0086589@repo.freebsd.org> References: <201510090717.t997HFU0086589@repo.freebsd.org> MIME-Version: 1.0 X-OriginalArrivalTime: 09 Oct 2015 07:21:28.0044 (UTC) FILETIME=[1CE802C0:01D10263] Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 07:22:37 -0000 U29ycnksIEkgd2lsbCByZXZlcnQgdGhlIGNvbW1pdCBvZiBwdW5iYiBieSBtaWFzdGFrZS4NCg0K d2VuDQoNCj4gRnJvbTogd2VuQEZyZWVCU0Qub3JnDQo+IERhdGU6IEZyaSwgOSBPY3QgMjAxNSAw NzoxNzoxNSArMDAwMA0KPiBUbzogcG9ydHMtY29tbWl0dGVyc0BmcmVlYnNkLm9yZzsgc3ZuLXBv cnRzLWFsbEBmcmVlYnNkLm9yZzsgc3ZuLXBvcnRzLWhlYWRAZnJlZWJzZC5vcmcNCj4gU3ViamVj dDogc3ZuIGNvbW1pdDogcjM5ODkwMyAtIGluIGhlYWQvd3d3OiBlMTA3IG1lZGlhd2lraTEyMyBt ZWRpYXdpa2kxMjQgbWVkaWF3aWtpMTI1IHB1bmJiDQo+IA0KPiBBdXRob3I6IHdlbg0KPiBEYXRl OiBGcmkgT2N0ICA5IDA3OjE3OjE0IDIwMTUNCj4gTmV3IFJldmlzaW9uOiAzOTg5MDMNCj4gVVJM OiBodHRwczovL3N2bndlYi5mcmVlYnNkLm9yZy9jaGFuZ2VzZXQvcG9ydHMvMzk4OTAzDQo+IA0K PiBMb2c6DQo+ICAgLSBBZGQgbWlzc2luZyBkZXBlbmQgdG8gZml4IHVwbG9hZCBlcnJvcg0KPiAg IA0KPiAgIFBSOgkJMjAzNjMzDQo+ICAgU3VibWl0dGVkIGJ5OglwYWNrZXRAbmVyZGhlaW0uZGUN Cj4gDQo+IE1vZGlmaWVkOg0KPiAgIGhlYWQvd3d3L2UxMDcvTWFrZWZpbGUNCj4gICBoZWFkL3d3 dy9lMTA3L2Rpc3RpbmZvDQo+ICAgaGVhZC93d3cvbWVkaWF3aWtpMTIzL01ha2VmaWxlDQo+ICAg aGVhZC93d3cvbWVkaWF3aWtpMTI0L01ha2VmaWxlDQo+ICAgaGVhZC93d3cvbWVkaWF3aWtpMTI1 L01ha2VmaWxlDQo+ICAgaGVhZC93d3cvcHVuYmIvTWFrZWZpbGUNCj4gICBoZWFkL3d3dy9wdW5i Yi9kaXN0aW5mbw0KPiANCj4gTW9kaWZpZWQ6IGhlYWQvd3d3L2UxMDcvTWFrZWZpbGUNCj4gPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09DQo+IC0tLSBoZWFkL3d3dy9lMTA3L01ha2VmaWxlCUZyaSBPY3Qg IDkgMDY6NTc6MTUgMjAxNQkocjM5ODkwMikNCj4gKysrIGhlYWQvd3d3L2UxMDcvTWFrZWZpbGUJ RnJpIE9jdCAgOSAwNzoxNzoxNCAyMDE1CShyMzk4OTAzKQ0KPiBAQCAtMiw4ICsyLDcgQEANCj4g ICMgJEZyZWVCU0QkDQo+ICANCj4gIFBPUlROQU1FPQllMTA3DQo+IC1QT1JUVkVSU0lPTj0JMS4w LjQNCj4gLVBPUlRSRVZJU0lPTj0JMQ0KPiArUE9SVFZFUlNJT049CTIuMA0KPiAgQ0FURUdPUklF Uz0Jd3d3DQo+ICBNQVNURVJfU0lURVM9CVNGLyR7UE9SVE5BTUV9LyR7UE9SVE5BTUV9LyR7UE9S VE5BTUV9JTIwdiR7UE9SVFZFUlNJT059DQo+ICBESVNUTkFNRT0JJHtQT1JUTkFNRX1fJHtQT1JU VkVSU0lPTn1fZnVsbA0KPiBAQCAtMjIsMTMgKzIxLDEyIEBAIFNVQl9GSUxFUz0JcGtnLW1lc3Nh Z2UNCj4gIFNVQl9MSVNUPQlFMTA3RElSPSR7RTEwN0RJUn0NCj4gIEUxMDdESVI9CXd3dy9lMTA3 DQo+ICANCj4gLXBvc3QtZXh0cmFjdDoNCj4gLQlAY2QgJHtXUktESVJ9ICYmICR7TUtESVJ9ICR7 V1JLU1JDfQ0KPiAtCUBjZCAke1dSS0RJUn0gJiYgJHtNVn0gKi5waHAgJHtXUktTUkN9DQo+IC0J QGNkICR7V1JLRElSfSAmJiAke01WfSBlMTA3XyogJHtXUktTUkN9DQo+IC0JQGNkICR7V1JLRElS fSAmJiAke01WfSBlMTA3Lmh0YWNjZXNzICR7V1JLU1JDfQ0KPiAtCUBjZCAke1dSS0RJUn0gJiYg JHtNVn0gZmF2aWNvbi5pY28gJHtXUktTUkN9DQo+IC0JQGNkICR7V1JLRElSfSAmJiAke01WfSBl MTA3LnJvYm90cy50eHQgJHtXUktTUkN9DQo+ICtVU0VTPQkJZG9zMnVuaXggc2hlYmFuZ2ZpeA0K PiArU0hFQkFOR19GSUxFUz0JY3Jvbi5waHAgZTEwN19oYW5kbGVycy9ib3VuY2VfaGFuZGxlci5w aHANCj4gKw0KPiArZG8tZXh0cmFjdDoNCj4gKwlAJHtNS0RJUn0gJHtXUktTUkN9DQo+ICsJQCR7 VEFSfSAteXhmICR7RElTVERJUn0vJHtESVNUX1NVQkRJUn0vJHtESVNUTkFNRX0ke0VYVFJBQ1Rf U1VGWH0gLUMgJHtXUktTUkN9DQo+ICANCj4gIHByZS1pbnN0YWxsOg0KPiAgCUAke0VDSE9fQ01E fSAtZSAnQG93bmVyICR7V1dXT1dOfVxuQGdyb3VwICR7V1dXR1JQfScgPiAke1BMSVNUfQ0KPiAN Cj4gTW9kaWZpZWQ6IGhlYWQvd3d3L2UxMDcvZGlzdGluZm8NCj4gPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09DQo+IC0tLSBoZWFkL3d3dy9lMTA3L2Rpc3RpbmZvCUZyaSBPY3QgIDkgMDY6NTc6MTUgMjAx NQkocjM5ODkwMikNCj4gKysrIGhlYWQvd3d3L2UxMDcvZGlzdGluZm8JRnJpIE9jdCAgOSAwNzox NzoxNCAyMDE1CShyMzk4OTAzKQ0KPiBAQCAtMSwyICsxLDIgQEANCj4gLVNIQTI1NiAoZTEwN18x LjAuNF9mdWxsLnRhci5neikgPSAyYTRhYmJiMDYyYjEzMzBhYTgwNTJiOTY4OGE4NDUwMmYxYWU1 YThmYWM1OTJlYzc0ZTY3ZTc0ZGU3MmIwZGFkDQo+IC1TSVpFIChlMTA3XzEuMC40X2Z1bGwudGFy Lmd6KSA9IDQ0MDAzOTQNCj4gK1NIQTI1NiAoZTEwN18yLjBfZnVsbC50YXIuZ3opID0gYzEzOWY0 OGM3ZjVkN2I0OTZlNDBhMDIxYzY1YTg3NWY3ZmM5NDJmMGEwNzRjZDhjOGUyNzQ5ZjlmMjNjNzZl YQ0KPiArU0laRSAoZTEwN18yLjBfZnVsbC50YXIuZ3opID0gNjIzODM4Ng0KPiANCj4gTW9kaWZp ZWQ6IGhlYWQvd3d3L21lZGlhd2lraTEyMy9NYWtlZmlsZQ0KPiA9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0NCj4gLS0tIGhlYWQvd3d3L21lZGlhd2lraTEyMy9NYWtlZmlsZQlGcmkgT2N0ICA5IDA2OjU3 OjE1IDIwMTUJKHIzOTg5MDIpDQo+ICsrKyBoZWFkL3d3dy9tZWRpYXdpa2kxMjMvTWFrZWZpbGUJ RnJpIE9jdCAgOSAwNzoxNzoxNCAyMDE1CShyMzk4OTAzKQ0KPiBAQCAtMyw3ICszLDcgQEANCj4g IA0KPiAgUE9SVE5BTUU9CW1lZGlhd2lraQ0KPiAgUE9SVFZFUlNJT049CTEuMjMuMTANCj4gLVBP UlRSRVZJU0lPTj0JMQ0KPiArUE9SVFJFVklTSU9OPQkyDQo+ICBDQVRFR09SSUVTPQl3d3cNCj4g IE1BU1RFUl9TSVRFUz0JaHR0cDovL3JlbGVhc2VzLndpa2ltZWRpYS5vcmcvbWVkaWF3aWtpLyR7 UE9SVFZFUlNJT046Un0vDQo+ICBQS0dOQU1FU1VGRklYPQkxMjMNCj4gQEAgLTIxLDcgKzIxLDgg QEAgU0hFQkFOR19GSUxFUz0JbWFpbnRlbmFuY2UvZGV2Lyouc2ggXA0KPiAgU0hFQkFOR19MQU5H PQloaHZtDQo+ICBoaHZtX09MRF9DTUQ9CS91c3IvYmluL2hodm0NCj4gIGhodm1fQ01EPQkke0xP Q0FMQkFTRX0vYmluL2hodm0gIyBub3QgaW5zdGFsbGVkIGJ5IGFueXRoaW5nIHlldA0KPiAtVVNF X1BIUD0JY3R5cGUgaGFzaCBpY29udiBtYnN0cmluZyBwY3JlIHNlc3Npb24geG1sIHpsaWIgcmVh ZGxpbmUgZG9tIGpzb24NCj4gK1VTRV9QSFA9CWN0eXBlIGRvbSBoYXNoIGljb252IGpzb24gbWJz dHJpbmcgcGNyZSByZWFkbGluZSBcDQo+ICsJCXNlc3Npb24geG1sIHhtbHJlYWRlciB6bGliDQo+ ICBXQU5UX1BIUF9XRUI9CXllcw0KPiAgTUVESUFXSUtJRElSPz0Jd3d3L21lZGlhd2lraQ0KPiAg DQo+IEBAIC03OSw2ICs4MCw5IEBAIFVTRV9QSFArPQlzb2NrZXRzDQo+ICANCj4gIHByZS1pbnN0 YWxsOg0KPiAgCUAke0ZJTkR9IC1zIC1kICR7V1JLU1JDfSAtbm90IC10eXBlIGQgfCAke1NFRH0g InM/JHtXUktTUkN9PyR7TUVESUFXSUtJRElSfT9nIiA+PiR7UExJU1R9DQo+ICsJQCR7RUNIT30g IkBtb2RlIDA3NzciID4+ICR7UExJU1R9DQo+ICsJQCR7RUNIT30gIkBkaXIgJSVXV1dESVIlJS9p bWFnZXMiID4+ICR7UExJU1R9DQo+ICsJQCR7RUNIT30gIkBtb2RlIiA+PiAke1BMSVNUfQ0KPiAg CUAke0VDSE99IEBkaXIgJHtNRURJQVdJS0lESVJ9ID4+ICR7UExJU1R9DQo+ICANCj4gIGRvLWlu c3RhbGw6DQo+IA0KPiBNb2RpZmllZDogaGVhZC93d3cvbWVkaWF3aWtpMTI0L01ha2VmaWxlDQo+ ID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PQ0KPiAtLS0gaGVhZC93d3cvbWVkaWF3aWtpMTI0L01ha2Vm aWxlCUZyaSBPY3QgIDkgMDY6NTc6MTUgMjAxNQkocjM5ODkwMikNCj4gKysrIGhlYWQvd3d3L21l ZGlhd2lraTEyNC9NYWtlZmlsZQlGcmkgT2N0ICA5IDA3OjE3OjE0IDIwMTUJKHIzOTg5MDMpDQo+ IEBAIC0zLDcgKzMsNyBAQA0KPiAgDQo+ICBQT1JUTkFNRT0JbWVkaWF3aWtpDQo+ICBQT1JUVkVS U0lPTj0JMS4yNC4zDQo+IC1QT1JUUkVWSVNJT049CTENCj4gK1BPUlRSRVZJU0lPTj0JMg0KPiAg Q0FURUdPUklFUz0Jd3d3DQo+ICBNQVNURVJfU0lURVM9CWh0dHA6Ly9yZWxlYXNlcy53aWtpbWVk aWEub3JnL21lZGlhd2lraS8ke1BPUlRWRVJTSU9OOlJ9Lw0KPiAgUEtHTkFNRVNVRkZJWD0JMTI0 DQo+IEBAIC0yMSw3ICsyMSw4IEBAIFNIRUJBTkdfRklMRVM9CW1haW50ZW5hbmNlL2Rldi8qLnNo IFwNCj4gIFNIRUJBTkdfTEFORz0JaGh2bQ0KPiAgaGh2bV9PTERfQ01EPQkvdXNyL2Jpbi9oaHZt DQo+ICBoaHZtX0NNRD0JJHtMT0NBTEJBU0V9L2Jpbi9oaHZtICMgbm90IGluc3RhbGxlZCBieSBh bnl0aGluZyB5ZXQNCj4gLVVTRV9QSFA9CWN0eXBlIGhhc2ggaWNvbnYgbWJzdHJpbmcgcGNyZSBz ZXNzaW9uIHhtbCB6bGliIHJlYWRsaW5lIGRvbSBqc29uDQo+ICtVU0VfUEhQPQljdHlwZSBkb20g aGFzaCBpY29udiBqc29uIG1ic3RyaW5nIHBjcmUgcmVhZGxpbmUgXA0KPiArCQlzZXNzaW9uIHht bCB4bWxyZWFkZXIgemxpYg0KPiAgV0FOVF9QSFBfV0VCPQl5ZXMNCj4gIE1FRElBV0lLSURJUj89 CXd3dy9tZWRpYXdpa2kNCj4gIA0KPiBAQCAtNzksNiArODAsOSBAQCBVU0VfUEhQKz0Jc29ja2V0 cw0KPiAgDQo+ICBwcmUtaW5zdGFsbDoNCj4gIAlAJHtGSU5EfSAtcyAtZCAke1dSS1NSQ30gLW5v dCAtdHlwZSBkIHwgJHtTRUR9ICJzPyR7V1JLU1JDfT8ke01FRElBV0lLSURJUn0/ZyIgPj4ke1BM SVNUfQ0KPiArCUAke0VDSE99ICJAbW9kZSAwNzc3IiA+PiAke1BMSVNUfQ0KPiArCUAke0VDSE99 ICJAZGlyICUlV1dXRElSJSUvaW1hZ2VzIiA+PiAke1BMSVNUfQ0KPiArCUAke0VDSE99ICJAbW9k ZSIgPj4gJHtQTElTVH0NCj4gIAlAJHtFQ0hPfSBAZGlyICR7TUVESUFXSUtJRElSfSA+PiAke1BM SVNUfQ0KPiAgDQo+ICBkby1pbnN0YWxsOg0KPiANCj4gTW9kaWZpZWQ6IGhlYWQvd3d3L21lZGlh d2lraTEyNS9NYWtlZmlsZQ0KPiA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCj4gLS0tIGhlYWQvd3d3 L21lZGlhd2lraTEyNS9NYWtlZmlsZQlGcmkgT2N0ICA5IDA2OjU3OjE1IDIwMTUJKHIzOTg5MDIp DQo+ICsrKyBoZWFkL3d3dy9tZWRpYXdpa2kxMjUvTWFrZWZpbGUJRnJpIE9jdCAgOSAwNzoxNzox NCAyMDE1CShyMzk4OTAzKQ0KPiBAQCAtMyw3ICszLDcgQEANCj4gIA0KPiAgUE9SVE5BTUU9CW1l ZGlhd2lraQ0KPiAgUE9SVFZFUlNJT049CTEuMjUuMg0KPiAtUE9SVFJFVklTSU9OPQkxDQo+ICtQ T1JUUkVWSVNJT049CTINCj4gIENBVEVHT1JJRVM9CXd3dw0KPiAgTUFTVEVSX1NJVEVTPQlodHRw Oi8vcmVsZWFzZXMud2lraW1lZGlhLm9yZy9tZWRpYXdpa2kvJHtQT1JUVkVSU0lPTjpSfS8NCj4g IFBLR05BTUVTVUZGSVg9CTEyNQ0KPiBAQCAtMjYsNyArMjYsOCBAQCBTSEVCQU5HX0ZJTEVTPQlt YWludGVuYW5jZS9kZXYvKi5zaCBcDQo+ICBTSEVCQU5HX0xBTkc9CWhodm0NCj4gIGhodm1fT0xE X0NNRD0JL3Vzci9iaW4vaGh2bQ0KPiAgaGh2bV9DTUQ9CSR7TE9DQUxCQVNFfS9iaW4vaGh2bSAj IG5vdCBpbnN0YWxsZWQgYnkgYW55dGhpbmcgeWV0DQo+IC1VU0VfUEhQPQljdHlwZSBoYXNoIGlj b252IG1ic3RyaW5nIHBjcmUgc2Vzc2lvbiB4bWwgemxpYiByZWFkbGluZSBkb20ganNvbg0KPiAr VVNFX1BIUD0JY3R5cGUgZG9tIGhhc2ggaWNvbnYganNvbiBtYnN0cmluZyBwY3JlIHJlYWRsaW5l IFwNCj4gKwkJc2Vzc2lvbiB4bWwgeG1scmVhZGVyIHpsaWINCj4gIFdBTlRfUEhQX1dFQj0JeWVz DQo+ICBNRURJQVdJS0lESVI/PQl3d3cvbWVkaWF3aWtpDQo+ICANCj4gQEAgLTYzLDEwICs2NCwx MyBAQCBYQ0FDSEVfUlVOX0RFUEVORFM9CSR7TE9DQUxCQVNFfS9saWIvcGhwDQo+ICBwcmUtaW5z dGFsbDoNCj4gIAlAJHtGSU5EfSAtcyAtZCAke1dSS1NSQ30gLW5vdCAtdHlwZSBkIHwgJHtTRUR9 ICJzPyR7V1JLU1JDfT8ke01FRElBV0lLSURJUn0/ZyIgPj4ke1BMSVNUfQ0KPiAgCUAke0VDSE99 ICJAZGlyICUlV1dXRElSJSUvdmVuZG9yL21vbm9sb2cvbW9ub2xvZy90ZXN0cy9Nb25vbG9nL0hh bmRsZXIvRml4dHVyZXMiID4+ICR7UExJU1R9DQo+ICsJQCR7RUNIT30gIkBtb2RlIDA3NzciID4+ ICR7UExJU1R9DQo+ICsJQCR7RUNIT30gIkBkaXIgJSVXV1dESVIlJS9pbWFnZXMiID4+ICR7UExJ U1R9DQo+ICsJQCR7RUNIT30gIkBtb2RlIiA+PiAke1BMSVNUfQ0KPiAgCUAke0VDSE99IEBkaXIg JHtNRURJQVdJS0lESVJ9ID4+ICR7UExJU1R9DQo+ICANCj4gIGRvLWluc3RhbGw6DQo+ICAJQCR7 TUtESVJ9ICR7U1RBR0VESVJ9JHtQUkVGSVh9LyR7TUVESUFXSUtJRElSfQ0KPiAtCSR7Q1B9IC1y ICR7V1JLU1JDfS8gJHtTVEFHRURJUn0ke1BSRUZJWH0vJHtNRURJQVdJS0lESVJ9DQo+ICsJQGNk ICR7V1JLU1JDfSAmJiAke0NPUFlUUkVFX1NIQVJFfSAuICR7U1RBR0VESVJ9JHtQUkVGSVh9LyR7 TUVESUFXSUtJRElSfQ0KPiAgDQo+ICAuaW5jbHVkZSA8YnNkLnBvcnQubWs+DQo+IA0KPiBNb2Rp ZmllZDogaGVhZC93d3cvcHVuYmIvTWFrZWZpbGUNCj4gPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQo+ IC0tLSBoZWFkL3d3dy9wdW5iYi9NYWtlZmlsZQlGcmkgT2N0ICA5IDA2OjU3OjE1IDIwMTUJKHIz OTg5MDIpDQo+ICsrKyBoZWFkL3d3dy9wdW5iYi9NYWtlZmlsZQlGcmkgT2N0ICA5IDA3OjE3OjE0 IDIwMTUJKHIzOTg5MDMpDQo+IEBAIC0yLDcgKzIsNyBAQA0KPiAgIyAkRnJlZUJTRCQNCj4gIA0K PiAgUE9SVE5BTUU9CXB1bmJiDQo+IC1QT1JUVkVSU0lPTj0JMS4yLjIzDQo+ICtQT1JUVkVSU0lP Tj0JMS40LjMNCj4gIENBVEVHT1JJRVM9CXd3dw0KPiAgTUFTVEVSX1NJVEVTPQlodHRwOi8vcHVu YmIuaW5mb3JtZXIuY29tL2Rvd25sb2FkLyBcDQo+ICAJCWh0dHA6Ly9wdW5iYi5pbmZvcm1lci5j b20vZG93bmxvYWQvcGx1Z2lucy86cGx1Z2lucyBcDQo+IA0KPiBNb2RpZmllZDogaGVhZC93d3cv cHVuYmIvZGlzdGluZm8NCj4gPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQo+IC0tLSBoZWFkL3d3dy9w dW5iYi9kaXN0aW5mbwlGcmkgT2N0ICA5IDA2OjU3OjE1IDIwMTUJKHIzOTg5MDIpDQo+ICsrKyBo ZWFkL3d3dy9wdW5iYi9kaXN0aW5mbwlGcmkgT2N0ICA5IDA3OjE3OjE0IDIwMTUJKHIzOTg5MDMp DQo+IEBAIC0xLDUgKzEsNSBAQA0KPiAtU0hBMjU2IChwdW5iYi0xLjIuMjMudGFyLmJ6MikgPSBj MTc1ODcyYjAyOWFjZDdhYzY4YjdhNzdhZmZjYzE1ZGNmNWI2NzJiNmRkNTkyZGYwY2JlODcwM2Ex YzAwNjAyDQo+IC1TSVpFIChwdW5iYi0xLjIuMjMudGFyLmJ6MikgPSAxMTI3MjcNCj4gK1NIQTI1 NiAocHVuYmItMS40LjMudGFyLmJ6MikgPSA3ZTZiYzI3MWI0YTE1Njg3NDZhZTUwNTEzZTIwNzM4 NTUwNjFlNmNhZTM1NTBlMDBmNDdhNWViNTkwMDQyZmMzDQo+ICtTSVpFIChwdW5iYi0xLjQuMy50 YXIuYnoyKSA9IDI3Mjg5Nw0KPiAgU0hBMjU2IChBcmFiaWMuemlwKSA9IGI3ZDAwZDFkOWZjZGMy NjZiMzg3NmU3MTlmZWI3YzU3NzI5YmExYTBlMDEyYTAzOTJhZDM5ZDlkZjA1NDgxMmQNCj4gIFNJ WkUgKEFyYWJpYy56aXApID0gMTg5MjENCj4gIFNIQTI1NiAoQmFuZ2xhX1VURjguemlwKSA9IDU5 NGQwNjVmOTZmZThlZTI5NTNkMjM2N2RmMzBhODFkODNhZTAwZGEyZDBhN2Q2YWVhZmNjOTZmMWRi ODQyMzQNCj4gDQogCQkgCSAgIAkJICA= From owner-svn-ports-head@freebsd.org Fri Oct 9 07:23: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 4CC9E9D26E1; Fri, 9 Oct 2015 07:23:18 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15607978; Fri, 9 Oct 2015 07:23:18 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t997NHN7089455; Fri, 9 Oct 2015 07:23:17 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t997NGE1089453; Fri, 9 Oct 2015 07:23:16 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201510090723.t997NGE1089453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 9 Oct 2015 07:23:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398904 - head/www/punbb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 07:23:18 -0000 Author: wen Date: Fri Oct 9 07:23:16 2015 New Revision: 398904 URL: https://svnweb.freebsd.org/changeset/ports/398904 Log: - Revert the last commit by mistake Modified: head/www/punbb/Makefile head/www/punbb/distinfo Modified: head/www/punbb/Makefile ============================================================================== --- head/www/punbb/Makefile Fri Oct 9 07:17:14 2015 (r398903) +++ head/www/punbb/Makefile Fri Oct 9 07:23:16 2015 (r398904) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= punbb -PORTVERSION= 1.4.3 +PORTVERSION= 1.2.23 CATEGORIES= www MASTER_SITES= http://punbb.informer.com/download/ \ http://punbb.informer.com/download/plugins/:plugins \ Modified: head/www/punbb/distinfo ============================================================================== --- head/www/punbb/distinfo Fri Oct 9 07:17:14 2015 (r398903) +++ head/www/punbb/distinfo Fri Oct 9 07:23:16 2015 (r398904) @@ -1,5 +1,5 @@ -SHA256 (punbb-1.4.3.tar.bz2) = 7e6bc271b4a1568746ae50513e2073855061e6cae3550e00f47a5eb590042fc3 -SIZE (punbb-1.4.3.tar.bz2) = 272897 +SHA256 (punbb-1.2.23.tar.bz2) = c175872b029acd7ac68b7a77affcc15dcf5b672b6dd592df0cbe8703a1c00602 +SIZE (punbb-1.2.23.tar.bz2) = 112727 SHA256 (Arabic.zip) = b7d00d1d9fcdc266b3876e719feb7c57729ba1a0e012a0392ad39d9df054812d SIZE (Arabic.zip) = 18921 SHA256 (Bangla_UTF8.zip) = 594d065f96fe8ee2953d2367df30a81d83ae00da2d0a7d6aeafcc96f1db84234 From owner-svn-ports-head@freebsd.org Fri Oct 9 07:35:27 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 EBBC19D103E; Fri, 9 Oct 2015 07:35:27 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6F23F4F; Fri, 9 Oct 2015 07:35:27 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t997ZQkY096036; Fri, 9 Oct 2015 07:35:26 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t997ZQX9096034; Fri, 9 Oct 2015 07:35:26 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510090735.t997ZQX9096034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 9 Oct 2015 07:35:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398905 - head/devel/erlang-jsx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 07:35:28 -0000 Author: olgeni Date: Fri Oct 9 07:35:26 2015 New Revision: 398905 URL: https://svnweb.freebsd.org/changeset/ports/398905 Log: Upgrade devel/erlang-jsx to version 2.8.0. Modified: head/devel/erlang-jsx/Makefile head/devel/erlang-jsx/distinfo Modified: head/devel/erlang-jsx/Makefile ============================================================================== --- head/devel/erlang-jsx/Makefile Fri Oct 9 07:23:16 2015 (r398904) +++ head/devel/erlang-jsx/Makefile Fri Oct 9 07:35:26 2015 (r398905) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jsx -PORTVERSION= 2.7.2 +PORTVERSION= 2.8.0 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-jsx/distinfo ============================================================================== --- head/devel/erlang-jsx/distinfo Fri Oct 9 07:23:16 2015 (r398904) +++ head/devel/erlang-jsx/distinfo Fri Oct 9 07:35:26 2015 (r398905) @@ -1,2 +1,2 @@ -SHA256 (talentdeficit-jsx-2.7.2_GH0.tar.gz) = 13fd45d95fd7a6d557de314fe0344e23da84a5db8c5f757b9a881b4690e1e240 -SIZE (talentdeficit-jsx-2.7.2_GH0.tar.gz) = 41296 +SHA256 (talentdeficit-jsx-2.8.0_GH0.tar.gz) = 13da17d2b7b225424d0a534c94fb9aef2f2785732030ee077917e7299a431bdb +SIZE (talentdeficit-jsx-2.8.0_GH0.tar.gz) = 41497 From owner-svn-ports-head@freebsd.org Fri Oct 9 09:06: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 536C79D29E8; Fri, 9 Oct 2015 09:06:18 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C3113C4; Fri, 9 Oct 2015 09:06:18 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9996HNd057155; Fri, 9 Oct 2015 09:06:17 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9996G4O057147; Fri, 9 Oct 2015 09:06:16 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510090906.t9996G4O057147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 9 Oct 2015 09:06:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398906 - in head/security: . esteidfirefoxplugin esteidfirefoxplugin/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 09:06:18 -0000 Author: tijl Date: Fri Oct 9 09:06:16 2015 New Revision: 398906 URL: https://svnweb.freebsd.org/changeset/ports/398906 Log: New port: security/esteidfirefoxplugin A Firefox plugin that enables in-browser digital signing with Estonian ID cards. PR: 194300 Submitted by: toomas.aas@raad.tartu.ee Reviewed by: marino Added: head/security/esteidfirefoxplugin/ head/security/esteidfirefoxplugin/Makefile (contents, props changed) head/security/esteidfirefoxplugin/distinfo (contents, props changed) head/security/esteidfirefoxplugin/files/ head/security/esteidfirefoxplugin/files/patch-Makefile (contents, props changed) head/security/esteidfirefoxplugin/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Oct 9 07:35:26 2015 (r398905) +++ head/security/Makefile Fri Oct 9 09:06:16 2015 (r398906) @@ -116,6 +116,7 @@ SUBDIR += engine_pkcs11 SUBDIR += erlang-jose SUBDIR += erlang-p1tls + SUBDIR += esteidfirefoxplugin SUBDIR += expiretable SUBDIR += f-prot SUBDIR += fakebo Added: head/security/esteidfirefoxplugin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/esteidfirefoxplugin/Makefile Fri Oct 9 09:06:16 2015 (r398906) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= esteidfirefoxplugin +PORTVERSION= 3.8.0.1115 +CATEGORIES= security +MASTER_SITES= https://installer.id.ee/media/sources/ + +MAINTAINER= toomas.aas@raad.tartu.ee +COMMENT= Digital signing with Estonian ID card in Firefox + +LICENSE= LGPL21 + +RUN_DEPENDS= opensc-tool:${PORTSDIR}/security/opensc \ + pcscd:${PORTSDIR}/devel/pcsc-lite + +USE_OPENSSL= yes +USE_GNOME= gtk20 +USES= webplugin:gecko pkgconfig +WEBPLUGIN_DIR= ${PREFIX}/lib +WEBPLUGIN_FILES= npesteid-firefox-plugin.so + +ALL_TARGET= plugin + +EXTRACT_AFTER_ARGS= --exclude 'include/openssl' + +PLIST_FILES= lib/npesteid-firefox-plugin.so + +post-install: + ${INSTALL_LIB} ${WRKSRC}/npesteid-firefox-plugin.so ${STAGEDIR}${PREFIX}/lib + +.include Added: head/security/esteidfirefoxplugin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/esteidfirefoxplugin/distinfo Fri Oct 9 09:06:16 2015 (r398906) @@ -0,0 +1,2 @@ +SHA256 (esteidfirefoxplugin-3.8.0.1115.tar.gz) = 2783d275f08e3addc1e07990656220568477261367b56aa4737a89e14517afef +SIZE (esteidfirefoxplugin-3.8.0.1115.tar.gz) = 444994 Added: head/security/esteidfirefoxplugin/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/esteidfirefoxplugin/files/patch-Makefile Fri Oct 9 09:06:16 2015 (r398906) @@ -0,0 +1,15 @@ +--- ./Makefile.orig 2013-04-29 17:49:10.000000000 +0300 ++++ ./Makefile 2014-09-10 16:37:31.000000000 +0300 +@@ -1,10 +1,10 @@ + # EstEID Browser Plugin +-CC = gcc ++CC = cc + COMMON_HEADERS = common/esteid_certinfo.h common/pkcs11_errors.h common/esteid_log.h common/esteid_sign.h common/esteid_timer.h common/esteid_time.h common/l10n.h common/labels.h common/esteid_map.h common/esteid_dialog_common.h + COMMON_SOURCES = common/esteid_certinfo.c common/pkcs11_errors.c common/esteid_log.c common/esteid_sign.c common/esteid_timer.c common/esteid_time.c common/l10n.c common/l10n-linux.c common/esteid_map.c common/esteid_dialog_common.c + C_FLAGS = -g -O2 -std=gnu99 -Wall $(CPPFLAGS) + I_FLAGS = -Iinclude -Icommon `pkg-config --cflags gtk+-2.0` +-L_FLAGS = -ldl -lcrypto -lpthread `pkg-config --libs gtk+-2.0` ++L_FLAGS = -lcrypto -lpthread `pkg-config --libs gtk+-2.0` + D_FLAGS = -DXP_UNIX -DMOZ_X11 + PLUGIN_HEADERS = firefox/plugin.h firefox/plugin-class.h firefox/cert-class.h + PLUGIN_SOURCES = firefox/plugin.c firefox/plugin-class.c firefox/cert-class.c Added: head/security/esteidfirefoxplugin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/esteidfirefoxplugin/pkg-descr Fri Oct 9 09:06:16 2015 (r398906) @@ -0,0 +1,4 @@ +A Firefox plugin that enables in-browser digital signing with Estonian ID +cards. + +WWW: http://www.id.ee/ From owner-svn-ports-head@freebsd.org Fri Oct 9 10:21:35 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 712699D2655; Fri, 9 Oct 2015 10:21:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C0D36C4; Fri, 9 Oct 2015 10:21:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99ALYEa085446; Fri, 9 Oct 2015 10:21:34 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99ALXQL085438; Fri, 9 Oct 2015 10:21:33 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201510091021.t99ALXQL085438@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 9 Oct 2015 10:21:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398907 - in head/graphics: . seexpr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 10:21:35 -0000 Author: danfe Date: Fri Oct 9 10:21:33 2015 New Revision: 398907 URL: https://svnweb.freebsd.org/changeset/ports/398907 Log: Add a port of SeExpr, embeddable expression evaluation language from Walt Disney Animation Studios. WWW: http://www.disneyanimation.com/technology/seexpr.html Added: head/graphics/seexpr/ head/graphics/seexpr/Makefile (contents, props changed) head/graphics/seexpr/distinfo (contents, props changed) head/graphics/seexpr/pkg-descr (contents, props changed) head/graphics/seexpr/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Fri Oct 9 09:06:16 2015 (r398906) +++ head/graphics/Makefile Fri Oct 9 10:21:33 2015 (r398907) @@ -968,6 +968,7 @@ SUBDIR += sdump SUBDIR += seam-carving-gui SUBDIR += seejpeg + SUBDIR += seexpr SUBDIR += seom SUBDIR += separate SUBDIR += seq2gif Added: head/graphics/seexpr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seexpr/Makefile Fri Oct 9 10:21:33 2015 (r398907) @@ -0,0 +1,42 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= seexpr +DISTVERSION= 1.0.1.2015.08.29 +CATEGORIES= graphics math + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Embeddable expression evaluation language + +LICENSE= APACHE20 + +BUILD_DEPENDS= ${LOCALBASE}/share/py-sip/QtGui/QtGuimod.sip:${PORTSDIR}/x11-toolkits/py-qt4-gui + +USE_GITHUB= yes +GH_ACCOUNT= wdas +GH_TAGNAME= 36ffb818b8 + +USES= bison cmake compiler:c++0x python +USE_QT4= moc_build qmake_build rcc_build uic_build gui opengl + +WRKSRC= ${WRKDIR}/SeExpr-${GH_TAGNAME_EXTRACT} + +CXXFLAGS+= -I${LOCALBASE}/include + +.include + +# base flex(1) v2.5.4 is not sufficient +.if ${OSVERSION} < 1000033 +BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex +.endif + +post-patch: + @${REINPLACE_CMD} -e '//d' ${WRKSRC}/src/SeExpr/SePlatform.h + @${REINPLACE_CMD} -e 's, "dl",,' ${WRKSRC}/src/SeExpr/CMakeLists.txt + @${REINPLACE_CMD} -e '/tests/d' ${WRKSRC}/CMakeLists.txt +.if ${OSVERSION} < 1000033 + @${REINPLACE_CMD} -e '/COMMAND/s,flex,${LOCALBASE}/bin/&,' \ + ${WRKSRC}/src/build/macros.cmake +.endif + +.include Added: head/graphics/seexpr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seexpr/distinfo Fri Oct 9 10:21:33 2015 (r398907) @@ -0,0 +1,2 @@ +SHA256 (wdas-seexpr-1.0.1.2015.08.29-36ffb818b8_GH0.tar.gz) = 8361adb26310060b063e37376625acb60314deac081130a397857f04884e2a7b +SIZE (wdas-seexpr-1.0.1.2015.08.29-36ffb818b8_GH0.tar.gz) = 709489 Added: head/graphics/seexpr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seexpr/pkg-descr Fri Oct 9 10:21:33 2015 (r398907) @@ -0,0 +1,13 @@ +SeExpr is simple expression language that provided artistic control and +customization to your software. It can be used for procedural geometry +synthesis, image synthesis, simulation control, and much more. + +Major features: + + * Arithmetic expression of scalar/vector types + * Large library of built-in functions + * Extensible variables and functions (including with DSOs) + * Simple to embed in any program + * High-level UI components to manipulate and visualize expressions + +WWW: http://www.disneyanimation.com/technology/seexpr.html Added: head/graphics/seexpr/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seexpr/pkg-plist Fri Oct 9 10:21:33 2015 (r398907) @@ -0,0 +1,41 @@ +bin/asciiCalc +bin/asciiGraph +bin/imageEditor +bin/imageSynth +include/SeContext.h +include/SeCurve.h +include/SeExprBuiltins.h +include/SeExprEditor/SeExprEdBrowser.h +include/SeExprEditor/SeExprEdColorCurve.h +include/SeExprEditor/SeExprEdColorSwatchWidget.h +include/SeExprEditor/SeExprEdControl.h +include/SeExprEditor/SeExprEdControlCollection.h +include/SeExprEditor/SeExprEdCurve.h +include/SeExprEditor/SeExprEdDialog.h +include/SeExprEditor/SeExprEdFileDialog.h +include/SeExprEditor/SeExprEdGrapher2d.h +include/SeExprEditor/SeExprEdPopupDocumentation.h +include/SeExprEditor/SeExprEdShortEdit.h +include/SeExprEditor/SeExprEditor.h +include/SeExprFunc.h +include/SeExprMacros.h +include/SeExprNode.h +include/SeExprParser.h +include/SeExpression.h +include/SeMutex.h +include/SeNoise.h +include/SeNoiseTables.h +include/SePlatform.h +include/SeVec3d.h +lib/libSeExpr.a +lib/libSeExpr.so +lib/libSeExprEditor.so +%%PYTHON_SITELIBDIR%%/SeExpr/__init__.py +%%PYTHON_SITELIBDIR%%/SeExpr/expreditor.so +share/SeExpr/demo/segraph +share/SeExpr/expressions/fbm.se +share/SeExpr/expressions/noise.se +share/SeExpr/expressions/noisecolor1.se +share/SeExpr/expressions/noisecolor2.se +share/SeExpr/expressions/raytrace.se +share/SeExpr/expressions/sinc.se From owner-svn-ports-head@freebsd.org Fri Oct 9 12:12: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 4F3219D19E3; Fri, 9 Oct 2015 12:12:47 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2512A67; Fri, 9 Oct 2015 12:12:46 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99CCkNw043368; Fri, 9 Oct 2015 12:12:46 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99CCj3F043366; Fri, 9 Oct 2015 12:12:45 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510091212.t99CCj3F043366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 9 Oct 2015 12:12:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398908 - in head/sysutils: usermin webmin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 12:12:47 -0000 Author: olgeni Date: Fri Oct 9 12:12:45 2015 New Revision: 398908 URL: https://svnweb.freebsd.org/changeset/ports/398908 Log: Make sure to patch all config files for %%PREFIX%%. Modified: head/sysutils/usermin/Makefile head/sysutils/webmin/Makefile Modified: head/sysutils/usermin/Makefile ============================================================================== --- head/sysutils/usermin/Makefile Fri Oct 9 10:21:33 2015 (r398907) +++ head/sysutils/usermin/Makefile Fri Oct 9 12:12:45 2015 (r398908) @@ -2,6 +2,7 @@ PORTNAME= usermin PORTVERSION= 1.670 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.webmin.com/uupdates/:up \ SF/webadmin/${PORTNAME}/${PORTVERSION}:sf \ @@ -43,7 +44,7 @@ post-patch: @${REINPLACE_CMD} -i '' -e 's|=/etc/webmin|=${PREFIX}/etc/webmin|' ${WRKSRC}/${file} .endfor - @${FIND} ${WRKSRC} -name config-freebsd\* \ + @${FIND} ${WRKSRC} \( -name config-freebsd\* -or -name config \) \ -exec ${REINPLACE_CMD} -e "s@/usr/local@${PREFIX}@g" {} \; \ -exec ${REINPLACE_CMD} -e "s@%%PREFIX%%@${PREFIX}@g" {} \; Modified: head/sysutils/webmin/Makefile ============================================================================== --- head/sysutils/webmin/Makefile Fri Oct 9 10:21:33 2015 (r398907) +++ head/sysutils/webmin/Makefile Fri Oct 9 12:12:45 2015 (r398908) @@ -3,6 +3,7 @@ PORTNAME= webmin PORTVERSION= 1.760 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://download.webmin.com/updates/:up \ SF/webadmin/${PORTNAME}/${PORTVERSION}:sf @@ -37,7 +38,7 @@ post-extract: post-patch: @${REINPLACE_CMD} -e "s@%%PREFIX%%@${PREFIX}@g" ${WRKSRC}/setup.sh - @${FIND} ${WRKSRC} -name config-freebsd\* \ + @${FIND} ${WRKSRC} \( -name config-freebsd\* -or -name config \) \ -exec ${REINPLACE_CMD} -e "s@/usr/local@${PREFIX}@g" {} \; \ -exec ${REINPLACE_CMD} -e "s@%%PREFIX%%@${PREFIX}@g" {} \; From owner-svn-ports-head@freebsd.org Fri Oct 9 12:34:13 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 DB9C09D297E; Fri, 9 Oct 2015 12:34:13 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3549A5E; Fri, 9 Oct 2015 12:34:13 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99CYC14049900; Fri, 9 Oct 2015 12:34:12 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99CYCVq049898; Fri, 9 Oct 2015 12:34:12 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201510091234.t99CYCVq049898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 9 Oct 2015 12:34:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398909 - head/x11/yad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 12:34:14 -0000 Author: danilo Date: Fri Oct 9 12:34:12 2015 New Revision: 398909 URL: https://svnweb.freebsd.org/changeset/ports/398909 Log: - Update to 0.31.2 Modified: head/x11/yad/Makefile head/x11/yad/distinfo Modified: head/x11/yad/Makefile ============================================================================== --- head/x11/yad/Makefile Fri Oct 9 12:12:45 2015 (r398908) +++ head/x11/yad/Makefile Fri Oct 9 12:34:12 2015 (r398909) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yad -PORTVERSION= 0.31.1 +PORTVERSION= 0.31.2 CATEGORIES= x11 gnome MASTER_SITES= SF/${PORTNAME}-dialog/ Modified: head/x11/yad/distinfo ============================================================================== --- head/x11/yad/distinfo Fri Oct 9 12:12:45 2015 (r398908) +++ head/x11/yad/distinfo Fri Oct 9 12:34:12 2015 (r398909) @@ -1,2 +1,2 @@ -SHA256 (yad-0.31.1.tar.xz) = 3716d71861009add49e0a8a2269b181feffd0449e4cdf4f317f873dfb8c94b82 -SIZE (yad-0.31.1.tar.xz) = 243104 +SHA256 (yad-0.31.2.tar.xz) = c91d6a9eb36abdb502d2d8ada0ec29c266b94a6628f723adeca436bee0b6c55c +SIZE (yad-0.31.2.tar.xz) = 243064 From owner-svn-ports-head@freebsd.org Fri Oct 9 13:10:54 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 366399D2301; Fri, 9 Oct 2015 13:10:54 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E081419D1; Fri, 9 Oct 2015 13:10:53 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DArwM062614; Fri, 9 Oct 2015 13:10:53 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DAqS5062605; Fri, 9 Oct 2015 13:10:52 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091310.t99DAqS5062605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:10:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398910 - in head/devel: . rubygem-algebrick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:10:54 -0000 Author: mmoll Date: Fri Oct 9 13:10:52 2015 New Revision: 398910 URL: https://svnweb.freebsd.org/changeset/ports/398910 Log: new port: devel/rubygem-algebrick Typed structs on steroids based on algebraic types and pattern matching seamlessly integrating with standard Ruby features. WWW: https://github.com/pitr-ch/algebrick Added: head/devel/rubygem-algebrick/ head/devel/rubygem-algebrick/Makefile (contents, props changed) head/devel/rubygem-algebrick/distinfo (contents, props changed) head/devel/rubygem-algebrick/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 12:34:12 2015 (r398909) +++ head/devel/Makefile Fri Oct 9 13:10:52 2015 (r398910) @@ -4589,6 +4589,7 @@ SUBDIR += rubygem-activesupport SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport41 + SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-allison SUBDIR += rubygem-analogger Added: head/devel/rubygem-algebrick/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/Makefile Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= algebrick +PORTVERSION= 0.7.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Typed structs based on algebraic type definitions + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-algebrick/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/distinfo Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,2 @@ +SHA256 (rubygem/algebrick-0.7.3.gem) = 83d67eff094ed2ca896c44680585d6c8689e73fe3673d6e7fe7e9accabf5c019 +SIZE (rubygem/algebrick-0.7.3.gem) = 26624 Added: head/devel/rubygem-algebrick/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/pkg-descr Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,4 @@ +Typed structs on steroids based on algebraic types and pattern matching +seamlessly integrating with standard Ruby features. + +WWW: https://github.com/pitr-ch/algebrick From owner-svn-ports-head@freebsd.org Fri Oct 9 13:14: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 D11049D25A8; Fri, 9 Oct 2015 13:14:11 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 908861CFD; Fri, 9 Oct 2015 13:14:11 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DEAB8062997; Fri, 9 Oct 2015 13:14:10 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DEAZp062993; Fri, 9 Oct 2015 13:14:10 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091314.t99DEAZp062993@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:14:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398911 - in head/devel: . rubygem-apipie-params X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:14:12 -0000 Author: mmoll Date: Fri Oct 9 13:14:10 2015 New Revision: 398911 URL: https://svnweb.freebsd.org/changeset/ports/398911 Log: new port: devel/rubygem-apipie-params DSL for Hash/JSON descriptions. Allows description of hash formats using Ruby code, generating a json-schema for it and validating values against it. It's based on the DSL of apipie-rails. WWW: https://github.com/iNecas/apipie-params Added: head/devel/rubygem-apipie-params/ head/devel/rubygem-apipie-params/Makefile (contents, props changed) head/devel/rubygem-apipie-params/distinfo (contents, props changed) head/devel/rubygem-apipie-params/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 13:10:52 2015 (r398910) +++ head/devel/Makefile Fri Oct 9 13:14:10 2015 (r398911) @@ -4596,6 +4596,7 @@ SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi SUBDIR += rubygem-apipie-bindings + SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 Added: head/devel/rubygem-apipie-params/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/Makefile Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= apipie-params +PORTVERSION= 0.0.4 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= DSL for describing data structures with json-schema bindings + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE + +NO_ARCH= yes + +USE_RAKE= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-apipie-params/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/distinfo Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,2 @@ +SHA256 (rubygem/apipie-params-0.0.4.gem) = 2b6235b54f6b5cb8a5ca90fe2ebcc851adf4a346a99c71370839b9ab54d8563f +SIZE (rubygem/apipie-params-0.0.4.gem) = 10240 Added: head/devel/rubygem-apipie-params/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/pkg-descr Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,6 @@ +DSL for Hash/JSON descriptions. Allows description of hash formats using Ruby +code, generating a json-schema for it and validating values against it. + +It's based on the DSL of apipie-rails. + +WWW: https://github.com/iNecas/apipie-params From owner-svn-ports-head@freebsd.org Fri Oct 9 13:17:38 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 BADE79D2785; Fri, 9 Oct 2015 13:17:38 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 691181E99; Fri, 9 Oct 2015 13:17:38 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DHbtq063367; Fri, 9 Oct 2015 13:17:37 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DHban063363; Fri, 9 Oct 2015 13:17:37 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091317.t99DHban063363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:17:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398912 - in head/devel: . rubygem-concurrent-ruby X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:17:38 -0000 Author: mmoll Date: Fri Oct 9 13:17:36 2015 New Revision: 398912 URL: https://svnweb.freebsd.org/changeset/ports/398912 Log: new port: devel/rubygem-concurrent-ruby Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java and classic concurrency patterns. WWW: https://github.com/ruby-concurrency/concurrent-ruby Added: head/devel/rubygem-concurrent-ruby/ head/devel/rubygem-concurrent-ruby/Makefile (contents, props changed) head/devel/rubygem-concurrent-ruby/distinfo (contents, props changed) head/devel/rubygem-concurrent-ruby/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 13:14:10 2015 (r398911) +++ head/devel/Makefile Fri Oct 9 13:17:36 2015 (r398912) @@ -4663,6 +4663,7 @@ SUBDIR += rubygem-colorize SUBDIR += rubygem-columnize SUBDIR += rubygem-commander + SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-configatron SUBDIR += rubygem-configuration SUBDIR += rubygem-cool.io Added: head/devel/rubygem-concurrent-ruby/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby/Makefile Fri Oct 9 13:17:36 2015 (r398912) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= concurrent-ruby +PORTVERSION= 0.9.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Modern concurrency tools for Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-concurrent-ruby/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby/distinfo Fri Oct 9 13:17:36 2015 (r398912) @@ -0,0 +1,2 @@ +SHA256 (rubygem/concurrent-ruby-0.9.1.gem) = 13b66e5c57274693ec945db733208a919544be67b43db0a393e9d94964ecadf8 +SIZE (rubygem/concurrent-ruby-0.9.1.gem) = 95232 Added: head/devel/rubygem-concurrent-ruby/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby/pkg-descr Fri Oct 9 13:17:36 2015 (r398912) @@ -0,0 +1,4 @@ +Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, +Haskell, F#, C#, Java and classic concurrency patterns. + +WWW: https://github.com/ruby-concurrency/concurrent-ruby From owner-svn-ports-head@freebsd.org Fri Oct 9 13:20:03 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 4F7469D2914; Fri, 9 Oct 2015 13:20:03 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 124AB1FF2; Fri, 9 Oct 2015 13:20:03 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DK2bo063681; Fri, 9 Oct 2015 13:20:02 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DK1sN063677; Fri, 9 Oct 2015 13:20:01 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091320.t99DK1sN063677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:20:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398913 - in head/devel: . rubygem-concurrent-ruby-edge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:20:03 -0000 Author: mmoll Date: Fri Oct 9 13:20:01 2015 New Revision: 398913 URL: https://svnweb.freebsd.org/changeset/ports/398913 Log: new port: devel/rubygem-concurrent-ruby-edge Contains features for concurrent-ruby that are under active development and may change with future versions. WWW: https://github.com/ruby-concurrency/concurrent-ruby Added: head/devel/rubygem-concurrent-ruby-edge/ head/devel/rubygem-concurrent-ruby-edge/Makefile (contents, props changed) head/devel/rubygem-concurrent-ruby-edge/distinfo (contents, props changed) head/devel/rubygem-concurrent-ruby-edge/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 13:17:36 2015 (r398912) +++ head/devel/Makefile Fri Oct 9 13:20:01 2015 (r398913) @@ -4664,6 +4664,7 @@ SUBDIR += rubygem-columnize SUBDIR += rubygem-commander SUBDIR += rubygem-concurrent-ruby + SUBDIR += rubygem-concurrent-ruby-edge SUBDIR += rubygem-configatron SUBDIR += rubygem-configuration SUBDIR += rubygem-cool.io Added: head/devel/rubygem-concurrent-ruby-edge/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-edge/Makefile Fri Oct 9 13:20:01 2015 (r398913) @@ -0,0 +1,23 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= concurrent-ruby-edge +PORTVERSION= 0.1.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Bleeding edge features for concurrent-ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-concurrent-ruby>=0.9.1:${PORTSDIR}/devel/rubygem-concurrent-ruby + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-concurrent-ruby-edge/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-edge/distinfo Fri Oct 9 13:20:01 2015 (r398913) @@ -0,0 +1,2 @@ +SHA256 (rubygem/concurrent-ruby-edge-0.1.1.gem) = ac3bda8786a06747f5bbd7f7b22205f3893812069436852e4b3496dc3c88e7b7 +SIZE (rubygem/concurrent-ruby-edge-0.1.1.gem) = 38912 Added: head/devel/rubygem-concurrent-ruby-edge/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-edge/pkg-descr Fri Oct 9 13:20:01 2015 (r398913) @@ -0,0 +1,4 @@ +Contains features for concurrent-ruby that are under active development +and may change with future versions. + +WWW: https://github.com/ruby-concurrency/concurrent-ruby From owner-svn-ports-head@freebsd.org Fri Oct 9 13:23:51 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 DF47C9D2BED; Fri, 9 Oct 2015 13:23:50 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98051659; Fri, 9 Oct 2015 13:23:50 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DNnAT066608; Fri, 9 Oct 2015 13:23:49 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DNn8b066604; Fri, 9 Oct 2015 13:23:49 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091323.t99DNn8b066604@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:23:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398914 - in head/devel: . rubygem-dynflow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:23:51 -0000 Author: mmoll Date: Fri Oct 9 13:23:49 2015 New Revision: 398914 URL: https://svnweb.freebsd.org/changeset/ports/398914 Log: new port: devel/rubygem-dynflow Dynflow (DYNamic workFLOW) is a workflow engine written in Ruby. WWW: https://dynflow.github.io/ Added: head/devel/rubygem-dynflow/ head/devel/rubygem-dynflow/Makefile (contents, props changed) head/devel/rubygem-dynflow/distinfo (contents, props changed) head/devel/rubygem-dynflow/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 13:20:01 2015 (r398913) +++ head/devel/Makefile Fri Oct 9 13:23:49 2015 (r398914) @@ -4697,6 +4697,7 @@ SUBDIR += rubygem-docile SUBDIR += rubygem-dotenv-deployment SUBDIR += rubygem-drydock + SUBDIR += rubygem-dynflow SUBDIR += rubygem-edavis10-object_daddy SUBDIR += rubygem-elif SUBDIR += rubygem-enumerize Added: head/devel/rubygem-dynflow/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-dynflow/Makefile Fri Oct 9 13:23:49 2015 (r398914) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= dynflow +PORTVERSION= 0.8.6 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Ruby workflow/orchestration engine + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE + +RUN_DEPENDS= rubygem-algebrick>=0.7.0:${PORTSDIR}/devel/rubygem-algebrick \ + rubygem-apipie-params>=0:${PORTSDIR}/devel/rubygem-apipie-params \ + rubygem-concurrent-ruby>=0.9.0:${PORTSDIR}/devel/rubygem-concurrent-ruby \ + rubygem-concurrent-ruby-edge>=0.1.0:${PORTSDIR}/devel/rubygem-concurrent-ruby-edge \ + rubygem-multi_json>=0:${PORTSDIR}/devel/rubygem-multi_json + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-dynflow/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-dynflow/distinfo Fri Oct 9 13:23:49 2015 (r398914) @@ -0,0 +1,2 @@ +SHA256 (rubygem/dynflow-0.8.6.gem) = 64358276376cdd042921be25e1abbc53358b14edeb347aca0c0c2389f2ecb890 +SIZE (rubygem/dynflow-0.8.6.gem) = 926720 Added: head/devel/rubygem-dynflow/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-dynflow/pkg-descr Fri Oct 9 13:23:49 2015 (r398914) @@ -0,0 +1,3 @@ +Dynflow (DYNamic workFLOW) is a workflow engine written in Ruby. + +WWW: https://dynflow.github.io/ From owner-svn-ports-head@freebsd.org Fri Oct 9 13:29:13 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 9DD809D2FA5; Fri, 9 Oct 2015 13:29:13 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72EE1925; Fri, 9 Oct 2015 13:29:13 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DTCwo066943; Fri, 9 Oct 2015 13:29:12 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DTChg066939; Fri, 9 Oct 2015 13:29:12 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091329.t99DTChg066939@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:29:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398915 - in head/sysutils: . rubygem-smart_proxy_dynflow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:29:13 -0000 Author: mmoll Date: Fri Oct 9 13:29:11 2015 New Revision: 398915 URL: https://svnweb.freebsd.org/changeset/ports/398915 Log: new port: sysutils/rubygem-smart_proxy_dynflow Plugin for foreman-proxy allowing using dynflow for remote execution WWW: https://github.com/theforeman/smart_proxy_dynflow Added: head/sysutils/rubygem-smart_proxy_dynflow/ head/sysutils/rubygem-smart_proxy_dynflow/Makefile (contents, props changed) head/sysutils/rubygem-smart_proxy_dynflow/distinfo (contents, props changed) head/sysutils/rubygem-smart_proxy_dynflow/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Oct 9 13:23:49 2015 (r398914) +++ head/sysutils/Makefile Fri Oct 9 13:29:11 2015 (r398915) @@ -889,6 +889,7 @@ SUBDIR += rubygem-rubyipmi SUBDIR += rubygem-shellany SUBDIR += rubygem-smart_proxy_chef + SUBDIR += rubygem-smart_proxy_dynflow SUBDIR += rubygem-smart_proxy_salt SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu Added: head/sysutils/rubygem-smart_proxy_dynflow/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_dynflow/Makefile Fri Oct 9 13:29:11 2015 (r398915) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= smart_proxy_dynflow +PORTVERSION= 0.0.4 +CATEGORIES= sysutils ruby +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Plugin to use Dynflow in Foreman Smart Proxy + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= foreman-proxy>=1.9.0:${PORTSDIR}/net/foreman-proxy \ + rubygem-dynflow>=0.8.4:${PORTSDIR}/devel/rubygem-dynflow \ + rubygem-sequel>=0:${PORTSDIR}/devel/rubygem-sequel \ + rubygem-sqlite3>=0:${PORTSDIR}/databases/rubygem-sqlite3 + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= share/foreman-proxy/bundler.d/dynflow.rb \ + "@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d + ${INSTALL_DATA} ${WRKSRC}/settings.d/dynflow.yml.example \ + ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/dynflow.yml.sample + ${MKDIR} ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d + ${INSTALL_DATA} ${WRKSRC}/bundler.d/dynflow.rb \ + ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/dynflow.rb + +.include Added: head/sysutils/rubygem-smart_proxy_dynflow/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_dynflow/distinfo Fri Oct 9 13:29:11 2015 (r398915) @@ -0,0 +1,2 @@ +SHA256 (rubygem/smart_proxy_dynflow-0.0.4.gem) = 1e678ed3fe445d1d755db332e34359463db0c2a73b8b1830ef609463609a2bcd +SIZE (rubygem/smart_proxy_dynflow-0.0.4.gem) = 18944 Added: head/sysutils/rubygem-smart_proxy_dynflow/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_dynflow/pkg-descr Fri Oct 9 13:29:11 2015 (r398915) @@ -0,0 +1,3 @@ +Plugin for foreman-proxy allowing using dynflow for remote execution + +WWW: https://github.com/theforeman/smart_proxy_dynflow From owner-svn-ports-head@freebsd.org Fri Oct 9 13:31:58 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 958F09D124B; Fri, 9 Oct 2015 13:31:58 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70196CA4; Fri, 9 Oct 2015 13:31:58 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DVv9Y069726; Fri, 9 Oct 2015 13:31:57 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DVvhm069722; Fri, 9 Oct 2015 13:31:57 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091331.t99DVvhm069722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:31:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398916 - in head/sysutils: . rubygem-smart_proxy_remote_execution_ssh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:31:58 -0000 Author: mmoll Date: Fri Oct 9 13:31:57 2015 New Revision: 398916 URL: https://svnweb.freebsd.org/changeset/ports/398916 Log: new port: sysutils/rubygem-smart_proxy_remote_execution_ssh Plugin for foreman-proxy allowing using SSH for remote execution. WWW: https://github.com/theforeman/smart_proxy_remote_execution_ssh Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile (contents, props changed) head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo (contents, props changed) head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Oct 9 13:29:11 2015 (r398915) +++ head/sysutils/Makefile Fri Oct 9 13:31:57 2015 (r398916) @@ -890,6 +890,7 @@ SUBDIR += rubygem-shellany SUBDIR += rubygem-smart_proxy_chef SUBDIR += rubygem-smart_proxy_dynflow + SUBDIR += rubygem-smart_proxy_remote_execution_ssh SUBDIR += rubygem-smart_proxy_salt SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= smart_proxy_remote_execution_ssh +PORTVERSION= 0.0.6 +CATEGORIES= sysutils ruby +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= SSH remote execution provider for foreman-proxy + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= foreman-proxy>=1.9.0:${PORTSDIR}/net/foreman-proxy \ + rubygem-net-scp>=0:${PORTSDIR}/security/rubygem-net-scp \ + rubygem-net-ssh>=0:${PORTSDIR}/security/rubygem-net-ssh \ + rubygem-smart_proxy_dynflow>=0.0.3:${PORTSDIR}/sysutils/rubygem-smart_proxy_dynflow + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= share/foreman-proxy/bundler.d/remote_execution_ssh.rb \ + "@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d + ${INSTALL_DATA} ${WRKSRC}/settings.d/remote_execution_ssh.yml.example \ + ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample + ${MKDIR} ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d + ${INSTALL_DATA} ${WRKSRC}/bundler.d/remote_execution_ssh.rb \ + ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/remote_execution_ssh.rb + +.include Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/distinfo Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,2 @@ +SHA256 (rubygem/smart_proxy_remote_execution_ssh-0.0.6.gem) = 6390147300d8d2dd93ccfcef6b8cea6a565048b9ddfd8579dd43de89c3feb9da +SIZE (rubygem/smart_proxy_remote_execution_ssh-0.0.6.gem) = 22528 Added: head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-smart_proxy_remote_execution_ssh/pkg-descr Fri Oct 9 13:31:57 2015 (r398916) @@ -0,0 +1,3 @@ +Plugin for foreman-proxy allowing using SSH for remote execution. + +WWW: https://github.com/theforeman/smart_proxy_remote_execution_ssh From owner-svn-ports-head@freebsd.org Fri Oct 9 13:39:23 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 93EC49D1689; Fri, 9 Oct 2015 13:39:23 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E07772; Fri, 9 Oct 2015 13:39:23 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DdMhE070077; Fri, 9 Oct 2015 13:39:22 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DdMBM070075; Fri, 9 Oct 2015 13:39:22 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510091339.t99DdMBM070075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 9 Oct 2015 13:39:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398917 - head/devel/p5-Parallel-ForkManager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:39:23 -0000 Author: culot Date: Fri Oct 9 13:39:22 2015 New Revision: 398917 URL: https://svnweb.freebsd.org/changeset/ports/398917 Log: - Update to 1.16 Changes: http://search.cpan.org/dist/Parallel-ForkManager/Changes Modified: head/devel/p5-Parallel-ForkManager/Makefile head/devel/p5-Parallel-ForkManager/distinfo Modified: head/devel/p5-Parallel-ForkManager/Makefile ============================================================================== --- head/devel/p5-Parallel-ForkManager/Makefile Fri Oct 9 13:31:57 2015 (r398916) +++ head/devel/p5-Parallel-ForkManager/Makefile Fri Oct 9 13:39:22 2015 (r398917) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Parallel-ForkManager -PORTVERSION= 1.15 +PORTVERSION= 1.16 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Parallel-ForkManager/distinfo ============================================================================== --- head/devel/p5-Parallel-ForkManager/distinfo Fri Oct 9 13:31:57 2015 (r398916) +++ head/devel/p5-Parallel-ForkManager/distinfo Fri Oct 9 13:39:22 2015 (r398917) @@ -1,2 +1,2 @@ -SHA256 (Parallel-ForkManager-1.15.tar.gz) = b99adef534282413dc90a37a0e51d3920612daf8561759aeb21bb142f73ed176 -SIZE (Parallel-ForkManager-1.15.tar.gz) = 16948 +SHA256 (Parallel-ForkManager-1.16.tar.gz) = 58ad198780368515552c8592a463e946a3abcc08327d9260abab7b973ac0cd66 +SIZE (Parallel-ForkManager-1.16.tar.gz) = 22718 From owner-svn-ports-head@freebsd.org Fri Oct 9 14:09: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 09CDD9D26EE; Fri, 9 Oct 2015 14:09:10 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90DB819E; Fri, 9 Oct 2015 14:09:09 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99E98J9079169; Fri, 9 Oct 2015 14:09:08 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99E97ca079157; Fri, 9 Oct 2015 14:09:07 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201510091409.t99E97ca079157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Fri, 9 Oct 2015 14:09:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398918 - in head: emulators/xen-kernel emulators/xen-kernel/files sysutils/xen-tools sysutils/xen-tools/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 14:09:10 -0000 Author: royger (src committer) Date: Fri Oct 9 14:09:07 2015 New Revision: 398918 URL: https://svnweb.freebsd.org/changeset/ports/398918 Log: xen: update to 4.5.1 Update xen-kernel to 4.5.1 and add patches to allow live migration, save and restore. Remove qemu-traditional patches (FreeBSD doesn't support qemu-traditional) and add XSA-142. Approved by: bapt Differential revision: https://reviews.freebsd.org/D3854 Sponsored by: Citrix Systems R&D Added: head/emulators/xen-kernel/files/0001-introduce-a-helper-to-allocate-non-contiguous-memory.patch (contents, props changed) head/emulators/xen-kernel/files/0002-vmap-avoid-hitting-an-ASSERT-with-vfree-NULL.patch (contents, props changed) head/emulators/xen-kernel/files/0003-x86-shadow-fix-shadow_track_dirty_vram-to-work-on-hv.patch (contents, props changed) head/emulators/xen-kernel/files/0004-x86-hap-make-hap_track_dirty_vram-use-non-contiguous.patch (contents, props changed) head/emulators/xen-kernel/files/0005-x86-rework-paging_log_dirty_op-to-work-with-hvm-gues.patch (contents, props changed) head/emulators/xen-kernel/files/0006-xen-pvh-enable-mmu_update-hypercall.patch (contents, props changed) head/emulators/xen-kernel/files/0007-iommu-fix-usage-of-shared-EPT-IOMMU-page-tables-on-P.patch (contents, props changed) head/emulators/xen-kernel/files/0008-xen-arm-mm-Do-not-dump-the-p2m-when-mapping-a-foreig.patch (contents, props changed) head/sysutils/xen-tools/files/xsa142-4.5.patch (contents, props changed) Deleted: head/emulators/xen-kernel/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch head/emulators/xen-kernel/files/0001-x86-pvh-disable-posted-interrupts.patch head/emulators/xen-kernel/files/iommu_share_p2m_table.patch head/emulators/xen-kernel/files/xsa117.patch head/emulators/xen-kernel/files/xsa118-4.5-unstable-1.patch head/emulators/xen-kernel/files/xsa118-4.5-unstable-2.patch head/emulators/xen-kernel/files/xsa121.patch head/emulators/xen-kernel/files/xsa122.patch head/emulators/xen-kernel/files/xsa123.patch head/emulators/xen-kernel/files/xsa125.patch head/emulators/xen-kernel/files/xsa127-4.x.patch head/emulators/xen-kernel/files/xsa132.patch head/emulators/xen-kernel/files/xsa134.patch head/emulators/xen-kernel/files/xsa136.patch head/sysutils/xen-tools/files/xsa135-qemut-1.patch head/sysutils/xen-tools/files/xsa135-qemut-2.patch head/sysutils/xen-tools/files/xsa138-qemut-1.patch head/sysutils/xen-tools/files/xsa138-qemut-2.patch Modified: head/emulators/xen-kernel/Makefile head/emulators/xen-kernel/distinfo head/sysutils/xen-tools/Makefile Modified: head/emulators/xen-kernel/Makefile ============================================================================== --- head/emulators/xen-kernel/Makefile Fri Oct 9 13:39:22 2015 (r398917) +++ head/emulators/xen-kernel/Makefile Fri Oct 9 14:09:07 2015 (r398918) @@ -2,8 +2,7 @@ PORTNAME= xen PKGNAMESUFFIX= -kernel -PORTVERSION= 4.5.0 -PORTREVISION= 5 +PORTVERSION= 4.5.1 CATEGORIES= emulators MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ @@ -24,20 +23,14 @@ PLIST_FILES= /boot/xen \ ALL_TARGET= build STRIP= # WRKSRC_SUBDIR= xen -EXTRA_PATCHES= ${FILESDIR}/iommu_share_p2m_table.patch:-p2 \ - ${FILESDIR}/0001-x86-pvh-disable-posted-interrupts.patch:-p2 \ - ${FILESDIR}/xsa117.patch:-p2 \ - ${FILESDIR}/xsa118-4.5-unstable-1.patch:-p2 \ - ${FILESDIR}/xsa118-4.5-unstable-2.patch:-p2 \ - ${FILESDIR}/xsa121.patch:-p2 \ - ${FILESDIR}/xsa122.patch:-p2 \ - ${FILESDIR}/xsa123.patch:-p2 \ - ${FILESDIR}/xsa125.patch:-p2 \ - ${FILESDIR}/xsa127-4.x.patch:-p2 \ - ${FILESDIR}/xsa132.patch:-p2 \ - ${FILESDIR}/xsa134.patch:-p2 \ - ${FILESDIR}/xsa136.patch:-p2 \ - ${FILESDIR}/0001-libelf-fix-elf_parse_bsdsyms-call.patch:-p2 +EXTRA_PATCHES= ${FILESDIR}/0001-introduce-a-helper-to-allocate-non-contiguous-memory.patch:-p2 \ + ${FILESDIR}/0002-vmap-avoid-hitting-an-ASSERT-with-vfree-NULL.patch:-p2 \ + ${FILESDIR}/0003-x86-shadow-fix-shadow_track_dirty_vram-to-work-on-hv.patch:-p2 \ + ${FILESDIR}/0004-x86-hap-make-hap_track_dirty_vram-use-non-contiguous.patch:-p2 \ + ${FILESDIR}/0005-x86-rework-paging_log_dirty_op-to-work-with-hvm-gues.patch:-p2 \ + ${FILESDIR}/0006-xen-pvh-enable-mmu_update-hypercall.patch:-p2 \ + ${FILESDIR}/0007-iommu-fix-usage-of-shared-EPT-IOMMU-page-tables-on-P.patch:-p2 \ + ${FILESDIR}/0008-xen-arm-mm-Do-not-dump-the-p2m-when-mapping-a-foreig.patch:-p2 .include Modified: head/emulators/xen-kernel/distinfo ============================================================================== --- head/emulators/xen-kernel/distinfo Fri Oct 9 13:39:22 2015 (r398917) +++ head/emulators/xen-kernel/distinfo Fri Oct 9 14:09:07 2015 (r398918) @@ -1,2 +1,2 @@ -SHA256 (xen-4.5.0.tar.gz) = 5bdb40e2b28d2eeb541bd71a9777f40cbe2ae444b987521d33f099541a006f3b -SIZE (xen-4.5.0.tar.gz) = 18404933 +SHA256 (xen-4.5.1.tar.gz) = 668c11d4fca67ac44329e369f810356eacd37b28d28fb96e66aac77f3c5e1371 +SIZE (xen-4.5.1.tar.gz) = 18410400 Added: head/emulators/xen-kernel/files/0001-introduce-a-helper-to-allocate-non-contiguous-memory.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0001-introduce-a-helper-to-allocate-non-contiguous-memory.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,141 @@ +From 411801087603a1a070de7abbfa4373afe91ca3f5 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= +Date: Fri, 9 Oct 2015 12:57:31 +0200 +Subject: [PATCH 1/8] introduce a helper to allocate non-contiguous memory +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +The allocator uses independent calls to alloc_domheap_pages in order to get +the desired amount of memory and then maps all the independent physical +addresses into a contiguous virtual address space. + +Signed-off-by: Roger Pau Monné +Tested-by: Julien Grall (ARM) +Reviewed-by: Tim Deegan +--- + xen/common/vmap.c | 67 ++++++++++++++++++++++++++++++++++++++++++++++ + xen/include/asm-arm/mm.h | 2 ++ + xen/include/asm-x86/page.h | 2 ++ + xen/include/xen/vmap.h | 3 +++ + 4 files changed, 74 insertions(+) + +diff --git a/xen/common/vmap.c b/xen/common/vmap.c +index 783cea3..b6827b5 100644 +--- a/xen/common/vmap.c ++++ b/xen/common/vmap.c +@@ -215,4 +215,71 @@ void vunmap(const void *va) + #endif + vm_free(va); + } ++ ++void *vmalloc(size_t size) ++{ ++ unsigned long *mfn; ++ size_t pages, i; ++ struct page_info *pg; ++ void *va; ++ ++ ASSERT(size); ++ ++ pages = PFN_UP(size); ++ mfn = xmalloc_array(unsigned long, pages); ++ if ( mfn == NULL ) ++ return NULL; ++ ++ for ( i = 0; i < pages; i++ ) ++ { ++ pg = alloc_domheap_page(NULL, 0); ++ if ( pg == NULL ) ++ goto error; ++ mfn[i] = page_to_mfn(pg); ++ } ++ ++ va = vmap(mfn, pages); ++ if ( va == NULL ) ++ goto error; ++ ++ xfree(mfn); ++ return va; ++ ++ error: ++ while ( i-- ) ++ free_domheap_page(mfn_to_page(mfn[i])); ++ xfree(mfn); ++ return NULL; ++} ++ ++void *vzalloc(size_t size) ++{ ++ void *p = vmalloc(size); ++ int i; ++ ++ if ( p == NULL ) ++ return NULL; ++ ++ for ( i = 0; i < size; i += PAGE_SIZE ) ++ clear_page(p + i); ++ ++ return p; ++} ++ ++void vfree(void *va) ++{ ++ unsigned int i, pages = vm_size(va); ++ struct page_info *pg; ++ PAGE_LIST_HEAD(pg_list); ++ ++ ASSERT(pages); ++ ++ for ( i = 0; i < pages; i++ ) ++ page_list_add(vmap_to_page(va + i * PAGE_SIZE), &pg_list); ++ ++ vunmap(va); ++ ++ while ( (pg = page_list_remove_head(&pg_list)) != NULL ) ++ free_domheap_page(pg); ++} + #endif +diff --git a/xen/include/asm-arm/mm.h b/xen/include/asm-arm/mm.h +index d25e485..c0afcec 100644 +--- a/xen/include/asm-arm/mm.h ++++ b/xen/include/asm-arm/mm.h +@@ -208,6 +208,8 @@ static inline void __iomem *ioremap_wc(paddr_t start, size_t len) + #define pfn_to_paddr(pfn) ((paddr_t)(pfn) << PAGE_SHIFT) + #define paddr_to_pfn(pa) ((unsigned long)((pa) >> PAGE_SHIFT)) + #define paddr_to_pdx(pa) pfn_to_pdx(paddr_to_pfn(pa)) ++#define vmap_to_mfn(va) paddr_to_pfn(virt_to_maddr((vaddr_t)va)) ++#define vmap_to_page(va) mfn_to_page(vmap_to_mfn(va)) + + /* Page-align address and convert to frame number format */ + #define paddr_to_pfn_aligned(paddr) paddr_to_pfn(PAGE_ALIGN(paddr)) +diff --git a/xen/include/asm-x86/page.h b/xen/include/asm-x86/page.h +index ccf0752..27c2ae7 100644 +--- a/xen/include/asm-x86/page.h ++++ b/xen/include/asm-x86/page.h +@@ -262,6 +262,8 @@ void copy_page_sse2(void *, const void *); + #define pfn_to_paddr(pfn) __pfn_to_paddr(pfn) + #define paddr_to_pfn(pa) __paddr_to_pfn(pa) + #define paddr_to_pdx(pa) pfn_to_pdx(paddr_to_pfn(pa)) ++#define vmap_to_mfn(va) l1e_get_pfn(*virt_to_xen_l1e((unsigned long)(va))) ++#define vmap_to_page(va) mfn_to_page(vmap_to_mfn(va)) + + #endif /* !defined(__ASSEMBLY__) */ + +diff --git a/xen/include/xen/vmap.h b/xen/include/xen/vmap.h +index b1923dd..a13591d 100644 +--- a/xen/include/xen/vmap.h ++++ b/xen/include/xen/vmap.h +@@ -11,6 +11,9 @@ void *__vmap(const unsigned long *mfn, unsigned int granularity, + unsigned int nr, unsigned int align, unsigned int flags); + void *vmap(const unsigned long *mfn, unsigned int nr); + void vunmap(const void *); ++void *vmalloc(size_t size); ++void *vzalloc(size_t size); ++void vfree(void *va); + + void __iomem *ioremap(paddr_t, size_t); + +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0002-vmap-avoid-hitting-an-ASSERT-with-vfree-NULL.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0002-vmap-avoid-hitting-an-ASSERT-with-vfree-NULL.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,43 @@ +From ed4a7917a6faa8b7e8f211eaeda270f96e45de7d Mon Sep 17 00:00:00 2001 +From: Andrew Cooper +Date: Fri, 9 Oct 2015 12:57:31 +0200 +Subject: [PATCH 2/8] vmap: avoid hitting an ASSERT with vfree(NULL) +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +and unconditionally defer the vm_size() call, as it doesn't have a NULL +short circuit. + +Reported-by: Wei Liu +Signed-off-by: Andrew Cooper +Tested-by: Wei Liu +Reviewed-by: Roger Pau Monné +Acked-by: Tim Deegan +--- + xen/common/vmap.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/xen/common/vmap.c b/xen/common/vmap.c +index b6827b5..9028802 100644 +--- a/xen/common/vmap.c ++++ b/xen/common/vmap.c +@@ -268,10 +268,14 @@ void *vzalloc(size_t size) + + void vfree(void *va) + { +- unsigned int i, pages = vm_size(va); ++ unsigned int i, pages; + struct page_info *pg; + PAGE_LIST_HEAD(pg_list); + ++ if ( !va ) ++ return; ++ ++ pages = vm_size(va); + ASSERT(pages); + + for ( i = 0; i < pages; i++ ) +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0003-x86-shadow-fix-shadow_track_dirty_vram-to-work-on-hv.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0003-x86-shadow-fix-shadow_track_dirty_vram-to-work-on-hv.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,120 @@ +From 055ee44e3cc7c40dc3a3319370d287591771a7f3 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= +Date: Fri, 9 Oct 2015 12:57:32 +0200 +Subject: [PATCH 3/8] x86/shadow: fix shadow_track_dirty_vram to work on hvm + guests +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Modify shadow_track_dirty_vram to use a local buffer and then flush to the +guest without the paging_lock held. This is modeled after +hap_track_dirty_vram. + +Signed-off-by: Roger Pau Monné +Reviewed-by: Tim Deegan +--- + xen/arch/x86/mm/shadow/common.c | 49 +++++++++++++++++++++++++---------------- + 1 file changed, 30 insertions(+), 19 deletions(-) + +diff --git a/xen/arch/x86/mm/shadow/common.c b/xen/arch/x86/mm/shadow/common.c +index a5eed28..6b91b8c 100644 +--- a/xen/arch/x86/mm/shadow/common.c ++++ b/xen/arch/x86/mm/shadow/common.c +@@ -3478,7 +3478,7 @@ void shadow_clean_dirty_bitmap(struct domain *d) + int shadow_track_dirty_vram(struct domain *d, + unsigned long begin_pfn, + unsigned long nr, +- XEN_GUEST_HANDLE_64(uint8) dirty_bitmap) ++ XEN_GUEST_HANDLE_64(uint8) guest_dirty_bitmap) + { + int rc; + unsigned long end_pfn = begin_pfn + nr; +@@ -3488,6 +3488,7 @@ int shadow_track_dirty_vram(struct domain *d, + p2m_type_t t; + struct sh_dirty_vram *dirty_vram; + struct p2m_domain *p2m = p2m_get_hostp2m(d); ++ uint8_t *dirty_bitmap = NULL; + + if ( end_pfn < begin_pfn || end_pfn > p2m->max_mapped_pfn + 1 ) + return -EINVAL; +@@ -3516,6 +3517,12 @@ int shadow_track_dirty_vram(struct domain *d, + goto out; + } + ++ dirty_bitmap = vzalloc(dirty_size); ++ if ( dirty_bitmap == NULL ) ++ { ++ rc = -ENOMEM; ++ goto out; ++ } + /* This should happen seldomly (Video mode change), + * no need to be careful. */ + if ( !dirty_vram ) +@@ -3546,12 +3553,8 @@ int shadow_track_dirty_vram(struct domain *d, + rc = -ENODATA; + } + else if (dirty_vram->last_dirty == -1) +- { + /* still completely clean, just copy our empty bitmap */ +- rc = -EFAULT; +- if ( copy_to_guest(dirty_bitmap, dirty_vram->dirty_bitmap, dirty_size) == 0 ) +- rc = 0; +- } ++ memcpy(dirty_bitmap, dirty_vram->dirty_bitmap, dirty_size); + else + { + unsigned long map_mfn = INVALID_MFN; +@@ -3630,21 +3633,19 @@ int shadow_track_dirty_vram(struct domain *d, + if ( map_sl1p ) + sh_unmap_domain_page(map_sl1p); + +- rc = -EFAULT; +- if ( copy_to_guest(dirty_bitmap, dirty_vram->dirty_bitmap, dirty_size) == 0 ) { +- memset(dirty_vram->dirty_bitmap, 0, dirty_size); +- if (dirty_vram->last_dirty + SECONDS(2) < NOW()) ++ memcpy(dirty_bitmap, dirty_vram->dirty_bitmap, dirty_size); ++ memset(dirty_vram->dirty_bitmap, 0, dirty_size); ++ if ( dirty_vram->last_dirty + SECONDS(2) < NOW() ) ++ { ++ /* was clean for more than two seconds, try to disable guest ++ * write access */ ++ for ( i = begin_pfn; i < end_pfn; i++ ) + { +- /* was clean for more than two seconds, try to disable guest +- * write access */ +- for ( i = begin_pfn; i < end_pfn; i++ ) { +- mfn_t mfn = get_gfn_query_unlocked(d, i, &t); +- if (mfn_x(mfn) != INVALID_MFN) +- flush_tlb |= sh_remove_write_access(d->vcpu[0], mfn, 1, 0); +- } +- dirty_vram->last_dirty = -1; ++ mfn_t mfn = get_gfn_query_unlocked(d, i, &t); ++ if ( mfn_x(mfn) != INVALID_MFN ) ++ flush_tlb |= sh_remove_write_access(d->vcpu[0], mfn, 1, 0); + } +- rc = 0; ++ dirty_vram->last_dirty = -1; + } + } + if ( flush_tlb ) +@@ -3659,6 +3660,16 @@ out_dirty_vram: + + out: + paging_unlock(d); ++ if ( rc == 0 && dirty_bitmap != NULL && ++ copy_to_guest(guest_dirty_bitmap, dirty_bitmap, dirty_size) ) ++ { ++ paging_lock(d); ++ for ( i = 0; i < dirty_size; i++ ) ++ dirty_vram->dirty_bitmap[i] |= dirty_bitmap[i]; ++ paging_unlock(d); ++ rc = -EFAULT; ++ } ++ vfree(dirty_bitmap); + p2m_unlock(p2m_get_hostp2m(d)); + return rc; + } +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0004-x86-hap-make-hap_track_dirty_vram-use-non-contiguous.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0004-x86-hap-make-hap_track_dirty_vram-use-non-contiguous.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,44 @@ +From 50ca52274eda838f0562938fae3432a0f05f2585 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= +Date: Fri, 9 Oct 2015 12:57:32 +0200 +Subject: [PATCH 4/8] x86/hap: make hap_track_dirty_vram use non-contiguous + memory for temporary map +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Just like it's done for shadow_track_dirty_vram allocate the temporary +buffer using non-contiguous memory. + +Signed-off-by: Roger Pau Monné +Reviewed-by: Tim Deegan +--- + xen/arch/x86/mm/hap/hap.c | 5 ++--- + 1 file changed, 2 insertions(+), 3 deletions(-) + +diff --git a/xen/arch/x86/mm/hap/hap.c b/xen/arch/x86/mm/hap/hap.c +index abf3d7a..f7b12a8 100644 +--- a/xen/arch/x86/mm/hap/hap.c ++++ b/xen/arch/x86/mm/hap/hap.c +@@ -87,7 +87,7 @@ int hap_track_dirty_vram(struct domain *d, + } + + rc = -ENOMEM; +- dirty_bitmap = xzalloc_bytes(size); ++ dirty_bitmap = vzalloc(size); + if ( !dirty_bitmap ) + goto out; + +@@ -168,8 +168,7 @@ int hap_track_dirty_vram(struct domain *d, + p2m_ram_logdirty, p2m_ram_rw); + } + out: +- if ( dirty_bitmap ) +- xfree(dirty_bitmap); ++ vfree(dirty_bitmap); + + return rc; + } +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0005-x86-rework-paging_log_dirty_op-to-work-with-hvm-gues.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0005-x86-rework-paging_log_dirty_op-to-work-with-hvm-gues.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,214 @@ +From 63d4838f2f5644060c064f356078a748ca413364 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= +Date: Fri, 9 Oct 2015 12:57:32 +0200 +Subject: [PATCH 5/8] x86: rework paging_log_dirty_op to work with hvm guests +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +When the caller of paging_log_dirty_op is a hvm guest Xen would choke when +trying to copy the dirty bitmap to the guest because the paging lock is +already held. + +Fix this by independently mapping each page of the guest bitmap as needed +without the paging lock held. + +Signed-off-by: Roger Pau Monné +Reviewed-by: Tim Deegan +--- + xen/arch/x86/mm/paging.c | 98 +++++++++++++++++++++++++++++++++++++++----- + xen/include/asm-x86/domain.h | 1 + + 2 files changed, 88 insertions(+), 11 deletions(-) + +diff --git a/xen/arch/x86/mm/paging.c b/xen/arch/x86/mm/paging.c +index 6b788f7..06dc7fa 100644 +--- a/xen/arch/x86/mm/paging.c ++++ b/xen/arch/x86/mm/paging.c +@@ -397,6 +397,51 @@ int paging_mfn_is_dirty(struct domain *d, mfn_t gmfn) + return rv; + } + ++static inline void *map_dirty_bitmap(XEN_GUEST_HANDLE_64(uint8) dirty_bitmap, ++ unsigned long pages, ++ struct page_info **page) ++{ ++ uint32_t pfec = PFEC_page_present | PFEC_write_access; ++ unsigned long gfn; ++ p2m_type_t p2mt; ++ ++ gfn = paging_gva_to_gfn(current, ++ (unsigned long)(dirty_bitmap.p + (pages >> 3)), ++ &pfec); ++ if ( gfn == INVALID_GFN ) ++ return NULL; ++ ++ *page = get_page_from_gfn(current->domain, gfn, &p2mt, P2M_UNSHARE); ++ ++ if ( !p2m_is_ram(p2mt) ) ++ { ++ put_page(*page); ++ return NULL; ++ } ++ if ( p2m_is_paging(p2mt) ) ++ { ++ put_page(*page); ++ p2m_mem_paging_populate(current->domain, gfn); ++ return NULL; ++ } ++ if ( p2m_is_shared(p2mt) ) ++ { ++ put_page(*page); ++ return NULL; ++ } ++ ++ return __map_domain_page(*page); ++} ++ ++static inline void unmap_dirty_bitmap(void *addr, struct page_info *page) ++{ ++ if ( addr != NULL ) ++ { ++ unmap_domain_page(addr); ++ put_page(page); ++ } ++} ++ + + /* Read a domain's log-dirty bitmap and stats. If the operation is a CLEAN, + * clear the bitmap and stats as well. */ +@@ -409,9 +454,22 @@ static int paging_log_dirty_op(struct domain *d, + mfn_t *l4 = NULL, *l3 = NULL, *l2 = NULL; + unsigned long *l1 = NULL; + int i4, i3, i2; ++ uint8_t *dirty_bitmap; ++ struct page_info *page; ++ unsigned long index_mapped; + ++ again: + if ( !resuming ) + domain_pause(d); ++ ++ index_mapped = resuming ? d->arch.paging.preempt.log_dirty.done : 0; ++ dirty_bitmap = map_dirty_bitmap(sc->dirty_bitmap, index_mapped, &page); ++ if ( dirty_bitmap == NULL ) ++ { ++ domain_unpause(d); ++ return -EFAULT; ++ } ++ + paging_lock(d); + + if ( !d->arch.paging.preempt.dom ) +@@ -451,18 +509,18 @@ static int paging_log_dirty_op(struct domain *d, + l4 = paging_map_log_dirty_bitmap(d); + i4 = d->arch.paging.preempt.log_dirty.i4; + i3 = d->arch.paging.preempt.log_dirty.i3; ++ i2 = d->arch.paging.preempt.log_dirty.i2; + pages = d->arch.paging.preempt.log_dirty.done; + + for ( ; (pages < sc->pages) && (i4 < LOGDIRTY_NODE_ENTRIES); i4++, i3 = 0 ) + { + l3 = (l4 && mfn_valid(l4[i4])) ? map_domain_page(mfn_x(l4[i4])) : NULL; +- for ( ; (pages < sc->pages) && (i3 < LOGDIRTY_NODE_ENTRIES); i3++ ) ++ for ( ; (pages < sc->pages) && (i3 < LOGDIRTY_NODE_ENTRIES); ++ i3++, i2 = 0 ) + { + l2 = ((l3 && mfn_valid(l3[i3])) ? + map_domain_page(mfn_x(l3[i3])) : NULL); +- for ( i2 = 0; +- (pages < sc->pages) && (i2 < LOGDIRTY_NODE_ENTRIES); +- i2++ ) ++ for ( ; (pages < sc->pages) && (i2 < LOGDIRTY_NODE_ENTRIES); i2++ ) + { + unsigned int bytes = PAGE_SIZE; + l1 = ((l2 && mfn_valid(l2[i2])) ? +@@ -471,15 +529,28 @@ static int paging_log_dirty_op(struct domain *d, + bytes = (unsigned int)((sc->pages - pages + 7) >> 3); + if ( likely(peek) ) + { +- if ( (l1 ? copy_to_guest_offset(sc->dirty_bitmap, +- pages >> 3, (uint8_t *)l1, +- bytes) +- : clear_guest_offset(sc->dirty_bitmap, +- pages >> 3, bytes)) != 0 ) ++ if ( pages >> (3 + PAGE_SHIFT) != ++ index_mapped >> (3 + PAGE_SHIFT) ) + { +- rv = -EFAULT; +- goto out; ++ /* We need to map next page */ ++ d->arch.paging.preempt.log_dirty.i4 = i4; ++ d->arch.paging.preempt.log_dirty.i3 = i3; ++ d->arch.paging.preempt.log_dirty.i2 = i2; ++ d->arch.paging.preempt.log_dirty.done = pages; ++ d->arch.paging.preempt.dom = current->domain; ++ d->arch.paging.preempt.op = sc->op; ++ resuming = 1; ++ paging_unlock(d); ++ unmap_dirty_bitmap(dirty_bitmap, page); ++ goto again; + } ++ ASSERT(((pages >> 3) % PAGE_SIZE) + bytes <= PAGE_SIZE); ++ if ( l1 ) ++ memcpy(dirty_bitmap + ((pages >> 3) % PAGE_SIZE), l1, ++ bytes); ++ else ++ memset(dirty_bitmap + ((pages >> 3) % PAGE_SIZE), 0, ++ bytes); + } + pages += bytes << 3; + if ( l1 ) +@@ -496,6 +567,7 @@ static int paging_log_dirty_op(struct domain *d, + { + d->arch.paging.preempt.log_dirty.i4 = i4; + d->arch.paging.preempt.log_dirty.i3 = i3 + 1; ++ d->arch.paging.preempt.log_dirty.i2 = 0; + rv = -ERESTART; + break; + } +@@ -508,6 +580,7 @@ static int paging_log_dirty_op(struct domain *d, + { + d->arch.paging.preempt.log_dirty.i4 = i4 + 1; + d->arch.paging.preempt.log_dirty.i3 = 0; ++ d->arch.paging.preempt.log_dirty.i2 = 0; + rv = -ERESTART; + } + if ( rv ) +@@ -537,6 +610,7 @@ static int paging_log_dirty_op(struct domain *d, + if ( rv ) + { + /* Never leave the domain paused on real errors. */ ++ unmap_dirty_bitmap(dirty_bitmap, page); + ASSERT(rv == -ERESTART); + return rv; + } +@@ -549,12 +623,14 @@ static int paging_log_dirty_op(struct domain *d, + * paging modes (shadow or hap). Safe because the domain is paused. */ + d->arch.paging.log_dirty.clean_dirty_bitmap(d); + } ++ unmap_dirty_bitmap(dirty_bitmap, page); + domain_unpause(d); + return rv; + + out: + d->arch.paging.preempt.dom = NULL; + paging_unlock(d); ++ unmap_dirty_bitmap(dirty_bitmap, page); + domain_unpause(d); + + if ( l1 ) +diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h +index 6a77a93..63dea9c 100644 +--- a/xen/include/asm-x86/domain.h ++++ b/xen/include/asm-x86/domain.h +@@ -197,6 +197,7 @@ struct paging_domain { + unsigned long done:PADDR_BITS - PAGE_SHIFT; + unsigned long i4:PAGETABLE_ORDER; + unsigned long i3:PAGETABLE_ORDER; ++ unsigned long i2:PAGETABLE_ORDER; + } log_dirty; + }; + } preempt; +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0006-xen-pvh-enable-mmu_update-hypercall.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0006-xen-pvh-enable-mmu_update-hypercall.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,33 @@ +From bec71ff2b61acc42e71a2bd79ec5cf172130e5f8 Mon Sep 17 00:00:00 2001 +From: Roger Pau Monne +Date: Fri, 9 Oct 2015 12:57:32 +0200 +Subject: [PATCH 6/8] xen/pvh: enable mmu_update hypercall +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +This is needed for performing save/restore of PV guests. + +Signed-off-by: Roger Pau Monné +Cc: Tim Deegan +Cc: Jan Beulich +Cc: Andrew Cooper +--- + xen/arch/x86/hvm/hvm.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c +index 7d53c6c..d3fdc3d 100644 +--- a/xen/arch/x86/hvm/hvm.c ++++ b/xen/arch/x86/hvm/hvm.c +@@ -4843,6 +4843,7 @@ static hvm_hypercall_t *const pvh_hypercall64_table[NR_hypercalls] = { + [ __HYPERVISOR_grant_table_op ] = (hvm_hypercall_t *)hvm_grant_table_op, + HYPERCALL(vcpu_op), + HYPERCALL(mmuext_op), ++ HYPERCALL(mmu_update), + HYPERCALL(xsm_op), + HYPERCALL(sched_op), + HYPERCALL(event_channel_op), +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0007-iommu-fix-usage-of-shared-EPT-IOMMU-page-tables-on-P.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0007-iommu-fix-usage-of-shared-EPT-IOMMU-page-tables-on-P.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,86 @@ +From 43f76b1443c8fc3b54dbb9fb466becbb9d584d6d Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= +Date: Fri, 9 Oct 2015 12:57:33 +0200 +Subject: [PATCH 7/8] iommu: fix usage of shared EPT/IOMMU page tables on PVH + guests +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +iommu_share_p2m_table should not prevent PVH guests from using a shared page +table between the IOMMU and EPT. Clean the code by removing the asserts in +the vendor specific implementations (amd_iommu_share_p2m, iommu_set_pgd), +and moving the hap_enabled assert to the caller (iommu_share_p2m_table). + +Also fix another incorrect usage of is_hvm_domain usage in +arch_iommu_populate_page_table. This has not given problems so far because +all the pages in PVH guests are of type PGT_writable_page. + +Signed-off-by: Roger Pau Monné +Reviewed-by: Jan Beulich +Tested-by: David Vrabel +Reviewed-by: Tim Deegan +Acked-by: Kevin Tian +--- + xen/drivers/passthrough/amd/iommu_map.c | 2 -- + xen/drivers/passthrough/iommu.c | 3 ++- + xen/drivers/passthrough/vtd/iommu.c | 2 -- + xen/drivers/passthrough/x86/iommu.c | 2 +- + 4 files changed, 3 insertions(+), 6 deletions(-) + +diff --git a/xen/drivers/passthrough/amd/iommu_map.c b/xen/drivers/passthrough/amd/iommu_map.c +index a8c60ec..31dc05d 100644 +--- a/xen/drivers/passthrough/amd/iommu_map.c ++++ b/xen/drivers/passthrough/amd/iommu_map.c +@@ -785,8 +785,6 @@ void amd_iommu_share_p2m(struct domain *d) + struct page_info *p2m_table; + mfn_t pgd_mfn; + +- ASSERT( is_hvm_domain(d) && d->arch.hvm_domain.hap_enabled ); +- + if ( !iommu_use_hap_pt(d) ) + return; + +diff --git a/xen/drivers/passthrough/iommu.c b/xen/drivers/passthrough/iommu.c +index cc12735..7fcbbb1 100644 +--- a/xen/drivers/passthrough/iommu.c ++++ b/xen/drivers/passthrough/iommu.c +@@ -332,7 +332,8 @@ void iommu_share_p2m_table(struct domain* d) + { + const struct iommu_ops *ops = iommu_get_ops(); + +- if ( iommu_enabled && is_hvm_domain(d) ) ++ ASSERT( hap_enabled(d) ); ++ if ( iommu_enabled ) + ops->share_p2m(d); + } + +diff --git a/xen/drivers/passthrough/vtd/iommu.c b/xen/drivers/passthrough/vtd/iommu.c +index 5a946d4..a5a111c 100644 +--- a/xen/drivers/passthrough/vtd/iommu.c ++++ b/xen/drivers/passthrough/vtd/iommu.c +@@ -1802,8 +1802,6 @@ static void iommu_set_pgd(struct domain *d) + struct hvm_iommu *hd = domain_hvm_iommu(d); + mfn_t pgd_mfn; + +- ASSERT( is_hvm_domain(d) && d->arch.hvm_domain.hap_enabled ); +- + if ( !iommu_use_hap_pt(d) ) + return; + +diff --git a/xen/drivers/passthrough/x86/iommu.c b/xen/drivers/passthrough/x86/iommu.c +index ce0ca5a..3d2c12a 100644 +--- a/xen/drivers/passthrough/x86/iommu.c ++++ b/xen/drivers/passthrough/x86/iommu.c +@@ -56,7 +56,7 @@ int arch_iommu_populate_page_table(struct domain *d) + + while ( !rc && (page = page_list_remove_head(&d->page_list)) ) + { +- if ( is_hvm_domain(d) || ++ if ( has_hvm_container_domain(d) || + (page->u.inuse.type_info & PGT_type_mask) == PGT_writable_page ) + { + BUG_ON(SHARED_M2P(mfn_to_gmfn(d, page_to_mfn(page)))); +-- +1.9.5 (Apple Git-50.3) + Added: head/emulators/xen-kernel/files/0008-xen-arm-mm-Do-not-dump-the-p2m-when-mapping-a-foreig.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0008-xen-arm-mm-Do-not-dump-the-p2m-when-mapping-a-foreig.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,39 @@ +From 403805aca7a4a508cf193d63aa525b3a76bb09dd Mon Sep 17 00:00:00 2001 +From: Julien Grall +Date: Fri, 9 Oct 2015 13:00:35 +0200 +Subject: [PATCH 8/8] xen/arm: mm: Do not dump the p2m when mapping a foreign + gfn + +The physmap operation XENMAPSPACE_gfmn_foreign is dumping the p2m when +an error occured by calling dump_p2m_lookup. But this function is not +using ratelimited printk. + +Any domain able to map foreign gfmn would be able to flood the Xen +console. + +The information wasn't not useful so drop it. + +This is XSA-141. + +Signed-off-by: Julien Grall +Acked-by: Ian Campbell +(cherry picked from commit afc13fe5e21d18c09e44f8ae6f7f4484e9f1de7f) +--- + xen/arch/arm/mm.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c +index 7d4ba0c..7d95961 100644 +--- a/xen/arch/arm/mm.c ++++ b/xen/arch/arm/mm.c +@@ -1103,7 +1103,6 @@ int xenmem_add_to_physmap_one( + page = get_page_from_gfn(od, idx, &p2mt, P2M_ALLOC); + if ( !page ) + { +- dump_p2m_lookup(od, pfn_to_paddr(idx)); + rcu_unlock_domain(od); + return -EINVAL; + } +-- +1.9.5 (Apple Git-50.3) + Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Fri Oct 9 13:39:22 2015 (r398917) +++ head/sysutils/xen-tools/Makefile Fri Oct 9 14:09:07 2015 (r398918) @@ -2,6 +2,7 @@ PORTNAME= xen PORTVERSION= 4.5.1 +PORTREVISION= 1 CATEGORIES= sysutils emulators MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ \ http://code.coreboot.org/p/seabios/downloads/get/:seabios @@ -48,6 +49,7 @@ QEMU_ARGS= --disable-gtk \ --cxx=c++ EXTRA_PATCHES= ${FILESDIR}/xsa137.patch:-p1 \ + ${FILESDIR}/xsa142-4.5.patch:-p1 \ ${FILESDIR}/0002-libxc-fix-xc_dom_load_elf_symtab.patch:-p1 CONFIGURE_ARGS+= --with-extra-qemuu-configure-args="${QEMU_ARGS}" @@ -75,10 +77,6 @@ post-patch: ${WRKSRC}/tools/libxl/libxl_dm.c \ ${WRKSRC}/tools/qemu-xen-traditional/i386-dm/helper2.c \ ${WRKSRC}/docs/man/* - @for p in ${FILESDIR}/*qemut*.patch; do \ - ${ECHO_CMD} "====> Applying $${p##*/}" ; \ - ${PATCH} -s -p1 -i $${p} -d ${WRKSRC}/tools/qemu-xen-traditional ; \ - done @for p in ${FILESDIR}/*qemuu*.patch; do \ ${ECHO_CMD} "====> Applying $${p##*/}" ; \ ${PATCH} -s -p1 -i $${p} -d ${WRKSRC}/tools/qemu-xen ; \ Added: head/sysutils/xen-tools/files/xsa142-4.5.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xen-tools/files/xsa142-4.5.patch Fri Oct 9 14:09:07 2015 (r398918) @@ -0,0 +1,53 @@ +From 07ca00703f76ad392eda5ee52cce1197cf49c30a Mon Sep 17 00:00:00 2001 +From: Stefano Stabellini +Subject: [PATCH v2.1 for-4.5] libxl: handle read-only drives with qemu-xen + +The current libxl code doesn't deal with read-only drives at all. + +Upstream QEMU and qemu-xen only support read-only cdrom drives: make +sure to specify "readonly=on" for cdrom drives and return error in case +the user requested a non-cdrom read-only drive. + +This is XSA-142, discovered by Lin Liu +(https://bugzilla.redhat.com/show_bug.cgi?id=1257893). + +Signed-off-by: Stefano Stabellini + +Backport to Xen 4.5 and earlier, apropos of report and review from +Michael Young. + +Signed-off-by: Ian Jackson +--- + tools/libxl/libxl_dm.c | 13 +++++++++---- + 1 file changed, 9 insertions(+), 4 deletions(-) + +diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c +index b4ce523..d74fb14 100644 +--- a/tools/libxl/libxl_dm.c ++++ b/tools/libxl/libxl_dm.c +@@ -797,13 +797,18 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, + if (disks[i].is_cdrom) { + if (disks[i].format == LIBXL_DISK_FORMAT_EMPTY) + drive = libxl__sprintf +- (gc, "if=ide,index=%d,media=cdrom,cache=writeback,id=ide-%i", +- disk, dev_number); ++ (gc, "if=ide,index=%d,readonly=%s,media=cdrom,cache=writeback,id=ide-%i", ++ disk, disks[i].readwrite ? "off" : "on", dev_number); + else + drive = libxl__sprintf +- (gc, "file=%s,if=ide,index=%d,media=cdrom,format=%s,cache=writeback,id=ide-%i", +- disks[i].pdev_path, disk, format, dev_number); ++ (gc, "file=%s,if=ide,index=%d,readonly=%s,media=cdrom,format=%s,cache=writeback,id=ide-%i", ++ disks[i].pdev_path, disk, disks[i].readwrite ? "off" : "on", format, dev_number); + } else { ++ if (!disks[i].readwrite) { ++ LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "qemu-xen doesn't support read-only disk drivers"); ++ return NULL; ++ } ++ + if (disks[i].format == LIBXL_DISK_FORMAT_EMPTY) { + LIBXL__LOG(ctx, LIBXL__LOG_WARNING, "cannot support" + " empty disk format for %s", disks[i].vdev); +-- +1.7.10.4 + From owner-svn-ports-head@freebsd.org Fri Oct 9 14:22:38 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 D88BB9D2F71; Fri, 9 Oct 2015 14:22:38 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4392EF3; Fri, 9 Oct 2015 14:22:38 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99EMb59084819; Fri, 9 Oct 2015 14:22:37 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99EMbvH084818; Fri, 9 Oct 2015 14:22:37 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201510091422.t99EMbvH084818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Fri, 9 Oct 2015 14:22:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398919 - head/security/cyrus-sasl2-saslauthd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 14:22:38 -0000 Author: ume Date: Fri Oct 9 14:22:37 2015 New Revision: 398919 URL: https://svnweb.freebsd.org/changeset/ports/398919 Log: Fix build with clang and MIT Kerberos. Reported by: Beat Siegenthaler Modified: head/security/cyrus-sasl2-saslauthd/Makefile Modified: head/security/cyrus-sasl2-saslauthd/Makefile ============================================================================== --- head/security/cyrus-sasl2-saslauthd/Makefile Fri Oct 9 14:09:07 2015 (r398918) +++ head/security/cyrus-sasl2-saslauthd/Makefile Fri Oct 9 14:22:37 2015 (r398919) @@ -67,7 +67,7 @@ WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER} .if !defined(WITHOUT_GSSAPI) && defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.so) CONFIGURE_ARGS+=--enable-gssapi=${KRB5_HOME} --with-gss_impl=mit -LDFLAGS+= -R${KRB5_HOME}/lib +LDFLAGS+= -Wl,-rpath,${KRB5_HOME}/lib .elif !defined(WITHOUT_GSSAPI) && defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libgssapi.a) CONFIGURE_ARGS+=--enable-gssapi=${HEIMDAL_HOME} --with-gss_impl=heimdal .elif !defined(WITHOUT_GSSAPI) && exists(/usr/lib/libkrb5.a) From owner-svn-ports-head@freebsd.org Fri Oct 9 14:35: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 46DB69D1868; Fri, 9 Oct 2015 14:35:11 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE7A28FA; Fri, 9 Oct 2015 14:35:10 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99EZAkZ087905; Fri, 9 Oct 2015 14:35:10 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99EZAR5087904; Fri, 9 Oct 2015 14:35:10 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201510091435.t99EZAR5087904@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Fri, 9 Oct 2015 14:35:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398920 - head/security/cyrus-sasl2-saslauthd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 14:35:11 -0000 Author: ume Date: Fri Oct 9 14:35:09 2015 New Revision: 398920 URL: https://svnweb.freebsd.org/changeset/ports/398920 Log: - Use USES=gssapi. - OPTIONSfy Kerberos. Modified: head/security/cyrus-sasl2-saslauthd/Makefile Modified: head/security/cyrus-sasl2-saslauthd/Makefile ============================================================================== --- head/security/cyrus-sasl2-saslauthd/Makefile Fri Oct 9 14:22:37 2015 (r398919) +++ head/security/cyrus-sasl2-saslauthd/Makefile Fri Oct 9 14:35:09 2015 (r398920) @@ -53,6 +53,25 @@ OPENLDAP_CONFIGURE_ON= --with-ldap=${LOC HTTPFORM_DESC= Enable HTTP form authentication HTTPFORM_CONFIGURE_ENABLE=httpform +OPTIONS_RADIO= KERBEROS +OPTIONS_RADIO_KERBEROS= HEIMDAL MIT +.if exists(/usr/lib/libkrb5.a) +OPTIONS_RADIO_KERBEROS+=BASE +OPTIONS_DEFAULT+= BASE +.endif +BASE_DESC= Use Heimdal in base +BASE_USES= gssapi:base +BASE_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ + --with-gss_impl=heimdal +HEIMDAL_DESC= Use Heimdal from ports +HEIMDAL_USES= gssapi:heimdal,flags +HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ + --with-gss_impl=heimdal +MIT_DESC= Use MIT Kerberos V5 +MIT_USES= gssapi:mit +MIT_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ + --with-gss_impl=mit + .include .if ${PORT_OPTIONS:MBDB} @@ -65,15 +84,8 @@ WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER} .endif .endif -.if !defined(WITHOUT_GSSAPI) && defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.so) -CONFIGURE_ARGS+=--enable-gssapi=${KRB5_HOME} --with-gss_impl=mit -LDFLAGS+= -Wl,-rpath,${KRB5_HOME}/lib -.elif !defined(WITHOUT_GSSAPI) && defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libgssapi.a) -CONFIGURE_ARGS+=--enable-gssapi=${HEIMDAL_HOME} --with-gss_impl=heimdal -.elif !defined(WITHOUT_GSSAPI) && exists(/usr/lib/libkrb5.a) -CONFIGURE_ARGS+=--enable-gssapi=/usr -CFLAGS+= -nostdinc -I/usr/include -.else +.if !${PORT_OPTIONS:MBASE} && !${PORT_OPTIONS:MHEIMDAL} && \ + !${PORT_OPTIONS:MMIT} CONFIGURE_ARGS+=--disable-gssapi .endif From owner-svn-ports-head@freebsd.org Fri Oct 9 15:25: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 84FB09D188C; Fri, 9 Oct 2015 15:25:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4FDDB1B0F; Fri, 9 Oct 2015 15:25:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99FPLLl002559; Fri, 9 Oct 2015 15:25:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99FPLgs002558; Fri, 9 Oct 2015 15:25:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510091525.t99FPLgs002558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Oct 2015 15:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398921 - head/devel/android-tools-adb-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 15:25:22 -0000 Author: jbeich Date: Fri Oct 9 15:25:21 2015 New Revision: 398921 URL: https://svnweb.freebsd.org/changeset/ports/398921 Log: devel/android-tools-adb-devel: drop redundant MAKEFILE assignment Modified: head/devel/android-tools-adb-devel/Makefile (contents, props changed) Modified: head/devel/android-tools-adb-devel/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/Makefile Fri Oct 9 14:35:09 2015 (r398920) +++ head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:21 2015 (r398921) @@ -10,7 +10,6 @@ CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* MASTERDIR= ${.CURDIR}/../android-tools-adb DISTINFO_FILE= ${.CURDIR}/distinfo -MAKEFILE= ${.CURDIR}/files/Makefile FILESDIR= ${.CURDIR}/files PATCHDIR= ${.CURDIR}/files From owner-svn-ports-head@freebsd.org Fri Oct 9 15:25: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 881089D18B1; Fri, 9 Oct 2015 15:25:32 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 407A11BF2; Fri, 9 Oct 2015 15:25:32 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99FPUlN002666; Fri, 9 Oct 2015 15:25:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99FPU4N002665; Fri, 9 Oct 2015 15:25:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510091525.t99FPU4N002665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Oct 2015 15:25:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398922 - head/devel/android-tools-adb-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 15:25:32 -0000 Author: jbeich Date: Fri Oct 9 15:25:30 2015 New Revision: 398922 URL: https://svnweb.freebsd.org/changeset/ports/398922 Log: devel/android-tools-adb-devel: move python tests into a separate option Modified: head/devel/android-tools-adb-devel/Makefile (contents, props changed) Modified: head/devel/android-tools-adb-devel/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:21 2015 (r398921) +++ head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:30 2015 (r398922) @@ -20,14 +20,16 @@ MAKE_ENV= FILESDIR="${FILESDIR}" CPPFLAGS+= -DADB_REVISION='\"${DISTVERSIONSUFFIX:S/-g//}-android\"' ALL_TARGET= all -OPTIONS_DEFINE= TEST +OPTIONS_DEFINE= TEST TEST_PYTHON -TEST_GH_PROJECT=platform_development:development -TEST_GH_TAGNAME=${DISTVERSIONFULL:C/-[0-9].*//}-66-ge4cded6:development -TEST_BUILD_DEPENDS=googletest>=1.6.0:${PORTSDIR}/devel/googletest \ - ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock -TEST_USES= python:2.7,build -TEST_ALL_TARGET=adb_test +TEST_BUILD_DEPENDS= googletest>=1.6.0:${PORTSDIR}/devel/googletest +TEST_ALL_TARGET= adb_test + +TEST_PYTHON_DESC= ${TEST_DESC:S/tests/python &/} +TEST_PYTHON_GH_PROJECT= platform_development:development +TEST_PYTHON_GH_TAGNAME= ${DISTVERSIONFULL:C/-[0-9].*//}-66-ge4cded6:development +TEST_PYTHON_BUILD_DEPENDS=${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock +TEST_PYTHON_USES= python:2.7,build post-patch: slave-post-patch slave-post-patch: @@ -45,6 +47,8 @@ slave-post-patch: pre-install-TEST-on: ${BUILD_WRKSRC}/adb_test + +pre-install-TEST_PYTHON-on: # XXX python tests may leave behind running adb server # test_adb.py remains in core repository for some reason ${SETENV} PATH=${BUILD_WRKSRC}:${PATH} \ From owner-svn-ports-head@freebsd.org Fri Oct 9 15:25:41 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 C67129D18DF; Fri, 9 Oct 2015 15:25:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93A541CE9; Fri, 9 Oct 2015 15:25:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99FPeBn002795; Fri, 9 Oct 2015 15:25:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99FPeUH002793; Fri, 9 Oct 2015 15:25:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510091525.t99FPeUH002793@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Oct 2015 15:25:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398923 - in head/devel: android-tools-adb android-tools-adb-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 15:25:41 -0000 Author: jbeich Date: Fri Oct 9 15:25:40 2015 New Revision: 398923 URL: https://svnweb.freebsd.org/changeset/ports/398923 Log: devel/android-tools-adb: add missing USE_OPENSSL for -lcrypto Bump PORTREVISION for those who build everything against security/openssl or security/libressl. Modified: head/devel/android-tools-adb-devel/Makefile (contents, props changed) head/devel/android-tools-adb/Makefile (contents, props changed) Modified: head/devel/android-tools-adb-devel/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:30 2015 (r398922) +++ head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:40 2015 (r398923) @@ -3,7 +3,7 @@ # Hint: git describe --abbrev=12 --match android-m-preview DISTVERSION= m-preview-1280 DISTVERSIONSUFFIX= -g659f5ade04a5 -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -devel CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* Modified: head/devel/android-tools-adb/Makefile ============================================================================== --- head/devel/android-tools-adb/Makefile Fri Oct 9 15:25:30 2015 (r398922) +++ head/devel/android-tools-adb/Makefile Fri Oct 9 15:25:40 2015 (r398923) @@ -3,7 +3,7 @@ PORTNAME= android-tools-adb DISTVERSIONPREFIX= android- DISTVERSION?= 5.1.1_r4 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel MASTER_SITES= https://anonscm.debian.org/cgit/android-tools/android-tools.git/plain/debian/:bashcomp DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -22,6 +22,7 @@ GH_PROJECT= platform_system_core CONFLICTS_INSTALL?= ${PORTNAME}-devel-* USES+= uidfix +USE_OPENSSL= yes .ifndef BUILD_WRKSRC WRKSRC_SUBDIR= adb .endif From owner-svn-ports-head@freebsd.org Fri Oct 9 15:25:58 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 BAA6A9D19C5; Fri, 9 Oct 2015 15:25:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A641A1E01; Fri, 9 Oct 2015 15:25:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99FPubZ003510; Fri, 9 Oct 2015 15:25:56 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99FPtFA003494; Fri, 9 Oct 2015 15:25:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510091525.t99FPtFA003494@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Oct 2015 15:25:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398924 - in head/devel: android-tools-adb android-tools-adb-devel android-tools-adb-devel/files android-tools-adb/files android-tools-fastboot android-tools-fastboot-devel android-tool... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 15:25:58 -0000 Author: jbeich Date: Fri Oct 9 15:25:55 2015 New Revision: 398924 URL: https://svnweb.freebsd.org/changeset/ports/398924 Log: devel/android-tools-{adb,fastboot}: update to 6.0.0.r1 (marshmallow) - Integrate most changes from -devel slaves (e.g. r392432, r397252) - Get revision based on GH_TAGNAME (from JSON for releases) - Take maintainership Changes: https://android.googlesource.com/platform/system/core/+log/android-5.1.1_r4..android-6.0.0_r1/adb Changes: https://android.googlesource.com/platform/system/core/+log/android-5.1.1_r4..android-6.0.0_r1/fastboot Approved by: kevlo (adb maintainer) Differential Revision: https://reviews.freebsd.org/D3842 Added: head/devel/android-tools-adb/files/extra-patch-base_file__test.cpp (contents, props changed) head/devel/android-tools-adb/files/get_my_path_freebsd.cpp (contents, props changed) head/devel/android-tools-adb/files/patch-adb_adb__io__test.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-adb_adb__io__test.cpp head/devel/android-tools-adb/files/patch-adb_commandline.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-adb_commandline.cpp head/devel/android-tools-adb/files/patch-base_file.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp head/devel/android-tools-adb/files/patch-base_include_base_logging.h (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-base_include_base_logging.h head/devel/android-tools-adb/files/patch-base_logging.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-base_logging.cpp head/devel/android-tools-adb/files/patch-base_stringprintf__test.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-base_stringprintf__test.cpp head/devel/android-tools-adb/files/patch-libcutils_threads.c (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-libcutils_threads.c head/devel/android-tools-adb/files/patch-liblog_logd__write.c (contents, props changed) - copied, changed from r398923, head/devel/android-tools-fastboot-devel/files/patch-liblog_logd__write.c head/devel/android-tools-adb/files/usb_libusb.cpp (contents, props changed) head/devel/android-tools-fastboot/files/patch-base_file.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-base_file.cpp head/devel/android-tools-fastboot/files/patch-liblog_logd__write.c (contents, props changed) - copied, changed from r398923, head/devel/android-tools-adb-devel/files/patch-liblog_logd__write.c head/devel/android-tools-fastboot/files/usb_freebsd.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp head/devel/android-tools-fastboot/files/util_freebsd.cpp (contents, props changed) - copied, changed from r398923, head/devel/android-tools-fastboot-devel/files/util_freebsd.cpp Deleted: head/devel/android-tools-adb-devel/files/patch-adb_adb__io__test.cpp head/devel/android-tools-adb-devel/files/patch-adb_commandline.cpp head/devel/android-tools-adb-devel/files/patch-base_file.cpp head/devel/android-tools-adb-devel/files/patch-base_include_base_logging.h head/devel/android-tools-adb-devel/files/patch-base_logging.cpp head/devel/android-tools-adb-devel/files/patch-base_stringprintf__test.cpp head/devel/android-tools-adb-devel/files/patch-libcutils_threads.c head/devel/android-tools-adb-devel/files/patch-liblog_logd__write.c head/devel/android-tools-adb/files/patch-commandline.c head/devel/android-tools-adb/files/patch-get_my_path_freebsd.c head/devel/android-tools-adb/files/patch-usb_libusb.c head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp head/devel/android-tools-fastboot-devel/files/patch-ext4__utils_ext4__utils.c head/devel/android-tools-fastboot-devel/files/patch-liblog_logd__write.c head/devel/android-tools-fastboot-devel/files/pkg-message.in head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp head/devel/android-tools-fastboot-devel/files/util_freebsd.cpp head/devel/android-tools-fastboot/files/usb_freebsd.c head/devel/android-tools-fastboot/files/util_freebsd.c Modified: head/devel/android-tools-adb-devel/Makefile (contents, props changed) head/devel/android-tools-adb/Makefile (contents, props changed) head/devel/android-tools-adb/distinfo (contents, props changed) head/devel/android-tools-adb/files/Makefile (contents, props changed) head/devel/android-tools-fastboot-devel/Makefile (contents, props changed) head/devel/android-tools-fastboot/Makefile (contents, props changed) head/devel/android-tools-fastboot/distinfo (contents, props changed) head/devel/android-tools-fastboot/files/Makefile (contents, props changed) head/devel/android-tools-fastboot/files/patch-ext4__utils_ext4__utils.c (contents, props changed) Modified: head/devel/android-tools-adb-devel/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:40 2015 (r398923) +++ head/devel/android-tools-adb-devel/Makefile Fri Oct 9 15:25:55 2015 (r398924) @@ -11,19 +11,9 @@ CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* MASTERDIR= ${.CURDIR}/../android-tools-adb DISTINFO_FILE= ${.CURDIR}/distinfo FILESDIR= ${.CURDIR}/files -PATCHDIR= ${.CURDIR}/files +EXTRA_PATCHES= ${.CURDIR}/files/patch-* -USES= compiler:c++11-lib -BUILD_WRKSRC= ${WRKSRC}/adb -INSTALL_WRKSRC= ${BUILD_WRKSRC} -MAKE_ENV= FILESDIR="${FILESDIR}" -CPPFLAGS+= -DADB_REVISION='\"${DISTVERSIONSUFFIX:S/-g//}-android\"' -ALL_TARGET= all - -OPTIONS_DEFINE= TEST TEST_PYTHON - -TEST_BUILD_DEPENDS= googletest>=1.6.0:${PORTSDIR}/devel/googletest -TEST_ALL_TARGET= adb_test +OPTIONS_DEFINE= TEST_PYTHON TEST_PYTHON_DESC= ${TEST_DESC:S/tests/python &/} TEST_PYTHON_GH_PROJECT= platform_development:development @@ -31,23 +21,6 @@ TEST_PYTHON_GH_TAGNAME= ${DISTVERSIONFUL TEST_PYTHON_BUILD_DEPENDS=${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock TEST_PYTHON_USES= python:2.7,build -post-patch: slave-post-patch -slave-post-patch: -# XXX C++ exception with description "regex_error" thrown in the test body. - @if [ ${OPSYS} = FreeBSD -a ${OSREL:R} -lt 10 ]; then \ - ${REINPLACE_CMD} -Ee '/^TEST/\ - s/ (LOG|PLOG|UNIMPLEMENTED)/ DISABLED_\1/' \ - ${WRKSRC}/base/logging_test.cpp; \ - fi -.if defined(PACKAGE_BUILDING) -# XXX /dev/full isn't mounted by poudriere/tinderbox - @${REINPLACE_CMD} -e '/^TEST/s/[^ ]*ENOSPC/DISABLED_&/' \ - ${WRKSRC}/adb/adb_io_test.cpp -.endif - -pre-install-TEST-on: - ${BUILD_WRKSRC}/adb_test - pre-install-TEST_PYTHON-on: # XXX python tests may leave behind running adb server # test_adb.py remains in core repository for some reason Modified: head/devel/android-tools-adb/Makefile ============================================================================== --- head/devel/android-tools-adb/Makefile Fri Oct 9 15:25:40 2015 (r398923) +++ head/devel/android-tools-adb/Makefile Fri Oct 9 15:25:55 2015 (r398924) @@ -2,15 +2,15 @@ PORTNAME= android-tools-adb DISTVERSIONPREFIX= android- -DISTVERSION?= 5.1.1_r4 -PORTREVISION?= 1 +DISTVERSION?= 6.0.0_r1 +PORTREVISION?= 0 CATEGORIES= devel MASTER_SITES= https://anonscm.debian.org/cgit/android-tools/android-tools.git/plain/debian/:bashcomp DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ bash_completion.d/adb?id=2b8cfec:bashcomp EXTRACT_ONLY= ${DISTFILES:N*\:bashcomp:C/:.*//} -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= jbeich@FreeBSD.org COMMENT= Android debug bridge command line tool LICENSE= APACHE20 @@ -19,25 +19,56 @@ USE_GITHUB= yes GH_ACCOUNT= android GH_PROJECT= platform_system_core +# Emulate GH_COMMIT without causing desync +.ifdef DISTVERSIONSUFFIX +GH_REVISION= ${DISTVERSIONSUFFIX:S/-g//} # snapshot +.else +GH_REVISION= bb0c180e6270 # generated by: make update-revision +.endif + CONFLICTS_INSTALL?= ${PORTNAME}-devel-* -USES+= uidfix -USE_OPENSSL= yes -.ifndef BUILD_WRKSRC -WRKSRC_SUBDIR= adb +.ifndef EXTRA_PATCHES +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-base_file__test.cpp .endif + +USES= compiler:c++11-lib uidfix +USE_OPENSSL= yes +BUILD_WRKSRC= ${WRKSRC}/adb +INSTALL_WRKSRC= ${BUILD_WRKSRC} MAKEFILE= ${FILESDIR}/Makefile -MAKE_ENV+= BINDIR="${PREFIX}/bin" +MAKE_ENV= BINDIR="${PREFIX}/bin" FILESDIR="${FILESDIR}" +ALL_TARGET= all +CPPFLAGS+= -DADB_REVISION='\"${GH_REVISION}-android\"' PLIST_FILES= bin/adb \ %%BASH%%etc/bash_completion.d/adb PORTDOCS= *.txt *.TXT -OPTIONS_DEFINE+=BASH DOCS +OPTIONS_DEFINE+=BASH DOCS TEST OPTIONS_SUB= yes BASH_VARS= LICENSE+=MIT LICENSE_COMB=multi # debian/copyright +TEST_BUILD_DEPENDS= googletest>=1.6.0:${PORTSDIR}/devel/googletest +TEST_ALL_TARGET= adb_test + +pre-install-TEST-on: + ${BUILD_WRKSRC}/adb_test + +post-patch: +# XXX C++ exception with description "regex_error" thrown in the test body. + @if [ ${OPSYS} = FreeBSD -a ${OSREL:R} -lt 10 ]; then \ + ${REINPLACE_CMD} -Ee '/^TEST/\ + s/ (LOG|PLOG|UNIMPLEMENTED)/ DISABLED_\1/' \ + ${WRKSRC}/base/logging_test.cpp; \ + fi +.if defined(PACKAGE_BUILDING) +# XXX /dev/full isn't mounted by poudriere/tinderbox + @${REINPLACE_CMD} -e '/^TEST/s/[^ ]*ENOSPC/DISABLED_&/' \ + ${WRKSRC}/adb/adb_io_test.cpp +.endif + post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${PLIST_FILES:M%%BASH%%*:C/%%.*%%//:H} ${INSTALL_DATA} ${_DISTDIR}/${DISTFILES:M*\:bashcomp:C/:.*//} \ @@ -45,4 +76,19 @@ post-install: (cd ${INSTALL_WRKSRC} && ${COPYTREE_SHARE} \ "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) +update-revision: +# https://developer.github.com/v3/repos/commits/#get-a-single-commit +# Pretend to be curl(1) for pretty-printed JSON to help parse with sed(1) + @${REINPLACE_CMD} -i '' -e "/^GH_REVISION.*$@/s/=.*/= $$(\ + ${SETENV} HTTP_USER_AGENT=curl ${FETCH_CMD} -qo- \ + https://api.github.com/repos/${GH_ACCOUNT}/${GH_PROJECT}/commits/${GH_TAGNAME} | \ + ${SED} -n '/sha/ { s/.*\"\([0-9a-f]\{12\}\).*/\1/p; q; }' \ + ) # generated by: make $@/" \ + ${.CURDIR}/Makefile + .include + +# XXX Work around !target(makesum) +.ifndef DISTVERSIONSUFFIX +makesum: update-revision +.endif Modified: head/devel/android-tools-adb/distinfo ============================================================================== --- head/devel/android-tools-adb/distinfo Fri Oct 9 15:25:40 2015 (r398923) +++ head/devel/android-tools-adb/distinfo Fri Oct 9 15:25:55 2015 (r398924) @@ -1,4 +1,4 @@ -SHA256 (android-platform_system_core-android-5.1.1_r4_GH0.tar.gz) = 076421a742ef98158d5ea290b8aed007f2115521f1e39832d8be3560e990ea13 -SIZE (android-platform_system_core-android-5.1.1_r4_GH0.tar.gz) = 1210714 +SHA256 (android-platform_system_core-android-6.0.0_r1_GH0.tar.gz) = 3027e73c8f23d8348c76bc558987ecd10c07ed7c89b60a2a76be9e0ef7c84dd5 +SIZE (android-platform_system_core-android-6.0.0_r1_GH0.tar.gz) = 1186291 SHA256 (bash_completion.d/adb?id=2b8cfec) = 0d7989596a3e4937834d582eb0ddc88b8186505570772304fe51870d473916a7 SIZE (bash_completion.d/adb?id=2b8cfec) = 5198 Modified: head/devel/android-tools-adb/files/Makefile ============================================================================== --- head/devel/android-tools-adb/files/Makefile Fri Oct 9 15:25:40 2015 (r398923) +++ head/devel/android-tools-adb/files/Makefile Fri Oct 9 15:25:55 2015 (r398924) @@ -1,24 +1,46 @@ # $FreeBSD$ -PROG= adb +PROG_CXX=adb NO_MAN= BINDIR?=/usr/bin -SRCS+= adb.c -SRCS+= adb_client.c -SRCS+= adb_auth_host.c -SRCS+= commandline.c -SRCS+= console.c -SRCS+= file_sync_client.c -SRCS+= fdevent.c -SRCS+= get_my_path_freebsd.c -SRCS+= services.c -SRCS+= sockets.c -SRCS+= transport.c -SRCS+= transport_local.c -SRCS+= transport_usb.c -SRCS+= usb_libusb.c -SRCS+= usb_vendors.c +SRCS+= adb.cpp +SRCS+= adb_auth.cpp +SRCS+= adb_auth_host.cpp +SRCS+= adb_client.cpp +SRCS+= adb_io.cpp +SRCS+= adb_listeners.cpp +SRCS+= adb_main.cpp +SRCS+= adb_utils.cpp +SRCS+= commandline.cpp +SRCS+= console.cpp +SRCS+= fdevent.cpp +SRCS+= file_sync_client.cpp +SRCS+= services.cpp +SRCS+= sockets.cpp +SRCS+= transport.cpp +SRCS+= transport_local.cpp +SRCS+= transport_usb.cpp + +TEST_SRCS+= adb_io_test.cpp +TEST_SRCS+= adb_utils_test.cpp +TEST_SRCS+= transport_test.cpp + +.PATH: ${FILESDIR} +SRCS+= get_my_path_freebsd.cpp +SRCS+= usb_libusb.cpp + +.PATH: ${.CURDIR}/../base +SRCS+= file.cpp +SRCS+= logging.cpp +SRCS+= strings.cpp +SRCS+= stringprintf.cpp +TEST_SRCS+= file_test.cpp +TEST_SRCS+= logging_test.cpp +TEST_SRCS+= stringprintf_test.cpp +TEST_SRCS+= strings_test.cpp +TEST_SRCS+= test_main.cpp +TEST_SRCS+= test_utils.cpp .PATH: ${.CURDIR}/../libcutils SRCS+= socket_inaddr_any_server.c @@ -28,10 +50,13 @@ SRCS+= socket_loopback_client.c SRCS+= socket_loopback_server.c SRCS+= socket_network_client.c SRCS+= load_file.c +SRCS+= threads.c -.PATH: ${.CURDIR}/../libzipfile -SRCS+= centraldir.c -SRCS+= zipfile.c +# required by base/file.cpp +.PATH: ${.CURDIR}/../liblog +SRCS+= fake_log_device.c +SRCS+= logd_write.c +CPPFLAGS.logd_write.c+= -DFAKE_LOG_DEVICE=1 CPPFLAGS+= -DADB_HOST=1 CPPFLAGS+= -DHAVE_FORKEXEC=1 @@ -41,12 +66,27 @@ CPPFLAGS+= -DHAVE_SYS_SOCKET_H CPPFLAGS+= -D_FILE_OFFSET_BITS=64 CPPFLAGS+= -I${.CURDIR} CPPFLAGS+= -I${.CURDIR}/../include +CPPFLAGS+= -I${.CURDIR}/../base/include +CPPFLAGS+= ${CPPFLAGS.${.IMPSRC:T}} +CXXFLAGS+= -std=gnu++11 .ifndef COMPILE.c CFLAGS+= ${CPPFLAGS} +CXXFLAGS+= ${CPPFLAGS} .endif +TEST_CPPFLAGS+= $$(${GTEST_CONFIG} --cppflags) +.for f in ${TEST_SRCS} +CPPFLAGS.${f}+= ${TEST_CPPFLAGS} +.endfor + LDADD+= -lcrypto -lpthread -lusb -lz DPADD+= ${LIBCRYPTO} ${LIBPTHREAD} ${LIBUSB} ${LIBZ} +TEST_LDADD+= $$(${GTEST_CONFIG} --libs --ldflags) + +GTEST_CONFIG?= gtest-config + +adb_test: ${SRCS:R:S/$/.o/:Nadb_main.o:Ncommandline.o} ${TEST_SRCS:R:S/$/.o/} + ${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -o $@ $> ${LDADD} ${TEST_LDADD} .include Added: head/devel/android-tools-adb/files/extra-patch-base_file__test.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb/files/extra-patch-base_file__test.cpp Fri Oct 9 15:25:55 2015 (r398924) @@ -0,0 +1,68 @@ +commit cf168a8 + cbf26b7 +Author: Spencer Low +Date: Mon Aug 3 20:43:24 2015 -0700 + + libbase_test: win32: get some tests working +[...] + - enh's edit to my previous change deleted a test that used + /proc/version, but I think another test was missed. Merge that test into + another. + +--- base/file_test.cpp.orig 2015-08-27 08:07:53 UTC ++++ base/file_test.cpp +@@ -34,16 +34,7 @@ TEST(file, ReadFileToString_ENOENT) { + EXPECT_EQ("", s); // s was cleared. + } + +-TEST(file, ReadFileToString_success) { +- std::string s("hello"); +- ASSERT_TRUE(android::base::ReadFileToString("/proc/version", &s)) << errno; +- EXPECT_GT(s.length(), 6U); +- EXPECT_EQ('\n', s[s.length() - 1]); +- s[5] = 0; +- EXPECT_STREQ("Linux", s.c_str()); +-} +- +-TEST(file, WriteStringToFile) { ++TEST(file, ReadFileToString_WriteStringToFile) { + TemporaryFile tf; + ASSERT_TRUE(tf.fd != -1); + ASSERT_TRUE(android::base::WriteStringToFile("abc", tf.filename)) << errno; +@@ -80,27 +71,20 @@ TEST(file, WriteStringToFd) { + EXPECT_EQ("abc", s); + } + +-TEST(file, ReadFully) { +- int fd = open("/proc/version", O_RDONLY); +- ASSERT_NE(-1, fd) << strerror(errno); +- +- char buf[1024]; +- memset(buf, 0, sizeof(buf)); +- ASSERT_TRUE(android::base::ReadFully(fd, buf, 5)); +- ASSERT_STREQ("Linux", buf); +- +- ASSERT_EQ(0, lseek(fd, 0, SEEK_SET)) << strerror(errno); +- +- ASSERT_FALSE(android::base::ReadFully(fd, buf, sizeof(buf))); +- +- close(fd); +-} +- + TEST(file, WriteFully) { + TemporaryFile tf; + ASSERT_TRUE(tf.fd != -1); + ASSERT_TRUE(android::base::WriteFully(tf.fd, "abc", 3)); ++ ++ ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET)) << errno; ++ + std::string s; +- ASSERT_TRUE(android::base::ReadFileToString(tf.filename, &s)) << errno; ++ s.resize(3); ++ ASSERT_TRUE(android::base::ReadFully(tf.fd, &s[0], s.size())) << errno; + EXPECT_EQ("abc", s); ++ ++ ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET)) << errno; ++ ++ s.resize(1024); ++ ASSERT_FALSE(android::base::ReadFully(tf.fd, &s[0], s.size())); + } Added: head/devel/android-tools-adb/files/get_my_path_freebsd.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb/files/get_my_path_freebsd.cpp Fri Oct 9 15:25:55 2015 (r398924) @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2009 bsdroid project + * Alexey Tarasov + * + * Copyright (C) 2007 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include + +void +get_my_path(char *exe, size_t maxLen) +{ + int mib[4] = { + CTL_KERN, + KERN_PROC, + KERN_PROC_PATHNAME, + getpid() + }; + + sysctl(mib, 4, exe, &maxLen, NULL, 0); +} Copied and modified: head/devel/android-tools-adb/files/patch-adb_adb__io__test.cpp (from r398923, head/devel/android-tools-adb-devel/files/patch-adb_adb__io__test.cpp) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-adb_commandline.cpp (from r398923, head/devel/android-tools-adb-devel/files/patch-adb_commandline.cpp) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-base_file.cpp (from r398923, head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-base_include_base_logging.h (from r398923, head/devel/android-tools-adb-devel/files/patch-base_include_base_logging.h) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-base_logging.cpp (from r398923, head/devel/android-tools-adb-devel/files/patch-base_logging.cpp) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-base_stringprintf__test.cpp (from r398923, head/devel/android-tools-adb-devel/files/patch-base_stringprintf__test.cpp) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-libcutils_threads.c (from r398923, head/devel/android-tools-adb-devel/files/patch-libcutils_threads.c) ============================================================================== Copied and modified: head/devel/android-tools-adb/files/patch-liblog_logd__write.c (from r398923, head/devel/android-tools-fastboot-devel/files/patch-liblog_logd__write.c) ============================================================================== Added: head/devel/android-tools-adb/files/usb_libusb.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb/files/usb_libusb.cpp Fri Oct 9 15:25:55 2015 (r398924) @@ -0,0 +1,656 @@ +/* + * Copyright (C) 2009 bsdroid project + * Alexey Tarasov + * + * Copyright (C) 2007 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#define TRACE_TAG TRACE_USB + +#include "sysdeps.h" + +#include +#include +#include +#include +#include +#include + +#include "adb.h" +#include "transport.h" + +ADB_MUTEX_DEFINE( usb_lock ); +static libusb_context *ctx = NULL; + +struct usb_handle +{ + usb_handle *prev; + usb_handle *next; + + libusb_device *dev; + libusb_device_handle *devh; + int interface; + uint8_t dev_bus; + uint8_t dev_addr; + + int zero_mask; + unsigned char end_point_address[2]; + char serial[128]; + + adb_cond_t notify; + adb_mutex_t lock; +}; + +static usb_handle handle_list = { + .prev = &handle_list, + .next = &handle_list, +}; + +void +usb_cleanup() +{ + libusb_exit(ctx); +} + +static void +report_bulk_libusb_error(int r) +{ + switch (r) { + case LIBUSB_ERROR_TIMEOUT: + D("Transfer timeout"); + break; + + case LIBUSB_ERROR_PIPE: + D("Control request is not supported"); + break; + + case LIBUSB_ERROR_OVERFLOW: + D("Device offered more data"); + break; + + case LIBUSB_ERROR_NO_DEVICE : + D("Device was disconnected"); + break; + + default: + D("Error %d during transfer", r); + break; + }; +} + +static int +usb_bulk_write(usb_handle *uh, const void *data, int len) +{ + int r = 0; + int transferred = 0; + + r = libusb_bulk_transfer(uh->devh, uh->end_point_address[1], + (unsigned char *)data, len, &transferred, 0); + + if (r != 0) { + D("usb_bulk_write(): "); + report_bulk_libusb_error(r); + return r; + } + + return (transferred); +} + +static int +usb_bulk_read(usb_handle *uh, void *data, int len) +{ + int r = 0; + int transferred = 0; + + r = libusb_bulk_transfer(uh->devh, uh->end_point_address[0], + (unsigned char *)data, len, + &transferred, 0); + + if (r != 0) { + D("usb_bulk_read(): "); + report_bulk_libusb_error(r); + return r; + } + + return (transferred); +} + +int +usb_write(usb_handle *uh, const void *_data, int len) +{ + unsigned char *data = (unsigned char*) _data; + int n; + int need_zero = 0; + + if (uh->zero_mask == 1) { + if (!(len & uh->zero_mask)) { + need_zero = 1; + } + } + + D("usb_write(): %p:%d -> transport %p", _data, len, uh); + + while (len > 0) { + int xfer = (len > 4096) ? 4096 : len; + + n = usb_bulk_write(uh, data, xfer); + + if (n != xfer) { + D("usb_write(): failed for transport %p (%d bytes left)", uh, len); + return -1; + } + + len -= xfer; + data += xfer; + } + + if (need_zero){ + n = usb_bulk_write(uh, _data, 0); + + if (n < 0) { + D("usb_write(): failed to finish operation for transport %p", uh); + } + return n; + } + + return 0; +} + +int +usb_read(usb_handle *uh, void *_data, int len) +{ + unsigned char *data = (unsigned char*)_data; + int n; + + D("usb_read(): %p:%d <- transport %p", _data, len, uh); + + while (len > 0) { + int xfer = (len > 4096) ? 4096 : len; + + n = usb_bulk_read(uh, data, xfer); + + if (n != xfer) { + if (n > 0) { + data += n; + len -= n; + continue; + } + + D("usb_read(): failed for transport %p (%d bytes left)", uh, len); + return -1; + } + + len -= xfer; + data += xfer; + } + + return 0; +} + +int +usb_close(usb_handle *h) +{ + D("usb_close(): closing transport %p", h); + adb_mutex_lock(&usb_lock); + + h->next->prev = h->prev; + h->prev->next = h->next; + h->prev = NULL; + h->next = NULL; + + libusb_release_interface(h->devh, h->interface); + libusb_close(h->devh); + libusb_unref_device(h->dev); + + adb_mutex_unlock(&usb_lock); + + free(h); + + return (0); +} + +void +usb_kick(usb_handle *h) +{ + D("usb_kick(): kicking transport %p", h); + + adb_mutex_lock(&h->lock); + unregister_usb_transport(h); + adb_mutex_unlock(&h->lock); + + h->next->prev = h->prev; + h->prev->next = h->next; + h->prev = NULL; + h->next = NULL; + + libusb_release_interface(h->devh, h->interface); + libusb_close(h->devh); + libusb_unref_device(h->dev); + free(h); +} + +static int +check_usb_interface(libusb_interface const *interface, + libusb_device_descriptor const *desc, + usb_handle *uh) +{ + int e; + + if (interface->num_altsetting == 0) { + D("check_usb_interface(): No interface settings"); + return -1; + } + + libusb_interface_descriptor const *idesc = &interface->altsetting[0]; + + if (idesc->bNumEndpoints != 2) { + D("check_usb_interface(): Interface have not 2 endpoints, ignoring"); + return -1; + } + + for (e = 0; e < idesc->bNumEndpoints; e++) { + libusb_endpoint_descriptor const *edesc = &idesc->endpoint[e]; + + if (edesc->bmAttributes != LIBUSB_TRANSFER_TYPE_BULK) { + D("check_usb_interface(): Endpoint (%u) is not bulk (%u), ignoring", + edesc->bmAttributes, LIBUSB_TRANSFER_TYPE_BULK); + return -1; + } + + if (edesc->bEndpointAddress & LIBUSB_ENDPOINT_IN) + uh->end_point_address[0] = edesc->bEndpointAddress; + else + uh->end_point_address[1] = edesc->bEndpointAddress; + + /* aproto 01 needs 0 termination */ + if (idesc->bInterfaceProtocol == 0x01) { + uh->zero_mask = edesc->wMaxPacketSize - 1; + D("check_usb_interface(): Forced Android interface protocol v.1"); + } + } + + D("check_usb_interface(): Device: %04x:%04x " + "iclass: %x, isclass: %x, iproto: %x ep: %x/%x-> ", + desc->idVendor, desc->idProduct, idesc->bInterfaceClass, + idesc->bInterfaceSubClass, idesc->bInterfaceProtocol, + uh->end_point_address[0], uh->end_point_address[1]); + + if (!is_adb_interface(desc->idVendor, desc->idProduct, + idesc->bInterfaceClass, idesc->bInterfaceSubClass, + idesc->bInterfaceProtocol)) + { + D("not matches"); + return -1; + } + + D("matches"); + return 1; +} + +static int +check_usb_interfaces(libusb_config_descriptor *config, + libusb_device_descriptor *desc, + usb_handle *uh) +{ + int i; + + for (i = 0; i < config->bNumInterfaces; ++i) { + if (check_usb_interface(&config->interface[i], desc, uh) != -1) { + /* found some interface and saved information about it */ + D("check_usb_interfaces(): Interface %d of %04x:%04x " + "matches Android device", i, desc->idVendor, + desc->idProduct); + + return i; + } + } + + return -1; +} + +static int +register_device(usb_handle *uh, const char *serial) +{ + D("register_device(): Registering %p [%s] as USB transport", + uh, serial); + + usb_handle* usb = reinterpret_cast(calloc(1, sizeof(usb_handle))); + if (usb == nullptr) fatal("couldn't allocate usb_handle"); + memcpy(usb, uh, sizeof(usb_handle)); + strcpy(usb->serial, uh->serial); + + adb_cond_init(&usb->notify, 0); + adb_mutex_init(&usb->lock, 0); + + adb_mutex_lock(&usb_lock); + + usb->next = &handle_list; + usb->prev = handle_list.prev; + usb->prev->next = usb; + usb->next->prev = usb; + + adb_mutex_unlock(&usb_lock); + + char devpath[64]; + snprintf(devpath, sizeof(devpath), "ugen%d.%d", + uh->dev_bus, uh->dev_addr); + + register_usb_transport(usb, serial, devpath, 1); + + return (1); +} + +static int +already_registered(usb_handle *uh) +{ + usb_handle *usb = NULL; + int exists = 0; + + adb_mutex_lock(&usb_lock); + + for (usb = handle_list.next; usb != &handle_list; usb = usb->next) { + if ((usb->dev_bus == uh->dev_bus) && + (usb->dev_addr == uh->dev_addr)) + { + exists = 1; + break; + } + } + + adb_mutex_unlock(&usb_lock); + + return exists; +} + +static void +check_device(libusb_device *dev) +{ + usb_handle uh; + int i = 0; + int found = -1; + char serial[256] = {0}; + + libusb_device_descriptor desc; + libusb_config_descriptor *config = NULL; + + int r = libusb_get_device_descriptor(dev, &desc); + + if (r != LIBUSB_SUCCESS) { + D("check_device(): Failed to get device descriptor"); + return; + } + + if ((desc.idVendor == 0) && (desc.idProduct == 0)) + return; + + D("check_device(): Probing usb device %04x:%04x", + desc.idVendor, desc.idProduct); + + if (!is_adb_interface(desc.idVendor, desc.idProduct, + ADB_CLASS, ADB_SUBCLASS, ADB_PROTOCOL)) + { + D("check_device(): Ignored due unknown vendor id"); + return; + } + + uh.dev_bus = libusb_get_bus_number(dev); + uh.dev_addr = libusb_get_device_address(dev); + + if (already_registered(&uh)) { + D("check_device(): Device (bus: %d, address: %d) " + "is already registered", uh.dev_bus, uh.dev_addr); + return; + } + + D("check_device(): Device bus: %d, address: %d", + uh.dev_bus, uh.dev_addr); + + r = libusb_get_active_config_descriptor(dev, &config); + + if (r != 0) { + if (r == LIBUSB_ERROR_NOT_FOUND) { + D("check_device(): Device %4x:%4x is unconfigured", + desc.idVendor, desc.idProduct); + return; + } + + D("check_device(): Failed to get configuration for %4x:%4x", + desc.idVendor, desc.idProduct); + return; + } + + if (config == NULL) { + D("check_device(): Sanity check failed after " + "getting active config"); + return; + } + + if (config->interface != NULL) { + found = check_usb_interfaces(config, &desc, &uh); + } + + /* not needed anymore */ + libusb_free_config_descriptor(config); + + r = libusb_open(dev, &uh.devh); + uh.dev = dev; + + if (r != 0) { + switch (r) { + case LIBUSB_ERROR_NO_MEM: + D("check_device(): Memory allocation problem"); + break; + + case LIBUSB_ERROR_ACCESS: + D("check_device(): Permissions problem, " + "current user priveleges are messed up?"); + break; + + case LIBUSB_ERROR_NO_DEVICE: + D("check_device(): Device disconected, bad cable?"); + break; + + default: + D("check_device(): libusb triggered error %d", r); + } + // skip rest + found = -1; + } + + if (found >= 0) { + D("check_device(): Device matches Android interface"); + // read the device's serial number + memset(serial, 0, sizeof(serial)); + uh.interface = found; + + r = libusb_claim_interface(uh.devh, uh.interface); + + if (r < 0) { + D("check_device(): Failed to claim interface %d", + uh.interface); + + goto fail; + } + + if (desc.iSerialNumber) { + // reading serial + uint16_t buffer[128] = {0}; + uint16_t languages[128] = {0}; + int languageCount = 0; + + memset(languages, 0, sizeof(languages)); + r = libusb_control_transfer(uh.devh, + LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_STANDARD | LIBUSB_RECIPIENT_DEVICE, + LIBUSB_REQUEST_GET_DESCRIPTOR, LIBUSB_DT_STRING << 8, + 0, (uint8_t *)languages, sizeof(languages), 0); + + if (r <= 0) { + D("check_device(): Failed to get languages count"); + goto fail; + } + + languageCount = (r - 2) / 2; + + for (i = 1; i <= languageCount; ++i) { + memset(buffer, 0, sizeof(buffer)); + + r = libusb_control_transfer(uh.devh, + LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_STANDARD | LIBUSB_RECIPIENT_DEVICE, + LIBUSB_REQUEST_GET_DESCRIPTOR, (LIBUSB_DT_STRING << 8) | desc.iSerialNumber, + languages[i], (uint8_t *)buffer, sizeof(buffer), 0); + + if (r > 0) { /* converting serial */ + int j = 0; + r /= 2; + + for (j = 1; j < r; ++j) + serial[j - 1] = buffer[j]; + + serial[j - 1] = '\0'; + break; /* languagesCount cycle */ + } + } + + if (register_device(&uh, serial) == 0) { + D("check_device(): Failed to register device"); + goto fail_interface; + } + + libusb_ref_device(dev); + } + } + + return; + +fail_interface: + libusb_release_interface(uh.devh, uh.interface); + +fail: + libusb_close(uh.devh); + uh.devh = NULL; +} + +static int +check_device_connected(usb_handle *uh) +{ + int r = libusb_kernel_driver_active(uh->devh, uh->interface); + + if (r == LIBUSB_ERROR_NO_DEVICE) + return 0; + + if (r < 0) + return -1; + + return 1; +} + +static void +kick_disconnected() +{ + usb_handle *usb = NULL; + + adb_mutex_lock(&usb_lock); + + for (usb = handle_list.next; usb != &handle_list; usb = usb->next) { + if (check_device_connected(usb) == 0) { + D("kick_disconnected(): Transport %p is not online anymore", + usb); + + usb_kick(usb); + } + } + + adb_mutex_unlock(&usb_lock); +} + +static void +scan_usb_devices() +{ + D("scan_usb_devices(): started"); + + libusb_device **devs= NULL; + libusb_device *dev= NULL; + ssize_t cnt = libusb_get_device_list(ctx, &devs); + + if (cnt < 0) { + D("scan_usb_devices(): Failed to get device list (error: %zd)", + cnt); + + return; + } + + int i = 0; + + while ((dev = devs[i++]) != NULL) { + check_device(dev); + } + + libusb_free_device_list(devs, 1); +} + +static void * +device_poll_thread(void* unused) +{ + D("device_poll_thread(): Created USB scan thread"); + + for (;;) { + sleep(5); + kick_disconnected(); + scan_usb_devices(); + } + + /* never reaching this point */ + return (NULL); +} + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Fri Oct 9 16:58:00 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 322D09D2EA5; Fri, 9 Oct 2015 16:58:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6A5C875; Fri, 9 Oct 2015 16:57:59 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99GvxU5029717; Fri, 9 Oct 2015 16:57:59 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99GvwYt029713; Fri, 9 Oct 2015 16:57:58 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510091657.t99GvwYt029713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 16:57:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398925 - in head/devel/lua-posix: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 16:58:00 -0000 Author: marino Date: Fri Oct 9 16:57:58 2015 New Revision: 398925 URL: https://svnweb.freebsd.org/changeset/ports/398925 Log: devel/lua-posix: upgrade version 31 => 33.3.1 PR filtered for unnecessarily changes and other minor corrections. Also sed command was modified to support DragonFly PR: 200299 Submitted by: ports fury Added: head/devel/lua-posix/files/patch-ext__posix__unistd.c (contents, props changed) Deleted: head/devel/lua-posix/files/patch-ext__posix__posix.c Modified: head/devel/lua-posix/Makefile head/devel/lua-posix/distinfo head/devel/lua-posix/pkg-descr Modified: head/devel/lua-posix/Makefile ============================================================================== --- head/devel/lua-posix/Makefile Fri Oct 9 15:25:55 2015 (r398924) +++ head/devel/lua-posix/Makefile Fri Oct 9 16:57:58 2015 (r398925) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= posix -PORTVERSION= 31 +PORTVERSION= 33.3.1 DISTVERSIONPREFIX= release-v -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} @@ -13,33 +12,36 @@ COMMENT= POSIX layer for Lua LICENSE= MIT -USES= lua perl5 +USES= lua libtool perl5 USE_PERL5= build GNU_CONFIGURE= yes -CONFIGURE_ENV= LUA_INCLUDE=-I${LUA_INCDIR} \ - LUA=${LOCALBASE}/bin/lua${LUA_VER_STR} +CONFIGURE_ENV= LUA_INCLUDE="-I${LUA_INCDIR}" \ + LUA="${LOCALBASE}/bin/lua${LUA_VER_STR}" +CONFIGURE_ARGS= --disable-silent-rules +MAKE_ARGS= POSIX_EXTRA_CFLAGS="" POSIX_EXTRA_LDFLAGS="" +INSTALL_TARGET= install-strip +PORTDOCS= * USE_GITHUB= yes GH_PROJECT= luaposix GH_ACCOUNT= luaposix -MAKE_ARGS= POSIX_EXTRA_CFLAGS="" POSIX_EXTRA_LDFLAGS="" - -PLIST_FILES= %%LUA_MODSHAREDIR%%/curses.lua \ - %%LUA_MODLIBDIR%%/curses_c.so \ - %%LUA_MODSHAREDIR%%/posix.lua \ - %%LUA_MODLIBDIR%%/posix_c.so - -PORTDOCS= * +DOCSDIR= ${PREFIX}/share/doc/luaposix -do-install: - @${MKDIR} ${STAGEDIR}${LUA_MODLIBDIR} - ${INSTALL_LIB} ${WRKSRC}/ext/posix/.libs/posix_c.so ${STAGEDIR}${LUA_MODLIBDIR}/ - ${INSTALL_LIB} ${WRKSRC}/ext/curses/.libs/curses_c.so ${STAGEDIR}${LUA_MODLIBDIR}/ - @${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/lib/curses.lua ${STAGEDIR}${LUA_MODSHAREDIR}/ - ${INSTALL_SCRIPT} ${WRKSRC}/lib/posix.lua ${STAGEDIR}${LUA_MODSHAREDIR}/ - @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc ; ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} +PLIST_FILES= %%LUA_MODLIBDIR%%/posix.so \ + %%LUA_MODSHAREDIR%%/curses.lua \ + %%LUA_MODSHAREDIR%%/posix/_argcheck.lua \ + %%LUA_MODSHAREDIR%%/posix/compat.lua \ + %%LUA_MODSHAREDIR%%/posix/deprecated.lua \ + %%LUA_MODSHAREDIR%%/posix/init.lua \ + %%LUA_MODSHAREDIR%%/posix/sys.lua \ + %%LUA_MODSHAREDIR%%/posix/util.lua + +OPTIONS_DEFINE= DOCS + +post-patch: + @${REINPLACE_CMD} -e \ + 's|\(\*\|\)\(openbsd\*)\)|\1freebsd*\|dragonfly*\|\2| ; \ + s|"GNU strip"|"strip"|' ${WRKSRC}/configure .include Modified: head/devel/lua-posix/distinfo ============================================================================== --- head/devel/lua-posix/distinfo Fri Oct 9 15:25:55 2015 (r398924) +++ head/devel/lua-posix/distinfo Fri Oct 9 16:57:58 2015 (r398925) @@ -1,2 +1,2 @@ -SHA256 (luaposix-luaposix-release-v31_GH0.tar.gz) = c5ed2f6c16b9f31d3ca0db05f9b660db69c966baab244878480ab6658abbbe24 -SIZE (luaposix-luaposix-release-v31_GH0.tar.gz) = 528979 +SHA256 (luaposix-luaposix-release-v33.3.1_GH0.tar.gz) = 49e1eda64d0c03d0f2977fc1e04ce8c620dc3bb9a5c54c342904751d21b1b3cf +SIZE (luaposix-luaposix-release-v33.3.1_GH0.tar.gz) = 692452 Added: head/devel/lua-posix/files/patch-ext__posix__unistd.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/lua-posix/files/patch-ext__posix__unistd.c Fri Oct 9 16:57:58 2015 (r398925) @@ -0,0 +1,30 @@ +--- ext/posix/unistd.c.orig 2015-03-01 18:26:42 UTC ++++ ext/posix/unistd.c +@@ -326,6 +326,7 @@ Pexecp(lua_State *L) + } + + ++#if 0 + #if LPOSIX_2001_COMPLIANT + + #if !HAVE_DECL_FDATASYNC +@@ -350,6 +351,7 @@ Pfdatasync(lua_State *L) + return pushresult(L, fdatasync(fd), NULL); + } + #endif ++#endif + + + /*** +@@ -1032,9 +1034,11 @@ static const luaL_Reg posix_unistd_fns[] + LPOSIX_FUNC( Pdup2 ), + LPOSIX_FUNC( Pexec ), + LPOSIX_FUNC( Pexecp ), ++#if 0 + #if LPOSIX_2001_COMPLIANT + LPOSIX_FUNC( Pfdatasync ), + #endif ++#endif + LPOSIX_FUNC( Pfork ), + LPOSIX_FUNC( Pfsync ), + LPOSIX_FUNC( Pgetcwd ), Modified: head/devel/lua-posix/pkg-descr ============================================================================== --- head/devel/lua-posix/pkg-descr Fri Oct 9 15:25:55 2015 (r398924) +++ head/devel/lua-posix/pkg-descr Fri Oct 9 16:57:58 2015 (r398925) @@ -1 +1,3 @@ LuaPosix is a Lua extension library that provides support for POSIX. + +WWW: http://luaposix.github.io/luaposix From owner-svn-ports-head@freebsd.org Fri Oct 9 17:31:34 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 E78039D2702; Fri, 9 Oct 2015 17:31:33 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1A7FE63; Fri, 9 Oct 2015 17:31:33 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99HVW7g041248; Fri, 9 Oct 2015 17:31:32 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99HVWRr041245; Fri, 9 Oct 2015 17:31:32 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201510091731.t99HVWRr041245@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 9 Oct 2015 17:31:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398926 - in head/graphics/appleseed: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 17:31:34 -0000 Author: danfe Date: Fri Oct 9 17:31:32 2015 New Revision: 398926 URL: https://svnweb.freebsd.org/changeset/ports/398926 Log: Now that required supporting ports were fixed (r398753) and added to the tree (r398907), allow to build with the Open Shading Language and Disney material support and enable these features by default. While here, drop useless USE_GL knob (implied by USE_QT4=opengl). Added: head/graphics/appleseed/files/patch-src_appleseed_CMakeLists.txt (contents, props changed) Modified: head/graphics/appleseed/Makefile head/graphics/appleseed/pkg-plist Modified: head/graphics/appleseed/Makefile ============================================================================== --- head/graphics/appleseed/Makefile Fri Oct 9 16:57:58 2015 (r398925) +++ head/graphics/appleseed/Makefile Fri Oct 9 17:31:32 2015 (r398926) @@ -3,7 +3,7 @@ PORTNAME= appleseed DISTVERSION= 1.2.0-beta -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= danfe@FreeBSD.org @@ -23,14 +23,14 @@ ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= uses SSE instructions USES= cmake:outsource -USE_GL= gl USE_QT4= moc_build qmake_build rcc_build uic_build opengl -CMAKE_ARGS= -DUSE_STATIC_BOOST:BOOL=OFF -DWITH_DOXYGEN:BOOL=OFF \ - -DWITH_TESTS:BOOL=OFF -DWITH_HEADERS:BOOL=OFF \ - -DWITH_PYTHON:BOOL=OFF +CMAKE_ARGS= -DUSE_STATIC_BOOST:BOOL=OFF -DUSE_STATIC_OIIO:BOOL=OFF \ + -DUSE_STATIC_OSL:BOOL=OFF -DWITH_DOXYGEN:BOOL=OFF \ + -DWITH_HEADERS:BOOL=OFF -DWITH_PYTHON:BOOL=OFF \ + -DWITH_TESTS:BOOL=OFF -.for lib in ZLIB PNG EXR XERCES +.for lib in EXR OIIO OSL PNG SEEXPR XERCES ZLIB CMAKE_ARGS+= -DUSE_EXTERNAL_${lib}:BOOL=ON .endfor @@ -41,6 +41,20 @@ PLIST_SUB= APPHOME=${CMAKE_INSTALL_PREFI SUB_FILES= pkg-message SUB_LIST:= ${PLIST_SUB} +OPTIONS_DEFINE= OSL DISNEY_MATERIAL +OPTIONS_DEFAULT= OSL DISNEY_MATERIAL +OPTIONS_SUB= yes + +OSL_DESC= Open Shading Language support +DISNEY_MATERIAL_DESC= Disney material support + +OSL_CMAKE_ON= -DWITH_OSL:BOOL=ON +OSL_LIB_DEPENDS= liboslexec.so:${PORTSDIR}/graphics/openshadinglanguage + +DISNEY_MATERIAL_CMAKE_ON= -DWITH_DISNEY_MATERIAL:BOOL=ON +DISNEY_MATERIAL_LIB_DEPENDS= libOpenImageIO.so:${PORTSDIR}/graphics/openimageio \ + libSeExprEditor.so:${PORTSDIR}/graphics/seexpr + post-patch: @${REINPLACE_CMD} -e 's,Linux,${OPSYS},' \ ${WRKSRC}/src/appleseed.cli/CMakeLists.txt \ Added: head/graphics/appleseed/files/patch-src_appleseed_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/appleseed/files/patch-src_appleseed_CMakeLists.txt Fri Oct 9 17:31:32 2015 (r398926) @@ -0,0 +1,18 @@ +--- src/appleseed/CMakeLists.txt.orig 2015-06-13 09:38:53 UTC ++++ src/appleseed/CMakeLists.txt +@@ -1082,10 +1082,14 @@ set (renderer_kernel_rendering_sources + renderer/kernel/rendering/timedrenderercontroller.cpp + renderer/kernel/rendering/timedrenderercontroller.h + ) +-if (WITH_OSL) ++if (WITH_OSL OR WITH_DISNEY_MATERIAL) + list (APPEND renderer_kernel_rendering_sources + renderer/kernel/rendering/oiioerrorhandler.cpp + renderer/kernel/rendering/oiioerrorhandler.h ++ ) ++endif () ++if (WITH_OSL) ++ list (APPEND renderer_kernel_rendering_sources + renderer/kernel/rendering/rendererservices.cpp + renderer/kernel/rendering/rendererservices.h + ) Modified: head/graphics/appleseed/pkg-plist ============================================================================== --- head/graphics/appleseed/pkg-plist Fri Oct 9 16:57:58 2015 (r398925) +++ head/graphics/appleseed/pkg-plist Fri Oct 9 17:31:32 2015 (r398926) @@ -7,6 +7,9 @@ bin/convertmany.py bin/convertmeshfile bin/dumpmetadata bin/makefluffy +%%OSL%%bin/maketx +%%OSL%%bin/oslc +%%OSL%%bin/oslinfo bin/rendermanager.py bin/rendermany.py bin/rendernode.py @@ -49,4 +52,129 @@ seexpr/noise/noise.se seexpr/noise/turbulence.se settings/appleseed.cli.xml settings/appleseed.studio.xml +%%OSL%%shaders/README.md +%%OSL%%shaders/color/as_blackbody.oso +%%OSL%%shaders/color/as_color_add.oso +%%OSL%%shaders/color/as_color_build.oso +%%OSL%%shaders/color/as_color_mix.oso +%%OSL%%shaders/color/as_color_multiply.oso +%%OSL%%shaders/color/as_color_saturation.oso +%%OSL%%shaders/color/as_color_split.oso +%%OSL%%shaders/color/as_luminance.oso +%%OSL%%shaders/color/as_wavelength.oso +%%OSL%%shaders/emission/as_emission.oso +%%OSL%%shaders/float/as_float_add.oso +%%OSL%%shaders/float/as_float_mix.oso +%%OSL%%shaders/float/as_float_multiply.oso +%%OSL%%shaders/float/as_float_pow.oso +%%OSL%%shaders/float/as_float_remap.oso +%%OSL%%shaders/fresnel/as_fresnel.oso +%%OSL%%shaders/input/as_globals.oso +%%OSL%%shaders/input/as_input.oso +%%OSL%%shaders/input/as_object_input.oso +%%OSL%%shaders/input/as_ray_info.oso +%%OSL%%shaders/material/as_disney_material.oso +%%OSL%%shaders/material/as_glass_material.oso +%%OSL%%shaders/material/as_material_builder.oso +%%OSL%%shaders/normal/as_bump_map.oso +%%OSL%%shaders/normal/as_faceforward.oso +%%OSL%%shaders/normal/as_normal_map.oso +%%OSL%%shaders/oslutil.h +%%OSL%%shaders/src/color/as_blackbody.osl +%%OSL%%shaders/src/color/as_color_add.osl +%%OSL%%shaders/src/color/as_color_build.osl +%%OSL%%shaders/src/color/as_color_mix.osl +%%OSL%%shaders/src/color/as_color_multiply.osl +%%OSL%%shaders/src/color/as_color_saturation.osl +%%OSL%%shaders/src/color/as_color_split.osl +%%OSL%%shaders/src/color/as_luminance.osl +%%OSL%%shaders/src/color/as_wavelength.osl +%%OSL%%shaders/src/compile_shaders.py +%%OSL%%shaders/src/emission/as_emission.osl +%%OSL%%shaders/src/float/as_float_add.osl +%%OSL%%shaders/src/float/as_float_mix.osl +%%OSL%%shaders/src/float/as_float_multiply.osl +%%OSL%%shaders/src/float/as_float_pow.osl +%%OSL%%shaders/src/float/as_float_remap.osl +%%OSL%%shaders/src/fresnel/as_fresnel.osl +%%OSL%%shaders/src/include/appleseed/color.h +%%OSL%%shaders/src/include/appleseed/defaults.h +%%OSL%%shaders/src/include/appleseed/fresnel.h +%%OSL%%shaders/src/include/appleseed/ior.h +%%OSL%%shaders/src/include/appleseed/metadata.h +%%OSL%%shaders/src/include/appleseed/microfacet.h +%%OSL%%shaders/src/include/appleseed/noise.h +%%OSL%%shaders/src/include/appleseed/texture.h +%%OSL%%shaders/src/include/appleseed/transform.h +%%OSL%%shaders/src/input/as_globals.osl +%%OSL%%shaders/src/input/as_input.osl +%%OSL%%shaders/src/input/as_object_input.osl +%%OSL%%shaders/src/input/as_ray_info.osl +%%OSL%%shaders/src/material/as_disney_material.osl +%%OSL%%shaders/src/material/as_glass_material.osl +%%OSL%%shaders/src/material/as_material_builder.osl +%%OSL%%shaders/src/normal/as_bump_map.osl +%%OSL%%shaders/src/normal/as_faceforward.osl +%%OSL%%shaders/src/normal/as_normal_map.osl +%%OSL%%shaders/src/surface/as_diffuse_surface.osl +%%OSL%%shaders/src/surface/as_glossy_surface.osl +%%OSL%%shaders/src/surface/as_metal_surface.osl +%%OSL%%shaders/src/surface/as_surface_add.osl +%%OSL%%shaders/src/surface/as_surface_mix.osl +%%OSL%%shaders/src/surface/as_surface_multiply.osl +%%OSL%%shaders/src/surface/as_surface_switch.osl +%%OSL%%shaders/src/surface/as_translucent_surface.osl +%%OSL%%shaders/src/texture2d/as_color_texture.osl +%%OSL%%shaders/src/texture2d/as_noise2d.osl +%%OSL%%shaders/src/texture2d/as_scalar_texture.osl +%%OSL%%shaders/src/texture3d/as_noise3d.osl +%%OSL%%shaders/src/texture3d/as_noise4d.osl +%%OSL%%shaders/src/transform/as_map2d.osl +%%OSL%%shaders/src/transform/as_map3d.osl +%%OSL%%shaders/src/transform/as_transform.osl +%%OSL%%shaders/src/transparency/as_transparency.osl +%%OSL%%shaders/src/utility/as_absorption.osl +%%OSL%%shaders/src/utility/as_condition.osl +%%OSL%%shaders/src/utility/as_facing_ratio.osl +%%OSL%%shaders/src/vector/as_anisotropy_dir.osl +%%OSL%%shaders/src/vector/as_vector_add.osl +%%OSL%%shaders/src/vector/as_vector_binormal.osl +%%OSL%%shaders/src/vector/as_vector_build.osl +%%OSL%%shaders/src/vector/as_vector_cross.osl +%%OSL%%shaders/src/vector/as_vector_dot.osl +%%OSL%%shaders/src/vector/as_vector_mix.osl +%%OSL%%shaders/src/vector/as_vector_multiply.osl +%%OSL%%shaders/src/vector/as_vector_normalize.osl +%%OSL%%shaders/src/vector/as_vector_split.osl +%%OSL%%shaders/stdosl.h +%%OSL%%shaders/surface/as_diffuse_surface.oso +%%OSL%%shaders/surface/as_glossy_surface.oso +%%OSL%%shaders/surface/as_metal_surface.oso +%%OSL%%shaders/surface/as_surface_add.oso +%%OSL%%shaders/surface/as_surface_mix.oso +%%OSL%%shaders/surface/as_surface_multiply.oso +%%OSL%%shaders/surface/as_surface_switch.oso +%%OSL%%shaders/surface/as_translucent_surface.oso +%%OSL%%shaders/texture2d/as_color_texture.oso +%%OSL%%shaders/texture2d/as_noise2d.oso +%%OSL%%shaders/texture2d/as_scalar_texture.oso +%%OSL%%shaders/texture3d/as_noise3d.oso +%%OSL%%shaders/texture3d/as_noise4d.oso +%%OSL%%shaders/transform/as_map2d.oso +%%OSL%%shaders/transform/as_map3d.oso +%%OSL%%shaders/transform/as_transform.oso +%%OSL%%shaders/transparency/as_transparency.oso +%%OSL%%shaders/utility/as_absorption.oso +%%OSL%%shaders/utility/as_condition.oso +%%OSL%%shaders/utility/as_facing_ratio.oso +%%OSL%%shaders/vector/as_anisotropy_dir.oso +%%OSL%%shaders/vector/as_vector_add.oso +%%OSL%%shaders/vector/as_vector_binormal.oso +%%OSL%%shaders/vector/as_vector_build.oso +%%OSL%%shaders/vector/as_vector_cross.oso +%%OSL%%shaders/vector/as_vector_dot.oso +%%OSL%%shaders/vector/as_vector_mix.oso +%%OSL%%shaders/vector/as_vector_multiply.oso +%%OSL%%shaders/vector/as_vector_normalize.oso +%%OSL%%shaders/vector/as_vector_split.oso stylesheets/default.qss From owner-svn-ports-head@freebsd.org Fri Oct 9 18:00:46 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 2DF639D1869; Fri, 9 Oct 2015 18:00:46 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D363D1144; Fri, 9 Oct 2015 18:00:45 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99I0iFj049421; Fri, 9 Oct 2015 18:00:44 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99I0iRY049419; Fri, 9 Oct 2015 18:00:44 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201510091800.t99I0iRY049419@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 9 Oct 2015 18:00:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398927 - in head/Mk: . Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:00:46 -0000 Author: bdrewery Date: Fri Oct 9 18:00:44 2015 New Revision: 398927 URL: https://svnweb.freebsd.org/changeset/ports/398927 Log: Unify depends-list.sh and all-depends-list.sh into one script, depends-list.sh. With hat: portmgr Deleted: head/Mk/Scripts/all-depends-list.sh Modified: head/Mk/Scripts/depends-list.sh head/Mk/bsd.port.mk Modified: head/Mk/Scripts/depends-list.sh ============================================================================== --- head/Mk/Scripts/depends-list.sh Fri Oct 9 17:31:32 2015 (r398926) +++ head/Mk/Scripts/depends-list.sh Fri Oct 9 18:00:44 2015 (r398927) @@ -6,7 +6,21 @@ set -e . ${dp_SCRIPTSDIR}/functions.sh +recursive=0 +while getopts "r" FLAG; do + case "${FLAG}" in + r) + recursive=1 + ;; + *) + echo "Unknown flag" >&2 + exit 1 + ;; + esac +done + validate_env dp_ALLDEPENDS dp_PORTSDIR dp_PKGNAME +[ ${recursive} -eq 1 ] && validate_env dp_MAKE set -u @@ -31,6 +45,9 @@ check_dep() { continue fi echo ${d} + if [ ${recursive} -eq 1 ]; then + check_dep $(${dp_MAKE} -C ${d} -V_UNIFIED_DEPENDS) + fi done } Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Fri Oct 9 17:31:32 2015 (r398926) +++ head/Mk/bsd.port.mk Fri Oct 9 18:00:44 2015 (r398927) @@ -4369,7 +4369,7 @@ ALL-DEPENDS-LIST= \ dp_MAKE="${MAKE}" \ dp_PKGNAME="${PKGNAME}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ - ${SH} ${SCRIPTSDIR}/all-depends-list.sh + ${SH} ${SCRIPTSDIR}/depends-list.sh -r CLEAN-DEPENDS-LIST= \ ${SETENV} dp_ALLDEPENDS="${_UNIFIED_DEPENDS}" \ From owner-svn-ports-head@freebsd.org Fri Oct 9 18:09:03 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 704099D1E67; Fri, 9 Oct 2015 18:09:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C6DD1878; Fri, 9 Oct 2015 18:09:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99I9202050387; Fri, 9 Oct 2015 18:09:02 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99I922Z050386; Fri, 9 Oct 2015 18:09:02 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201510091809.t99I922Z050386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 9 Oct 2015 18:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398928 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:09:03 -0000 Author: bdrewery Date: Fri Oct 9 18:09:02 2015 New Revision: 398928 URL: https://svnweb.freebsd.org/changeset/ports/398928 Log: Shift any arguments eaten up from getopts. This script takes no arguments yet. With hat: portmgr Modified: head/Mk/Scripts/depends-list.sh Modified: head/Mk/Scripts/depends-list.sh ============================================================================== --- head/Mk/Scripts/depends-list.sh Fri Oct 9 18:00:44 2015 (r398927) +++ head/Mk/Scripts/depends-list.sh Fri Oct 9 18:09:02 2015 (r398928) @@ -18,6 +18,7 @@ while getopts "r" FLAG; do ;; esac done +shift $((OPTIND-1)) validate_env dp_ALLDEPENDS dp_PORTSDIR dp_PKGNAME [ ${recursive} -eq 1 ] && validate_env dp_MAKE From owner-svn-ports-head@freebsd.org Fri Oct 9 18:13:59 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 524FB9D2326; Fri, 9 Oct 2015 18:13:59 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 196031E4A; Fri, 9 Oct 2015 18:13:59 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IDwn0053173; Fri, 9 Oct 2015 18:13:58 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IDwgx053172; Fri, 9 Oct 2015 18:13:58 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201510091813.t99IDwgx053172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 9 Oct 2015 18:13:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398929 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:13:59 -0000 Author: bdrewery Date: Fri Oct 9 18:13:57 2015 New Revision: 398929 URL: https://svnweb.freebsd.org/changeset/ports/398929 Log: Make missing argument less obscure. With hat: portmgr Modified: head/Mk/Scripts/clean-depends-list.sh Modified: head/Mk/Scripts/clean-depends-list.sh ============================================================================== --- head/Mk/Scripts/clean-depends-list.sh Fri Oct 9 18:09:02 2015 (r398928) +++ head/Mk/Scripts/clean-depends-list.sh Fri Oct 9 18:13:57 2015 (r398929) @@ -6,14 +6,15 @@ set -e validate_env dp_PKGNAME dp_MAKE dp_PORTSDIR -set -u arg=$1 -shift -if [ "${arg}" != "full" -a "${arg}" != "limited" ]; then - echo "the first argument can only be 'full' or 'limited'" >&2 +if [ -z "${arg}" ] || [ "${arg}" != "full" -a "${arg}" != "limited" ]; then + echo "The first argument can only be 'full' or 'limited'" >&2 exit 1 fi +shift + +set -u check_dep() { for _dep ; do From owner-svn-ports-head@freebsd.org Fri Oct 9 18:20: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 366549D266A; Fri, 9 Oct 2015 18:20:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02C921C9; Fri, 9 Oct 2015 18:20:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IKivi053494; Fri, 9 Oct 2015 18:20:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IKiCD053493; Fri, 9 Oct 2015 18:20:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510091820.t99IKiCD053493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 9 Oct 2015 18:20:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398930 - head/games/ioquake3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:20:45 -0000 Author: amdmi3 Date: Fri Oct 9 18:20:43 2015 New Revision: 398930 URL: https://svnweb.freebsd.org/changeset/ports/398930 Log: - Fix duplicate plist entry in ioquake3-devel - Don't cat pkg-message from Makefile PR: 202974 Submitted by: amdmi3 Approved by: maintainer timeout (kamikaze@bsdforen.de, 1 month) Modified: head/games/ioquake3/Makefile Modified: head/games/ioquake3/Makefile ============================================================================== --- head/games/ioquake3/Makefile Fri Oct 9 18:13:57 2015 (r398929) +++ head/games/ioquake3/Makefile Fri Oct 9 18:20:43 2015 (r398930) @@ -221,7 +221,7 @@ PLIST_DIRS+= ${LIBDIR} .endif .if ${PORT_OPTIONS:MDOCS} PLIST_DIRS+= ${DOCSDIR} -. for doc in ${Q3DOCS} +. for doc in ${Q3DOCS:O:u} IOQ3_INST+= DATA;../../${doc};${DOCSDIR}/${doc} . endfor .endif @@ -241,11 +241,6 @@ do-install: ${Q3INSTALL} ${STAGEDIR}${PREFIX}/${inst:C/.*;//} .endfor -post-install: - @${JOT} -s '' -b= 78 - @${CAT} ${PKGMESSAGE} - @${JOT} -s '' -b= 78 - .if !defined(Q3TOTALCONV) .include "${.CURDIR}/../quake3-data/Makefile.include" .endif From owner-svn-ports-head@freebsd.org Fri Oct 9 18:31: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 95BD39D2E81; Fri, 9 Oct 2015 18:31:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70380F66; Fri, 9 Oct 2015 18:31:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IVflx059241; Fri, 9 Oct 2015 18:31:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IVf3i059238; Fri, 9 Oct 2015 18:31:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091831.t99IVf3i059238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:31:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398931 - head/ftp/curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:31:42 -0000 Author: sunpoet Date: Fri Oct 9 18:31:41 2015 New Revision: 398931 URL: https://svnweb.freebsd.org/changeset/ports/398931 Log: - Update to 7.45.0 - Add LICENSE_FILE Changes: http://curl.haxx.se/changes.html Modified: head/ftp/curl/Makefile head/ftp/curl/distinfo head/ftp/curl/pkg-plist Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Fri Oct 9 18:20:43 2015 (r398930) +++ head/ftp/curl/Makefile Fri Oct 9 18:31:41 2015 (r398931) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.44.0 +PORTVERSION= 7.45.0 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -11,6 +11,7 @@ MAINTAINER?= sunpoet@FreeBSD.org COMMENT?= Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= CA_BUNDLE COOKIES CURL_DEBUG DEBUG DOCS EXAMPLES HTTP2 IDN IPV6 LDAP LDAPS LIBSSH2 PROXY RTMP TLS_SRP OPTIONS_RADIO= RESOLV SSL Modified: head/ftp/curl/distinfo ============================================================================== --- head/ftp/curl/distinfo Fri Oct 9 18:20:43 2015 (r398930) +++ head/ftp/curl/distinfo Fri Oct 9 18:31:41 2015 (r398931) @@ -1,2 +1,2 @@ -SHA256 (curl-7.44.0.tar.lzma) = e7aab6b92fb30f88f9150090f6fa04f1e4358809ca8642d4e79cd79db652563e -SIZE (curl-7.44.0.tar.lzma) = 2792083 +SHA256 (curl-7.45.0.tar.lzma) = 96cd9711d8f38fa6f99af085a67ad1e0ebca339f2a9a00a2aa59c40a66c4552d +SIZE (curl-7.45.0.tar.lzma) = 2849335 Modified: head/ftp/curl/pkg-plist ============================================================================== --- head/ftp/curl/pkg-plist Fri Oct 9 18:20:43 2015 (r398930) +++ head/ftp/curl/pkg-plist Fri Oct 9 18:31:41 2015 (r398931) @@ -17,6 +17,50 @@ lib/libcurl.so.7 libdata/pkgconfig/libcurl.pc man/man1/curl-config.1.gz man/man1/curl.1.gz +man/man3/CURLINFO_ACTIVESOCKET.3.gz +man/man3/CURLINFO_APPCONNECT_TIME.3.gz +man/man3/CURLINFO_CERTINFO.3.gz +man/man3/CURLINFO_CONDITION_UNMET.3.gz +man/man3/CURLINFO_CONNECT_TIME.3.gz +man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3.gz +man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD.3.gz +man/man3/CURLINFO_CONTENT_TYPE.3.gz +man/man3/CURLINFO_COOKIELIST.3.gz +man/man3/CURLINFO_EFFECTIVE_URL.3.gz +man/man3/CURLINFO_FILETIME.3.gz +man/man3/CURLINFO_FTP_ENTRY_PATH.3.gz +man/man3/CURLINFO_HEADER_SIZE.3.gz +man/man3/CURLINFO_HTTPAUTH_AVAIL.3.gz +man/man3/CURLINFO_HTTP_CONNECTCODE.3.gz +man/man3/CURLINFO_LASTSOCKET.3.gz +man/man3/CURLINFO_LOCAL_IP.3.gz +man/man3/CURLINFO_LOCAL_PORT.3.gz +man/man3/CURLINFO_NAMELOOKUP_TIME.3.gz +man/man3/CURLINFO_NUM_CONNECTS.3.gz +man/man3/CURLINFO_OS_ERRNO.3.gz +man/man3/CURLINFO_PRETRANSFER_TIME.3.gz +man/man3/CURLINFO_PRIMARY_IP.3.gz +man/man3/CURLINFO_PRIMARY_PORT.3.gz +man/man3/CURLINFO_PRIVATE.3.gz +man/man3/CURLINFO_PROXYAUTH_AVAIL.3.gz +man/man3/CURLINFO_REDIRECT_COUNT.3.gz +man/man3/CURLINFO_REDIRECT_TIME.3.gz +man/man3/CURLINFO_REDIRECT_URL.3.gz +man/man3/CURLINFO_REQUEST_SIZE.3.gz +man/man3/CURLINFO_RESPONSE_CODE.3.gz +man/man3/CURLINFO_RTSP_CLIENT_CSEQ.3.gz +man/man3/CURLINFO_RTSP_CSEQ_RECV.3.gz +man/man3/CURLINFO_RTSP_SERVER_CSEQ.3.gz +man/man3/CURLINFO_RTSP_SESSION_ID.3.gz +man/man3/CURLINFO_SIZE_DOWNLOAD.3.gz +man/man3/CURLINFO_SIZE_UPLOAD.3.gz +man/man3/CURLINFO_SPEED_DOWNLOAD.3.gz +man/man3/CURLINFO_SPEED_UPLOAD.3.gz +man/man3/CURLINFO_SSL_ENGINES.3.gz +man/man3/CURLINFO_SSL_VERIFYRESULT.3.gz +man/man3/CURLINFO_STARTTRANSFER_TIME.3.gz +man/man3/CURLINFO_TLS_SESSION.3.gz +man/man3/CURLINFO_TOTAL_TIME.3.gz man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz man/man3/CURLMOPT_MAXCONNECTS.3.gz @@ -63,6 +107,7 @@ man/man3/CURLOPT_CRLFILE.3.gz man/man3/CURLOPT_CUSTOMREQUEST.3.gz man/man3/CURLOPT_DEBUGDATA.3.gz man/man3/CURLOPT_DEBUGFUNCTION.3.gz +man/man3/CURLOPT_DEFAULT_PROTOCOL.3.gz man/man3/CURLOPT_DIRLISTONLY.3.gz man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3.gz man/man3/CURLOPT_DNS_INTERFACE.3.gz From owner-svn-ports-head@freebsd.org Fri Oct 9 18:31: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 69C789D2EAB; Fri, 9 Oct 2015 18:31:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3841AF9E; Fri, 9 Oct 2015 18:31:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IVkcL059341; Fri, 9 Oct 2015 18:31:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IVkdh059340; Fri, 9 Oct 2015 18:31:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091831.t99IVkdh059340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:31:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398932 - head/devel/p5-Devel-MAT X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:31:47 -0000 Author: sunpoet Date: Fri Oct 9 18:31:46 2015 New Revision: 398932 URL: https://svnweb.freebsd.org/changeset/ports/398932 Log: - Update BROKEN: use lowercase and add CPAN ticket link - Do not silence installation message Modified: head/devel/p5-Devel-MAT/Makefile Modified: head/devel/p5-Devel-MAT/Makefile ============================================================================== --- head/devel/p5-Devel-MAT/Makefile Fri Oct 9 18:31:41 2015 (r398931) +++ head/devel/p5-Devel-MAT/Makefile Fri Oct 9 18:31:46 2015 (r398932) @@ -35,10 +35,10 @@ RUN_DEPENDS+= p5-Module-Pluggable>=0:${P .endif .if ${PERL_LEVEL} >= 502200 -BROKEN= Fails to build with Perl >= 5.22 +BROKEN= fails to build with Perl 5.22 or above, see https://rt.cpan.org/Public/Bug/Display.html?id=100458 for further information .endif post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Devel/MAT/Dumper/Dumper.so ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Devel/MAT/MAT.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Devel/MAT/Dumper/Dumper.so ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Devel/MAT/MAT.so .include From owner-svn-ports-head@freebsd.org Fri Oct 9 18:31:52 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 B31189D2EE4; Fri, 9 Oct 2015 18:31:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54109D2; Fri, 9 Oct 2015 18:31:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IVpCh059476; Fri, 9 Oct 2015 18:31:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IVpen059473; Fri, 9 Oct 2015 18:31:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091831.t99IVpen059473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:31:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398933 - in head/sysutils/rubygem-backup: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:31:52 -0000 Author: sunpoet Date: Fri Oct 9 18:31:50 2015 New Revision: 398933 URL: https://svnweb.freebsd.org/changeset/ports/398933 Log: - Update to 4.2.1 Changes: http://backup.github.io/backup/v4/release-notes/ https://github.com/backup/backup/commits/master Modified: head/sysutils/rubygem-backup/Makefile head/sysutils/rubygem-backup/distinfo head/sysutils/rubygem-backup/files/patch-gemspec Modified: head/sysutils/rubygem-backup/Makefile ============================================================================== --- head/sysutils/rubygem-backup/Makefile Fri Oct 9 18:31:46 2015 (r398932) +++ head/sysutils/rubygem-backup/Makefile Fri Oct 9 18:31:50 2015 (r398933) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= backup -PORTVERSION= 4.2.0 +PORTVERSION= 4.2.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-backup/distinfo ============================================================================== --- head/sysutils/rubygem-backup/distinfo Fri Oct 9 18:31:46 2015 (r398932) +++ head/sysutils/rubygem-backup/distinfo Fri Oct 9 18:31:50 2015 (r398933) @@ -1,2 +1,2 @@ -SHA256 (rubygem/backup-4.2.0.gem) = 6f927531da63c6ae4fcfafcaa4b18a94ea8f50ce3a50e70acdffabeae62336b5 -SIZE (rubygem/backup-4.2.0.gem) = 83456 +SHA256 (rubygem/backup-4.2.1.gem) = 79f40008e2e1bbe0c366e51edf4002fa25528031962ab227cf2943c3ae19ec54 +SIZE (rubygem/backup-4.2.1.gem) = 83968 Modified: head/sysutils/rubygem-backup/files/patch-gemspec ============================================================================== --- head/sysutils/rubygem-backup/files/patch-gemspec Fri Oct 9 18:31:46 2015 (r398932) +++ head/sysutils/rubygem-backup/files/patch-gemspec Fri Oct 9 18:31:50 2015 (r398933) @@ -1,6 +1,6 @@ ---- backup.gemspec.orig 2015-07-13 16:50:18 UTC +--- backup.gemspec.orig 2015-10-09 08:09:21 UTC +++ backup.gemspec -@@ -24,68 +24,67 @@ Gem::Specification.new do |s| +@@ -23,68 +23,67 @@ Gem::Specification.new do |s| s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then From owner-svn-ports-head@freebsd.org Fri Oct 9 18:31:57 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 52A859D2FDC; Fri, 9 Oct 2015 18:31:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2008F1BE; Fri, 9 Oct 2015 18:31:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IVuDE059592; Fri, 9 Oct 2015 18:31:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IVuoL059590; Fri, 9 Oct 2015 18:31:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091831.t99IVuoL059590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:31:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398934 - head/devel/p5-File-Path X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:31:57 -0000 Author: sunpoet Date: Fri Oct 9 18:31:55 2015 New Revision: 398934 URL: https://svnweb.freebsd.org/changeset/ports/398934 Log: - Update to 2.12 Changes: http://search.cpan.org/dist/File-Path/Changes Modified: head/devel/p5-File-Path/Makefile head/devel/p5-File-Path/distinfo Modified: head/devel/p5-File-Path/Makefile ============================================================================== --- head/devel/p5-File-Path/Makefile Fri Oct 9 18:31:50 2015 (r398933) +++ head/devel/p5-File-Path/Makefile Fri Oct 9 18:31:55 2015 (r398934) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= File-Path -PORTVERSION= 2.11 +PORTVERSION= 2.12 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-File-Path/distinfo ============================================================================== --- head/devel/p5-File-Path/distinfo Fri Oct 9 18:31:50 2015 (r398933) +++ head/devel/p5-File-Path/distinfo Fri Oct 9 18:31:55 2015 (r398934) @@ -1,2 +1,2 @@ -SHA256 (File-Path-2.11.tar.gz) = d94492c072d08bdbbd40fd75a1010ff279e99333b63b4308b1f818fe6309dd0f -SIZE (File-Path-2.11.tar.gz) = 25194 +SHA256 (File-Path-2.12.tar.gz) = bbf61a0d37c135c694e80f4ea344932bdc5474c213025ae307ea52cb6886d17e +SIZE (File-Path-2.12.tar.gz) = 27469 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:02 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 D1EC49D105B; Fri, 9 Oct 2015 18:32:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1F5AD2FB; Fri, 9 Oct 2015 18:32:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IW1Fj059711; Fri, 9 Oct 2015 18:32:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IW16R059709; Fri, 9 Oct 2015 18:32:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IW16R059709@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398935 - head/devel/p5-Minion X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:02 -0000 Author: sunpoet Date: Fri Oct 9 18:32:00 2015 New Revision: 398935 URL: https://svnweb.freebsd.org/changeset/ports/398935 Log: - Update to 2.02 Changes: http://search.cpan.org/dist/Minion/Changes Modified: head/devel/p5-Minion/Makefile head/devel/p5-Minion/distinfo Modified: head/devel/p5-Minion/Makefile ============================================================================== --- head/devel/p5-Minion/Makefile Fri Oct 9 18:31:55 2015 (r398934) +++ head/devel/p5-Minion/Makefile Fri Oct 9 18:32:00 2015 (r398935) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Minion -PORTVERSION= 2.01 +PORTVERSION= 2.02 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/devel/p5-Minion/distinfo ============================================================================== --- head/devel/p5-Minion/distinfo Fri Oct 9 18:31:55 2015 (r398934) +++ head/devel/p5-Minion/distinfo Fri Oct 9 18:32:00 2015 (r398935) @@ -1,2 +1,2 @@ -SHA256 (Minion-2.01.tar.gz) = db41fe4951bc2055061a186105d0abe7680a0a717cefdb4c510d25b0fc8bc875 -SIZE (Minion-2.01.tar.gz) = 26715 +SHA256 (Minion-2.02.tar.gz) = d946a2f4155e31226d3349d957220d770c03539f5f3d72675bb81b4c8a7b931d +SIZE (Minion-2.02.tar.gz) = 26873 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:07 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 B17669D108A; Fri, 9 Oct 2015 18:32:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F4C63CB; Fri, 9 Oct 2015 18:32:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IW6bl059844; Fri, 9 Oct 2015 18:32:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IW6JJ059841; Fri, 9 Oct 2015 18:32:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IW6JJ059841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398936 - head/devel/p5-MooseX-Role-WithOverloading X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:07 -0000 Author: sunpoet Date: Fri Oct 9 18:32:06 2015 New Revision: 398936 URL: https://svnweb.freebsd.org/changeset/ports/398936 Log: - Update to 0.17 - Mark DEPRECATED Changes: http://search.cpan.org/dist/MooseX-Role-WithOverloading/Changes Modified: head/devel/p5-MooseX-Role-WithOverloading/Makefile head/devel/p5-MooseX-Role-WithOverloading/distinfo head/devel/p5-MooseX-Role-WithOverloading/pkg-plist Modified: head/devel/p5-MooseX-Role-WithOverloading/Makefile ============================================================================== --- head/devel/p5-MooseX-Role-WithOverloading/Makefile Fri Oct 9 18:32:00 2015 (r398935) +++ head/devel/p5-MooseX-Role-WithOverloading/Makefile Fri Oct 9 18:32:06 2015 (r398936) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MooseX-Role-WithOverloading -PORTVERSION= 0.16 +PORTVERSION= 0.17 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ETHER @@ -18,9 +18,11 @@ BUILD_DEPENDS= p5-Moose>=1.15:${PORTSDIR p5-MooseX-Types>=0:${PORTSDIR}/devel/p5-MooseX-Types \ p5-aliased>=0:${PORTSDIR}/devel/p5-aliased \ p5-namespace-autoclean>=0.16:${PORTSDIR}/devel/p5-namespace-autoclean \ - p5-namespace-clean>=0:${PORTSDIR}/devel/p5-namespace-clean + p5-namespace-clean>=0.19:${PORTSDIR}/devel/p5-namespace-clean RUN_DEPENDS:= ${BUILD_DEPENDS} +DEPRECATED= deprecated by upstream (obsolete with modern Moose) + USES= perl5 USE_PERL5= configure Modified: head/devel/p5-MooseX-Role-WithOverloading/distinfo ============================================================================== --- head/devel/p5-MooseX-Role-WithOverloading/distinfo Fri Oct 9 18:32:00 2015 (r398935) +++ head/devel/p5-MooseX-Role-WithOverloading/distinfo Fri Oct 9 18:32:06 2015 (r398936) @@ -1,2 +1,2 @@ -SHA256 (MooseX-Role-WithOverloading-0.16.tar.gz) = bb610bc0cecec8a59f15da9d483e9d7c628e54847a0a2460d79b901b0710da4d -SIZE (MooseX-Role-WithOverloading-0.16.tar.gz) = 30591 +SHA256 (MooseX-Role-WithOverloading-0.17.tar.gz) = 92b095d73f1220f9c2ed2d3aaa5ba072eb5aa2de209b7c455da5a8701b986865 +SIZE (MooseX-Role-WithOverloading-0.17.tar.gz) = 32308 Modified: head/devel/p5-MooseX-Role-WithOverloading/pkg-plist ============================================================================== --- head/devel/p5-MooseX-Role-WithOverloading/pkg-plist Fri Oct 9 18:32:00 2015 (r398935) +++ head/devel/p5-MooseX-Role-WithOverloading/pkg-plist Fri Oct 9 18:32:06 2015 (r398936) @@ -12,14 +12,4 @@ %%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Composite.pm %%SITE_ARCH%%/auto/MooseX/Role/WithOverloading/WithOverloading.so %%PERL5_MAN3%%/MooseX::Role::WithOverloading.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role.3.gz %%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::Composite.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::Composite::ToClass.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::Composite::ToInstance.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::Composite::ToRole.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::FixOverloadedRefs.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::ToClass.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::ToInstance.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application::ToRole.3.gz -%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Composite.3.gz From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:12 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 3AFBA9D10B3; Fri, 9 Oct 2015 18:32:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0863F6B8; Fri, 9 Oct 2015 18:32:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWB3S059945; Fri, 9 Oct 2015 18:32:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWBIr059944; Fri, 9 Oct 2015 18:32:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWBIr059944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398937 - head/devel/p5-Parallel-ForkManager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:12 -0000 Author: sunpoet Date: Fri Oct 9 18:32:10 2015 New Revision: 398937 URL: https://svnweb.freebsd.org/changeset/ports/398937 Log: - Update TEST_DEPENDS Modified: head/devel/p5-Parallel-ForkManager/Makefile Modified: head/devel/p5-Parallel-ForkManager/Makefile ============================================================================== --- head/devel/p5-Parallel-ForkManager/Makefile Fri Oct 9 18:32:06 2015 (r398936) +++ head/devel/p5-Parallel-ForkManager/Makefile Fri Oct 9 18:32:10 2015 (r398937) @@ -20,7 +20,7 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502000 -TEST_DEPENDS+= p5-Test-Simple>=1.001.003:${PORTSDIR}/devel/p5-Test-Simple +TEST_DEPENDS+= p5-Test-Simple>=1.001:${PORTSDIR}/devel/p5-Test-Simple .endif .include From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:17 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 A84419D10F1; Fri, 9 Oct 2015 18:32:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67DCD879; Fri, 9 Oct 2015 18:32:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWGpk060093; Fri, 9 Oct 2015 18:32:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWG5v060089; Fri, 9 Oct 2015 18:32:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWG5v060089@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398938 - in head/databases/p5-Tangram: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:17 -0000 Author: sunpoet Date: Fri Oct 9 18:32:15 2015 New Revision: 398938 URL: https://svnweb.freebsd.org/changeset/ports/398938 Log: - Update to 2.11 - Add LICENSE - Fix, sort and update *_DEPENDS: Time::Piece is already in all supported Perl releases - Add NO_ARCH - Pet portlint: fix diff header of patch files Modified: head/databases/p5-Tangram/Makefile head/databases/p5-Tangram/distinfo head/databases/p5-Tangram/files/patch-Makefile.PL head/databases/p5-Tangram/pkg-plist Modified: head/databases/p5-Tangram/Makefile ============================================================================== --- head/databases/p5-Tangram/Makefile Fri Oct 9 18:32:10 2015 (r398937) +++ head/databases/p5-Tangram/Makefile Fri Oct 9 18:32:15 2015 (r398938) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Tangram -PORTVERSION= 2.10 -PORTREVISION= 2 +PORTVERSION= 2.11 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,13 +10,16 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Orthogonal Object Persistence in Relational Databases -BUILD_DEPENDS= p5-Set-Object>=0:${PORTSDIR}/devel/p5-Set-Object \ - p5-Time-Piece>=0:${PORTSDIR}/devel/p5-Time-Piece \ - p5-Class-Date>=0:${PORTSDIR}/devel/p5-Class-Date \ - p5-Data-Lazy>=0:${PORTSDIR}/devel/p5-Data-Lazy \ - p5-DBI>=0:${PORTSDIR}/databases/p5-DBI +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= p5-Class-Date>=0:${PORTSDIR}/devel/p5-Class-Date \ + p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ + p5-Data-Lazy>=0.6:${PORTSDIR}/devel/p5-Data-Lazy \ + p5-Set-Object>=1.1:${PORTSDIR}/devel/p5-Set-Object RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Tangram/distinfo ============================================================================== --- head/databases/p5-Tangram/distinfo Fri Oct 9 18:32:10 2015 (r398937) +++ head/databases/p5-Tangram/distinfo Fri Oct 9 18:32:15 2015 (r398938) @@ -1,2 +1,2 @@ -SHA256 (Tangram-2.10.tar.gz) = 98b29102c27de6a1a4d9c2d5bd224d60eba03ae6cae624075ee7d3734a0a53db -SIZE (Tangram-2.10.tar.gz) = 157790 +SHA256 (Tangram-2.11.tar.gz) = d18c3c997213d576ab7d036749750806a0ec4fc024731d10547a57e11397e65d +SIZE (Tangram-2.11.tar.gz) = 174989 Modified: head/databases/p5-Tangram/files/patch-Makefile.PL ============================================================================== --- head/databases/p5-Tangram/files/patch-Makefile.PL Fri Oct 9 18:32:10 2015 (r398937) +++ head/databases/p5-Tangram/files/patch-Makefile.PL Fri Oct 9 18:32:15 2015 (r398938) @@ -1,5 +1,5 @@ ---- Makefile.PL.orig Tue Mar 28 22:05:28 2006 -+++ Makefile.PL Tue May 30 20:47:27 2006 +--- Makefile.PL.orig 2006-03-28 22:05:28 UTC ++++ Makefile.PL @@ -58,7 +58,7 @@ print q{Do you plan to run the test suite? (you will need to set up an *EMPTY* database)}; Modified: head/databases/p5-Tangram/pkg-plist ============================================================================== --- head/databases/p5-Tangram/pkg-plist Fri Oct 9 18:32:10 2015 (r398937) +++ head/databases/p5-Tangram/pkg-plist Fri Oct 9 18:32:15 2015 (r398938) @@ -89,6 +89,7 @@ %%SITE_PERL%%/Tangram/Type/Date/DateTime.pm %%SITE_PERL%%/Tangram/Type/Date/Manip.pm %%SITE_PERL%%/Tangram/Type/Date/Raw.pm +%%SITE_PERL%%/Tangram/Type/Date/TimeHiRes.pm %%SITE_PERL%%/Tangram/Type/Date/TimePiece.pm %%SITE_PERL%%/Tangram/Type/Dump.pm %%SITE_PERL%%/Tangram/Type/Dump/Any.pm @@ -103,6 +104,8 @@ %%SITE_PERL%%/Tangram/Type/Hash/Scalar.pm %%SITE_PERL%%/Tangram/Type/Hash/Scalar.pod %%SITE_PERL%%/Tangram/Type/Integer.pm +%%SITE_PERL%%/Tangram/Type/Interval.pm +%%SITE_PERL%%/Tangram/Type/Interval/HiRes.pm %%SITE_PERL%%/Tangram/Type/Number.pm %%SITE_PERL%%/Tangram/Type/Real.pm %%SITE_PERL%%/Tangram/Type/Ref/FromMany.pm @@ -118,7 +121,7 @@ %%SITE_PERL%%/Tangram/Type/Time.pm %%SITE_PERL%%/Tangram/Type/TimeAndDate.pm %%SITE_PERL%%/Tangram/Type/TimeAndDate.pod -%%SITE_PERL%%/auto/Tangram/autosplit.ix +%%SITE_PERL%%/Tangram/Util.pm %%PERL5_MAN3%%/Tangram.3.gz %%PERL5_MAN3%%/Tangram::Complicity.3.gz %%PERL5_MAN3%%/Tangram::Core.3.gz From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:27 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 07D5E9D1154; Fri, 9 Oct 2015 18:32:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2A2E9C9; Fri, 9 Oct 2015 18:32:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWPvw060324; Fri, 9 Oct 2015 18:32:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWP9X060322; Fri, 9 Oct 2015 18:32:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWP9X060322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398940 - head/devel/rubygem-aws-sdk-core X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:27 -0000 Author: sunpoet Date: Fri Oct 9 18:32:25 2015 New Revision: 398940 URL: https://svnweb.freebsd.org/changeset/ports/398940 Log: - Update to 2.1.29 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Fri Oct 9 18:32:20 2015 (r398939) +++ head/devel/rubygem-aws-sdk-core/Makefile Fri Oct 9 18:32:25 2015 (r398940) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.1.28 +PORTVERSION= 2.1.29 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Fri Oct 9 18:32:20 2015 (r398939) +++ head/devel/rubygem-aws-sdk-core/distinfo Fri Oct 9 18:32:25 2015 (r398940) @@ -1,2 +1,2 @@ -SHA256 (rubygem/aws-sdk-core-2.1.28.gem) = 1ca631db65e311075666965af271e38f6325e41ebfd30968a7d2264ed36dbc98 -SIZE (rubygem/aws-sdk-core-2.1.28.gem) = 467456 +SHA256 (rubygem/aws-sdk-core-2.1.29.gem) = 6cded72633b4ec29a3cf9927eb59a1c73ba68acb3217b2e93400edbbf795e79f +SIZE (rubygem/aws-sdk-core-2.1.29.gem) = 474624 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32: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 24F769D111C; Fri, 9 Oct 2015 18:32:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E549A902; Fri, 9 Oct 2015 18:32:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWL7q060210; Fri, 9 Oct 2015 18:32:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWKdM060208; Fri, 9 Oct 2015 18:32:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWKdM060208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398939 - head/textproc/p5-Text-Similarity X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:22 -0000 Author: sunpoet Date: Fri Oct 9 18:32:20 2015 New Revision: 398939 URL: https://svnweb.freebsd.org/changeset/ports/398939 Log: - Update to 0.13 Changes: http://search.cpan.org/dist/Text-Similarity/CHANGES Modified: head/textproc/p5-Text-Similarity/Makefile head/textproc/p5-Text-Similarity/distinfo Modified: head/textproc/p5-Text-Similarity/Makefile ============================================================================== --- head/textproc/p5-Text-Similarity/Makefile Fri Oct 9 18:32:15 2015 (r398938) +++ head/textproc/p5-Text-Similarity/Makefile Fri Oct 9 18:32:20 2015 (r398939) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Text-Similarity -PORTVERSION= 0.11 +PORTVERSION= 0.13 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-Text-Similarity/distinfo ============================================================================== --- head/textproc/p5-Text-Similarity/distinfo Fri Oct 9 18:32:15 2015 (r398938) +++ head/textproc/p5-Text-Similarity/distinfo Fri Oct 9 18:32:20 2015 (r398939) @@ -1,2 +1,2 @@ -SHA256 (Text-Similarity-0.11.tar.gz) = e669849fecb47da057338ca99d84d9b0bc8ad0ee9389caa0be650a7343ef8778 -SIZE (Text-Similarity-0.11.tar.gz) = 42220 +SHA256 (Text-Similarity-0.13.tar.gz) = f9c18d6334eaaa9e605e475e4a5c7f8771118e2cc0760b4a98552059e803ad6c +SIZE (Text-Similarity-0.13.tar.gz) = 42579 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:31 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 E07879D1184; Fri, 9 Oct 2015 18:32:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AAE3CAAF; Fri, 9 Oct 2015 18:32:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWUAk060441; Fri, 9 Oct 2015 18:32:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWUTO060439; Fri, 9 Oct 2015 18:32:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWUTO060439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398941 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:32 -0000 Author: sunpoet Date: Fri Oct 9 18:32:30 2015 New Revision: 398941 URL: https://svnweb.freebsd.org/changeset/ports/398941 Log: - Update to 2.1.29 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Fri Oct 9 18:32:25 2015 (r398940) +++ head/devel/rubygem-aws-sdk-resources/Makefile Fri Oct 9 18:32:30 2015 (r398941) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.1.28 +PORTVERSION= 2.1.29 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Fri Oct 9 18:32:25 2015 (r398940) +++ head/devel/rubygem-aws-sdk-resources/distinfo Fri Oct 9 18:32:30 2015 (r398941) @@ -1,2 +1,2 @@ -SHA256 (rubygem/aws-sdk-resources-2.1.28.gem) = 553a393d04d52275bb70ac1c50726233f2a533703c9d894a12791ffc7846bedf -SIZE (rubygem/aws-sdk-resources-2.1.28.gem) = 44032 +SHA256 (rubygem/aws-sdk-resources-2.1.29.gem) = ab7dd58d4ff3bc5c136d8d13ff4ec0dfeb22a218353bdd1a7145b1ca9a1f6c5f +SIZE (rubygem/aws-sdk-resources-2.1.29.gem) = 44032 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:36 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 EEEEC9D11BB; Fri, 9 Oct 2015 18:32:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98209BA2; Fri, 9 Oct 2015 18:32:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWZh7060570; Fri, 9 Oct 2015 18:32:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWZi5060567; Fri, 9 Oct 2015 18:32:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWZi5060567@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398942 - head/www/rubygem-rack-cache X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:37 -0000 Author: sunpoet Date: Fri Oct 9 18:32:35 2015 New Revision: 398942 URL: https://svnweb.freebsd.org/changeset/ports/398942 Log: - Update to 1.5.0 - Add LICENSE_FILE - Update WWW Changes: https://github.com/rtomayko/rack-cache/blob/master/CHANGES Modified: head/www/rubygem-rack-cache/Makefile head/www/rubygem-rack-cache/distinfo head/www/rubygem-rack-cache/pkg-descr Modified: head/www/rubygem-rack-cache/Makefile ============================================================================== --- head/www/rubygem-rack-cache/Makefile Fri Oct 9 18:32:30 2015 (r398941) +++ head/www/rubygem-rack-cache/Makefile Fri Oct 9 18:32:35 2015 (r398942) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rack-cache -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 1.5.0 CATEGORIES= www rubygems MASTER_SITES= RG @@ -11,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Rack middleware to enable HTTP caching LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rack16>=0.4:${PORTSDIR}/www/rubygem-rack16 Modified: head/www/rubygem-rack-cache/distinfo ============================================================================== --- head/www/rubygem-rack-cache/distinfo Fri Oct 9 18:32:30 2015 (r398941) +++ head/www/rubygem-rack-cache/distinfo Fri Oct 9 18:32:35 2015 (r398942) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rack-cache-1.2.gem) = 02bfed05f8b3266db804f2fa445801636ca2c6d211a3137ec796f88af5756e1c -SIZE (rubygem/rack-cache-1.2.gem) = 261632 +SHA256 (rubygem/rack-cache-1.5.0.gem) = 17478e9923d0524dc8a6084ec81a3a7b3502a788dab4c9bbeb996abd20b57e71 +SIZE (rubygem/rack-cache-1.5.0.gem) = 27136 Modified: head/www/rubygem-rack-cache/pkg-descr ============================================================================== --- head/www/rubygem-rack-cache/pkg-descr Fri Oct 9 18:32:30 2015 (r398941) +++ head/www/rubygem-rack-cache/pkg-descr Fri Oct 9 18:32:35 2015 (r398942) @@ -10,4 +10,4 @@ and/or validation (Last-Modified, ETag) * Portable: 100% Ruby / works with any Rack-enabled framework. * Disk, memcached, and heap memory storage backends. -WWW: https://github.comrtomayko/rack-cache +WWW: https://github.com/rtomayko/rack-cache From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32: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 02A199D11F5; Fri, 9 Oct 2015 18:32:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3BB0C78; Fri, 9 Oct 2015 18:32:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWeFa060686; Fri, 9 Oct 2015 18:32:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWenS060684; Fri, 9 Oct 2015 18:32:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWenS060684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398943 - head/devel/rubygem-rugged X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:42 -0000 Author: sunpoet Date: Fri Oct 9 18:32:40 2015 New Revision: 398943 URL: https://svnweb.freebsd.org/changeset/ports/398943 Log: - Update to 0.23.3 - Update BUILD_DEPENDS - Add LICENSE_FILE Changes: https://github.com/libgit2/rugged/releases Modified: head/devel/rubygem-rugged/Makefile head/devel/rubygem-rugged/distinfo Modified: head/devel/rubygem-rugged/Makefile ============================================================================== --- head/devel/rubygem-rugged/Makefile Fri Oct 9 18:32:35 2015 (r398942) +++ head/devel/rubygem-rugged/Makefile Fri Oct 9 18:32:40 2015 (r398943) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rugged -PORTVERSION= 0.23.2 +PORTVERSION= 0.23.3 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -10,16 +10,16 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Rugged is a Ruby binding to the libgit2 linkable library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= cmake:${PORTSDIR}/devel/cmake \ - libgit2>=0.22:${PORTSDIR}/devel/libgit2 + libgit2>=${PORTVERSION:R}:${PORTSDIR}/devel/libgit2 LIB_DEPENDS= libgit2.so:${PORTSDIR}/devel/libgit2 +CONFIGURE_ARGS= --use-system-libraries USE_RUBY= yes -USES= pkgconfig USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes - -CONFIGURE_ARGS= --use-system-libraries +RUBYGEM_AUTOPLIST= yes +USES= pkgconfig .include Modified: head/devel/rubygem-rugged/distinfo ============================================================================== --- head/devel/rubygem-rugged/distinfo Fri Oct 9 18:32:35 2015 (r398942) +++ head/devel/rubygem-rugged/distinfo Fri Oct 9 18:32:40 2015 (r398943) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rugged-0.23.2.gem) = 6dd00edb3cbe7648a2f040ef94590f916e63c9eff82f15bfd2d21c9ef124375e -SIZE (rubygem/rugged-0.23.2.gem) = 1037824 +SHA256 (rubygem/rugged-0.23.3.gem) = 1e83351b091d445933132a7db309613faa082171d873cebcd0343f5d7e9c1373 +SIZE (rubygem/rugged-0.23.3.gem) = 1031680 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:46 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 720539D123A; Fri, 9 Oct 2015 18:32:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C2C4D58; Fri, 9 Oct 2015 18:32:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWjQU060789; Fri, 9 Oct 2015 18:32:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWjnZ060788; Fri, 9 Oct 2015 18:32:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWjnZ060788@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398944 - head/devel/rubygem-gemnasium-gitlab-service X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:46 -0000 Author: sunpoet Date: Fri Oct 9 18:32:45 2015 New Revision: 398944 URL: https://svnweb.freebsd.org/changeset/ports/398944 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-gemnasium-gitlab-service/Makefile Modified: head/devel/rubygem-gemnasium-gitlab-service/Makefile ============================================================================== --- head/devel/rubygem-gemnasium-gitlab-service/Makefile Fri Oct 9 18:32:40 2015 (r398943) +++ head/devel/rubygem-gemnasium-gitlab-service/Makefile Fri Oct 9 18:32:45 2015 (r398944) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Gemnasium support for GitLab projects LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rugged>=0.21:${PORTSDIR}/devel/rubygem-rugged From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32:51 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 3CA039D126C; Fri, 9 Oct 2015 18:32:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06738E27; Fri, 9 Oct 2015 18:32:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWoaf060903; Fri, 9 Oct 2015 18:32:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWnJ4060901; Fri, 9 Oct 2015 18:32:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWnJ4060901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398945 - head/devel/rubygem-parser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:51 -0000 Author: sunpoet Date: Fri Oct 9 18:32:49 2015 New Revision: 398945 URL: https://svnweb.freebsd.org/changeset/ports/398945 Log: - Update to 2.2.3.0 Changes: https://github.com/whitequark/parser/blob/master/CHANGELOG.md Modified: head/devel/rubygem-parser/Makefile head/devel/rubygem-parser/distinfo Modified: head/devel/rubygem-parser/Makefile ============================================================================== --- head/devel/rubygem-parser/Makefile Fri Oct 9 18:32:45 2015 (r398944) +++ head/devel/rubygem-parser/Makefile Fri Oct 9 18:32:49 2015 (r398945) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= parser -PORTVERSION= 2.2.2.6 +PORTVERSION= 2.2.3.0 CATEGORIES= devel ruby MASTER_SITES= RG Modified: head/devel/rubygem-parser/distinfo ============================================================================== --- head/devel/rubygem-parser/distinfo Fri Oct 9 18:32:45 2015 (r398944) +++ head/devel/rubygem-parser/distinfo Fri Oct 9 18:32:49 2015 (r398945) @@ -1,2 +1,2 @@ -SHA256 (rubygem/parser-2.2.2.6.gem) = 1016f97e594d9abc92936e8b9ac0444438cf91df46afcf1fe607415cb227b066 -SIZE (rubygem/parser-2.2.2.6.gem) = 370176 +SHA256 (rubygem/parser-2.2.3.0.gem) = 4cb1cf8b34f8d331c9f4a02e4b2f8068cde73b1c957c9c6f24401251d503ab91 +SIZE (rubygem/parser-2.2.3.0.gem) = 456704 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:32: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 1E68C9D1297; Fri, 9 Oct 2015 18:32:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0494F02; Fri, 9 Oct 2015 18:32:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IWsnT061020; Fri, 9 Oct 2015 18:32:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWsvq061018; Fri, 9 Oct 2015 18:32:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWsvq061018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398946 - head/textproc/rubygem-github-linguist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:32:56 -0000 Author: sunpoet Date: Fri Oct 9 18:32:54 2015 New Revision: 398946 URL: https://svnweb.freebsd.org/changeset/ports/398946 Log: - Update to 4.6.4 - Add LICENSE_FILE Changes: https://github.com/github/linguist/releases Modified: head/textproc/rubygem-github-linguist/Makefile head/textproc/rubygem-github-linguist/distinfo Modified: head/textproc/rubygem-github-linguist/Makefile ============================================================================== --- head/textproc/rubygem-github-linguist/Makefile Fri Oct 9 18:32:49 2015 (r398945) +++ head/textproc/rubygem-github-linguist/Makefile Fri Oct 9 18:32:54 2015 (r398946) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= github-linguist -PORTVERSION= 4.5.15 +PORTVERSION= 4.6.4 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -9,6 +9,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= GitHub Language detection LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-charlock_holmes>=0.7.3:${PORTSDIR}/textproc/rubygem-charlock_holmes \ rubygem-escape_utils>=1.1.0:${PORTSDIR}/textproc/rubygem-escape_utils \ @@ -20,6 +21,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PLIST_FILES= bin/linguist +PLIST_FILES= bin/git-linguist bin/linguist .include Modified: head/textproc/rubygem-github-linguist/distinfo ============================================================================== --- head/textproc/rubygem-github-linguist/distinfo Fri Oct 9 18:32:49 2015 (r398945) +++ head/textproc/rubygem-github-linguist/distinfo Fri Oct 9 18:32:54 2015 (r398946) @@ -1,2 +1,2 @@ -SHA256 (rubygem/github-linguist-4.5.15.gem) = c1d70f15a0735d48c33413650ad1a41118cc750311ea13a362a03584138e2af4 -SIZE (rubygem/github-linguist-4.5.15.gem) = 647168 +SHA256 (rubygem/github-linguist-4.6.4.gem) = e5c5174d92b1372f8f2bef91d2bb209336a3c5348b556ea3bd1d6f5e76098e90 +SIZE (rubygem/github-linguist-4.6.4.gem) = 667136 From owner-svn-ports-head@freebsd.org Fri Oct 9 18:33: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 79D619D12E8; Fri, 9 Oct 2015 18:33:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 098146E; Fri, 9 Oct 2015 18:33:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IX0k8061169; Fri, 9 Oct 2015 18:33:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IWx4p061147; Fri, 9 Oct 2015 18:32:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091832.t99IWx4p061147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:32:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398947 - head/devel/p5-Class-Declare X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:33:01 -0000 Author: sunpoet Date: Fri Oct 9 18:32:59 2015 New Revision: 398947 URL: https://svnweb.freebsd.org/changeset/ports/398947 Log: - Update to 0.19 - While I'm here: - Fix *_DEPENDS: Test::Exception is a test-only dependency - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Class-Declare/Changes PR: 203655 Submitted by: Sergey Karatkevich (maintainer) Modified: head/devel/p5-Class-Declare/Makefile head/devel/p5-Class-Declare/distinfo head/devel/p5-Class-Declare/pkg-plist Modified: head/devel/p5-Class-Declare/Makefile ============================================================================== --- head/devel/p5-Class-Declare/Makefile Fri Oct 9 18:32:54 2015 (r398946) +++ head/devel/p5-Class-Declare/Makefile Fri Oct 9 18:32:59 2015 (r398947) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Class-Declare -PORTVERSION= 0.17 -PORTREVISION= 1 +PORTVERSION= 0.19 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= simarg@gmail.com COMMENT= Perl module for declare classes -BUILD_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Exception>=0.15:${PORTSDIR}/devel/p5-Test-Exception +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Class-Declare/distinfo ============================================================================== --- head/devel/p5-Class-Declare/distinfo Fri Oct 9 18:32:54 2015 (r398946) +++ head/devel/p5-Class-Declare/distinfo Fri Oct 9 18:32:59 2015 (r398947) @@ -1,2 +1,2 @@ -SHA256 (Class-Declare-0.17.tar.gz) = 5ccd5aabfc940fc950527403e6985a74079c6d6fbf82c911c9f4fac0e72387ab -SIZE (Class-Declare-0.17.tar.gz) = 76584 +SHA256 (Class-Declare-0.19.tar.gz) = 43a323521956303dfc26700ffd3967ecc4088f66f12e1d9074f73dd8e790fa01 +SIZE (Class-Declare-0.19.tar.gz) = 77805 Modified: head/devel/p5-Class-Declare/pkg-plist ============================================================================== --- head/devel/p5-Class-Declare/pkg-plist Fri Oct 9 18:32:54 2015 (r398946) +++ head/devel/p5-Class-Declare/pkg-plist Fri Oct 9 18:32:59 2015 (r398947) @@ -1,6 +1,6 @@ %%SITE_PERL%%/Class/Declare.pm %%SITE_PERL%%/Class/Declare/Dump.pm %%SITE_PERL%%/Class/Declare/Hash.pm -%%PERL5_MAN3%%/Class::Declare::Dump.3.gz %%PERL5_MAN3%%/Class::Declare.3.gz +%%PERL5_MAN3%%/Class::Declare::Dump.3.gz %%PERL5_MAN3%%/Class::Declare::Hash.3.gz From owner-svn-ports-head@freebsd.org Fri Oct 9 18:33:06 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 13A349D1314; Fri, 9 Oct 2015 18:33:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE1BF100; Fri, 9 Oct 2015 18:33:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IX42n061286; Fri, 9 Oct 2015 18:33:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IX4Hx061285; Fri, 9 Oct 2015 18:33:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091833.t99IX4Hx061285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:33:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398948 - 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: Fri, 09 Oct 2015 18:33:06 -0000 Author: sunpoet Date: Fri Oct 9 18:33:04 2015 New Revision: 398948 URL: https://svnweb.freebsd.org/changeset/ports/398948 Log: - Strip shared library - Bump PORTREVISION for package change Modified: head/science/py-scipy/Makefile Modified: head/science/py-scipy/Makefile ============================================================================== --- head/science/py-scipy/Makefile Fri Oct 9 18:32:59 2015 (r398947) +++ head/science/py-scipy/Makefile Fri Oct 9 18:33:04 2015 (r398948) @@ -3,6 +3,7 @@ PORTNAME= scipy PORTVERSION= 0.16.0 +PORTREVISION= 1 CATEGORIES= science python MASTER_SITES= http://docs.scipy.org/doc/${DISTNAME}/:doc \ SF:source @@ -33,6 +34,9 @@ PORTDOCS= scipy-ref-${PORTVERSION}.pdf post-extract: @${CP} ${DISTDIR}/scipy-ref-${PORTVERSION}.pdf ${WRKDIR} +post-install: + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/scipy/ -name '*.so' | ${XARGS} ${STRIP_CMD} + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/scipy-ref-${PORTVERSION}.pdf ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Fri Oct 9 18:33: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 7480A9D136B; Fri, 9 Oct 2015 18:33:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28B2B202; Fri, 9 Oct 2015 18:33:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IX9jZ061382; Fri, 9 Oct 2015 18:33:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IX9kl061381; Fri, 9 Oct 2015 18:33:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510091833.t99IX9kl061381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Oct 2015 18:33:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398949 - head/graphics/mupdf/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:33:10 -0000 Author: sunpoet Date: Fri Oct 9 18:33:09 2015 New Revision: 398949 URL: https://svnweb.freebsd.org/changeset/ports/398949 Log: - Fix patch PR: 203327 Submitted by: Wolfgang Jenkner Approved by: Zsolt Udvari (maintainer, implicit) Modified: head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Modified: head/graphics/mupdf/files/patch-source__fitz__load-jpx.c ============================================================================== --- head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Fri Oct 9 18:33:04 2015 (r398948) +++ head/graphics/mupdf/files/patch-source__fitz__load-jpx.c Fri Oct 9 18:33:09 2015 (r398949) @@ -1,25 +1,22 @@ --- source/fitz/load-jpx.c.orig 2015-04-16 08:57:45 UTC +++ source/fitz/load-jpx.c -@@ -3,12 +3,17 @@ - /* Without the definition of OPJ_STATIC, compilation fails on windows - * due to the use of __stdcall. We believe it is required on some - * linux toolchains too. */ -+ -+#ifdef __cplusplus -+extern "C" -+{ - #define OPJ_STATIC - #ifndef _MSC_VER - #define OPJ_HAVE_STDINT_H - #endif -+#endif +@@ -1,14 +1,6 @@ + #include "mupdf/fitz.h" +-/* Without the definition of OPJ_STATIC, compilation fails on windows +- * due to the use of __stdcall. We believe it is required on some +- * linux toolchains too. */ +-#define OPJ_STATIC +-#ifndef _MSC_VER +-#define OPJ_HAVE_STDINT_H +-#endif +- -#include +#include static void fz_opj_error_callback(const char *msg, void *client_data) { -@@ -117,7 +122,7 @@ fz_load_jpx(fz_context *ctx, unsigned ch +@@ -117,7 +109,7 @@ fz_load_jpx(fz_context *ctx, unsigned ch opj_stream_set_read_function(stream, fz_opj_stream_read); opj_stream_set_skip_function(stream, fz_opj_stream_skip); opj_stream_set_seek_function(stream, fz_opj_stream_seek); @@ -28,10 +25,3 @@ /* Set the length to avoid an assert */ opj_stream_set_user_data_length(stream, size); -@@ -247,3 +252,6 @@ fz_load_jpx(fz_context *ctx, unsigned ch - - return img; - } -+#ifdef __cplusplus -+} -+#endif From owner-svn-ports-head@freebsd.org Fri Oct 9 18:43:35 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 6E8659D1B8F; Fri, 9 Oct 2015 18:43:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C735F6E; Fri, 9 Oct 2015 18:43:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IhYWK064508; Fri, 9 Oct 2015 18:43:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IhY4Y064505; Fri, 9 Oct 2015 18:43:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510091843.t99IhY4Y064505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 18:43:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398950 - in head/databases/liquibase: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:43:35 -0000 Author: marino Date: Fri Oct 9 18:43:33 2015 New Revision: 398950 URL: https://svnweb.freebsd.org/changeset/ports/398950 Log: databases/liquibase: Upgrade version 3.3.2 => 3.4.1 PR was for version 3.3.5 but several releases have come since then and the MASTER_SITES changed. The latest version required an update to the patch. PR: 201839 Submitted by: ports fury Modified: head/databases/liquibase/Makefile head/databases/liquibase/distinfo head/databases/liquibase/files/patch-liquibase Modified: head/databases/liquibase/Makefile ============================================================================== --- head/databases/liquibase/Makefile Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/Makefile Fri Oct 9 18:43:33 2015 (r398950) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= liquibase -PORTVERSION= 3.3.2 +PORTVERSION= 3.4.1 DISTVERSIONSUFFIX= -bin CATEGORIES= databases java -MASTER_SITES= SF/${PORTNAME}/Liquibase%20Core +MASTER_SITES= http://github.com/liquibase/liquibase/releases/download/liquibase-parent-${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Database Change Management Modified: head/databases/liquibase/distinfo ============================================================================== --- head/databases/liquibase/distinfo Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/distinfo Fri Oct 9 18:43:33 2015 (r398950) @@ -1,2 +1,2 @@ -SHA256 (liquibase-3.3.2-bin.tar.gz) = 879eddb8545a30c816fa674e278b4b8293cc936884eac4bf3f5cf5af47e39784 -SIZE (liquibase-3.3.2-bin.tar.gz) = 6517290 +SHA256 (liquibase-3.4.1-bin.tar.gz) = 693919918e217e7a88c5140e82f279f31f636233a62cd2108abdafa4f3ed0a02 +SIZE (liquibase-3.4.1-bin.tar.gz) = 6718242 Modified: head/databases/liquibase/files/patch-liquibase ============================================================================== --- head/databases/liquibase/files/patch-liquibase Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/files/patch-liquibase Fri Oct 9 18:43:33 2015 (r398950) @@ -1,11 +1,13 @@ ---- liquibase.orig 2015-01-08 14:10:22 UTC +--- liquibase.orig 2015-07-28 18:54:25 UTC +++ liquibase -@@ -1,49 +1,14 @@ - #! /bin/sh +@@ -1,54 +1,14 @@ +-#!/usr/bin/env bash ++#!/bin/sh -if [ ! -n "${LIQUIBASE_HOME+x}" ]; then -- echo "Liquibase Home is not set." -- +- # echo "LIQUIBASE_HOME is not set." ++LIQUIBASE_HOME=`dirname $0`/../share/liquibase + - ## resolve links - $0 may be a symlink - PRG="$0" - while [ -h "$PRG" ] ; do @@ -25,8 +27,7 @@ - LIQUIBASE_HOME=`cd "$LIQUIBASE_HOME" && pwd` - # echo "Liquibase Home: $LIQUIBASE_HOME" -fi -+LIQUIBASE_HOME=`dirname $0`/../share/liquibase - +- - -# build classpath from all jars in lib -if [ -f /usr/bin/cygpath ]; then @@ -40,12 +41,17 @@ - CP="$CP;$i" - done -else +- if [[ $(uname) = MINGW* ]]; then +- CP_SEPARATOR=";" +- else +- CP_SEPARATOR=":" +- fi - CP=. - for i in "$LIQUIBASE_HOME"/liquibase*.jar; do -- CP="$CP":"$i" +- CP="$CP""$CP_SEPARATOR""$i" - done - for i in "$LIQUIBASE_HOME"/lib/*.jar; do -- CP="$CP":"$i" +- CP="$CP""$CP_SEPARATOR""$i" - done -fi +CP=. From owner-svn-ports-head@freebsd.org Fri Oct 9 18:56: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 5EC159D23F4; Fri, 9 Oct 2015 18:56:18 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBC7C192F; Fri, 9 Oct 2015 18:56:17 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IuGOj067617; Fri, 9 Oct 2015 18:56:16 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IuGRG067615; Fri, 9 Oct 2015 18:56:16 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091856.t99IuGRG067615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 18:56:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398951 - head/devel/rubygem-dynflow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:56:18 -0000 Author: mmoll Date: Fri Oct 9 18:56:16 2015 New Revision: 398951 URL: https://svnweb.freebsd.org/changeset/ports/398951 Log: devel/rubygem-dynflow: update to 0.8.7 Modified: head/devel/rubygem-dynflow/Makefile head/devel/rubygem-dynflow/distinfo Modified: head/devel/rubygem-dynflow/Makefile ============================================================================== --- head/devel/rubygem-dynflow/Makefile Fri Oct 9 18:43:33 2015 (r398950) +++ head/devel/rubygem-dynflow/Makefile Fri Oct 9 18:56:16 2015 (r398951) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dynflow -PORTVERSION= 0.8.6 +PORTVERSION= 0.8.7 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -15,7 +15,8 @@ RUN_DEPENDS= rubygem-algebrick>=0.7.0:${ rubygem-apipie-params>=0:${PORTSDIR}/devel/rubygem-apipie-params \ rubygem-concurrent-ruby>=0.9.0:${PORTSDIR}/devel/rubygem-concurrent-ruby \ rubygem-concurrent-ruby-edge>=0.1.0:${PORTSDIR}/devel/rubygem-concurrent-ruby-edge \ - rubygem-multi_json>=0:${PORTSDIR}/devel/rubygem-multi_json + rubygem-multi_json>=0:${PORTSDIR}/devel/rubygem-multi_json \ + rubygem-sequel>=0:${PORTSDIR}/devel/rubygem-sequel NO_ARCH= yes Modified: head/devel/rubygem-dynflow/distinfo ============================================================================== --- head/devel/rubygem-dynflow/distinfo Fri Oct 9 18:43:33 2015 (r398950) +++ head/devel/rubygem-dynflow/distinfo Fri Oct 9 18:56:16 2015 (r398951) @@ -1,2 +1,2 @@ -SHA256 (rubygem/dynflow-0.8.6.gem) = 64358276376cdd042921be25e1abbc53358b14edeb347aca0c0c2389f2ecb890 -SIZE (rubygem/dynflow-0.8.6.gem) = 926720 +SHA256 (rubygem/dynflow-0.8.7.gem) = ab28abfd72dc2ae9808e853d160e712461a50b0448acaa136d6a66f9c6bfd2b4 +SIZE (rubygem/dynflow-0.8.7.gem) = 927232 From owner-svn-ports-head@freebsd.org Fri Oct 9 19:09:29 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 D55DD9D2C12; Fri, 9 Oct 2015 19:09:29 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9196C1F7C; Fri, 9 Oct 2015 19:09:29 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99J9SaE070776; Fri, 9 Oct 2015 19:09:28 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99J9Rxe070769; Fri, 9 Oct 2015 19:09:27 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <201510091909.t99J9Rxe070769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Fri, 9 Oct 2015 19:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398952 - in head/sysutils: bacula-docs bacula-server bacula-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:09:30 -0000 Author: dvl Date: Fri Oct 9 19:09:27 2015 New Revision: 398952 URL: https://svnweb.freebsd.org/changeset/ports/398952 Log: Upgrade to 7.2.0 Approved by: mat (mentor) Added: head/sysutils/bacula-server/files/patch-src_filed_acl.c (contents, props changed) head/sysutils/bacula-server/files/patch-src_findlib_fstype.c (contents, props changed) Modified: head/sysutils/bacula-docs/Makefile head/sysutils/bacula-docs/distinfo head/sysutils/bacula-server/Makefile head/sysutils/bacula-server/distinfo head/sysutils/bacula-server/pkg-plist Modified: head/sysutils/bacula-docs/Makefile ============================================================================== --- head/sysutils/bacula-docs/Makefile Fri Oct 9 18:56:16 2015 (r398951) +++ head/sysutils/bacula-docs/Makefile Fri Oct 9 19:09:27 2015 (r398952) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bacula -PORTVERSION= 7.0.3 +PORTVERSION= 7.2.0 CATEGORIES= sysutils MASTER_SITES= SF PKGNAMESUFFIX= -docs Modified: head/sysutils/bacula-docs/distinfo ============================================================================== --- head/sysutils/bacula-docs/distinfo Fri Oct 9 18:56:16 2015 (r398951) +++ head/sysutils/bacula-docs/distinfo Fri Oct 9 19:09:27 2015 (r398952) @@ -1,2 +1,2 @@ -SHA256 (bacula-docs-7.0.3.tar.bz2) = b92f32d7b291529b14f4752c8678aad41aaa833afd83fd25bbcb487a2fb45076 -SIZE (bacula-docs-7.0.3.tar.bz2) = 40114560 +SHA256 (bacula-docs-7.2.0.tar.bz2) = d17d5cd888c59a29c15d467843c279fa0e15accb8a911cec360fbe5d69971937 +SIZE (bacula-docs-7.2.0.tar.bz2) = 42744334 Modified: head/sysutils/bacula-server/Makefile ============================================================================== --- head/sysutils/bacula-server/Makefile Fri Oct 9 18:56:16 2015 (r398951) +++ head/sysutils/bacula-server/Makefile Fri Oct 9 19:09:27 2015 (r398952) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= bacula -DISTVERSION= 7.0.5 -PORTREVISION?= 4 +DISTVERSION= 7.2.0 CATEGORIES?= sysutils MASTER_SITES= SF/bacula/bacula/${PORTVERSION} PKGNAMEPREFIX?= # @@ -176,7 +175,6 @@ post-patch: ${WRKSRC}/src/tools/Makefile.in .endif - .if !target(post-install) post-install: .if defined(WITH_CLIENT_ONLY) Modified: head/sysutils/bacula-server/distinfo ============================================================================== --- head/sysutils/bacula-server/distinfo Fri Oct 9 18:56:16 2015 (r398951) +++ head/sysutils/bacula-server/distinfo Fri Oct 9 19:09:27 2015 (r398952) @@ -1,2 +1,2 @@ -SHA256 (bacula-7.0.5.tar.gz) = 1457849eb33011b43371801b62ffa13d29bebe51be8d5a36da563b87bb094a49 -SIZE (bacula-7.0.5.tar.gz) = 3216406 +SHA256 (bacula-7.2.0.tar.gz) = 818606fe69c50c3ca21b91e609d4ac6ca08e4189419b89d3ec2e81c8c0389e1c +SIZE (bacula-7.2.0.tar.gz) = 3301720 Added: head/sysutils/bacula-server/files/patch-src_filed_acl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bacula-server/files/patch-src_filed_acl.c Fri Oct 9 19:09:27 2015 (r398952) @@ -0,0 +1,190 @@ +--- src/filed/acl.c.orig 2015-08-13 13:52:24 UTC ++++ src/filed/acl.c +@@ -927,7 +927,7 @@ static bacl_rtn_code generic_set_acl_on_ + * Define the supported ACL streams for this OS + */ + static int os_access_acl_streams[1] = { +- STREAM_ACL_DARWIN_ACCESS_ACL ++ STREAM_ACL_DARWIN_ACCESS + }; + static int os_default_acl_streams[1] = { + -1 +@@ -988,11 +988,11 @@ static bacl_rtn_code (*os_restore_acl_st + * Define the supported ACL streams for these OSes + */ + static int os_access_acl_streams[2] = { +- STREAM_ACL_FREEBSD_ACCESS_ACL, +- STREAM_ACL_FREEBSD_NFS4_ACL ++ STREAM_ACL_FREEBSD_ACCESS, ++ STREAM_ACL_FREEBSD_NFS4 + }; + static int os_default_acl_streams[1] = { +- STREAM_ACL_FREEBSD_DEFAULT_ACL ++ STREAM_ACL_FREEBSD_DEFAULT + }; + + static bacl_rtn_code freebsd_backup_acl_streams(JCR *jcr, FF_PKT *ff_pkt) +@@ -1065,7 +1065,7 @@ static bacl_rtn_code freebsd_backup_acl_ + return bacl_rtn_fatal; + + if (jcr->acl_ctx->content_length > 0) { +- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_NFS4_ACL) == bacl_rtn_fatal) ++ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_NFS4) == bacl_rtn_fatal) + return bacl_rtn_fatal; + } + break; +@@ -1077,7 +1077,7 @@ static bacl_rtn_code freebsd_backup_acl_ + return bacl_rtn_fatal; + + if (jcr->acl_ctx->content_length > 0) { +- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_ACCESS_ACL) == bacl_rtn_fatal) ++ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_ACCESS) == bacl_rtn_fatal) + return bacl_rtn_fatal; + } + +@@ -1088,7 +1088,7 @@ static bacl_rtn_code freebsd_backup_acl_ + if (generic_get_acl_from_os(jcr, BACL_TYPE_DEFAULT) == bacl_rtn_fatal) + return bacl_rtn_fatal; + if (jcr->acl_ctx->content_length > 0) { +- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_DEFAULT_ACL) == bacl_rtn_fatal) ++ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_DEFAULT) == bacl_rtn_fatal) + return bacl_rtn_fatal; + } + } +@@ -1113,13 +1113,13 @@ static bacl_rtn_code freebsd_restore_acl + */ + switch (stream) { + case STREAM_UNIX_ACCESS_ACL: +- case STREAM_ACL_FREEBSD_ACCESS_ACL: ++ case STREAM_ACL_FREEBSD_ACCESS: + case STREAM_UNIX_DEFAULT_ACL: +- case STREAM_ACL_FREEBSD_DEFAULT_ACL: ++ case STREAM_ACL_FREEBSD_DEFAULT: + acl_enabled = pathconf(jcr->last_fname, _PC_ACL_EXTENDED); + acl_type_name = "POSIX"; + break; +- case STREAM_ACL_FREEBSD_NFS4_ACL: ++ case STREAM_ACL_FREEBSD_NFS4: + #if defined(_PC_ACL_NFS4) + acl_enabled = pathconf(jcr->last_fname, _PC_ACL_NFS4); + #endif +@@ -1159,12 +1159,12 @@ static bacl_rtn_code freebsd_restore_acl + */ + switch (stream) { + case STREAM_UNIX_ACCESS_ACL: +- case STREAM_ACL_FREEBSD_ACCESS_ACL: ++ case STREAM_ACL_FREEBSD_ACCESS: + return generic_set_acl_on_os(jcr, BACL_TYPE_ACCESS, content, content_length); + case STREAM_UNIX_DEFAULT_ACL: +- case STREAM_ACL_FREEBSD_DEFAULT_ACL: ++ case STREAM_ACL_FREEBSD_DEFAULT: + return generic_set_acl_on_os(jcr, BACL_TYPE_DEFAULT, content, content_length); +- case STREAM_ACL_FREEBSD_NFS4_ACL: ++ case STREAM_ACL_FREEBSD_NFS4: + return generic_set_acl_on_os(jcr, BACL_TYPE_NFS4, content, content_length); + default: + break; +@@ -1273,11 +1273,11 @@ static bacl_rtn_code (*os_restore_acl_st + * Define the supported ACL streams for this OS + */ + static int os_access_acl_streams[1] = { +- STREAM_ACL_TRU64_ACCESS_ACL ++ STREAM_ACL_TRU64_ACCESS + }; + static int os_default_acl_streams[2] = { +- STREAM_ACL_TRU64_DEFAULT_ACL, +- STREAM_ACL_TRU64_DEFAULT_DIR_ACL ++ STREAM_ACL_TRU64_DEFAULT, ++ STREAM_ACL_TRU64_DEFAULT_DIR + }; + + static bacl_rtn_code tru64_backup_acl_streams(JCR *jcr, FF_PKT *ff_pkt) +@@ -1564,8 +1564,8 @@ char *acl_strerror(int); + * Define the supported ACL streams for this OS + */ + static int os_access_acl_streams[2] = { +- STREAM_ACL_SOLARIS_ACLENT, +- STREAM_ACL_SOLARIS_ACE ++ STREAM_ACL_SOLARIS_POSIX, ++ STREAM_ACL_SOLARIS_NFS4 + }; + static int os_default_acl_streams[1] = { + -1 +@@ -1653,10 +1653,10 @@ static bacl_rtn_code solaris_backup_acl_ + + switch (acl_type(aclp)) { + case ACLENT_T: +- stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACLENT); ++ stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_POSIX); + break; + case ACE_T: +- stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACE); ++ stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_NFS4); + break; + default: + break; +@@ -1673,8 +1673,8 @@ static bacl_rtn_code solaris_restore_acl + acl_t *aclp; + int acl_enabled, error; + +- if (stream != STREAM_UNIX_ACCESS_ACL || stream != STREAM_ACL_SOLARIS_ACLENT || +- stream != STREAM_ACL_SOLARIS_ACE) { ++ if (stream != STREAM_UNIX_ACCESS_ACL || stream != STREAM_ACL_SOLARIS_POSIX || ++ stream != STREAM_ACL_SOLARIS_NFS4) { + return bacl_rtn_error; + } + +@@ -1709,7 +1709,7 @@ static bacl_rtn_code solaris_restore_acl + * On a filesystem with ACL support make sure this particular ACL type can be restored. + */ + switch (stream) { +- case STREAM_ACL_SOLARIS_ACLENT: ++ case STREAM_ACL_SOLARIS_POSIX: + /* + * An aclent can be restored on filesystems with _ACL_ACLENT_ENABLED or _ACL_ACE_ENABLED support. + */ +@@ -1720,7 +1720,7 @@ static bacl_rtn_code solaris_restore_acl + return bacl_rtn_error; + } + break; +- case STREAM_ACL_SOLARIS_ACE: ++ case STREAM_ACL_SOLARIS_NFS4: + /* + * An ace can only be restored on a filesystem with _ACL_ACE_ENABLED support. + */ +@@ -1750,7 +1750,7 @@ static bacl_rtn_code solaris_restore_acl + * Validate that the conversion gave us the correct acl type. + */ + switch (stream) { +- case STREAM_ACL_SOLARIS_ACLENT: ++ case STREAM_ACL_SOLARIS_POSIX: + if (acl_type(aclp) != ACLENT_T) { + Mmsg1(jcr->errmsg, + _("wrong encoding of acl type in acl stream on file \"%s\"\n"), +@@ -1758,7 +1758,7 @@ static bacl_rtn_code solaris_restore_acl + return bacl_rtn_error; + } + break; +- case STREAM_ACL_SOLARIS_ACE: ++ case STREAM_ACL_SOLARIS_NFS4: + if (acl_type(aclp) != ACE_T) { + Mmsg1(jcr->errmsg, + _("wrong encoding of acl type in acl stream on file \"%s\"\n"), +@@ -1802,7 +1802,7 @@ static bacl_rtn_code solaris_restore_acl + * Define the supported ACL streams for this OS + */ + static int os_access_acl_streams[1] = { +- STREAM_ACL_SOLARIS_ACLENT ++ STREAM_ACL_SOLARIS_POSIX + }; + static int os_default_acl_streams[1] = { + -1 +@@ -1861,7 +1861,7 @@ static bacl_rtn_code solaris_backup_acl_ + pm_strcpy(jcr->acl_ctx->content, acl_text); + actuallyfree(acl_text); + free(acls); +- return send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACLENT); ++ return send_acl_stream(jcr, STREAM_ACL_SOLARIS_POSIX); + } + + berrno be; Added: head/sysutils/bacula-server/files/patch-src_findlib_fstype.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bacula-server/files/patch-src_findlib_fstype.c Fri Oct 9 19:09:27 2015 (r398952) @@ -0,0 +1,22 @@ +--- src/findlib/fstype.c.orig 2015-08-13 13:52:24 UTC ++++ src/findlib/fstype.c +@@ -31,7 +31,9 @@ + #include "find.h" + #include + #include +- ++#ifdef HAVE_SUN_OS ++ #include ++#endif + #else /* Set up for testing a stand alone program */ + + #include +@@ -373,7 +375,7 @@ bool read_mtab(mtab_handler_t *mtab_hand + mtab_handler(user_ctx, &st, mnt.mnt_fstype, mnt.mnt_mountp, + mnt.mnt_mntopts, mnt.mnt_special); + } +- fclose(fp); ++ fclose(mntfp); + V(mutex); + #endif + Modified: head/sysutils/bacula-server/pkg-plist ============================================================================== --- head/sysutils/bacula-server/pkg-plist Fri Oct 9 18:56:16 2015 (r398951) +++ head/sysutils/bacula-server/pkg-plist Fri Oct 9 19:09:27 2015 (r398952) @@ -13,7 +13,6 @@ sbin/bacula-sd sbin/bcopy sbin/bextract sbin/bls -sbin/bpluginfo sbin/bregex sbin/bscan sbin/bsmtp From owner-svn-ports-head@freebsd.org Fri Oct 9 19:16: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 558309D203D; Fri, 9 Oct 2015 19:16:47 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: from mail-pa0-x22f.google.com (mail-pa0-x22f.google.com [IPv6:2607:f8b0:400e:c03::22f]) (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 228D6637; Fri, 9 Oct 2015 19:16:47 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by pablk4 with SMTP id lk4so94313212pab.3; Fri, 09 Oct 2015 12:16:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=sVELmZddCd1EYu3+wX76dTATYSIdVwinjZwb7MmU4NY=; b=U94XqyMkGrlc6qWRX0sHkFswxMYBa2DYafJQxBL/c13wotGh7wAssh5mBCtbGzJRZ5 GvxBOr5OJ0T14j7bJAoO/LBWVTobsp8v7Xhhuu+8NVo0uYfDZGOmaCaQ1fLHpk23vPWV 3ipHEDoKAEPo6R17Kymuxd0z5q0XnwKqAfyY5cgUSWSoiVZdZS6adEme4Ktcocrgvvqh +iY7bEJqeAZduxtN5y5ZJlw+uiPCx+3XX0LJWIBaSIqpzCbiIk1Y3LQ7YhBTV603l3pE bfSWW4AW5IKNqZ1qNy3D3iWAXD+dnsdB9FBQcDR7w6b5CBTr4qPqgZ4l8Iiytfcv00LK ovZQ== X-Received: by 10.66.157.72 with SMTP id wk8mr16763158pab.132.1444418206649; Fri, 09 Oct 2015 12:16:46 -0700 (PDT) Received: from xts-bsd.pa-us.unovitch.com (c-174-54-246-90.hsd1.pa.comcast.net. [174.54.246.90]) by smtp.gmail.com with ESMTPSA id x6sm3958513pbt.3.2015.10.09.12.16.42 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Oct 2015 12:16:46 -0700 (PDT) Date: Fri, 9 Oct 2015 19:16:36 +0000 From: Jason Unovitch To: wenheping Cc: heping wen , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r398903 - in head/www: e107 mediawiki123 mediawiki124 mediawiki125 punbb Message-ID: <20151009191636.GA83352@xts-bsd.pa-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201510090717.t997HFU0086589@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:16:47 -0000 On Fri, Oct 09, 2015 at 03:21:27PM +0800, wenheping wrote: > Sorry, I will revert the commit of punbb by miastake. > > wen > > > From: wen@FreeBSD.org > > Date: Fri, 9 Oct 2015 07:17:15 +0000 > > To: ports-committers@freebsd.org; svn-ports-all@freebsd.org; svn-ports-head@freebsd.org > > Subject: svn commit: r398903 - in head/www: e107 mediawiki123 mediawiki124 mediawiki125 punbb > > > > Author: wen > > Date: Fri Oct 9 07:17:14 2015 > > New Revision: 398903 > > URL: https://svnweb.freebsd.org/changeset/ports/398903 > > > > Log: > > - Add missing depend to fix upload error > > > > PR: 203633 > > Submitted by: packet@nerdheim.de > > > > Modified: > > head/www/e107/Makefile > > head/www/e107/distinfo Wen, What about the www/e107 changes? Was that ready for commit? From owner-svn-ports-head@freebsd.org Fri Oct 9 19:19:05 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 54FF19D2210; Fri, 9 Oct 2015 19:19:05 +0000 (UTC) (envelope-from jason.unovitch@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 22598A63; Fri, 9 Oct 2015 19:19:05 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by pabve7 with SMTP id ve7so35814618pab.2; Fri, 09 Oct 2015 12:19:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=tmWNP3v6OoM0HiggYXRdqqSxstDY2DyzS4lJMxPOoWo=; b=WYORK8UByaRQgERYWNGYgGaS8pE7dHPYnq1ZQjEe6qnC8D6amS0OVQMeYK8zC6l7qZ kUJBp/cFeOXWDD0twKERvFqchh9vNClz5BlNbv1aSY68lJmlyZ9mqnJFExbWrKvTQoq/ 6M5rOiDWokAJc7nj5PKCJouVaEVU64GfY4Oh9LWDFaTeKu1RnGj+poGxOBrCvi2vcQd5 Y8TIzU32Dq5NO2Sqxier1SM+DQuGOvFSUrEzqhSHWh2CESXXLQ5YzjxKvexQ5j6Z24ox vVORmi/nWoEDEYOl5g2w/q3VyHiTZEwO7XXbs+dqIGZ29Vd8mqkM06pmkVmFNO35oJ2l 5NAA== X-Received: by 10.66.131.81 with SMTP id ok17mr16736631pab.150.1444418344552; Fri, 09 Oct 2015 12:19:04 -0700 (PDT) Received: from xts-bsd.pa-us.unovitch.com (c-174-54-246-90.hsd1.pa.comcast.net. [174.54.246.90]) by smtp.gmail.com with ESMTPSA id jv5sm3913074pbc.47.2015.10.09.12.19.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Oct 2015 12:19:04 -0700 (PDT) Date: Fri, 9 Oct 2015 19:18:55 +0000 From: Jason Unovitch To: Palle Girgensohn Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398895 - in head/databases: postgresql90-client postgresql90-server postgresql91-client postgresql91-docs postgresql91-pltcl postgresql91-server postgresql92-client postgresql92-contri... Message-ID: <20151009191855.GB83352@xts-bsd.pa-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201510082125.t98LP1bJ014049@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510082125.t98LP1bJ014049@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:19:05 -0000 On Thu, Oct 08, 2015 at 09:25:01PM +0000, Palle Girgensohn wrote: > Author: girgen > Date: Thu Oct 8 21:25:01 2015 > New Revision: 398895 > URL: https://svnweb.freebsd.org/changeset/ports/398895 > > Log: > Update PostgreSQL port to latest version. > > Two security issues have been fixed in this release which affect users > of specific PostgreSQL features: > > CVE-2015-5289: json or jsonb input values constructed from arbitrary > user input can crash the PostgreSQL server and cause a denial of > service. > > CVE-2015-5288: The crypt( function included with the optional pgCrypto > extension could be exploited to read a few additional bytes of memory. > No working exploit for this issue has been developed. > > This update will also disable SSL renegotiation by default; > previously, it was enabled by default. SSL renegotiation will be > removed entirely in PostgreSQL versions 9.5 and later. > > URL: http://www.postgresql.org/about/news/1615/ > Security: CVE-2015-5288 CVE-2015-5289 > Palle, The commit message was missing 'MFH: 2015Q4'. Can you ensure this gets taken care of in the quarterly branch? Just in case, a helpful reminder from the commmitter's guide: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/ports.html#ports-qa-misc-request-mfh From owner-svn-ports-head@freebsd.org Fri Oct 9 19:20:25 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 9E3F39D22C6; Fri, 9 Oct 2015 19:20:25 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64E18C61; Fri, 9 Oct 2015 19:20:25 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99JKOEa074110; Fri, 9 Oct 2015 19:20:24 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99JKO1Z074092; Fri, 9 Oct 2015 19:20:24 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201510091920.t99JKO1Z074092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 9 Oct 2015 19:20:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398953 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:20:25 -0000 Author: bdrewery Date: Fri Oct 9 19:20:24 2015 New Revision: 398953 URL: https://svnweb.freebsd.org/changeset/ports/398953 Log: Don't include/parse bsd.options.desc.mk if not needed (showconfig or -V *_DESC). This is targetting dependency listing overhead. With hat: portmgr Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Fri Oct 9 19:09:27 2015 (r398952) +++ head/Mk/bsd.port.mk Fri Oct 9 19:20:24 2015 (r398953) @@ -5293,7 +5293,7 @@ config-conditional: .endif .endif # config-conditional -.if !target(showconfig) +.if !target(showconfig) && (make(showconfig) || (!empty(.MAKEFLAGS:M-V) && !empty(.MAKEFLAGS:M*_DESC))) .include "${PORTSDIR}/Mk/bsd.options.desc.mk" MULTI_EOL= : you have to choose at least one of them SINGLE_EOL= : you have to select exactly one of them From owner-svn-ports-head@freebsd.org Fri Oct 9 19:21:27 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 DE2D59D23DD; Fri, 9 Oct 2015 19:21:27 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: from mail-pa0-x22f.google.com (mail-pa0-x22f.google.com [IPv6:2607:f8b0:400e:c03::22f]) (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 B0D7AE8C; Fri, 9 Oct 2015 19:21:27 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by pabve7 with SMTP id ve7so35861299pab.2; Fri, 09 Oct 2015 12:21:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=P8RCYcb1fdth9K+mHOTn3IULg1KW3ZuJrWNWcC7WqwM=; b=ssvPTDBehrA+L22s1XMPTlLkN0yxT7Jb+EfDy9IvTEz/FdvE9YKojz1eUtwBNRup1Y +l2bgtwG8v9BGU4tgOPcDe6sE826gZOD8tK+BadgGNllXvqGzebpZPUrFhHDD6jmRNvc bHUyCxFzuPH+yMQ4Py2pR4y9FdbjJXTtxAGxvMOfeCYZYRbjJjvDf0t+OuP/V7dUsQy0 jNPZ/V9l4VhKrT6ENmpftLZu9KQ/G/1YKtIYaLx0Zy13ftvGdKOUegbntGltQ2dATK8b OG8t/t+r3C7j8jTfYX/HQKJcWa47QkMFattUuSlSAWB9aZgvdGRXlp2/2kvwcj5jMro5 ryEA== X-Received: by 10.68.68.197 with SMTP id y5mr17064816pbt.88.1444418487373; Fri, 09 Oct 2015 12:21:27 -0700 (PDT) Received: from xts-bsd.pa-us.unovitch.com (c-174-54-246-90.hsd1.pa.comcast.net. [174.54.246.90]) by smtp.gmail.com with ESMTPSA id xz5sm3960841pbb.12.2015.10.09.12.21.23 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Oct 2015 12:21:26 -0700 (PDT) Date: Fri, 9 Oct 2015 19:21:18 +0000 From: Jason Unovitch To: William Grzybowski Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398702 - head/www/zend-framework1 Message-ID: <20151009192118.GC83352@xts-bsd.pa-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201510061503.t96F3YnB017142@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510061503.t96F3YnB017142@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:21:28 -0000 On Tue, Oct 06, 2015 at 03:03:34PM +0000, William Grzybowski wrote: > Author: wg > Date: Tue Oct 6 15:03:33 2015 > New Revision: 398702 > URL: https://svnweb.freebsd.org/changeset/ports/398702 > > Log: > www/zend-framework1: update to 1.12.16 > > PR: 203462 > Security: d3324fdb-6bf0-11e5-bc5e-00505699053e > > Modified: > head/www/zend-framework1/Makefile > head/www/zend-framework1/distinfo > head/www/zend-framework1/pkg-plist > Wiliam, The commit message was missing 'MFH: 2015Q4'. Can you ensure this gets taken care of in the quarterly branch? Just in case, a helpful reminder from the commmitter's guide: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/ports.html#ports-qa-misc-request-mfh I also set https://bugs.freebsd.org/203462 back to the 'open' state since work is not technically 100% done just yet. From owner-svn-ports-head@freebsd.org Fri Oct 9 19:33:29 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 9E1189D2BED; Fri, 9 Oct 2015 19:33:29 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: from mail-pa0-x235.google.com (mail-pa0-x235.google.com [IPv6:2607:f8b0:400e:c03::235]) (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 6F8B27D2; Fri, 9 Oct 2015 19:33:29 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by pabve7 with SMTP id ve7so36103815pab.2; Fri, 09 Oct 2015 12:33:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=Iv8LACF2n8FegQZjaeU9N9gdVX/MRcP6dYKn2dQz/Z0=; b=neKrOg5sH8HGxR2lF4rvktCNzYOCNpapcRbF/s1IPG9jl85Jen/WjvDteAmaVW6Zpg qQNXFhDgmQH/nea6s5/O1ToIXXcLIVyd1YLdGjvuJ0VgUPueuipKQxyWFGLyiV58dF7/ EWAYkMBDWSlGuafZ0oRuBJwTmLE1FyOCrf/VX7hu5qexxP1l/lg7GHrhVBkbtzmR4t6I yVd0rCTi++AMbjWQEabbty30naWZmZxMZbQHXXF3PxV0J4XzW8Yh0Ug8oPgIXSWG8Eom ThGMiDBk3/TFjZf9Nqd+LR1A712RYVfT0Yylq5CROkcPcEZYQZyZmt8Ompua7dNWv3WA ympA== X-Received: by 10.66.139.70 with SMTP id qw6mr17098496pab.142.1444419209039; Fri, 09 Oct 2015 12:33:29 -0700 (PDT) Received: from xts-bsd.pa-us.unovitch.com (c-174-54-246-90.hsd1.pa.comcast.net. [174.54.246.90]) by smtp.gmail.com with ESMTPSA id tz1sm3951067pbc.50.2015.10.09.12.33.25 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Oct 2015 12:33:28 -0700 (PDT) Date: Fri, 9 Oct 2015 19:33:19 +0000 From: Jason Unovitch To: Alex Dupre Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398632 - in head: archivers/php56-zip lang/php55 lang/php56 Message-ID: <20151009193319.GA23476@xts-bsd.pa-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201510050937.t959btSj049099@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510050937.t959btSj049099@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 19:33:29 -0000 On Mon, Oct 05, 2015 at 09:37:55AM +0000, Alex Dupre wrote: > Author: ale > Date: Mon Oct 5 09:37:54 2015 > New Revision: 398632 > URL: https://svnweb.freebsd.org/changeset/ports/398632 > > Log: > Update PHP ports to versions 5.5.30 and 5.6.14. > > PR: 203541 > Submitted by: Jason Unovitch > > Modified: > head/archivers/php56-zip/Makefile > head/lang/php55/Makefile > head/lang/php55/distinfo > head/lang/php56/Makefile > head/lang/php56/distinfo > Alex, The commit message was missing 'MFH: 2015Q4'. Can you ensure this gets taken care of in the quarterly branch? Note there have been two extra PRs clogging up Bugzilla soley to ask for this commit to get put into quarterly, https://bugs.freebsd.org/203659 and https://bugs.freebsd.org/203658, in addition to the original PR 203541. Just in case, a helpful reminder from the commmitter's guide: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/ports.html#ports-qa-misc-request-mfh From owner-svn-ports-head@freebsd.org Fri Oct 9 20:02:06 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 2926B9D2294; Fri, 9 Oct 2015 20:02:06 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB3C4E34; Fri, 9 Oct 2015 20:02:05 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99K24t3088142; Fri, 9 Oct 2015 20:02:04 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99K24lY088138; Fri, 9 Oct 2015 20:02:04 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510092002.t99K24lY088138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 9 Oct 2015 20:02:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398954 - in head/net-mgmt/lldpd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:02:06 -0000 Author: junovitch Date: Fri Oct 9 20:02:04 2015 New Revision: 398954 URL: https://svnweb.freebsd.org/changeset/ports/398954 Log: net-mgmt/lldpd: update 0.7.16 -> 0.7.18 - Add additional information to README on -I interface flag usage - Change formatting of pkg-message Changes: https://github.com/vincentbernat/lldpd/compare/0.7.16...0.7.18 PR: 203621 Submitted by: Mathieu Simon (maintainer) Modified: head/net-mgmt/lldpd/Makefile head/net-mgmt/lldpd/distinfo head/net-mgmt/lldpd/files/README.bsd head/net-mgmt/lldpd/pkg-message Modified: head/net-mgmt/lldpd/Makefile ============================================================================== --- head/net-mgmt/lldpd/Makefile Fri Oct 9 19:20:24 2015 (r398953) +++ head/net-mgmt/lldpd/Makefile Fri Oct 9 20:02:04 2015 (r398954) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lldpd -PORTVERSION= 0.7.16 +PORTVERSION= 0.7.18 CATEGORIES= net-mgmt MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ Modified: head/net-mgmt/lldpd/distinfo ============================================================================== --- head/net-mgmt/lldpd/distinfo Fri Oct 9 19:20:24 2015 (r398953) +++ head/net-mgmt/lldpd/distinfo Fri Oct 9 20:02:04 2015 (r398954) @@ -1,2 +1,2 @@ -SHA256 (lldpd-0.7.16.tar.gz) = a0b85a5e685b8e7dad08b6f20ea79d8bec47d8dbf39daef419bd20ad7f37d63f -SIZE (lldpd-0.7.16.tar.gz) = 1536603 +SHA256 (lldpd-0.7.18.tar.gz) = 6d6ad8e13286addcbf8787d9c407a7f4bdc4f6ae67bb1d81bcd195169f5095d6 +SIZE (lldpd-0.7.18.tar.gz) = 1536290 Modified: head/net-mgmt/lldpd/files/README.bsd ============================================================================== --- head/net-mgmt/lldpd/files/README.bsd Fri Oct 9 19:20:24 2015 (r398953) +++ head/net-mgmt/lldpd/files/README.bsd Fri Oct 9 20:02:04 2015 (r398954) @@ -1,3 +1,25 @@ +# Permissions + A normal user has to be member of the _lldpd group in order to run lldpcli. --- Mathieu Simon , Tue, 10 Dec 2014 13:40:00 +01:00 +## Notes on lldpd_flags + +Though lldpd_flags is not required to launch lldpd, remember that without +a specified "-I" option lldpd will be listening on _all_ physical interfaces. + +Short examples: + + * Listen only on em0 and enable CDP: + lldpd_flags="-I em0 -c" + * Listen on all interfaces, except em0: + lldpd_flags="-I *,!em0" + +A whitelisted interface beats a blacklisted interface which beats a simple +matched interface. See lldpd(8), which contains the complete documentation. + +## Compatibility + +This port should work equally well on both FreeBSD and DragonFly BSD, though +the later might be a bit less regularly tested. + +-- Mathieu Simon , Tue, 06 Oct 2015 13:20:00 +02:00 Modified: head/net-mgmt/lldpd/pkg-message ============================================================================== --- head/net-mgmt/lldpd/pkg-message Fri Oct 9 19:20:24 2015 (r398953) +++ head/net-mgmt/lldpd/pkg-message Fri Oct 9 20:02:04 2015 (r398954) @@ -1,2 +1,5 @@ -To run lldpd from startup, add lldpd_enable="YES" to your rc.conf. -Add lldpd_flags to your rc.conf to set options. +To run lldpd at startup, add the following line to rc.conf: + + lldpd_enable="YES" + +Add lldpd_flags to rc.conf control its behaviour. From owner-svn-ports-head@freebsd.org Fri Oct 9 20:16: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 BD8D79D2AF7; Fri, 9 Oct 2015 20:16:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 858501350; Fri, 9 Oct 2015 20:16:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id E7A4ABDD4F; Fri, 9 Oct 2015 22:16:18 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id C0A22BDD4C; Fri, 9 Oct 2015 22:16:18 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 364834590378; Fri, 9 Oct 2015 22:16:18 +0200 (CEST) Date: Fri, 09 Oct 2015 22:16:14 +0200 From: Mathieu Arnold To: junovitch@FreeBSD.org, Alex Dupre cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398632 - in head: archivers/php56-zip lang/php55 lang/php56 Message-ID: <579AF33F882E317DEA4B19C6@atuin.in.mat.cc> In-Reply-To: <20151009193319.GA23476@xts-bsd.pa-us.unovitch.com> References: <201510050937.t959btSj049099@repo.freebsd.org> <20151009193319.GA23476@xts-bsd.pa-us.unovitch.com> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========25D861DA4467A23AD60B==========" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:16:21 -0000 --==========25D861DA4467A23AD60B========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +--On 9 octobre 2015 19:33:19 +0000 Jason Unovitch wrote: | On Mon, Oct 05, 2015 at 09:37:55AM +0000, Alex Dupre wrote: |> Author: ale |> Date: Mon Oct 5 09:37:54 2015 |> New Revision: 398632 |> URL: https://svnweb.freebsd.org/changeset/ports/398632 |> |> Log: |> Update PHP ports to versions 5.5.30 and 5.6.14. |> |> PR: 203541 |> Submitted by: Jason Unovitch |> |> Modified: |> head/archivers/php56-zip/Makefile |> head/lang/php55/Makefile |> head/lang/php55/distinfo |> head/lang/php56/Makefile |> head/lang/php56/distinfo |> | Alex, | The commit message was missing 'MFH: 2015Q4'. Can you ensure this gets | taken care of in the quarterly branch? Jason, While committers will, from time to time, do the merges to the quarterly branch themselves, the ports secteam group[1] is the one ultimately responsible for curating the quarterly branch. 1: https://wiki.freebsd.org/ports-secteam -- Mathieu Arnold --==========25D861DA4467A23AD60B========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWGCCRXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IWUAP/is/g5F0cEHY6BmLePWuo0Rj rLtVngRIo+qQmXLjQJNJAr2/joCr1kuoodVqx88fClEnwEydTDHfN3CG3HO3vex/ Fx9Xt3sj+luomlZtU/lh8hguD/FLmepR5RL4DOVKTLhxwA1HMKkImvNUQq2bdo7L nWeRW6t5oVal5sUVFDcX3K3vr5ZmFXz0ghvn7YxLpmH1DDeKiywegsl50ifUCYO5 pIgi5e2eDXLNc225nKVuPeU1QkNgGos0QA5cbkRK7mf/JzdL+b/DnelQwH/lXTmH t4FZqbaWa33b7vaRj7cqwpOZIo0yyATTTiU1DLgZ4kgoRLv2LZCM3H8OEcmVf1Ly T7ScnRX6y6N8OORZzmIo+wsyhi7BHxr9gGiQMCDY7blVXMevGvLIYDnQ2ZiJvXwz 5YDSmQj/gU3eg/ewFkScMnFs/ldT2J/kmVLdXiT/jDUAp4xrA6KmwQ5hki+ZmziY Slfkbj5i7SmGolPpfIJSDF7SPe5ntuT7DEwog1+WV67z14koM43v3t0LiSK/j4ea 9EW8t6JqJyIy14DU1wFH2+Fk/ootKENKSiLCZ2RmFAHMrBMX/+YIsPw05skZC1vT pnJ+631B/Sarjj0whp9ac7Mnvvy20hgLjnRU/SkpgEY2yOB8veO3OsKGGj+oM3jp h4FhCley7CWrJy4RpI8n =yyzE -----END PGP SIGNATURE----- --==========25D861DA4467A23AD60B==========-- From owner-svn-ports-head@freebsd.org Fri Oct 9 20:20:02 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 32D1F9D2C94; Fri, 9 Oct 2015 20:20:02 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4F8914CC; Fri, 9 Oct 2015 20:20:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99KK0Vi091389; Fri, 9 Oct 2015 20:20:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99KK0Yk091387; Fri, 9 Oct 2015 20:20:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510092020.t99KK0Yk091387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 9 Oct 2015 20:20:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398955 - head/net/miredo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:20:02 -0000 Author: amdmi3 Date: Fri Oct 9 20:20:00 2015 New Revision: 398955 URL: https://svnweb.freebsd.org/changeset/ports/398955 Log: - Switch to @sample, fixing stage-qa - Use options helpers - Add USES=localbase, which is just the shorder way of adding CPPFLAGS=-I${LOCALBASE}/include, which fixes judy detection without NLS PR: 203292 Submitted by: amdmi3 Approved by: maintainer timeout (sumikawa, 2 weeks) Modified: head/net/miredo/Makefile head/net/miredo/pkg-plist Modified: head/net/miredo/Makefile ============================================================================== --- head/net/miredo/Makefile Fri Oct 9 20:02:04 2015 (r398954) +++ head/net/miredo/Makefile Fri Oct 9 20:20:00 2015 (r398955) @@ -3,7 +3,7 @@ PORTNAME= miredo PORTVERSION= 1.2.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net ipv6 MASTER_SITES= http://www.remlab.net/files/miredo/archive/ @@ -12,36 +12,21 @@ COMMENT= Opensource Teredo (IPv6 tunnel LIB_DEPENDS= libJudy.so:${PORTSDIR}/devel/judy -USES= libtool tar:xz +USES= libtool localbase tar:xz GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --enable-examplesdir=$(EXAMPLESDIR) USE_LDCONFIG= yes OPTIONS_DEFINE= POLICYTABLE NLS +OPTIONS_SUB= yes + +NLS_USES= gettext iconv +NLS_CONFIGURE_ENABLE= nls POLICYTABLE_DESC= Install policy table to support teredo USE_RC_SUBR= miredo-server miredo -LDFLAGS+= -L${LOCALBASE}/lib - -.include - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext iconv -CONFIGURE_ARGS+= --enable-nls -PLIST_SUB= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB= NLS="@comment " -.endif - - -post-install: -.if ${PORT_OPTIONS:MPOLICYTABLE} - $(INSTALL_DATA) $(FILESDIR)/ip6addrctl.conf /etc -PLIST_SUB+= POLICYTABLE="" -.else -PLIST_SUB+= POLICYTABLE="@comment " -.endif +post-install-POLICYTABLE-on: + $(INSTALL_DATA) $(FILESDIR)/ip6addrctl.conf /etc .include Modified: head/net/miredo/pkg-plist ============================================================================== --- head/net/miredo/pkg-plist Fri Oct 9 20:02:04 2015 (r398954) +++ head/net/miredo/pkg-plist Fri Oct 9 20:20:00 2015 (r398955) @@ -22,9 +22,7 @@ include/libteredo/teredo-udp.h include/libteredo/tunnel.h include/libtun6/tun6.h etc/miredo/client-hook -@unexec [ -f %D/etc/miredo/miredo.conf ] && cmp -s %D/etc/miredo/miredo.conf %D/%%EXAMPLESDIR%%/miredo.conf && rm %D/etc/miredo/miredo.conf || true -%%EXAMPLESDIR%%/miredo.conf -@exec [ -f %D/etc/miredo/miredo.conf ] || cp %B/miredo.conf %D/etc/miredo/miredo.conf +@sample %%EXAMPLESDIR%%/miredo.conf etc/miredo/miredo.conf %%EXAMPLESDIR%%/miredo-server.conf %%NLS%%share/locale/en/LC_MESSAGES/miredo.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/miredo.mo From owner-svn-ports-head@freebsd.org Fri Oct 9 20:31:17 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 A988E9D3355; Fri, 9 Oct 2015 20:31:17 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 717921DC0; Fri, 9 Oct 2015 20:31:17 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99KVG9a096330; Fri, 9 Oct 2015 20:31:16 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99KVGtD096328; Fri, 9 Oct 2015 20:31:16 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510092031.t99KVGtD096328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 9 Oct 2015 20:31:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398956 - head/deskutils/silence X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:31:17 -0000 Author: pawel Date: Fri Oct 9 20:31:16 2015 New Revision: 398956 URL: https://svnweb.freebsd.org/changeset/ports/398956 Log: - Add LICENSE and LICENSE_TEXT - Switch to qt4-linguisttools for building (less dependencies) - Fix WWW PR: 202698 Submitted by: Andriy Voskoboinyk Approved by: maintainer timeout Modified: head/deskutils/silence/Makefile head/deskutils/silence/pkg-descr Modified: head/deskutils/silence/Makefile ============================================================================== --- head/deskutils/silence/Makefile Fri Oct 9 20:20:00 2015 (r398955) +++ head/deskutils/silence/Makefile Fri Oct 9 20:31:16 2015 (r398956) @@ -11,11 +11,14 @@ DISTNAME= 124776-${PORTNAME}-${PORTVERSI MAINTAINER= syncer@gmail.com COMMENT= Information management tool +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + RUN_DEPENDS= ${KDE4_PREFIX}/lib/kde4/katepart.so:${PORTSDIR}/editors/kate USES= cmake USE_KDE4= kdelibs kdeprefix automoc4 -USE_QT4= qmake_build moc_build rcc_build uic_build linguist_build +USE_QT4= qmake_build moc_build rcc_build uic_build linguisttools_build WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/deskutils/silence/pkg-descr ============================================================================== --- head/deskutils/silence/pkg-descr Fri Oct 9 20:20:00 2015 (r398955) +++ head/deskutils/silence/pkg-descr Fri Oct 9 20:31:16 2015 (r398956) @@ -2,4 +2,4 @@ Silence is an information management too your data, it provides sophisticated search mechanisms so you are able to find the information you are looking for. -WWW: http://silence.sekalura.net +WWW: http://silence.sekalura.net From owner-svn-ports-head@freebsd.org Fri Oct 9 20:57: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 17CEA9D14A4; Fri, 9 Oct 2015 20:57:28 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCF4011C9; Fri, 9 Oct 2015 20:57:27 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99KvQ4g003489; Fri, 9 Oct 2015 20:57:26 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99KvQ4v003485; Fri, 9 Oct 2015 20:57:26 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510092057.t99KvQ4v003485@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 9 Oct 2015 20:57:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398958 - in head/net: . py-ntplib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:57:28 -0000 Author: pawel Date: Fri Oct 9 20:57:26 2015 New Revision: 398958 URL: https://svnweb.freebsd.org/changeset/ports/398958 Log: This module offers a simple interface to query NTP servers from Python. It also provides utility functions to translate NTP fields values to text (mode, leap indicator...). Since it's pure Python, and only depends on core modules, it should work on any platform with a Python implementation. WWW: https://pypi.python.org/pypi/ntplib PR: 202525 Submitted by: uros@gruber.si Added: head/net/py-ntplib/ head/net/py-ntplib/Makefile (contents, props changed) head/net/py-ntplib/distinfo (contents, props changed) head/net/py-ntplib/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Oct 9 20:57:06 2015 (r398957) +++ head/net/Makefile Fri Oct 9 20:57:26 2015 (r398958) @@ -945,6 +945,7 @@ SUBDIR += py-netlib SUBDIR += py-netstring SUBDIR += py-novaclient + SUBDIR += py-ntplib SUBDIR += py-oauth SUBDIR += py-oauth2 SUBDIR += py-paho-mqtt Added: head/net/py-ntplib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-ntplib/Makefile Fri Oct 9 20:57:26 2015 (r398958) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= ntplib +PORTVERSION= 0.3.3 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= uros@gruber.si +COMMENT= Python NTP library + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/net/py-ntplib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-ntplib/distinfo Fri Oct 9 20:57:26 2015 (r398958) @@ -0,0 +1,2 @@ +SHA256 (ntplib-0.3.3.tar.gz) = c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede +SIZE (ntplib-0.3.3.tar.gz) = 6808 Added: head/net/py-ntplib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-ntplib/pkg-descr Fri Oct 9 20:57:26 2015 (r398958) @@ -0,0 +1,9 @@ +This module offers a simple interface to query NTP +servers from Python. + +It also provides utility functions to translate NTP +fields values to text (mode, leap indicator...). Since +it's pure Python, and only depends on core modules, +it should work on any platform with a Python implementation. + +WWW: https://pypi.python.org/pypi/ntplib From owner-svn-ports-head@freebsd.org Fri Oct 9 20:57:38 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 E53D99D14D5; Fri, 9 Oct 2015 20:57:37 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [IPv6:2001:470:1:117::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anubis.delphij.net", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id CB0E012A2; Fri, 9 Oct 2015 20:57:37 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from zeta.ixsystems.com (unknown [12.229.62.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by anubis.delphij.net (Postfix) with ESMTPSA id 7971322983; Fri, 9 Oct 2015 13:57:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=anubis; t=1444424257; x=1444438657; bh=xQG2QcRymZLYGAXMua9I2cVudQHVdiC3JzBTn56Ov6M=; h=Reply-To:Subject:References:To:Cc:From:Date:In-Reply-To; b=C/jWXb/i+mC/pDnLfAdFYbmP+fCiS3ObkHArsweepLADNBlFyXa/mR9a5gCBgSAWp fxIyR0r46P2DH3LwWhZ2LMcKQPuo3U120EkjdvMBWSqGHBNeVq71q5JFBo60TbL1IP +LOKDMzvw8T8aYuhYZxwUoQRwsu0CPGSwzUXTxIU= Reply-To: d@delphij.net Subject: Re: svn commit: r398632 - in head: archivers/php56-zip lang/php55 lang/php56 References: <201510050937.t959btSj049099@repo.freebsd.org> <20151009193319.GA23476@xts-bsd.pa-us.unovitch.com> <579AF33F882E317DEA4B19C6@atuin.in.mat.cc> To: Mathieu Arnold , junovitch@FreeBSD.org, Alex Dupre Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Xin Li Organization: The FreeBSD Project Message-ID: <56182A40.8000805@delphij.net> Date: Fri, 9 Oct 2015 13:57:36 -0700 MIME-Version: 1.0 In-Reply-To: <579AF33F882E317DEA4B19C6@atuin.in.mat.cc> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="4UWnLU6MJRS0M4EpujpkhwR4rQiqDGb8T" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:57:38 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --4UWnLU6MJRS0M4EpujpkhwR4rQiqDGb8T Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 10/09/15 13:16, Mathieu Arnold wrote: >=20 >=20 > +--On 9 octobre 2015 19:33:19 +0000 Jason Unovitch > wrote: > | On Mon, Oct 05, 2015 at 09:37:55AM +0000, Alex Dupre wrote: > |> Author: ale > |> Date: Mon Oct 5 09:37:54 2015 > |> New Revision: 398632 > |> URL: https://svnweb.freebsd.org/changeset/ports/398632 > |>=20 > |> Log: > |> Update PHP ports to versions 5.5.30 and 5.6.14. > |> =20 > |> PR: 203541 > |> Submitted by: Jason Unovitch > |>=20 > |> Modified: > |> head/archivers/php56-zip/Makefile > |> head/lang/php55/Makefile > |> head/lang/php55/distinfo > |> head/lang/php56/Makefile > |> head/lang/php56/distinfo > |>=20 > | Alex, > | The commit message was missing 'MFH: 2015Q4'. Can you ensure this ge= ts > | taken care of in the quarterly branch? >=20 > Jason, >=20 > While committers will, from time to time, do the merges to the quarterl= y > branch themselves, the ports secteam group[1] is the one ultimately > responsible for curating the quarterly branch. >=20 > 1: https://wiki.freebsd.org/ports-secteam I've merged as r398957. Cheers, --=20 Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die --4UWnLU6MJRS0M4EpujpkhwR4rQiqDGb8T Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.1.8 (FreeBSD) iQIcBAEBCgAGBQJWGCpBAAoJEJW2GBstM+nsqaQP/iAD5UfVRmd5xS186KiRRHe+ +P2thELtDRfgP0M9na2ikoNwNiCs+uW3ndM6icUebNCCj502o62qodzla0mFrHRa O1iiH3VPSzfyOYMv/b5801fcIwcxgHPNv/C7NDwMdTM7QxJ2iB301k4bUUdkhF63 UaBfIB2Y3XHpNo94Wdf+d2ozb3+wx6+viEgSd2Tiluv0ee/bgsPhY9fj5k9pB/3g bN1UKClauE8g/clqOhjYRlIUIOonM3WewZant38q9NXIX+QA3tknfBzu/PoEe1m2 6EkQvZhDjLfJIK6v0SJiCP0hcy27DetxXVEXoaZajeL6x6MV7leXsQiqCZYWZrxc h+T5P1nCHKS3ZzBmAGNNjAxL+TkOZlZS+RXFT/VXH77y1fo5H+P66+dn37vA/Zwt ckOPoHSZEWS9FNEn/1RWCk0OBP+upkmVN2+p090AVl9vAuRFO4JQt0a6yu/YcSr4 Rh0p5eL8thrKviD+WCTvJUXCwhVuY4AhCZ783l4UUx3+pwOYb5GVvh/GjhS/OuHp G11ISOTW+/B6YMaiYi2zxv8EByS1FlR13Y1pYdSDH9saFXCvTAm5kxyLVcuYwUBx W1Z+bnIRfXcZY+zWiKVP8F6wdkzxIrXaliF9gdQczMkRC1zcKYgt1NILm45r5Izf 8sJNRsamSNsD/Ad1w3/s =0hcN -----END PGP SIGNATURE----- --4UWnLU6MJRS0M4EpujpkhwR4rQiqDGb8T-- From owner-svn-ports-head@freebsd.org Fri Oct 9 20:59:29 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 BB8759D1675; Fri, 9 Oct 2015 20:59:29 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81B571619; Fri, 9 Oct 2015 20:59:29 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99KxSRA003656; Fri, 9 Oct 2015 20:59:28 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99KxSv7003655; Fri, 9 Oct 2015 20:59:28 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201510092059.t99KxSv7003655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Fri, 9 Oct 2015 20:59:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398959 - head/editors/openoffice-devel/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:59:29 -0000 Author: truckman Date: Fri Oct 9 20:59:28 2015 New Revision: 398959 URL: https://svnweb.freebsd.org/changeset/ports/398959 Log: Fix an intermittent build failure by adding a missing dependency to the port's build framework. This change has been committed to the upstream trunk. Added: head/editors/openoffice-devel/files/patch-sdext_prj_build.lst (contents, props changed) Added: head/editors/openoffice-devel/files/patch-sdext_prj_build.lst ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-devel/files/patch-sdext_prj_build.lst Fri Oct 9 20:59:28 2015 (r398959) @@ -0,0 +1,8 @@ +--- sdext/prj/build.lst.orig 2014-02-25 08:27:02 UTC ++++ sdext/prj/build.lst +@@ -1,4 +1,4 @@ +-dx sdext : L10N:l10n offuh comphelper unotools readlicense_oo cppu tools cppuhelper sal javaunohelper officecfg LIBXSLT:libxslt xmlhelp NULL ++dx sdext : L10N:l10n offuh comphelper unotools readlicense_oo cppu tools cppuhelper sal javaunohelper officecfg LIBXSLT:libxslt xmlhelp rsc NULL + dx sdext usr1 - all sdext_mkout NULL + dx sdext\prj get - all sdext_prj NULL + dx sdext\source\minimizer nmake - all sdext_minimizer sdext_inc NULL From owner-svn-ports-head@freebsd.org Fri Oct 9 21:09: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 E712F9D1D46; Fri, 9 Oct 2015 21:09:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D1EAC6; Fri, 9 Oct 2015 21:09:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99L99Tf006914; Fri, 9 Oct 2015 21:09:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99L983k006906; Fri, 9 Oct 2015 21:09:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510092109.t99L983k006906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 9 Oct 2015 21:09:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398960 - in head/net: avahi-app avahi-gtk avahi-gtk3 avahi-libdns avahi-qt4 avahi-sharp py-avahi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 21:09:11 -0000 Author: amdmi3 Date: Fri Oct 9 21:09:08 2015 New Revision: 398960 URL: https://svnweb.freebsd.org/changeset/ports/398960 Log: - Fix plist issue in py-avahi: comment out file which is installed by avahi-app port - Fix plist issues in many *avahi* ports: only create etc/avahi in avahi-app - Switch to @sample PR: 203283 Submitted by: amdmi3 Approved by: gnome (kwm) Modified: head/net/avahi-app/Makefile head/net/avahi-app/pkg-plist head/net/avahi-gtk/pkg-plist head/net/avahi-gtk3/Makefile head/net/avahi-libdns/Makefile head/net/avahi-qt4/Makefile head/net/avahi-sharp/Makefile head/net/py-avahi/pkg-plist Modified: head/net/avahi-app/Makefile ============================================================================== --- head/net/avahi-app/Makefile Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-app/Makefile Fri Oct 9 21:09:08 2015 (r398960) @@ -144,10 +144,10 @@ avahi-post-install: .for f in ${AVAHI_PKGCONFIG} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/libdata/pkgconfig .endfor - ${MKDIR} ${STAGEDIR}${PREFIX}/etc/avahi .for f in ${DAEMON_CONFIG_FILES} + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/avahi ${INSTALL_DATA} ${WRKSRC}/avahi-daemon/${f} \ - ${STAGEDIR}${PREFIX}/etc/avahi/${f}.dist + ${STAGEDIR}${PREFIX}/etc/avahi/${f}.sample .endfor .if ${AVAHI_SLAVE}==no ${INSTALL_DATA} ${FILESDIR}/org.freedesktop.Avahi.service \ Modified: head/net/avahi-app/pkg-plist ============================================================================== --- head/net/avahi-app/pkg-plist Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-app/pkg-plist Fri Oct 9 21:09:08 2015 (r398960) @@ -7,13 +7,9 @@ bin/avahi-resolve bin/avahi-resolve-address bin/avahi-resolve-host-name bin/avahi-set-host-name -@unexec if cmp -s %D/etc/avahi/avahi-daemon.conf %D/etc/avahi/avahi-daemon.conf.dist; then rm -f %D/etc/avahi/avahi-daemon.conf; fi -etc/avahi/avahi-daemon.conf.dist -@exec [ -f %B/avahi-daemon.conf ] || cp %B/%f %B/avahi-daemon.conf +@sample etc/avahi/avahi-daemon.conf.sample etc/avahi/avahi-dnsconfd.action -@unexec if cmp -s %D/etc/avahi/hosts %D/etc/avahi/hosts.dist; then rm -f %D/etc/avahi/hosts; fi -etc/avahi/hosts.dist -@exec [ -f %B/hosts ] || cp %B/%f %B/hosts +@sample etc/avahi/hosts.sample etc/avahi/services/sftp-ssh.service etc/avahi/services/ssh.service etc/dbus-1/system.d/avahi-dbus.conf Modified: head/net/avahi-gtk/pkg-plist ============================================================================== --- head/net/avahi-gtk/pkg-plist Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-gtk/pkg-plist Fri Oct 9 21:09:08 2015 (r398960) @@ -13,4 +13,3 @@ man/man1/bvnc.1.gz share/applications/bssh.desktop share/applications/bvnc.desktop %%DATADIR%%/interfaces/avahi-discover.ui -@comment @dir etc/avahi Modified: head/net/avahi-gtk3/Makefile ============================================================================== --- head/net/avahi-gtk3/Makefile Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-gtk3/Makefile Fri Oct 9 21:09:08 2015 (r398960) @@ -28,7 +28,4 @@ do-build: do-install: @(cd ${WRKSRC}/avahi-ui; ${MAKE_CMD} ${MAKE_ARGS} install-libLTLIBRARIES) -post-install: - @${RMDIR} ${STAGEDIR}${PREFIX}/etc/avahi - .include "${MASTERDIR}/Makefile" Modified: head/net/avahi-libdns/Makefile ============================================================================== --- head/net/avahi-libdns/Makefile Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-libdns/Makefile Fri Oct 9 21:09:08 2015 (r398960) @@ -21,7 +21,4 @@ AVAHI_PKGCONFIG=avahi-compat-libdns_sd.p CONFLICTS= mDNSResponder-[0-9]* -post-install: - @${RMDIR} ${STAGEDIR}${PREFIX}/etc/avahi - .include "${MASTERDIR}/Makefile" Modified: head/net/avahi-qt4/Makefile ============================================================================== --- head/net/avahi-qt4/Makefile Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-qt4/Makefile Fri Oct 9 21:09:08 2015 (r398960) @@ -20,7 +20,4 @@ AVAHI_SLAVE= qt4 USE_QT4= corelib moc_build AVAHI_PKGCONFIG= avahi-qt4.pc -post-install: - @${RMDIR} ${STAGEDIR}${PREFIX}/etc/avahi - .include "${MASTERDIR}/Makefile" Modified: head/net/avahi-sharp/Makefile ============================================================================== --- head/net/avahi-sharp/Makefile Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/avahi-sharp/Makefile Fri Oct 9 21:09:08 2015 (r398960) @@ -27,7 +27,4 @@ post-patch: ${BUILD_WRKSRC}/avahi-sharp.dll.config.in @${CP} ${WRKSRC}/avahi-sharp/avahi-sharp.dll.config.in ${WRKSRC}/avahi-sharp/avahi-sharp.dll.config -post-install: - @${RMDIR} ${STAGEDIR}${PREFIX}/etc/avahi - .include "${MASTERDIR}/Makefile" Modified: head/net/py-avahi/pkg-plist ============================================================================== --- head/net/py-avahi/pkg-plist Fri Oct 9 20:59:28 2015 (r398959) +++ head/net/py-avahi/pkg-plist Fri Oct 9 21:09:08 2015 (r398960) @@ -1,6 +1,8 @@ bin/avahi-bookmarks bin/avahi-discover lib/avahi/service-types.db +@comment Installed by avahi-app +@comment %%DATADIR%%/service-types %%PYTHON_SITELIBDIR%%/avahi/ServiceTypeDatabase.py %%PYTHON_SITELIBDIR%%/avahi/ServiceTypeDatabase.pyc %%PYTHON_SITELIBDIR%%/avahi/ServiceTypeDatabase.pyo From owner-svn-ports-head@freebsd.org Fri Oct 9 21:23:59 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 E23AF9D2664; Fri, 9 Oct 2015 21:23:58 +0000 (UTC) (envelope-from jason.unovitch@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 B2389B13; Fri, 9 Oct 2015 21:23:58 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by pablk4 with SMTP id lk4so96824725pab.3; Fri, 09 Oct 2015 14:23:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=l20fzrHjDwTxz9t87eyJ9AmroaS6hE7L2AVHRzgKDmc=; b=oW2tXyVZ7JgHNh76MSihsGKion6AOGYDVuVa1j6ag4YibvxMoQEwA84vN5oQYbFbwX aZFSMEpKANMcEt4ClsfXWSgEhRKqF+Jtqp/WnhpE/pgWp+ggjK+P+LWqU1hgSGdl1qZr tQWL3IG4IK+5C4HeBDjqPDd/y/6T3w+cXPEbNBHlmIGVZ10QZ6E2kBmC9rWV2quSu3HW hw0i8GlJcaDr3DQkqyz0K6cGTXjrEiftzQDaqGDM2gGq4ADFa/SRPBBxq8f4QjVznsgV Z9zW8/vgL7Z6kCPHPgkwkHbG6+fgjDCm0VaVerCUO4RhUmEKK1I9rmkTCs62ua5AhfWF ilXg== X-Received: by 10.66.141.70 with SMTP id rm6mr17707842pab.20.1444425838345; Fri, 09 Oct 2015 14:23:58 -0700 (PDT) Received: from xts-bsd.pa-us.unovitch.com (c-174-54-246-90.hsd1.pa.comcast.net. [174.54.246.90]) by smtp.gmail.com with ESMTPSA id rm9sm4260010pab.14.2015.10.09.14.23.54 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Oct 2015 14:23:57 -0700 (PDT) Date: Fri, 9 Oct 2015 21:23:48 +0000 From: Jason Unovitch To: d@delphij.net, Mathieu Arnold Cc: Alex Dupre , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398632 - in head: archivers/php56-zip lang/php55 lang/php56 Message-ID: <20151009212348.GA19922@xts-bsd.pa-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201510050937.t959btSj049099@repo.freebsd.org> <20151009193319.GA23476@xts-bsd.pa-us.unovitch.com> <579AF33F882E317DEA4B19C6@atuin.in.mat.cc> <56182A40.8000805@delphij.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56182A40.8000805@delphij.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 21:23:59 -0000 On Fri, Oct 09, 2015 at 01:57:36PM -0700, Xin Li wrote: > On 10/09/15 13:16, Mathieu Arnold wrote: > > > > > > +--On 9 octobre 2015 19:33:19 +0000 Jason Unovitch > > wrote: > > | On Mon, Oct 05, 2015 at 09:37:55AM +0000, Alex Dupre wrote: > > |> Author: ale > > |> Date: Mon Oct 5 09:37:54 2015 > > |> New Revision: 398632 > > |> URL: https://svnweb.freebsd.org/changeset/ports/398632 > > |> > > |> Log: > > |> Update PHP ports to versions 5.5.30 and 5.6.14. > > |> > > |> PR: 203541 > > |> Submitted by: Jason Unovitch > > |> > > |> Modified: > > |> head/archivers/php56-zip/Makefile > > |> head/lang/php55/Makefile > > |> head/lang/php55/distinfo > > |> head/lang/php56/Makefile > > |> head/lang/php56/distinfo > > |> > > | Alex, > > | The commit message was missing 'MFH: 2015Q4'. Can you ensure this gets > > | taken care of in the quarterly branch? > > > > Jason, > > > > While committers will, from time to time, do the merges to the quarterly > > branch themselves, the ports secteam group[1] is the one ultimately > > responsible for curating the quarterly branch. > > > > 1: https://wiki.freebsd.org/ports-secteam Mathieu, I agree with this. I came across the new release while looking into an unrelated PHP issue and opened the PR, made the VuXML entry, and included a patch with a suggested "Security: " entry. My main reason for bringing this up is the commit message didn't include the Security: line or the MFH: line and it's hard to read minds on whether the intent was for this to be in a quarterly branch or not (Other than the fact that it is PHP and it's probably a security update). > > I've merged as r398957. > > Cheers, Thank you Xin! > -- > Xin LI https://www.delphij.net/ > FreeBSD - The Power to Serve! Live free or die From owner-svn-ports-head@freebsd.org Fri Oct 9 21:41:05 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 0042E9D3147; Fri, 9 Oct 2015 21:41:05 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C02DB7A1; Fri, 9 Oct 2015 21:41:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99Lf3Nw017834; Fri, 9 Oct 2015 21:41:03 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99Lf3H7017833; Fri, 9 Oct 2015 21:41:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510092141.t99Lf3H7017833@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 9 Oct 2015 21:41:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398961 - head/www/calendarserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 21:41:05 -0000 Author: pawel Date: Fri Oct 9 21:41:03 2015 New Revision: 398961 URL: https://svnweb.freebsd.org/changeset/ports/398961 Log: Depend on correct sysutils/py-psutil version to avoid runtime problem. PR: 202369 Submitted by: maintainer Modified: head/www/calendarserver/Makefile Modified: head/www/calendarserver/Makefile ============================================================================== --- head/www/calendarserver/Makefile Fri Oct 9 21:09:08 2015 (r398960) +++ head/www/calendarserver/Makefile Fri Oct 9 21:41:03 2015 (r398961) @@ -2,7 +2,7 @@ PORTNAME= calendarserver PORTVERSION= 5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www python MASTER_SITES= LOCAL/wg PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,7 +20,7 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bas ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.5:${PORTSDIR}/security/py-pycrypto \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:${PORTSDIR}/devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}openssl>=0.13:${PORTSDIR}/security/py-openssl \ - ${PYTHON_PKGNAMEPREFIX}psutil>=1.2:${PORTSDIR}/sysutils/py-psutil \ + ${PYTHON_PKGNAMEPREFIX}psutil121>=1.2:${PORTSDIR}/sysutils/py-psutil121 \ ${PYTHON_PKGNAMEPREFIX}PyGreSQL>=4.1:${PORTSDIR}/databases/py-PyGreSQL \ ${PYTHON_PKGNAMEPREFIX}service_identity>=14.0.0:${PORTSDIR}/security/py-service_identity \ ${PYTHON_PKGNAMEPREFIX}sqlite3>=2.7:${PORTSDIR}/databases/py-sqlite3 \ From owner-svn-ports-head@freebsd.org Fri Oct 9 21:44:29 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 9C1BE9D352F; Fri, 9 Oct 2015 21:44:29 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BA54ADD; Fri, 9 Oct 2015 21:44:29 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99LiSew018754; Fri, 9 Oct 2015 21:44:28 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99LiSWn018751; Fri, 9 Oct 2015 21:44:28 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510092144.t99LiSWn018751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 21:44:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398962 - in head/audio/qjackctl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 21:44:29 -0000 Author: marino Date: Fri Oct 9 21:44:27 2015 New Revision: 398962 URL: https://svnweb.freebsd.org/changeset/ports/398962 Log: audio/qjackctl: Upgrade version 0.3.13 => 0.4.0 PR: 199217 Submitted by: ports fury Modified: head/audio/qjackctl/Makefile head/audio/qjackctl/distinfo head/audio/qjackctl/files/patch-src-qjackctlSetup.cpp Modified: head/audio/qjackctl/Makefile ============================================================================== --- head/audio/qjackctl/Makefile Fri Oct 9 21:41:03 2015 (r398961) +++ head/audio/qjackctl/Makefile Fri Oct 9 21:44:27 2015 (r398962) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qjackctl -DISTVERSION= 0.3.13 +PORTVERSION= 0.4.0 CATEGORIES= audio MASTER_SITES= SF @@ -11,12 +11,9 @@ COMMENT= Qt Interface for the JACK Audio LICENSE= GPLv2 -LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib \ - libjack.so:${PORTSDIR}/audio/jack +LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack USES= gmake -USE_QT4= corelib dbus gui xml \ - linguisttools_build moc_build qmake_build rcc_build uic_build QT_NONSTANDARD= yes GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_ac_moc=${MOC} \ @@ -24,10 +21,28 @@ CONFIGURE_ENV= ac_cv_path_ac_moc=${MOC} ac_cv_path_ac_qmake=${QMAKE} \ ac_cv_path_ac_lupdate=${LUPDATE} \ ac_cv_path_ac_lrelease=${LRELEASE} -CONFIGURE_ARGS= --disable-portaudio INSTALLS_ICONS= yes MAKE_JOBS_UNSAFE=yes +OPTIONS_DEFINE= ALSA PORTAUDIO +OPTIONS_SINGLE= TOOLKIT +OPTIONS_SINGLE_TOOLKIT= QT4 QT5 +OPTIONS_DEFAULT= QT4 + +ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib +ALSA_CONFIGURE_ENABLE= alsa_seq +PORTAUDIO_LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio +PORTAUDIO_CONFIGURE_ENABLE= portaudio +QT4_USE= qt4=corelib,dbus,gui,xml \ + qt4=linguisttools_build \ + qt4=moc_build,qmake_build,rcc_build,uic_build +QT4_CONFIGURE_ENABLE= qt4 +QT5_USE= qt5=core,dbus,gui,widgets,xml \ + qt5=buildtools_build,linguisttools_build,qmake_build +QT5_CXXFLAGS= -fPIC +QT5_CONFIGURE_ENABLE= qt5 +TOOLKIT_DESC= Qt toolkit + post-configure: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o ${PORTNAME}.mak \ ${QMAKE_ARGS} Modified: head/audio/qjackctl/distinfo ============================================================================== --- head/audio/qjackctl/distinfo Fri Oct 9 21:41:03 2015 (r398961) +++ head/audio/qjackctl/distinfo Fri Oct 9 21:44:27 2015 (r398962) @@ -1,2 +1,2 @@ -SHA256 (qjackctl-0.3.13.tar.gz) = 11e0041ff38ac46df466968bd5e0e33986f76b7f099bd75a66fbf2a07c1b1295 -SIZE (qjackctl-0.3.13.tar.gz) = 498208 +SHA256 (qjackctl-0.4.0.tar.gz) = 5b651cc5bd85986bcb36b32943e091c931ba229d58732c1724a200e03762485a +SIZE (qjackctl-0.4.0.tar.gz) = 500534 Modified: head/audio/qjackctl/files/patch-src-qjackctlSetup.cpp ============================================================================== --- head/audio/qjackctl/files/patch-src-qjackctlSetup.cpp Fri Oct 9 21:41:03 2015 (r398961) +++ head/audio/qjackctl/files/patch-src-qjackctlSetup.cpp Fri Oct 9 21:44:27 2015 (r398962) @@ -1,11 +1,11 @@ ---- src/qjackctlSetup.cpp.orig 2007-07-18 12:05:32.000000000 +0200 -+++ src/qjackctlSetup.cpp 2007-09-26 22:24:19.000000000 +0200 -@@ -290,7 +290,7 @@ - preset.iWordLength = m_settings.value("/WordLength", 16).toInt(); - preset.iWait = m_settings.value("/Wait", 21333).toInt(); - preset.iChan = m_settings.value("/Chan", 0).toInt(); -- preset.sDriver = m_settings.value("/Driver", "alsa").toString(); -+ preset.sDriver = m_settings.value("/Driver", "oss").toString(); - preset.sInterface = m_settings.value("/Interface").toString(); - preset.iAudio = m_settings.value("/Audio", 0).toInt(); - preset.iDither = m_settings.value("/Dither", 0).toInt(); +--- src/qjackctlSetup.cpp.orig 2015-07-15 13:30:36 UTC ++++ src/qjackctlSetup.cpp +@@ -34,7 +34,7 @@ + #if defined(WIN32) + #define DEFAULT_DRIVER "portaudio" + #else +-#define DEFAULT_DRIVER "alsa" ++#define DEFAULT_DRIVER "oss" + #endif + + From owner-svn-ports-head@freebsd.org Fri Oct 9 21:55:43 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 950519D3BE2; Fri, 9 Oct 2015 21:55:43 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D9CFA3; Fri, 9 Oct 2015 21:55:43 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99LtgTx021917; Fri, 9 Oct 2015 21:55:42 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99LtgXC021914; Fri, 9 Oct 2015 21:55:42 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510092155.t99LtgXC021914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 21:55:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398963 - head/emulators/advancemenu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 21:55:43 -0000 Author: marino Date: Fri Oct 9 21:55:41 2015 New Revision: 398963 URL: https://svnweb.freebsd.org/changeset/ports/398963 Log: emulators/advancemenu: Upgrade version 2.7 => 2.8 PR: 202847 Submitted by: ports fury Modified: head/emulators/advancemenu/Makefile head/emulators/advancemenu/distinfo head/emulators/advancemenu/pkg-descr Modified: head/emulators/advancemenu/Makefile ============================================================================== --- head/emulators/advancemenu/Makefile Fri Oct 9 21:44:27 2015 (r398962) +++ head/emulators/advancemenu/Makefile Fri Oct 9 21:55:41 2015 (r398963) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= advancemenu -PORTVERSION= 2.7 -PORTREVISION= 2 +PORTVERSION= 2.8 CATEGORIES= emulators -MASTER_SITES= SF/advancemame/${PORTNAME}/${PORTVERSION} +MASTER_SITES= https://github.com/amadvance/advancemame/releases/download/${DISTNAME}/ MAINTAINER= ports@FreeBSD.org COMMENT= Frontend for AdvanceMAME, MAME, MESS, RAINE @@ -32,6 +31,7 @@ OPTIONS_DEFAULT= FREETYPE OPTIONS_DEFAULT_i386= ASM ASM_BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm +ASM_USE= gcc=any ASM_CONFIGURE_ENABLE= asm FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 FREETYPE_CONFIGURE_ENABLE= freetype @@ -50,10 +50,8 @@ do-install: (cd ${WRKSRC}/doc && ${INSTALL_MAN} advmenu.1 \ ${STAGEDIR}${MANPREFIX}/man/man1) @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in HISTORY README RELEASE - (cd ${WRKSRC} && ${INSTALL_DATA} ${i} \ + (cd ${WRKSRC} && ${INSTALL_DATA} HISTORY README RELEASE \ ${STAGEDIR}${DOCSDIR}) -.endfor (cd ${WRKSRC}/doc && ${INSTALL_DATA} advmenu.[ht]* \ ${STAGEDIR}${DOCSDIR}) Modified: head/emulators/advancemenu/distinfo ============================================================================== --- head/emulators/advancemenu/distinfo Fri Oct 9 21:44:27 2015 (r398962) +++ head/emulators/advancemenu/distinfo Fri Oct 9 21:55:41 2015 (r398963) @@ -1,2 +1,2 @@ -SHA256 (advancemenu-2.7.tar.gz) = e635f8d236b08e40587344daa33ef78d50d14e01fb6a7ef74eb6fdb3e80cb224 -SIZE (advancemenu-2.7.tar.gz) = 2371297 +SHA256 (advancemenu-2.8.tar.gz) = b591f85c9785997f113643f3b3e202ea849888f12553cd622ded83499301f5f5 +SIZE (advancemenu-2.8.tar.gz) = 2516361 Modified: head/emulators/advancemenu/pkg-descr ============================================================================== --- head/emulators/advancemenu/pkg-descr Fri Oct 9 21:44:27 2015 (r398962) +++ head/emulators/advancemenu/pkg-descr Fri Oct 9 21:55:41 2015 (r398963) @@ -20,4 +20,4 @@ supported by the SDL library. The main f * Screensaver. A slide show of the game images. * Selectable background and help images with translucency. -WWW: http://advancemame.sourceforge.net/ +WWW: http://www.advancemame.it/ From owner-svn-ports-head@freebsd.org Fri Oct 9 22:04:48 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 0F6809D1168; Fri, 9 Oct 2015 22:04:48 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB4B597B; Fri, 9 Oct 2015 22:04:47 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99M4krp024952; Fri, 9 Oct 2015 22:04:46 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99M4k2b024949; Fri, 9 Oct 2015 22:04:46 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510092204.t99M4k2b024949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Fri, 9 Oct 2015 22:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398964 - head/graphics/ImageMagick7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 22:04:48 -0000 Author: kwm Date: Fri Oct 9 22:04:46 2015 New Revision: 398964 URL: https://svnweb.freebsd.org/changeset/ports/398964 Log: Update ImageMagick snapshot from 20151006. Modified: head/graphics/ImageMagick7/Makefile head/graphics/ImageMagick7/distinfo head/graphics/ImageMagick7/pkg-plist Modified: head/graphics/ImageMagick7/Makefile ============================================================================== --- head/graphics/ImageMagick7/Makefile Fri Oct 9 21:55:41 2015 (r398963) +++ head/graphics/ImageMagick7/Makefile Fri Oct 9 22:04:46 2015 (r398964) @@ -36,7 +36,7 @@ COMMENT= Image processing tools (unstabl LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -DATE= 20150902 +DATE= 20151006 WRKSRC= ${WRKDIR}/${PORTNAME}-7.0.0-0 LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl Modified: head/graphics/ImageMagick7/distinfo ============================================================================== --- head/graphics/ImageMagick7/distinfo Fri Oct 9 21:55:41 2015 (r398963) +++ head/graphics/ImageMagick7/distinfo Fri Oct 9 22:04:46 2015 (r398964) @@ -1,2 +1,2 @@ -SHA256 (ImageMagick-7.0.0-0~beta20150902.tar.xz) = 73d0ce9a26cc2bdb968cfe4f006eec6a5bd60133386f5a9fd441b954f746f44a -SIZE (ImageMagick-7.0.0-0~beta20150902.tar.xz) = 8267628 +SHA256 (ImageMagick-7.0.0-0~beta20151006.tar.xz) = 28d345e9eaeabb455ad415da87188a61d81c1c04d4f28fd2035ce533c40afc6d +SIZE (ImageMagick-7.0.0-0~beta20151006.tar.xz) = 8277272 Modified: head/graphics/ImageMagick7/pkg-plist ============================================================================== --- head/graphics/ImageMagick7/pkg-plist Fri Oct 9 21:55:41 2015 (r398963) +++ head/graphics/ImageMagick7/pkg-plist Fri Oct 9 22:04:46 2015 (r398964) @@ -44,7 +44,6 @@ include/ImageMagick-7/Magick++/STL.h include/ImageMagick-7/Magick++/Statistic.h include/ImageMagick-7/Magick++/TypeMetric.h include/ImageMagick-7/MagickCore/MagickCore.h -include/ImageMagick-7/MagickCore/PreRvIcccm.h include/ImageMagick-7/MagickCore/accelerate.h include/ImageMagick-7/MagickCore/animate.h include/ImageMagick-7/MagickCore/annotate.h @@ -1462,6 +1461,8 @@ man/man1/stream.1.gz %%PORTDOCS%%%%DOCSDIR%%-7/www/connected-components.html %%PORTDOCS%%%%DOCSDIR%%-7/www/contact.html %%PORTDOCS%%%%DOCSDIR%%-7/www/convert.html +%%PORTDOCS%%%%DOCSDIR%%-7/www/css/README.txt +%%PORTDOCS%%%%DOCSDIR%%-7/www/css/bootstrap.css %%PORTDOCS%%%%DOCSDIR%%-7/www/css/magick.css %%PORTDOCS%%%%DOCSDIR%%-7/www/display.html %%PORTDOCS%%%%DOCSDIR%%-7/www/distribute-pixel-cache.html @@ -1480,6 +1481,8 @@ man/man1/stream.1.gz %%PORTDOCS%%%%DOCSDIR%%-7/www/index.html %%PORTDOCS%%%%DOCSDIR%%-7/www/install-source.html %%PORTDOCS%%%%DOCSDIR%%-7/www/jp2.html +%%PORTDOCS%%%%DOCSDIR%%-7/www/js/README.txt +%%PORTDOCS%%%%DOCSDIR%%-7/www/js/bootstrap.js %%PORTDOCS%%%%DOCSDIR%%-7/www/js/magick.js %%PORTDOCS%%%%DOCSDIR%%-7/www/license.html %%PORTDOCS%%%%DOCSDIR%%-7/www/links.html @@ -1487,7 +1490,6 @@ man/man1/stream.1.gz %%PORTDOCS%%%%DOCSDIR%%-7/www/magick-core.html %%PORTDOCS%%%%DOCSDIR%%-7/www/magick-vector-graphics.html %%PORTDOCS%%%%DOCSDIR%%-7/www/magick-wand.html -%%PORTDOCS%%%%DOCSDIR%%-7/www/magick.css %%PORTDOCS%%%%DOCSDIR%%-7/www/magick.html %%PORTDOCS%%%%DOCSDIR%%-7/www/miff.html %%PORTDOCS%%%%DOCSDIR%%-7/www/mogrify.html @@ -1527,8 +1529,6 @@ man/man1/stream.1.gz %%PORTDOCS%%%%DOCSDIR%%-7/www/source/wand.c %%PORTDOCS%%%%DOCSDIR%%-7/www/sponsors.html %%PORTDOCS%%%%DOCSDIR%%-7/www/stream.html -%%PORTDOCS%%%%DOCSDIR%%-7/www/subversion.html %%PORTDOCS%%%%DOCSDIR%%-7/www/support.html -%%PORTDOCS%%%%DOCSDIR%%-7/www/t-shirt.html %%PORTDOCS%%%%DOCSDIR%%-7/www/wand.png %%PORTDOCS%%%%DOCSDIR%%-7/www/webp.html From owner-svn-ports-head@freebsd.org Fri Oct 9 22:07:53 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 F037B9D1317; Fri, 9 Oct 2015 22:07:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF4C6BD8; Fri, 9 Oct 2015 22:07:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99M7pHj025282; Fri, 9 Oct 2015 22:07:51 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99M7pCo025275; Fri, 9 Oct 2015 22:07:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510092207.t99M7pCo025275@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 22:07:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398965 - in head/editors: vile xvile xvile/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 22:07:53 -0000 Author: marino Date: Fri Oct 9 22:07:50 2015 New Revision: 398965 URL: https://svnweb.freebsd.org/changeset/ports/398965 Log: editors/(x)vile: Upgrade version 9.8o => 9.8q PR: 203244 Submitted by: ports fury Modified: head/editors/vile/Makefile head/editors/vile/distinfo head/editors/xvile/Makefile head/editors/xvile/distinfo head/editors/xvile/files/patch-x11menu.c head/editors/xvile/files/patch-x11vile.h head/editors/xvile/pkg-plist Modified: head/editors/vile/Makefile ============================================================================== --- head/editors/vile/Makefile Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/vile/Makefile Fri Oct 9 22:07:50 2015 (r398965) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vile -PORTVERSION= 9.8o +PORTVERSION= 9.8q CATEGORIES= editors MASTER_SITES= ftp://dickey.his.com/vile/current/ \ ftp://invisible-island.net/vile/current/ \ Modified: head/editors/vile/distinfo ============================================================================== --- head/editors/vile/distinfo Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/vile/distinfo Fri Oct 9 22:07:50 2015 (r398965) @@ -1,2 +1,2 @@ -SHA256 (vile-9.8o.tgz) = 45625c060cb9da3d68bba0d308fa61cb6a1cd7c7fd8b0e83aba8890632a19b24 -SIZE (vile-9.8o.tgz) = 2304783 +SHA256 (vile-9.8q.tgz) = 366b2b18ea25e55e7b9b6cc1d2b752f0a4fdc453a0a18aedd5773f456e782307 +SIZE (vile-9.8q.tgz) = 2321373 Modified: head/editors/xvile/Makefile ============================================================================== --- head/editors/xvile/Makefile Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/xvile/Makefile Fri Oct 9 22:07:50 2015 (r398965) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vile -PORTVERSION= 9.8o +PORTVERSION= 9.8q CATEGORIES= editors MASTER_SITES= ftp://dickey.his.com/vile/current/ \ ftp://invisible-island.net/vile/current/ \ @@ -25,15 +25,18 @@ USE_XORG= x11 xext xpm GNU_CONFIGURE= yes CONFIGURE_ENV= cf_cv_crypt_works=yes CONFIGURE_ARGS= --disable-imake \ + --disable-desktop \ --enable-fontset \ + --with-icon-theme \ --with-xpm \ + --with-icondir=${PREFIX}/share/icons \ --with-pixmapdir=${PREFIX}/share/pixmaps MAKEFILE= makefile INSTALL_TARGET= install install-doc install-html CONFLICTS_INSTALL= vile-[0-9]* -OPTIONS_DEFINE= DOCS FILTERS FREETYPE ICONV PERL +OPTIONS_DEFINE= DOCS FILTERS ICONV PERL OPTIONS_RADIO= MENUS OPTIONS_RADIO_MENUS= MOTIF XAW XAW3D OPTIONS_DEFAULT= ICONV @@ -46,7 +49,8 @@ ICONV_CONFIGURE_ON= --with-iconv ${ICONV ICONV_CONFIGURE_OFF= --without-iconv --without-locale MENUS_DESC= Support for menus MOTIF_USES= motif -MOTIF_CONFIGURE_ON= --with-screen=motif +MOTIF_CONFIGURE_ON= --enable-colored-menus \ + --with-screen=motif PERL_USES= perl5 PERL_CONFIGURE_WITH= perl XAW_DESC= X Athena Widgets @@ -66,10 +70,6 @@ PLIST_SUB+= SO_EXT=".so" PLIST_SUB+= SO_EXT="" .endif -.if empty(PORT_OPTIONS:MICONV) -BROKEN= Does not build if ICONV support is disabled -.endif - .if empty(PORT_OPTIONS:MMOTIF) && empty(PORT_OPTIONS:MXAW) && empty(PORT_OPTIONS:MXAW3D) CONFIGURE_ARGS+= --with-screen=x11 .endif @@ -81,12 +81,11 @@ post-patch: s|\($$(DOCDIR)\) \($$(MANDIR)\)|\1 $$(HTMLDIR) \2|' \ ${WRKSRC}/makefile.in @${REINPLACE_CMD} -e \ - '/^Icon/s|=.*|=${PREFIX}/share/pixmaps/vile.xpm| ; \ - /^Categories/s|Application;||' \ + '/^Categories/s|Application;||' \ ${WRKSRC}/macros/*.desktop post-install: (cd ${WRKSRC}/macros && ${INSTALL_DATA} *.desktop \ - ${STAGEDIR}${DESKTOPDIR}) + ${STAGEDIR}${PREFIX}/share/applications) .include Modified: head/editors/xvile/distinfo ============================================================================== --- head/editors/xvile/distinfo Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/xvile/distinfo Fri Oct 9 22:07:50 2015 (r398965) @@ -1,2 +1,2 @@ -SHA256 (vile-9.8o.tgz) = 45625c060cb9da3d68bba0d308fa61cb6a1cd7c7fd8b0e83aba8890632a19b24 -SIZE (vile-9.8o.tgz) = 2304783 +SHA256 (vile-9.8q.tgz) = 366b2b18ea25e55e7b9b6cc1d2b752f0a4fdc453a0a18aedd5773f456e782307 +SIZE (vile-9.8q.tgz) = 2321373 Modified: head/editors/xvile/files/patch-x11menu.c ============================================================================== --- head/editors/xvile/files/patch-x11menu.c Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/xvile/files/patch-x11menu.c Fri Oct 9 22:07:50 2015 (r398965) @@ -1,4 +1,4 @@ ---- x11menu.c.orig +--- x11menu.c.orig 2013-12-07 16:26:12 UTC +++ x11menu.c @@ -29,12 +29,21 @@ #endif Modified: head/editors/xvile/files/patch-x11vile.h ============================================================================== --- head/editors/xvile/files/patch-x11vile.h Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/xvile/files/patch-x11vile.h Fri Oct 9 22:07:50 2015 (r398965) @@ -1,5 +1,5 @@ ---- x11vile.h.orig 2013-04-15 04:09:08.000000000 +0900 -+++ x11vile.h 2014-02-01 21:50:00.000000000 +0900 +--- x11vile.h.orig 2013-04-14 19:09:08 UTC ++++ x11vile.h @@ -282,11 +282,19 @@ #if OPT_MENUS Modified: head/editors/xvile/pkg-plist ============================================================================== --- head/editors/xvile/pkg-plist Fri Oct 9 22:04:46 2015 (r398964) +++ head/editors/xvile/pkg-plist Fri Oct 9 22:07:50 2015 (r398965) @@ -116,6 +116,8 @@ share/applications/xvile.desktop %%PORTDOCS%%%%DOCSDIR%%/oleauto.doc %%PORTDOCS%%%%DOCSDIR%%/perl.doc %%PORTDOCS%%%%DOCSDIR%%/visvile.doc +share/icons/hicolor/48x48/apps/vile.png +share/icons/hicolor/scalable/apps/vile.svg share/pixmaps/vile.xpm %%DATADIR%%/ada.keywords %%DATADIR%%/ant.keywords From owner-svn-ports-head@freebsd.org Fri Oct 9 22:17:30 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 50A9C9D1A9E; Fri, 9 Oct 2015 22:17:30 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1F3E1592; Fri, 9 Oct 2015 22:17:29 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99MHTlV028461; Fri, 9 Oct 2015 22:17:29 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99MHSur028459; Fri, 9 Oct 2015 22:17:28 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201510092217.t99MHSur028459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Fri, 9 Oct 2015 22:17:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398966 - in head/editors/openoffice-4: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 22:17:30 -0000 Author: truckman Date: Fri Oct 9 22:17:28 2015 New Revision: 398966 URL: https://svnweb.freebsd.org/changeset/ports/398966 Log: Removing --enable-symbols=small from CONFIGURE_ARGS allows us to avoid the need to use ${STRIP_CMD}. Fix an intermittent build failure by adding a missing dependency to the port's build framework. This change has been committed to the upstream trunk. Added: head/editors/openoffice-4/files/patch-sdext_prj_build.lst (contents, props changed) Modified: head/editors/openoffice-4/Makefile Modified: head/editors/openoffice-4/Makefile ============================================================================== --- head/editors/openoffice-4/Makefile Fri Oct 9 22:07:50 2015 (r398965) +++ head/editors/openoffice-4/Makefile Fri Oct 9 22:17:28 2015 (r398966) @@ -249,7 +249,6 @@ CONFIGURE_ARGS+= \ --with-system-sane \ --with-system-serf \ --with-system-stdlibs \ - --enable-symbols=small \ --without-stlport \ --with-vendor="FreeBSD ports system" \ --enable-verbose \ @@ -401,10 +400,6 @@ do-install: cd ${WRKSRC}/solver/${AOOXXX}/unxfbsd?.pro/bin/ ; \ ${INSTALL_DATA} ${AOOEXTENSIONS} \ ${STAGEDIR}${PRINSTALLATION_BASEDIR}/extensions/ - @cd ${STAGEDIR}${OOPATH}/program ; \ - ${ECHO_CMD} "stripping executables and shared libraries" ; \ - ${STRIP_CMD} crashrep pagein uri-encode javaldx regmerge \ - regview *.so* *.bin ${FIND} ${STAGEDIR}${PRINSTALLATION_BASEDIR} -type d -exec ${CHMOD} 755 {} \; ${REINPLACE_CMD} \ -e '/^UserInstallation/s/=.*/=$$SYSUSERCONFIG\/${AOOUDIR}/' \ Added: head/editors/openoffice-4/files/patch-sdext_prj_build.lst ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-4/files/patch-sdext_prj_build.lst Fri Oct 9 22:17:28 2015 (r398966) @@ -0,0 +1,8 @@ +--- sdext/prj/build.lst.orig 2014-02-25 08:27:02 UTC ++++ sdext/prj/build.lst +@@ -1,4 +1,4 @@ +-dx sdext : L10N:l10n offuh comphelper unotools readlicense_oo cppu tools cppuhelper sal javaunohelper officecfg LIBXSLT:libxslt xmlhelp NULL ++dx sdext : L10N:l10n offuh comphelper unotools readlicense_oo cppu tools cppuhelper sal javaunohelper officecfg LIBXSLT:libxslt xmlhelp rsc NULL + dx sdext usr1 - all sdext_mkout NULL + dx sdext\prj get - all sdext_prj NULL + dx sdext\source\minimizer nmake - all sdext_minimizer sdext_inc NULL From owner-svn-ports-head@freebsd.org Fri Oct 9 23:03: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 C72769D3A31; Fri, 9 Oct 2015 23:03:42 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78258A97; Fri, 9 Oct 2015 23:03:42 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99N3ftl042876; Fri, 9 Oct 2015 23:03:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99N3fFn042874; Fri, 9 Oct 2015 23:03:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510092303.t99N3fFn042874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 23:03:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398967 - head/audio/qsampler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 23:03:42 -0000 Author: marino Date: Fri Oct 9 23:03:41 2015 New Revision: 398967 URL: https://svnweb.freebsd.org/changeset/ports/398967 Log: audio/qsampler: Upgrade version 0.3.0 => 0.3.1 PR: 199218 submitted by: ports fury Modified: head/audio/qsampler/Makefile head/audio/qsampler/distinfo Modified: head/audio/qsampler/Makefile ============================================================================== --- head/audio/qsampler/Makefile Fri Oct 9 22:17:28 2015 (r398966) +++ head/audio/qsampler/Makefile Fri Oct 9 23:03:41 2015 (r398967) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qsampler -PORTVERSION= 0.3.0 +PORTVERSION= 0.3.1 CATEGORIES= audio MASTER_SITES= SF \ http://download.linuxsampler.org/packages/ @@ -16,12 +16,10 @@ LIB_DEPENDS= libgig.so:${PORTSDIR}/audio liblscp.so:${PORTSDIR}/audio/liblscp RUN_DEPENDS= linuxsampler:${PORTSDIR}/audio/linuxsampler -USES= gmake shared-mime-info -USE_QT4= corelib gui \ - linguisttools_build moc_build qmake_build rcc_build uic_build +USES= gmake pkgconfig shared-mime-info QT_NONSTANDARD= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_path_ac_qmake=${QMAKE} \ +CONFIGURE_ENV= ac_cv_path_ac_cv_qmake=${QMAKE} \ ac_cv_path_ac_moc=${MOC} \ ac_cv_path_ac_uic=${UIC} \ ac_cv_path_ac_rcc=${RCC} \ @@ -29,6 +27,20 @@ CONFIGURE_ENV= ac_cv_path_ac_qmake=${QMA ac_cv_path_ac_lrelease=${LRELEASE} INSTALLS_ICONS= yes +OPTIONS_SINGLE= TOOLKIT +OPTIONS_SINGLE_TOOLKIT= QT4 QT5 +OPTIONS_DEFAULT= QT4 + +QT4_USE= qt4=corelib,gui \ + qt4=linguisttools_build \ + qt4=moc_build,qmake_build,rcc_build,uic_build +QT4_CONFIGURE_ENABLE= qt4 +QT5_USE= qt5=core,gui,widgets \ + qt5=buildtools_build,linguisttools_build,qmake_build +QT5_CONFIGURE_ENABLE= qt5 +QT5_CXXFLAGS= -fPIC +TOOLKIT_DESC= Qt toolkit + post-configure: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o ${PORTNAME}.mak \ ${QMAKE_ARGS} Modified: head/audio/qsampler/distinfo ============================================================================== --- head/audio/qsampler/distinfo Fri Oct 9 22:17:28 2015 (r398966) +++ head/audio/qsampler/distinfo Fri Oct 9 23:03:41 2015 (r398967) @@ -1,2 +1,2 @@ -SHA256 (qsampler-0.3.0.tar.gz) = 260ca0148a7ee6e9c33f0fc1e426fe3b744036c90c1bb96a799d96300d3bf66a -SIZE (qsampler-0.3.0.tar.gz) = 263242 +SHA256 (qsampler-0.3.1.tar.gz) = 024b9bd3fe27ae11246f95c67db25773a48114a1ee9ba5b0f9eb449914a7416d +SIZE (qsampler-0.3.1.tar.gz) = 242876 From owner-svn-ports-head@freebsd.org Sat Oct 10 00:11:25 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 7EE169D17BB; Sat, 10 Oct 2015 00:11:25 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C121B5; Sat, 10 Oct 2015 00:11:25 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A0BOcX062633; Sat, 10 Oct 2015 00:11:24 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A0BO6l062631; Sat, 10 Oct 2015 00:11:24 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201510100011.t9A0BO6l062631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 10 Oct 2015 00:11:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398968 - head/science/p5-Geo-WebService-Elevation-USGS 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: Sat, 10 Oct 2015 00:11:25 -0000 Author: wen Date: Sat Oct 10 00:11:24 2015 New Revision: 398968 URL: https://svnweb.freebsd.org/changeset/ports/398968 Log: - Update to 0.103 Changes: http://cpansearch.perl.org/src/WYANT/Geo-WebService-Elevation-USGS-0.103/Changes Modified: head/science/p5-Geo-WebService-Elevation-USGS/Makefile head/science/p5-Geo-WebService-Elevation-USGS/distinfo Modified: head/science/p5-Geo-WebService-Elevation-USGS/Makefile ============================================================================== --- head/science/p5-Geo-WebService-Elevation-USGS/Makefile Fri Oct 9 23:03:41 2015 (r398967) +++ head/science/p5-Geo-WebService-Elevation-USGS/Makefile Sat Oct 10 00:11:24 2015 (r398968) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-WebService-Elevation-USGS -PORTVERSION= 0.102 +PORTVERSION= 0.103 CATEGORIES= science perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:WYANT Modified: head/science/p5-Geo-WebService-Elevation-USGS/distinfo ============================================================================== --- head/science/p5-Geo-WebService-Elevation-USGS/distinfo Fri Oct 9 23:03:41 2015 (r398967) +++ head/science/p5-Geo-WebService-Elevation-USGS/distinfo Sat Oct 10 00:11:24 2015 (r398968) @@ -1,2 +1,2 @@ -SHA256 (Geo-WebService-Elevation-USGS-0.102.tar.gz) = 1050fb4a71667824fd7c67b1385407c3834e79e4e5c696dbf33e7ebf77a7a0e6 -SIZE (Geo-WebService-Elevation-USGS-0.102.tar.gz) = 40531 +SHA256 (Geo-WebService-Elevation-USGS-0.103.tar.gz) = cfd05d03c41bdd1da55f3acd6996e67e3969288200dd67c1637a332bbe346205 +SIZE (Geo-WebService-Elevation-USGS-0.103.tar.gz) = 40598 From owner-svn-ports-head@freebsd.org Sat Oct 10 01:09: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 58AA59D23CF; Sat, 10 Oct 2015 01:09:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E5501A0; Sat, 10 Oct 2015 01:09:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A199P1078127; Sat, 10 Oct 2015 01:09:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A198tv078125; Sat, 10 Oct 2015 01:09:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510100109.t9A198tv078125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 10 Oct 2015 01:09:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398969 - head/games/concentration/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: Sat, 10 Oct 2015 01:09:10 -0000 Author: amdmi3 Date: Sat Oct 10 01:09:08 2015 New Revision: 398969 URL: https://svnweb.freebsd.org/changeset/ports/398969 Log: - Fix crash due to unterminated string - Regenerate patches MFH: 2015Q4 (blanket) Added: head/games/concentration/files/patch-src_ShiftyEngine.c (contents, props changed) Modified: head/games/concentration/files/patch-src-concentration.c Modified: head/games/concentration/files/patch-src-concentration.c ============================================================================== --- head/games/concentration/files/patch-src-concentration.c Sat Oct 10 00:11:24 2015 (r398968) +++ head/games/concentration/files/patch-src-concentration.c Sat Oct 10 01:09:08 2015 (r398969) @@ -1,6 +1,6 @@ ---- src/concentration.c.orig 2005-11-09 19:05:02.000000000 +0300 -+++ src/concentration.c 2013-06-04 07:00:25.084319599 +0400 -@@ -202,7 +202,7 @@ +--- src/concentration.c.orig 2005-11-09 16:05:02 UTC ++++ src/concentration.c +@@ -202,7 +202,7 @@ char * helpText[] = { /***************************************************** ****************************************************/ Added: head/games/concentration/files/patch-src_ShiftyEngine.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/concentration/files/patch-src_ShiftyEngine.c Sat Oct 10 01:09:08 2015 (r398969) @@ -0,0 +1,11 @@ +--- src/ShiftyEngine.c.orig 2004-09-21 01:08:59 UTC ++++ src/ShiftyEngine.c +@@ -93,7 +93,7 @@ void SE_SetBackground(char * name) + exit(1); + } + +- strncpy(backgroundName, name, len); ++ strncpy(backgroundName, name, len + 1); + } + + /***************************************************** From owner-svn-ports-head@freebsd.org Sat Oct 10 05:44: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 80D11A0AD5F; Sat, 10 Oct 2015 05:44:37 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B5A0E3F; Sat, 10 Oct 2015 05:44:37 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A5iaJ4064841; Sat, 10 Oct 2015 05:44:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A5iZA2064835; Sat, 10 Oct 2015 05:44:35 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510100544.t9A5iZA2064835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 05:44:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398971 - in head/audio/musescore: . 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: Sat, 10 Oct 2015 05:44:37 -0000 Author: marino Date: Sat Oct 10 05:44:35 2015 New Revision: 398971 URL: https://svnweb.freebsd.org/changeset/ports/398971 Log: audio/musescore: Upgrade version 1.3 => 2.0.2 PR: 199214 Submitted by: ports fury Added: head/audio/musescore/files/patch-CMakeLists.txt (contents, props changed) head/audio/musescore/files/patch-thirdparty__qzip__qzip.cpp (contents, props changed) Deleted: head/audio/musescore/files/patch-mscore-mscore-CMakeLists.txt head/audio/musescore/files/patch-mscore__awl__denomspinbox.cpp head/audio/musescore/files/patch-mscore__mscore__measure.cpp head/audio/musescore/files/patch-mscore__mscore__rendermidi.cpp head/audio/musescore/files/patch-mscore_mscore_genft.cpp Modified: head/audio/musescore/Makefile head/audio/musescore/distinfo head/audio/musescore/files/patch-mscore-CMakeLists.txt head/audio/musescore/pkg-plist Modified: head/audio/musescore/Makefile ============================================================================== --- head/audio/musescore/Makefile Sat Oct 10 01:10:20 2015 (r398970) +++ head/audio/musescore/Makefile Sat Oct 10 05:44:35 2015 (r398971) @@ -2,59 +2,62 @@ # $FreeBSD$ PORTNAME= musescore -PORTVERSION= 1.3 -PORTREVISION= 5 +PORTVERSION= 2.0.2 CATEGORIES= audio -MASTER_SITES= SF/mscore/mscore/MuseScore-${PORTVERSION}/ -DISTNAME= mscore-${PORTVERSION} +MASTER_SITES= http://ftp.osuosl.org/pub/musescore/releases/MuseScore-${PORTVERSION}/ +DISTNAME= MuseScore-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Free music composition & notation software LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/mscore/COPYING - -BUILD_DEPENDS= qtscriptgenerator>0:${PORTSDIR}/devel/qtscriptgenerator -LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile -RUN_DEPENDS= qtscriptgenerator>0:${PORTSDIR}/devel/qtscriptgenerator - -USES= desktop-file-utils tar:bzip2 cmake:outsource -USE_QT4= corelib designer gui network script scripttools svg webkit xml \ - linguisttools_build moc_build qmake_build rcc_build uic_build -CMAKE_SOURCE_PATH= ${WRKSRC}/mscore -CMAKE_ARGS= -DBUILD_ALSA:BOOL=OFF -ALL_TARGET= lrelease all -MAKE_JOBS_UNSAFE= yes - -DATADIR= ${PREFIX}/share/mscore-${PORTVERSION} - -PORTDOCS= ChangeLog NEWS README README.scripts - -OPTIONS_DEFINE= DOCS JACK PORTAUDIO -OPTIONS_DEFAULT=PORTAUDIO - -OPTIONS_SUB= yes +LICENSE_FILE= ${WRKSRC}/LICENSE.GPL +LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame \ + libsndfile.so:${PORTSDIR}/audio/libsndfile \ + libvorbis.so:${PORTSDIR}/audio/libvorbis + +USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ + pkgconfig shared-mime-info zip +USE_QT5= concurrent declarative designer help network scripttools svg \ + webkit xml xmlpatterns \ + buildtools_build linguisttools_build qmake_build uitools_build +ALL_TARGET= lrelease manpages all + +DATADIR= ${PREFIX}/share/mscore-${PORTVERSION:R} + +OPTIONS_DEFINE= ALSA JACK PORTAUDIO PULSEAUDIO +OPTIONS_DEFAULT= PORTAUDIO + +ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib +ALSA_CMAKE_ON= -DBUILD_ALSA:BOOL=ON +ALSA_CMAKE_OFF= -DBUILD_ALSA:BOOL=OFF JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack JACK_CMAKE_ON= -DBUILD_JACK:BOOL=ON JACK_CMAKE_OFF= -DBUILD_JACK:BOOL=OFF - PORTAUDIO_LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio PORTAUDIO_CMAKE_ON= -DBUILD_PORTAUDIO:BOOL=ON PORTAUDIO_CMAKE_OFF= -DBUILD_PORTAUDIO:BOOL=OFF +PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio +PULSEAUDIO_CMAKE_ON= -DBUILD_PULSEAUDIO:BOOL=ON +PULSEAUDIO_CMAKE_OFF= -DBUILD_PULSEAUDIO:BOOL=OFF + +.include + +.if ${CHOSEN_COMPILER_TYPE} == clang +CXXFLAGS+= -Wno-inconsistent-missing-override +.endif post-patch: @${FIND} ${WRKSRC} -name "CMakeLists.txt" -print0 | ${XARGS} -0 \ ${REINPLACE_CMD} -e \ - 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|-g -Wall|-Wall|g' -# add newline -.for file in mscore.cpp updatechecker.h webpage.cpp - @${ECHO_CMD} >> ${WRKSRC}/mscore/mscore/${file} -.endfor - -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/mscore/|} ${STAGEDIR}${DOCSDIR} + '/RELEASE/s|-O2 || ; \ + /COMPILE_FLAGS/s|-g || ; \ + /COMPILE_FLAGS/s|$${PCH_INCLUDE} |-include $${PROJECT_BINARY_DIR}/all.h |' + @${REINPLACE_CMD} -e \ + 's||| ; \ + s||| ; \ + s||| ; \ + s|||' ${WRKSRC}/all.h -.include +.include Modified: head/audio/musescore/distinfo ============================================================================== --- head/audio/musescore/distinfo Sat Oct 10 01:10:20 2015 (r398970) +++ head/audio/musescore/distinfo Sat Oct 10 05:44:35 2015 (r398971) @@ -1,2 +1,2 @@ -SHA256 (mscore-1.3.tar.bz2) = a0b60cc892ac0266c58fc6392be72c0a21c3aa7fd0b6e4f1dddad1c8b36be683 -SIZE (mscore-1.3.tar.bz2) = 94704857 +SHA256 (MuseScore-2.0.2.zip) = 21d5339a2a5fa15af6f085a52d3484d2e0d7aee697933150848d19ba6f4764d5 +SIZE (MuseScore-2.0.2.zip) = 47590201 Added: head/audio/musescore/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/musescore/files/patch-CMakeLists.txt Sat Oct 10 05:44:35 2015 (r398971) @@ -0,0 +1,79 @@ +--- CMakeLists.txt.orig 2015-07-16 10:58:43 UTC ++++ CMakeLists.txt +@@ -74,6 +74,10 @@ option(HAS_AUDIOFILE "enable audio expor + option(USE_SYSTEM_QTSINGLEAPPLICATION "Use system QtSingleApplication" OFF) + option(BUILD_LAME "enable mp3 export" ON) # requires libmp3lame + ++option(BUILD_ALSA "Build with support for ALSA." ON) ++option(BUILD_PORTAUDIO "Build with support for portaudio." ON) ++option(BUILD_PULSEAUDIO "Build with support for PulseAudio." ON) ++ + SET(JACK_LONGNAME "jack (jack audio connection kit)") + SET(JACK_MIN_VERSION "0.98.0") + option(BUILD_JACK "Build with support for ${JACK_LONGNAME}. jack >= ${JACK_MIN_VERSION} will be needed." ON) +@@ -194,6 +198,7 @@ endif (APPLE) + ## alsa >= 1.0.0 + ## + ++if (BUILD_ALSA) + if (APPLE OR MINGW) + message("Disabling ALSA support due to OS X or MINGW build.") + set (USE_ALSA 0) +@@ -208,11 +213,17 @@ else (APPLE OR MINGW) + set (HAS_MIDI 1) + endif (NOT ALSA_INCDIR) + endif (APPLE OR MINGW) ++else (BUILD_ALSA) ++ MESSAGE(STATUS "alsa support disabled") ++ set (USE_ALSA 0) ++ set (HAS_MIDI 1) ++endif (BUILD_ALSA) + + ## + ## pulseaudio + ## + ++if (BUILD_PULSEAUDIO) + if (APPLE OR MINGW) + set (USE_PULSEAUDIO 0) + else (APPLE OR MINGW) +@@ -224,6 +235,10 @@ else (APPLE OR MINGW) + message("Pulseaudio not found.") + endif (PULSEAUDIO_FOUND) + endif (APPLE OR MINGW) ++else (BUILD_PULSEAUDIO) ++ MESSAGE(STATUS "PulseAudio support disabled") ++ set (USE_PULSEAUDIO 0) ++endif (BUILD_PULSEAUDIO) + + ## + ## lame +@@ -296,6 +311,7 @@ ENDIF(BUILD_JACK) + ## portaudio + ## + ++if (BUILD_PORTAUDIO) + if (MINGW) + set ( USE_PORTAUDIO 1 ) + set ( USE_PORTMIDI 1 ) +@@ -314,6 +330,11 @@ else (MINGW) + set (USE_PORTMIDI 0) + endif (APPLE) + endif (MINGW) ++else (BUILD_PORTAUDIO) ++ MESSAGE(STATUS "portaudio support disabled") ++ set (USE_PORTAUDIO 0) ++ set (USE_PORTMIDI 0) ++endif (BUILD_PORTAUDIO) + + + if (APPLE) +@@ -431,7 +452,7 @@ if (NOT MINGW AND NOT APPLE) + ) + endif (GZIP_EXECUTABLE AND NOT CMAKE_SYSTEM_NAME MATCHES "OpenBSD") + # install man pages in either compressed or uncompressed form +- install( FILES ${MAN_TARGET} DESTINATION share/man/man1 COMPONENT doc) ++ install( FILES ${MAN_TARGET} DESTINATION man/man1 COMPONENT doc) + # add .MSCZ and .MSCX to MIME database (informs system that filetypes .MSCZ & .MSCX are MuseScore files) + install( FILES ${PROJECT_SOURCE_DIR}/build/musescore.xml DESTINATION share/mime/packages COMPONENT doc) + # Note: must now run "update-mime-database" to apply changes. This is done in the Makefile. Modified: head/audio/musescore/files/patch-mscore-CMakeLists.txt ============================================================================== --- head/audio/musescore/files/patch-mscore-CMakeLists.txt Sat Oct 10 01:10:20 2015 (r398970) +++ head/audio/musescore/files/patch-mscore-CMakeLists.txt Sat Oct 10 05:44:35 2015 (r398971) @@ -1,96 +1,20 @@ ---- mscore/CMakeLists.txt.orig 2012-03-13 22:37:09.000000000 +0900 -+++ mscore/CMakeLists.txt 2012-06-09 20:56:18.000000000 +0900 -@@ -32,7 +32,7 @@ - set(HAS_AUDIOFILE TRUE) # requires libsndfile - set(OSC TRUE) # osc remote control - --set(BUILD_SCRIPTGEN TRUE) #Generate Qt script bindings. (collides with qtscriptgenerator project on several distrib) -+set(BUILD_SCRIPTGEN FALSE) #Generate Qt script bindings. (collides with qtscriptgenerator project on several distrib) - set(STATIC_SCRIPT_BINDINGS FALSE) - set(USE_SSE FALSE) - -@@ -151,6 +151,8 @@ - ## alsa >= 1.0.0 - ## - -+SET(BUILD_ALSA AUTO CACHE STRING "Build with support for ALSA. [ON/OFF/AUTO]") -+IF(BUILD_ALSA) - if (APPLE OR MINGW) - message("Disabling ALSA support due to OS X or MINGW build.") - set (USE_ALSA 0) -@@ -165,6 +167,11 @@ - set (HAS_MIDI 1) - endif (NOT ALSA_INCDIR) - endif (APPLE OR MINGW) -+ELSE(BUILD_ALSA) -+ MESSAGE(STATUS "alsa support disabled") -+ set (USE_ALSA 0) -+ set (HAS_MIDI 1) -+ENDIF(BUILD_ALSA) - - - ## -@@ -219,6 +226,8 @@ - ## portaudio - ## - -+SET(BUILD_PORTAUDIO AUTO CACHE STRING "Build with support for portaudio. [ON/OFF/AUTO]") -+IF(BUILD_PORTAUDIO) - if (MINGW) - set ( USE_PORTAUDIO 1 ) - set ( USE_PORTMIDI 1 ) -@@ -237,6 +246,9 @@ - set (USE_PORTMIDI 0) - endif (APPLE) - endif (MINGW) -+ELSE(BUILD_PORTAUDIO) -+ MESSAGE(STATUS "portaudio support disabled") -+ENDIF(BUILD_PORTAUDIO) - - ## - ## produce config.h file -@@ -257,8 +269,8 @@ - WORKING_DIRECTORY ${PROJECT_BINARY_DIR} - ) - --set(CMAKE_CXX_FLAGS_DEBUG "-g") --set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") -+#set(CMAKE_CXX_FLAGS_DEBUG "-g") -+#set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") - - if (CMAKE_BUILD_TYPE STREQUAL "DEBUG") - if (MINGW) -@@ -294,7 +306,9 @@ - - - ADD_CUSTOM_TARGET(mops1 DEPENDS ${PROJECT_BINARY_DIR}/all.h) --ADD_CUSTOM_TARGET(mops2 DEPENDS ${PCH}) -+if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") -+ADD_CUSTOM_TARGET(mops2 DEPENDS ${PCH}) -+endif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - - - if (NOT MINGW AND NOT APPLE) -@@ -321,9 +335,10 @@ - ${PROJECT_SOURCE_DIR}/mscore - ${PROJECT_BINARY_DIR} - ${PROJECT_BINARY_DIR}/mscore -+ ${PORTAUDIO_INCDIR} - ${ALSA_INCDIR} - ${JACK_INCDIR} -- ${PORTAUDIO_INCDIR} -+ %%LOCALBASE%%/include - ) - - ## -@@ -427,8 +442,8 @@ - - add_custom_target(lrelease - COMMAND ${PROJECT_SOURCE_DIR}/gen-qt-projectfile ${PROJECT_SOURCE_DIR} > mscore.pro -- COMMAND lrelease ${PROJECT_SOURCE_DIR}/share/locale/*.ts -- COMMAND lrelease ${PROJECT_SOURCE_DIR}/share/plugins/musescore.com/translations/*.ts -+ COMMAND lrelease-qt4 ${PROJECT_SOURCE_DIR}/share/locale/*.ts -+ COMMAND lrelease-qt4 ${PROJECT_SOURCE_DIR}/share/plugins/musescore.com/translations/*.ts - WORKING_DIRECTORY ${PROJECT_BINARY_DIR} - ) +--- mscore/CMakeLists.txt.orig 2015-07-16 10:58:43 UTC ++++ mscore/CMakeLists.txt +@@ -474,7 +474,6 @@ else (MINGW) + ${ALSA_LIB} + ${QT_LIBRARIES} + z +- dl + pthread + ) + if (USE_PORTAUDIO) +@@ -509,9 +508,6 @@ + + # gold does not use indirect shared libraries for symbol resolution, Linux only + if (NOT APPLE) +- if(USE_JACK) +- target_link_libraries(mscore dl) +- endif(USE_JACK) + target_link_libraries(mscore rt) + endif (NOT APPLE) Added: head/audio/musescore/files/patch-thirdparty__qzip__qzip.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/musescore/files/patch-thirdparty__qzip__qzip.cpp Sat Oct 10 05:44:35 2015 (r398971) @@ -0,0 +1,12 @@ +--- thirdparty/qzip/qzip.cpp.orig 2015-07-16 10:58:43 UTC ++++ thirdparty/qzip/qzip.cpp +@@ -45,6 +45,9 @@ + #include "qzipreader_p.h" + #include "qzipwriter_p.h" + ++#include ++#include ++ + #include + + #if defined(Q_OS_WIN) or defined(Q_OS_ANDROID) Modified: head/audio/musescore/pkg-plist ============================================================================== --- head/audio/musescore/pkg-plist Sat Oct 10 01:10:20 2015 (r398970) +++ head/audio/musescore/pkg-plist Sat Oct 10 05:44:35 2015 (r398971) @@ -1,29 +1,75 @@ bin/mscore -%%QT_PLUGINDIR%%/designer/libawlplugin.so +man/man1/mscore.1.gz share/applications/mscore.desktop +share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml+xml.png +share/icons/hicolor/48x48/mimetypes/application-vnd.recordare.musicxml.png +share/icons/hicolor/48x48/mimetypes/application-x-musescore+xml.png +share/icons/hicolor/48x48/mimetypes/application-x-musescore.png +share/icons/hicolor/64x64/apps/mscore.png +share/icons/hicolor/scalable/apps/mscore.svg +share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml+xml.svg +share/icons/hicolor/scalable/mimetypes/application-vnd.recordare.musicxml.svg +share/icons/hicolor/scalable/mimetypes/application-x-musescore+xml.svg +share/icons/hicolor/scalable/mimetypes/application-x-musescore.svg +share/mime/packages/musescore.xml %%DATADIR%%/demos/All_Dudes.mscz -%%DATADIR%%/demos/Estudio-No1-Tarrega.mscx -%%DATADIR%%/demos/PlanxtyCarolan.mscx %%DATADIR%%/demos/Reunion.mscz %%DATADIR%%/demos/Triumph.mscz -%%DATADIR%%/demos/adeste.mscx -%%DATADIR%%/demos/bach-bc2.mscx -%%DATADIR%%/demos/golliwogg.mscx -%%DATADIR%%/demos/inv1.mscx -%%DATADIR%%/demos/inv10.mscx -%%DATADIR%%/demos/inv13.mscx -%%DATADIR%%/demos/inv4.mscx -%%DATADIR%%/demos/inv6.mscx -%%DATADIR%%/demos/italian-1.mscz -%%DATADIR%%/demos/praeludium1.mscx -%%DATADIR%%/demos/prelude.mscx -%%DATADIR%%/demos/promenade.mscx -%%DATADIR%%/demos/sarabande-gfh.mscz -%%DATADIR%%/demos/sarabande.xml -%%DATADIR%%/demos/scales.mscx -%%DATADIR%%/demos/schnee.mscz -%%DATADIR%%/demos/sonata16.mscx -%%DATADIR%%/demos/wtc1fuga5.mscz +%%DATADIR%%/instruments/instruments.xml +%%DATADIR%%/locale/instruments_af.qm +%%DATADIR%%/locale/instruments_ar.qm +%%DATADIR%%/locale/instruments_ast.qm +%%DATADIR%%/locale/instruments_be.qm +%%DATADIR%%/locale/instruments_bg.qm +%%DATADIR%%/locale/instruments_ca.qm +%%DATADIR%%/locale/instruments_ca@valencia.qm +%%DATADIR%%/locale/instruments_cs.qm +%%DATADIR%%/locale/instruments_cy.qm +%%DATADIR%%/locale/instruments_da.qm +%%DATADIR%%/locale/instruments_de.qm +%%DATADIR%%/locale/instruments_el.qm +%%DATADIR%%/locale/instruments_en_GB.qm +%%DATADIR%%/locale/instruments_en_US.qm +%%DATADIR%%/locale/instruments_eo.qm +%%DATADIR%%/locale/instruments_es.qm +%%DATADIR%%/locale/instruments_et.qm +%%DATADIR%%/locale/instruments_eu.qm +%%DATADIR%%/locale/instruments_fa.qm +%%DATADIR%%/locale/instruments_fi.qm +%%DATADIR%%/locale/instruments_fo.qm +%%DATADIR%%/locale/instruments_fr.qm +%%DATADIR%%/locale/instruments_gl.qm +%%DATADIR%%/locale/instruments_he.qm +%%DATADIR%%/locale/instruments_hi_IN.qm +%%DATADIR%%/locale/instruments_hr.qm +%%DATADIR%%/locale/instruments_hu.qm +%%DATADIR%%/locale/instruments_id.qm +%%DATADIR%%/locale/instruments_it.qm +%%DATADIR%%/locale/instruments_ja.qm +%%DATADIR%%/locale/instruments_ka.qm +%%DATADIR%%/locale/instruments_ko.qm +%%DATADIR%%/locale/instruments_lt.qm +%%DATADIR%%/locale/instruments_lv.qm +%%DATADIR%%/locale/instruments_mn_MN.qm +%%DATADIR%%/locale/instruments_nb.qm +%%DATADIR%%/locale/instruments_nl.qm +%%DATADIR%%/locale/instruments_nn.qm +%%DATADIR%%/locale/instruments_pl.qm +%%DATADIR%%/locale/instruments_pt.qm +%%DATADIR%%/locale/instruments_pt_BR.qm +%%DATADIR%%/locale/instruments_ro.qm +%%DATADIR%%/locale/instruments_ru.qm +%%DATADIR%%/locale/instruments_sk.qm +%%DATADIR%%/locale/instruments_sl.qm +%%DATADIR%%/locale/instruments_sr.qm +%%DATADIR%%/locale/instruments_sv.qm +%%DATADIR%%/locale/instruments_th.qm +%%DATADIR%%/locale/instruments_tr.qm +%%DATADIR%%/locale/instruments_uk.qm +%%DATADIR%%/locale/instruments_uz@Latn.qm +%%DATADIR%%/locale/instruments_vi.qm +%%DATADIR%%/locale/instruments_zh_CN.qm +%%DATADIR%%/locale/instruments_zh_TW.qm %%DATADIR%%/locale/languages.xml %%DATADIR%%/locale/mscore_af.qm %%DATADIR%%/locale/mscore_ar.qm @@ -31,7 +77,9 @@ share/applications/mscore.desktop %%DATADIR%%/locale/mscore_be.qm %%DATADIR%%/locale/mscore_bg.qm %%DATADIR%%/locale/mscore_ca.qm +%%DATADIR%%/locale/mscore_ca@valencia.qm %%DATADIR%%/locale/mscore_cs.qm +%%DATADIR%%/locale/mscore_cy.qm %%DATADIR%%/locale/mscore_da.qm %%DATADIR%%/locale/mscore_de.qm %%DATADIR%%/locale/mscore_el.qm @@ -53,10 +101,14 @@ share/applications/mscore.desktop %%DATADIR%%/locale/mscore_id.qm %%DATADIR%%/locale/mscore_it.qm %%DATADIR%%/locale/mscore_ja.qm +%%DATADIR%%/locale/mscore_ka.qm %%DATADIR%%/locale/mscore_ko.qm %%DATADIR%%/locale/mscore_lt.qm +%%DATADIR%%/locale/mscore_lv.qm +%%DATADIR%%/locale/mscore_mn_MN.qm %%DATADIR%%/locale/mscore_nb.qm %%DATADIR%%/locale/mscore_nl.qm +%%DATADIR%%/locale/mscore_nn.qm %%DATADIR%%/locale/mscore_pl.qm %%DATADIR%%/locale/mscore_pt.qm %%DATADIR%%/locale/mscore_pt_BR.qm @@ -64,10 +116,12 @@ share/applications/mscore.desktop %%DATADIR%%/locale/mscore_ru.qm %%DATADIR%%/locale/mscore_sk.qm %%DATADIR%%/locale/mscore_sl.qm +%%DATADIR%%/locale/mscore_sr.qm %%DATADIR%%/locale/mscore_sv.qm %%DATADIR%%/locale/mscore_th.qm %%DATADIR%%/locale/mscore_tr.qm %%DATADIR%%/locale/mscore_uk.qm +%%DATADIR%%/locale/mscore_uz@Latn.qm %%DATADIR%%/locale/mscore_vi.qm %%DATADIR%%/locale/mscore_zh_CN.qm %%DATADIR%%/locale/mscore_zh_TW.qm @@ -90,6 +144,7 @@ share/applications/mscore.desktop %%DATADIR%%/locale/qt_ja.qm %%DATADIR%%/locale/qt_ko.qm %%DATADIR%%/locale/qt_lt.qm +%%DATADIR%%/locale/qt_nb.qm %%DATADIR%%/locale/qt_nl.qm %%DATADIR%%/locale/qt_pl.qm %%DATADIR%%/locale/qt_pt.qm @@ -103,88 +158,169 @@ share/applications/mscore.desktop %%DATADIR%%/locale/qt_vi.qm %%DATADIR%%/locale/qt_zh_CN.qm %%DATADIR%%/locale/qt_zh_TW.qm -%%DATADIR%%/man/MuseScore-da.pdf -%%DATADIR%%/man/MuseScore-de.pdf -%%DATADIR%%/man/MuseScore-en.pdf -%%DATADIR%%/man/MuseScore-es.pdf -%%DATADIR%%/man/MuseScore-fi.pdf -%%DATADIR%%/man/MuseScore-fr.pdf -%%DATADIR%%/man/MuseScore-gl.pdf -%%DATADIR%%/man/MuseScore-hu.pdf -%%DATADIR%%/man/MuseScore-it.pdf -%%DATADIR%%/man/MuseScore-ja.pdf -%%DATADIR%%/man/MuseScore-nb.pdf -%%DATADIR%%/man/MuseScore-nl.pdf -%%DATADIR%%/man/MuseScore-pl.pdf -%%DATADIR%%/man/MuseScore-pt_BR.pdf -%%DATADIR%%/man/MuseScore-ro.pdf -%%DATADIR%%/man/MuseScore-ru.pdf -%%DATADIR%%/man/MuseScore-zh_CN.pdf -%%DATADIR%%/plugins/abc_import/abc_import.js -%%DATADIR%%/plugins/abc_import/abc_import.ui -%%DATADIR%%/plugins/break/break.js -%%DATADIR%%/plugins/break/break.ui -%%DATADIR%%/plugins/chordchart.js -%%DATADIR%%/plugins/colornotes.js -%%DATADIR%%/plugins/musescore.com/README.txt -%%DATADIR%%/plugins/musescore.com/icons/filesaveonline.svg -%%DATADIR%%/plugins/musescore.com/musescore.com.js -%%DATADIR%%/plugins/musescore.com/translations/locale_de.qm -%%DATADIR%%/plugins/musescore.com/translations/locale_es.qm -%%DATADIR%%/plugins/musescore.com/translations/locale_fr.qm -%%DATADIR%%/plugins/musescore.com/ui/authorize_dialog.ui -%%DATADIR%%/plugins/musescore.com/ui/musescore_dialog.ui -%%DATADIR%%/plugins/musescore.com/ui/musescore_progress.ui -%%DATADIR%%/plugins/musescore.com/ui/start_browser_dialog.ui -%%DATADIR%%/plugins/notenames.js -%%DATADIR%%/plugins/removenotes.js -%%DATADIR%%/plugins/removenotes.ui -%%DATADIR%%/sound/TimGM6mb.sf2 -%%DATADIR%%/styles/Jazz_Lead_Sheet.mss +%%DATADIR%%/manual/plugins/accidental.html +%%DATADIR%%/manual/plugins/ambitus.html +%%DATADIR%%/manual/plugins/arpeggio.html +%%DATADIR%%/manual/plugins/articulation.html +%%DATADIR%%/manual/plugins/barline.html +%%DATADIR%%/manual/plugins/beam.html +%%DATADIR%%/manual/plugins/bend.html +%%DATADIR%%/manual/plugins/box.html +%%DATADIR%%/manual/plugins/bracket.html +%%DATADIR%%/manual/plugins/breath.html +%%DATADIR%%/manual/plugins/bsymbol.html +%%DATADIR%%/manual/plugins/chord.html +%%DATADIR%%/manual/plugins/chordline.html +%%DATADIR%%/manual/plugins/chordrest.html +%%DATADIR%%/manual/plugins/clef.html +%%DATADIR%%/manual/plugins/compound.html +%%DATADIR%%/manual/plugins/cursor.html +%%DATADIR%%/manual/plugins/durationelement.html +%%DATADIR%%/manual/plugins/dynamic.html +%%DATADIR%%/manual/plugins/element.html +%%DATADIR%%/manual/plugins/excerpt.html +%%DATADIR%%/manual/plugins/fbox.html +%%DATADIR%%/manual/plugins/figuredbass.html +%%DATADIR%%/manual/plugins/figuredbassitem.html +%%DATADIR%%/manual/plugins/fileio.html +%%DATADIR%%/manual/plugins/fingering.html +%%DATADIR%%/manual/plugins/fretdiagram.html +%%DATADIR%%/manual/plugins/fsymbol.html +%%DATADIR%%/manual/plugins/glissando.html +%%DATADIR%%/manual/plugins/glissandosegment.html +%%DATADIR%%/manual/plugins/groups.html +%%DATADIR%%/manual/plugins/hairpin.html +%%DATADIR%%/manual/plugins/hairpinsegment.html +%%DATADIR%%/manual/plugins/harmony.html +%%DATADIR%%/manual/plugins/hbox.html +%%DATADIR%%/manual/plugins/hook.html +%%DATADIR%%/manual/plugins/image.html +%%DATADIR%%/manual/plugins/instrumentchange.html +%%DATADIR%%/manual/plugins/jump.html +%%DATADIR%%/manual/plugins/keysig.html +%%DATADIR%%/manual/plugins/layoutbreak.html +%%DATADIR%%/manual/plugins/ledgerline.html +%%DATADIR%%/manual/plugins/line.html +%%DATADIR%%/manual/plugins/linesegment.html +%%DATADIR%%/manual/plugins/lyrics.html +%%DATADIR%%/manual/plugins/manual.css +%%DATADIR%%/manual/plugins/marker.html +%%DATADIR%%/manual/plugins/measure.html +%%DATADIR%%/manual/plugins/measurebase.html +%%DATADIR%%/manual/plugins/mscore.png +%%DATADIR%%/manual/plugins/musescore.html +%%DATADIR%%/manual/plugins/note.html +%%DATADIR%%/manual/plugins/notedot.html +%%DATADIR%%/manual/plugins/notehead.html +%%DATADIR%%/manual/plugins/noteline.html +%%DATADIR%%/manual/plugins/ossia.html +%%DATADIR%%/manual/plugins/ottava.html +%%DATADIR%%/manual/plugins/ottavasegment.html +%%DATADIR%%/manual/plugins/page.html +%%DATADIR%%/manual/plugins/pageformat.html +%%DATADIR%%/manual/plugins/part.html +%%DATADIR%%/manual/plugins/pedal.html +%%DATADIR%%/manual/plugins/pedalsegment.html +%%DATADIR%%/manual/plugins/plugins.html +%%DATADIR%%/manual/plugins/qprocess.html +%%DATADIR%%/manual/plugins/rehearsalmark.html +%%DATADIR%%/manual/plugins/repeatmeasure.html +%%DATADIR%%/manual/plugins/rest.html +%%DATADIR%%/manual/plugins/score.html +%%DATADIR%%/manual/plugins/scoreview.html +%%DATADIR%%/manual/plugins/segment.html +%%DATADIR%%/manual/plugins/sline.html +%%DATADIR%%/manual/plugins/slur.html +%%DATADIR%%/manual/plugins/slursegment.html +%%DATADIR%%/manual/plugins/slurtie.html +%%DATADIR%%/manual/plugins/spacer.html +%%DATADIR%%/manual/plugins/spanner.html +%%DATADIR%%/manual/plugins/spannersegment.html +%%DATADIR%%/manual/plugins/stafflines.html +%%DATADIR%%/manual/plugins/staffstate.html +%%DATADIR%%/manual/plugins/stafftext.html +%%DATADIR%%/manual/plugins/stem.html +%%DATADIR%%/manual/plugins/stemslash.html +%%DATADIR%%/manual/plugins/svggenerator.html +%%DATADIR%%/manual/plugins/symbol.html +%%DATADIR%%/manual/plugins/system.html +%%DATADIR%%/manual/plugins/tbox.html +%%DATADIR%%/manual/plugins/tempotext.html +%%DATADIR%%/manual/plugins/text.html +%%DATADIR%%/manual/plugins/textline.html +%%DATADIR%%/manual/plugins/textlinesegment.html +%%DATADIR%%/manual/plugins/tie.html +%%DATADIR%%/manual/plugins/timesig.html +%%DATADIR%%/manual/plugins/tremolo.html +%%DATADIR%%/manual/plugins/tremolobar.html +%%DATADIR%%/manual/plugins/trill.html +%%DATADIR%%/manual/plugins/trillsegment.html +%%DATADIR%%/manual/plugins/tuplet.html +%%DATADIR%%/manual/plugins/vbox.html +%%DATADIR%%/manual/plugins/volta.html +%%DATADIR%%/manual/plugins/voltasegment.html +%%DATADIR%%/plugins/abc_import.qml +%%DATADIR%%/plugins/colornotes.qml +%%DATADIR%%/plugins/createscore.qml +%%DATADIR%%/plugins/helloqml/helloqml.qml +%%DATADIR%%/plugins/helloqml/translations/locale_de.qm +%%DATADIR%%/plugins/helloqml/translations/locale_de.ts +%%DATADIR%%/plugins/notenames.qml +%%DATADIR%%/plugins/panel.qml +%%DATADIR%%/plugins/random.qml +%%DATADIR%%/plugins/random2.qml +%%DATADIR%%/plugins/run.qml +%%DATADIR%%/plugins/scorelist.qml +%%DATADIR%%/plugins/view.qml +%%DATADIR%%/plugins/walk.qml +%%DATADIR%%/sound/FluidR3Mono_GM.sf3 +%%DATADIR%%/sound/FluidR3Mono_License.md %%DATADIR%%/styles/MuseJazz.mss %%DATADIR%%/styles/cchords_muse.xml %%DATADIR%%/styles/cchords_nrb.xml %%DATADIR%%/styles/cchords_rb.xml %%DATADIR%%/styles/cchords_sym.xml %%DATADIR%%/styles/chords.xml +%%DATADIR%%/styles/chords_jazz.xml +%%DATADIR%%/styles/chords_std.xml %%DATADIR%%/styles/jazzchords.xml -%%DATADIR%%/styles/leadsheet.mss %%DATADIR%%/styles/stdchords.xml -%%DATADIR%%/templates/Chamber Orchestra.mscx -%%DATADIR%%/templates/Choir SATB with Piano.mscx -%%DATADIR%%/templates/Choir SATB.mscx -%%DATADIR%%/templates/Concert Band.mscx -%%DATADIR%%/templates/Hymn.mscz -%%DATADIR%%/templates/Jazz Big Band.mscz -%%DATADIR%%/templates/Jazz Combo.mscz -%%DATADIR%%/templates/Jazz Lead Sheet.mscz -%%DATADIR%%/templates/Lead Sheet.mscx -%%DATADIR%%/templates/Piano.mscx -%%DATADIR%%/templates/SA Festival Series.mscz -%%DATADIR%%/templates/SA General Series.mscz -%%DATADIR%%/templates/SA Triumph Series.mscz -%%DATADIR%%/templates/UK Brass Band.mscz +%%DATADIR%%/templates/01-General/00-Blank.mscz +%%DATADIR%%/templates/01-General/01-Treble_Clef.mscz +%%DATADIR%%/templates/01-General/02-Bass_Clef.mscz +%%DATADIR%%/templates/01-General/03-Grand_Staff.mscz +%%DATADIR%%/templates/02-Choral/01-SATB.mscz +%%DATADIR%%/templates/02-Choral/02-SATB_+_Organ.mscz +%%DATADIR%%/templates/02-Choral/03-SATB_+_Piano.mscz +%%DATADIR%%/templates/02-Choral/04-SATB_Closed_Score.mscz +%%DATADIR%%/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz +%%DATADIR%%/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz +%%DATADIR%%/templates/02-Choral/07-Voice_+_Piano.mscz +%%DATADIR%%/templates/02-Choral/08-Barbershop_Quartet.mscz +%%DATADIR%%/templates/02-Choral/09-Liturgical_Unmetrical.mscz +%%DATADIR%%/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz +%%DATADIR%%/templates/03-Chamber_Music/01-String_Quartet.mscz +%%DATADIR%%/templates/03-Chamber_Music/02-Wind_Quartet.mscz +%%DATADIR%%/templates/03-Chamber_Music/03-Wind_Quintet.mscz +%%DATADIR%%/templates/03-Chamber_Music/04-Saxophone_Quartet.mscz +%%DATADIR%%/templates/03-Chamber_Music/05-Brass_Quartet.mscz +%%DATADIR%%/templates/03-Chamber_Music/06-Brass_Quintet.mscz +%%DATADIR%%/templates/04-Solo/01-Guitar.mscz +%%DATADIR%%/templates/04-Solo/02-Guitar_+_Tablature.mscz +%%DATADIR%%/templates/04-Solo/03-Guitar_Tablature.mscz +%%DATADIR%%/templates/04-Solo/04-Piano.mscz +%%DATADIR%%/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz +%%DATADIR%%/templates/05-Jazz/02-Big_Band.mscz +%%DATADIR%%/templates/05-Jazz/03-Jazz_Combo.mscz +%%DATADIR%%/templates/06-Popular/01-Rock_Band.mscz +%%DATADIR%%/templates/07-Band/01-Concert_Band.mscz +%%DATADIR%%/templates/08-Orchestral/01-Classical_Orchestra.mscz +%%DATADIR%%/templates/08-Orchestral/02-Concert_Orchestra.mscz +%%DATADIR%%/templates/08-Orchestral/03-String_Orchestra.mscz %%DATADIR%%/templates/drumset_fr.drm -%%DATADIR%%/templates/instruments.xml -%%DATADIR%%/templates/instruments_ca.xml -%%DATADIR%%/templates/instruments_de.xml -%%DATADIR%%/templates/instruments_es.xml -%%DATADIR%%/templates/instruments_fr.xml -%%DATADIR%%/templates/instruments_gl.xml -%%DATADIR%%/templates/instruments_it.xml -%%DATADIR%%/templates/instruments_ja.xml -%%DATADIR%%/templates/instruments_nb.xml -%%DATADIR%%/templates/instruments_nl.xml -%%DATADIR%%/templates/instruments_pt.xml -%%DATADIR%%/templates/instruments_pt_BR.xml -%%DATADIR%%/templates/instruments_ru.xml -%%DATADIR%%/templates/instruments_uk.xml -%%DATADIR%%/templates/instruments_zh_CN.xml -%%DATADIR%%/templates/instruments_zh_TW.xml +%%DATADIR%%/templates/orchestral.drm %%DATADIR%%/wallpaper/paper1.png %%DATADIR%%/wallpaper/paper2.png %%DATADIR%%/wallpaper/paper3.png %%DATADIR%%/wallpaper/paper4.png %%DATADIR%%/wallpaper/paper5.png -share/pixmaps/mscore.png -share/pixmaps/mscore.xpm From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05: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 7AB0D9D26B5; Sat, 10 Oct 2015 07:05:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B2367C2; Sat, 10 Oct 2015 07:05:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75JWs088144; Sat, 10 Oct 2015 07:05:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75Juf088142; Sat, 10 Oct 2015 07:05:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75Juf088142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398972 - head/editors/vim 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: Sat, 10 Oct 2015 07:05:20 -0000 Author: sunpoet Date: Sat Oct 10 07:05:19 2015 New Revision: 398972 URL: https://svnweb.freebsd.org/changeset/ports/398972 Log: - Update to 7.4.891 Changes: https://github.com/vim/vim/commits/master Modified: head/editors/vim/Makefile head/editors/vim/distinfo Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Sat Oct 10 05:44:35 2015 (r398971) +++ head/editors/vim/Makefile Sat Oct 10 07:05:19 2015 (r398972) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vim -PORTVERSION= 7.4.884 +PORTVERSION= 7.4.891 DISTVERSIONPREFIX= v CATEGORIES?= editors Modified: head/editors/vim/distinfo ============================================================================== --- head/editors/vim/distinfo Sat Oct 10 05:44:35 2015 (r398971) +++ head/editors/vim/distinfo Sat Oct 10 07:05:19 2015 (r398972) @@ -1,2 +1,2 @@ -SHA256 (vim-vim-v7.4.884_GH0.tar.bz2) = 39a6b1692c0052ef2c64d8eea838ec0ee7dafdb601e739625600718aceaaa1ab -SIZE (vim-vim-v7.4.884_GH0.tar.bz2) = 12216115 +SHA256 (vim-vim-v7.4.891_GH0.tar.bz2) = d9c0689cd3efb10ffc00b7f6b05304ee54be6bbbae85d882e0bce69b11aec523 +SIZE (vim-vim-v7.4.891_GH0.tar.bz2) = 12284471 From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05:25 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 381869D26E0; Sat, 10 Oct 2015 07:05:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 028CB7DA; Sat, 10 Oct 2015 07:05:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75OrX088258; Sat, 10 Oct 2015 07:05:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75Na0088256; Sat, 10 Oct 2015 07:05:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75Na0088256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398973 - head/misc/pciids 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: Sat, 10 Oct 2015 07:05:25 -0000 Author: sunpoet Date: Sat Oct 10 07:05:23 2015 New Revision: 398973 URL: https://svnweb.freebsd.org/changeset/ports/398973 Log: - Update to 20151007 Changes: http://people.FreeBSD.org/~sunpoet/pciids-20151007.diff Modified: head/misc/pciids/Makefile head/misc/pciids/distinfo Modified: head/misc/pciids/Makefile ============================================================================== --- head/misc/pciids/Makefile Sat Oct 10 07:05:19 2015 (r398972) +++ head/misc/pciids/Makefile Sat Oct 10 07:05:23 2015 (r398973) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pciids -PORTVERSION= 20150924 +PORTVERSION= 20151007 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Modified: head/misc/pciids/distinfo ============================================================================== --- head/misc/pciids/distinfo Sat Oct 10 07:05:19 2015 (r398972) +++ head/misc/pciids/distinfo Sat Oct 10 07:05:23 2015 (r398973) @@ -1,2 +1,2 @@ -SHA256 (pciids-20150924.tar.xz) = 690479b1c806963b2ea7f256a58c46f17774524caffd409a55ede70cad834d1b -SIZE (pciids-20150924.tar.xz) = 179316 +SHA256 (pciids-20151007.tar.xz) = 455961851c6ec4c926b5280c829883ae137760ef92a57c423526b33d2e62ebcb +SIZE (pciids-20151007.tar.xz) = 179556 From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05:29 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 EF5AE9D2703; Sat, 10 Oct 2015 07:05:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B81448AC; Sat, 10 Oct 2015 07:05:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75SSh088375; Sat, 10 Oct 2015 07:05:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75Sq5088373; Sat, 10 Oct 2015 07:05:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75Sq5088373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398974 - head/misc/usbids 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: Sat, 10 Oct 2015 07:05:30 -0000 Author: sunpoet Date: Sat Oct 10 07:05:28 2015 New Revision: 398974 URL: https://svnweb.freebsd.org/changeset/ports/398974 Log: - Update to 20150928 Changes: http://people.FreeBSD.org/~sunpoet/usbids-20150928.diff Modified: head/misc/usbids/Makefile head/misc/usbids/distinfo Modified: head/misc/usbids/Makefile ============================================================================== --- head/misc/usbids/Makefile Sat Oct 10 07:05:23 2015 (r398973) +++ head/misc/usbids/Makefile Sat Oct 10 07:05:28 2015 (r398974) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= usbids -PORTVERSION= 20150919 +PORTVERSION= 20150928 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Modified: head/misc/usbids/distinfo ============================================================================== --- head/misc/usbids/distinfo Sat Oct 10 07:05:23 2015 (r398973) +++ head/misc/usbids/distinfo Sat Oct 10 07:05:28 2015 (r398974) @@ -1,2 +1,2 @@ -SHA256 (usbids-20150919.tar.xz) = 307666af989503d7ef5bb2f8789bfc45e650c20e79443295c79341f910ce5339 -SIZE (usbids-20150919.tar.xz) = 155164 +SHA256 (usbids-20150928.tar.xz) = 304ff4d96872b0dc82c83ed40fd78616e3a1ab56f4de400420c5166b7e4e546f +SIZE (usbids-20150928.tar.xz) = 155236 From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05:35 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 5726C9D273B; Sat, 10 Oct 2015 07:05:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D801E99B; Sat, 10 Oct 2015 07:05:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75XfR088508; Sat, 10 Oct 2015 07:05:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75X58088505; Sat, 10 Oct 2015 07:05:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75X58088505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398975 - head/www/npm 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: Sat, 10 Oct 2015 07:05:35 -0000 Author: sunpoet Date: Sat Oct 10 07:05:33 2015 New Revision: 398975 URL: https://svnweb.freebsd.org/changeset/ports/398975 Log: - Update to 2.14.7 Changes: https://github.com/npm/npm/releases Modified: head/www/npm/Makefile head/www/npm/distinfo head/www/npm/pkg-plist Modified: head/www/npm/Makefile ============================================================================== --- head/www/npm/Makefile Sat Oct 10 07:05:28 2015 (r398974) +++ head/www/npm/Makefile Sat Oct 10 07:05:33 2015 (r398975) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= npm -PORTVERSION= 2.14.4 +PORTVERSION= 2.14.7 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet Modified: head/www/npm/distinfo ============================================================================== --- head/www/npm/distinfo Sat Oct 10 07:05:28 2015 (r398974) +++ head/www/npm/distinfo Sat Oct 10 07:05:33 2015 (r398975) @@ -1,2 +1,2 @@ -SHA256 (npm-2.14.4.tar.xz) = c9a92d33a470bc7f6df4c3c71704408efd06f40f0f2363933171586655c0da4e -SIZE (npm-2.14.4.tar.xz) = 2456552 +SHA256 (npm-2.14.7.tar.xz) = bae5f33434527e14f5586d7797837164a611f30de73f9cd8d5720dc0531450d0 +SIZE (npm-2.14.7.tar.xz) = 2495000 Modified: head/www/npm/pkg-plist ============================================================================== --- head/www/npm/pkg-plist Sat Oct 10 07:05:28 2015 (r398974) +++ head/www/npm/pkg-plist Sat Oct 10 07:05:33 2015 (r398975) @@ -117,6 +117,7 @@ lib/node_modules/npm/doc/misc/npm-develo lib/node_modules/npm/doc/misc/npm-disputes.md lib/node_modules/npm/doc/misc/npm-faq.md lib/node_modules/npm/doc/misc/npm-index.md +lib/node_modules/npm/doc/misc/npm-orgs.md lib/node_modules/npm/doc/misc/npm-registry.md lib/node_modules/npm/doc/misc/npm-scope.md lib/node_modules/npm/doc/misc/npm-scripts.md @@ -226,6 +227,7 @@ lib/node_modules/npm/html/doc/misc/npm-d lib/node_modules/npm/html/doc/misc/npm-disputes.html lib/node_modules/npm/html/doc/misc/npm-faq.html lib/node_modules/npm/html/doc/misc/npm-index.html +lib/node_modules/npm/html/doc/misc/npm-orgs.html lib/node_modules/npm/html/doc/misc/npm-registry.html lib/node_modules/npm/html/doc/misc/npm-scope.html lib/node_modules/npm/html/doc/misc/npm-scripts.html @@ -436,6 +438,7 @@ lib/node_modules/npm/man/man7/npm-develo lib/node_modules/npm/man/man7/npm-disputes.7.gz lib/node_modules/npm/man/man7/npm-faq.7.gz lib/node_modules/npm/man/man7/npm-index.7.gz +lib/node_modules/npm/man/man7/npm-orgs.7.gz lib/node_modules/npm/man/man7/npm-registry.7.gz lib/node_modules/npm/man/man7/npm-scope.7.gz lib/node_modules/npm/man/man7/npm-scripts.7.gz @@ -818,6 +821,7 @@ lib/node_modules/npm/node_modules/lru-ca lib/node_modules/npm/node_modules/lru-cache/test/basic.js lib/node_modules/npm/node_modules/lru-cache/test/foreach.js lib/node_modules/npm/node_modules/lru-cache/test/memory-leak.js +lib/node_modules/npm/node_modules/lru-cache/test/serialize.js lib/node_modules/npm/node_modules/minimatch/LICENSE lib/node_modules/npm/node_modules/minimatch/README.md lib/node_modules/npm/node_modules/minimatch/browser.js @@ -1135,7 +1139,6 @@ lib/node_modules/npm/node_modules/normal lib/node_modules/npm/node_modules/normalize-package-data/AUTHORS lib/node_modules/npm/node_modules/normalize-package-data/LICENSE lib/node_modules/npm/node_modules/normalize-package-data/README.md -lib/node_modules/npm/node_modules/normalize-package-data/lib/core_module_names.json lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js @@ -1143,6 +1146,16 @@ lib/node_modules/npm/node_modules/normal lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/index.js +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/license +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/builtin-modules.json +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/index.js +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/license +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/package.json +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/readme.md +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/static.js +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/package.json +lib/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/readme.md lib/node_modules/npm/node_modules/normalize-package-data/package.json lib/node_modules/npm/node_modules/normalize-package-data/test/basic.js lib/node_modules/npm/node_modules/normalize-package-data/test/consistency.js @@ -1215,10 +1228,6 @@ lib/node_modules/npm/node_modules/npm-re lib/node_modules/npm/node_modules/npm-registry-client/lib/team.js lib/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js lib/node_modules/npm/node_modules/npm-registry-client/lib/whoami.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/chownr/LICENSE -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/chownr/README.md -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/chownr/chownr.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/chownr/package.json lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/LICENSE lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/index.js lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/.npmignore @@ -1246,6 +1255,7 @@ lib/node_modules/npm/node_modules/npm-re lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/package.json lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/index.js +lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/license.md lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/package.json lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/readme.md lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/test.js @@ -1275,17 +1285,6 @@ lib/node_modules/npm/node_modules/npm-re lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/test/tarray.js lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/package.json lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/readme.md -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/.npmignore -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/LICENSE -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/README.md -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/fs.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/graceful-fs.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/package.json -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/polyfills.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/test/max-open.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/test/open.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/test/readdir-sort.js -lib/node_modules/npm/node_modules/npm-registry-client/node_modules/graceful-fs/test/write-then-read.js lib/node_modules/npm/node_modules/npm-registry-client/package.json lib/node_modules/npm/node_modules/npm-registry-client/test/00-setup.js lib/node_modules/npm/node_modules/npm-registry-client/test/access.js @@ -1598,8 +1597,6 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/CONTRIBUTING.md lib/node_modules/npm/node_modules/request/LICENSE lib/node_modules/npm/node_modules/request/README.md -lib/node_modules/npm/node_modules/request/disabled.appveyor.yml -lib/node_modules/npm/node_modules/request/examples/README.md lib/node_modules/npm/node_modules/request/index.js lib/node_modules/npm/node_modules/request/lib/auth.js lib/node_modules/npm/node_modules/request/lib/cookies.js @@ -1645,6 +1642,7 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/package.json lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/index.js +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/license.md lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/package.json lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/readme.md lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/test.js @@ -1918,9 +1916,7 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md -lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/package.json lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/test/index.js @@ -1928,10 +1924,8 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/CONTRIBUTING.md lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/README.md lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png -lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/index.js lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/package.json @@ -2055,6 +2049,8 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/qs/LICENSE lib/node_modules/npm/node_modules/request/node_modules/qs/Readme.md lib/node_modules/npm/node_modules/request/node_modules/qs/bower.json +lib/node_modules/npm/node_modules/request/node_modules/qs/component.json +lib/node_modules/npm/node_modules/request/node_modules/qs/dist/qs.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/index.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/parse.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/stringify.js @@ -2105,7 +2101,6 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/index.js lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/package.json lib/node_modules/npm/node_modules/request/package.json -lib/node_modules/npm/node_modules/request/release.sh lib/node_modules/npm/node_modules/request/request.js lib/node_modules/npm/node_modules/retry/.npmignore lib/node_modules/npm/node_modules/retry/License @@ -2119,6 +2114,7 @@ lib/node_modules/npm/node_modules/retry/ lib/node_modules/npm/node_modules/retry/package.json lib/node_modules/npm/node_modules/retry/test/common.js lib/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +lib/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js lib/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js lib/node_modules/npm/node_modules/retry/test/runner.js lib/node_modules/npm/node_modules/rimraf/LICENSE @@ -2143,17 +2139,51 @@ lib/node_modules/npm/node_modules/sha/.n lib/node_modules/npm/node_modules/sha/LICENSE lib/node_modules/npm/node_modules/sha/README.md lib/node_modules/npm/node_modules/sha/index.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/.npmignore -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/LICENSE -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/README.md -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/fs.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/graceful-fs.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/package.json -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/polyfills.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/test/max-open.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/test/open.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/test/readdir-sort.js -lib/node_modules/npm/node_modules/sha/node_modules/graceful-fs/test/write-then-read.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/.npmignore +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/.travis.yml +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/.zuul.yml +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/LICENSE +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/README.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/doc/stream.markdown +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/duplex.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_duplex.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_passthrough.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_readable.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_transform.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_writable.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/README.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/float.patch +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/util.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/README.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/build/build.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/component.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/index.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/index.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/license.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/readme.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/process-nextick-args/test.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/.npmignore +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/LICENSE +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/README.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/index.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/History.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/LICENSE +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/README.md +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/browser.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/node.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/package.json +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/passthrough.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/readable.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/transform.js +lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/writable.js lib/node_modules/npm/node_modules/sha/package.json lib/node_modules/npm/node_modules/slide/LICENSE lib/node_modules/npm/node_modules/slide/README.md @@ -2412,6 +2442,7 @@ lib/node_modules/npm/test/tap/404-parent lib/node_modules/npm/test/tap/404-private-registry-scoped.js lib/node_modules/npm/test/tap/404-private-registry.js lib/node_modules/npm/test/tap/access.js +lib/node_modules/npm/test/tap/add-named-update-protocol-port.js lib/node_modules/npm/test/tap/add-remote-git-fake-windows.js lib/node_modules/npm/test/tap/add-remote-git-file.js lib/node_modules/npm/test/tap/add-remote-git-get-resolved.js @@ -2446,6 +2477,7 @@ lib/node_modules/npm/test/tap/config-pro lib/node_modules/npm/test/tap/config-save.js lib/node_modules/npm/test/tap/dedupe-scoped.js lib/node_modules/npm/test/tap/dedupe.js +lib/node_modules/npm/test/tap/deprecate.js lib/node_modules/npm/test/tap/dist-tag.js lib/node_modules/npm/test/tap/false-name.js lib/node_modules/npm/test/tap/gently-rm-overeager.js From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05:40 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 3CAA99D276F; Sat, 10 Oct 2015 07:05:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07496A66; Sat, 10 Oct 2015 07:05:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75dnH088622; Sat, 10 Oct 2015 07:05:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75cLv088620; Sat, 10 Oct 2015 07:05:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75cLv088620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398976 - head/devel/p5-ExtUtils-CBuilder 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: Sat, 10 Oct 2015 07:05:40 -0000 Author: sunpoet Date: Sat Oct 10 07:05:38 2015 New Revision: 398976 URL: https://svnweb.freebsd.org/changeset/ports/398976 Log: - Update to 0.280224 Changes: http://search.cpan.org/dist/ExtUtils-CBuilder/Changes Modified: head/devel/p5-ExtUtils-CBuilder/Makefile head/devel/p5-ExtUtils-CBuilder/distinfo Modified: head/devel/p5-ExtUtils-CBuilder/Makefile ============================================================================== --- head/devel/p5-ExtUtils-CBuilder/Makefile Sat Oct 10 07:05:33 2015 (r398975) +++ head/devel/p5-ExtUtils-CBuilder/Makefile Sat Oct 10 07:05:38 2015 (r398976) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ExtUtils-CBuilder -PORTVERSION= 0.280223 +PORTVERSION= 0.280224 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN Modified: head/devel/p5-ExtUtils-CBuilder/distinfo ============================================================================== --- head/devel/p5-ExtUtils-CBuilder/distinfo Sat Oct 10 07:05:33 2015 (r398975) +++ head/devel/p5-ExtUtils-CBuilder/distinfo Sat Oct 10 07:05:38 2015 (r398976) @@ -1,2 +1,2 @@ -SHA256 (ExtUtils-CBuilder-0.280223.tar.gz) = 116cb3ec29f42d9d03c1b06eb5c7382ae121f32e83b73fd8fc226c6275f15a33 -SIZE (ExtUtils-CBuilder-0.280223.tar.gz) = 39653 +SHA256 (ExtUtils-CBuilder-0.280224.tar.gz) = 383131e112a3b953d699ee5e89e05580dbb08b8f62a67ff029545943d9883a6a +SIZE (ExtUtils-CBuilder-0.280224.tar.gz) = 39789 From owner-svn-ports-head@freebsd.org Sat Oct 10 07:05: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 A3E329D279D; Sat, 10 Oct 2015 07:05:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4EDA7B9C; Sat, 10 Oct 2015 07:05:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A75iAe088755; Sat, 10 Oct 2015 07:05:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A75icD088752; Sat, 10 Oct 2015 07:05:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510100705.t9A75icD088752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 07:05:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398977 - head/www/p5-Toadfarm 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: Sat, 10 Oct 2015 07:05:45 -0000 Author: sunpoet Date: Sat Oct 10 07:05:43 2015 New Revision: 398977 URL: https://svnweb.freebsd.org/changeset/ports/398977 Log: - Update to 0.68 Changes: http://search.cpan.org/dist/Toadfarm/Changes Modified: head/www/p5-Toadfarm/Makefile head/www/p5-Toadfarm/distinfo head/www/p5-Toadfarm/pkg-plist Modified: head/www/p5-Toadfarm/Makefile ============================================================================== --- head/www/p5-Toadfarm/Makefile Sat Oct 10 07:05:38 2015 (r398976) +++ head/www/p5-Toadfarm/Makefile Sat Oct 10 07:05:43 2015 (r398977) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Toadfarm -PORTVERSION= 0.67 +PORTVERSION= 0.68 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JHTHORSEN Modified: head/www/p5-Toadfarm/distinfo ============================================================================== --- head/www/p5-Toadfarm/distinfo Sat Oct 10 07:05:38 2015 (r398976) +++ head/www/p5-Toadfarm/distinfo Sat Oct 10 07:05:43 2015 (r398977) @@ -1,2 +1,2 @@ -SHA256 (Toadfarm-0.67.tar.gz) = 4d1a4d6ec1d253dfdf21c6325f4215376a8c59d4b76be7ca0b8e97886be7c169 -SIZE (Toadfarm-0.67.tar.gz) = 28825 +SHA256 (Toadfarm-0.68.tar.gz) = 8a01fc85654d30b99be23d77238256d7b0f683baaab56e818e5f92ee3847de86 +SIZE (Toadfarm-0.68.tar.gz) = 29925 Modified: head/www/p5-Toadfarm/pkg-plist ============================================================================== --- head/www/p5-Toadfarm/pkg-plist Sat Oct 10 07:05:38 2015 (r398976) +++ head/www/p5-Toadfarm/pkg-plist Sat Oct 10 07:05:43 2015 (r398977) @@ -3,6 +3,7 @@ bin/toadfarm %%SITE_PERL%%/Toadfarm/Command/reload.pm %%SITE_PERL%%/Toadfarm/Command/start.pm %%SITE_PERL%%/Toadfarm/Command/stop.pm +%%SITE_PERL%%/Toadfarm/Command/tail.pm %%SITE_PERL%%/Toadfarm/Manual/BehindReverseProxy.pod %%SITE_PERL%%/Toadfarm/Manual/Config.pod %%SITE_PERL%%/Toadfarm/Manual/DSL.pod @@ -15,6 +16,7 @@ bin/toadfarm %%PERL5_MAN3%%/Toadfarm::Command::reload.3.gz %%PERL5_MAN3%%/Toadfarm::Command::start.3.gz %%PERL5_MAN3%%/Toadfarm::Command::stop.3.gz +%%PERL5_MAN3%%/Toadfarm::Command::tail.3.gz %%PERL5_MAN3%%/Toadfarm::Manual::BehindReverseProxy.3.gz %%PERL5_MAN3%%/Toadfarm::Manual::Config.3.gz %%PERL5_MAN3%%/Toadfarm::Manual::DSL.3.gz From owner-svn-ports-head@freebsd.org Sat Oct 10 07:08:27 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 65CEB9D2926; Sat, 10 Oct 2015 07:08:27 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5A043D23; Sat, 10 Oct 2015 07:08:27 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 58E381A61; Sat, 10 Oct 2015 07:08:27 +0000 (UTC) Date: Sat, 10 Oct 2015 07:08:27 +0000 From: Alexey Dokuchaev To: John Marino Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398971 - in head/audio/musescore: . files Message-ID: <20151010070827.GA93698@FreeBSD.org> References: <201510100544.t9A5iZA2064835@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510100544.t9A5iZA2064835@repo.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: Sat, 10 Oct 2015 07:08:27 -0000 On Sat, Oct 10, 2015 at 05:44:35AM +0000, John Marino wrote: > New Revision: 398971 > URL: https://svnweb.freebsd.org/changeset/ports/398971 > > [...] > + @${REINPLACE_CMD} -e \ > + 's||| ; \ > + s||| ; \ > + s||| ; \ > + s|||' ${WRKSRC}/all.h I think these foo.h are missing escaping of the dot (should be foo\.h), no? ./danfe From owner-svn-ports-head@freebsd.org Sat Oct 10 07:09: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 239339D29F8; Sat, 10 Oct 2015 07:09:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5644E0C; Sat, 10 Oct 2015 07:09:20 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A79JwD088990; Sat, 10 Oct 2015 07:09:19 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A79Jvb088987; Sat, 10 Oct 2015 07:09:19 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510100709.t9A79Jvb088987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sat, 10 Oct 2015 07:09:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398978 - in head/devel/p5-UI-Dialog: . 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: Sat, 10 Oct 2015 07:09:21 -0000 Author: mat Date: Sat Oct 10 07:09:19 2015 New Revision: 398978 URL: https://svnweb.freebsd.org/changeset/ports/398978 Log: Apply upstream patch fixing CVE-2008-7315. PR: 203667 Obtained from: https://github.com/kckrinke/UI-Dialog/commit/6adc44cc636c615d76297d86835e1a997681eb61 Security: CVE-2008-7315 Sponsored by: Absolight Added: head/devel/p5-UI-Dialog/files/ head/devel/p5-UI-Dialog/files/patch-6adc44cc636c615d76297d86835e1a997681eb61 (contents, props changed) Modified: head/devel/p5-UI-Dialog/Makefile Modified: head/devel/p5-UI-Dialog/Makefile ============================================================================== --- head/devel/p5-UI-Dialog/Makefile Sat Oct 10 07:05:43 2015 (r398977) +++ head/devel/p5-UI-Dialog/Makefile Sat Oct 10 07:09:19 2015 (r398978) @@ -3,7 +3,7 @@ PORTNAME= UI-Dialog PORTVERSION= 1.09 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:KCK Added: head/devel/p5-UI-Dialog/files/patch-6adc44cc636c615d76297d86835e1a997681eb61 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-UI-Dialog/files/patch-6adc44cc636c615d76297d86835e1a997681eb61 Sat Oct 10 07:09:19 2015 (r398978) @@ -0,0 +1,252 @@ +From 6adc44cc636c615d76297d86835e1a997681eb61 Mon Sep 17 00:00:00 2001 +From: "Kevin C. Krinke" +Date: Fri, 9 Oct 2015 03:53:52 -0400 +Subject: [PATCH] feature "trust-input" - Addresses CVE-2008-7315 + +If trust-input == 1: + allow backticks and $() constructs +else (default): + replace backticks with single-quotes and remove the $ from $() +--- + lib/UI/Dialog.pm | 2 ++ + lib/UI/Dialog/Backend.pm | 35 +++++++++++++++++++++-------------- + lib/UI/Dialog/Backend/ASCII.pm | 2 ++ + lib/UI/Dialog/Backend/CDialog.pm | 2 ++ + lib/UI/Dialog/Backend/GDialog.pm | 2 ++ + lib/UI/Dialog/Backend/KDialog.pm | 3 +++ + lib/UI/Dialog/Backend/NotifySend.pm | 2 ++ + lib/UI/Dialog/Backend/Whiptail.pm | 3 +++ + lib/UI/Dialog/Backend/XDialog.pm | 2 ++ + lib/UI/Dialog/Backend/XOSD.pm | 3 +++ + lib/UI/Dialog/Backend/Zenity.pm | 2 ++ + lib/UI/Dialog/Console.pm | 2 ++ + lib/UI/Dialog/GNOME.pm | 2 ++ + lib/UI/Dialog/Gauged.pm | 2 ++ + lib/UI/Dialog/KDE.pm | 2 ++ + lib/UI/Dialog/Screen/Menu.pm | 1 + + 16 files changed, 53 insertions(+), 14 deletions(-) + +diff --git lib/UI/Dialog.pm lib/UI/Dialog.pm +index 2e98844..021bc47 100644 +--- lib/UI/Dialog.pm ++++ lib/UI/Dialog.pm +@@ -68,6 +68,8 @@ sub new { + $self->_debug("ENV->UI_DIALOG: ".($ENV{'UI_DIALOG'}||'NULL'),2); + unshift(@{$cfg->{'order'}},$ENV{'UI_DIALOG'}) if $ENV{'UI_DIALOG'}; + ++ $cfg->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + my @opts = (); + foreach my $opt (keys(%$cfg)) { push(@opts,$opt,$cfg->{$opt}); } + +diff --git lib/UI/Dialog/Backend.pm lib/UI/Dialog/Backend.pm +index 1416c23..27c3859 100644 +--- lib/UI/Dialog/Backend.pm ++++ lib/UI/Dialog/Backend.pm +@@ -499,9 +499,10 @@ sub _merge_attrs { + $list->[$i] = $self->_esc_text($list->[$i]); + } + } +- } else { +- $args->{'list'} = $self->_esc_text($args->{'list'}); +- } ++ } else { ++ # This isn't an array, how did we get here? Programmer error? ++ $args->{'list'} = $self->_esc_text($list); ++ } + } + $args->{'clear'} = $args->{'clearbefore'} || $args->{'clearafter'} || $args->{'autoclear'} || 0; + $args->{'beep'} = $args->{'beepbefore'} || $args->{'beepafter'} || $args->{'autobeep'} || 0; +@@ -535,17 +536,23 @@ sub _esc_text { + my $self = $_[0]; + my $text = $_[1]; + unless (ref($text)) { +- $text =~ s!\"!\\"!gm; +- $text =~ s!\`!\\`!gm; +- $text =~ s!\(!\(!gm; +- $text =~ s!\)!\)!gm; +- $text =~ s!\[!\[!gm; +- $text =~ s!\]!\]!gm; +- $text =~ s!\{!\{!gm; +- $text =~ s!\}!\}!gm; +- $text =~ s!\$!\\\$!gm; +- $text =~ s!\>!\>!gm; +- $text =~ s!\{'_opts'}->{'trust-input'} != 0) { ++ $text =~ s!`!\`!gm; ++ $text =~ s!\$!\$!gm; ++ } else { ++ # untrusted input, replace ` with ' and drop the $ from $() ++ $text =~ s!`!\'!gm; ++ $text =~ s!\$\(!\(!gm; ++ } ++ $text =~ s!"!\"!gm; ++ $text =~ s!\(!\(!gm; ++ $text =~ s!\)!\)!gm; ++ $text =~ s!\[!\[!gm; ++ $text =~ s!\]!\]!gm; ++ $text =~ s!\{!\{!gm; ++ $text =~ s!\}!\}!gm; ++ $text =~ s!>!\>!gm; ++ $text =~ s!_find_bin('more') ); + $self->{'_opts'}->{'stty'} = $cfg->{'stty'} || $self->_find_bin('stty'); + ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + $self->{'_state'} = {'rv'=>0}; + + return($self); +diff --git lib/UI/Dialog/Backend/CDialog.pm lib/UI/Dialog/Backend/CDialog.pm +index 531bf96..dac98f6 100644 +--- lib/UI/Dialog/Backend/CDialog.pm ++++ lib/UI/Dialog/Backend/CDialog.pm +@@ -100,6 +100,8 @@ sub new { + $self->{'_opts'}->{'yes-label'} = $cfg->{'yes-label'} || undef(); + $self->{'_opts'}->{'no-label'} = $cfg->{'no-label'} || undef(); + ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + $self->_determine_dialog_variant(); + return($self); + } +diff --git lib/UI/Dialog/Backend/GDialog.pm lib/UI/Dialog/Backend/GDialog.pm +index 87ca5c7..2022d61 100644 +--- lib/UI/Dialog/Backend/GDialog.pm ++++ lib/UI/Dialog/Backend/GDialog.pm +@@ -71,6 +71,8 @@ sub new { + croak("the gdialog binary could not be found at: ".$self->{'_opts'}->{'bin'}); + } + ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + return($self); + } + +diff --git lib/UI/Dialog/Backend/KDialog.pm lib/UI/Dialog/Backend/KDialog.pm +index a13a66c..fc94b7b 100644 +--- lib/UI/Dialog/Backend/KDialog.pm ++++ lib/UI/Dialog/Backend/KDialog.pm +@@ -71,6 +71,9 @@ sub new { + unless (-x $self->{'_opts'}->{'bin'}) { + croak("the kdialog binary could not be found at: ".$self->{'_opts'}->{'bin'}); + } ++ ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + return($self); + } + +diff --git lib/UI/Dialog/Backend/Whiptail.pm lib/UI/Dialog/Backend/Whiptail.pm +index 840f549..3f3ac56 100644 +--- lib/UI/Dialog/Backend/Whiptail.pm ++++ lib/UI/Dialog/Backend/Whiptail.pm +@@ -72,6 +72,9 @@ sub new { + unless (-x $self->{'_opts'}->{'bin'}) { + croak("the whiptail binary could not be found at: ".$self->{'_opts'}->{'bin'}); + } ++ ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + return($self); + } + +diff --git lib/UI/Dialog/Backend/XDialog.pm lib/UI/Dialog/Backend/XDialog.pm +index ff83ad6..87d4192 100644 +--- lib/UI/Dialog/Backend/XDialog.pm ++++ lib/UI/Dialog/Backend/XDialog.pm +@@ -164,6 +164,8 @@ sub new { + $self->{'_opts'}->{'timeout'} = $cfg->{'timeout'} || 0; + $self->{'_opts'}->{'wait'} = $cfg->{'wait'} || 0; + ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + return($self); + } + +diff --git lib/UI/Dialog/Backend/XOSD.pm lib/UI/Dialog/Backend/XOSD.pm +index e03a2cf..fb78573 100644 +--- lib/UI/Dialog/Backend/XOSD.pm ++++ lib/UI/Dialog/Backend/XOSD.pm +@@ -75,6 +75,9 @@ sub new { + unless (-x $self->{'_opts'}->{'bin'}) { + croak("the osd_cat binary could not be found at: ".$self->{'_opts'}->{'bin'}); + } ++ ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + return($self); + } + +diff --git lib/UI/Dialog/Backend/Zenity.pm lib/UI/Dialog/Backend/Zenity.pm +index 8f1a43c..f495a67 100644 +--- lib/UI/Dialog/Backend/Zenity.pm ++++ lib/UI/Dialog/Backend/Zenity.pm +@@ -74,6 +74,8 @@ sub new { + croak("the zenity binary could not be found at: ".$self->{'_opts'}->{'bin'}); + } + ++ $self->{'_opts'}->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + my $command = $self->{'_opts'}->{'bin'}." --version"; + my $version = `$command 2>&1`; + chomp( $version ); +diff --git lib/UI/Dialog/Console.pm lib/UI/Dialog/Console.pm +index 97d01f7..86b3681 100644 +--- lib/UI/Dialog/Console.pm ++++ lib/UI/Dialog/Console.pm +@@ -57,6 +57,8 @@ sub new { + $self->_debug("ENV->UI_DIALOG: ".($ENV{'UI_DIALOG'}||'NULL'),2); + unshift(@{$cfg->{'order'}},$ENV{'UI_DIALOG'}) if $ENV{'UI_DIALOG'}; + ++ $cfg->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + my @opts = (); + foreach my $opt (keys(%$cfg)) { push(@opts,$opt,$cfg->{$opt}); } + +diff --git lib/UI/Dialog/GNOME.pm lib/UI/Dialog/GNOME.pm +index 36471ea..12e4e15 100644 +--- lib/UI/Dialog/GNOME.pm ++++ lib/UI/Dialog/GNOME.pm +@@ -57,6 +57,8 @@ sub new { + $self->_debug("ENV->UI_DIALOG: ".($ENV{'UI_DIALOG'}||'NULL'),2); + unshift(@{$cfg->{'order'}},$ENV{'UI_DIALOG'}) if $ENV{'UI_DIALOG'}; + ++ $cfg->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + my @opts = (); + foreach my $opt (keys(%$cfg)) { push(@opts,$opt,$cfg->{$opt}); } + +diff --git lib/UI/Dialog/Gauged.pm lib/UI/Dialog/Gauged.pm +index 138d6f8..3c77cdd 100644 +--- lib/UI/Dialog/Gauged.pm ++++ lib/UI/Dialog/Gauged.pm +@@ -68,6 +68,8 @@ sub new { + $self->_debug("ENV->UI_DIALOG: ".($ENV{'UI_DIALOG'}||'NULL'),2); + unshift(@{$cfg->{'order'}},$ENV{'UI_DIALOG'}) if $ENV{'UI_DIALOG'}; + ++ $cfg->{'trust-input'} = ($cfg->{'trust-input'}==1) ? 1 : 0; ++ + my @opts = (); + foreach my $opt (keys(%$cfg)) { push(@opts,$opt,$cfg->{$opt}); } + +diff --git lib/UI/Dialog/Screen/Menu.pm lib/UI/Dialog/Screen/Menu.pm +index 17b2d90..39a30dc 100644 +--- lib/UI/Dialog/Screen/Menu.pm ++++ lib/UI/Dialog/Screen/Menu.pm +@@ -33,6 +33,7 @@ sub new { + PATH => (defined $args{PATH}) ? $args{PATH} : undef, + beepbefore => (defined $args{beepbefore}) ? $args{beepbefore} : undef, + beepafter => (defined $args{beepafter}) ? $args{beepafter} : undef, ++ 'trust-input' = ($args{'trust-input'}==1) ? 1 : 0; + ); + } + unless (exists $args{menu}) { From owner-svn-ports-head@freebsd.org Sat Oct 10 07:35:23 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 407D2A0DBA3; Sat, 10 Oct 2015 07:35:23 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 196551DA1; Sat, 10 Oct 2015 07:35:22 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [192.168.1.23] (209.Red-83-39-202.dynamicIP.rima-tde.net [83.39.202.209]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id AF34843BAA; Sat, 10 Oct 2015 02:35:18 -0500 (CDT) Subject: Re: svn commit: r398971 - in head/audio/musescore: . files To: Alexey Dokuchaev , John Marino References: <201510100544.t9A5iZA2064835@repo.freebsd.org> <20151010070827.GA93698@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <5618BFB3.2020905@marino.st> Date: Sat, 10 Oct 2015 09:35:15 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <20151010070827.GA93698@FreeBSD.org> Content-Type: text/plain; charset=windows-1252 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: Sat, 10 Oct 2015 07:35:23 -0000 On 10/10/2015 9:08 AM, Alexey Dokuchaev wrote: > On Sat, Oct 10, 2015 at 05:44:35AM +0000, John Marino wrote: >> New Revision: 398971 >> URL: https://svnweb.freebsd.org/changeset/ports/398971 >> >> [...] >> + @${REINPLACE_CMD} -e \ >> + 's||| ; \ >> + s||| ; \ >> + s||| ; \ >> + s|||' ${WRKSRC}/all.h > > I think these foo.h are missing escaping of the dot (should be foo\.h), no? Yes, but adding a slash doesn't change the result. It's a more correct matching, but the current version is good enough (e.g. doesn't match more than ) . In any case, it passed a build test. John From owner-svn-ports-head@freebsd.org Sat Oct 10 07:51:51 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 D385B9D2B5A; Sat, 10 Oct 2015 07:51:51 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82DB5D1A; Sat, 10 Oct 2015 07:51:51 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A7poh7003515; Sat, 10 Oct 2015 07:51:50 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A7popw003513; Sat, 10 Oct 2015 07:51:50 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510100751.t9A7popw003513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 10 Oct 2015 07:51:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398980 - in head/x11-fm/krusader2: . 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: Sat, 10 Oct 2015 07:51:51 -0000 Author: kwm Date: Sat Oct 10 07:51:50 2015 New Revision: 398980 URL: https://svnweb.freebsd.org/changeset/ports/398980 Log: Add upstream patch to fix that the first symbol in directory's name can't be changed in the new directory dialog. PR: 201336 Submitted by: Andriy Solonenko Tested by: Tobias Berner Obtained from: krusader upstream Added: head/x11-fm/krusader2/files/ head/x11-fm/krusader2/files/patch-git-5cb23ac (contents, props changed) Modified: head/x11-fm/krusader2/Makefile Modified: head/x11-fm/krusader2/Makefile ============================================================================== --- head/x11-fm/krusader2/Makefile Sat Oct 10 07:10:19 2015 (r398979) +++ head/x11-fm/krusader2/Makefile Sat Oct 10 07:51:50 2015 (r398980) @@ -3,7 +3,7 @@ PORTNAME= krusader DISTVERSION= 2.4.0-beta3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fm kde MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ Added: head/x11-fm/krusader2/files/patch-git-5cb23ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/krusader2/files/patch-git-5cb23ac Sat Oct 10 07:51:50 2015 (r398980) @@ -0,0 +1,20 @@ +commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9 +Author: Jan Lepper +Date: Wed Jan 2 21:38:52 2013 +0100 + + FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text + return QValidator::Intermediate instead of Invalid when input is empty + BUG: 309119 + + +--- krusader/Panel/panelfunc.cpp.orig 2012-10-21 12:55:54.000000000 +0200 ++++ krusader/Panel/panelfunc.cpp 2015-10-09 17:43:53.794177000 +0200 +@@ -100,7 +100,7 @@ + { + public: + virtual State validate(QString &input, int &pos) const { +- return input.isEmpty() ? Invalid : Acceptable; ++ return input.isEmpty() ? Intermediate : Acceptable; + } + }; + From owner-svn-ports-head@freebsd.org Sat Oct 10 09:30: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 064BF9D2374; Sat, 10 Oct 2015 09:30:56 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9A2A1194; Sat, 10 Oct 2015 09:30:55 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A9Us7r033004; Sat, 10 Oct 2015 09:30:54 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A9UsYp032999; Sat, 10 Oct 2015 09:30:54 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510100930.t9A9UsYp032999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sat, 10 Oct 2015 09:30:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398981 - in head/net: asterisk11 asterisk11/files asterisk13 asterisk13/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: Sat, 10 Oct 2015 09:30:56 -0000 Author: madpilot Date: Sat Oct 10 09:30:54 2015 New Revision: 398981 URL: https://svnweb.freebsd.org/changeset/ports/398981 Log: - Update net/asterisk11 to 11.20.0 - Update net/asterisk13 to 13.6.0 - Remove upstreamed patch In net/asterisk13: - Add ASTVERSION option to control installation of bash only script astversion, and avoid an unconditional dependency on bash Deleted: head/net/asterisk11/files/patch-main__utils.c head/net/asterisk13/files/patch-main__utils.c Modified: head/net/asterisk11/Makefile head/net/asterisk11/distinfo head/net/asterisk13/Makefile head/net/asterisk13/distinfo head/net/asterisk13/pkg-plist Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Sat Oct 10 07:51:50 2015 (r398980) +++ head/net/asterisk11/Makefile Sat Oct 10 09:30:54 2015 (r398981) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= asterisk -PORTVERSION= 11.19.0 -PORTREVISION= 1 +PORTVERSION= 11.20.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:main,g729 MASTER_SITE_SUBDIR= asterisk/:main \ Modified: head/net/asterisk11/distinfo ============================================================================== --- head/net/asterisk11/distinfo Sat Oct 10 07:51:50 2015 (r398980) +++ head/net/asterisk11/distinfo Sat Oct 10 09:30:54 2015 (r398981) @@ -1,5 +1,5 @@ -SHA256 (asterisk-11.19.0.tar.gz) = 339f82f75dd15144a8de6f29aa5aa91e8e6a789dbfbd6c1283f345391505dc1e -SIZE (asterisk-11.19.0.tar.gz) = 34852510 +SHA256 (asterisk-11.20.0.tar.gz) = ba3a26a7ea2b76884ad4984b0694fc9814d98bb373e0cbe42c64962f666720f4 +SIZE (asterisk-11.20.0.tar.gz) = 34864289 SHA256 (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = f5d21ca8305b29ea84fb4603c65c041483ea3a9cd0bf313eb4f098342a29af5f SIZE (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = 1408055 SHA256 (asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Sat Oct 10 07:51:50 2015 (r398980) +++ head/net/asterisk13/Makefile Sat Oct 10 09:30:54 2015 (r398981) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= asterisk -PORTVERSION= 13.5.0 -PORTREVISION= 1 +PORTVERSION= 13.6.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:main,g729 MASTER_SITE_SUBDIR= asterisk/:main \ @@ -40,7 +39,8 @@ CONFIGURE_ARGS+= --datarootdir=${DATADIR CPE_VENDOR= digium SHEBANG_FILES= agi/agi-test.agi \ - agi/jukebox.agi + agi/jukebox.agi \ + contrib/scripts/astversion MAKE_ENV= PTHREAD_LIBS="-lpthread" \ MKDIR="${MKDIR}" \ @@ -56,7 +56,7 @@ CONFLICTS= ossp-uuid-[0-9]* CONFLICTS_BUILD= linuxthreads-* CONFLICTS_INSTALL= asterisk*-1.8* asterisk*-11* -OPTIONS_DEFINE= BACKTRACE CURL EXCHANGE FREETDS LDAP LUA \ +OPTIONS_DEFINE= ASTVERSION BACKTRACE CURL EXCHANGE FREETDS LDAP LUA \ MP3PLAYER OOH323 PJSIP PORTAUDIO RADIUS SNMP \ SPANDSP SRTP SYSINFO XMPP OPTIONS_DEFAULT= CURL FREETDS GCC GSM LUA MP3PLAYER NEWT ODBC PGSQL PJSIP \ @@ -96,6 +96,7 @@ ASTERISK_MOH_G729_SOUNDS= asterisk-moh-o G729_DISTFILES= ${ASTERISK_CORE_G729_SOUNDS}:g729 \ ${ASTERISK_MOH_G729_SOUNDS}:g729 +ASTVERSION_DESC?= Install astversion (requires bash) BACKTRACE_DESC?= Stack backtrace support via (lib)execinfo BASE_DESC= Use base compiler (experimental) DAHDI_DESC?= DAHDI support @@ -111,6 +112,8 @@ XMPP_DESC?= XMPP/GTALK support OPTIONS_SUB= yes +ASTVERSION_RUN_DEPENDS= bash:${PORTSDIR}/shells/bash + BACKTRACE_CONFIGURE_WITH= execinfo BACKTRACE_LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo @@ -273,6 +276,9 @@ post-configure: post-install: @${RM} ${STAGEDIR}${ETCDIR}/*.conf ${STAGEDIR}${ETCDIR}/extensions.ael ${STAGEDIR}${ETCDIR}/extensions.lua +.if ! ${PORT_OPTIONS:MASTVERSION} + @${RM} ${STAGEDIR}${PREFIX}/sbin/astversion +.endif ${FIND} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules -type f -name '*.so' | ${SED} "s,^${STAGEDIR}${PREFIX}/,," >> ${TMPPLIST} ${FIND} ${STAGEDIR}${DATADIR}/sounds -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} Modified: head/net/asterisk13/distinfo ============================================================================== --- head/net/asterisk13/distinfo Sat Oct 10 07:51:50 2015 (r398980) +++ head/net/asterisk13/distinfo Sat Oct 10 09:30:54 2015 (r398981) @@ -1,5 +1,5 @@ -SHA256 (asterisk-13.5.0.tar.gz) = e8b8d071f783edea82de510194dd272070ffbb7cdb2f5f6b020be5d15b67e8b9 -SIZE (asterisk-13.5.0.tar.gz) = 32107014 +SHA256 (asterisk-13.6.0.tar.gz) = 8a01b53c946d092ac561c11b404f68cd328306d0e3b434a7485a11d4b175005a +SIZE (asterisk-13.6.0.tar.gz) = 32146107 SHA256 (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = f5d21ca8305b29ea84fb4603c65c041483ea3a9cd0bf313eb4f098342a29af5f SIZE (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = 1408055 SHA256 (asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 Modified: head/net/asterisk13/pkg-plist ============================================================================== --- head/net/asterisk13/pkg-plist Sat Oct 10 07:51:50 2015 (r398980) +++ head/net/asterisk13/pkg-plist Sat Oct 10 09:30:54 2015 (r398981) @@ -326,6 +326,7 @@ sbin/astdb2bdb sbin/astdb2sqlite3 sbin/asterisk sbin/astgenkey +%%ASTVERSION%%sbin/astversion sbin/autosupport sbin/rasterisk sbin/safe_asterisk From owner-svn-ports-head@freebsd.org Sat Oct 10 09:35:53 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 9567E9D276A; Sat, 10 Oct 2015 09:35:53 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 431D1163B; Sat, 10 Oct 2015 09:35:53 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A9ZqFa033297; Sat, 10 Oct 2015 09:35:52 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A9ZqSd033294; Sat, 10 Oct 2015 09:35:52 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510100935.t9A9ZqSd033294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 10 Oct 2015 09:35:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398982 - head/devel/elixir-timex-interval 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: Sat, 10 Oct 2015 09:35:53 -0000 Author: olgeni Date: Sat Oct 10 09:35:51 2015 New Revision: 398982 URL: https://svnweb.freebsd.org/changeset/ports/398982 Log: Upgrade devel/elixir-timex-interval to version 0.6.0. The port is now compatible with Elixir 1.1. Modified: head/devel/elixir-timex-interval/Makefile head/devel/elixir-timex-interval/distinfo head/devel/elixir-timex-interval/pkg-plist Modified: head/devel/elixir-timex-interval/Makefile ============================================================================== --- head/devel/elixir-timex-interval/Makefile Sat Oct 10 09:30:54 2015 (r398981) +++ head/devel/elixir-timex-interval/Makefile Sat Oct 10 09:35:51 2015 (r398982) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= timex-interval -PORTVERSION= 0.5.0 +PORTVERSION= 0.6.0 CATEGORIES= devel PKGNAMEPREFIX= elixir- @@ -10,8 +10,6 @@ COMMENT= Date/time interval library for LICENSE= APACHE20 -IGNORE= does not build with Elixir 1.1 - USES= elixir USE_GITHUB= yes GH_ACCOUNT= atabary Modified: head/devel/elixir-timex-interval/distinfo ============================================================================== --- head/devel/elixir-timex-interval/distinfo Sat Oct 10 09:30:54 2015 (r398981) +++ head/devel/elixir-timex-interval/distinfo Sat Oct 10 09:35:51 2015 (r398982) @@ -1,2 +1,2 @@ -SHA256 (atabary-timex-interval-0.5.0_GH0.tar.gz) = 55103579b2b364cb3195fb6b1280a00aa4030d257aac0b4fc6f4f91ff9628bc8 -SIZE (atabary-timex-interval-0.5.0_GH0.tar.gz) = 7514 +SHA256 (atabary-timex-interval-0.6.0_GH0.tar.gz) = 01f52affb7638cb1ff8dc1bec60879268a4d68b6ea1fa8bbf5fa78e7de920f59 +SIZE (atabary-timex-interval-0.6.0_GH0.tar.gz) = 7603 Modified: head/devel/elixir-timex-interval/pkg-plist ============================================================================== --- head/devel/elixir-timex-interval/pkg-plist Sat Oct 10 09:30:54 2015 (r398981) +++ head/devel/elixir-timex-interval/pkg-plist Sat Oct 10 09:35:51 2015 (r398982) @@ -1,4 +1,3 @@ -lib/elixir/lib/timex_interval/ebin/Elixir.Access.TimexInterval.DateTimeInterval.beam lib/elixir/lib/timex_interval/ebin/Elixir.Enumerable.TimexInterval.DateTimeInterval.beam lib/elixir/lib/timex_interval/ebin/Elixir.TimexInterval.DateTimeInterval.beam lib/elixir/lib/timex_interval/ebin/Elixir.TimexInterval.beam From owner-svn-ports-head@freebsd.org Sat Oct 10 09:50:54 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 5C3D49D336F; Sat, 10 Oct 2015 09:50:54 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AFB71EC3; Sat, 10 Oct 2015 09:50:53 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A9or9u036523; Sat, 10 Oct 2015 09:50:53 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A9oqHs036521; Sat, 10 Oct 2015 09:50:52 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201510100950.t9A9oqHs036521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sat, 10 Oct 2015 09:50:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398983 - head/games/pioneer 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: Sat, 10 Oct 2015 09:50:54 -0000 Author: madpilot Date: Sat Oct 10 09:50:52 2015 New Revision: 398983 URL: https://svnweb.freebsd.org/changeset/ports/398983 Log: - Update to 20151004 - Use option target helpers PR: 203427 Submitted by: lightside at gmx.com (maintainer) Modified: head/games/pioneer/Makefile head/games/pioneer/distinfo Modified: head/games/pioneer/Makefile ============================================================================== --- head/games/pioneer/Makefile Sat Oct 10 09:35:51 2015 (r398982) +++ head/games/pioneer/Makefile Sat Oct 10 09:50:52 2015 (r398983) @@ -38,7 +38,7 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ USE_GITHUB= yes GH_ACCOUNT= pioneerspacesim -GH_TAGNAME= 20150614 +GH_TAGNAME= 20151004 USES= autoreconf gmake pkgconfig USE_GL= gl @@ -86,20 +86,20 @@ QUICKSTART_PATH= \ post-patch: .SILENT ${REINPLACE_CMD} -e '/^OPTIMISE=/d' \ ${WRKSRC}/configure.ac - ${REINPLACE_CMD} -e 's/modelviewer/${PORTNAME} -modelviewer/' \ - ${WRKSRC}/Modelviewer.txt -.if !${PORT_OPTIONS:MMODELCOMPILER} + ${REINPLACE_CMD} -e 's/std:://g' \ + ${WRKSRC}/src/Orbit.cpp + +post-patch-MODELCOMPILER-off: .SILENT ${REINPLACE_CMD} -e 's/pioneer modelcompiler/pioneer/' \ ${WRKSRC}/src/Makefile.am -.endif post-install: -.if ${PORT_OPTIONS:MMODELCOMPILER} - @${MV} ${STAGEDIR}${PREFIX}/bin/modelcompiler \ - ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-modelcompiler -.endif (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) ${INSTALL_DATA} ${WRKSRC}/application-icon/pngs/pioneer-256x256.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png +post-install-MODELCOMPILER-on: + ${MV} ${STAGEDIR}${PREFIX}/bin/modelcompiler \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-modelcompiler + .include Modified: head/games/pioneer/distinfo ============================================================================== --- head/games/pioneer/distinfo Sat Oct 10 09:35:51 2015 (r398982) +++ head/games/pioneer/distinfo Sat Oct 10 09:50:52 2015 (r398983) @@ -1,2 +1,2 @@ -SHA256 (pioneerspacesim-pioneer-0.0.20150614-20150614_GH0.tar.gz) = 47cfeda3268214b800fb12f0180ffa739616dd13dcfca3382e1200ae7d472dc0 -SIZE (pioneerspacesim-pioneer-0.0.20150614-20150614_GH0.tar.gz) = 180503182 +SHA256 (pioneerspacesim-pioneer-0.0.20151004-20151004_GH0.tar.gz) = f22f5a339bdffdad5cf03f744619db3a0c99324c4b3d2ded11c29f1233a72e36 +SIZE (pioneerspacesim-pioneer-0.0.20151004-20151004_GH0.tar.gz) = 186317545 From owner-svn-ports-head@freebsd.org Sat Oct 10 09:52:48 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 6536F9D3510; Sat, 10 Oct 2015 09:52:48 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 176C2E4; Sat, 10 Oct 2015 09:52:48 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A9qlAQ039259; Sat, 10 Oct 2015 09:52:47 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A9qkcE039256; Sat, 10 Oct 2015 09:52:46 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510100952.t9A9qkcE039256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 10 Oct 2015 09:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398984 - in head/devel/elixir-exrm: . 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: Sat, 10 Oct 2015 09:52:48 -0000 Author: olgeni Date: Sat Oct 10 09:52:46 2015 New Revision: 398984 URL: https://svnweb.freebsd.org/changeset/ports/398984 Log: Upgrade devel/elixir-exrm to version 0.19.8. Modified: head/devel/elixir-exrm/Makefile head/devel/elixir-exrm/distinfo head/devel/elixir-exrm/files/patch-mix.exs Modified: head/devel/elixir-exrm/Makefile ============================================================================== --- head/devel/elixir-exrm/Makefile Sat Oct 10 09:50:52 2015 (r398983) +++ head/devel/elixir-exrm/Makefile Sat Oct 10 09:52:46 2015 (r398984) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= exrm -PORTVERSION= 0.19.6 +PORTVERSION= 0.19.8 CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-exrm/distinfo ============================================================================== --- head/devel/elixir-exrm/distinfo Sat Oct 10 09:50:52 2015 (r398983) +++ head/devel/elixir-exrm/distinfo Sat Oct 10 09:52:46 2015 (r398984) @@ -1,2 +1,2 @@ -SHA256 (bitwalker-exrm-0.19.6_GH0.tar.gz) = 5828d19556ddc6b0beac1d2b6655ae7cb090882a63220e82b074466a5b280774 -SIZE (bitwalker-exrm-0.19.6_GH0.tar.gz) = 46628 +SHA256 (bitwalker-exrm-0.19.8_GH0.tar.gz) = 7775cb5d89d3bfb0c8ec13c72314f3b2df273afcce3f3208ef76071e3e57f707 +SIZE (bitwalker-exrm-0.19.8_GH0.tar.gz) = 52643 Modified: head/devel/elixir-exrm/files/patch-mix.exs ============================================================================== --- head/devel/elixir-exrm/files/patch-mix.exs Sat Oct 10 09:50:52 2015 (r398983) +++ head/devel/elixir-exrm/files/patch-mix.exs Sat Oct 10 09:52:46 2015 (r398984) @@ -1,11 +1,10 @@ ---- mix.exs.orig 2015-09-06 10:06:04 UTC +--- mix.exs.orig 2015-10-10 09:51:10 UTC +++ mix.exs -@@ -7,7 +7,7 @@ defmodule ReleaseManager.Mixfile do - elixir: "~> 1.0.5", +@@ -7,7 +7,6 @@ defmodule ReleaseManager.Mixfile do + elixir: "~> 1.0", description: description, package: package, - deps: deps, -+ deps: [], + docs: docs, test_coverage: [tool: Coverex.Task, coveralls: true]] end - From owner-svn-ports-head@freebsd.org Sat Oct 10 10:13:52 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 213C2A1009E; Sat, 10 Oct 2015 10:13:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA6B71063; Sat, 10 Oct 2015 10:13:51 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AADovO045205; Sat, 10 Oct 2015 10:13:50 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AADo1b045203; Sat, 10 Oct 2015 10:13:50 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101013.t9AADo1b045203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 10:13:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398985 - in head/audio/py-karaoke: . 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: Sat, 10 Oct 2015 10:13:52 -0000 Author: marino Date: Sat Oct 10 10:13:50 2015 New Revision: 398985 URL: https://svnweb.freebsd.org/changeset/ports/398985 Log: audio/py-karaoke: Fix runtime error on F9 PR: 199216 Submitted by: ports fury Deleted: head/audio/py-karaoke/pkg-plist Modified: head/audio/py-karaoke/Makefile head/audio/py-karaoke/files/patch-setup.py Modified: head/audio/py-karaoke/Makefile ============================================================================== --- head/audio/py-karaoke/Makefile Sat Oct 10 09:52:46 2015 (r398984) +++ head/audio/py-karaoke/Makefile Sat Oct 10 10:13:50 2015 (r398985) @@ -3,7 +3,7 @@ PORTNAME= karaoke PORTVERSION= 0.7.5 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= audio python MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,14 +14,14 @@ COMMENT= Python karaoke application (Pla LICENSE= LGPL21 # (or later) -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game +BUILD_DEPENDS= ${PYGAME} LIB_DEPENDS= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ libaa.so:${PORTSDIR}/graphics/aalib -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game \ - dejavu>0:${PORTSDIR}/x11-fonts/dejavu \ +RUN_DEPENDS= dejavu>0:${PORTSDIR}/x11-fonts/dejavu \ + ${PYGAME} \ ${PYNUMPY} -USES= desktop-file-utils iconv python:2 zip +USES= compiler:c++11-lib desktop-file-utils iconv python:2 zip USE_SDL= sdl USE_XORG= x11 xau xcb xdmcp USE_WX= 3.0+ @@ -31,11 +31,24 @@ USE_PYTHON= distutils autoplist DATADIR= ${PREFIX}/share/py${PORTNAME} -OPTIONS_DEFINE= MUTAGEN +PLIST_FILES= ${BIN_SCRIPTS:S,^,bin/,} \ + ${DATA_FONTS:S,^,%%DATADIR%%/fonts/,} + +OPTIONS_DEFINE= MUTAGEN MUTAGEN_DESC= Mutagen support MUTAGEN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>0:${PORTSDIR}/audio/py-mutagen +BIN_SCRIPTS= cdg2mpg pycdg pykar pykaraoke pykaraoke_mini pympg +DATA_FONTS= DejaVuSans.ttf DejaVuSansCondensed.ttf \ + DejaVuSansCondensed-Bold.ttf + +.include + +.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == gcc +MAKE_ENV+= LD_LIBRARY_PATH="${LOCALBASE}/lib/${CC}:$$LD_LIBRARY_PATH" +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/setup.cfg @@ -49,12 +62,35 @@ post-patch: /^Categories=/s|Application;||' ${WRKSRC}/install/${i} .endfor +post-build: + @${MKDIR} ${WRKDIR}/wrappers +.for i in ${BIN_SCRIPTS} + @${ECHO_CMD} -n \ + >> ${WRKDIR}/wrappers/${i} + @${ECHO_CMD} '#!/bin/sh' \ + >> ${WRKDIR}/wrappers/${i} +.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == gcc + @${ECHO_CMD} 'LD_LIBRARY_PATH="${LOCALBASE}/lib/${CC}:$$LD_LIBRARY_PATH"' \ + >> ${WRKDIR}/wrappers/${i} + @${ECHO_CMD} 'export LD_LIBRARY_PATH' \ + >> ${WRKDIR}/wrappers/${i} + @${ECHO_CMD} \ + >> ${WRKDIR}/wrappers/${i} +.endif + @${ECHO_CMD} 'exec ${PREFIX}/libexec/${i} "$$@"' \ + >> ${WRKDIR}/wrappers/${i} +.endfor + post-install: +.for i in ${BIN_SCRIPTS} + (cd ${WRKDIR}/wrappers && ${INSTALL_SCRIPT} ${i} \ + ${STAGEDIR}${PREFIX}/bin) +.endfor @${MKDIR} ${STAGEDIR}${DATADIR}/fonts -.for i in DejaVuSans.ttf DejaVuSansCondensed-Bold.ttf DejaVuSansCondensed.ttf +.for i in ${DATA_FONTS} @${LN} -sf ${LOCALBASE}/share/fonts/dejavu/${i} \ ${STAGEDIR}${DATADIR}/fonts .endfor @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pycdgAux.so -.include +.include Modified: head/audio/py-karaoke/files/patch-setup.py ============================================================================== --- head/audio/py-karaoke/files/patch-setup.py Sat Oct 10 09:52:46 2015 (r398984) +++ head/audio/py-karaoke/files/patch-setup.py Sat Oct 10 10:13:50 2015 (r398985) @@ -1,6 +1,6 @@ --- setup.py.orig 2011-06-15 03:59:31.000000000 +0900 +++ setup.py 2012-09-28 07:03:50.000000000 +0900 -@@ -61,12 +61,7 @@ +@@ -61,17 +61,12 @@ 'icons/microphone.ico', 'icons/microphone.png', 'icons/pykaraoke.xpm', @@ -14,3 +14,9 @@ # These data files only make sense on Unix-like systems. if env != ENV_WINDOWS: + data_files += [ +- ('bin', ['install/pykaraoke', ++ ('libexec', ['install/pykaraoke', + 'install/pykaraoke_mini', + 'install/pycdg', + 'install/pykar', From owner-svn-ports-head@freebsd.org Sat Oct 10 10:23: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 2927EA1079B; Sat, 10 Oct 2015 10:23:56 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CDE911992; Sat, 10 Oct 2015 10:23:55 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AANsf7048189; Sat, 10 Oct 2015 10:23:54 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AANso4048188; Sat, 10 Oct 2015 10:23:54 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101023.t9AANso4048188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 10:23:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398986 - in head/devel/drpython: . 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: Sat, 10 Oct 2015 10:23:56 -0000 Author: marino Date: Sat Oct 10 10:23:54 2015 New Revision: 398986 URL: https://svnweb.freebsd.org/changeset/ports/398986 Log: devel/drpython: Fix runtime error on F9 PR: 199224 Submitted by: ports fury Deleted: head/devel/drpython/files/patch-drpython.lin Modified: head/devel/drpython/Makefile Modified: head/devel/drpython/Makefile ============================================================================== --- head/devel/drpython/Makefile Sat Oct 10 10:13:50 2015 (r398985) +++ head/devel/drpython/Makefile Sat Oct 10 10:23:54 2015 (r398986) @@ -3,7 +3,7 @@ PORTNAME= drpython PORTVERSION= 3.11.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel python MASTER_SITES= SF/${PORTNAME}/DrPython%20%283.x%29/${PORTVERSION} PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} @@ -20,7 +20,7 @@ RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/ NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME} -USES= python zip +USES= compiler:c++11-lib python zip USE_PYTHON= distutils autoplist USE_WX= 3.0+ WX_COMPS= python:lib @@ -31,13 +31,18 @@ DESKTOP_ENTRIES="DrPython" "Python edito "${PYTHONPREFIX_SITELIBDIR}/drpython/bitmaps/drpython.png" \ "drpython" "Development;IDE;" "" +.include + +.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == gcc +MAKE_ENV+= LD_LIBRARY_PATH="${LOCALBASE}/lib/${CC}:$$LD_LIBRARY_PATH" +.endif + post-patch: @${REINPLACE_CMD} -e \ '/postinst.py/d' ${WRKSRC}/setup.py @${RM} ${WRKSRC}/setup.cfg @${REINPLACE_CMD} -e \ 's|firefox|xdg-open|' ${WRKSRC}/drPreferences.py - @${REINPLACE_CMD} -e 's|%%PYTHON%%|${PYTHON_CMD}|' ${WRKSRC}/drpython.lin pre-build: @(cd ${WRKSRC}/docsrc && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} html) @@ -45,11 +50,24 @@ pre-build: ${WRKSRC}/documentation) post-build: - @${ECHO_CMD} '#!/bin/sh' > ${WRKDIR}/drpython.sh - @${ECHO_CMD} 'exec ${PYTHON_CMD} -m drpython.drpython' >> ${WRKDIR}/drpython.sh + @${MKDIR} ${WRKDIR}/wrappers + @${ECHO_CMD} -n \ + >> ${WRKDIR}/wrappers/drpython + @${ECHO_CMD} '#!/bin/sh' \ + >> ${WRKDIR}/wrappers/drpython +.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == gcc + @${ECHO_CMD} 'LD_LIBRARY_PATH="${LOCALBASE}/lib/${CC}:$$LD_LIBRARY_PATH"' \ + >> ${WRKDIR}/wrappers/drpython + @${ECHO_CMD} 'export LD_LIBRARY_PATH' \ + >> ${WRKDIR}/wrappers/drpython + @${ECHO_CMD} \ + >> ${WRKDIR}/wrappers/drpython +.endif + @${ECHO_CMD} 'exec ${PYTHON_CMD} -m drpython.drpython' \ + >> ${WRKDIR}/wrappers/drpython post-install: - (cd ${WRKDIR} && ${INSTALL_SCRIPT} drpython.sh \ - ${STAGEDIR}${PREFIX}/bin/drpython) + (cd ${WRKDIR}/wrappers && ${INSTALL_SCRIPT} drpython \ + ${STAGEDIR}${PREFIX}/bin) -.include +.include From owner-svn-ports-head@freebsd.org Sat Oct 10 10:47:15 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 261699D166B; Sat, 10 Oct 2015 10:47:15 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F26106D7; Sat, 10 Oct 2015 10:47:14 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AAlERu054366; Sat, 10 Oct 2015 10:47:14 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AAlDmZ054361; Sat, 10 Oct 2015 10:47:13 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <201510101047.t9AAlDmZ054361@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Sat, 10 Oct 2015 10:47:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398987 - in head/misc: freebsd-doc-all freebsd-doc-de freebsd-doc-en freebsd-doc-pt 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: Sat, 10 Oct 2015 10:47:15 -0000 Author: blackend (doc committer) Date: Sat Oct 10 10:47:13 2015 New Revision: 398987 URL: https://svnweb.freebsd.org/changeset/ports/398987 Log: Remove duplicate plist entries. PR: 203274 Submitted by: Dmitry Marakasov Approved by: doceng (implicit) Modified: head/misc/freebsd-doc-all/Makefile head/misc/freebsd-doc-de/pkg-plist.txt head/misc/freebsd-doc-en/Makefile head/misc/freebsd-doc-en/pkg-plist.txt head/misc/freebsd-doc-pt/pkg-plist.txt Modified: head/misc/freebsd-doc-all/Makefile ============================================================================== --- head/misc/freebsd-doc-all/Makefile Sat Oct 10 10:23:54 2015 (r398986) +++ head/misc/freebsd-doc-all/Makefile Sat Oct 10 10:47:13 2015 (r398987) @@ -4,6 +4,7 @@ PORTNAME= freebsd-doc-all PORTVERSION= 47441 PORTEPOCH= 1 +PORTREVISION= 1 CATEGORIES= misc docs MASTER_SITES= #empty DISTFILES= #empty Modified: head/misc/freebsd-doc-de/pkg-plist.txt ============================================================================== --- head/misc/freebsd-doc-de/pkg-plist.txt Sat Oct 10 10:23:54 2015 (r398986) +++ head/misc/freebsd-doc-de/pkg-plist.txt Sat Oct 10 10:47:13 2015 (r398987) @@ -1,8 +1,6 @@ %%DOCSDIR%%/%%DOCLANG%%/articles/contributing/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/explaining-bsd/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/article.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/diff.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/init.txt %%DOCSDIR%%/%%DOCLANG%%/articles/leap-seconds/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/nanobsd/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/new-users/article.txt Modified: head/misc/freebsd-doc-en/Makefile ============================================================================== --- head/misc/freebsd-doc-en/Makefile Sat Oct 10 10:23:54 2015 (r398986) +++ head/misc/freebsd-doc-en/Makefile Sat Oct 10 10:47:13 2015 (r398987) @@ -4,6 +4,7 @@ PORTNAME= freebsd-doc PORTVERSION= 47441 PORTEPOCH= 1 +PORTREVISION= 1 CATEGORIES= misc docs MASTER_SITES= LOCAL/blackend PKGNAMEPREFIX?= en- Modified: head/misc/freebsd-doc-en/pkg-plist.txt ============================================================================== --- head/misc/freebsd-doc-en/pkg-plist.txt Sat Oct 10 10:23:54 2015 (r398986) +++ head/misc/freebsd-doc-en/pkg-plist.txt Sat Oct 10 10:47:13 2015 (r398987) @@ -9,8 +9,6 @@ %%DOCSDIR%%/%%DOCLANG%%/articles/fonts/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-questions/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/article.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/diff.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/init.txt %%DOCSDIR%%/%%DOCLANG%%/articles/geom-class/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/gjournal-desktop/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/hubs/article.txt Modified: head/misc/freebsd-doc-pt/pkg-plist.txt ============================================================================== --- head/misc/freebsd-doc-pt/pkg-plist.txt Sat Oct 10 10:23:54 2015 (r398986) +++ head/misc/freebsd-doc-pt/pkg-plist.txt Sat Oct 10 10:47:13 2015 (r398987) @@ -3,8 +3,6 @@ %%DOCSDIR%%/%%DOCLANG%%/articles/explaining-bsd/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-questions/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/article.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/diff.txt -%%DOCSDIR%%/%%DOCLANG%%/articles/freebsd-update-server/init.txt %%DOCSDIR%%/%%DOCLANG%%/articles/hubs/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/linux-users/article.txt %%DOCSDIR%%/%%DOCLANG%%/articles/new-users/article.txt From owner-svn-ports-head@freebsd.org Sat Oct 10 10:52:07 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 AC2429D1AA1; Sat, 10 Oct 2015 10:52:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73F7EC70; Sat, 10 Oct 2015 10:52:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AAq6P7057225; Sat, 10 Oct 2015 10:52:06 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AAq6a3057223; Sat, 10 Oct 2015 10:52:06 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201510101052.t9AAq6a3057223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 10 Oct 2015 10:52:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398988 - head/devel/ipython 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: Sat, 10 Oct 2015 10:52:07 -0000 Author: olgeni Date: Sat Oct 10 10:52:06 2015 New Revision: 398988 URL: https://svnweb.freebsd.org/changeset/ports/398988 Log: Upgrade devel/ipython to version 3.2.2. PR: 203668 Submitted by: Jason Unovitch Security: CVE-2015-6938 Security: CVE-2015-7337 Modified: head/devel/ipython/Makefile head/devel/ipython/distinfo Modified: head/devel/ipython/Makefile ============================================================================== --- head/devel/ipython/Makefile Sat Oct 10 10:47:13 2015 (r398987) +++ head/devel/ipython/Makefile Sat Oct 10 10:52:06 2015 (r398988) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ipython -PORTVERSION= 3.2.1 +PORTVERSION= 3.2.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/ipython/distinfo ============================================================================== --- head/devel/ipython/distinfo Sat Oct 10 10:47:13 2015 (r398987) +++ head/devel/ipython/distinfo Sat Oct 10 10:52:06 2015 (r398988) @@ -1,2 +1,2 @@ -SHA256 (ipython-3.2.1.tar.gz) = c913adee7ae5b338055274c51a7d2b3cea468b5b316046fa520cd8a434b09177 -SIZE (ipython-3.2.1.tar.gz) = 10884249 +SHA256 (ipython-3.2.2.tar.gz) = 906bf6a94898e5f3b46c63a85ab8a77a4508c0c778e02df2ab8e1746c5b2bfb6 +SIZE (ipython-3.2.2.tar.gz) = 10884521 From owner-svn-ports-head@freebsd.org Sat Oct 10 11:29:27 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 3DB9C9D25A2; Sat, 10 Oct 2015 11:29:27 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 142B9FE2; Sat, 10 Oct 2015 11:29:27 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ABTQTI066231; Sat, 10 Oct 2015 11:29:26 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ABTPo6066228; Sat, 10 Oct 2015 11:29:25 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510101129.t9ABTPo6066228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 10 Oct 2015 11:29:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398989 - head/www/p5-RPC-ExtDirect 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: Sat, 10 Oct 2015 11:29:27 -0000 Author: pi Date: Sat Oct 10 11:29:25 2015 New Revision: 398989 URL: https://svnweb.freebsd.org/changeset/ports/398989 Log: www/p5-RPC-ExtDirect: 3.02 -> 3.21 Changes: http://cpansearch.perl.org/src/TOKAREV/RPC-ExtDirect-3.21/Changes PR: 200709 Submitted by: Martin Waschbuesch Approved by: tj (maintainer timeout) Modified: head/www/p5-RPC-ExtDirect/Makefile head/www/p5-RPC-ExtDirect/distinfo head/www/p5-RPC-ExtDirect/pkg-plist Modified: head/www/p5-RPC-ExtDirect/Makefile ============================================================================== --- head/www/p5-RPC-ExtDirect/Makefile Sat Oct 10 10:52:06 2015 (r398988) +++ head/www/p5-RPC-ExtDirect/Makefile Sat Oct 10 11:29:25 2015 (r398989) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RPC-ExtDirect -PORTVERSION= 3.02 +PORTVERSION= 3.21 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-RPC-ExtDirect/distinfo ============================================================================== --- head/www/p5-RPC-ExtDirect/distinfo Sat Oct 10 10:52:06 2015 (r398988) +++ head/www/p5-RPC-ExtDirect/distinfo Sat Oct 10 11:29:25 2015 (r398989) @@ -1,2 +1,2 @@ -SHA256 (RPC-ExtDirect-3.02.tar.gz) = 0afc74a242e3fd851c453ff6f5821506069d610be18aa34e562193c6ff4f2f4c -SIZE (RPC-ExtDirect-3.02.tar.gz) = 98175 +SHA256 (RPC-ExtDirect-3.21.tar.gz) = 7d22cbe50a4f5e09c04c5f4bb7db659692e9e86994c01458b6770b007b36db1c +SIZE (RPC-ExtDirect-3.21.tar.gz) = 110368 Modified: head/www/p5-RPC-ExtDirect/pkg-plist ============================================================================== --- head/www/p5-RPC-ExtDirect/pkg-plist Sat Oct 10 10:52:06 2015 (r398988) +++ head/www/p5-RPC-ExtDirect/pkg-plist Sat Oct 10 11:29:25 2015 (r398989) @@ -1,15 +1,3 @@ -%%PERL5_MAN3%%/RPC::ExtDirect.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::API.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::API::Action.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::API::Hook.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::API::Method.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Config.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Demo::PollProvider.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Demo::Profile.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Demo::TestAction.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Event.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Intro.3.gz -%%PERL5_MAN3%%/RPC::ExtDirect::Migration.3.gz %%SITE_PERL%%/RPC/ExtDirect.pm %%SITE_PERL%%/RPC/ExtDirect.pod %%SITE_PERL%%/RPC/ExtDirect/API.pm @@ -47,8 +35,21 @@ %%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/Foo.pm %%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/Hooks.pm %%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/JuiceBar.pm +%%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/Meta.pm %%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/PollProvider.pm %%SITE_PERL%%/RPC/ExtDirect/Test/Pkg/Qux.pm %%SITE_PERL%%/RPC/ExtDirect/Test/Util.pm %%SITE_PERL%%/RPC/ExtDirect/Util.pm %%SITE_PERL%%/RPC/ExtDirect/Util/Accessor.pm +%%PERL5_MAN3%%/RPC::ExtDirect.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::API.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::API::Action.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::API::Hook.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::API::Method.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Config.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Demo::PollProvider.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Demo::Profile.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Demo::TestAction.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Event.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Intro.3.gz +%%PERL5_MAN3%%/RPC::ExtDirect::Migration.3.gz From owner-svn-ports-head@freebsd.org Sat Oct 10 11:52:26 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 EA44EA10345; Sat, 10 Oct 2015 11:52:26 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5BDB1EF4; Sat, 10 Oct 2015 11:52:26 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ABqPF1074813; Sat, 10 Oct 2015 11:52:25 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ABqPZK074808; Sat, 10 Oct 2015 11:52:25 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201510101152.t9ABqPZK074808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 10 Oct 2015 11:52:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398990 - in head/www: . p5-Plack-Middleware-ExtDirect 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: Sat, 10 Oct 2015 11:52:27 -0000 Author: pi Date: Sat Oct 10 11:52:25 2015 New Revision: 398990 URL: https://svnweb.freebsd.org/changeset/ports/398990 Log: New port: www/p5-Plack-Middleware-ExtDirect This module provides an RPC::ExtDirect gateway implementation for Plack environment. It is packaged as a standard Plack middleware component suitable for using with Plack::Builder. Plack::Middleware::ExtDirect is recommended to be used with Perl versions 5.12 and newer, for reasons explained below. For Perls older than 5.12, CGI::ExtDirect gateway may be a better choice - especially if you cannot install XS dependent packages. If you are not familiar with Ext.Direct, more information can be found in RPC::ExtDirect::Intro. WWW: http://search.cpan.org/dist/Plack-Middleware-ExtDirect/ PR: 200652 Submitted by: martin@waschbuesch.de Added: head/www/p5-Plack-Middleware-ExtDirect/ head/www/p5-Plack-Middleware-ExtDirect/Makefile (contents, props changed) head/www/p5-Plack-Middleware-ExtDirect/distinfo (contents, props changed) head/www/p5-Plack-Middleware-ExtDirect/pkg-descr (contents, props changed) head/www/p5-Plack-Middleware-ExtDirect/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Oct 10 11:29:25 2015 (r398989) +++ head/www/Makefile Sat Oct 10 11:52:25 2015 (r398990) @@ -1135,6 +1135,7 @@ SUBDIR += p5-Plack-Middleware-Debug SUBDIR += p5-Plack-Middleware-Deflater SUBDIR += p5-Plack-Middleware-Expires + SUBDIR += p5-Plack-Middleware-ExtDirect SUBDIR += p5-Plack-Middleware-File-Sass SUBDIR += p5-Plack-Middleware-FixMissingBodyInRedirect SUBDIR += p5-Plack-Middleware-ForceEnv Added: head/www/p5-Plack-Middleware-ExtDirect/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Plack-Middleware-ExtDirect/Makefile Sat Oct 10 11:52:25 2015 (r398990) @@ -0,0 +1,26 @@ +# Created by: Martin Waschbuesch +# $FreeBSD$ + +PORTNAME= Plack-Middleware-ExtDirect +PORTVERSION= 3.20 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:TOKAREV +PKGNAMEPREFIX= p5- + +MAINTAINER= martin@waschbuesch.de +COMMENT= Implement an RPC::ExtDirect gateway using Plack + +LICENSE= ART10 + +BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf \ + p5-Plack>=0:${PORTSDIR}/www/p5-Plack \ + p5-RPC-ExtDirect>=3.20:${PORTSDIR}/www/p5-RPC-ExtDirect +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Pod>=1.46:${PORTSDIR}/devel/p5-Test-Pod + +USES= perl5 +USE_PERL5= configure +NO_ARCH= YES + +.include Added: head/www/p5-Plack-Middleware-ExtDirect/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Plack-Middleware-ExtDirect/distinfo Sat Oct 10 11:52:25 2015 (r398990) @@ -0,0 +1,2 @@ +SHA256 (Plack-Middleware-ExtDirect-3.20.tar.gz) = 9c34576f339c212a2c8f41e59d57a94bbb0ec856a3d7487505b8e7d1cf9d0c36 +SIZE (Plack-Middleware-ExtDirect-3.20.tar.gz) = 53794 Added: head/www/p5-Plack-Middleware-ExtDirect/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Plack-Middleware-ExtDirect/pkg-descr Sat Oct 10 11:52:25 2015 (r398990) @@ -0,0 +1,13 @@ +This module provides an RPC::ExtDirect gateway implementation for Plack +environment. It is packaged as a standard Plack middleware component suitable +for using with Plack::Builder. + +Plack::Middleware::ExtDirect is recommended to be used with Perl versions 5.12 +and newer, for reasons explained below. For Perls older than 5.12, +CGI::ExtDirect gateway may be a better choice - especially if you cannot +install XS dependent packages. + +If you are not familiar with Ext.Direct, more information can be found in +RPC::ExtDirect::Intro. + +WWW: http://search.cpan.org/dist/Plack-Middleware-ExtDirect/ Added: head/www/p5-Plack-Middleware-ExtDirect/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Plack-Middleware-ExtDirect/pkg-plist Sat Oct 10 11:52:25 2015 (r398990) @@ -0,0 +1,3 @@ +%%SITE_PERL%%/Plack/Middleware/ExtDirect.pm +%%SITE_PERL%%/Plack/Middleware/ExtDirect.pod +%%PERL5_MAN3%%/Plack::Middleware::ExtDirect.3.gz From owner-svn-ports-head@freebsd.org Sat Oct 10 12:16:00 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 0AEFE9D16AD; Sat, 10 Oct 2015 12:16:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF526F41; Sat, 10 Oct 2015 12:15:59 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ACFwhs080812; Sat, 10 Oct 2015 12:15:58 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ACFwWG080810; Sat, 10 Oct 2015 12:15:58 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101215.t9ACFwWG080810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 12:15:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398991 - head/audio/quimup 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: Sat, 10 Oct 2015 12:16:00 -0000 Author: marino Date: Sat Oct 10 12:15:58 2015 New Revision: 398991 URL: https://svnweb.freebsd.org/changeset/ports/398991 Log: audio/quimup: Upgrade version 1.3.2 => 1.4.0 I tweaked provided patch to revert some unnecessary changes. Technically the change of ${PORTNAME} to quimup is unnecessary but I fully support the reversal of PORTNAME abuse. PR: 199220 Submitted by: ports fury Modified: head/audio/quimup/Makefile head/audio/quimup/distinfo Modified: head/audio/quimup/Makefile ============================================================================== --- head/audio/quimup/Makefile Sat Oct 10 11:52:25 2015 (r398990) +++ head/audio/quimup/Makefile Sat Oct 10 12:15:58 2015 (r398991) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= quimup -PORTVERSION= 1.3.2 +PORTVERSION= 1.4.0 CATEGORIES= audio MASTER_SITES= SF/musicpd/Quimup/${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION}_src @@ -15,29 +15,24 @@ LICENSE= GPLv2 # (or later) LIB_DEPENDS= libmpdclient.so:${PORTSDIR}/audio/libmpdclient \ libtag.so:${PORTSDIR}/audio/taglib -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}\ ${PORTVERSION} USES= pkgconfig qmake -USE_QT4= corelib gui network \ - moc_build rcc_build uic_build +USE_QT5= core gui network widgets buildtools_build -PLIST_FILES= bin/${PORTNAME} \ - share/pixmaps/${PORTNAME}.png +PLIST_FILES= bin/quimup \ + share/pixmaps/quimup.png -DESKTOP_ENTRIES="Quimup" "MPD client" \ - "${PREFIX}/share/pixmaps/${PORTNAME}.png" "${PORTNAME}" \ +DESKTOP_ENTRIES="Quimup" "MPD client" "quiump" "quiump" \ "Audio;AudioVideo;Qt;" true post-patch: @${REINPLACE_CMD} -e \ - '/^CONFIG/s|-O2|| ; \ - s|^QMAKE_|#QMAKE_|' ${WRKSRC}/${PORTNAME}.pro - @${REINPLACE_CMD} -e \ '/^#define get_time/d' ${WRKSRC}/src/qm_playlistview.h do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/quimup ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/src/resources/mn_icon.png \ - ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png + ${STAGEDIR}${PREFIX}/share/pixmaps/quimup.png .include Modified: head/audio/quimup/distinfo ============================================================================== --- head/audio/quimup/distinfo Sat Oct 10 11:52:25 2015 (r398990) +++ head/audio/quimup/distinfo Sat Oct 10 12:15:58 2015 (r398991) @@ -1,2 +1,2 @@ -SHA256 (quimup_1.3.2_src.tar.gz) = a47f9e1e5debcca573acb08ef20e0f41ff74affb3c5857883de8365d741580be -SIZE (quimup_1.3.2_src.tar.gz) = 228123 +SHA256 (quimup_1.4.0_src.tar.gz) = b46f8ff651b9154a43cf90b005c160cbbddcc2fb8c6b17dfdee9b6c4a2e131ea +SIZE (quimup_1.4.0_src.tar.gz) = 225621 From owner-svn-ports-head@freebsd.org Sat Oct 10 12:55:35 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 20987A1049D; Sat, 10 Oct 2015 12:55:35 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFE919B3; Sat, 10 Oct 2015 12:55:34 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ACtX5O092541; Sat, 10 Oct 2015 12:55:33 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ACtXca092536; Sat, 10 Oct 2015 12:55:33 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510101255.t9ACtXca092536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 10 Oct 2015 12:55:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398992 - in head/math: . math77 math77/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: Sat, 10 Oct 2015 12:55:35 -0000 Author: pawel Date: Sat Oct 10 12:55:33 2015 New Revision: 398992 URL: https://svnweb.freebsd.org/changeset/ports/398992 Log: Mathematical subprogram libraries for Fortran 77. Created by CalTech. WWW: http://netlib.org/math/ PR: 201918 Submitted by: mexas@bris.ac.uk Added: head/math/math77/ head/math/math77/Makefile (contents, props changed) head/math/math77/distinfo (contents, props changed) head/math/math77/files/ head/math/math77/files/patch-makefile (contents, props changed) head/math/math77/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Oct 10 12:15:58 2015 (r398991) +++ head/math/Makefile Sat Oct 10 12:55:33 2015 (r398992) @@ -244,6 +244,7 @@ SUBDIR += ltl SUBDIR += ltl2ba SUBDIR += lybniz + SUBDIR += math77 SUBDIR += mathomatic SUBDIR += matio SUBDIR += matlab-installer Added: head/math/math77/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/math77/Makefile Sat Oct 10 12:55:33 2015 (r398992) @@ -0,0 +1,55 @@ +# $FreeBSD$ + +PORTNAME= math77 +PORTVERSION= 6.0 +CATEGORIES= math +MASTER_SITES= NL/math +DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= mexas@bris.ac.uk +COMMENT= CalTech mathematical subprogram libraries for Fortran 77 + +LICENSE= BSD3CLAUSE + +USES= fortran gmake tar:tgz +WRKSRC= ${WRKDIR}/MATH77 +MAKEFILE= makefile +USE_LDCONFIG= yes + +PLIST_FILES= lib/libmath77.a + +DEMO= cblas ccoef cgam cge2 cgefsc cpolz csort cwofz daccum dasinh dbacc \ + dbesj0 dbesjn dbi0k0 dbinom dblas1 dblas2 dblas3 dblas4 dc2fit dcdchi \ + dcdnml dcdpoi dcft dchol dchol2 dckder dcon dcpltk dcpval ddasl1 \ + ddasl2 ddasl3 ddasl4 ddasl5 ddasl6 ddasl7 dei deli derf derfce derfi \ + devun devvun dfmin dfrenl dgami dgamma dge2 dgefsc dherql dhfti dhint \ + dhtcc dilup dilupm dint1f dint1r dintmf dintmr diva divdb divx djacg1 \ + djacg2 dlasum dlesum dlnrel dmess dmlc01 dmpval dnlafb dnlafu dnlagb \ + dnlagu dnlsfb dnlsfu dnlsgb dnlsgu dnqsol dpfit dplot dpoi dpolz \ + dpolz2 dprpl dprpl1 dprpl2 dpsi dran drane drang drangv dranr dranu \ + dranus drft drft1 dsbasd dsfit dsfitc dsi dsort dspge dsva dsvdrs \ + dsymql dtcst dtgfi dtgfi1 dtgfi2 dtgrec ducom2 ducomp dwcom2 dwcomp \ + dxrk8 dzero ermsg err1 exsort gsortp idranp insort isort isranp mach \ + matp matpr ran1 saccum sasinh sbacc sbesj0 sbesjn sbi0k0 sbinom sblas1 \ + sblas2 sblas3 sblas4 sc2fit scdchi scdnml scdpoi scft schol schol2 \ + sckder scon scpltk scpval sdasl1 sdasl2 sdasl3 sdasl4 sdasl5 sdasl6 \ + sdasl7 sei seli serf serfce serfi sevun sevvun sfmin sfrenl sgami \ + sgamma sge2 sgefsc sherql shfti shint shtcc silup silupm sint1f sint1r \ + sintmf sintmr siva sivdb sivx sjacg1 sjacg2 slasum slesum slnrel smess \ + smlc01 smpval snlafb snlafu snlagb snlagu snlsfb snlsfu snlsgb snlsgu \ + snqsol spfit splot spoi spolz spolz2 sprpl sprpl1 sprpl2 spsi sran \ + srane srang srangv sranr sranu sranus srft srft1 ssbasd ssfit ssfitc \ + ssi ssort sspge ssva ssvdrs ssymql stcst stgfi stgfi1 stgfi2 stgrec \ + sucom2 sucomp swcom2 swcomp sxrk8 szero vecp vecpr xblas zcoef zcomp \ + zgam zpolz zwofz + +do-install: + ${INSTALL_DATA} ${WRKSRC}/libmath77.a ${STAGEDIR}${PREFIX}/lib + +do-test: +.for CODE in ${DEMO} + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} code=${CODE} ${MAKE_CMD} demo) +.endfor + +.include Added: head/math/math77/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/math77/distinfo Sat Oct 10 12:55:33 2015 (r398992) @@ -0,0 +1,2 @@ +SHA256 (math77/math77.tgz) = 71cff919c7aa809ef3711c38ed80fda44d65caeca770c875b57bc426ce62d7ba +SIZE (math77/math77.tgz) = 2205951 Added: head/math/math77/files/patch-makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/math77/files/patch-makefile Sat Oct 10 12:55:33 2015 (r398992) @@ -0,0 +1,30 @@ +--- makefile.orig 2015-07-13 15:16:24 UTC ++++ makefile +@@ -6,12 +6,11 @@ + # you will want to change the optimization level. (For example change + # -ggdb to -O3 or -O2. + +-FC = /usr/bin/gfortran + std_flags=-march=native -fimplicit-none -fno-f2c -fno-backslash\ + -funroll-loops -ffpe-trap=zero,overflow,invalid -finit-real=NAN\ +- -ftree-vectorize -floop-interchange -floop-strip-mine -floop-block -pipe ++ -ftree-vectorize -pipe + +-FFLAGS = -ggdb $(std_flags) -Wall ++FFLAGS+= $(std_flags) -Wall + # + objm77 = $(patsubst %.f,%.o, $(wildcard *.f)) + # +@@ -20,10 +19,10 @@ all: libmath77.a + .SUFFIXES: + .SUFFIXES: .f .o + %.o: %.f +- $(FC) -c $(FFLAGS) $(FOPTS) -o $@ $*.f &>>compile.msg ++ $(FC) -c $(FFLAGS) $(FOPTS) -o $@ $*.f + + libmath77.a: $(objm77) +- ar r $@ $(objm77) &>>compile.msg ++ ar r $@ $(objm77) + + demo: libmath77.a makefile demo/dr$(code).f + $(FC) $(FFLAGS) -o demo/dr$(code) demo/dr$(code).f -L. -lmath77;\ Added: head/math/math77/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/math77/pkg-descr Sat Oct 10 12:55:33 2015 (r398992) @@ -0,0 +1,4 @@ +Mathematical subprogram libraries for Fortran 77. +Created by CalTech. + +WWW: http://netlib.org/math/ From owner-svn-ports-head@freebsd.org Sat Oct 10 13:16:59 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 063959D22BC; Sat, 10 Oct 2015 13:16:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4EB25E5; Sat, 10 Oct 2015 13:16:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ADGvUT098474; Sat, 10 Oct 2015 13:16:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ADGvEe098473; Sat, 10 Oct 2015 13:16:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201510101316.t9ADGvEe098473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 10 Oct 2015 13:16:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398993 - head/devel/android-tools-adb 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: Sat, 10 Oct 2015 13:16:59 -0000 Author: jbeich Date: Sat Oct 10 13:16:57 2015 New Revision: 398993 URL: https://svnweb.freebsd.org/changeset/ports/398993 Log: devel/android-tools-adb: unbreak TEST=on more reliably /dev/full is only provided by default on 11.0, earlier releases have it in lindev(4). This leads to the same error as with automation. Other BSDs including DragonFly don't provide /dev/full at all. [ RUN ] io.WriteFdExactly_ENOSPC adb_io_test.cpp:136: Failure Expected: (-1) != (fd), actual: -1 vs -1 [ FAILED ] io.WriteFdExactly_ENOSPC (1 ms) Reported by: Barbara Modified: head/devel/android-tools-adb/Makefile (contents, props changed) Modified: head/devel/android-tools-adb/Makefile ============================================================================== --- head/devel/android-tools-adb/Makefile Sat Oct 10 12:55:33 2015 (r398992) +++ head/devel/android-tools-adb/Makefile Sat Oct 10 13:16:57 2015 (r398993) @@ -63,11 +63,11 @@ post-patch: s/ (LOG|PLOG|UNIMPLEMENTED)/ DISABLED_\1/' \ ${WRKSRC}/base/logging_test.cpp; \ fi -.if defined(PACKAGE_BUILDING) -# XXX /dev/full isn't mounted by poudriere/tinderbox - @${REINPLACE_CMD} -e '/^TEST/s/[^ ]*ENOSPC/DISABLED_&/' \ - ${WRKSRC}/adb/adb_io_test.cpp -.endif +# XXX Hidden by poudriere/tinderbox, see lindev(4) for FreeBSD < 11.0 + @if [ ! -e /dev/full ]; then \ + ${REINPLACE_CMD} -e '/^TEST/s/[^ ]*ENOSPC/DISABLED_&/' \ + ${WRKSRC}/adb/adb_io_test.cpp; \ + fi post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${PLIST_FILES:M%%BASH%%*:C/%%.*%%//:H} From owner-svn-ports-head@freebsd.org Sat Oct 10 13:44:13 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 12C2AA1076E; Sat, 10 Oct 2015 13:44:13 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB6421CA5; Sat, 10 Oct 2015 13:44:12 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ADiBqT007189; Sat, 10 Oct 2015 13:44:11 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ADiB7L007188; Sat, 10 Oct 2015 13:44:11 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510101344.t9ADiB7L007188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 10 Oct 2015 13:44:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398994 - head/net-mgmt/lldpd 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: Sat, 10 Oct 2015 13:44:13 -0000 Author: junovitch Date: Sat Oct 10 13:44:11 2015 New Revision: 398994 URL: https://svnweb.freebsd.org/changeset/ports/398994 Log: net-mgmt/lldpd: Add maintainer's mirror to MASTER_SITES PR: 203621 Submitted by: Mathieu Simon (maintainer) Modified: head/net-mgmt/lldpd/Makefile Modified: head/net-mgmt/lldpd/Makefile ============================================================================== --- head/net-mgmt/lldpd/Makefile Sat Oct 10 13:16:57 2015 (r398993) +++ head/net-mgmt/lldpd/Makefile Sat Oct 10 13:44:11 2015 (r398994) @@ -4,7 +4,8 @@ PORTNAME= lldpd PORTVERSION= 0.7.18 CATEGORIES= net-mgmt -MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ +MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ \ + http://mirror.1labs.ch/${PORTNAME}/ MAINTAINER= freebsd@simweb.ch COMMENT= LLDP (802.1ab)/CDP/EDP/SONMP/FDP daemon and SNMP subagent From owner-svn-ports-head@freebsd.org Sat Oct 10 13:52: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 9E958A10D21; Sat, 10 Oct 2015 13:52:45 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7173B22F; Sat, 10 Oct 2015 13:52:45 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ADqifD010154; Sat, 10 Oct 2015 13:52:44 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ADqiIR010150; Sat, 10 Oct 2015 13:52:44 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101352.t9ADqiIR010150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 13:52:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398995 - in head/finance/moneymanagerex: . 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: Sat, 10 Oct 2015 13:52:45 -0000 Author: marino Date: Sat Oct 10 13:52:43 2015 New Revision: 398995 URL: https://svnweb.freebsd.org/changeset/ports/398995 Log: finance/moneymanagerx: Upgrade version 0.9.9.0 => 1.0.0.0 The PR was modified. The PORTDATA change was not accepted. The rewrapping of pkg-descr from 75 to 72 character width was not accepted. USE_AUTOTOOLS did get added and I kept it because I couldn't make USES=autoreconf work out of the box. It's needs some customization and I'm not familar enough with automake to get it to work, so check-sanity squawks but it passes the build. While here, add a patch to support DragonFly PR: 199228 Submitted by: ports fury Added: head/finance/moneymanagerex/files/ head/finance/moneymanagerex/files/patch-bakefile-0.2.9_autoconf_bakefile.m4 (contents, props changed) Modified: head/finance/moneymanagerex/Makefile head/finance/moneymanagerex/distinfo head/finance/moneymanagerex/pkg-plist Modified: head/finance/moneymanagerex/Makefile ============================================================================== --- head/finance/moneymanagerex/Makefile Sat Oct 10 13:44:11 2015 (r398994) +++ head/finance/moneymanagerex/Makefile Sat Oct 10 13:52:43 2015 (r398995) @@ -2,31 +2,46 @@ # $FreeBSD$ PORTNAME= mmex -PORTVERSION= 0.9.9.0 -PORTREVISION= 2 +PORTVERSION= 1.0.0.0 CATEGORIES= finance -MASTER_SITES= http://www.codelathe.com/${PORTNAME}/installer/linux/ \ - SF/moneymanagerex/moneymanagerex/Version%20${PORTVERSION} -DISTNAME= ${PORTNAME}_${PORTVERSION}_src +MASTER_SITES= SF/moneymanagerex/moneymanagerex/Version%20${PORTVERSION} \ + https://github.com/vslavik/bakefile/releases/download/v0.2.9/:bakefile +DISTFILES= mmex_${PORTVERSION}_src.tar.bz2 \ + bakefile-0.2.9.tar.gz:bakefile MAINTAINER= ports@FreeBSD.org COMMENT= Free, open-source, easy-to-use personal finance software LICENSE= GPLv2 -BUILD_DEPENDS= ${LOCALBASE}/include/boost/version.hpp:${PORTSDIR}/devel/boost-libs +NO_WRKSUBDIR= yes -USES= gettext-tools tar:bzip2 +USES= compiler:c++11-lib gettext gmake tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} -USE_WX= 2.8+ +USE_WX= 3.0 WX_UNICODE= yes +WX_CONF_ARGS= absolute +USE_AUTOTOOLS= aclocal autoconf +ACLOCAL_ARGS= -I m4 -I bakefile-0.2.9/autoconf \ + --automake-acdir=${ACLOCAL_DIR} +INSTALLS_ICONS= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +PORTDOCS= * -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} -CPPFLAGS+= -I${LOCALBASE}/include # helps to find boost +OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e '/man1/s,$$(datadir),${MANPREFIX},' \ - ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|$$(datadir)/man|$$(prefix)/man|' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|\[noext\]|[]|' ${WRKSRC}/configure.ac + @${REINPLACE_CMD} -e \ + 's| -g0 -O2||' ${WRKSRC}/m4/wxpresets.m4 + +pre-configure: + @(cd ${WRKSRC} && ${SH} update_revision.sh) .include Modified: head/finance/moneymanagerex/distinfo ============================================================================== --- head/finance/moneymanagerex/distinfo Sat Oct 10 13:44:11 2015 (r398994) +++ head/finance/moneymanagerex/distinfo Sat Oct 10 13:52:43 2015 (r398995) @@ -1,2 +1,4 @@ -SHA256 (mmex_0.9.9.0_src.tar.bz2) = 9973c7010f8989ab9582576549ea3a7516a65f32e9f21d1c50b680886512a2ac -SIZE (mmex_0.9.9.0_src.tar.bz2) = 9667919 +SHA256 (mmex_1.0.0.0_src.tar.bz2) = c28761bf9bef5f75cb25b887e89439f8e107957688004697b28e914f5d5ccb69 +SIZE (mmex_1.0.0.0_src.tar.bz2) = 11077632 +SHA256 (bakefile-0.2.9.tar.gz) = 9f3c65411ad3932027e3c3e765337d89be2f9cf5ee9a204da80e92a8c2d76ca5 +SIZE (bakefile-0.2.9.tar.gz) = 775528 Added: head/finance/moneymanagerex/files/patch-bakefile-0.2.9_autoconf_bakefile.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/moneymanagerex/files/patch-bakefile-0.2.9_autoconf_bakefile.m4 Sat Oct 10 13:52:43 2015 (r398995) @@ -0,0 +1,18 @@ +--- bakefile-0.2.9/autoconf/bakefile.m4.orig 2011-02-02 15:06:48 UTC ++++ bakefile-0.2.9/autoconf/bakefile.m4 +@@ -444,6 +444,7 @@ AC_DEFUN([AC_BAKEFILE_SHARED_LD], + + powerpc-apple-macos* | \ + *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | *-*-k*bsd*-gnu | \ ++ *-*-dragonfly* | \ + *-*-mirbsd* | \ + *-*-sunos4* | \ + *-*-osf* | \ +@@ -495,6 +496,7 @@ AC_DEFUN([AC_BAKEFILE_SHARED_VERSIONS], + + case "${BAKEFILE_HOST}" in + *-*-linux* | *-*-freebsd* | *-*-openbsd* | *-*-netbsd* | \ ++ *-*-dragonfly* | \ + *-*-k*bsd*-gnu | *-*-mirbsd* ) + if test "x$SUNCXX" = "xyes"; then + SONAME_FLAG="-h " Modified: head/finance/moneymanagerex/pkg-plist ============================================================================== --- head/finance/moneymanagerex/pkg-plist Sat Oct 10 13:44:11 2015 (r398994) +++ head/finance/moneymanagerex/pkg-plist Sat Oct 10 13:52:43 2015 (r398995) @@ -1,93 +1,40 @@ bin/mmex man/man1/mmex.1.gz share/applications/mmex.desktop -share/doc/mmex/contrib.txt -share/doc/mmex/help/budget.html -share/doc/mmex/help/budget_editor.png -share/doc/mmex/help/budget_entry_details.png -share/doc/mmex/help/budget_grid.png -share/doc/mmex/help/custom_sql_reports.html -share/doc/mmex/help/french/account.jpg -share/doc/mmex/help/french/add_acc_wizard1.jpg -share/doc/mmex/help/french/add_acc_wizard2.jpg -share/doc/mmex/help/french/add_acc_wizard3.jpg -share/doc/mmex/help/french/index.html -share/doc/mmex/help/french/investment.html -share/doc/mmex/help/french/main_screen.jpg -share/doc/mmex/help/french/mmex_concept.png -share/doc/mmex/help/german/read.me -share/doc/mmex/help/index.html -share/doc/mmex/help/investment.html -share/doc/mmex/help/italian/custom_sql_reports.html -share/doc/mmex/help/italian/index.html -share/doc/mmex/help/italian/investment.html -share/doc/mmex/help/italian/mmex_concept.png -share/doc/mmex/help/italian/stock_dialog.jpg -share/doc/mmex/help/italian/stock_options.jpg -share/doc/mmex/help/italian/stock_view.jpg -share/doc/mmex/help/mmex_concept.png -share/doc/mmex/help/mmex_db_structure.png -share/doc/mmex/help/polish/budget.html -share/doc/mmex/help/polish/budget_editor.png -share/doc/mmex/help/polish/budget_entry_details.png -share/doc/mmex/help/polish/budget_grid.png -share/doc/mmex/help/polish/custom_sql_reports.html -share/doc/mmex/help/polish/index.html -share/doc/mmex/help/polish/investment.html -share/doc/mmex/help/polish/mmex_concept.png -share/doc/mmex/help/polish/mmex_structure.jpg -share/doc/mmex/help/polish/stock_dialog.jpg -share/doc/mmex/help/polish/stock_options.jpg -share/doc/mmex/help/polish/stock_view.jpg -share/doc/mmex/help/russian/custom_sql_reports.html -share/doc/mmex/help/russian/index.html -share/doc/mmex/help/russian/investment.html -share/doc/mmex/help/russian/mmex_concept.png -share/doc/mmex/help/russian/stock_dialog.png -share/doc/mmex/help/spanish/budget.html -share/doc/mmex/help/spanish/custom_sql_reports.html -share/doc/mmex/help/spanish/index.html -share/doc/mmex/help/spanish/investment.html -share/doc/mmex/help/stock_dialog.png -share/doc/mmex/help/stock_options.png -share/doc/mmex/help/stock_view.png -share/doc/mmex/license.txt -share/doc/mmex/version.txt share/icons/hicolor/scalable/apps/mmex.svg -share/mmex/po/arabic.mo -share/mmex/po/bulgarian.mo -share/mmex/po/chinese_chs.mo -share/mmex/po/chinese_zh.mo -share/mmex/po/croatian.mo -share/mmex/po/czech.mo -share/mmex/po/dutch.mo -share/mmex/po/dutch_be.mo -share/mmex/po/english-uk.mo -share/mmex/po/english.mo -share/mmex/po/french.mo -share/mmex/po/german.mo -share/mmex/po/greek.mo -share/mmex/po/hebrew.mo -share/mmex/po/hungarian.mo -share/mmex/po/indonesian.mo -share/mmex/po/italian.mo -share/mmex/po/latvian.mo -share/mmex/po/norwegian.mo -share/mmex/po/polish.mo -share/mmex/po/portuguese.mo -share/mmex/po/portuguese_portugal.mo -share/mmex/po/romanian.mo -share/mmex/po/russian.mo -share/mmex/po/serbian.mo -share/mmex/po/serbo-croatian.mo -share/mmex/po/slovak.mo -share/mmex/po/slovenian.mo -share/mmex/po/spanish.mo -share/mmex/po/swedish.mo -share/mmex/po/tamil.mo -share/mmex/po/turkish.mo -share/mmex/po/ukrainian.mo -share/mmex/po/vietnamese.mo -share/mmex/res/currency_seed.db3 -share/mmex/res/kaching.wav -share/mmex/res/mmex.ico +%%DATADIR%%/po/en/arabic.mo +%%DATADIR%%/po/en/bulgarian.mo +%%DATADIR%%/po/en/chinese_chs.mo +%%DATADIR%%/po/en/chinese_zh.mo +%%DATADIR%%/po/en/croatian.mo +%%DATADIR%%/po/en/czech.mo +%%DATADIR%%/po/en/dutch.mo +%%DATADIR%%/po/en/dutch_be.mo +%%DATADIR%%/po/en/english-uk.mo +%%DATADIR%%/po/en/english.mo +%%DATADIR%%/po/en/french.mo +%%DATADIR%%/po/en/german.mo +%%DATADIR%%/po/en/greek.mo +%%DATADIR%%/po/en/hebrew.mo +%%DATADIR%%/po/en/hungarian.mo +%%DATADIR%%/po/en/indonesian.mo +%%DATADIR%%/po/en/italian.mo +%%DATADIR%%/po/en/latvian.mo +%%DATADIR%%/po/en/norwegian.mo +%%DATADIR%%/po/en/polish.mo +%%DATADIR%%/po/en/portuguese.mo +%%DATADIR%%/po/en/portuguese_portugal.mo +%%DATADIR%%/po/en/romanian.mo +%%DATADIR%%/po/en/russian.mo +%%DATADIR%%/po/en/serbian.mo +%%DATADIR%%/po/en/serbo-croatian.mo +%%DATADIR%%/po/en/slovak.mo +%%DATADIR%%/po/en/slovenian.mo +%%DATADIR%%/po/en/spanish.mo +%%DATADIR%%/po/en/swedish.mo +%%DATADIR%%/po/en/tamil.mo +%%DATADIR%%/po/en/turkish.mo +%%DATADIR%%/po/en/ukrainian.mo +%%DATADIR%%/po/en/vietnamese.mo +%%DATADIR%%/res/kaching.wav +%%DATADIR%%/res/mmex.ico From owner-svn-ports-head@freebsd.org Sat Oct 10 14:03:06 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 744EF9D234B; Sat, 10 Oct 2015 14:03:06 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12427990; Sat, 10 Oct 2015 14:03:06 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AE35uN013637; Sat, 10 Oct 2015 14:03:05 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AE31Cc013598; Sat, 10 Oct 2015 14:03:01 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201510101403.t9AE31Cc013598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sat, 10 Oct 2015 14:03:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398996 - in head: Mk/Uses audio/deadbeef audio/deadbeef/files comms/hidapi comms/hidapi/files converters/libiconv converters/libiconv/files deskutils/fbreader deskutils/ljclive deskuti... 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: Sat, 10 Oct 2015 14:03:06 -0000 Author: tijl Date: Sat Oct 10 14:03:00 2015 New Revision: 398996 URL: https://svnweb.freebsd.org/changeset/ports/398996 Log: Remove iconv(), iconv_open() and iconv_close() symbols from libiconv. These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include instead of . irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) Added: head/audio/deadbeef/files/patch-junklib.c (contents, props changed) head/deskutils/owncloudclient/files/patch-cmake-modules-FindIconv.cmake (contents, props changed) head/emulators/vmw/files/patch-vmshf.c (contents, props changed) Deleted: head/converters/libiconv/files/patch-lib-iconv.c Modified: head/Mk/Uses/iconv.mk head/audio/deadbeef/Makefile head/comms/hidapi/Makefile head/comms/hidapi/files/patch-configure.ac head/comms/hidapi/files/patch-libusb-hid.c head/converters/libiconv/Makefile head/deskutils/fbreader/Makefile head/deskutils/ljclive/Makefile head/deskutils/owncloudclient/Makefile head/devel/aegis/Makefile head/devel/libexplain/Makefile head/devel/sdl20/Makefile head/emulators/vmw/Makefile head/irc/scrollz/Makefile head/japanese/chasen-base/Makefile head/japanese/eb/Makefile head/japanese/eb/files/patch-m4-gettext-m4 head/japanese/eblook/Makefile head/java/jikes/Makefile head/multimedia/transcode/Makefile head/net-mgmt/icinga-classicweb/Makefile head/net-mgmt/icinga-core/Makefile.common head/net-mgmt/netxms/Makefile head/net-p2p/transmission-cli/Makefile head/net/asterisk11/Makefile head/net/c3270/Makefile head/net/samba4/Makefile head/net/samba41/Makefile head/net/samba42/Makefile head/www/htmlcxx/Makefile head/www/httrack/Makefile head/www/xapian-omega/Makefile head/x11-wm/jwm/Makefile head/x11/mrxvt-devel/Makefile head/x11/mrxvt/Makefile head/x11/x3270/Makefile Modified: head/Mk/Uses/iconv.mk ============================================================================== --- head/Mk/Uses/iconv.mk Sat Oct 10 13:52:43 2015 (r398995) +++ head/Mk/Uses/iconv.mk Sat Oct 10 14:03:00 2015 (r398996) @@ -44,7 +44,7 @@ ICONV_LIB_PATH= /usr/lib/libc.so .if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && (${OSVERSION} < 1001514 \ || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100069))) \ || exists(${LOCALBASE}/include/iconv.h) -BUILD_DEPENDS+= libiconv>=1.14_8:${PORTSDIR}/converters/libiconv +BUILD_DEPENDS+= libiconv>=1.14_9:${PORTSDIR}/converters/libiconv CPPFLAGS+= -DLIBICONV_PLUG CFLAGS+= -DLIBICONV_PLUG CXXFLAGS+= -DLIBICONV_PLUG Modified: head/audio/deadbeef/Makefile ============================================================================== --- head/audio/deadbeef/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/audio/deadbeef/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= deadbeef PORTVERSION= 0.6.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/ Added: head/audio/deadbeef/files/patch-junklib.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/deadbeef/files/patch-junklib.c Sat Oct 10 14:03:00 2015 (r398996) @@ -0,0 +1,10 @@ +--- junklib.c.orig 2014-07-31 19:03:51 UTC ++++ junklib.c +@@ -32,7 +32,6 @@ + #include + #include + #if HAVE_ICONV +- #define LIBICONV_PLUG + #include + #elif HAVE_ICU + #warning icu Modified: head/comms/hidapi/Makefile ============================================================================== --- head/comms/hidapi/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/comms/hidapi/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -15,10 +15,16 @@ LICENSE_COMB= dual USE_GITHUB= yes GH_ACCOUNT= signal11 -USES= autoreconf iconv:wchar_t libtool +USES= autoreconf gettext-tools iconv:wchar_t libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip PORTDOCS= * +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib + +pre-configure: + @${CP} ${LOCALBASE}/share/gettext/config.rpath ${WRKSRC} + .include Modified: head/comms/hidapi/files/patch-configure.ac ============================================================================== --- head/comms/hidapi/files/patch-configure.ac Sat Oct 10 13:52:43 2015 (r398995) +++ head/comms/hidapi/files/patch-configure.ac Sat Oct 10 14:03:00 2015 (r398996) @@ -1,11 +1,18 @@ ---- configure.ac.orig +--- configure.ac.orig 2013-10-06 22:43:37 UTC +++ configure.ac -@@ -94,6 +94,8 @@ - LIBS="${LIBS}" +@@ -89,11 +89,11 @@ case $host in + os="freebsd" + threads="pthreads" + +- CFLAGS="$CFLAGS -I/usr/local/include" +- LDFLAGS="$LDFLAGS -L/usr/local/lib" +- LIBS="${LIBS}" AC_CHECK_LIB([usb], [libusb_init], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -lusb"], [hidapi_lib_error libusb]) - AC_CHECK_LIB([iconv], [iconv_open], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -liconv"], [hidapi_lib_error libiconv]) +- AC_CHECK_LIB([iconv], [iconv_open], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -liconv"], [hidapi_lib_error libiconv]) + AC_CHECK_DECLS([libusb_get_string_descriptor], [], [], [[#include ]]) + AC_CHECK_DECLS([libusb_handle_events_completed], [], [], [[#include ]]) ++ AM_ICONV ++ LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} ${LTLIBICONV}" echo libs_priv: $LIBS_LIBUSB_PRIVATE ;; *-mingw*) Modified: head/comms/hidapi/files/patch-libusb-hid.c ============================================================================== --- head/comms/hidapi/files/patch-libusb-hid.c Sat Oct 10 13:52:43 2015 (r398995) +++ head/comms/hidapi/files/patch-libusb-hid.c Sat Oct 10 14:03:00 2015 (r398996) @@ -1,4 +1,4 @@ ---- libusb/hid.c.orig +--- libusb/hid.c.orig 2013-10-06 22:43:37 UTC +++ libusb/hid.c @@ -25,6 +25,8 @@ @@ -9,7 +9,7 @@ /* C */ #include #include -@@ -250,7 +252,7 @@ +@@ -250,7 +252,7 @@ static int get_usage(uint8_t *report_des } #endif /* INVASIVE_GET_USAGE */ @@ -18,7 +18,20 @@ /* The FreeBSD version of libusb doesn't have this funciton. In mainline libusb, it's inlined in libusb.h. This function will bear a striking resemblence to that one, because there's about one way to code it. -@@ -757,7 +757,11 @@ +@@ -333,11 +335,7 @@ static wchar_t *get_usb_string(libusb_de + size_t inbytes; + size_t outbytes; + size_t res; +-#ifdef __FreeBSD__ +- const char *inptr; +-#else +- char *inptr; +-#endif ++ ICONV_CONST char *inptr; + char *outptr; + + /* Determine which language to use. */ +@@ -757,7 +755,11 @@ static void *read_thread(void *param) libusb_cancel_transfer(dev->transfer); while (!dev->cancelled) Modified: head/converters/libiconv/Makefile ============================================================================== --- head/converters/libiconv/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/converters/libiconv/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= libiconv PORTVERSION= 1.14 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= converters devel MASTER_SITES= GNU Modified: head/deskutils/fbreader/Makefile ============================================================================== --- head/deskutils/fbreader/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/deskutils/fbreader/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -4,7 +4,7 @@ PORTNAME= fbreader PORTVERSION= 0.99.6 DISTVERSIONSUFFIX= -freebsdport -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= ports@FreeBSD.org @@ -53,8 +53,7 @@ QT4_LDFLAGS= -L${QT_LIBDIR} QT4_MAKE_ENV= UI_TYPE=qt4 post-patch: - @${REINPLACE_CMD} -e '/^CFLAGS/s,-pipe.*$$,${CFLAGS} -DLIBICONV_PLUG,' \ - -e '/^CC/d;/^LD/d;/QTINCLUDE/s,-I.*$$,-I${QT_INCDIR},' \ + @${REINPLACE_CMD} -e '/^CC/d;/^LD/d;/QTINCLUDE/s,-I.*$$,-I${QT_INCDIR},' \ ${WRKSRC}/makefiles/arch/desktop.mk @${REINPLACE_CMD} -e 's,-O3,,;s,-ldl,${ICONV_LIB},' \ ${WRKSRC}/makefiles/config.mk ${WRKSRC}/zlibrary/core/Makefile @@ -64,4 +63,11 @@ post-patch: @${FIND} ${WRKSRC} -name Makefile | ${XARGS} ${REINPLACE_CMD} \ -e 's,make ,gmake ,' +pre-configure: +# This cannot be done in post-patch because build dependencies are installed +# after patching and they can pull in libiconv which can affect CFLAGS in +# Mk/Uses/iconv.mk. + @${REINPLACE_CMD} 's|^CFLAGS =.*$$|CFLAGS = ${CFLAGS}|' \ + ${WRKSRC}/makefiles/arch/desktop.mk + .include Modified: head/deskutils/ljclive/Makefile ============================================================================== --- head/deskutils/ljclive/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/deskutils/ljclive/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -13,12 +13,10 @@ COMMENT= Command line client for posting USES= iconv GNU_CONFIGURE= yes +CONFIGURE_ARGS= ac_cv_search_iconv=${ICONV_LIB} +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib CONFLICTS= *clive-[1-9]* -.include - -post-patch: - @${REINPLACE_CMD} 's/iconv "iconv/"iconv/' ${WRKSRC}/configure - -.include +.include Modified: head/deskutils/owncloudclient/Makefile ============================================================================== --- head/deskutils/owncloudclient/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/deskutils/owncloudclient/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,6 +3,7 @@ PORTNAME= owncloudclient PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= http://download.owncloud.com/desktop/stable/ @@ -14,7 +15,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libinotify.so:${PORTSDIR}/devel/libinotify \ libqt5keychain.so:${PORTSDIR}/security/qtkeychain-qt5 -USES= cmake:outsource compiler:c++11-lib gmake pkgconfig tar:xz +USES= cmake:outsource compiler:c++11-lib gmake iconv pkgconfig tar:xz USE_QT5= buildtools_build concurrent core dbus gui linguist_build network \ qmake_build webkit xml USE_OPENSSL= yes Added: head/deskutils/owncloudclient/files/patch-cmake-modules-FindIconv.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/owncloudclient/files/patch-cmake-modules-FindIconv.cmake Sat Oct 10 14:03:00 2015 (r398996) @@ -0,0 +1,13 @@ +--- cmake/modules/FindIconv.cmake.orig 2015-07-09 17:51:37 UTC ++++ cmake/modules/FindIconv.cmake +@@ -36,9 +36,7 @@ find_library(ICONV_LIBRARY + ) + + if (ICONV_LIBRARY) +- get_filename_component(_ICONV_NAME ${ICONV_LIBRARY} NAME) +- get_filename_component(_ICONV_PATH ${ICONV_LIBRARY} PATH) +- check_library_exists(${_ICONV_NAME} iconv ${_ICONV_PATH} HAVE_ICONV) ++ set(HAVE_ICONV TRUE) + else() + check_function_exists(iconv HAVE_ICONV) + endif() Modified: head/devel/aegis/Makefile ============================================================================== --- head/devel/aegis/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/devel/aegis/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= aegis PORTVERSION= 4.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF DISTVERSIONSUFFIX= .D510 Modified: head/devel/libexplain/Makefile ============================================================================== --- head/devel/libexplain/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/devel/libexplain/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= libexplain PORTVERSION= 1.3.${PATCHLEVEL} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTVERSION:R} DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed RUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof -USES= bison gettext ghostscript:build gmake libtool:build +USES= bison gettext ghostscript:build gmake iconv libtool:build GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_linux_kd_h=no USE_LDCONFIG= yes @@ -29,6 +29,15 @@ PATCHLEVEL= D012 OPTIONS_DEFINE= DOCS +.include + +.if empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv=no +.else +CONFIGURE_ARGS+=ac_cv_func_iconv_open=yes ac_cv_func_iconv_close=yes \ + ac_cv_lib_iconv_iconv=yes +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|$$(libdir)/pkgconfig|$$(libdir)/../libdata/pkgconfig|g ; \ @@ -37,4 +46,4 @@ post-patch: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libexplain.so -.include +.include Modified: head/devel/sdl20/Makefile ============================================================================== --- head/devel/sdl20/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/devel/sdl20/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -186,6 +186,12 @@ CONFIGURE_ARGS+= --disable-video-x11 \ --disable-video-x11-vm .endif +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ARGS+= ac_cv_lib_iconv_iconv_open=yes ac_cv_func_iconv=yes +.endif + post-patch: @${REINPLACE_CMD} -e '/ CheckInputEvents$$/d' \ -e 's/-liconv/${ICONV_LIB}/g' ${WRKSRC}/configure @@ -193,4 +199,4 @@ post-patch: @${REINPLACE_CMD} 's/_m_prefetch/__builtin_prefetch/' \ ${WRKSRC}/configure ${WRKSRC}/src/video/SDL_blit_A.c -.include +.include Modified: head/emulators/vmw/Makefile ============================================================================== --- head/emulators/vmw/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/emulators/vmw/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -2,6 +2,7 @@ PORTNAME= vmw PORTVERSION= 060510 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://sites.google.com/site/chitchatvmback/storage/ @@ -33,7 +34,7 @@ PLIST_FILES+= sbin/${i} .if !exists(/usr/lib32/libc.so) IGNORE= please install lib32 .endif -.if ${OSVERSION} < 1000000 +.if !empty(ICONV_LIB) IGNORE= needs 32bit libiconv .endif CFLAGS+= -m32 @@ -42,9 +43,11 @@ LDFLAGS+= -m32 -B/usr/lib32 -L/usr/lib32 LD= ${CC} .endif -.if ${OSVERSION} > 1000000 +.if empty(ICONV_LIB) FTPLIB= MAKE_ENV+= FTPLIB="${FTPLIB}" +.else +CFLAGS+= -I${LOCALBASE}/include .endif do-install: Added: head/emulators/vmw/files/patch-vmshf.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/vmw/files/patch-vmshf.c Sat Oct 10 14:03:00 2015 (r398996) @@ -0,0 +1,17 @@ +--- vmshf.c.orig 2006-05-10 04:36:12 UTC ++++ vmshf.c +@@ -306,14 +306,7 @@ static uint32_t LocalToUtf8(char *dst, c + unix systems with iconv.h + -- use iconv() for code conversion + */ +-#ifdef __FreeBSD__ +-#include +-#include +-typedef size_t iconv_t; +-#else /* __FreeBSD__ */ + #include +-#endif /* __FreeBSD__ */ +- + #include + #include + #include Modified: head/irc/scrollz/Makefile ============================================================================== --- head/irc/scrollz/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/irc/scrollz/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -31,6 +31,12 @@ GNUTLS_CONFIGURE_ON= --with-ssl OPENSSL_USE= OPENSSL=yes OPENSSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ENV+=ac_cv_func_iconv_open=yes +.endif + post-patch: @${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure @@ -46,4 +52,4 @@ post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i} .endfor -.include +.include Modified: head/japanese/chasen-base/Makefile ============================================================================== --- head/japanese/chasen-base/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/japanese/chasen-base/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= chasen PORTVERSION= 2.4.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese textproc MASTER_SITES= SOURCEFORGE_JP/chasen-legacy/56305 PKGNAMESUFFIX= -base @@ -21,6 +21,11 @@ INSTALL_TARGET= install-strip OPTIONS_DEFINE= DOCS +post-patch: + @${REINPLACE_CMD} \ + -e 's/iconv ()/libiconv ()/' \ + -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure + post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/chasen/dic ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/japanese/eb/Makefile ============================================================================== --- head/japanese/eb/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/japanese/eb/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= eb PORTVERSION= 4.4.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= japanese MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ \ ftp://ftp.sra.co.jp/pub/misc/eb/old/eb-${PORTVERSION:C/^([0-9]+)\.([0-9]+).*/\1.\2/}/ @@ -66,7 +66,9 @@ PORTDOCS= eb-01.html eb-02.html eb-03.ht USES= autoreconf iconv libtool perl5 tar:bzip2 GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-pkgdocdir=${DOCSDIR} +CONFIGURE_ARGS= --with-pkgdocdir=${DOCSDIR} \ + --with-iconv-includes=${ICONV_PREFIX}/include \ + --with-iconv-libraries=${ICONV_PREFIX}/lib CONFIGURE_ENV= ac_cv_path_PERL=${PERL} OPTIONS_DEFINE= DOCS NLS @@ -76,11 +78,8 @@ APPENDIXDIR= ${DATADIR}/appendix NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -NLS_CONFIGURE_ON= \ - --with-gettext-includes=${LOCALBASE}/include \ - --with-gettext-libraries=${LOCALBASE}/lib \ - --with-iconv-includes=${ICONV_PREFIX}/include \ - --with-iconv-libraries=${ICONV_PREFIX}/lib +NLS_CONFIGURE_ON= --with-gettext-includes=${LOCALBASE}/include \ + --with-gettext-libraries=${LOCALBASE}/lib NLS_CONFIGURE_OFF= --disable-nls post-extract: Modified: head/japanese/eb/files/patch-m4-gettext-m4 ============================================================================== --- head/japanese/eb/files/patch-m4-gettext-m4 Sat Oct 10 13:52:43 2015 (r398995) +++ head/japanese/eb/files/patch-m4-gettext-m4 Sat Oct 10 14:03:00 2015 (r398996) @@ -1,9 +1,10 @@ ---- m4/gettext.m4.orig 2010-01-03 21:26:04.000000000 +0900 -+++ m4/gettext.m4 2014-04-03 10:20:12.000000000 +0900 -@@ -87,13 +87,19 @@ +--- m4/gettext.m4.orig 2010-01-03 12:26:04 UTC ++++ m4/gettext.m4 +@@ -86,14 +86,17 @@ AC_DEFUN([eb_GNU_GETTEXT], [dnl + save_CPPFLAGS=$CPPFLAGS save_LIBS=$LIBS CPPFLAGS="$save_CPPFLAGS $iconv_includes" - LIBS="$save_LIBS $iconv_libraries" +- LIBS="$save_LIBS $iconv_libraries" - AC_CHECK_LIB(iconv, iconv_open, - [ICONVLIBS="$iconv_libraries -liconv"; LIBS="$LIBS -liconv"]) - AC_CHECK_FUNCS(iconv_open locale_charset) @@ -11,23 +12,21 @@ - if test $ac_cv_func_iconv_open != no; then - ICONVINCS="$iconv_includes" - fi -+ initial_LIBS="$LIBS" -+ AC_SEARCH_LIBS([iconv_open], -+ [iconv], -+ [AS_IF([test "$LIBS" = "$initial_LIBS"], -+ [AC_CHECK_HEADERS([iconv.h]) -+ AC_CHECK_FUNCS([iconv_open]) -+ ICONVLIBS="$iconv_libraries" -+ ICONVINCS="$iconv_includes"], -+ [AC_CHECK_LIB([charset], [locale_charset]) -+ AC_CHECK_HEADERS([iconv.h libcharset.h]) -+ AC_CHECK_FUNCS([iconv_open locale_charset]) -+ ICONVLIBS="$iconv_libraries -lcharset -liconv" -+ ICONVINCS="$iconv_includes"])]) ++ AC_CHECK_HEADER([iconv.h], ++ [AC_DEFINE([HAVE_ICONV_H],[1],[Have iconv.h]) ++ for l in '' -liconv; do ++ LIBS="$save_LIBS $iconv_libraries $l" ++ AC_LINK_IFELSE( ++ AC_LANG_PROGRAM([#include ],[iconv_open("","")]), ++ [AC_DEFINE([HAVE_ICONV_OPEN],[1],[Have iconv_open(3)]) ++ ICONVINCS="$iconv_includes" ++ ICONVLIBS="$iconv_libraries $l" ++ break],[]) ++ done],[]) CPPFLAGS=$save_CPPFLAGS LIBS=$save_LIBS AC_SUBST(ICONVINCS) -@@ -113,10 +119,10 @@ +@@ -113,10 +116,10 @@ AC_DEFUN([eb_GNU_GETTEXT], [dnl save_LIBS=$LIBS dnl * @@ -41,7 +40,7 @@ AC_LINK_IFELSE([ #include #ifdef ENABLE_NLS -@@ -143,8 +149,8 @@ +@@ -143,8 +146,8 @@ main() try_nls=yes, try_nls=no) if test "$try_nls" = yes; then @@ -52,7 +51,7 @@ fi dnl * -@@ -222,11 +228,11 @@ +@@ -222,11 +225,11 @@ main() fi dnl * @@ -67,7 +66,7 @@ AC_LINK_IFELSE([ #include #ifdef ENABLE_NLS -@@ -253,8 +259,8 @@ +@@ -253,8 +256,8 @@ main() try_nls=yes, try_nls=no) if test "$try_nls" = yes; then Modified: head/japanese/eblook/Makefile ============================================================================== --- head/japanese/eblook/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/japanese/eblook/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -16,10 +16,10 @@ LICENSE= GPLv2 LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb USES= iconv -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-eb-conf=${PREFIX}/etc/eb.conf +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-eb-conf=${PREFIX}/etc/eb.conf CPPFLAGS+= -I${ICONV_PREFIX}/include -LDFLAGS+= -L${ICONV_PREFIX}/lib ${ICONV_LIB} +LIBS+= -L${ICONV_PREFIX}/lib ${ICONV_LIB} INFO= eblook PLIST_FILES= bin/eblook @@ -27,10 +27,14 @@ PORTDOCS= AUTHORS COPYING ChangeLog NEWS OPTIONS_DEFINE= DOCS -.include +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_func_iconv=yes +.endif post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.include +.include Modified: head/java/jikes/Makefile ============================================================================== --- head/java/jikes/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/java/jikes/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -12,7 +12,8 @@ COMMENT= Java source to byte-code compil PLIST_SUB= PORTVERSION=${PORTVERSION} GNU_CONFIGURE= yes -CONFIGURE_ARGS= ac_cv_search_libiconv_open=no +CONFIGURE_ARGS= ac_cv_search_iconv=${ICONV_LIB} \ + ac_cv_search_libiconv_open=no USES= iconv gmake tar:bzip2 CPPFLAGS+= -I${LOCALBASE}/include Modified: head/multimedia/transcode/Makefile ============================================================================== --- head/multimedia/transcode/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/multimedia/transcode/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= transcode PORTVERSION= 1.1.7 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= multimedia MASTER_SITES= http://cdn.bitbucket.org/france/transcode-tcforge/downloads/ Modified: head/net-mgmt/icinga-classicweb/Makefile ============================================================================== --- head/net-mgmt/icinga-classicweb/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net-mgmt/icinga-classicweb/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= icinga-classicweb +PORTREVISION= 1 DISTNAME= icinga-${PORTVERSION} MAINTAINER= lme@FreeBSD.org Modified: head/net-mgmt/icinga-core/Makefile.common ============================================================================== --- head/net-mgmt/icinga-core/Makefile.common Sat Oct 10 13:52:43 2015 (r398995) +++ head/net-mgmt/icinga-core/Makefile.common Sat Oct 10 14:03:00 2015 (r398996) @@ -9,7 +9,7 @@ MAINTAINER= lme@FreeBSD.org LICENSE= GPLv2 LIB_DEPENDS+= libltdl.so:${PORTSDIR}/devel/libltdl -USES= cpe gmake iconv perl5 +USES= cpe gmake perl5 GNU_CONFIGURE= yes @@ -47,6 +47,7 @@ CONFIGURE_ARGS= --with-command-user=${IC --with-httpd-conf=${EXAMPLESDIR}/apache2 \ --enable-event-broker \ --enable-nanosleep \ + ac_cv_lib_iconv_main=no CONFIGURE_ENV= PERL=${PERL} \ HOME=${WRKDIR} # prevent creation of .rnd file @@ -67,4 +68,3 @@ SUB_FILES= pkg-message # XXX: Don't remove PREFIX from SUB_LIST here. SUB_LIST= PREFIX=${PREFIX} \ ${PLIST_SUB} - Modified: head/net-mgmt/netxms/Makefile ============================================================================== --- head/net-mgmt/netxms/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net-mgmt/netxms/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= netxms PORTVERSION= 1.2.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= http://www.netxms.org/download/ \ http://www.netxms.org/download/archive/ @@ -78,6 +78,9 @@ USE_RC_SUBR+= nxagentd USE_RC_SUBR+= nxagentd .endif +post-patch: + @${REINPLACE_CMD} 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure + post-install: .if ${PORT_OPTIONS:MSERVER} .if !exists(${STAGEDIR}${PREFIX}/etc/netxmsd.conf.sample) Modified: head/net-p2p/transmission-cli/Makefile ============================================================================== --- head/net-p2p/transmission-cli/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net-p2p/transmission-cli/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -73,6 +73,12 @@ EXTRA_PATCHES= ${PATCHDIR}/disable-web DOCS= AUTHORS NEWS README DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_func_iconv_open=yes +.endif + general-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ 's|noinst_PROGRAMS = |noinst_PROGRAMS = #|g' @@ -109,4 +115,4 @@ general-install: post-install: general-install -.include +.include Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net/asterisk11/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 11.20.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:main,g729 MASTER_SITE_SUBDIR= asterisk/:main \ @@ -221,6 +222,7 @@ post-extract: post-patch: @${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample + @${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure .if ${PORT_OPTIONS:MSYSINFO} @${REINPLACE_CMD} -e 's/%%LIBSYSINFO%%/-lsysinfo/' ${WRKSRC}/main/Makefile .else Modified: head/net/c3270/Makefile ============================================================================== --- head/net/c3270/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net/c3270/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -15,7 +15,7 @@ COMMENT= Full-screen curses-based remote WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/([0-9]\.[0-9])(\..*)/\1/} GNU_CONFIGURE= yes -CONFIGURE_ARGS= ac_cv_search_libiconv=no +CONFIGURE_ARGS= ac_cv_search_libiconv=${ICONV_LIB} USES= iconv readline gmake USE_OPENSSL= yes Modified: head/net/samba4/Makefile ============================================================================== --- head/net/samba4/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net/samba4/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}4 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} Modified: head/net/samba41/Makefile ============================================================================== --- head/net/samba41/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net/samba41/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}41 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} Modified: head/net/samba42/Makefile ============================================================================== --- head/net/samba42/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/net/samba42/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}42 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} Modified: head/www/htmlcxx/Makefile ============================================================================== --- head/www/htmlcxx/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/www/htmlcxx/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -23,7 +23,13 @@ MAKE_JOBS_UNSAFE=yes MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=yes +.endif + post-patch: @${REINPLACE_CMD} 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure -.include +.include Modified: head/www/httrack/Makefile ============================================================================== --- head/www/httrack/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/www/httrack/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -39,10 +39,11 @@ ICONS_VARS= INSTALLS_ICONS=yes .if empty(ICONV_LIB) CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv=no +.else +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv=yes .endif post-patch: - @${REINPLACE_CMD} -e '/DEFAULT_CFLAGS=/ s|-O -g3 ||g' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/ install-data-hook/d' ${WRKSRC}/html/Makefile.in @${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|' ${WRKSRC}/html/server/div/WebHTTrack* Modified: head/www/xapian-omega/Makefile ============================================================================== --- head/www/xapian-omega/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/www/xapian-omega/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -37,8 +37,8 @@ PORTEXAMPLES= omega.conf SHEBANG_FILES= dbi2omega htdig2omega mbox2omega +ICONV_CONFIGURE_ON= ac_cv_search_iconv=${ICONV_LIB} ICONV_CONFIGURE_WITH= iconv -ICONV_LDFLAGS= ${ICONV_LIB} ICONV_USES= iconv post-patch: Modified: head/x11-wm/jwm/Makefile ============================================================================== --- head/x11-wm/jwm/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/x11-wm/jwm/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -67,6 +67,12 @@ IGNORE= the XMU support requires XEXT IGNORE= the XPM support requires XEXT .endif +.include + +.if !empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv=yes +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/example.jwmrc @@ -77,4 +83,4 @@ post-patch: '/EXE/s|install|@INSTALL_PROGRAM@| ; \ /strip/s|^|#|' ${WRKSRC}/src/Makefile.in -.include +.include Modified: head/x11/mrxvt-devel/Makefile ============================================================================== --- head/x11/mrxvt-devel/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/x11/mrxvt-devel/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= mrxvt-devel PORTVERSION= 0.5.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= x11 MASTER_SITES= SF/materm/mrxvt%20source/${PORTVERSION} DISTNAME= mrxvt-${PORTVERSION} @@ -54,6 +54,10 @@ USE_XORG+= xft CONFIGURE_ARGS+= --enable-xft .endif +.if ${PORT_OPTIONS:MXFT} && ${PORT_OPTIONS:MJAPANESE} +USES+= iconv +.endif + .if ${PORT_OPTIONS:M24BITS} CONFIGURE_ARGS+= --enable-24bits .endif @@ -120,6 +124,14 @@ CONFIGURE_ARGS+= --with-atab-extra=${EXT CONFIGURE_ARGS+= --with-tab-radius=${TAB_RADIUS:M[0-9]*} .endif +.include + +.if empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=no +.else +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=yes +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/mrxvt ${STAGEDIR}${PREFIX}/bin @for pixmap in ${WRKSRC}/share/pixmaps/* ; \ @@ -137,4 +149,4 @@ do-install: ${CP} ${WRKSRC}/doc/*.bz2 ${STAGEDIR}${DOCSDIR} ${BZIP2_CMD} -d ${STAGEDIR}${DOCSDIR}/*.bz2 -.include +.include Modified: head/x11/mrxvt/Makefile ============================================================================== --- head/x11/mrxvt/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/x11/mrxvt/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -3,7 +3,7 @@ PORTNAME= mrxvt PORTVERSION= 0.4.2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11 MASTER_SITES= SF/materm/${PORTNAME}%20source/${PORTVERSION} @@ -16,6 +16,8 @@ CONFLICTS= mrxvt-0.5.* GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-lastlog --disable-wtmp +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib USES= jpeg tar:tgz USE_XORG= x11 @@ -25,9 +27,6 @@ JAPANESE_CONFIGURE_ON= --enable-xim --en XFT_LIB_DEPENDS= libXft.so:${PORTSDIR}/x11-fonts/libXft XFT_CONFIGURE_ENABLE= xft -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib - PORTDOCS= TIPS \ README.greek \ README.menu \ @@ -37,11 +36,21 @@ PORTDOCS= TIPS \ mrxvt.vbs \ mrxvtset.pl -post-patch-DOCS-off: - @${REINPLACE_CMD} -e '/^\(install-data-am:\).*/ \ - s/install-docDATA //' ${WRKSRC}/doc/Makefile.in +.include + +.if ${PORT_OPTIONS:MXFT} && ${PORT_OPTIONS:MJAPANESE} +USES+= iconv +.endif + +.include + +.if empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=no +.else +CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=yes +.endif post-install: ${CHMOD} 4511 ${STAGEDIR}${PREFIX}/bin/mrxvt -.include +.include Modified: head/x11/x3270/Makefile ============================================================================== --- head/x11/x3270/Makefile Sat Oct 10 13:52:43 2015 (r398995) +++ head/x11/x3270/Makefile Sat Oct 10 14:03:00 2015 (r398996) @@ -23,7 +23,7 @@ USE_XORG= ice sm x11 xaw xext xmu xt GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-fontdir=${FONTSDIR} \ --disable-dbcs \ - ac_cv_search_libiconv=no + ac_cv_search_libiconv=${ICONV_LIB} CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib .if defined(WITHOUT_OPENSSL) From owner-svn-ports-head@freebsd.org Sat Oct 10 14:18: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 913F49D2CE7; Sat, 10 Oct 2015 14:18:33 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30EE5F5C; Sat, 10 Oct 2015 14:18:33 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AEIWJQ016867; Sat, 10 Oct 2015 14:18:32 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AEIVEj016861; Sat, 10 Oct 2015 14:18:31 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101418.t9AEIVEj016861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 14:18:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398997 - in head/games/stepmania-devel: . 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: Sat, 10 Oct 2015 14:18:33 -0000 Author: marino Date: Sat Oct 10 14:18:31 2015 New Revision: 398997 URL: https://svnweb.freebsd.org/changeset/ports/398997 Log: games/stepmania-devel: upgrade version 5.0.a3 => 5.0.9 PR: 199230 Submitted by: ports fury Deleted: head/games/stepmania-devel/files/patch-ArchHooks_Unix.cpp Modified: head/games/stepmania-devel/Makefile head/games/stepmania-devel/distinfo head/games/stepmania-devel/files/patch-ArchHooks.h head/games/stepmania-devel/files/patch-tomcrypt_macros.h head/games/stepmania-devel/pkg-descr head/games/stepmania-devel/pkg-plist Modified: head/games/stepmania-devel/Makefile ============================================================================== --- head/games/stepmania-devel/Makefile Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/Makefile Sat Oct 10 14:18:31 2015 (r398997) @@ -2,14 +2,11 @@ # $FreeBSD$ PORTNAME= stepmania -PORTVERSION= 5.0.a3 -PORTREVISION= 4 +PORTVERSION= 5.0.9 +DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= games -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= sm-ssc PKGNAMESUFFIX= -devel -DISTNAME= ${PORTNAME}-SM5-alpha3-src MAINTAINER= ports@FreeBSD.org COMMENT= Rrhythm game simulator @@ -17,71 +14,90 @@ COMMENT= Rrhythm game simulator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/Docs/Licenses.txt -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ + libpng.so:${PORTSDIR}/graphics/png -OPTIONS_DEFINE= PULSEAUDIO VORBIS DOCS -OPTIONS_DEFAULT=VORBIS +USE_GITHUB= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-SM5-alpha3 - -USES= iconv pathfix perl5 pkgconfig shebangfix tar:bzip2 -USE_XORG= x11 xau xdmcp xext xrandr xrender xtst -USE_GL= gl glu glew -USE_GNOME= gtk20 +USES= autoreconf gmake iconv jpeg pathfix perl5 pkgconfig shebangfix +USE_XORG= x11 xrandr xtst +USE_GL= glew USE_PERL5= build GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-ffmpeg +CONFIGURE_ARGS= --with-system-pcre \ + ${ICONV_CONFIGURE_ARG} INSTALLS_ICONS= yes SHEBANG_FILES= Utils/*.pl \ extern/zlib/zlib2ansi CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lX11 -lpthread - -VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis -VORBIS_CONFIGURE_WITH= vorbis +LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= ALSA DOCS FFMPEG GTK2 JACK MAD PULSEAUDIO VORBIS +OPTIONS_DEFAULT= GTK2 MAD VORBIS +OPTIONS_SUB= yes + +ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib +ALSA_CONFIGURE_ENV_OFF= ac_cv_lib_asound_snd_ctl_open=no +FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +FFMPEG_CONFIGURE_ON= --with-system-ffmpeg +FFMPEG_CONFIGURE_WITH= ffmpeg +GTK2_USE= gnome=gtk20 +GTK2_CONFIGURE_ENABLE= gtk2 +JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack +JACK_CONFIGURE_WITH= jack +MAD_LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad +MAD_CONFIGURE_WITH= mp3 PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio PULSEAUDIO_CONFIGURE_ENV_OFF= ac_cv_lib_pulse_pa_stream_new=no +VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis +VORBIS_CONFIGURE_WITH= vorbis post-patch: @${REINPLACE_CMD} -e \ - 's|-lpthread |-pthread |' ${WRKSRC}/configure + 's|^\(x86_64\)|amd64*\|\1| ; \ + s|-lpthread|-pthread|' ${WRKSRC}/configure.ac + @${REINPLACE_CMD} -e \ + 's|XLIBS+="-l|XLIBS="$$XLIBS -l|' ${WRKSRC}/autoconf/m4/x11.m4 @${REINPLACE_CMD} -e \ - '/^LIBS/s|-lpthread|${ICONV_LIB}| ; \ - s|-finline-limit=300||g' ${WRKSRC}/src/Makefile.in + 's|-rdynamic|-Wl,-export-dynamic| ; \ + s|-finline-limit=300||' ${WRKSRC}/src/Makefile.am pre-build: - @${ECHO_CMD} -n > ${WRKDIR}/stepmania.sh - @${ECHO_CMD} '#!${SH}' >> ${WRKDIR}/stepmania.sh - @${ECHO_CMD} 'cd ${PREFIX}/lib/stepmania; ./stepmania $$@' >> ${WRKDIR}/stepmania.sh - -post-build: - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ - ${MAKEFILE} ${MAKE_ARGS} SMData) + @${MKDIR} ${WRKDIR}/wrappers + @${ECHO_CMD} -n \ + > ${WRKDIR}/wrappers/stepmania + @${ECHO_CMD} '#!${SH}' \ + >> ${WRKDIR}/wrappers/stepmania + @${ECHO_CMD} 'cd ${PREFIX}/lib/stepmania' \ + >> ${WRKDIR}/wrappers/stepmania + @${ECHO_CMD} 'exec ./stepmania $$@' \ + >> ${WRKDIR}/wrappers/stepmania do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/stepmania.sh ${STAGEDIR}${PREFIX}/bin/stepmania - ${INSTALL_DATA} ${WRKSRC}/stepmania.desktop ${STAGEDIR}${PREFIX}/share/applications - @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps - cd ${WRKSRC}/icons/hicolor/scalable/apps && ${INSTALL_DATA} \ - stepmania-ssc.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps -.for i in 16 22 24 32 36 48 64 72 96 128 192 256 - @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps - cd ${WRKSRC}/icons/hicolor/${i}x${i}/apps && ${INSTALL_DATA} \ - stepmania-ssc.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps -.endfor + (cd ${WRKDIR}/wrappers && ${INSTALL_SCRIPT} stepmania \ + ${STAGEDIR}${PREFIX}/bin) @${MKDIR} ${STAGEDIR}${PREFIX}/lib/stepmania - ${INSTALL_PROGRAM} ${WRKSRC}/src/stepmania ${STAGEDIR}${PREFIX}/lib/stepmania - ${INSTALL_DATA} ${WRKSRC}/src/GtkModule.so ${STAGEDIR}${PREFIX}/lib/stepmania - @${MKDIR} ${STAGEDIR}${PREFIX}/lib/stepmania/Packages - ${INSTALL_DATA} ${WRKSRC}/GameData.smzip ${STAGEDIR}${PREFIX}/lib/stepmania/Packages +.for i in Announcers BGAnimations BackgroundEffects BackgroundTransitions \ + Characters Courses Data NoteSkins Scripts Themes + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${i} \ + ${STAGEDIR}${PREFIX}/lib/stepmania) +.endfor + (cd ${WRKSRC}/src && ${INSTALL_PROGRAM} stepmania \ + ${STAGEDIR}${PREFIX}/lib/stepmania) + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/stepmania/Songs + (cd ${WRKSRC} && ${INSTALL_DATA} stepmania.desktop \ + ${STAGEDIR}${PREFIX}/share/applications) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} icons \ + ${STAGEDIR}${PREFIX}/share) + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(${TAR} -C ${WRKSRC}/Docs --exclude "Licenses.txt" -cf - . | \ - ${TAR} -C ${STAGEDIR}${DOCSDIR} --unlink -xf -) + @(cd ${WRKSRC}/Docs && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DOCSDIR} "! -name Licenses.txt") -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/stepmania/GtkModule.so +post-install-GTK2-on: + (cd ${WRKSRC}/src && ${INSTALL_LIB} GtkModule.so \ + ${STAGEDIR}${PREFIX}/lib/stepmania) .include Modified: head/games/stepmania-devel/distinfo ============================================================================== --- head/games/stepmania-devel/distinfo Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/distinfo Sat Oct 10 14:18:31 2015 (r398997) @@ -1,4 +1,2 @@ -SHA256 (stepmania-SM5-alpha3-src.tar.bz2) = 63c767782e8379698696b3627554e871c019f5ad2be262e5e715bc0649578123 -SIZE (stepmania-SM5-alpha3-src.tar.bz2) = 61494982 -SHA256 (StepMania-v5.0-alpha3-linux.tar.bz2) = f05aa903a20673dbe4bf2025da7f575502fbbcd24f55eb1109c76e46d5790d61 -SIZE (StepMania-v5.0-alpha3-linux.tar.bz2) = 40164664 +SHA256 (stepmania-stepmania-v5.0.9_GH0.tar.gz) = 9f0566e36a578d499f6cbbb4e32b4d762182a991f6bc37df762c433976a80142 +SIZE (stepmania-stepmania-v5.0.9_GH0.tar.gz) = 197144798 Modified: head/games/stepmania-devel/files/patch-ArchHooks.h ============================================================================== --- head/games/stepmania-devel/files/patch-ArchHooks.h Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/files/patch-ArchHooks.h Sat Oct 10 14:18:31 2015 (r398997) @@ -1,4 +1,4 @@ ---- src/arch/ArchHooks/ArchHooks.h.orig +--- src/arch/ArchHooks/ArchHooks.h.orig 2015-06-20 16:57:25 UTC +++ src/arch/ArchHooks/ArchHooks.h @@ -1,6 +1,8 @@ #ifndef ARCH_HOOKS_H Modified: head/games/stepmania-devel/files/patch-tomcrypt_macros.h ============================================================================== --- head/games/stepmania-devel/files/patch-tomcrypt_macros.h Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/files/patch-tomcrypt_macros.h Sat Oct 10 14:18:31 2015 (r398997) @@ -1,6 +1,6 @@ ---- src/libtomcrypt/src/headers/tomcrypt_macros.h.orig 2012-08-06 07:23:37.000000000 +0200 -+++ src/libtomcrypt/src/headers/tomcrypt_macros.h 2015-03-02 21:40:07.785177000 +0100 -@@ -262,21 +262,19 @@ +--- src/libtomcrypt/src/headers/tomcrypt_macros.h.orig 2015-06-20 16:57:25 UTC ++++ src/libtomcrypt/src/headers/tomcrypt_macros.h +@@ -262,21 +262,19 @@ static inline __attribute__((always_inli #ifndef LTC_NO_ROLC @@ -11,7 +11,13 @@ - :"0" (word),"I" (i)); - return word; -} -- ++#define ROLc(word, i) ({ \ ++ unsigned _word = word; \ ++ asm ("roll %2,%0" \ ++ :"=r" (_word) \ ++ :"0" (_word),"I" (i)); \ ++ _word; }) + -static inline __attribute__((always_inline)) unsigned RORc(unsigned word, const int i) -{ - asm ("rorl %2,%0" @@ -19,13 +25,6 @@ - :"0" (word),"I" (i)); - return word; -} -+#define ROLc(word, i) ({ \ -+ unsigned _word = word; \ -+ asm ("roll %2,%0" \ -+ :"=r" (_word) \ -+ :"0" (_word),"I" (i)); \ -+ _word; }) -+ +#define RORc(word, i) ({ \ + unsigned _word = word; \ + asm ("rorl %2,%0" \ @@ -35,7 +34,7 @@ #else -@@ -305,21 +303,19 @@ +@@ -305,21 +303,19 @@ static inline __attribute__((always_inli #ifndef LTC_NO_ROLC @@ -46,7 +45,13 @@ - :"0" (word),"I" (i)); - return word; -} -- ++#define ROLc(word, i) ({ \ ++ unsigned _word = word; \ ++ asm ("rotlwi %0,%0,%2" \ ++ :"=r" (_word) \ ++ :"0" (_word),"I" (i)); \ ++ _word; }) + -static inline __attribute__((always_inline)) unsigned RORc(unsigned word, const int i) -{ - asm ("rotrwi %0,%0,%2" @@ -54,13 +59,6 @@ - :"0" (word),"I" (i)); - return word; -} -+#define ROLc(word, i) ({ \ -+ unsigned _word = word; \ -+ asm ("rotlwi %0,%0,%2" \ -+ :"=r" (_word) \ -+ :"0" (_word),"I" (i)); \ -+ _word; }) -+ +#define RORc(word, i) ({ \ + unsigned _word = word; \ + asm ("rotrwi %0,%0,%2" \ @@ -70,7 +68,7 @@ #else -@@ -361,21 +357,19 @@ +@@ -361,21 +357,19 @@ static inline __attribute__((always_inli #ifndef LTC_NO_ROLC @@ -81,7 +79,13 @@ - :"0" (word),"J" (i)); - return word; -} -- ++#define ROL64c(word, i) ({ \ ++ unsigned long _word = word; \ ++ asm ("rolq %2,%0" \ ++ :"=r" (_word) \ ++ :"0" (_word),"J" (i)); \ ++ _word; }) + -static inline __attribute__((always_inline)) unsigned long ROR64c(unsigned long word, const int i) -{ - asm("rorq %2,%0" @@ -89,13 +93,6 @@ - :"0" (word),"J" (i)); - return word; -} -+#define ROL64c(word, i) ({ \ -+ unsigned long _word = word; \ -+ asm ("rolq %2,%0" \ -+ :"=r" (_word) \ -+ :"0" (_word),"J" (i)); \ -+ _word; }) -+ +#define ROR64c(word, i) ({ \ + unsigned long _word = word; \ + asm ("rorq %2,%0" \ Modified: head/games/stepmania-devel/pkg-descr ============================================================================== --- head/games/stepmania-devel/pkg-descr Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/pkg-descr Sat Oct 10 14:18:31 2015 (r398997) @@ -1,9 +1,10 @@ -StepMania is a dance and rhythm video game created by Chris Danford. It was -originally developed as a simulator of Konami's popular arcade game series -Dance Dance Revolution, and has since evolved into an extensible rhythm game -engine capable of supporting a wide variety of rhythm-based game types. +StepMania is a dance and rhythm video game created by Chris Danford. It +was originally developed as a simulator of Konami's popular arcade game +series Dance Dance Revolution, and has since evolved into an extensible +rhythm game engine capable of supporting a wide variety of rhythm-based +game types. -Features 3D graphics, visualizations, support for gamepads/dance pads, a +Features 3D graphics, visualizations, support for gamepads/dance pads, a step recording mode, and more! -WWW: http://www.stepmania.com +WWW: http://www.stepmania.com/ Modified: head/games/stepmania-devel/pkg-plist ============================================================================== --- head/games/stepmania-devel/pkg-plist Sat Oct 10 14:03:00 2015 (r398996) +++ head/games/stepmania-devel/pkg-plist Sat Oct 10 14:18:31 2015 (r398997) @@ -1,9 +1,2755 @@ bin/stepmania -lib/stepmania/GtkModule.so -lib/stepmania/Packages/GameData.smzip +lib/stepmania/Announcers/instructions.txt +lib/stepmania/BGAnimations/flash/default.lua +lib/stepmania/BGAnimations/instructions.txt +lib/stepmania/BGAnimations/white flash/default.lua +lib/stepmania/BGAnimations/white reverse flash/default.lua +lib/stepmania/BGAnimations/yellow flash/default.lua +lib/stepmania/BackgroundEffects/Centered.lua +lib/stepmania/BackgroundEffects/Checkerboard1File2x2.lua +lib/stepmania/BackgroundEffects/Checkerboard2File2x2.lua +lib/stepmania/BackgroundEffects/Checkerboard2x2.lua +lib/stepmania/BackgroundEffects/File1FlashOverlay.lua +lib/stepmania/BackgroundEffects/File2Flash.lua +lib/stepmania/BackgroundEffects/File2Normal.lua +lib/stepmania/BackgroundEffects/Kaleidoscope2x2.lua +lib/stepmania/BackgroundEffects/OverlayAdd.lua +lib/stepmania/BackgroundEffects/SongBgWithMovieViz.lua +lib/stepmania/BackgroundEffects/StretchNoLoop.lua +lib/stepmania/BackgroundEffects/StretchNormal.lua +lib/stepmania/BackgroundEffects/StretchNormalAlignLeft.lua +lib/stepmania/BackgroundEffects/StretchNormalBlue.lua +lib/stepmania/BackgroundEffects/StretchNormalGreen.lua +lib/stepmania/BackgroundEffects/StretchNormalRed.lua +lib/stepmania/BackgroundEffects/StretchPaused.lua +lib/stepmania/BackgroundEffects/StretchRewind.lua +lib/stepmania/BackgroundEffects/UpperLeft.lua +lib/stepmania/BackgroundEffects/Visualization2File.lua +lib/stepmania/BackgroundEffects/Visualization2FileFlash.lua +lib/stepmania/BackgroundTransitions/CrossFade.xml +lib/stepmania/BackgroundTransitions/CrossFade_Faster.xml +lib/stepmania/BackgroundTransitions/CrossFade_Fastest.xml +lib/stepmania/BackgroundTransitions/FadeCenterHorizontal.xml +lib/stepmania/BackgroundTransitions/FadeCenterVertical.xml +lib/stepmania/BackgroundTransitions/FadeDown.xml +lib/stepmania/BackgroundTransitions/FadeLeft.xml +lib/stepmania/BackgroundTransitions/FadeRight.xml +lib/stepmania/BackgroundTransitions/FadeUp.xml +lib/stepmania/BackgroundTransitions/SlideDown.xml +lib/stepmania/BackgroundTransitions/SlideLeft.xml +lib/stepmania/BackgroundTransitions/SlideRight.xml +lib/stepmania/BackgroundTransitions/SlideUp.xml +lib/stepmania/Characters/Instructions.txt +lib/stepmania/Characters/default/character.ini +lib/stepmania/Characters/shader.png +lib/stepmania/Courses/Default/ChallengingRandom5-bg.png +lib/stepmania/Courses/Default/ChallengingRandom5.crs +lib/stepmania/Courses/Default/ChallengingRandom5.png +lib/stepmania/Courses/Default/Jupiter.crs +lib/stepmania/Courses/Default/Jupiter.png +lib/stepmania/Courses/Default/MostPlayed_01-04.crs +lib/stepmania/Courses/Default/MostPlayed_01-04.png +lib/stepmania/Courses/Default/MostPlayed_05-08.crs +lib/stepmania/Courses/Default/MostPlayed_05-08.png +lib/stepmania/Courses/Default/MostPlayed_09-12.crs +lib/stepmania/Courses/Default/MostPlayed_09-12.png +lib/stepmania/Courses/Default/MostPlayed_13-16.crs +lib/stepmania/Courses/Default/MostPlayed_13-16.png +lib/stepmania/Courses/instructions.txt +lib/stepmania/Data/AI.ini +lib/stepmania/Data/AutoMappings/GamePad Pro USB.ini +lib/stepmania/Data/NamesBlacklist.txt +lib/stepmania/Data/RandomAttacks.txt +lib/stepmania/Data/Shaders/GLSL/Cel.frag +lib/stepmania/Data/Shaders/GLSL/Cel.vert +lib/stepmania/Data/Shaders/GLSL/Color burn.frag +lib/stepmania/Data/Shaders/GLSL/Color dodge.frag +lib/stepmania/Data/Shaders/GLSL/Hard mix.frag +lib/stepmania/Data/Shaders/GLSL/Overlay.frag +lib/stepmania/Data/Shaders/GLSL/Screen.frag +lib/stepmania/Data/Shaders/GLSL/Shell.frag +lib/stepmania/Data/Shaders/GLSL/Shell.vert +lib/stepmania/Data/Shaders/GLSL/Texture matrix scaling.vert +lib/stepmania/Data/Shaders/GLSL/Unpremultiply.frag +lib/stepmania/Data/Shaders/GLSL/Vivid light.frag +lib/stepmania/Data/Shaders/GLSL/YUYV422.frag +lib/stepmania/Data/Translations.xml +lib/stepmania/Data/splash.png +%%GTK2%%lib/stepmania/GtkModule.so +lib/stepmania/NoteSkins/Para/default/Down Go Receptor.png +lib/stepmania/NoteSkins/Para/default/Down Hold Body active.png +lib/stepmania/NoteSkins/Para/default/Down Hold Body inactive.png +lib/stepmania/NoteSkins/Para/default/Down Hold BottomCap active.png +lib/stepmania/NoteSkins/Para/default/Down Hold BottomCap inactive.png +lib/stepmania/NoteSkins/Para/default/Down Hold Explosion 2x1.png +lib/stepmania/NoteSkins/Para/default/Down Hold Head Active.png +lib/stepmania/NoteSkins/Para/default/Down Hold Head Inactive.png +lib/stepmania/NoteSkins/Para/default/Down KeypressBlock.png +lib/stepmania/NoteSkins/Para/default/Down Receptor.lua +lib/stepmania/NoteSkins/Para/default/Down Roll Body active.png +lib/stepmania/NoteSkins/Para/default/Down Roll Body inactive.png +lib/stepmania/NoteSkins/Para/default/Down Roll BottomCap active.png +lib/stepmania/NoteSkins/Para/default/Down Roll BottomCap inactive.png +lib/stepmania/NoteSkins/Para/default/Down Tap Explosion Dim 4x1.png +lib/stepmania/NoteSkins/Para/default/Down Tap Note.lua +lib/stepmania/NoteSkins/Para/default/NoteSkin.lua +lib/stepmania/NoteSkins/Para/default/_Down Tap Explosion Bright 2x2.png +lib/stepmania/NoteSkins/Para/default/_down tap note 4x2.png +lib/stepmania/NoteSkins/Para/default/metrics.ini +lib/stepmania/NoteSkins/beat/default/Blue Go Receptor.png +lib/stepmania/NoteSkins/beat/default/Blue Hold Body active.png +lib/stepmania/NoteSkins/beat/default/Blue Hold Body inactive.png +lib/stepmania/NoteSkins/beat/default/Blue Hold BottomCap active.png +lib/stepmania/NoteSkins/beat/default/Blue Hold BottomCap inactive.png +lib/stepmania/NoteSkins/beat/default/Blue Tap Explosion Bright 9x1.png +lib/stepmania/NoteSkins/beat/default/Blue Tap Explosion Dim 9x1.png +lib/stepmania/NoteSkins/beat/default/Blue Tap Mine 1x1.png +lib/stepmania/NoteSkins/beat/default/Blue Tap Note 1x1.png +lib/stepmania/NoteSkins/beat/default/Common Tap Explosion Bright.redir +lib/stepmania/NoteSkins/beat/default/Fallback Explosion.lua +lib/stepmania/NoteSkins/beat/default/NoteSkin.lua +lib/stepmania/NoteSkins/beat/default/Red Go Receptor.png +lib/stepmania/NoteSkins/beat/default/Red Tap Explosion Bright 9x1.png +lib/stepmania/NoteSkins/beat/default/Red Tap Explosion Dim 9x1.png +lib/stepmania/NoteSkins/beat/default/Red Tap Mine 1x1.png +lib/stepmania/NoteSkins/beat/default/Red Tap Note 1x1.png +lib/stepmania/NoteSkins/beat/default/White Go Receptor.png +lib/stepmania/NoteSkins/beat/default/White Hold Body active.png +lib/stepmania/NoteSkins/beat/default/White Hold Body inactive.png +lib/stepmania/NoteSkins/beat/default/White Hold BottomCap active.png +lib/stepmania/NoteSkins/beat/default/White Hold BottomCap inactive.png +lib/stepmania/NoteSkins/beat/default/White Tap Explosion Bright 9x1.png +lib/stepmania/NoteSkins/beat/default/White Tap Explosion Dim 9x1.png +lib/stepmania/NoteSkins/beat/default/White Tap Mine 1x1.png +lib/stepmania/NoteSkins/beat/default/White Tap Note 1x1.png +lib/stepmania/NoteSkins/beat/default/_Blue Tap Explosion Bright.redir +lib/stepmania/NoteSkins/beat/default/_Blue Tap Explosion Dim.png +lib/stepmania/NoteSkins/beat/default/_Red Tap Explosion Bright.redir +lib/stepmania/NoteSkins/beat/default/_Red Tap Explosion Dim.png +lib/stepmania/NoteSkins/beat/default/_Tap Lead-in Receptor.lua +lib/stepmania/NoteSkins/beat/default/_Tap Receptor.lua +lib/stepmania/NoteSkins/beat/default/_White Tap Explosion Bright.redir +lib/stepmania/NoteSkins/beat/default/_White Tap Explosion Dim.png +lib/stepmania/NoteSkins/beat/default/metrics.ini +lib/stepmania/NoteSkins/common/_Editor/Center Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Hold BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Hold BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Hold Explosion.lua +lib/stepmania/NoteSkins/common/_Editor/Center Hold TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Hold TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Roll TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Center Tap Explosion Bright.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Hold Head Active.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Hold Head Inactive.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Receptor.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Tap Fake.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Tap Lift.lua +lib/stepmania/NoteSkins/common/_Editor/CenterP1 Tap Note.lua +lib/stepmania/NoteSkins/common/_Editor/Down Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Hold BottomCap active (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Down Hold BottomCap inactive (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Down Hold Explosion.lua +lib/stepmania/NoteSkins/common/_Editor/Down Hold Head Active.lua +lib/stepmania/NoteSkins/common/_Editor/Down Hold Head Inactive.lua +lib/stepmania/NoteSkins/common/_Editor/Down Hold TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Hold TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Receptor.lua +lib/stepmania/NoteSkins/common/_Editor/Down Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Roll BottomCap active (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Down Roll BottomCap inactive (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Down Roll TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Roll TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Down Tap Explosion Bright.lua +lib/stepmania/NoteSkins/common/_Editor/Down Tap Explosion Dim.lua +lib/stepmania/NoteSkins/common/_Editor/Down Tap Fake.lua +lib/stepmania/NoteSkins/common/_Editor/Down Tap Lift.lua +lib/stepmania/NoteSkins/common/_Editor/Down Tap Mine.lua +lib/stepmania/NoteSkins/common/_Editor/Down Tap Note.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Hold Head Active.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Hold Head Inactive.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Receptor.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Tap Fake.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Tap Lift.lua +lib/stepmania/NoteSkins/common/_Editor/DownLeftP1 Tap Note.lua +lib/stepmania/NoteSkins/common/_Editor/Left Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Hold BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Hold BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Hold TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Hold TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Left Roll TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/NoteSkin.lua +lib/stepmania/NoteSkins/common/_Editor/Right Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Hold BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Hold BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Hold TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Hold TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll TopCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Right Roll TopCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold BottomCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold BottomCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold Head Active.lua +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold Head Inactive.lua +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold TopCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Hold TopCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll BottomCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll BottomCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll TopCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpLeft Roll TopCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold BottomCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold BottomCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold Head Active.lua +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold Head Inactive.lua +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold TopCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Hold TopCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll BottomCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll BottomCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll TopCap Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/SoloUpRight Roll TopCap Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold TopCap active (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Up Hold TopCap inactive (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll Body Active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll Body Inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll BottomCap active (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll BottomCap inactive (res 64x32).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll TopCap active (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/Up Roll TopCap inactive (res 64x64).png +lib/stepmania/NoteSkins/common/_Editor/_Center Explosion (res 128x128).png +lib/stepmania/NoteSkins/common/_Editor/_CenterP1 Tap Fake 6x9 (res 384x576).png +lib/stepmania/NoteSkins/common/_Editor/_CenterP1 Tap Lift 6x9 (res 384x576).png +lib/stepmania/NoteSkins/common/_Editor/_CenterP1 Tap Note 12x9 (res 768x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Explosion 2x1 (res 128x64).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Fake 4x9 (res 256x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Lift 4x9 (res 256x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Mine Base2 1x9 (res 64x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Mine Overlay 1x9 (res 64x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Mine Underlay 1x9 (res 64x576).png +lib/stepmania/NoteSkins/common/_Editor/_Down Tap Note 8x9 (res 512x576).png +lib/stepmania/NoteSkins/common/_Editor/_DownLeftP1 Tap Fake 6x9 (res 384x576).png +lib/stepmania/NoteSkins/common/_Editor/_DownLeftP1 Tap Lift 6x9 (res 384x576).png +lib/stepmania/NoteSkins/common/_Editor/_DownLeftP1 Tap Note 12x9 (res 768x576).png +lib/stepmania/NoteSkins/common/_Editor/_upleftsolo underlay 1x9 (res 64x576).png +lib/stepmania/NoteSkins/common/_Editor/metrics.ini +lib/stepmania/NoteSkins/common/common/Fallback Explosion.lua +lib/stepmania/NoteSkins/common/common/Fallback Go Receptor.redir +lib/stepmania/NoteSkins/common/common/Fallback HitMine Explosion.png +lib/stepmania/NoteSkins/common/common/Fallback Hold Body active.png +lib/stepmania/NoteSkins/common/common/Fallback Hold Body inactive.png +lib/stepmania/NoteSkins/common/common/Fallback Hold BottomCap active.png +lib/stepmania/NoteSkins/common/common/Fallback Hold BottomCap inactive.png +lib/stepmania/NoteSkins/common/common/Fallback Hold Explosion 2x1.png +lib/stepmania/NoteSkins/common/common/Fallback Hold Head Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Hold Head Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Hold Tail Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Hold Tail Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Hold TopCap Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Hold TopCap Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Ready Receptor 3x1.png +lib/stepmania/NoteSkins/common/common/Fallback Receptor.lua +lib/stepmania/NoteSkins/common/common/Fallback Roll Body active.png +lib/stepmania/NoteSkins/common/common/Fallback Roll Body inactive.png +lib/stepmania/NoteSkins/common/common/Fallback Roll BottomCap active.png +lib/stepmania/NoteSkins/common/common/Fallback Roll BottomCap inactive.png +lib/stepmania/NoteSkins/common/common/Fallback Roll Explosion.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll Head Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll Head Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll Tail Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll Tail Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll TopCap Active.redir +lib/stepmania/NoteSkins/common/common/Fallback Roll TopCap Inactive.redir +lib/stepmania/NoteSkins/common/common/Fallback Tap Explosion Bright.png +lib/stepmania/NoteSkins/common/common/Fallback Tap Explosion Dim.png +lib/stepmania/NoteSkins/common/common/Fallback Tap Fake 4x1.png +lib/stepmania/NoteSkins/common/common/Fallback Tap Lift 4x1.png +lib/stepmania/NoteSkins/common/common/Fallback Tap Mine 4x2.png +lib/stepmania/NoteSkins/common/common/Fallback Tap Note 4x1.png +lib/stepmania/NoteSkins/common/common/NoteSkin.lua +lib/stepmania/NoteSkins/common/common/_Tap Lead-in Receptor.lua +lib/stepmania/NoteSkins/common/common/_Tap Press.lua +lib/stepmania/NoteSkins/common/common/_Tap Receptor.lua +lib/stepmania/NoteSkins/common/common/_blank.png +lib/stepmania/NoteSkins/common/common/metrics.ini +lib/stepmania/NoteSkins/dance/Delta/Down Hold Body Active.png +lib/stepmania/NoteSkins/dance/Delta/Down Hold Body Inactive.png +lib/stepmania/NoteSkins/dance/Delta/Down Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/Delta/Down Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/Delta/Down Hold Explosion.lua +lib/stepmania/NoteSkins/dance/Delta/Down Receptor.lua +lib/stepmania/NoteSkins/dance/Delta/Down Roll Body Active.png +lib/stepmania/NoteSkins/dance/Delta/Down Roll Body Inactive.png +lib/stepmania/NoteSkins/dance/Delta/Down Roll BottomCap active.png +lib/stepmania/NoteSkins/dance/Delta/Down Roll BottomCap inactive.png +lib/stepmania/NoteSkins/dance/Delta/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/Delta/Down Tap Explosion Dim.redir +lib/stepmania/NoteSkins/dance/Delta/Down Tap Mine 4x2.png +lib/stepmania/NoteSkins/dance/Delta/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/Delta/Hold Explosion.png +lib/stepmania/NoteSkins/dance/Delta/Hold Head active.png +lib/stepmania/NoteSkins/dance/Delta/Hold Head inactive.png +lib/stepmania/NoteSkins/dance/Delta/NoteSkin.lua +lib/stepmania/NoteSkins/dance/Delta/Receptor 4x1.png +lib/stepmania/NoteSkins/dance/Delta/Roll Explosion.png +lib/stepmania/NoteSkins/dance/Delta/_down tap note 12x8.png +lib/stepmania/NoteSkins/dance/Delta/metrics.ini +lib/stepmania/NoteSkins/dance/Delta/readme.txt +lib/stepmania/NoteSkins/dance/default/Down Hold Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Hold Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Hold BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Hold BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Hold TopCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Hold TopCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Receptor.lua +lib/stepmania/NoteSkins/dance/default/Down Roll Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Roll Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Roll BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Roll BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Roll TopCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Roll TopCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/default/Down Tap Explosion Bright.redir +lib/stepmania/NoteSkins/dance/default/Down Tap Explosion Dim.redir +lib/stepmania/NoteSkins/dance/default/Down Tap Lift.lua +lib/stepmania/NoteSkins/dance/default/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/default/NoteSkin.lua +lib/stepmania/NoteSkins/dance/default/_arrow 1x8 (doubleres).png +lib/stepmania/NoteSkins/dance/default/_circle (doubleres).png +lib/stepmania/NoteSkins/dance/default/_glow (doubleres).png +lib/stepmania/NoteSkins/dance/default/_receptor (doubleres).png +lib/stepmania/NoteSkins/dance/default/_rflash (doubleres).png +lib/stepmania/NoteSkins/dance/default/metrics.ini +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Body Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Body Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Bottomcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Topcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Hold Topcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Receptor.lua +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Body Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Body Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Bottomcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Topcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Center Roll Topcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Center Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/easyV2/Center Tap Note.lua +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Body Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Body Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Bottomcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Topcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Hold Topcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Receptor.lua +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Body Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Body Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Bottomcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Topcap Active.png +lib/stepmania/NoteSkins/dance/easyV2/Down Roll Topcap Inactive.png +lib/stepmania/NoteSkins/dance/easyV2/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/easyV2/Down Tap Mine.png +lib/stepmania/NoteSkins/dance/easyV2/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/easyV2/DownLeft Receptor.lua +lib/stepmania/NoteSkins/dance/easyV2/DownLeft Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/easyV2/DownLeft Tap Note.lua +lib/stepmania/NoteSkins/dance/easyV2/NoteSkin.lua +lib/stepmania/NoteSkins/dance/easyV2/_Center Go Receptor.png +lib/stepmania/NoteSkins/dance/easyV2/_Center Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/easyV2/_Down Go Receptor.png +lib/stepmania/NoteSkins/dance/easyV2/_Down Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/easyV2/_DownLeft Go Receptor.png +lib/stepmania/NoteSkins/dance/easyV2/_DownLeft Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/easyV2/metrics.ini +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Body Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Body Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Bottomcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Topcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Hold Topcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Receptor.lua +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Body Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Body Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Bottomcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Topcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Center Roll Topcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Center Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/exactV2/Center Tap Note.lua +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Body Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Body Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Bottomcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Topcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Hold Topcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Receptor.lua +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Body Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Body Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Bottomcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Bottomcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Topcap Active.png +lib/stepmania/NoteSkins/dance/exactV2/Down Roll Topcap Inactive.png +lib/stepmania/NoteSkins/dance/exactV2/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/exactV2/Down Tap Mine.png +lib/stepmania/NoteSkins/dance/exactV2/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/exactV2/DownLeft Receptor.lua +lib/stepmania/NoteSkins/dance/exactV2/DownLeft Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/exactV2/DownLeft Tap Note.lua +lib/stepmania/NoteSkins/dance/exactV2/NoteSkin.lua +lib/stepmania/NoteSkins/dance/exactV2/_Center Go Receptor.png +lib/stepmania/NoteSkins/dance/exactV2/_Center Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/exactV2/_Down Go Receptor.png +lib/stepmania/NoteSkins/dance/exactV2/_Down Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/exactV2/_DownLeft Go Receptor.png +lib/stepmania/NoteSkins/dance/exactV2/_DownLeft Tap Note 2x8.png +lib/stepmania/NoteSkins/dance/exactV2/metrics.ini +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold Explosion.redir +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold Head Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Hold Head Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Receptor.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll BottomCap.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll Explosion.redir +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll Head Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Roll Head Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Explosion Dim.redir +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Fake (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Lift.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Mine.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Left Hold BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Left Hold BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Left Roll BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Left Roll BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/NoteSkin.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Up Hold BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Up Hold BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/Up Roll BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note-3d/Up Roll BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note-3d/_Down Tap Flash.png +lib/stepmania/NoteSkins/dance/midi-note-3d/_Down Tap Mine.png +lib/stepmania/NoteSkins/dance/midi-note-3d/_Down Tap Note.txt +lib/stepmania/NoteSkins/dance/midi-note-3d/_Down Tap Receptor (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note-3d/metrics.ini +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/black.png +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/inside.png +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/outside.ini +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/outside.png +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/overlay.ini +lib/stepmania/NoteSkins/dance/midi-note-3d/tex/overlay.png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold Explosion.redir +lib/stepmania/NoteSkins/dance/midi-note/Down Hold Head Active.png +lib/stepmania/NoteSkins/dance/midi-note/Down Hold Head Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/Down Receptor.lua +lib/stepmania/NoteSkins/dance/midi-note/Down Roll Body Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll Body Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll BottomCap Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll BottomCap Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll BottomCap.png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll Explosion.redir +lib/stepmania/NoteSkins/dance/midi-note/Down Roll Head Active.png +lib/stepmania/NoteSkins/dance/midi-note/Down Roll Head Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Explosion Dim.png +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Fake (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Lift.png +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Mine.lua +lib/stepmania/NoteSkins/dance/midi-note/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/midi-note/Left Hold BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note/Left Hold BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/Left Roll BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note/Left Roll BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/NoteSkin.lua +lib/stepmania/NoteSkins/dance/midi-note/Up Hold BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note/Up Hold BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/Up Roll BottomCap Active.png +lib/stepmania/NoteSkins/dance/midi-note/Up Roll BottomCap Inactive.lua +lib/stepmania/NoteSkins/dance/midi-note/_Down Tap Flash.png +lib/stepmania/NoteSkins/dance/midi-note/_Down Tap Mine.png +lib/stepmania/NoteSkins/dance/midi-note/_Down Tap Note 8x8 (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/_Down Tap Receptor (doubleres).png +lib/stepmania/NoteSkins/dance/midi-note/metrics.ini +lib/stepmania/NoteSkins/dance/midi-routine-p1/Down Tap Note 8x1.png +lib/stepmania/NoteSkins/dance/midi-routine-p1/metrics.ini +lib/stepmania/NoteSkins/dance/midi-routine-p2/Down Tap Note 8x1.png +lib/stepmania/NoteSkins/dance/midi-routine-p2/metrics.ini +lib/stepmania/NoteSkins/dance/midi-solo/Down Hold Explosion.redir +lib/stepmania/NoteSkins/dance/midi-solo/Down Receptor.lua +lib/stepmania/NoteSkins/dance/midi-solo/Down Roll Explosion.redir +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Explosion Dim.redir +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Fake.png +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Lift.png +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Mine.lua +lib/stepmania/NoteSkins/dance/midi-solo/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/midi-solo/_Down Tap Flash.png +lib/stepmania/NoteSkins/dance/midi-solo/_Down Tap Mine.png +lib/stepmania/NoteSkins/dance/midi-solo/_Down Tap Note 8x8.png +lib/stepmania/NoteSkins/dance/midi-solo/_Down Tap Receptor.png +lib/stepmania/NoteSkins/dance/midi-solo/metrics.ini +lib/stepmania/NoteSkins/dance/midi-vivid-3d/Down Hold Head Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/Down Hold Head Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/Down Roll Head Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/Down Roll Head Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/midi-vivid-3d/_Down Tap Note.txt +lib/stepmania/NoteSkins/dance/midi-vivid-3d/metrics.ini +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/black.png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/inside.ini +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/inside.png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/outside.ini +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/outside.png +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/overlay.ini +lib/stepmania/NoteSkins/dance/midi-vivid-3d/tex/overlay.png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Hold Head Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Hold Head Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Roll Head Active (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Roll Head Inactive (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Tap Addition 4x4 (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/Down Tap Note 4x4 (doubleres).png +lib/stepmania/NoteSkins/dance/midi-vivid/metrics.ini +lib/stepmania/NoteSkins/dance/retro/Down Hold Body active.png +lib/stepmania/NoteSkins/dance/retro/Down Hold Body inactive.png +lib/stepmania/NoteSkins/dance/retro/Down Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/retro/Down Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retro/Down Hold Explosion.lua +lib/stepmania/NoteSkins/dance/retro/Down Hold Head active.png +lib/stepmania/NoteSkins/dance/retro/Down Hold Head inactive.png +lib/stepmania/NoteSkins/dance/retro/Down Receptor.lua +lib/stepmania/NoteSkins/dance/retro/Down Roll Body active.png +lib/stepmania/NoteSkins/dance/retro/Down Roll Body inactive.png +lib/stepmania/NoteSkins/dance/retro/Down Roll BottomCap active.png +lib/stepmania/NoteSkins/dance/retro/Down Roll BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retro/Down Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/retro/Down Tap Explosion dim.png +lib/stepmania/NoteSkins/dance/retro/Down Tap Fake 1x8.png +lib/stepmania/NoteSkins/dance/retro/Down Tap Mine 5x1.png +lib/stepmania/NoteSkins/dance/retro/Down Tap Note.lua +lib/stepmania/NoteSkins/dance/retro/NoteSkin.lua +lib/stepmania/NoteSkins/dance/retro/UpLeft Go Receptor.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Hold Body active.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Hold Body inactive.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Hold Explosion.lua +lib/stepmania/NoteSkins/dance/retro/UpLeft Receptor.lua +lib/stepmania/NoteSkins/dance/retro/UpLeft Roll Body active.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Roll Body inactive.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Roll BottomCap active.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Roll BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Tap Explosion Bright.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Tap Explosion dim.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Tap Fake 1x8.png +lib/stepmania/NoteSkins/dance/retro/UpLeft Tap Mine.redir +lib/stepmania/NoteSkins/dance/retro/UpLeft Tap Note.lua +lib/stepmania/NoteSkins/dance/retro/_UpLeft Tap Note 8x8.png +lib/stepmania/NoteSkins/dance/retro/_down receptor base.png +lib/stepmania/NoteSkins/dance/retro/_down receptor tap.png +lib/stepmania/NoteSkins/dance/retro/_down receptor.png +lib/stepmania/NoteSkins/dance/retro/_down tap note 8x8.png +lib/stepmania/NoteSkins/dance/retro/_receptor tap.png +lib/stepmania/NoteSkins/dance/retro/_upleft receptor base.png +lib/stepmania/NoteSkins/dance/retro/_upleft receptor tap.png +lib/stepmania/NoteSkins/dance/retro/metrics.ini +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold Body active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold Body inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold TopCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Hold TopCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll Body Inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll Body active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll BottomCap active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll BottomCap inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll TopCap active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Roll TopCap inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue Tap Note.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue hold explosion.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue receptor.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue roll explosion.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue tap explosion bright.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue tap explosion dim.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue tap fake.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Blue tap mine.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/Noteskin.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold Body active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold Body inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold TopCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Hold TopCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll Body Inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll Body active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll BottomCap active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll BottomCap inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll TopCap active.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Roll TopCap inactive.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White Tap Note.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White hold explosion.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White receptor.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White roll explosion.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White tap explosion bright.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White tap explosion dim.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White tap fake.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/White tap mine.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Blue tap note 4x2.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Hold Explosion.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Receptor.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll Body active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll Body inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll BottomCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll Explosion.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll TopCap active.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Roll TopCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Tap Lift 4x1.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Tap Mine.lua +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Tap explosion bright.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Tap explosion dim.redir +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_White tap note 4x2.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_Yellow tap note 4x2.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_bar hold explosion bright.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_bar hold explosion dim.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_bar mine 4x1.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_bar receptor tap.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_blue receptor base.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/_white receptor base.png +lib/stepmania/NoteSkins/dance/retrobar-splithand_whiteblue/metrics.ini +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold Body active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold Body inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold BottomCap active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold Explosion.lua +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold Head active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold Head inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold TopCap active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Hold TopCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Receptor.lua +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll Body active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll Body inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll BottomCap active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll BottomCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll Explosion.lua +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll Head active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll Head inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll TopCap active.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Roll TopCap inactive.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Tap Lift 4x1.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Tap Mine.lua +lib/stepmania/NoteSkins/dance/retrobar/Bar Tap Note.lua +lib/stepmania/NoteSkins/dance/retrobar/Bar Tap explosion bright.png +lib/stepmania/NoteSkins/dance/retrobar/Bar Tap explosion dim.redir +lib/stepmania/NoteSkins/dance/retrobar/Noteskin.lua +lib/stepmania/NoteSkins/dance/retrobar/_bar hold explosion bright.png +lib/stepmania/NoteSkins/dance/retrobar/_bar hold explosion dim.png +lib/stepmania/NoteSkins/dance/retrobar/_bar mine 4x1.png +lib/stepmania/NoteSkins/dance/retrobar/_bar receptor base.png +lib/stepmania/NoteSkins/dance/retrobar/_bar receptor tap.png +lib/stepmania/NoteSkins/dance/retrobar/_bar tap base.png +lib/stepmania/NoteSkins/dance/retrobar/_bar tap fake 1x8.png +lib/stepmania/NoteSkins/dance/retrobar/_bar tap note 8x8.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sat Oct 10 14:26:52 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 C00DCA1018C; Sat, 10 Oct 2015 14:26:52 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 869D81368; Sat, 10 Oct 2015 14:26:52 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AEQpKK019805; Sat, 10 Oct 2015 14:26:51 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AEQp9f019803; Sat, 10 Oct 2015 14:26:51 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201510101426.t9AEQp9f019803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 10 Oct 2015 14:26:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398998 - head/lang/gcc49 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: Sat, 10 Oct 2015 14:26:52 -0000 Author: gerald Date: Sat Oct 10 14:26:51 2015 New Revision: 398998 URL: https://svnweb.freebsd.org/changeset/ports/398998 Log: Update to the 20151007 snapshot of GCC 4.9.4. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Sat Oct 10 14:18:31 2015 (r398997) +++ head/lang/gcc49/Makefile Sat Oct 10 14:26:51 2015 (r398998) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 4.9.4.s20150916 +PORTVERSION= 4.9.4.s20151007 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Sat Oct 10 14:18:31 2015 (r398997) +++ head/lang/gcc49/distinfo Sat Oct 10 14:26:51 2015 (r398998) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20150916.tar.bz2) = 19814f0445ec7a15e2ed4072d1b0856856fb67a80f719122a5c7f47997a137a4 -SIZE (gcc-4.9-20150916.tar.bz2) = 85843819 +SHA256 (gcc-4.9-20151007.tar.bz2) = 5155c4d38aa86ec6bf8b34a61da5abeea5dca09ec9056c4047d1cda764c62bc2 +SIZE (gcc-4.9-20151007.tar.bz2) = 85827957 From owner-svn-ports-head@freebsd.org Sat Oct 10 14:44: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 86456A10E32; Sat, 10 Oct 2015 14:44:37 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 72F5869D; Sat, 10 Oct 2015 14:44:37 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 162921064; Sat, 10 Oct 2015 14:44:36 +0000 (UTC) Date: Sat, 10 Oct 2015 14:44:36 +0000 From: Alexey Dokuchaev To: marino@freebsd.org Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398971 - in head/audio/musescore: . files Message-ID: <20151010144435.GA90609@FreeBSD.org> References: <201510100544.t9A5iZA2064835@repo.freebsd.org> <20151010070827.GA93698@FreeBSD.org> <5618BFB3.2020905@marino.st> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5618BFB3.2020905@marino.st> 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: Sat, 10 Oct 2015 14:44:37 -0000 On Sat, Oct 10, 2015 at 09:35:15AM +0200, John Marino wrote: > On 10/10/2015 9:08 AM, Alexey Dokuchaev wrote: > > On Sat, Oct 10, 2015 at 05:44:35AM +0000, John Marino wrote: > >> New Revision: 398971 > >> URL: https://svnweb.freebsd.org/changeset/ports/398971 > >> > >> [...] > >> + @${REINPLACE_CMD} -e \ > >> + 's||| ; \ > >> + s||| ; \ > >> + s||| ; \ > >> + s|||' ${WRKSRC}/all.h > > > > I think these foo.h are missing escaping of the dot (should be foo\.h), no? > > Yes, but adding a slash doesn't change the result. It's a more correct > matching, but the current version is good enough (e.g. doesn't > match more than ) . In any case, it passed a build test. It's certainly works and is good enough, but seeing this mistake made often I'd wanted to point it out for educational purposes given chance. ./danfe From owner-svn-ports-head@freebsd.org Sat Oct 10 14:45:30 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 E7220A10EA5; Sat, 10 Oct 2015 14:45:30 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89908840; Sat, 10 Oct 2015 14:45:30 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AEjTeo025794; Sat, 10 Oct 2015 14:45:29 GMT (envelope-from jpaetzel@FreeBSD.org) Received: (from jpaetzel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AEjTG6025788; Sat, 10 Oct 2015 14:45:29 GMT (envelope-from jpaetzel@FreeBSD.org) Message-Id: <201510101445.t9AEjTG6025788@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jpaetzel set sender to jpaetzel@FreeBSD.org using -f From: Josh Paetzel Date: Sat, 10 Oct 2015 14:45:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398999 - in head/www: . npm012 npm012/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: Sat, 10 Oct 2015 14:45:31 -0000 Author: jpaetzel Date: Sat Oct 10 14:45:28 2015 New Revision: 398999 URL: https://svnweb.freebsd.org/changeset/ports/398999 Log: Welcome npm012 to the ports tree. If you pkg install node012 and then pkg install npm it will delete the node012 package and install node 4.1.1. Since node 4.1.1 is incompatible with node 0.12.x things will explode in spectacular fashion. Also a (small) WTF to the node project for going from 0.12.x to 4.1.1 in a week? Added: head/www/npm012/ head/www/npm012/Makefile (contents, props changed) head/www/npm012/distinfo (contents, props changed) head/www/npm012/files/ head/www/npm012/files/extra-patch-bug-178881 (contents, props changed) head/www/npm012/pkg-descr (contents, props changed) head/www/npm012/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Oct 10 14:26:51 2015 (r398998) +++ head/www/Makefile Sat Oct 10 14:45:28 2015 (r398999) @@ -567,6 +567,7 @@ SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm + SUBDIR += npm012 SUBDIR += nspluginwrapper SUBDIR += ocaml-net SUBDIR += ocsigen Added: head/www/npm012/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm012/Makefile Sat Oct 10 14:45:28 2015 (r398999) @@ -0,0 +1,91 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= npm012 +PORTVERSION= 2.14.7 +CATEGORIES= www +MASTER_SITES= LOCAL/sunpoet + +MAINTAINER= jpaetzel@FreeBSD.org +COMMENT= Node package manager + +LICENSE= MIT + +RUN_DEPENDS= node>=0.8.0:${PORTSDIR}/www/node012 + +MAKE_ARGS= npm_config_prefix=${STAGEDIR}${PREFIX} +MANPREFIX= ${PREFIX}/lib/node_modules/npm +NO_ARCH= yes +NO_BUILD= yes +REINPLACE_ARGS= -i '' +USES= cpe python:2 shebangfix tar:xz + +CPE_VENDOR= npmjs +CPE_PRODUCT= node_packaged_modules + +SHEBANG_FILES= lib/utils/completion.sh \ + node_modules/request/node_modules/node-uuid/benchmark/bench.sh \ + scripts/clean-old.sh \ + scripts/release.sh \ + scripts/relocate.sh \ + test/update-test.sh + +.include + +.if ${ARCH} == "i386" +# Workaround for kernel bug 178881 +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-bug-178881 +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|node cli.js|& --cache ${WRKDIR}/.cache|' ${WRKSRC}/Makefile + @${ECHO_CMD} 'MANPATH ${PREFIX}/lib/node_modules/npm/man' > ${WRKDIR}/npm.conf + @${REINPLACE_CMD} -e 's|exec python|exec ${PYTHON_CMD}|' ${WRKSRC}/node_modules/node-gyp/gyp/gyp + +post-install: + ${INSTALL_DATA} ${WRKDIR}/npm.conf ${STAGEDIR}${PREFIX}/etc/man.d/npm.conf + +# maintainer section: +# require: bash, git, gmake, perl, node + +MS_DISTNAME= ${PORTNAME}-${MS_VERSION} +MS_PLIST= ${WRKDIR}/.ms-pkg-plist +MS_RELEASES= ${MS_WRKSRC}/releases +MS_VERSION= `${CAT} ${MS_VERSIONFILE}` +MS_VERSIONFILE= ${MS_WRKSRC}/.version +MS_WRKSRC= ${WRKSRC}/tmp + +GITHUB_PROJECT= ${PORTNAME} +GITHUB_RELEASES=https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/releases/latest +GITHUB_TARBALL= https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/${GITHUB_VERSION}.tar.gz +GITHUB_USER= ${PORTNAME} +GITHUB_VERSION= v${MS_VERSION} + +genplist: do-clean stage + @${MAKE_CMD} makeplist > ${MS_PLIST} + @${SED} -i '' '1 d; /^lib\/node_modules\/npm\/bin\/node-gyp-bin\/node-gyp$$/ s|^|@(,,755) |' ${MS_PLIST} + @${INSTALL} -m 600 ${MS_PLIST} ${PLIST} + +maketar: do-clean + @${MKDIR} ${MS_WRKSRC}/ + @${FETCH_BINARY} ${FETCH_ARGS:C/A//} -o ${MS_RELEASES} ${GITHUB_RELEASES} + @${GREP} -o '/${GITHUB_USER}/${GITHUB_PROJECT}/archive/[^"]*\.tar\.gz' ${MS_RELEASES} | ${HEAD} -1 | ${CUT} -d/ -f5 | ${SED} 's|^v||; s|\.tar\.gz$$||' > ${MS_VERSIONFILE} + @${ECHO_MSG} "*** Updating from ${PORTVERSION} to ${MS_VERSION} ..." + @${FETCH_BINARY} ${FETCH_ARGS:C/A//} -o ${MS_WRKSRC}/${MS_DISTNAME}.tar.gz ${GITHUB_TARBALL} + @${MKDIR} ${MS_WRKSRC}/${MS_DISTNAME}/ + @${TAR} -xf ${MS_WRKSRC}/${MS_DISTNAME}.tar.gz -C ${MS_WRKSRC}/${MS_DISTNAME}/ --strip-components 1 + @${REINPLACE_CMD} -e 's|${MAKE}|${GMAKE}|g; /^install: / s| docclean||' ${MS_WRKSRC}/${MS_DISTNAME}/Makefile + @${REINPLACE_CMD} -e 's| && ${MAKE} -j8 doc||' ${MS_WRKSRC}/${MS_DISTNAME}/package.json + @${REINPLACE_CMD} -e 's|linkBins, linkMans|linkBins|; /manRoot/ s|, "share"||' ${MS_WRKSRC}/${MS_DISTNAME}/lib/build.js ${MS_WRKSRC}/${MS_DISTNAME}/lib/unbuild.js + @${REINPLACE_CMD} -e '1 s|#!/bin/bash|#!${LOCALBASE}/bin/bash|; s|${MAKE}|${GMAKE}|g; s|perl -pi|perl -p|' ${MS_WRKSRC}/${MS_DISTNAME}/scripts/doc-build.sh + @${GREP} -lr share/man ${MS_WRKSRC}/${MS_DISTNAME}/doc/ ${MS_WRKSRC}/${MS_DISTNAME}/scripts/ | ${XARGS} -I % ${REINPLACE_CMD} 's|share/man|man|g' % + @cd ${MS_WRKSRC}/${MS_DISTNAME}/ && ${GMAKE} docclean markedclean all html/doc/misc/npm-index.html + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type d -exec ${CHMOD} 755 '{}' \; + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -exec ${CHMOD} 644 '{}' \; + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -name '*.sh' -exec ${CHMOD} 755 '{}' \; + @cd ${MS_WRKSRC}/ && ${TAR} -Jcf ${MS_DISTNAME}.tar.xz ${MS_DISTNAME}/ + @${REINPLACE_CMD} -e '/^PORTVERSION=/ s|${PORTVERSION}|'${MS_VERSION}'|; /^PORTREVISION=/d' ${.CURDIR}/Makefile + @sudo ${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/ + @cd ${.CURDIR}/ && ${MAKE_CMD} makesum + +.include Added: head/www/npm012/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm012/distinfo Sat Oct 10 14:45:28 2015 (r398999) @@ -0,0 +1,2 @@ +SHA256 (npm-2.14.7.tar.xz) = bae5f33434527e14f5586d7797837164a611f30de73f9cd8d5720dc0531450d0 +SIZE (npm-2.14.7.tar.xz) = 2495000 Added: head/www/npm012/files/extra-patch-bug-178881 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm012/files/extra-patch-bug-178881 Sat Oct 10 14:45:28 2015 (r398999) @@ -0,0 +1,30 @@ +--- lib/config/defaults.js.orig 2015-05-01 04:03:19 UTC ++++ lib/config/defaults.js +@@ -316,26 +316,7 @@ exports.types = + } + + function getLocalAddresses () { +- var interfaces +- // #8094: some environments require elevated permissions to enumerate +- // interfaces, and synchronously throw EPERM when run without +- // elevated privileges +- try { +- interfaces = os.networkInterfaces() +- } catch (e) { +- interfaces = {} +- } +- +- return Object.keys(interfaces).map(function (nic) { +- return interfaces[nic].filter(function (addr) { +- return addr.family === 'IPv4' +- }) +- .map(function (addr) { +- return addr.address +- }) +- }).reduce(function (curr, next) { +- return curr.concat(next) +- }, []).concat(undefined) ++ return [ '127.0.0.1', undefined ] + } + + exports.shorthands = Added: head/www/npm012/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm012/pkg-descr Sat Oct 10 14:45:28 2015 (r398999) @@ -0,0 +1,5 @@ +npm is a package manager for node. You can use it to install and publish your +node programs. It manages dependencies and does other cool stuff. + +WWW: http://npmjs.org/ +WWW: https://github.com/npm/npm Added: head/www/npm012/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm012/pkg-plist Sat Oct 10 14:45:28 2015 (r398999) @@ -0,0 +1,2610 @@ +bin/npm +etc/man.d/npm.conf +lib/node_modules/npm/.mailmap +lib/node_modules/npm/.npmignore +lib/node_modules/npm/.travis.yml +lib/node_modules/npm/AUTHORS +lib/node_modules/npm/CHANGELOG.md +lib/node_modules/npm/CONTRIBUTING.md +lib/node_modules/npm/LICENSE +lib/node_modules/npm/Makefile +lib/node_modules/npm/README.md +@(,,755) lib/node_modules/npm/bin/node-gyp-bin/node-gyp +lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +lib/node_modules/npm/bin/npm +lib/node_modules/npm/bin/npm-cli.js +lib/node_modules/npm/bin/npm.cmd +lib/node_modules/npm/bin/read-package-json.js +lib/node_modules/npm/cli.js +lib/node_modules/npm/configure +lib/node_modules/npm/doc/api/npm-bin.md +lib/node_modules/npm/doc/api/npm-bugs.md +lib/node_modules/npm/doc/api/npm-cache.md +lib/node_modules/npm/doc/api/npm-commands.md +lib/node_modules/npm/doc/api/npm-config.md +lib/node_modules/npm/doc/api/npm-deprecate.md +lib/node_modules/npm/doc/api/npm-docs.md +lib/node_modules/npm/doc/api/npm-edit.md +lib/node_modules/npm/doc/api/npm-explore.md +lib/node_modules/npm/doc/api/npm-help-search.md +lib/node_modules/npm/doc/api/npm-init.md +lib/node_modules/npm/doc/api/npm-install.md +lib/node_modules/npm/doc/api/npm-link.md +lib/node_modules/npm/doc/api/npm-load.md +lib/node_modules/npm/doc/api/npm-ls.md +lib/node_modules/npm/doc/api/npm-outdated.md +lib/node_modules/npm/doc/api/npm-owner.md +lib/node_modules/npm/doc/api/npm-pack.md +lib/node_modules/npm/doc/api/npm-ping.md +lib/node_modules/npm/doc/api/npm-prefix.md +lib/node_modules/npm/doc/api/npm-prune.md +lib/node_modules/npm/doc/api/npm-publish.md +lib/node_modules/npm/doc/api/npm-rebuild.md +lib/node_modules/npm/doc/api/npm-repo.md +lib/node_modules/npm/doc/api/npm-restart.md +lib/node_modules/npm/doc/api/npm-root.md +lib/node_modules/npm/doc/api/npm-run-script.md +lib/node_modules/npm/doc/api/npm-search.md +lib/node_modules/npm/doc/api/npm-shrinkwrap.md +lib/node_modules/npm/doc/api/npm-start.md +lib/node_modules/npm/doc/api/npm-stop.md +lib/node_modules/npm/doc/api/npm-tag.md +lib/node_modules/npm/doc/api/npm-test.md +lib/node_modules/npm/doc/api/npm-uninstall.md +lib/node_modules/npm/doc/api/npm-unpublish.md +lib/node_modules/npm/doc/api/npm-update.md +lib/node_modules/npm/doc/api/npm-version.md +lib/node_modules/npm/doc/api/npm-view.md +lib/node_modules/npm/doc/api/npm-whoami.md +lib/node_modules/npm/doc/api/npm.md +lib/node_modules/npm/doc/cli/npm-access.md +lib/node_modules/npm/doc/cli/npm-adduser.md +lib/node_modules/npm/doc/cli/npm-bin.md +lib/node_modules/npm/doc/cli/npm-bugs.md +lib/node_modules/npm/doc/cli/npm-build.md +lib/node_modules/npm/doc/cli/npm-bundle.md +lib/node_modules/npm/doc/cli/npm-cache.md +lib/node_modules/npm/doc/cli/npm-completion.md +lib/node_modules/npm/doc/cli/npm-config.md +lib/node_modules/npm/doc/cli/npm-dedupe.md +lib/node_modules/npm/doc/cli/npm-deprecate.md +lib/node_modules/npm/doc/cli/npm-dist-tag.md +lib/node_modules/npm/doc/cli/npm-docs.md +lib/node_modules/npm/doc/cli/npm-edit.md +lib/node_modules/npm/doc/cli/npm-explore.md +lib/node_modules/npm/doc/cli/npm-help-search.md +lib/node_modules/npm/doc/cli/npm-help.md +lib/node_modules/npm/doc/cli/npm-init.md +lib/node_modules/npm/doc/cli/npm-install.md +lib/node_modules/npm/doc/cli/npm-link.md +lib/node_modules/npm/doc/cli/npm-logout.md +lib/node_modules/npm/doc/cli/npm-ls.md +lib/node_modules/npm/doc/cli/npm-outdated.md +lib/node_modules/npm/doc/cli/npm-owner.md +lib/node_modules/npm/doc/cli/npm-pack.md +lib/node_modules/npm/doc/cli/npm-ping.md +lib/node_modules/npm/doc/cli/npm-prefix.md +lib/node_modules/npm/doc/cli/npm-prune.md +lib/node_modules/npm/doc/cli/npm-publish.md +lib/node_modules/npm/doc/cli/npm-rebuild.md +lib/node_modules/npm/doc/cli/npm-repo.md +lib/node_modules/npm/doc/cli/npm-restart.md +lib/node_modules/npm/doc/cli/npm-rm.md +lib/node_modules/npm/doc/cli/npm-root.md +lib/node_modules/npm/doc/cli/npm-run-script.md +lib/node_modules/npm/doc/cli/npm-search.md +lib/node_modules/npm/doc/cli/npm-shrinkwrap.md +lib/node_modules/npm/doc/cli/npm-star.md +lib/node_modules/npm/doc/cli/npm-stars.md +lib/node_modules/npm/doc/cli/npm-start.md +lib/node_modules/npm/doc/cli/npm-stop.md +lib/node_modules/npm/doc/cli/npm-tag.md +lib/node_modules/npm/doc/cli/npm-team.md +lib/node_modules/npm/doc/cli/npm-test.md +lib/node_modules/npm/doc/cli/npm-uninstall.md +lib/node_modules/npm/doc/cli/npm-unpublish.md +lib/node_modules/npm/doc/cli/npm-update.md +lib/node_modules/npm/doc/cli/npm-version.md +lib/node_modules/npm/doc/cli/npm-view.md +lib/node_modules/npm/doc/cli/npm-whoami.md +lib/node_modules/npm/doc/cli/npm.md +lib/node_modules/npm/doc/files/npm-folders.md +lib/node_modules/npm/doc/files/npmrc.md +lib/node_modules/npm/doc/files/package.json.md +lib/node_modules/npm/doc/misc/npm-coding-style.md +lib/node_modules/npm/doc/misc/npm-config.md +lib/node_modules/npm/doc/misc/npm-developers.md +lib/node_modules/npm/doc/misc/npm-disputes.md +lib/node_modules/npm/doc/misc/npm-faq.md +lib/node_modules/npm/doc/misc/npm-index.md +lib/node_modules/npm/doc/misc/npm-orgs.md +lib/node_modules/npm/doc/misc/npm-registry.md +lib/node_modules/npm/doc/misc/npm-scope.md +lib/node_modules/npm/doc/misc/npm-scripts.md +lib/node_modules/npm/doc/misc/removing-npm.md +lib/node_modules/npm/doc/misc/semver.md +lib/node_modules/npm/html/doc/README.html +lib/node_modules/npm/html/doc/api/npm-bin.html +lib/node_modules/npm/html/doc/api/npm-bugs.html +lib/node_modules/npm/html/doc/api/npm-cache.html +lib/node_modules/npm/html/doc/api/npm-commands.html +lib/node_modules/npm/html/doc/api/npm-config.html +lib/node_modules/npm/html/doc/api/npm-deprecate.html +lib/node_modules/npm/html/doc/api/npm-docs.html +lib/node_modules/npm/html/doc/api/npm-edit.html +lib/node_modules/npm/html/doc/api/npm-explore.html +lib/node_modules/npm/html/doc/api/npm-help-search.html +lib/node_modules/npm/html/doc/api/npm-init.html +lib/node_modules/npm/html/doc/api/npm-install.html +lib/node_modules/npm/html/doc/api/npm-link.html +lib/node_modules/npm/html/doc/api/npm-load.html +lib/node_modules/npm/html/doc/api/npm-ls.html +lib/node_modules/npm/html/doc/api/npm-outdated.html +lib/node_modules/npm/html/doc/api/npm-owner.html +lib/node_modules/npm/html/doc/api/npm-pack.html +lib/node_modules/npm/html/doc/api/npm-ping.html +lib/node_modules/npm/html/doc/api/npm-prefix.html +lib/node_modules/npm/html/doc/api/npm-prune.html +lib/node_modules/npm/html/doc/api/npm-publish.html +lib/node_modules/npm/html/doc/api/npm-rebuild.html +lib/node_modules/npm/html/doc/api/npm-repo.html +lib/node_modules/npm/html/doc/api/npm-restart.html +lib/node_modules/npm/html/doc/api/npm-root.html +lib/node_modules/npm/html/doc/api/npm-run-script.html +lib/node_modules/npm/html/doc/api/npm-search.html +lib/node_modules/npm/html/doc/api/npm-shrinkwrap.html +lib/node_modules/npm/html/doc/api/npm-start.html +lib/node_modules/npm/html/doc/api/npm-stop.html +lib/node_modules/npm/html/doc/api/npm-tag.html +lib/node_modules/npm/html/doc/api/npm-test.html +lib/node_modules/npm/html/doc/api/npm-uninstall.html +lib/node_modules/npm/html/doc/api/npm-unpublish.html +lib/node_modules/npm/html/doc/api/npm-update.html +lib/node_modules/npm/html/doc/api/npm-version.html +lib/node_modules/npm/html/doc/api/npm-view.html +lib/node_modules/npm/html/doc/api/npm-whoami.html +lib/node_modules/npm/html/doc/api/npm.html +lib/node_modules/npm/html/doc/cli/npm-access.html +lib/node_modules/npm/html/doc/cli/npm-adduser.html +lib/node_modules/npm/html/doc/cli/npm-bin.html +lib/node_modules/npm/html/doc/cli/npm-bugs.html +lib/node_modules/npm/html/doc/cli/npm-build.html +lib/node_modules/npm/html/doc/cli/npm-bundle.html +lib/node_modules/npm/html/doc/cli/npm-cache.html +lib/node_modules/npm/html/doc/cli/npm-completion.html +lib/node_modules/npm/html/doc/cli/npm-config.html +lib/node_modules/npm/html/doc/cli/npm-dedupe.html +lib/node_modules/npm/html/doc/cli/npm-deprecate.html +lib/node_modules/npm/html/doc/cli/npm-dist-tag.html +lib/node_modules/npm/html/doc/cli/npm-docs.html +lib/node_modules/npm/html/doc/cli/npm-edit.html +lib/node_modules/npm/html/doc/cli/npm-explore.html +lib/node_modules/npm/html/doc/cli/npm-help-search.html +lib/node_modules/npm/html/doc/cli/npm-help.html +lib/node_modules/npm/html/doc/cli/npm-init.html +lib/node_modules/npm/html/doc/cli/npm-install.html +lib/node_modules/npm/html/doc/cli/npm-link.html +lib/node_modules/npm/html/doc/cli/npm-logout.html +lib/node_modules/npm/html/doc/cli/npm-ls.html +lib/node_modules/npm/html/doc/cli/npm-outdated.html +lib/node_modules/npm/html/doc/cli/npm-owner.html +lib/node_modules/npm/html/doc/cli/npm-pack.html +lib/node_modules/npm/html/doc/cli/npm-ping.html +lib/node_modules/npm/html/doc/cli/npm-prefix.html +lib/node_modules/npm/html/doc/cli/npm-prune.html +lib/node_modules/npm/html/doc/cli/npm-publish.html +lib/node_modules/npm/html/doc/cli/npm-rebuild.html +lib/node_modules/npm/html/doc/cli/npm-repo.html +lib/node_modules/npm/html/doc/cli/npm-restart.html +lib/node_modules/npm/html/doc/cli/npm-rm.html +lib/node_modules/npm/html/doc/cli/npm-root.html +lib/node_modules/npm/html/doc/cli/npm-run-script.html +lib/node_modules/npm/html/doc/cli/npm-search.html +lib/node_modules/npm/html/doc/cli/npm-shrinkwrap.html +lib/node_modules/npm/html/doc/cli/npm-star.html +lib/node_modules/npm/html/doc/cli/npm-stars.html +lib/node_modules/npm/html/doc/cli/npm-start.html +lib/node_modules/npm/html/doc/cli/npm-stop.html +lib/node_modules/npm/html/doc/cli/npm-tag.html +lib/node_modules/npm/html/doc/cli/npm-team.html +lib/node_modules/npm/html/doc/cli/npm-test.html +lib/node_modules/npm/html/doc/cli/npm-uninstall.html +lib/node_modules/npm/html/doc/cli/npm-unpublish.html +lib/node_modules/npm/html/doc/cli/npm-update.html +lib/node_modules/npm/html/doc/cli/npm-version.html +lib/node_modules/npm/html/doc/cli/npm-view.html +lib/node_modules/npm/html/doc/cli/npm-whoami.html +lib/node_modules/npm/html/doc/cli/npm.html +lib/node_modules/npm/html/doc/files/npm-folders.html +lib/node_modules/npm/html/doc/files/npm-global.html +lib/node_modules/npm/html/doc/files/npm-json.html +lib/node_modules/npm/html/doc/files/npmrc.html +lib/node_modules/npm/html/doc/files/package.json.html +lib/node_modules/npm/html/doc/index.html +lib/node_modules/npm/html/doc/misc/npm-coding-style.html +lib/node_modules/npm/html/doc/misc/npm-config.html +lib/node_modules/npm/html/doc/misc/npm-developers.html +lib/node_modules/npm/html/doc/misc/npm-disputes.html +lib/node_modules/npm/html/doc/misc/npm-faq.html +lib/node_modules/npm/html/doc/misc/npm-index.html +lib/node_modules/npm/html/doc/misc/npm-orgs.html +lib/node_modules/npm/html/doc/misc/npm-registry.html +lib/node_modules/npm/html/doc/misc/npm-scope.html +lib/node_modules/npm/html/doc/misc/npm-scripts.html +lib/node_modules/npm/html/doc/misc/removing-npm.html +lib/node_modules/npm/html/doc/misc/semver.html +lib/node_modules/npm/html/docfoot.html +lib/node_modules/npm/html/dochead.html +lib/node_modules/npm/html/favicon.ico +lib/node_modules/npm/html/index.html +lib/node_modules/npm/html/static/style.css +lib/node_modules/npm/html/static/toc.js +lib/node_modules/npm/lib/access.js +lib/node_modules/npm/lib/adduser.js +lib/node_modules/npm/lib/bin.js +lib/node_modules/npm/lib/bugs.js +lib/node_modules/npm/lib/build.js +lib/node_modules/npm/lib/cache.js +lib/node_modules/npm/lib/cache/add-local-tarball.js +lib/node_modules/npm/lib/cache/add-local.js +lib/node_modules/npm/lib/cache/add-named.js +lib/node_modules/npm/lib/cache/add-remote-git.js +lib/node_modules/npm/lib/cache/add-remote-tarball.js +lib/node_modules/npm/lib/cache/cached-package-root.js +lib/node_modules/npm/lib/cache/caching-client.js +lib/node_modules/npm/lib/cache/get-stat.js +lib/node_modules/npm/lib/cache/update-index.js +lib/node_modules/npm/lib/completion.js +lib/node_modules/npm/lib/config.js +lib/node_modules/npm/lib/config/clear-credentials-by-uri.js +lib/node_modules/npm/lib/config/core.js +lib/node_modules/npm/lib/config/defaults.js +lib/node_modules/npm/lib/config/find-prefix.js +lib/node_modules/npm/lib/config/get-credentials-by-uri.js +lib/node_modules/npm/lib/config/load-cafile.js +lib/node_modules/npm/lib/config/load-prefix.js +lib/node_modules/npm/lib/config/load-uid.js +lib/node_modules/npm/lib/config/nerf-dart.js +lib/node_modules/npm/lib/config/set-credentials-by-uri.js +lib/node_modules/npm/lib/config/set-user.js +lib/node_modules/npm/lib/dedupe.js +lib/node_modules/npm/lib/deprecate.js +lib/node_modules/npm/lib/dist-tag.js +lib/node_modules/npm/lib/docs.js +lib/node_modules/npm/lib/edit.js +lib/node_modules/npm/lib/explore.js +lib/node_modules/npm/lib/faq.js +lib/node_modules/npm/lib/get.js +lib/node_modules/npm/lib/help-search.js +lib/node_modules/npm/lib/help.js +lib/node_modules/npm/lib/init.js +lib/node_modules/npm/lib/install.js +lib/node_modules/npm/lib/link.js +lib/node_modules/npm/lib/logout.js +lib/node_modules/npm/lib/ls.js +lib/node_modules/npm/lib/npm.js +lib/node_modules/npm/lib/outdated.js +lib/node_modules/npm/lib/owner.js +lib/node_modules/npm/lib/pack.js +lib/node_modules/npm/lib/ping.js +lib/node_modules/npm/lib/prefix.js +lib/node_modules/npm/lib/prune.js +lib/node_modules/npm/lib/publish.js +lib/node_modules/npm/lib/rebuild.js +lib/node_modules/npm/lib/repo.js +lib/node_modules/npm/lib/restart.js +lib/node_modules/npm/lib/root.js +lib/node_modules/npm/lib/run-script.js +lib/node_modules/npm/lib/search.js +lib/node_modules/npm/lib/set.js +lib/node_modules/npm/lib/shrinkwrap.js +lib/node_modules/npm/lib/star.js +lib/node_modules/npm/lib/stars.js +lib/node_modules/npm/lib/start.js +lib/node_modules/npm/lib/stop.js +lib/node_modules/npm/lib/substack.js +lib/node_modules/npm/lib/tag.js +lib/node_modules/npm/lib/team.js +lib/node_modules/npm/lib/test.js +lib/node_modules/npm/lib/unbuild.js +lib/node_modules/npm/lib/uninstall.js +lib/node_modules/npm/lib/unpublish.js +lib/node_modules/npm/lib/update.js +lib/node_modules/npm/lib/utils/completion.sh +lib/node_modules/npm/lib/utils/completion/file-completion.js +lib/node_modules/npm/lib/utils/completion/installed-deep.js +lib/node_modules/npm/lib/utils/completion/installed-shallow.js +lib/node_modules/npm/lib/utils/correct-mkdir.js +lib/node_modules/npm/lib/utils/depr-check.js +lib/node_modules/npm/lib/utils/error-handler.js +lib/node_modules/npm/lib/utils/gently-rm.js +lib/node_modules/npm/lib/utils/get-publish-config.js +lib/node_modules/npm/lib/utils/git.js +lib/node_modules/npm/lib/utils/lifecycle.js +lib/node_modules/npm/lib/utils/link.js +lib/node_modules/npm/lib/utils/locker.js +lib/node_modules/npm/lib/utils/map-to-registry.js +lib/node_modules/npm/lib/utils/read-local-package.js +lib/node_modules/npm/lib/utils/spawn.js +lib/node_modules/npm/lib/utils/tar.js +lib/node_modules/npm/lib/utils/umask.js +lib/node_modules/npm/lib/utils/warn-deprecated.js +lib/node_modules/npm/lib/version.js +lib/node_modules/npm/lib/view.js +lib/node_modules/npm/lib/visnup.js +lib/node_modules/npm/lib/whoami.js +lib/node_modules/npm/lib/xmas.js +lib/node_modules/npm/make.bat +lib/node_modules/npm/man/man1/npm-README.1.gz +lib/node_modules/npm/man/man1/npm-access.1.gz +lib/node_modules/npm/man/man1/npm-adduser.1.gz +lib/node_modules/npm/man/man1/npm-bin.1.gz +lib/node_modules/npm/man/man1/npm-bugs.1.gz +lib/node_modules/npm/man/man1/npm-build.1.gz +lib/node_modules/npm/man/man1/npm-bundle.1.gz +lib/node_modules/npm/man/man1/npm-cache.1.gz +lib/node_modules/npm/man/man1/npm-completion.1.gz +lib/node_modules/npm/man/man1/npm-config.1.gz +lib/node_modules/npm/man/man1/npm-dedupe.1.gz +lib/node_modules/npm/man/man1/npm-deprecate.1.gz +lib/node_modules/npm/man/man1/npm-dist-tag.1.gz +lib/node_modules/npm/man/man1/npm-docs.1.gz +lib/node_modules/npm/man/man1/npm-edit.1.gz +lib/node_modules/npm/man/man1/npm-explore.1.gz +lib/node_modules/npm/man/man1/npm-help-search.1.gz +lib/node_modules/npm/man/man1/npm-help.1.gz +lib/node_modules/npm/man/man1/npm-init.1.gz +lib/node_modules/npm/man/man1/npm-install.1.gz +lib/node_modules/npm/man/man1/npm-link.1.gz +lib/node_modules/npm/man/man1/npm-logout.1.gz +lib/node_modules/npm/man/man1/npm-ls.1.gz +lib/node_modules/npm/man/man1/npm-outdated.1.gz +lib/node_modules/npm/man/man1/npm-owner.1.gz +lib/node_modules/npm/man/man1/npm-pack.1.gz +lib/node_modules/npm/man/man1/npm-ping.1.gz +lib/node_modules/npm/man/man1/npm-prefix.1.gz +lib/node_modules/npm/man/man1/npm-prune.1.gz +lib/node_modules/npm/man/man1/npm-publish.1.gz +lib/node_modules/npm/man/man1/npm-rebuild.1.gz +lib/node_modules/npm/man/man1/npm-repo.1.gz +lib/node_modules/npm/man/man1/npm-restart.1.gz +lib/node_modules/npm/man/man1/npm-rm.1.gz +lib/node_modules/npm/man/man1/npm-root.1.gz +lib/node_modules/npm/man/man1/npm-run-script.1.gz +lib/node_modules/npm/man/man1/npm-search.1.gz +lib/node_modules/npm/man/man1/npm-shrinkwrap.1.gz +lib/node_modules/npm/man/man1/npm-star.1.gz +lib/node_modules/npm/man/man1/npm-stars.1.gz +lib/node_modules/npm/man/man1/npm-start.1.gz +lib/node_modules/npm/man/man1/npm-stop.1.gz +lib/node_modules/npm/man/man1/npm-tag.1.gz +lib/node_modules/npm/man/man1/npm-team.1.gz +lib/node_modules/npm/man/man1/npm-test.1.gz +lib/node_modules/npm/man/man1/npm-uninstall.1.gz +lib/node_modules/npm/man/man1/npm-unpublish.1.gz +lib/node_modules/npm/man/man1/npm-update.1.gz +lib/node_modules/npm/man/man1/npm-version.1.gz +lib/node_modules/npm/man/man1/npm-view.1.gz +lib/node_modules/npm/man/man1/npm-whoami.1.gz +lib/node_modules/npm/man/man1/npm.1.gz +lib/node_modules/npm/man/man3/npm-bin.3.gz +lib/node_modules/npm/man/man3/npm-bugs.3.gz +lib/node_modules/npm/man/man3/npm-cache.3.gz +lib/node_modules/npm/man/man3/npm-commands.3.gz +lib/node_modules/npm/man/man3/npm-config.3.gz +lib/node_modules/npm/man/man3/npm-deprecate.3.gz +lib/node_modules/npm/man/man3/npm-docs.3.gz +lib/node_modules/npm/man/man3/npm-edit.3.gz +lib/node_modules/npm/man/man3/npm-explore.3.gz +lib/node_modules/npm/man/man3/npm-help-search.3.gz +lib/node_modules/npm/man/man3/npm-init.3.gz +lib/node_modules/npm/man/man3/npm-install.3.gz +lib/node_modules/npm/man/man3/npm-link.3.gz +lib/node_modules/npm/man/man3/npm-load.3.gz +lib/node_modules/npm/man/man3/npm-ls.3.gz +lib/node_modules/npm/man/man3/npm-outdated.3.gz +lib/node_modules/npm/man/man3/npm-owner.3.gz +lib/node_modules/npm/man/man3/npm-pack.3.gz +lib/node_modules/npm/man/man3/npm-ping.3.gz +lib/node_modules/npm/man/man3/npm-prefix.3.gz +lib/node_modules/npm/man/man3/npm-prune.3.gz +lib/node_modules/npm/man/man3/npm-publish.3.gz +lib/node_modules/npm/man/man3/npm-rebuild.3.gz +lib/node_modules/npm/man/man3/npm-repo.3.gz +lib/node_modules/npm/man/man3/npm-restart.3.gz +lib/node_modules/npm/man/man3/npm-root.3.gz +lib/node_modules/npm/man/man3/npm-run-script.3.gz +lib/node_modules/npm/man/man3/npm-search.3.gz +lib/node_modules/npm/man/man3/npm-shrinkwrap.3.gz +lib/node_modules/npm/man/man3/npm-start.3.gz +lib/node_modules/npm/man/man3/npm-stop.3.gz +lib/node_modules/npm/man/man3/npm-tag.3.gz +lib/node_modules/npm/man/man3/npm-test.3.gz +lib/node_modules/npm/man/man3/npm-uninstall.3.gz +lib/node_modules/npm/man/man3/npm-unpublish.3.gz +lib/node_modules/npm/man/man3/npm-update.3.gz +lib/node_modules/npm/man/man3/npm-version.3.gz +lib/node_modules/npm/man/man3/npm-view.3.gz +lib/node_modules/npm/man/man3/npm-whoami.3.gz +lib/node_modules/npm/man/man3/npm.3.gz +lib/node_modules/npm/man/man5/npm-folders.5.gz +lib/node_modules/npm/man/man5/npm-global.5.gz +lib/node_modules/npm/man/man5/npm-json.5.gz +lib/node_modules/npm/man/man5/npmrc.5.gz +lib/node_modules/npm/man/man5/package.json.5.gz +lib/node_modules/npm/man/man7/npm-coding-style.7.gz +lib/node_modules/npm/man/man7/npm-config.7.gz +lib/node_modules/npm/man/man7/npm-developers.7.gz +lib/node_modules/npm/man/man7/npm-disputes.7.gz +lib/node_modules/npm/man/man7/npm-faq.7.gz +lib/node_modules/npm/man/man7/npm-index.7.gz +lib/node_modules/npm/man/man7/npm-orgs.7.gz +lib/node_modules/npm/man/man7/npm-registry.7.gz +lib/node_modules/npm/man/man7/npm-scope.7.gz +lib/node_modules/npm/man/man7/npm-scripts.7.gz +lib/node_modules/npm/man/man7/removing-npm.7.gz +lib/node_modules/npm/man/man7/semver.7.gz +lib/node_modules/npm/node_modules/.bin/mkdirp +lib/node_modules/npm/node_modules/.bin/node-gyp +lib/node_modules/npm/node_modules/.bin/nopt +lib/node_modules/npm/node_modules/.bin/opener +lib/node_modules/npm/node_modules/.bin/rimraf +lib/node_modules/npm/node_modules/.bin/semver +lib/node_modules/npm/node_modules/.bin/which +lib/node_modules/npm/node_modules/abbrev/.npmignore +lib/node_modules/npm/node_modules/abbrev/.travis.yml +lib/node_modules/npm/node_modules/abbrev/CONTRIBUTING.md +lib/node_modules/npm/node_modules/abbrev/LICENSE +lib/node_modules/npm/node_modules/abbrev/README.md +lib/node_modules/npm/node_modules/abbrev/abbrev.js +lib/node_modules/npm/node_modules/abbrev/package.json +lib/node_modules/npm/node_modules/abbrev/test.js +lib/node_modules/npm/node_modules/ansi/.jshintrc +lib/node_modules/npm/node_modules/ansi/.npmignore +lib/node_modules/npm/node_modules/ansi/History.md +lib/node_modules/npm/node_modules/ansi/README.md +lib/node_modules/npm/node_modules/ansi/examples/beep/index.js +lib/node_modules/npm/node_modules/ansi/examples/clear/index.js +lib/node_modules/npm/node_modules/ansi/examples/cursorPosition.js +lib/node_modules/npm/node_modules/ansi/examples/progress/index.js +lib/node_modules/npm/node_modules/ansi/lib/ansi.js +lib/node_modules/npm/node_modules/ansi/lib/newlines.js +lib/node_modules/npm/node_modules/ansi/package.json +lib/node_modules/npm/node_modules/ansicolors/LICENSE +lib/node_modules/npm/node_modules/ansicolors/README.md +lib/node_modules/npm/node_modules/ansicolors/ansicolors.js +lib/node_modules/npm/node_modules/ansicolors/package.json +lib/node_modules/npm/node_modules/ansicolors/test/ansicolors.js +lib/node_modules/npm/node_modules/ansistyles/LICENSE +lib/node_modules/npm/node_modules/ansistyles/README.md +lib/node_modules/npm/node_modules/ansistyles/ansistyles.js +lib/node_modules/npm/node_modules/ansistyles/package.json +lib/node_modules/npm/node_modules/ansistyles/test/ansistyles.js +lib/node_modules/npm/node_modules/archy/LICENSE +lib/node_modules/npm/node_modules/archy/README.markdown +lib/node_modules/npm/node_modules/archy/examples/beep.js +lib/node_modules/npm/node_modules/archy/examples/multi_line.js +lib/node_modules/npm/node_modules/archy/index.js +lib/node_modules/npm/node_modules/archy/package.json +lib/node_modules/npm/node_modules/archy/test/beep.js +lib/node_modules/npm/node_modules/archy/test/multi_line.js +lib/node_modules/npm/node_modules/archy/test/non_unicode.js +lib/node_modules/npm/node_modules/async-some/.eslintrc +lib/node_modules/npm/node_modules/async-some/.npmignore +lib/node_modules/npm/node_modules/async-some/LICENSE +lib/node_modules/npm/node_modules/async-some/README.md +lib/node_modules/npm/node_modules/async-some/package.json +lib/node_modules/npm/node_modules/async-some/some.js +lib/node_modules/npm/node_modules/async-some/test/base-case.js +lib/node_modules/npm/node_modules/async-some/test/parameters.js +lib/node_modules/npm/node_modules/async-some/test/simple.js +lib/node_modules/npm/node_modules/block-stream/LICENCE +lib/node_modules/npm/node_modules/block-stream/LICENSE +lib/node_modules/npm/node_modules/block-stream/README.md +lib/node_modules/npm/node_modules/block-stream/bench/block-stream-pause.js +lib/node_modules/npm/node_modules/block-stream/bench/block-stream.js +lib/node_modules/npm/node_modules/block-stream/bench/dropper-pause.js +lib/node_modules/npm/node_modules/block-stream/bench/dropper.js +lib/node_modules/npm/node_modules/block-stream/block-stream.js +lib/node_modules/npm/node_modules/block-stream/package.json +lib/node_modules/npm/node_modules/block-stream/test/basic.js +lib/node_modules/npm/node_modules/block-stream/test/nopad-thorough.js +lib/node_modules/npm/node_modules/block-stream/test/nopad.js +lib/node_modules/npm/node_modules/block-stream/test/pause-resume.js +lib/node_modules/npm/node_modules/block-stream/test/thorough.js +lib/node_modules/npm/node_modules/block-stream/test/two-stream.js +lib/node_modules/npm/node_modules/char-spinner/LICENSE +lib/node_modules/npm/node_modules/char-spinner/README.md +lib/node_modules/npm/node_modules/char-spinner/package.json +lib/node_modules/npm/node_modules/char-spinner/spin.js +lib/node_modules/npm/node_modules/char-spinner/test/basic.js +lib/node_modules/npm/node_modules/chmodr/LICENSE +lib/node_modules/npm/node_modules/chmodr/README.md +lib/node_modules/npm/node_modules/chmodr/chmodr.js +lib/node_modules/npm/node_modules/chmodr/package.json +lib/node_modules/npm/node_modules/chownr/LICENSE +lib/node_modules/npm/node_modules/chownr/README.md +lib/node_modules/npm/node_modules/chownr/chownr.js +lib/node_modules/npm/node_modules/chownr/package.json +lib/node_modules/npm/node_modules/cmd-shim/.npmignore +lib/node_modules/npm/node_modules/cmd-shim/.travis.yml +lib/node_modules/npm/node_modules/cmd-shim/LICENSE +lib/node_modules/npm/node_modules/cmd-shim/README.md +lib/node_modules/npm/node_modules/cmd-shim/index.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/.npmignore +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/LICENSE +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/README.md +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/fs.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/graceful-fs.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/package.json +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/polyfills.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/test/max-open.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/test/open.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/test/readdir-sort.js +lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/test/write-then-read.js +lib/node_modules/npm/node_modules/cmd-shim/package.json +lib/node_modules/npm/node_modules/cmd-shim/test/00-setup.js +lib/node_modules/npm/node_modules/cmd-shim/test/basic.js +lib/node_modules/npm/node_modules/cmd-shim/test/zz-cleanup.js +lib/node_modules/npm/node_modules/columnify/LICENSE +lib/node_modules/npm/node_modules/columnify/Makefile +lib/node_modules/npm/node_modules/columnify/Readme.md +lib/node_modules/npm/node_modules/columnify/columnify.js +lib/node_modules/npm/node_modules/columnify/index.js +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/index.js +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/license +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/package.json +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/readme.md +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/.npmignore +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/LICENSE +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/Readme.md +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/combining.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/docs/index.md +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/index.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/.npmignore +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/LICENSE +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/README.md +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/index.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.npmignore +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.travis.yml +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/LICENSE +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/README.md +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/clone.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/package.json +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/test.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/test.js +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/package.json +lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/test/index.js +lib/node_modules/npm/node_modules/columnify/package.json +lib/node_modules/npm/node_modules/columnify/utils.js +lib/node_modules/npm/node_modules/columnify/width.js +lib/node_modules/npm/node_modules/config-chain/.npmignore +lib/node_modules/npm/node_modules/config-chain/LICENCE +lib/node_modules/npm/node_modules/config-chain/index.js +lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/LICENSE +lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/README.md +lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/package.json +lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/proto-list.js +lib/node_modules/npm/node_modules/config-chain/node_modules/proto-list/test/basic.js +lib/node_modules/npm/node_modules/config-chain/package.json +lib/node_modules/npm/node_modules/config-chain/readme.markdown +lib/node_modules/npm/node_modules/config-chain/test/broken.js +lib/node_modules/npm/node_modules/config-chain/test/broken.json +lib/node_modules/npm/node_modules/config-chain/test/chain-class.js +lib/node_modules/npm/node_modules/config-chain/test/env.js +lib/node_modules/npm/node_modules/config-chain/test/find-file.js +lib/node_modules/npm/node_modules/config-chain/test/get.js +lib/node_modules/npm/node_modules/config-chain/test/ignore-unfound-file.js +lib/node_modules/npm/node_modules/config-chain/test/ini.js +lib/node_modules/npm/node_modules/config-chain/test/save.js +lib/node_modules/npm/node_modules/dezalgo/.travis.yml +lib/node_modules/npm/node_modules/dezalgo/LICENSE +lib/node_modules/npm/node_modules/dezalgo/README.md +lib/node_modules/npm/node_modules/dezalgo/dezalgo.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/CHANGES.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/LICENSE.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/README.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-asap.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-raw.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/package.json +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/raw.js +lib/node_modules/npm/node_modules/dezalgo/package.json +lib/node_modules/npm/node_modules/dezalgo/test/basic.js +lib/node_modules/npm/node_modules/editor/LICENSE +lib/node_modules/npm/node_modules/editor/README.markdown +lib/node_modules/npm/node_modules/editor/example/beep.json +lib/node_modules/npm/node_modules/editor/example/edit.js +lib/node_modules/npm/node_modules/editor/index.js +lib/node_modules/npm/node_modules/editor/package.json +lib/node_modules/npm/node_modules/fs-vacuum/.eslintrc +lib/node_modules/npm/node_modules/fs-vacuum/.npmignore +lib/node_modules/npm/node_modules/fs-vacuum/LICENSE +lib/node_modules/npm/node_modules/fs-vacuum/README.md +lib/node_modules/npm/node_modules/fs-vacuum/package.json +lib/node_modules/npm/node_modules/fs-vacuum/test/arguments.js +lib/node_modules/npm/node_modules/fs-vacuum/test/base-leaf-mismatch.js +lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-file-no-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-link-no-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-no-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-link-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/test/other-directories-no-purge.js +lib/node_modules/npm/node_modules/fs-vacuum/vacuum.js +lib/node_modules/npm/node_modules/fs-write-stream-atomic/LICENSE +lib/node_modules/npm/node_modules/fs-write-stream-atomic/README.md +lib/node_modules/npm/node_modules/fs-write-stream-atomic/index.js +lib/node_modules/npm/node_modules/fs-write-stream-atomic/package.json +lib/node_modules/npm/node_modules/fs-write-stream-atomic/test/basic.js +lib/node_modules/npm/node_modules/fs-write-stream-atomic/test/toolong.js +lib/node_modules/npm/node_modules/fstream-npm/.npmignore +lib/node_modules/npm/node_modules/fstream-npm/.travis.yml +lib/node_modules/npm/node_modules/fstream-npm/LICENSE +lib/node_modules/npm/node_modules/fstream-npm/README.md +lib/node_modules/npm/node_modules/fstream-npm/example/bundle.js +lib/node_modules/npm/node_modules/fstream-npm/example/dir-tar.js +lib/node_modules/npm/node_modules/fstream-npm/example/dir.js +lib/node_modules/npm/node_modules/fstream-npm/example/example.js +lib/node_modules/npm/node_modules/fstream-npm/example/ig-tar.js +lib/node_modules/npm/node_modules/fstream-npm/example/tar.js +lib/node_modules/npm/node_modules/fstream-npm/fstream-npm.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/.npmignore +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/LICENSE +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/README.md +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/package.json +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.ignore +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.npmignore +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/00-setup.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/basic.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/common.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/ignore-most.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/nested-ignores.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/read-file-order.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/unignore-child.js +lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/zz-cleanup.js +lib/node_modules/npm/node_modules/fstream-npm/package.json +lib/node_modules/npm/node_modules/fstream-npm/test/ignores.js +lib/node_modules/npm/node_modules/fstream/.npmignore +lib/node_modules/npm/node_modules/fstream/.travis.yml +lib/node_modules/npm/node_modules/fstream/LICENSE +lib/node_modules/npm/node_modules/fstream/README.md +lib/node_modules/npm/node_modules/fstream/examples/filter-pipe.js +lib/node_modules/npm/node_modules/fstream/examples/pipe.js +lib/node_modules/npm/node_modules/fstream/examples/reader.js +lib/node_modules/npm/node_modules/fstream/examples/symlink-write.js +lib/node_modules/npm/node_modules/fstream/fstream.js +lib/node_modules/npm/node_modules/fstream/lib/abstract.js +lib/node_modules/npm/node_modules/fstream/lib/collect.js +lib/node_modules/npm/node_modules/fstream/lib/dir-reader.js +lib/node_modules/npm/node_modules/fstream/lib/dir-writer.js +lib/node_modules/npm/node_modules/fstream/lib/file-reader.js +lib/node_modules/npm/node_modules/fstream/lib/file-writer.js +lib/node_modules/npm/node_modules/fstream/lib/get-type.js +lib/node_modules/npm/node_modules/fstream/lib/link-reader.js +lib/node_modules/npm/node_modules/fstream/lib/link-writer.js +lib/node_modules/npm/node_modules/fstream/lib/proxy-reader.js +lib/node_modules/npm/node_modules/fstream/lib/proxy-writer.js +lib/node_modules/npm/node_modules/fstream/lib/reader.js +lib/node_modules/npm/node_modules/fstream/lib/socket-reader.js +lib/node_modules/npm/node_modules/fstream/lib/writer.js +lib/node_modules/npm/node_modules/fstream/package.json +lib/node_modules/npm/node_modules/github-url-from-git/.npmignore +lib/node_modules/npm/node_modules/github-url-from-git/LICENSE +lib/node_modules/npm/node_modules/github-url-from-git/Makefile +lib/node_modules/npm/node_modules/github-url-from-git/Readme.md +lib/node_modules/npm/node_modules/github-url-from-git/index.js +lib/node_modules/npm/node_modules/github-url-from-git/package.json +lib/node_modules/npm/node_modules/github-url-from-git/test.js +lib/node_modules/npm/node_modules/github-url-from-username-repo/.npmignore +lib/node_modules/npm/node_modules/github-url-from-username-repo/.travis.yml +lib/node_modules/npm/node_modules/github-url-from-username-repo/LICENSE +lib/node_modules/npm/node_modules/github-url-from-username-repo/README.md +lib/node_modules/npm/node_modules/github-url-from-username-repo/index.js +lib/node_modules/npm/node_modules/github-url-from-username-repo/package.json +lib/node_modules/npm/node_modules/github-url-from-username-repo/test/index.js +lib/node_modules/npm/node_modules/glob/LICENSE +lib/node_modules/npm/node_modules/glob/README.md +lib/node_modules/npm/node_modules/glob/common.js +lib/node_modules/npm/node_modules/glob/glob.js +lib/node_modules/npm/node_modules/glob/node_modules/path-is-absolute/index.js +lib/node_modules/npm/node_modules/glob/node_modules/path-is-absolute/license +lib/node_modules/npm/node_modules/glob/node_modules/path-is-absolute/package.json +lib/node_modules/npm/node_modules/glob/node_modules/path-is-absolute/readme.md +lib/node_modules/npm/node_modules/glob/package.json +lib/node_modules/npm/node_modules/glob/sync.js +lib/node_modules/npm/node_modules/graceful-fs/LICENSE +lib/node_modules/npm/node_modules/graceful-fs/README.md +lib/node_modules/npm/node_modules/graceful-fs/fs.js +lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +lib/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +lib/node_modules/npm/node_modules/graceful-fs/package.json +lib/node_modules/npm/node_modules/graceful-fs/polyfills.js +lib/node_modules/npm/node_modules/hosted-git-info/.npmignore +lib/node_modules/npm/node_modules/hosted-git-info/.travis.yml +lib/node_modules/npm/node_modules/hosted-git-info/LICENSE +lib/node_modules/npm/node_modules/hosted-git-info/README.md +lib/node_modules/npm/node_modules/hosted-git-info/git-host-info.js +lib/node_modules/npm/node_modules/hosted-git-info/git-host.js +lib/node_modules/npm/node_modules/hosted-git-info/index.js +lib/node_modules/npm/node_modules/hosted-git-info/package.json +lib/node_modules/npm/node_modules/hosted-git-info/test/basic.js +lib/node_modules/npm/node_modules/hosted-git-info/test/bitbucket-https-with-embedded-auth.js +lib/node_modules/npm/node_modules/hosted-git-info/test/bitbucket.js +lib/node_modules/npm/node_modules/hosted-git-info/test/gist.js +lib/node_modules/npm/node_modules/hosted-git-info/test/github.js +lib/node_modules/npm/node_modules/hosted-git-info/test/gitlab.js +lib/node_modules/npm/node_modules/hosted-git-info/test/https-with-inline-auth.js +lib/node_modules/npm/node_modules/hosted-git-info/test/lib/standard-tests.js +lib/node_modules/npm/node_modules/inflight/LICENSE +lib/node_modules/npm/node_modules/inflight/README.md +lib/node_modules/npm/node_modules/inflight/inflight.js +lib/node_modules/npm/node_modules/inflight/package.json +lib/node_modules/npm/node_modules/inflight/test.js +lib/node_modules/npm/node_modules/inherits/LICENSE +lib/node_modules/npm/node_modules/inherits/README.md +lib/node_modules/npm/node_modules/inherits/inherits.js +lib/node_modules/npm/node_modules/inherits/inherits_browser.js +lib/node_modules/npm/node_modules/inherits/package.json +lib/node_modules/npm/node_modules/inherits/test.js +lib/node_modules/npm/node_modules/ini/LICENSE +lib/node_modules/npm/node_modules/ini/README.md +lib/node_modules/npm/node_modules/ini/ini.js +lib/node_modules/npm/node_modules/ini/package.json +lib/node_modules/npm/node_modules/init-package-json/.npmignore +lib/node_modules/npm/node_modules/init-package-json/.travis.yml +lib/node_modules/npm/node_modules/init-package-json/LICENSE +lib/node_modules/npm/node_modules/init-package-json/README.md +lib/node_modules/npm/node_modules/init-package-json/default-input.js +lib/node_modules/npm/node_modules/init-package-json/example/example-basic.js +lib/node_modules/npm/node_modules/init-package-json/example/example-default.js +lib/node_modules/npm/node_modules/init-package-json/example/example-npm.js +lib/node_modules/npm/node_modules/init-package-json/example/init/basic-init.js +lib/node_modules/npm/node_modules/init-package-json/init-package-json.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/.npmignore +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/LICENSE +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/README.md +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/buffer.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/index.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/README.md +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init-input.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/package.json +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/substack-input.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/package.json +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/promzard.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/basic.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/buffer.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/exports.input +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/exports.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/fn.input +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/fn.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/simple.input +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/simple.js +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/validate.input +lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/validate.js +lib/node_modules/npm/node_modules/init-package-json/package.json +lib/node_modules/npm/node_modules/init-package-json/test/basic.input +lib/node_modules/npm/node_modules/init-package-json/test/basic.js +lib/node_modules/npm/node_modules/init-package-json/test/lib/common.js +lib/node_modules/npm/node_modules/init-package-json/test/license.js +lib/node_modules/npm/node_modules/init-package-json/test/name-spaces.js +lib/node_modules/npm/node_modules/init-package-json/test/name-uppercase.js +lib/node_modules/npm/node_modules/init-package-json/test/npm-defaults.js +lib/node_modules/npm/node_modules/init-package-json/test/scope-in-config-existing-name.js +lib/node_modules/npm/node_modules/init-package-json/test/scope-in-config.js +lib/node_modules/npm/node_modules/init-package-json/test/scope.js +lib/node_modules/npm/node_modules/init-package-json/test/silent.js +lib/node_modules/npm/node_modules/init-package-json/test/yes-defaults.js +lib/node_modules/npm/node_modules/lockfile/LICENSE +lib/node_modules/npm/node_modules/lockfile/README.md +lib/node_modules/npm/node_modules/lockfile/lockfile.js +lib/node_modules/npm/node_modules/lockfile/package.json +lib/node_modules/npm/node_modules/lockfile/test/basic.js +lib/node_modules/npm/node_modules/lockfile/test/fixtures/bad-child.js +lib/node_modules/npm/node_modules/lockfile/test/fixtures/child.js +lib/node_modules/npm/node_modules/lockfile/test/retry-time.js +lib/node_modules/npm/node_modules/lockfile/test/stale-contention.js +lib/node_modules/npm/node_modules/lru-cache/.npmignore +lib/node_modules/npm/node_modules/lru-cache/.travis.yml +lib/node_modules/npm/node_modules/lru-cache/CONTRIBUTORS +lib/node_modules/npm/node_modules/lru-cache/LICENSE +lib/node_modules/npm/node_modules/lru-cache/README.md +lib/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js +lib/node_modules/npm/node_modules/lru-cache/package.json +lib/node_modules/npm/node_modules/lru-cache/test/basic.js +lib/node_modules/npm/node_modules/lru-cache/test/foreach.js +lib/node_modules/npm/node_modules/lru-cache/test/memory-leak.js +lib/node_modules/npm/node_modules/lru-cache/test/serialize.js +lib/node_modules/npm/node_modules/minimatch/LICENSE +lib/node_modules/npm/node_modules/minimatch/README.md +lib/node_modules/npm/node_modules/minimatch/browser.js +lib/node_modules/npm/node_modules/minimatch/minimatch.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/.npmignore +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/README.md +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/example.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/index.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +lib/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sat Oct 10 14:48:23 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 5AE329D2083; Sat, 10 Oct 2015 14:48:23 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23BA1978; Sat, 10 Oct 2015 14:48:23 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AEmMPv025992; Sat, 10 Oct 2015 14:48:22 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AEmMpa025990; Sat, 10 Oct 2015 14:48:22 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510101448.t9AEmMpa025990@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 10 Oct 2015 14:48:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399000 - head/graphics/ImageMagick 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: Sat, 10 Oct 2015 14:48:23 -0000 Author: kwm Date: Sat Oct 10 14:48:21 2015 New Revision: 399000 URL: https://svnweb.freebsd.org/changeset/ports/399000 Log: Update ImageMagick to 6.9.2-4. Modified: head/graphics/ImageMagick/Makefile head/graphics/ImageMagick/distinfo Modified: head/graphics/ImageMagick/Makefile ============================================================================== --- head/graphics/ImageMagick/Makefile Sat Oct 10 14:45:28 2015 (r398999) +++ head/graphics/ImageMagick/Makefile Sat Oct 10 14:48:21 2015 (r399000) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ImageMagick -DISTVERSION= 6.9.2-3 +DISTVERSION= 6.9.2-4 PORTEPOCH= 1 CATEGORIES= graphics perl5 MASTER_SITES= http://www.imagemagick.org/download/ \ Modified: head/graphics/ImageMagick/distinfo ============================================================================== --- head/graphics/ImageMagick/distinfo Sat Oct 10 14:45:28 2015 (r398999) +++ head/graphics/ImageMagick/distinfo Sat Oct 10 14:48:21 2015 (r399000) @@ -1,2 +1,2 @@ -SHA256 (ImageMagick-6.9.2-3.tar.xz) = e251574136e4a82128b3860b97c72b289df0a2030ce72900c91b67685a3298e4 -SIZE (ImageMagick-6.9.2-3.tar.xz) = 8484052 +SHA256 (ImageMagick-6.9.2-4.tar.xz) = 05b1c499415048099a1464ebd03f0cfaae8d0994c681bcf7e0319b26e5e8d848 +SIZE (ImageMagick-6.9.2-4.tar.xz) = 8482116 From owner-svn-ports-head@freebsd.org Sat Oct 10 14:49:31 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 4D0C89D213A; Sat, 10 Oct 2015 14:49:31 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15535A68; Sat, 10 Oct 2015 14:49:31 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AEnUBO026446; Sat, 10 Oct 2015 14:49:30 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AEnSwG026427; Sat, 10 Oct 2015 14:49:28 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101449.t9AEnSwG026427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 14:49:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399001 - in head/graphics/ayam: . 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: Sat, 10 Oct 2015 14:49:31 -0000 Author: marino Date: Sat Oct 10 14:49:28 2015 New Revision: 399001 URL: https://svnweb.freebsd.org/changeset/ports/399001 Log: graphics/ayam: upgrade version 1.20 => 1.22 I reverted most of the changes from 1-step to compound installation commands. PR: 199232 Submitted by: ports fury Added: head/graphics/ayam/files/patch-tcl_shader.tcl (contents, props changed) Deleted: head/graphics/ayam/files/patch-ayam.tcl head/graphics/ayam/files/patch-contrib_ai.c head/graphics/ayam/files/patch-contrib_tree.c head/graphics/ayam/files/patch-objects_ncurve.c head/graphics/ayam/files/patch-scn-shaders_Makefile Modified: head/graphics/ayam/Makefile head/graphics/ayam/distinfo head/graphics/ayam/files/patch-MF3D_mffile.c head/graphics/ayam/files/patch-MF3D_mfobject.c head/graphics/ayam/files/patch-MF3D_mfprimtv.c head/graphics/ayam/files/patch-MF3D_mftextrd.c head/graphics/ayam/files/patch-Makefile.shared head/graphics/ayam/files/patch-contrib-meta_metaobj.c head/graphics/ayam/files/patch-contrib_sm.c head/graphics/ayam/files/patch-objects_npatch.c head/graphics/ayam/files/patch-objects_riinc.c head/graphics/ayam/files/patch-objects_riproc.c head/graphics/ayam/files/patch-objects_root.c head/graphics/ayam/files/patch-objects_text.c head/graphics/ayam/files/patch-plugins_ayslx.c head/graphics/ayam/files/patch-togl_togl.c head/graphics/ayam/pkg-plist Modified: head/graphics/ayam/Makefile ============================================================================== --- head/graphics/ayam/Makefile Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/Makefile Sat Oct 10 14:49:28 2015 (r399001) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ayam -PORTVERSION= 1.20 -PORTREVISION= 3 +PORTVERSION= 1.22 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Ayam/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION}.src @@ -18,87 +17,95 @@ LICENSE_PERMS= dist-mirror dist-sell pkg LIB_DEPENDS= libaqsis_util.so:${PORTSDIR}/graphics/aqsis \ libtiff.so:${PORTSDIR}/graphics/tiff -BUILD_DEPENDS= aqsl:${PORTSDIR}/graphics/aqsis +RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -OPTIONS_DEFINE= DOCS - -USE_XORG= xmu xext x11 -USE_GL= yes -USE_LDCONFIG= ${PREFIX}/lib/ayam -USES= gmake tk:84 WRKSRC= ${WRKDIR}/${PORTNAME}/src + +USES= gmake tk +USE_XORG= x11 xext xmu +USE_GL= glu +MAKE_ENV= TCL_INCLUDEDIR="${TCL_INCLUDEDIR}" \ + TCL_SHLIB_VER="${TCL_SHLIB_VER}" \ + TK_INCLUDEDIR="${TK_INCLUDEDIR}" \ + TK_SHLIB_VER="${TK_SHLIB_VER}" MAKEFILE= Makefile.shared +USE_LDCONFIG= ${PREFIX}/lib/ayam MAKE_JOBS_UNSAFE= yes -AYAM_PLUGINS= csphere mfio -PLUGINS_DIR= ${PREFIX}/lib/${PORTNAME} +DESKTOP_ENTRIES="Ayam" "" "" "ayam" "" "" + +OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/tcl/ayam.tcl - @${REINPLACE_CMD} -e 's|^MF3DCFLAGS =|MF3DCFLAGS = -fPIC|g' \ + @${REINPLACE_CMD} -e \ + '/^MF3DCFLAGS/s|=.*|= -fPIC|' \ ${WRKSRC}/MF3D/Makefile.mf3d @${REINPLACE_CMD} -e \ - 's|%%TCL_INCLUDEDIR%%|${TCL_INCLUDEDIR}|g; s|make|$$(MAKE)|g; \ - s|%%TCL_LIBDIR%%|${LOCALBASE}/lib|g; s|%%TCL_SHLIB_VER%%|${TCL_SHLIB_VER}|g; \ - s|%%TK_INCLUDEDIR%%|${TK_INCLUDEDIR}|g; \ - s|%%TK_LIBDIR%%|${LOCALBASE}/lib|g; s|%%TK_SHLIB_VER%%|${TK_SHLIB_VER}|g' \ - ${WRKSRC}/Makefile.shared - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/../scn/shaders/Makefile + 's|interp->errorLine;|Tcl_GetErrorLine(interp);|' \ + ${WRKSRC}/objects/script.c + @${REINPLACE_CMD} -e \ + 's|".*\(ayam-splash.gif\)"|"${DATADIR}/\1"|' \ + ${WRKSRC}/tcl/ayam.tcl + @${REINPLACE_CMD} -e \ + 's| firefox | xdg-open |' \ + ${WRKSRC}/tcl/browser.tcl + @${REINPLACE_CMD} -e \ + '/^AQSL/s|=.*|= ${LOCALBASE}/bin/aqsl|' \ + ${WRKSRC}/../scn/shaders/Makefile post-build: cd ${WRKSRC}/../scn/shaders && ${MAKE_CMD} slx + @${ECHO_CMD} -n > ${WRKSRC}/../bin/ayam + @${ECHO_CMD} "#!${SH}" >> ${WRKSRC}/../bin/ayam + @${ECHO_CMD} "${PREFIX}/bin/ayamsh ${PREFIX}/lib/ayam/tcl/ayam.tcl \$$@" \ + >> ${WRKSRC}/../bin/ayam do-install: # binary and wrapper - ${INSTALL_PROGRAM} ${WRKSRC}/ayamsh ${STAGEDIR}${PREFIX}/bin - @(${ECHO_CMD} "#!${SH}"; \ - ${ECHO_CMD} "${PREFIX}/bin/ayamsh ${PLUGINS_DIR}/tcl/ayam.tcl \$$@" \ - ) > ${STAGEDIR}${PREFIX}/bin/ayam - @${CHMOD} ugo+x ${STAGEDIR}${PREFIX}/bin/ayam - + (cd ${WRKSRC} && ${INSTALL_PROGRAM} ayamsh ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC}/../bin && ${INSTALL_SCRIPT} ayam ${STAGEDIR}${PREFIX}/bin) # shaders @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ayam/shaders - ${INSTALL_DATA} ${WRKSRC}/../scn/shaders/*.slx ${STAGEDIR}${PREFIX}/lib/ayam/shaders - + (cd ${WRKSRC}/../scn/shaders && ${INSTALL_DATA} *.slx \ + ${STAGEDIR}${PREFIX}/lib/ayam/shaders) # plugins - @${MKDIR} ${STAGEDIR}${PLUGINS_DIR} -.for i in ${AYAM_PLUGINS} - ${INSTALL_DATA} ${WRKSRC}/plugins/${i}.tcl ${STAGEDIR}${PLUGINS_DIR} - ${INSTALL_PROGRAM} ${WRKSRC}/plugins/${i}.so ${STAGEDIR}${PLUGINS_DIR} -.endfor - ${INSTALL_PROGRAM} ${WRKSRC}/plugins/ayslx.so ${STAGEDIR}${PLUGINS_DIR} - ${INSTALL_DATA} ${WRKSRC}/plugins/loadayslx.tcl ${STAGEDIR}${PLUGINS_DIR} - - ${INSTALL_DATA} ${WRKSRC}/contrib/meta/*.tcl ${STAGEDIR}${PLUGINS_DIR} - ${INSTALL_PROGRAM} ${WRKSRC}/contrib/meta/metaobj.so ${STAGEDIR}${PLUGINS_DIR} - + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ayam + (cd ${WRKSRC}/plugins && ${INSTALL_LIB} \ + ayslx.so csphere.so mfio.so \ + ${STAGEDIR}${PREFIX}/lib/ayam) + (cd ${WRKSRC}/plugins && ${INSTALL_DATA} \ + csphere.tcl loadayslx.tcl mfio.tcl \ + ${STAGEDIR}${PREFIX}/lib/ayam) + (cd ${WRKSRC}/contrib/meta && ${INSTALL_LIB} *.so \ + ${STAGEDIR}${PREFIX}/lib/ayam) + (cd ${WRKSRC}/contrib/meta && ${INSTALL_DATA} *.tcl \ + ${STAGEDIR}${PREFIX}/lib/ayam) # tcl libs - @${MKDIR} ${STAGEDIR}${PLUGINS_DIR}/tcl - ${INSTALL_DATA} ${WRKSRC}/tcl/*.tcl ${STAGEDIR}${PLUGINS_DIR}/tcl - @${MKDIR} ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1 + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ayam/tcl \ + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1 \ + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1/images \ + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1/lang + ${INSTALL_DATA} ${WRKSRC}/tcl/*.tcl \ + ${STAGEDIR}${PREFIX}/lib/ayam/tcl ${INSTALL_DATA} ${WRKSRC}/tcl/BWidget-1.2.1/*.tcl \ - ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1 - @${MKDIR} ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1/images + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1 ${INSTALL_DATA} ${WRKSRC}/tcl/BWidget-1.2.1/images/* \ - ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1/images - @${MKDIR} ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1/lang + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1/images ${INSTALL_DATA} ${WRKSRC}/tcl/BWidget-1.2.1/lang/* \ - ${STAGEDIR}${PLUGINS_DIR}/tcl/BWidget-1.2.1/lang - + ${STAGEDIR}${PREFIX}/lib/ayam/tcl/BWidget-1.2.1/lang # data @${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/lib/ayam-splash.gif ${STAGEDIR}${DATADIR} - + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/lib/ayam-splash.gif \ + ${STAGEDIR}${DATADIR} # docs -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} \ + ${STAGEDIR}${DOCSDIR}/html \ + ${STAGEDIR}${DOCSDIR}/html/pics ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/Setup.txt ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/ayam.pdf ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/refcard.pdf ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/refcard.tcl ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/html - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/html/*.html ${STAGEDIR}${DOCSDIR}/html - @${MKDIR} ${STAGEDIR}${DOCSDIR}/html/pics + (cd ${WRKDIR}/${PORTNAME}/doc && ${INSTALL_DATA} \ + ayam.pdf refcard.pdf refcard.tcl ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/html/*.html \ + ${STAGEDIR}${DOCSDIR}/html ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}/doc/html/pics/* \ ${STAGEDIR}${DOCSDIR}/html/pics Modified: head/graphics/ayam/distinfo ============================================================================== --- head/graphics/ayam/distinfo Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/distinfo Sat Oct 10 14:49:28 2015 (r399001) @@ -1,2 +1,2 @@ -SHA256 (ayam1.20.src.tar.gz) = 4cf5fc46b0722ee12d5b5d0b2baadbf3c5f2a9cbf38e23fc837d6ce91139dad9 -SIZE (ayam1.20.src.tar.gz) = 4593617 +SHA256 (ayam1.22.src.tar.gz) = b583bfad827d70c31225fcd5158c595727806252eaf4f48bdb95dd453ef2b209 +SIZE (ayam1.22.src.tar.gz) = 5070423 Modified: head/graphics/ayam/files/patch-MF3D_mffile.c ============================================================================== --- head/graphics/ayam/files/patch-MF3D_mffile.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-MF3D_mffile.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- MF3D/mffile.c.orig 2007-12-17 19:24:47.000000000 +0100 -+++ MF3D/mffile.c 2007-12-17 19:25:03.000000000 +0100 -@@ -102,7 +102,7 @@ +--- MF3D/mffile.c.orig 2015-06-23 18:03:50 UTC ++++ MF3D/mffile.c +@@ -102,7 +102,7 @@ MF3D_TypeObjWrite ( /* Add this type to the table */ ++inMetafilePtr->typeTable.nTypes; numTypes = inMetafilePtr->typeTable.nTypes; Modified: head/graphics/ayam/files/patch-MF3D_mfobject.c ============================================================================== --- head/graphics/ayam/files/patch-MF3D_mfobject.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-MF3D_mfobject.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- MF3D/mfobject.c.orig 2007-09-21 13:30:36.000000000 +0200 -+++ MF3D/mfobject.c 2007-12-17 19:48:57.000000000 +0100 -@@ -930,7 +930,7 @@ +--- MF3D/mfobject.c.orig 2015-06-23 18:03:50 UTC ++++ MF3D/mfobject.c +@@ -930,7 +930,7 @@ MF3D_ObjTypeReader ( ++inMetafilePtr->typeTable.nTypes; numTypes = inMetafilePtr->typeTable.nTypes; Modified: head/graphics/ayam/files/patch-MF3D_mfprimtv.c ============================================================================== --- head/graphics/ayam/files/patch-MF3D_mfprimtv.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-MF3D_mfprimtv.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- MF3D/mfprimtv.c.orig 2007-12-17 19:30:09.000000000 +0100 -+++ MF3D/mfprimtv.c 2007-12-17 19:30:24.000000000 +0100 -@@ -1000,7 +1000,7 @@ +--- MF3D/mfprimtv.c.orig 2015-06-23 18:03:50 UTC ++++ MF3D/mfprimtv.c +@@ -1000,7 +1000,7 @@ MF3D_LabelWrite ( if (result == kMF3DNoErr) { ++metafile->tocStuff.numReferences; Modified: head/graphics/ayam/files/patch-MF3D_mftextrd.c ============================================================================== --- head/graphics/ayam/files/patch-MF3D_mftextrd.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-MF3D_mftextrd.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- MF3D/mftextrd.c.orig 2007-12-17 19:30:49.000000000 +0100 -+++ MF3D/mftextrd.c 2007-12-17 19:32:02.000000000 +0100 -@@ -178,7 +178,7 @@ +--- MF3D/mftextrd.c.orig 2015-06-23 18:03:50 UTC ++++ MF3D/mftextrd.c +@@ -178,7 +178,7 @@ MF3D_GetTOCLabels( MFASSERT(numNewLabels >= 0); if (numNewLabels > 0) @@ -9,7 +9,7 @@ (numLabels + numNewLabels) * sizeof(*tocLabelNames)); } -@@ -250,7 +250,7 @@ +@@ -250,7 +250,7 @@ MF3D_ConvertTableLabels( if (result != kMF3DNoErr) break; @@ -18,7 +18,7 @@ if (result != kMF3DNoErr) break; -@@ -381,7 +381,7 @@ +@@ -381,7 +381,7 @@ MF3D_PreprocessTextFile( char objName[kMF3D_MaxObjNameLength + 1]; if (numObjects % kMF3D_ObjTableChunk == 0) @@ -27,7 +27,7 @@ (numObjects + kMF3D_ObjTableChunk) * sizeof(*objTable)); if (result != kMF3DNoErr) goto PreprocessTextFileAbort; -@@ -419,7 +419,7 @@ +@@ -419,7 +419,7 @@ MF3D_PreprocessTextFile( { /* We found a TOC object. We will want to find * this later; so save the index. */ @@ -36,7 +36,7 @@ (numTocs + 1) * sizeof(*tocLocations)); if (result != kMF3DNoErr) goto PreprocessTextFileAbort; -@@ -499,7 +499,7 @@ +@@ -499,7 +499,7 @@ MF3D_PreprocessTextFile( /* Readjust the object table from its chunky size */ if (result == kMF3DNoErr) @@ -45,7 +45,7 @@ if (result == kMF3DNoErr) { /* Store the file length here */ AssignInt64(objTable[numObjects].objLocation, location); -@@ -1027,7 +1027,7 @@ +@@ -1027,7 +1027,7 @@ MF3D_BuildString_AddChar( result = kMF3DNoErr; if ((ioStringPtr->pos % kMF3D_StringBufferChunk) == 0) Modified: head/graphics/ayam/files/patch-Makefile.shared ============================================================================== --- head/graphics/ayam/files/patch-Makefile.shared Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-Makefile.shared Sat Oct 10 14:49:28 2015 (r399001) @@ -1,15 +1,15 @@ ---- Makefile.shared.orig 2010-12-23 21:04:42.000000000 +0100 -+++ Makefile.shared 2011-01-05 10:49:15.000000000 +0100 -@@ -4,7 +4,7 @@ - # Makefile for Ayam (shared version) +--- Makefile.shared.orig 2015-06-23 18:03:50 UTC ++++ Makefile.shared +@@ -7,7 +7,7 @@ + # You can also use "wish ayamConf.tcl" to create a Makefile. # Choose an installation prefix. -PREFIX = /usr/local/ayam +#PREFIX = /usr/local/ayam #PREFIX = /opt/ayam - # if you use one of the following, be sure to change LIBDIR - # and DOCDIR to a more suitable (Ayam specific) path -@@ -31,14 +31,14 @@ + #PREFIX = /home/user/ayam + +@@ -25,14 +25,14 @@ SCNDIR = $(PREFIX)/scn INSTALL = ./ninstall #INSTALL = install @@ -23,11 +23,11 @@ # the C++ compiler (just in use for the AyCSG and onio plugin) -#CXX = CC -+CXX = ${CC} ++CXX ?= c++ #CXX = g++ # the linker -@@ -82,7 +82,10 @@ +@@ -77,7 +77,10 @@ LD = $(CXX) # the default configuration is to build with Affine as RIB writer without # any shader parsing library (i.e. you will have to build and load a # plugin for shader parsing) @@ -35,20 +35,11 @@ +#CFLAGS = -O -DAYUSEAFFINE + +# make amd64 happy with fPIC -+CFLAGS += -O -fPIC -DAYUSESLXARGS -DAYUSEAQSISRIB -DAYENABLEWAIT ++CFLAGS += -fPIC -DAYUSESLXARGS -DAYUSEAQSISRIB -DAYENABLEWAIT # simple configuration using BMRT #CFLAGS = -O -DAYUSESLCARGS -DAYUSEBMRTRIBOUT -@@ -96,7 +99,7 @@ - # MacOSX with Aqua: - #CFLAGS = -O -DAYWITHAQUA -DAYUSEAFFINE -DAYENABLEFEXIT -DUSE_NON_CONST - # MacOSX with Aqua (universal binary, support for older MacOSX): --CFLAGS = -O -DAYWITHAQUA -DAYUSEAFFINE -DAYENABLEFEXIT -DUSE_NON_CONST -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.2 -+#CFLAGS = -O -DAYWITHAQUA -DAYUSEAFFINE -DAYENABLEFEXIT -DUSE_NON_CONST -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.2 - # MacOSX with X11: - #CFLAGS = -O -DAYUSEAFFINE -DAYENABLEFEXIT - -@@ -121,9 +124,9 @@ +@@ -114,9 +117,9 @@ LDSWDYNAMIC = -dynamic # extra ld flags needed to compile Ayam # (gcc needs -rdynamic to allow shared objects access to global symbols) # IRIX: @@ -56,11 +47,11 @@ +#EXLDFLAGS = # Linux: -#EXLDFLAGS = -rdynamic -+EXLDFLAGS = -rdynamic ++EXLDFLAGS = -Wl,-export-dynamic # MacOSX (X11): #EXLDFLAGS = -flat_namespace -undefined suppress # MacOSX (Aqua): -@@ -140,7 +143,7 @@ +@@ -133,7 +136,7 @@ TOGLOBJECT = togl/togl.o # OpenGL # OpenGL includes @@ -69,7 +60,7 @@ # MacOSX (Aqua): #GLINC = # link options for linking with OpenGL libraries -@@ -150,24 +153,26 @@ +@@ -143,24 +146,26 @@ GLLIBS = -lGLU -lGL # TIFF # TIFF includes @@ -80,47 +71,51 @@ # Tcl/Tk # Tcl directory --TCLDIR = ../../tcl8.2.2 -+#TCLDIR = ../../tcl9.2.2 +-TCLDIR = ../../tcl8.4.19 ++#TCLDIR = ../../tcl8.4.19 #TCLDIR = ../../tcl8.0 # Tcl includes -TCLINC = -I$(TCLDIR)/generic +#TCLINC = -I$(TCLDIR)/generic -+TCLINC = -I%%TCL_INCLUDEDIR%% ++TCLINC = -I${TCL_INCLUDEDIR}/generic -I${TCL_INCLUDEDIR} # MacOSX (Aqua): #TCLINC = # Tcl library # link options for linking with Tcl library --TCLLIB = -L$(TCLDIR)/unix -ltcl8.2 -+#TCLLIB = -L$(TCLDIR)/unix -ltcl9.2 +-TCLLIB = -L$(TCLDIR)/unix -ltcl8.4 ++#TCLLIB = -L$(TCLDIR)/unix -ltcl8.4 #TCLLIB = -L$(TCLDIR)/unix -ltcl8.0 -+TCLLIB = -L%%TCL_LIBDIR%% -ltcl%%TCL_SHLIB_VER%% ++TCLLIB = -L${LOCALBASE}/lib -ltcl${TCL_SHLIB_VER} # if you have an installed Tcl/Tk, you probably just want: #TCLLIB = -ltcl # MacOSX (Aqua): -@@ -175,7 +180,7 @@ +@@ -168,18 +173,20 @@ TCLLIB = -L$(TCLDIR)/unix -ltcl8.4 # Tk sources directory # Note: You really need the Tk _sources_ in order to compile Ayam! --TKDIR = ../../tk8.2.2 -+TKDIR = %%TK_INCLUDEDIR%% +-TKDIR = ../../tk8.4.19 ++#TKDIR = ../../tk8.4.19 #TKDIR = ../../tk8.0 # Tk includes -@@ -185,8 +190,9 @@ +-TKINC = -I$(TKDIR)/generic -I$(TKDIR)/unix ++#TKINC = -I$(TKDIR)/generic -I$(TKDIR)/unix ++TKINC = -I${TK_INCLUDEDIR}/generic -I${TK_INCLUDEDIR} + # MacOSX (Aqua): + #TKINC = -I$(TKDIR)/generic -I$(TKDIR)/macosx -I$(TKDIR)/xlib # Tk library # link options for linking with Tk library --TKLIB = -L$(TKDIR)/unix -ltk8.2 -+#TKLIB = -L$(TKDIR)/unix -ltk8.2 +-TKLIB = -L$(TKDIR)/unix -ltk8.4 ++#TKLIB = -L$(TKDIR)/unix -ltk8.4 #TKLIB = -L$(TKDIR)/unix -ltk8.0 -+TKLIB = -L%%TK_LIBDIR%% -ltk%%TK_SHLIB_VER%% ++TKLIB = -L${LOCALBASE}/lib -ltk${TK_SHLIB_VER} # if you have an installed Tcl/Tk, you probably just want: #TKLIB = -ltk # MacOSX (Aqua): -@@ -194,11 +200,11 @@ +@@ -187,11 +194,11 @@ TKLIB = -L$(TKDIR)/unix -ltk8.4 # X11 # X11 includes @@ -134,7 +129,7 @@ #X11LIBS = -L/usr/X11R6/lib -lXmu -lXext -lX11 # MacOSX (Aqua): #X11LIBS = -@@ -209,23 +215,25 @@ +@@ -202,23 +209,25 @@ X11LIBS = -L/usr/X11R6/lib -lXmu -lXext AFFINEINC = -Iaffine/include # if you use Affine as BMRT libribout replacement # (also add -DAYUSEAFFINE to CFLAGS!): @@ -155,7 +150,7 @@ +#AQSISOBJS = # if you use Aqsis libslxargs (add -DAYUSESLXARGS to CFLAGS!): #AQSISOBJS = $(AQSISLIBDIR)/rcdummy.o $(AQSISLIBDIR)/libshadervm.so $(AQSISLIBDIR)/libshaderexecenv.so $(AQSISLIBDIR)/libslxargs.so $(AQSISLIBDIR)/libaqsistypes.so -L /usr/local/lib -llog4cpp -+AQSISOBJS = $(AQSISDIR)/lib/libaqsis_core.so $(AQSISLIBDIR)/libaqsis_shadervm.so $(AQSISLIBDIR)/libaqsis_slxargs.so -L${AQSISLIBDIR} -lstdc++ ++AQSISOBJS = $(AQSISDIR)/lib/libaqsis_core.so $(AQSISLIBDIR)/libaqsis_shadervm.so $(AQSISLIBDIR)/libaqsis_slxargs.so -L${AQSISLIBDIR} + # if you do not use Aqsis libri2rib as BMRT libribout replacement: @@ -163,11 +158,11 @@ +#AQSISRI2RIB = # if you use Aqsis libri2rib (add -DAYUSEAQSISRIB to CFLAGS above!): -#AQSISRI2RIB = $(AQSISLIBDIR)/libri2rib.so -L /usr/local/lib -llog4cpp -+AQSISRI2RIB = $(AQSISLIBDIR)/libaqsis_ri2rib.so -L${AQSISLIBDIR} -lstdc++ -lpthread ++AQSISRI2RIB = $(AQSISLIBDIR)/libaqsis_ri2rib.so -L${AQSISLIBDIR} -pthread # BMRT -@@ -253,9 +261,9 @@ +@@ -246,9 +255,9 @@ SLCARGSLIB = # IRIX, Solaris, (MacOSX<10.4: get libdl from Fink!): #DL = -ldl # Linux: @@ -179,7 +174,7 @@ # linker flags to produce shared modules: -@@ -274,8 +282,9 @@ +@@ -267,8 +276,9 @@ AFFINEDIR = ../../affine0008 RRIBLIBS = -L$(AFFINEDIR)/lib -lribrdr -lribhash -lribnop -lm # Ayslx Plugin (Aqsis) @@ -191,15 +186,42 @@ # Ayslc Plugin (BMRT) AYSLCINCDIR = $(BMRTDIR)/include -@@ -520,9 +529,9 @@ +@@ -536,9 +546,9 @@ RRIBOBJS = plugins/rrib.o .cpp.o: - $(CXX) -c $(CFLAGS) $*.cpp -o $@ $(AYINC) $(OPENCSGINC) -Iplugins + $(CXX) -c $(CFLAGS) $*.cpp -o $@ $(OPENCSGINC) $(AYINC) -Iplugins -all: ayamsh +all: ayamsh plugins --plugins: csphere.so mfio.so metaobj.so mopsi.so -+plugins: csphere.so mfio.so metaobj.so mopsi.so ayslx.so +-plugins: csphere.so sfcurve.so mfio.so metaobj.so mopsi.so ++plugins: ayslx.so csphere.so sfcurve.so mfio.so metaobj.so mopsi.so ayamsh: $(AYAMOBJS) $(TOGLOBJECT) $(AFFINEOBJS) $(LD) $(AYAMOBJS) $(TOGLOBJECT) $(EXLDFLAGS) -o ayamsh $(TKLIB) $(TCLLIB) $(GLLIBS) $(X11LIBS) $(RIBOUTLIB) $(AQSISRI2RIB) $(SLCARGSLIB) $(AFFINEOBJS) $(AQSISOBJS) $(TIFFLIB) -lm $(DL) +@@ -591,7 +601,7 @@ idr.so: $(IDROBJS) + $(CC) $(SHLFLAGS) $(IDROBJS) -o plugins/idr.so $(TIFFLIB) + + mf3d: +- cd MF3D; make -f Makefile.mf3d ++ cd MF3D; $(MAKE) -f Makefile.mf3d + + mfio.so: plugins/mfio.o mf3d + $(CC) $(SHLFLAGS) $(MF3DOBJS) plugins/mfio.o -o plugins/mfio.so +@@ -657,7 +667,7 @@ sdnpatch.so: + $(CXX) $(SHLFLAGS) plugins/sdnpatch.o -o plugins/sdnpatch.so $(SDNPATCHLIB) + + libsub: +- cd plugins/subdivide/src;make -f $(SUBDIVMK) ++ cd plugins/subdivide/src;$(MAKE) -f $(SUBDIVMK) + + subdiv.so: libsub + $(CXX) -c $(CFLAGS) plugins/subdiv.cpp -o plugins/subdiv.o $(AYINC) $(SUBDIVINC) +@@ -695,7 +705,7 @@ mostlyclean: + + clean: mostlyclean + -rm -f $(AFFINEOBJS) +- -cd MF3D; make -f Makefile.mf3d clean ++ -cd MF3D; $(MAKE) -f Makefile.mf3d clean + + DOCFILES = ../Setup.txt ../Changes.txt ../License.txt ../doc/refcard.tcl\ + ../doc/refcard.pdf ../doc/ayam.pdf Modified: head/graphics/ayam/files/patch-contrib-meta_metaobj.c ============================================================================== --- head/graphics/ayam/files/patch-contrib-meta_metaobj.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-contrib-meta_metaobj.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- contrib/meta/metaobj.c.orig 2007-12-17 19:32:36.000000000 +0100 -+++ contrib/meta/metaobj.c 2007-12-17 19:33:01.000000000 +0100 -@@ -851,7 +851,7 @@ +--- contrib/meta/metaobj.c.orig 2015-06-23 18:03:50 UTC ++++ contrib/meta/metaobj.c +@@ -859,7 +859,7 @@ metaobj_notifycb (ay_object *o) meta_world *w; meta_blob *b; ay_object *down; Modified: head/graphics/ayam/files/patch-contrib_sm.c ============================================================================== --- head/graphics/ayam/files/patch-contrib_sm.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-contrib_sm.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- contrib/sm.c.orig 2007-09-21 13:30:37.000000000 +0200 -+++ contrib/sm.c 2007-12-17 19:01:46.000000000 +0100 -@@ -473,7 +473,7 @@ +--- contrib/sm.c.orig 2015-06-23 18:03:50 UTC ++++ contrib/sm.c +@@ -474,7 +474,7 @@ ay_sm_wriballsm(char *file, char *objfil static int countsm = 0; char arrname[] = "ayprefs"; char ffvarname[] = "SMFileFormat", ftvarname[] = "SMFileType"; @@ -9,7 +9,7 @@ if(!o) return; -@@ -498,10 +498,10 @@ +@@ -499,10 +499,10 @@ ay_sm_wriballsm(char *file, char *objfil return; } Modified: head/graphics/ayam/files/patch-objects_npatch.c ============================================================================== --- head/graphics/ayam/files/patch-objects_npatch.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-objects_npatch.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,20 +1,20 @@ ---- objects/npatch.c.orig 2007-12-17 18:39:37.000000000 +0100 -+++ objects/npatch.c 2007-12-17 18:40:02.000000000 +0100 -@@ -1260,7 +1260,7 @@ - ay_error(AY_EOUTPUT, fname, "Checking new knots for U..."); +--- objects/npatch.c.orig 2015-06-23 18:03:50 UTC ++++ objects/npatch.c +@@ -1934,7 +1934,7 @@ ay_npatch_setpropcb(Tcl_Interp *interp, + { Tcl_SplitList(interp, Tcl_GetVar2(interp, n1, "Knots_U", TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY), - &knotc, &knotv); + &knotc, (const char ***)&knotv); - if(!(nknotv = calloc(knotc, sizeof(double)))) + if(!(nknotv = malloc(knotc * sizeof(double)))) { -@@ -1324,7 +1324,7 @@ - ay_error(AY_EOUTPUT, fname, "Checking new knots for V..."); - Tcl_SplitList(interp,Tcl_GetVar2(interp, n1, "Knots_V", +@@ -1988,7 +1988,7 @@ ay_npatch_setpropcb(Tcl_Interp *interp, + { + Tcl_SplitList(interp, Tcl_GetVar2(interp, n1, "Knots_V", TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY), - &knotc, &knotv); + &knotc, (const char ***)&knotv); - if(!(nknotv = calloc(knotc, sizeof(double)))) + if(!(nknotv = malloc(knotc * sizeof(double)))) { Modified: head/graphics/ayam/files/patch-objects_riinc.c ============================================================================== --- head/graphics/ayam/files/patch-objects_riinc.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-objects_riinc.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,11 +1,11 @@ ---- objects/riinc.c.orig 2007-12-17 18:40:30.000000000 +0100 -+++ objects/riinc.c 2007-12-17 18:40:55.000000000 +0100 -@@ -165,7 +165,7 @@ +--- objects/riinc.c.orig 2015-06-23 18:03:50 UTC ++++ objects/riinc.c +@@ -184,7 +184,7 @@ ay_riinc_setpropcb(Tcl_Interp *interp, i char *n1 = "RiIncAttrData"; Tcl_Obj *to = NULL, *toa = NULL, *ton = NULL; ay_riinc_object *riinc = NULL; - char *result = NULL; + const char *result; - if(!o) + if(!interp || !o) return AY_ENULL; Modified: head/graphics/ayam/files/patch-objects_riproc.c ============================================================================== --- head/graphics/ayam/files/patch-objects_riproc.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-objects_riproc.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,11 +1,11 @@ ---- objects/riproc.c.orig 2007-12-17 18:41:21.000000000 +0100 -+++ objects/riproc.c 2007-12-17 18:41:58.000000000 +0100 -@@ -197,7 +197,7 @@ +--- objects/riproc.c.orig 2015-06-23 18:03:50 UTC ++++ objects/riproc.c +@@ -197,7 +197,7 @@ ay_riproc_setpropcb(Tcl_Interp *interp, char *n1 = "RiProcAttrData"; Tcl_Obj *to = NULL, *toa = NULL, *ton = NULL; ay_riproc_object *riproc = NULL; - char *result = NULL; + const char *result; - if(!o) + if(!interp || !o) return AY_ENULL; Modified: head/graphics/ayam/files/patch-objects_root.c ============================================================================== --- head/graphics/ayam/files/patch-objects_root.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-objects_root.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,11 +1,11 @@ ---- objects/root.c.orig 2007-12-17 18:43:32.000000000 +0100 -+++ objects/root.c 2007-12-17 18:44:08.000000000 +0100 -@@ -186,7 +186,7 @@ +--- objects/root.c.orig 2015-06-23 18:03:50 UTC ++++ objects/root.c +@@ -215,7 +215,7 @@ ay_root_setpropcb(Tcl_Interp *interp, in ay_riopt *riopt = NULL; double dtemp = 0.0; int itemp = 0; - char *result; + const char *result; - if(!o) + if(!interp || !o) return AY_ENULL; Modified: head/graphics/ayam/files/patch-objects_text.c ============================================================================== --- head/graphics/ayam/files/patch-objects_text.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-objects_text.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,7 +1,7 @@ ---- objects/text.c.orig 2007-12-17 18:46:17.000000000 +0100 -+++ objects/text.c 2007-12-17 18:46:39.000000000 +0100 -@@ -164,7 +164,7 @@ - int ay_status = AY_OK; +--- objects/text.c.orig 2015-06-23 18:03:50 UTC ++++ objects/text.c +@@ -274,7 +274,7 @@ ay_text_setpropcb(Tcl_Interp *interp, in + /*int ay_status = AY_OK;*/ char fname[] = "setProp"; char *n1 = "TextAttrData"; - char *result; Modified: head/graphics/ayam/files/patch-plugins_ayslx.c ============================================================================== --- head/graphics/ayam/files/patch-plugins_ayslx.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-plugins_ayslx.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,5 +1,5 @@ ---- plugins/ayslx.c.orig 2007-09-21 13:30:37.000000000 +0200 -+++ plugins/ayslx.c 2007-12-17 19:50:54.000000000 +0100 +--- plugins/ayslx.c.orig 2015-06-23 18:03:50 UTC ++++ plugins/ayslx.c @@ -17,7 +17,7 @@ #include #include "tcl.h" @@ -9,7 +9,7 @@ /* prototypes: */ -@@ -311,8 +311,8 @@ +@@ -319,8 +319,8 @@ Ayslx_Init(Tcl_Interp *interp) Tcl_SetVar(interp, vname, vval, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY); @@ -19,4 +19,4 @@ + NULL, NULL); ay_error(AY_EOUTPUT, fname, - "Plug-In 'ayslx' loaded."); + "Plugin 'ayslx' successfully loaded."); Added: head/graphics/ayam/files/patch-tcl_shader.tcl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ayam/files/patch-tcl_shader.tcl Sat Oct 10 14:49:28 2015 (r399001) @@ -0,0 +1,21 @@ +--- tcl/shader.tcl.orig 2015-06-23 18:03:50 UTC ++++ tcl/shader.tcl +@@ -76,14 +76,14 @@ + + foreach p $spathstr { + set files [glob -nocomplain "${p}/*${sext}"] +- append allfiles "$files " ++ append temp "$files " + } + + set allshaders "" +- foreach f $allfiles { ++ foreach s $temp { + # silently omit unreadable shader files +- if {[file readable $f]} { +- lappend allshaders $f ++ if {[file readable $s]} { ++ lappend allshaders $s + } + } + # foreach Modified: head/graphics/ayam/files/patch-togl_togl.c ============================================================================== --- head/graphics/ayam/files/patch-togl_togl.c Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/files/patch-togl_togl.c Sat Oct 10 14:49:28 2015 (r399001) @@ -1,6 +1,6 @@ ---- togl/togl.c.orig 2007-12-17 19:12:44.000000000 +0100 -+++ togl/togl.c 2007-12-17 19:14:18.000000000 +0100 -@@ -709,7 +709,7 @@ +--- togl/togl.c.orig 2015-06-23 18:03:50 UTC ++++ togl/togl.c +@@ -709,7 +709,7 @@ int Togl_Init(Tcl_Interp *interp) } #endif @@ -9,7 +9,7 @@ (ClientData) Tk_MainWindow(interp), NULL); Tcl_InitHashTable(&CommandTable, TCL_STRING_KEYS); -@@ -941,7 +941,7 @@ +@@ -941,7 +941,7 @@ int Togl_Configure(Tcl_Interp *interp, s int oldAuxNumber = togl->AuxNumber; if (Tk_ConfigureWidget(interp, togl->TkWin, configSpecs, @@ -18,7 +18,7 @@ return(TCL_ERROR); } /*fprintf(stderr,"hier %d %d %d\n", togl->TkWin, togl->Width, togl->Height);*/ -@@ -1154,7 +1154,7 @@ +@@ -1154,7 +1154,7 @@ static int Togl_Cmd(ClientData clientDat /* Create command event handler */ togl->widgetCmd = Tcl_CreateCommand(interp, Tk_PathName(tkwin), Modified: head/graphics/ayam/pkg-plist ============================================================================== --- head/graphics/ayam/pkg-plist Sat Oct 10 14:48:21 2015 (r399000) +++ head/graphics/ayam/pkg-plist Sat Oct 10 14:49:28 2015 (r399001) @@ -1,19 +1,88 @@ bin/ayam bin/ayamsh lib/ayam/ayslx.so -lib/ayam/loadayslx.tcl -lib/ayam/csphere.tcl lib/ayam/csphere.so -lib/ayam/metaobj.so +lib/ayam/csphere.tcl +lib/ayam/loadayslx.tcl lib/ayam/metacomp.tcl +lib/ayam/metaobj.so lib/ayam/metaobj.tcl -lib/ayam/mfio.tcl lib/ayam/mfio.so +lib/ayam/mfio.tcl lib/ayam/shaders/DSnoisedsp.slx lib/ayam/shaders/MFicydsp.slx lib/ayam/shaders/MFicysrf.slx lib/ayam/shaders/RCClouds.slx lib/ayam/shaders/RSstripessrf.slx +lib/ayam/tcl/BWidget-1.2.1/arrow.tcl +lib/ayam/tcl/BWidget-1.2.1/bitmap.tcl +lib/ayam/tcl/BWidget-1.2.1/button.tcl +lib/ayam/tcl/BWidget-1.2.1/buttonbox.tcl +lib/ayam/tcl/BWidget-1.2.1/color.tcl +lib/ayam/tcl/BWidget-1.2.1/combobox.tcl +lib/ayam/tcl/BWidget-1.2.1/dialog.tcl +lib/ayam/tcl/BWidget-1.2.1/dragsite.tcl +lib/ayam/tcl/BWidget-1.2.1/dropsite.tcl +lib/ayam/tcl/BWidget-1.2.1/dynhelp.tcl +lib/ayam/tcl/BWidget-1.2.1/entry.tcl +lib/ayam/tcl/BWidget-1.2.1/font.tcl +lib/ayam/tcl/BWidget-1.2.1/images/bold.gif +lib/ayam/tcl/BWidget-1.2.1/images/copy.gif +lib/ayam/tcl/BWidget-1.2.1/images/cut.gif +lib/ayam/tcl/BWidget-1.2.1/images/dragfile.gif +lib/ayam/tcl/BWidget-1.2.1/images/dragicon.gif +lib/ayam/tcl/BWidget-1.2.1/images/error.gif +lib/ayam/tcl/BWidget-1.2.1/images/file.gif +lib/ayam/tcl/BWidget-1.2.1/images/folder.gif +lib/ayam/tcl/BWidget-1.2.1/images/hourglass.gif +lib/ayam/tcl/BWidget-1.2.1/images/info.gif +lib/ayam/tcl/BWidget-1.2.1/images/italic.gif +lib/ayam/tcl/BWidget-1.2.1/images/minus.xbm +lib/ayam/tcl/BWidget-1.2.1/images/new.gif +lib/ayam/tcl/BWidget-1.2.1/images/opcopy.xbm +lib/ayam/tcl/BWidget-1.2.1/images/open.gif +lib/ayam/tcl/BWidget-1.2.1/images/openfold.gif +lib/ayam/tcl/BWidget-1.2.1/images/oplink.xbm +lib/ayam/tcl/BWidget-1.2.1/images/opmove.xbm +lib/ayam/tcl/BWidget-1.2.1/images/overstrike.gif +lib/ayam/tcl/BWidget-1.2.1/images/palette.gif +lib/ayam/tcl/BWidget-1.2.1/images/passwd.gif +lib/ayam/tcl/BWidget-1.2.1/images/paste.gif +lib/ayam/tcl/BWidget-1.2.1/images/plus.xbm +lib/ayam/tcl/BWidget-1.2.1/images/print.gif +lib/ayam/tcl/BWidget-1.2.1/images/question.gif +lib/ayam/tcl/BWidget-1.2.1/images/save.gif +lib/ayam/tcl/BWidget-1.2.1/images/underline.gif +lib/ayam/tcl/BWidget-1.2.1/images/undo.gif +lib/ayam/tcl/BWidget-1.2.1/images/warning.gif +lib/ayam/tcl/BWidget-1.2.1/init.tcl +lib/ayam/tcl/BWidget-1.2.1/label.tcl +lib/ayam/tcl/BWidget-1.2.1/labelentry.tcl +lib/ayam/tcl/BWidget-1.2.1/labelframe.tcl +lib/ayam/tcl/BWidget-1.2.1/lang/de.rc +lib/ayam/tcl/BWidget-1.2.1/lang/en.rc +lib/ayam/tcl/BWidget-1.2.1/lang/es.rc +lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc +lib/ayam/tcl/BWidget-1.2.1/listbox.tcl +lib/ayam/tcl/BWidget-1.2.1/mainframe.tcl +lib/ayam/tcl/BWidget-1.2.1/messagedlg.tcl +lib/ayam/tcl/BWidget-1.2.1/notebook.tcl +lib/ayam/tcl/BWidget-1.2.1/pagesmgr.tcl +lib/ayam/tcl/BWidget-1.2.1/panedw.tcl +lib/ayam/tcl/BWidget-1.2.1/passwddlg.tcl +lib/ayam/tcl/BWidget-1.2.1/pkgIndex.tcl +lib/ayam/tcl/BWidget-1.2.1/progressbar.tcl +lib/ayam/tcl/BWidget-1.2.1/progressdlg.tcl +lib/ayam/tcl/BWidget-1.2.1/scrollframe.tcl +lib/ayam/tcl/BWidget-1.2.1/scrollview.tcl +lib/ayam/tcl/BWidget-1.2.1/scrollw.tcl +lib/ayam/tcl/BWidget-1.2.1/separator.tcl +lib/ayam/tcl/BWidget-1.2.1/spinbox.tcl +lib/ayam/tcl/BWidget-1.2.1/titleframe.tcl +lib/ayam/tcl/BWidget-1.2.1/tree.tcl +lib/ayam/tcl/BWidget-1.2.1/utils.tcl +lib/ayam/tcl/BWidget-1.2.1/widget.tcl +lib/ayam/tcl/BWidget-1.2.1/xpm2image.tcl lib/ayam/tcl/about.tcl lib/ayam/tcl/action.tcl lib/ayam/tcl/acurve.tcl @@ -103,75 +172,6 @@ lib/ayam/tcl/vmenu.tcl lib/ayam/tcl/widget.tcl lib/ayam/tcl/win.tcl lib/ayam/tcl/zap.tcl -lib/ayam/tcl/BWidget-1.2.1/arrow.tcl -lib/ayam/tcl/BWidget-1.2.1/bitmap.tcl -lib/ayam/tcl/BWidget-1.2.1/button.tcl -lib/ayam/tcl/BWidget-1.2.1/buttonbox.tcl -lib/ayam/tcl/BWidget-1.2.1/color.tcl -lib/ayam/tcl/BWidget-1.2.1/combobox.tcl -lib/ayam/tcl/BWidget-1.2.1/dialog.tcl -lib/ayam/tcl/BWidget-1.2.1/dragsite.tcl -lib/ayam/tcl/BWidget-1.2.1/dropsite.tcl -lib/ayam/tcl/BWidget-1.2.1/dynhelp.tcl -lib/ayam/tcl/BWidget-1.2.1/entry.tcl -lib/ayam/tcl/BWidget-1.2.1/font.tcl -lib/ayam/tcl/BWidget-1.2.1/init.tcl -lib/ayam/tcl/BWidget-1.2.1/label.tcl -lib/ayam/tcl/BWidget-1.2.1/labelentry.tcl -lib/ayam/tcl/BWidget-1.2.1/labelframe.tcl -lib/ayam/tcl/BWidget-1.2.1/listbox.tcl -lib/ayam/tcl/BWidget-1.2.1/mainframe.tcl -lib/ayam/tcl/BWidget-1.2.1/messagedlg.tcl -lib/ayam/tcl/BWidget-1.2.1/notebook.tcl -lib/ayam/tcl/BWidget-1.2.1/pagesmgr.tcl -lib/ayam/tcl/BWidget-1.2.1/panedw.tcl -lib/ayam/tcl/BWidget-1.2.1/passwddlg.tcl -lib/ayam/tcl/BWidget-1.2.1/pkgIndex.tcl -lib/ayam/tcl/BWidget-1.2.1/progressbar.tcl -lib/ayam/tcl/BWidget-1.2.1/progressdlg.tcl -lib/ayam/tcl/BWidget-1.2.1/scrollframe.tcl -lib/ayam/tcl/BWidget-1.2.1/scrollview.tcl -lib/ayam/tcl/BWidget-1.2.1/scrollw.tcl -lib/ayam/tcl/BWidget-1.2.1/separator.tcl -lib/ayam/tcl/BWidget-1.2.1/spinbox.tcl -lib/ayam/tcl/BWidget-1.2.1/titleframe.tcl -lib/ayam/tcl/BWidget-1.2.1/tree.tcl -lib/ayam/tcl/BWidget-1.2.1/utils.tcl -lib/ayam/tcl/BWidget-1.2.1/widget.tcl -lib/ayam/tcl/BWidget-1.2.1/xpm2image.tcl -lib/ayam/tcl/BWidget-1.2.1/images/bold.gif -lib/ayam/tcl/BWidget-1.2.1/images/copy.gif -lib/ayam/tcl/BWidget-1.2.1/images/cut.gif -lib/ayam/tcl/BWidget-1.2.1/images/dragfile.gif -lib/ayam/tcl/BWidget-1.2.1/images/dragicon.gif -lib/ayam/tcl/BWidget-1.2.1/images/error.gif -lib/ayam/tcl/BWidget-1.2.1/images/file.gif -lib/ayam/tcl/BWidget-1.2.1/images/folder.gif -lib/ayam/tcl/BWidget-1.2.1/images/hourglass.gif -lib/ayam/tcl/BWidget-1.2.1/images/info.gif -lib/ayam/tcl/BWidget-1.2.1/images/italic.gif -lib/ayam/tcl/BWidget-1.2.1/images/minus.xbm -lib/ayam/tcl/BWidget-1.2.1/images/new.gif -lib/ayam/tcl/BWidget-1.2.1/images/opcopy.xbm -lib/ayam/tcl/BWidget-1.2.1/images/open.gif -lib/ayam/tcl/BWidget-1.2.1/images/openfold.gif -lib/ayam/tcl/BWidget-1.2.1/images/oplink.xbm -lib/ayam/tcl/BWidget-1.2.1/images/opmove.xbm -lib/ayam/tcl/BWidget-1.2.1/images/overstrike.gif -lib/ayam/tcl/BWidget-1.2.1/images/palette.gif -lib/ayam/tcl/BWidget-1.2.1/images/passwd.gif -lib/ayam/tcl/BWidget-1.2.1/images/paste.gif -lib/ayam/tcl/BWidget-1.2.1/images/plus.xbm -lib/ayam/tcl/BWidget-1.2.1/images/print.gif -lib/ayam/tcl/BWidget-1.2.1/images/question.gif -lib/ayam/tcl/BWidget-1.2.1/images/save.gif -lib/ayam/tcl/BWidget-1.2.1/images/underline.gif -lib/ayam/tcl/BWidget-1.2.1/images/undo.gif -lib/ayam/tcl/BWidget-1.2.1/images/warning.gif -lib/ayam/tcl/BWidget-1.2.1/lang/de.rc -lib/ayam/tcl/BWidget-1.2.1/lang/en.rc -lib/ayam/tcl/BWidget-1.2.1/lang/es.rc -lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%DATADIR%%/ayam-splash.gif %%PORTDOCS%%%%DOCSDIR%%/Setup.txt %%PORTDOCS%%%%DOCSDIR%%/ayam.pdf @@ -187,6 +187,7 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/ayam.html %%PORTDOCS%%%%DOCSDIR%%/html/pics/acurve-sym.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/acurves.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/addmodtag.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/ampick.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/aycsgic.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/bbxvscog.gif @@ -210,12 +211,19 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/pics/console.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/csgex.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/deleteac.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/dmdraw.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/dmdrawshade.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/dmhiddenwire.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/dmhiddenwirenosil.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/dmmenu.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/dmshade.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/editac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/editdac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/editwac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/edmult.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/elevate.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/euchom.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/extendnc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/extrnc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/extrnp.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/extrude.gif @@ -253,6 +261,7 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/pics/ncurve.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/npatch.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/numpnted.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/objsearch.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/offnc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/offnp.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/pamesh.gif @@ -261,12 +270,15 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/pics/prefs.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/primitives.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/propgui.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/rect.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/refine.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/refinecv.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/refinenp.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/refinepe.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/refinesel.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/remkn.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/remknnp.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/resetwac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/revolve.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/rotateaac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/rotateac.gif @@ -287,6 +299,8 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/pics/sdmesh.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/sdnpatch.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/selpnts.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/sfcurve.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/sfcurvetmax.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/sgordon.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/shiftclsbsp.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/skin.gif @@ -303,13 +317,18 @@ lib/ayam/tcl/BWidget-1.2.1/lang/fr.rc %%PORTDOCS%%%%DOCSDIR%%/html/pics/swing.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tagac.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tce.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/tcone.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/text-ayam.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tgui.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/tnpatch.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/tools.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/toxy.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/trect.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/treeview.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/trimnc.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/trpnt.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/unclampnc.gif +%%PORTDOCS%%%%DOCSDIR%%/html/pics/unclampnp.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/view.gif %%PORTDOCS%%%%DOCSDIR%%/html/pics/zoomvac.gif %%PORTDOCS%%%%DOCSDIR%%/refcard.pdf From owner-svn-ports-head@freebsd.org Sat Oct 10 14:59:57 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 36BB99D26CE; Sat, 10 Oct 2015 14:59:57 +0000 (UTC) (envelope-from bogorodskiy@gmail.com) Received: from mail-lb0-x229.google.com (mail-lb0-x229.google.com [IPv6:2a00:1450:4010:c04::229]) (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 B0D27F8F; Sat, 10 Oct 2015 14:59:56 +0000 (UTC) (envelope-from bogorodskiy@gmail.com) Received: by lbbwt4 with SMTP id wt4so106926071lbb.1; Sat, 10 Oct 2015 07:59:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=BR2Ph2Jao9mA9gon3NahCMXzpNZglFUUkq0ASmQ3trY=; b=PVhxW9DuCxVLYn9xoDKgRBSyzHvezEoKYOmlc07HFc8y6iVtHQZY0IS9ZsF8XuAbGt 7wt1sM0tiQkpZUSz+56D9D8uPq9LwhXc3p/ySyqbelvMI7Ys8uSAjOnTkM3X7Ft0SDR9 +ik0tlyIKmiwGIr82qxVNSl/DxmbXJ56AC6QarMpm+zOPnoU3DiCnqhRuJHYh2AUcYDM 2s5xx9uvOmWeLM/oLcuozvz7JNCGpfDXAr/YBAE2Mp/oP4ue44I2Gf43WMroiBLJtSzq f6T3aUkkQvByJyGySlYAk5t0rv2ULphis5mwW+SuG6XpZiICppImVkXdpvqszQSWL3R4 b/Ag== X-Received: by 10.112.166.3 with SMTP id zc3mr8846130lbb.49.1444489194883; Sat, 10 Oct 2015 07:59:54 -0700 (PDT) Received: from kloomba.lvv.mirantis.net ([31.29.239.16]) by smtp.gmail.com with ESMTPSA id eu2sm1218394lbc.6.2015.10.10.07.59.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 10 Oct 2015 07:59:53 -0700 (PDT) Date: Sat, 10 Oct 2015 17:59:47 +0300 From: Roman Bogorodskiy To: Bryan Drewery Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r398953 - head/Mk Message-ID: <20151010145946.GA12463@kloomba.lvv.mirantis.net> References: <201510091920.t99JKO1Z074092@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <201510091920.t99JKO1Z074092@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) 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: Sat, 10 Oct 2015 14:59:57 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Bryan Drewery wrote: > Author: bdrewery > Date: Fri Oct 9 19:20:24 2015 > New Revision: 398953 > URL: https://svnweb.freebsd.org/changeset/ports/398953 >=20 > Log: > Don't include/parse bsd.options.desc.mk if not needed (showconfig or -V= *_DESC). > =20 > This is targetting dependency listing overhead. > =20 > With hat: portmgr >=20 > Modified: > head/Mk/bsd.port.mk >=20 > Modified: head/Mk/bsd.port.mk > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/Mk/bsd.port.mk Fri Oct 9 19:09:27 2015 (r398952) > +++ head/Mk/bsd.port.mk Fri Oct 9 19:20:24 2015 (r398953) > @@ -5293,7 +5293,7 @@ config-conditional: > .endif > .endif # config-conditional > =20 > -.if !target(showconfig) > +.if !target(showconfig) && (make(showconfig) || (!empty(.MAKEFLAGS:M-V) = && !empty(.MAKEFLAGS:M*_DESC))) > .include "${PORTSDIR}/Mk/bsd.options.desc.mk" > MULTI_EOL=3D : you have to choose at least one of them > SINGLE_EOL=3D : you have to select exactly one of them This breaks displaying of standard options' description in the 'make config' dialog. Roman Bogorodskiy --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBAgAGBQJWGSfiAAoJEMltX/4IwiJqGwwH/j7S4GDPPHbCxdWABPwv8HIz 7wccl1GffQDTwsRmkjRCvzpLkkFnIP+u1ov9j/pLU94/SU0eXpXls3I5WJCkrfGL H4ZIMK1R+YMbuA0krLw2UNuMvNfk6mKNNO6qlVp2FoSHN6xCCZ9ICAQ/nzPzoCG3 yXgDBsaGXgIsOVu5YjC0Fqng9YwbntY35DWzd94nNOM7c7y32E3LE1K12mub9xrL j1NO3LiEgEn5eav/H4o1fI2AqDDt8FI+fof5m1P4VkmeUMpkUmrtglUFlKsY+yoe tZKI1IOJ7ngIf2cl6/bexKxKYcCu7mrdyJNil6b63yAWdMyNjnvsHawB++vlnsU= =a0LB -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-svn-ports-head@freebsd.org Sat Oct 10 15:01: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 5CE8E9D29C4; Sat, 10 Oct 2015 15:01:56 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 113EF130B; Sat, 10 Oct 2015 15:01:55 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AF1tCL032105; Sat, 10 Oct 2015 15:01:55 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AF1tbE032103; Sat, 10 Oct 2015 15:01:55 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510101501.t9AF1tbE032103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 10 Oct 2015 15:01:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399002 - 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: Sat, 10 Oct 2015 15:01:56 -0000 Author: junovitch Date: Sat Oct 10 15:01:54 2015 New Revision: 399002 URL: https://svnweb.freebsd.org/changeset/ports/399002 Log: Document iPython vulnerabilities fixed in 3.2.2 PR: 203668 Security: CVE-2015-6938 Security: CVE-2015-7337 Security: https://vuxml.FreeBSD.org/freebsd/290351c9-6f5c-11e5-a2a1-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Oct 10 14:49:28 2015 (r399001) +++ head/security/vuxml/vuln.xml Sat Oct 10 15:01:54 2015 (r399002) @@ -58,6 +58,53 @@ Notes: --> + + devel/ipython -- multiple vulnerabilities + + + ipython + 3.2.2 + + + + +

Matthias Bussonnier reports:

+
+

Summary: Local folder name was used in HTML templates without + escaping, allowing XSS in said pages by carefully crafting folder + name and URL to access it.

+

URI with issues:

+
    +
  • GET /tree/**
  • +
+
+

Benjamin RK reports:

+
+

Vulnerability: A maliciously forged file opened for editing can + execute javascript, specifically by being redirected to /files/ due + to a failure to treat the file as plain text.

+

URI with issues:

+
    +
  • GET /edit/**
  • +
+
+ +
+ + ports/203668 + CVE-2015-6938 + CVE-2015-7337 + http://www.openwall.com/lists/oss-security/2015/09/02/3 + https://github.com/ipython/ipython/commit/3ab41641cf6fce3860c73d5cf4645aa12e1e5892 + http://www.openwall.com/lists/oss-security/2015/09/16/3 + https://github.com/ipython/ipython/commit/0a8096adf165e2465550bd5893d7e352544e5967 + + + 2015-09-01 + 2015-10-10 + +
+ PostgreSQL -- minor security problems. From owner-svn-ports-head@freebsd.org Sat Oct 10 15: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 13EA6A1045E; Sat, 10 Oct 2015 15:20:44 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8DE151B86; Sat, 10 Oct 2015 15:20:43 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AFKgRi038139; Sat, 10 Oct 2015 15:20:42 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AFKfSn038125; Sat, 10 Oct 2015 15:20:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101520.t9AFKfSn038125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 15:20:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399003 - in head: comms/xastir graphics/GraphicsMagick graphics/GraphicsMagick/files graphics/cimg graphics/gimp-gmic-plugin graphics/pecl-gmagick graphics/vips math/octave science/gnu... 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: Sat, 10 Oct 2015 15:20:44 -0000 Author: marino Date: Sat Oct 10 15:20:41 2015 New Revision: 399003 URL: https://svnweb.freebsd.org/changeset/ports/399003 Log: graphics/GraphicsMagick: Upgrade version 1.3.20 => 1.3.21 The shared library versions changed, so bump all the ports that depend on GraphicsMagick by default too. PR: 200304 Submitted by: ports fury Modified: head/comms/xastir/Makefile head/graphics/GraphicsMagick/Makefile head/graphics/GraphicsMagick/distinfo head/graphics/GraphicsMagick/files/patch-Makefile.in head/graphics/GraphicsMagick/files/patch-configure head/graphics/GraphicsMagick/pkg-plist head/graphics/cimg/Makefile head/graphics/gimp-gmic-plugin/Makefile head/graphics/pecl-gmagick/Makefile head/graphics/vips/Makefile head/math/octave/Makefile head/science/gnudatalanguage/Makefile head/textproc/htmltolatex/Makefile Modified: head/comms/xastir/Makefile ============================================================================== --- head/comms/xastir/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/comms/xastir/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,7 +3,7 @@ PORTNAME= xastir PORTVERSION= 2.0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTNAME}-${PORTVERSION} Modified: head/graphics/GraphicsMagick/Makefile ============================================================================== --- head/graphics/GraphicsMagick/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/GraphicsMagick/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= GraphicsMagick -PORTVERSION= 1.3.20 -PORTREVISION= 6 +PORTVERSION= 1.3.21 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF \ Modified: head/graphics/GraphicsMagick/distinfo ============================================================================== --- head/graphics/GraphicsMagick/distinfo Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/GraphicsMagick/distinfo Sat Oct 10 15:20:41 2015 (r399003) @@ -1,2 +1,2 @@ -SHA256 (GraphicsMagick-1.3.20.tar.bz2) = 7caf27691ec21682de1f0259c9243725db7cdeca699c40958c28aece99e4f1dc -SIZE (GraphicsMagick-1.3.20.tar.bz2) = 7371945 +SHA256 (GraphicsMagick-1.3.21.tar.bz2) = a0ce08f2710c158e39faa083463441f6eeeecce07dbd59510498ffa4e0b053d1 +SIZE (GraphicsMagick-1.3.21.tar.bz2) = 7527643 Modified: head/graphics/GraphicsMagick/files/patch-Makefile.in ============================================================================== --- head/graphics/GraphicsMagick/files/patch-Makefile.in Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/GraphicsMagick/files/patch-Makefile.in Sat Oct 10 15:20:41 2015 (r399003) @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2008-05-18 17:22:51.000000000 -0400 -+++ Makefile.in 2008-06-06 18:41:23.620488084 -0400 -@@ -1775,7 +1775,7 @@ +--- Makefile.in.orig 2015-02-28 20:53:46 UTC ++++ Makefile.in +@@ -2221,7 +2221,7 @@ MagickFilterModulesPath = @MagickFilterM MagickLibConfigPath = @MagickLibConfigPath@ MagickLibPath = @MagickLibPath@ MagickShareConfigPath = @MagickShareConfigPath@ @@ -9,7 +9,7 @@ MogrifyDelegate = @MogrifyDelegate@ NM = @NM@ NMEDIT = @NMEDIT@ -@@ -4382,7 +4382,7 @@ +@@ -4381,7 +4381,7 @@ PERLMAGICK_MAINTAINER_TARGETS = $(top_sr @WITH_PERL_DYNAMIC_FALSE@@WITH_PERL_STATIC_TRUE@@WITH_PERL_TRUE@PERLSTATICNAME = PerlMagick # Pkgconfig directory Modified: head/graphics/GraphicsMagick/files/patch-configure ============================================================================== --- head/graphics/GraphicsMagick/files/patch-configure Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/GraphicsMagick/files/patch-configure Sat Oct 10 15:20:41 2015 (r399003) @@ -1,6 +1,6 @@ ---- configure.orig 2013-12-31 20:58:17.000000000 +0100 -+++ configure 2014-04-26 15:53:04.000000000 +0200 -@@ -12919,7 +12919,6 @@ +--- configure.orig 2015-02-28 20:53:46 UTC ++++ configure +@@ -13277,7 +13277,6 @@ fi # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' @@ -8,7 +8,7 @@ hardcode_direct=yes hardcode_shlibpath_var=no ;; -@@ -23889,60 +23888,6 @@ +@@ -24497,60 +24496,6 @@ else X_CFLAGS="$X_CFLAGS -I$x_includes" fi @@ -69,7 +69,7 @@ # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries -@@ -24637,15 +24582,16 @@ +@@ -25245,15 +25190,16 @@ fi # Cygwin doesn't deliver -lXt as a DLL, which prevents a DLL build. # Adobe DPS (as delivered on Solaris) doesn't require -lXt. # GraphicsMagick itself doesn't use -lXt. @@ -88,7 +88,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -@@ -27095,7 +27041,7 @@ +@@ -27703,7 +27649,7 @@ fi # # Subdirectory under lib to place GraphicsMagick lib files @@ -97,7 +97,7 @@ cat >>confdefs.h <<_ACEOF #define MagickLibSubdir "$MagickLibSubdir" -@@ -27199,7 +27145,7 @@ +@@ -27807,7 +27753,7 @@ _ACEOF # # Path to GraphicsMagick share files Modified: head/graphics/GraphicsMagick/pkg-plist ============================================================================== --- head/graphics/GraphicsMagick/pkg-plist Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/GraphicsMagick/pkg-plist Sat Oct 10 15:20:41 2015 (r399003) @@ -91,16 +91,16 @@ lib/GraphicsMagick/config/type-windows.m lib/GraphicsMagick/config/type.mgk lib/libGraphicsMagick++.a lib/libGraphicsMagick++.so -lib/libGraphicsMagick++.so.3 -lib/libGraphicsMagick++.so.3.7.0 +lib/libGraphicsMagick++.so.11 +lib/libGraphicsMagick++.so.11.0.0 lib/libGraphicsMagick.a lib/libGraphicsMagick.so lib/libGraphicsMagick.so.3 -lib/libGraphicsMagick.so.3.12.0 +lib/libGraphicsMagick.so.3.13.0 lib/libGraphicsMagickWand.a lib/libGraphicsMagickWand.so lib/libGraphicsMagickWand.so.2 -lib/libGraphicsMagickWand.so.2.7.0 +lib/libGraphicsMagickWand.so.2.7.1 libdata/pkgconfig/GraphicsMagick++.pc libdata/pkgconfig/GraphicsMagick.pc libdata/pkgconfig/GraphicsMagickWand.pc @@ -142,6 +142,7 @@ man/man5/quantize.5.gz %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2011.html %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2012.html %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2013.html +%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2014.html %%PORTDOCS%%%%DOCSDIR%%/www/Changelog.html %%PORTDOCS%%%%DOCSDIR%%/www/Changes.html %%PORTDOCS%%%%DOCSDIR%%/www/Copyright.html Modified: head/graphics/cimg/Makefile ============================================================================== --- head/graphics/cimg/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/cimg/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -4,6 +4,7 @@ PORTNAME= cimg DISTVERSIONPREFIX= v DISTVERSION= 1.6.4 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= graphics devel Modified: head/graphics/gimp-gmic-plugin/Makefile ============================================================================== --- head/graphics/gimp-gmic-plugin/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/gimp-gmic-plugin/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -2,7 +2,7 @@ PORTNAME= gmic PORTVERSION= 1.6.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/older_versions/ \ SF/${PORTNAME}/ Modified: head/graphics/pecl-gmagick/Makefile ============================================================================== --- head/graphics/pecl-gmagick/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/pecl-gmagick/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,7 +3,7 @@ PORTNAME= gmagick PORTVERSION= 1.1.7RC2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/graphics/vips/Makefile ============================================================================== --- head/graphics/vips/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/graphics/vips/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,6 +3,7 @@ PORTNAME= vips PORTVERSION= 8.0.2 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/math/octave/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= 3.8.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= GNU Modified: head/science/gnudatalanguage/Makefile ============================================================================== --- head/science/gnudatalanguage/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/science/gnudatalanguage/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,7 +3,7 @@ PORTNAME= gnudatalanguage DISTVERSION= 0.9.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science lang MASTER_SITES= SF/${PORTNAME}/gdl/${DISTVERSION} .if defined(BUILD_PYTHON_MODULE) Modified: head/textproc/htmltolatex/Makefile ============================================================================== --- head/textproc/htmltolatex/Makefile Sat Oct 10 15:01:54 2015 (r399002) +++ head/textproc/htmltolatex/Makefile Sat Oct 10 15:20:41 2015 (r399003) @@ -3,7 +3,7 @@ PORTNAME= htmltolatex PORTVERSION= 1 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= textproc MASTER_SITES= http://people.FreeBSD.org/~foxfair/distfiles/ DISTNAME= ${PORTNAME} From owner-svn-ports-head@freebsd.org Sat Oct 10 15:27:12 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 78D97A109D8; Sat, 10 Oct 2015 15:27:12 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D8B51F68; Sat, 10 Oct 2015 15:27:12 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AFRBsL038455; Sat, 10 Oct 2015 15:27:11 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AFRBCp038452; Sat, 10 Oct 2015 15:27:11 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510101527.t9AFRBCp038452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 10 Oct 2015 15:27:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399004 - 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: Sat, 10 Oct 2015 15:27:12 -0000 Author: junovitch Date: Sat Oct 10 15:27:11 2015 New Revision: 399004 URL: https://svnweb.freebsd.org/changeset/ports/399004 Log: Document shell command execution via improper escaping in p5-UI-Dialog PR: 203667 Security: CVE-2008-7315 Security: https://vuxml.FreeBSD.org/freebsd/00dadbf0-6f61-11e5-a2a1-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Oct 10 15:20:41 2015 (r399003) +++ head/security/vuxml/vuln.xml Sat Oct 10 15:27:11 2015 (r399004) @@ -58,6 +58,41 @@ Notes: --> + + p5-UI-Dialog -- shell command execution vulnerability + + + p5-UI-Dialog + 1.09_2 + + + + +

Matthijs Kooijman reports:

+
+

It seems that the whiptail, cdialog and kdialog backends apply + some improper escaping in their shell commands, causing special + characters present in menu item titles to be interpreted by the + shell. This includes the backtick evaluation operator, so this + constitutues a security issue, allowing execution of arbitrary + commands if an attacker has control over the text displayed in + a menu.

+
+ +
+ + CVE-2008-7315 + ports/203667 + https://rt.cpan.org/Public/Bug/Display.html?id=107364 + https://bugs.debian.org/496448 + https://github.com/kckrinke/UI-Dialog/commit/6adc44cc636c615d76297d86835e1a997681eb61 + + + 2008-08-24 + 2015-10-10 + +
+ devel/ipython -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Sat Oct 10 15:29: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 7C634A10AFB; Sat, 10 Oct 2015 15:29:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CB71F0; Sat, 10 Oct 2015 15:29:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AFTAn1038695; Sat, 10 Oct 2015 15:29:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AFT9cq038691; Sat, 10 Oct 2015 15:29:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201510101529.t9AFT9cq038691@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 10 Oct 2015 15:29:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399005 - in head/databases: mysql-workbench51 mysql51-server p5-DBD-mysql51 py-MySQLdb51 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: Sat, 10 Oct 2015 15:29:11 -0000 Author: antoine Date: Sat Oct 10 15:29:09 2015 New Revision: 399005 URL: https://svnweb.freebsd.org/changeset/ports/399005 Log: Depreacted MySQL 5.1 ports Modified: head/databases/mysql-workbench51/Makefile head/databases/mysql51-server/Makefile head/databases/p5-DBD-mysql51/Makefile head/databases/py-MySQLdb51/Makefile Modified: head/databases/mysql-workbench51/Makefile ============================================================================== --- head/databases/mysql-workbench51/Makefile Sat Oct 10 15:27:11 2015 (r399004) +++ head/databases/mysql-workbench51/Makefile Sat Oct 10 15:29:09 2015 (r399005) @@ -11,6 +11,9 @@ PKGNAMESUFFIX= 51 MAINTAINER= ports@FreeBSD.org COMMENT= The MySQL Workbench +DEPRECATED= EOL upstream, use databases/mysql-workbench52 instead +EXPIRATION_DATE= 2015-11-10 + LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ libzip.so:${PORTSDIR}/archivers/libzip \ Modified: head/databases/mysql51-server/Makefile ============================================================================== --- head/databases/mysql51-server/Makefile Sat Oct 10 15:27:11 2015 (r399004) +++ head/databases/mysql51-server/Makefile Sat Oct 10 15:29:09 2015 (r399005) @@ -11,6 +11,9 @@ PKGNAMESUFFIX?= 51-server MAINTAINER= ale@FreeBSD.org COMMENT?= Multithreaded SQL database (server) +DEPRECATED= EOL upstream, use mysql55 or mysql56 instead +EXPIRATION_DATE= 2015-11-10 + SLAVEDIRS= databases/mysql51-client databases/mysql51-scripts GNU_CONFIGURE= yes Modified: head/databases/p5-DBD-mysql51/Makefile ============================================================================== --- head/databases/p5-DBD-mysql51/Makefile Sat Oct 10 15:27:11 2015 (r399004) +++ head/databases/p5-DBD-mysql51/Makefile Sat Oct 10 15:29:09 2015 (r399005) @@ -5,6 +5,9 @@ PKGNAMESUFFIX= 51 COMMENT= MySQL 5.1 driver for the Perl5 Database Interface (DBI) +DEPRECATED= EOL upstream, use databases/p5-DBD-mysql instead +EXPIRATION_DATE= 2015-11-10 + CONFLICTS_INSTALL= p5-DBD-mysql-[0-9]* p5-DBD-mysql5[02-9]-[0-9]* WANT_MYSQL_VER= 51 Modified: head/databases/py-MySQLdb51/Makefile ============================================================================== --- head/databases/py-MySQLdb51/Makefile Sat Oct 10 15:27:11 2015 (r399004) +++ head/databases/py-MySQLdb51/Makefile Sat Oct 10 15:29:09 2015 (r399005) @@ -5,6 +5,9 @@ PKGNAMESUFFIX= 51 COMMENT= Access a MySQL database through Python (Using MySQL 5.1 Client) +DEPRECATED= EOL upstream, use databases/py-MySQLdb instead +EXPIRATION_DATE= 2015-11-10 + WANT_MYSQL_VER= 51 MASTERDIR= ${.CURDIR}/../py-MySQLdb From owner-svn-ports-head@freebsd.org Sat Oct 10 15:37:53 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 29AB59D21AA; Sat, 10 Oct 2015 15:37:53 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8947A1B; Sat, 10 Oct 2015 15:37:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AFbqrK041653; Sat, 10 Oct 2015 15:37:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AFbp3W041650; Sat, 10 Oct 2015 15:37:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510101537.t9AFbp3W041650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 15:37:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399006 - in head/x11/xvkbd: . 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: Sat, 10 Oct 2015 15:37:53 -0000 Author: marino Date: Sat Oct 10 15:37:51 2015 New Revision: 399006 URL: https://svnweb.freebsd.org/changeset/ports/399006 Log: x11/xvkbd: Upgrade version 3.6 => 3.7 PR: 203486 submitted by: ports fury Modified: head/x11/xvkbd/Makefile head/x11/xvkbd/distinfo head/x11/xvkbd/files/patch-xvkbd.man Modified: head/x11/xvkbd/Makefile ============================================================================== --- head/x11/xvkbd/Makefile Sat Oct 10 15:29:09 2015 (r399005) +++ head/x11/xvkbd/Makefile Sat Oct 10 15:37:51 2015 (r399006) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xvkbd -PORTVERSION= 3.6 +PORTVERSION= 3.7 CATEGORIES= x11 MASTER_SITES= http://homepage3.nifty.com/tsato/xvkbd/ @@ -11,37 +11,35 @@ COMMENT= Virtual keyboard for X applicat LICENSE= GPLv2 # (or later) -OPTIONS_DEFINE= XAW3D XTEST NLS DOCS -OPTIONS_DEFAULT= XTEST -XAW3D_DESC= Xaw3d widget library support -XTEST_DESC= XTEST extensions support - USES= imake USE_XORG= ice sm x11 xaw xext xmu xpm xt -.include +DESKTOP_ENTRIES="Xvkbd" "" "" "xvkbd" "Utility;" false -.if ${PORT_OPTIONS:MXAW3D} -LIB_DEPENDS+= libXaw3d.so:${PORTSDIR}/x11-toolkits/Xaw3d -XK_DEFSUBST+= -e 's/XCOMM define XAW3d/\#define XAW3d/;' -.endif - -.if ${PORT_OPTIONS:MXTEST} -USE_XORG+= xtst -XK_DEFSUBST+= -e 's/XCOMM define XTEST/\#define XTEST/;' -.endif - -.if ${PORT_OPTIONS:MNLS} -XK_DEFSUBST+= -e 's/XCOMM define I18N/\#define I18N/;' -.endif +OPTIONS_DEFINE= DOCS NLS XAW3D XTEST +OPTIONS_DEFAULT= XTEST + +XAW3D_DESC= Xaw3d widget library support +XAW3D_LIB_DEPENDS= libXaw3d.so:${PORTSDIR}/x11-toolkits/Xaw3d +XTEST_DESC= XTEST extensions support +XTEST_USE= xorg=xtst post-patch: -.if defined(XK_DEFSUBST) - @${REINPLACE_CMD} ${XK_DEFSUBST} ${WRKSRC}/Imakefile -.endif @${REINPLACE_CMD} -e \ 's|/usr/include/|${LOCALBASE}/include/|' ${WRKSRC}/XVkbd-small.ad +post-patch-NLS-on: + @${REINPLACE_CMD} -e \ + '/define I18N/s|^XCOMM |#|' ${WRKSRC}/Imakefile + +post-patch-XAW3D-on: + @${REINPLACE_CMD} -e \ + '/define XAW3D/s|^XCOMM |#|' ${WRKSRC}/Imakefile + +post-patch-XTEST-on: + @${REINPLACE_CMD} -e \ + '/define XTEST/s|^XCOMM |#|' ${WRKSRC}/Imakefile + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR}) Modified: head/x11/xvkbd/distinfo ============================================================================== --- head/x11/xvkbd/distinfo Sat Oct 10 15:29:09 2015 (r399005) +++ head/x11/xvkbd/distinfo Sat Oct 10 15:37:51 2015 (r399006) @@ -1,2 +1,2 @@ -SHA256 (xvkbd-3.6.tar.gz) = 2678541c23336a0795bf5684c9f38d382a6566e6509794a39952d6da47da5bae -SIZE (xvkbd-3.6.tar.gz) = 81613 +SHA256 (xvkbd-3.7.tar.gz) = 895f768269820e7c0379b0daac3687bda0c670d192ebb7e61e5613a5939ec90b +SIZE (xvkbd-3.7.tar.gz) = 81645 Modified: head/x11/xvkbd/files/patch-xvkbd.man ============================================================================== --- head/x11/xvkbd/files/patch-xvkbd.man Sat Oct 10 15:29:09 2015 (r399005) +++ head/x11/xvkbd/files/patch-xvkbd.man Sat Oct 10 15:37:51 2015 (r399006) @@ -3,7 +3,7 @@ Forwarded: no Author: Peter Pentchev Last-Update: 2015-05-07 ---- xvkbd.man.orig 2015-02-14 12:28:00 UTC +--- xvkbd.man.orig 2015-09-12 07:21:58 UTC +++ xvkbd.man @@ -29,7 +29,7 @@ which may make it easier to enter long w .PP @@ -173,15 +173,15 @@ Last-Update: 2015-05-07 and terminate soon after sending the string. .TP 4 -.B "-utf16" +- When used with \fB-file\fP option, +.B "\-utf16" - When used with \fB-file\fP option, ++ When used with \fB\-file\fP option, make \fIxvkbd\fP to accept UTF16 characters in the file. .TP 4 -.BI "-delay " value --Put \fIvalue\fP ms of delay for evey characters --when sending characters with \fB-text\fP or \fB-file\fP. +.BI "\-delay " value -+Put \fIvalue\fP ms of delay for evey character + Put \fIvalue\fP ms of delay for evey characters +-when sending characters with \fB-text\fP or \fB-file\fP. +when sending characters with \fB\-text\fP or \fB\-file\fP. Maybe this is useful when problem arises when characters are entered too fast. .sp 0.5 @@ -283,7 +283,7 @@ Last-Update: 2015-05-07 to apply this for those four modifiers. Maybe this can be useful when attempting to decorate the mouse operations with the modifiers. -@@ -524,97 +524,97 @@ and which can prevent the correct operat +@@ -524,101 +524,101 @@ and which can prevent the correct operat .sp 0.5 Resource `\fBxvkbd.positiveModifiers: \fP\fImodifiers...\fP' has the same function. .TP 4 @@ -398,18 +398,23 @@ Last-Update: 2015-05-07 .SH "Download" .TP 4 \fILatest Official Release\fP --\fIhttp://homepage3.nifty.com/tsato/xvkbd/xvkbd-3.6.tar.gz\fP -+\fIhttp://homepage3.nifty.com/tsato/xvkbd/xvkbd\-3.6.tar.gz\fP +-\fIhttp://homepage3.nifty.com/tsato/xvkbd/xvkbd-3.7.tar.gz\fP ++\fIhttp://homepage3.nifty.com/tsato/xvkbd/xvkbd\-3.7.tar.gz\fP .br - - source of version 3.6 (2015-02-15) + - source of version 3.7 (2015-09-12) .TP 4 previous release +-http://homepage3.nifty.com/tsato/xvkbd/xvkbd-3.6.tar.gz ++http://homepage3.nifty.com/tsato/xvkbd/xvkbd\-3.6.tar.gz + .br + - source of version 3.6 (2015-02-15) + .sp 0.5 -http://homepage3.nifty.com/tsato/xvkbd/xvkbd-3.5.tar.gz +http://homepage3.nifty.com/tsato/xvkbd/xvkbd\-3.5.tar.gz .br - source of version 3.5 (2013-07-15) .PP -@@ -651,8 +651,8 @@ load them via \fIxrdb\fP(1), or +@@ -655,8 +655,8 @@ load them via \fIxrdb\fP(1), or .IP " o " 4 set the filename to the \fB$XENVIRONMENT\fP environment variable, or .IP " o " 4 @@ -420,7 +425,7 @@ Last-Update: 2015-05-07 .IP " o " 4 put them in application default directory as \fBXVkbd\fP. .PP -@@ -664,11 +664,11 @@ directories specified with \fB$XUSERFILE +@@ -668,11 +668,11 @@ directories specified with \fB$XUSERFILE system's application default directory specified with \fB$XFILESEACHPATH\fP environment variable, or else the directory specified when compiling the X @@ -434,7 +439,7 @@ Last-Update: 2015-05-07 near top of the file. .PP \fIxvkbd\fP is distributed with some application default files, -@@ -699,7 +699,7 @@ You may also want to set: +@@ -703,7 +703,7 @@ You may also want to set: to display only the labels for the current shift state, instead of trying to always display all of them in the small keytop. .PP @@ -443,7 +448,7 @@ Last-Update: 2015-05-07 .SH " Removing Unwanted Keys" Keys on \fIxvkbd\fP window can be removed by setting their width to 1. -@@ -773,12 +773,12 @@ when \fBxvkbd.modalKeytop\fP resoruce is +@@ -777,12 +777,12 @@ when \fBxvkbd.modalKeytop\fP resoruce is In all of those resources, each keys are separated by spaces, and rows of keys are terminated with `\fB \\n\\\fP' (note that `\fB\\n\fP' must have space before it). @@ -459,7 +464,7 @@ Last-Update: 2015-05-07 will make \fIxvkbd\fP to use the German layout. For another method to activate those settings, please refer "How to Customize \fIxvkbd\fP" above. -@@ -840,7 +840,7 @@ You can use \fBxev\fP command to check w +@@ -844,7 +844,7 @@ You can use \fBxev\fP command to check w .IP " o " 4 If \fIAlt\fP or \fIMeta\fP is not defined as modifier, the key can't be used as modifier. @@ -468,7 +473,7 @@ Last-Update: 2015-05-07 .IP " o " 4 \fINum Lock\fP (and maybe other modifiers) on the physical keyboard may not work correctly when \fIxvkbd\fP is in use. -@@ -851,10 +851,10 @@ FAQ - Possible Problems and Solutions +@@ -855,10 +855,10 @@ FAQ - Possible Problems and Solutions http://homepage3.nifty.com/tsato/xvkbd/faq.html .TP 4 Making your own completion dictionary @@ -482,7 +487,7 @@ Last-Update: 2015-05-07 .TP 4 Note about how to send key events http://homepage3.nifty.com/tsato/xvkbd/events.html -@@ -875,26 +875,26 @@ which can't be entered directly from key +@@ -879,26 +879,26 @@ which can't be entered directly from key can be entered using dedicated key combinations. .IP " - " 6 Make keyboard layout not to be disturbed when @@ -514,7 +519,7 @@ Last-Update: 2015-05-07 .IP " - " 6 \fIxvkbd\fP can now send keys with \fIMode_switch\fP (\fIAltGr\fP) modifier, -@@ -902,9 +902,9 @@ which enables those characters in the po +@@ -906,9 +906,9 @@ which enables those characters in the po .IP " - " 6 \fIxvkbd\fP now support \fIAltGr\fP key so that German (and some other) keyboard layout can be used. @@ -526,7 +531,7 @@ Last-Update: 2015-05-07 in the distribution, which modifies keyboard layout and put some non-ASCII keys on the \fIxvkbd\fP window. .IP " - " 6 -@@ -920,7 +920,7 @@ Labels on keys can now be set independen +@@ -924,7 +924,7 @@ Labels on keys can now be set independen not shifted, \fIShift\fP, \fIAltGr\fP and \fIShift\fP-\fIAltGr\fP. (thanks, Jim) .IP " - " 6 @@ -535,7 +540,7 @@ Last-Update: 2015-05-07 .TP 4 Version 1.2 (2001-02-18) .IP " - " 6 -@@ -948,7 +948,7 @@ so that it will not terminated accidentl +@@ -952,7 +952,7 @@ so that it will not terminated accidentl .TP 4 Version 1.3 (2001-03-19) .IP " - " 6 @@ -544,7 +549,7 @@ Last-Update: 2015-05-07 (contributed from Marcel Portner) .IP " - " 6 \fIxvkbd\fP now catches MappingNotify event and reload the new mapping. -@@ -998,7 +998,7 @@ and older \fIxvkbd\fP may not work corre +@@ -1002,7 +1002,7 @@ and older \fIxvkbd\fP may not work corre .TP 4 Version 1.6 (2001-11-10) .IP " - " 6 @@ -553,7 +558,7 @@ Last-Update: 2015-05-07 (thanks, Gregory) .IP " - " 6 New entry `\fIUse XTEST Extension?\fP' is added -@@ -1017,7 +1017,7 @@ after \fIxvkbd\fP is invoked. +@@ -1021,7 +1021,7 @@ after \fIxvkbd\fP is invoked. Show/hide of the keypad and funcion keys on the main window can now be toggled from the main menu. .IP " - " 6 @@ -562,7 +567,7 @@ Last-Update: 2015-05-07 (contributed from Jean-Pierre Demailly) .TP 4 Version 2.1 (2002-01-27) -@@ -1025,9 +1025,9 @@ Version 2.1 (2002-01-27) +@@ -1029,9 +1029,9 @@ Version 2.1 (2002-01-27) When height of the \fIxvkbd\fP window is smaller than \fBXVkbd.modalThreshold\fP, \fIxvkbd\fP will now automatically switch the keytop @@ -574,7 +579,7 @@ Last-Update: 2015-05-07 would send wrong keys - this problem is now fixed. .IP " - " 6 Target \fBdistclean\fP in the \fBImakefile\fP is renamed -@@ -1040,8 +1040,8 @@ Version 2.2 (2002-03-17) +@@ -1044,8 +1044,8 @@ Version 2.2 (2002-03-17) String assigned to function keys can now be edited on a panel popped up via "\fIEdit Function Keys...\fP" in the main menu. .IP " - " 6 @@ -585,7 +590,7 @@ Last-Update: 2015-05-07 its standard input (stdin) to get the string to be sent. .IP " - " 6 In the previous release, -@@ -1070,7 +1070,7 @@ Swiss/German, +@@ -1074,7 +1074,7 @@ Swiss/German, United Kingdom and Latin-1. .IP " - " 6 @@ -594,7 +599,7 @@ Last-Update: 2015-05-07 - this problem is now fixed. .TP 4 Version 2.4 (2002-10-02) -@@ -1131,24 +1131,24 @@ Yet another Japanese keyboard layout, JI +@@ -1135,24 +1135,24 @@ Yet another Japanese keyboard layout, JI .IP " - " 6 It is now possible to minimize (iconify) the main window even if no window manager is in use. @@ -626,7 +631,7 @@ Last-Update: 2015-05-07 and maybe useful when run \fIxvkbd\fP from a display manager. .TP 4 Version 2.7a (2005-05-07) -@@ -1164,17 +1164,17 @@ where we must use \fIISO_Level3_Shift\fP +@@ -1168,17 +1168,17 @@ where we must use \fIISO_Level3_Shift\fP Reference to the target bitmap is changed from \fB/usr/X11R6/include/X11/bitmaps/target\fP to \fB/usr/include/X11/bitmaps/target\fP. .IP " - " 6 @@ -648,7 +653,7 @@ Last-Update: 2015-05-07 via \fB\\x\fP, \fB\\y\fP and \fB\\m\fP special sequences. .TP 4 Version 3.0 (2008-05-05) -@@ -1189,7 +1189,7 @@ Version 3.1 (2010-01-17) +@@ -1193,7 +1193,7 @@ Version 3.1 (2010-01-17) .IP " - " 6 Changed the default setting for automatic click to OFF, which was set ON in the previous release in error and caused confusion. .IP " - " 6 @@ -657,7 +662,7 @@ Last-Update: 2015-05-07 .IP " - " 6 Up to 25x25 keys can now be supported both for the main keyboard and the keypad. .IP " - " 6 -@@ -1197,7 +1197,7 @@ Able to open the keypad panel when start +@@ -1201,7 +1201,7 @@ Able to open the keypad panel when start .IP " - " 6 Fixed errors in some keyboard layout files (Korean, Slovene, UK). .IP " - " 6 @@ -666,7 +671,7 @@ Last-Update: 2015-05-07 .TP 4 Version 3.2 (2010-03-14) .IP " - " 6 -@@ -1208,10 +1208,10 @@ New option `\fIBehave as Toolbar Window? +@@ -1212,10 +1212,10 @@ New option `\fIBehave as Toolbar Window? `\fIAlways on Top\fP' will work rather better with window managers which support extended window manager hint \fB_NET_WM_STATE_ABOVE\fP. .IP " - " 6 @@ -679,7 +684,7 @@ Last-Update: 2015-05-07 `\fB*\fP' and `\fB?\fP'. .IP " - " 6 Word completion dictionary file to be used with `\fIWord Completion...\fP' -@@ -1220,18 +1220,18 @@ Word completion dictionary file to be us +@@ -1224,18 +1224,18 @@ Word completion dictionary file to be us Only the words which have two or more characters will be appeared in the word completion list. .IP " - " 6 @@ -701,7 +706,7 @@ Last-Update: 2015-05-07 the specified display when startup. .IP " - " 6 Bug fixed: \fBKP_0\fP now works. -@@ -1247,7 +1247,7 @@ as it seems delay of 0 caused problems i +@@ -1251,7 +1251,7 @@ as it seems delay of 0 caused problems i ISO_Left_Tab is assigned to the shifted position of the Tab key on the \fIxvkbd\fP window, so that Shift-Tab can be simulated. .IP " - " 6 @@ -710,7 +715,7 @@ Last-Update: 2015-05-07 .TP 4 Version 3.5 (2013-07-15) .IP " - " 6 -@@ -1258,8 +1258,8 @@ Fixed a problem that "Always on Top" not +@@ -1262,8 +1262,8 @@ Fixed a problem that "Always on Top" not .TP 4 Version 3.6 (2015-02-15) .IP " - " 6 From owner-svn-ports-head@freebsd.org Sat Oct 10 16:40:36 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 366AB9D2DD7; Sat, 10 Oct 2015 16:40:36 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F29851FCD; Sat, 10 Oct 2015 16:40:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AGeZir059070; Sat, 10 Oct 2015 16:40:35 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AGeZDY059069; Sat, 10 Oct 2015 16:40:35 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510101640.t9AGeZDY059069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 16:40:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399007 - head/ports-mgmt/portmaster 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: Sat, 10 Oct 2015 16:40:36 -0000 Author: bapt Date: Sat Oct 10 16:40:34 2015 New Revision: 399007 URL: https://svnweb.freebsd.org/changeset/ports/399007 Log: Remove obsolete pkg-message Deleted: head/ports-mgmt/portmaster/pkg-message Modified: head/ports-mgmt/portmaster/Makefile Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Sat Oct 10 15:37:51 2015 (r399006) +++ head/ports-mgmt/portmaster/Makefile Sat Oct 10 16:40:34 2015 (r399007) @@ -2,6 +2,7 @@ PORTNAME= portmaster PORTVERSION= 3.17.8 +PORTREVISION= 1 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ From owner-svn-ports-head@freebsd.org Sat Oct 10 16:41: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 752B59D2EF4; Sat, 10 Oct 2015 16:41:47 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 230001EA; Sat, 10 Oct 2015 16:41:47 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AGfk9t061770; Sat, 10 Oct 2015 16:41:46 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AGfjbf061767; Sat, 10 Oct 2015 16:41:45 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201510101641.t9AGfjbf061767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 10 Oct 2015 16:41:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399008 - head/audio/pd 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: Sat, 10 Oct 2015 16:41:47 -0000 Author: riggs Date: Sat Oct 10 16:41:45 2015 New Revision: 399008 URL: https://svnweb.freebsd.org/changeset/ports/399008 Log: Update to upstream version 0.46.7 PR: 203241 Submitted by: tkato432@yahoo.com Modified: head/audio/pd/Makefile head/audio/pd/distinfo head/audio/pd/pkg-plist Modified: head/audio/pd/Makefile ============================================================================== --- head/audio/pd/Makefile Sat Oct 10 16:40:34 2015 (r399007) +++ head/audio/pd/Makefile Sat Oct 10 16:41:45 2015 (r399008) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pd -DISTVERSION= 0.46-6 +DISTVERSION= 0.46-7 DISTVERSIONSUFFIX= .src CATEGORIES= audio MASTER_SITES= http://msp.ucsd.edu/Software/ Modified: head/audio/pd/distinfo ============================================================================== --- head/audio/pd/distinfo Sat Oct 10 16:40:34 2015 (r399007) +++ head/audio/pd/distinfo Sat Oct 10 16:41:45 2015 (r399008) @@ -1,2 +1,2 @@ -SHA256 (pd-0.46-6.src.tar.gz) = 721dd4048b7a225e5d7b4ff4a585781a56b7d32348ea4838f9db7805b07b8cec -SIZE (pd-0.46-6.src.tar.gz) = 2252980 +SHA256 (pd-0.46-7.src.tar.gz) = 543802341bb0c7d03ed3a64cd56e2fafdbd35505d815ae3ced6555b43eaf58e5 +SIZE (pd-0.46-7.src.tar.gz) = 2254022 Modified: head/audio/pd/pkg-plist ============================================================================== --- head/audio/pd/pkg-plist Sat Oct 10 16:40:34 2015 (r399007) +++ head/audio/pd/pkg-plist Sat Oct 10 16:41:45 2015 (r399008) @@ -375,7 +375,7 @@ man/man1/pdsend.1.gz %%PORTDOCS%%%%DOCSDIR%%/5.reference/delay-help.pd %%PORTDOCS%%%%DOCSDIR%%/5.reference/delread~-help.pd %%PORTDOCS%%%%DOCSDIR%%/5.reference/delwrite~-help.pd -%%PORTDOCS%%%%DOCSDIR%%/5.reference/drawnumber-help.pd +%%PORTDOCS%%%%DOCSDIR%%/5.reference/drawtext-help.pd %%PORTDOCS%%%%DOCSDIR%%/5.reference/drawpolygon-help.pd %%PORTDOCS%%%%DOCSDIR%%/5.reference/element-help.pd %%PORTDOCS%%%%DOCSDIR%%/5.reference/env~-help.pd From owner-svn-ports-head@freebsd.org Sat Oct 10 17:29:54 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 EEFDD9D27D7; Sat, 10 Oct 2015 17:29:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B85ED6CF; Sat, 10 Oct 2015 17:29:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AHTrfU073868; Sat, 10 Oct 2015 17:29:53 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AHTr2O073866; Sat, 10 Oct 2015 17:29:53 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510101729.t9AHTr2O073866@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 10 Oct 2015 17:29:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399009 - head/www/firefox 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: Sat, 10 Oct 2015 17:29:55 -0000 Author: swills Date: Sat Oct 10 17:29:53 2015 New Revision: 399009 URL: https://svnweb.freebsd.org/changeset/ports/399009 Log: www/firefox: update to 41.0.1 Modified: head/www/firefox/Makefile head/www/firefox/distinfo Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sat Oct 10 16:41:45 2015 (r399008) +++ head/www/firefox/Makefile Sat Oct 10 17:29:53 2015 (r399009) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 41.0 +DISTVERSION= 41.0.1 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Sat Oct 10 16:41:45 2015 (r399008) +++ head/www/firefox/distinfo Sat Oct 10 17:29:53 2015 (r399009) @@ -1,2 +1,2 @@ -SHA256 (firefox-41.0.source.tar.xz) = 18abb95e93770ab1cc0794349125aacf073eb04fd8b8a93c7a58312c94bf16fd -SIZE (firefox-41.0.source.tar.xz) = 159785356 +SHA256 (firefox-41.0.1.source.tar.xz) = 47b2cfc26b17559c26b95a584ab14b6efba132ca371b8aa30da2e2167e0612c3 +SIZE (firefox-41.0.1.source.tar.xz) = 159761132 From owner-svn-ports-head@freebsd.org Sat Oct 10 17:46:46 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 A0069A102B6; Sat, 10 Oct 2015 17:46:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BFBD6EA; Sat, 10 Oct 2015 17:46:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AHkjOY079663; Sat, 10 Oct 2015 17:46:45 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AHkjdS079662; Sat, 10 Oct 2015 17:46:45 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510101746.t9AHkjdS079662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 17:46:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399010 - head/Mk/Uses 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: Sat, 10 Oct 2015 17:46:46 -0000 Author: bapt Date: Sat Oct 10 17:46:45 2015 New Revision: 399010 URL: https://svnweb.freebsd.org/changeset/ports/399010 Log: Use USESDIR macro Modified: head/Mk/Uses/tk.mk Modified: head/Mk/Uses/tk.mk ============================================================================== --- head/Mk/Uses/tk.mk Sat Oct 10 17:29:53 2015 (r399009) +++ head/Mk/Uses/tk.mk Sat Oct 10 17:46:45 2015 (r399010) @@ -7,4 +7,4 @@ tcl_ARGS= ${tk_ARGS} _TCLTK_PORT= tk -.include "${PORTSDIR}/Mk/Uses/tcl.mk" +.include "${USESDIR}/tcl.mk" From owner-svn-ports-head@freebsd.org Sat Oct 10 18:49: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 9B501A109C2; Sat, 10 Oct 2015 18:49:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FE0EE73; Sat, 10 Oct 2015 18:49:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AInirt098209; Sat, 10 Oct 2015 18:49:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AIniJb098206; Sat, 10 Oct 2015 18:49:44 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201510101849.t9AIniJb098206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 10 Oct 2015 18:49:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399011 - in head/multimedia/xvid: . 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: Sat, 10 Oct 2015 18:49:45 -0000 Author: riggs Date: Sat Oct 10 18:49:44 2015 New Revision: 399011 URL: https://svnweb.freebsd.org/changeset/ports/399011 Log: Update to upstream version 1.3.4 [1], take maintainership [2] While on it: - Handle CFLAGS with xvid's build system [2] - Remove superfluous ln -sf in post-patch (now handled by xvid's build system) [2] - Pet portlint [2] PR: 203626 Submitted by: w.litter@aon.at [1] Reviewed by: riggs [2] Added: head/multimedia/xvid/files/extra-patch-cflags (contents, props changed) Deleted: head/multimedia/xvid/files/patch-configure Modified: head/multimedia/xvid/Makefile head/multimedia/xvid/distinfo Modified: head/multimedia/xvid/Makefile ============================================================================== --- head/multimedia/xvid/Makefile Sat Oct 10 17:46:45 2015 (r399010) +++ head/multimedia/xvid/Makefile Sat Oct 10 18:49:44 2015 (r399011) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= xvid -PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTVERSION= 1.3.4 PORTEPOCH= 1 CATEGORIES= multimedia MASTER_SITES= http://downloads.xvid.org/downloads/ DISTNAME= ${PORTNAME}core-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= riggs@FreeBSD.org COMMENT= Opensource MPEG-4 codec, based on OpenDivx LICENSE= GPLv2 # or later @@ -25,7 +24,8 @@ CONFIGURE_ENV+= ac_cv_prog_ac_yasm=no PLIST_FILES= include/xvid.h \ lib/libxvidcore.a \ lib/libxvidcore.so \ - lib/libxvidcore.so.4 + lib/libxvidcore.so.4 \ + lib/libxvidcore.so.4.3 WRKSRC= ${WRKDIR}/xvidcore/build/generic @@ -41,11 +41,11 @@ BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/n .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -CFLAGS= # let xvid's build system decide about those +# let xvid's build system override CFLAGS +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-cflags .endif post-install: - @${LN} -sf libxvidcore.so.4 ${STAGEDIR}${PREFIX}/lib/libxvidcore.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxvidcore.so .include Modified: head/multimedia/xvid/distinfo ============================================================================== --- head/multimedia/xvid/distinfo Sat Oct 10 17:46:45 2015 (r399010) +++ head/multimedia/xvid/distinfo Sat Oct 10 18:49:44 2015 (r399011) @@ -1,2 +1,2 @@ -SHA256 (xvidcore-1.3.2.tar.gz) = 84532724c47f452d1167962e64a7cf34fc22c26f6d3b7afa7304a3765e97689a -SIZE (xvidcore-1.3.2.tar.gz) = 817743 +SHA256 (xvidcore-1.3.4.tar.gz) = 4e9fd62728885855bc5007fe1be58df42e5e274497591fec37249e1052ae316f +SIZE (xvidcore-1.3.4.tar.gz) = 818067 Added: head/multimedia/xvid/files/extra-patch-cflags ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/xvid/files/extra-patch-cflags Sat Oct 10 18:49:44 2015 (r399011) @@ -0,0 +1,15 @@ +--- configure.orig 2015-06-21 14:21:32 UTC ++++ configure +@@ -2503,9 +2503,9 @@ if test x"$CFLAGS" = x"" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- force_default_cc_options="no" +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +-$as_echo "no" >&6; } ++ force_default_cc_options="yes" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + fi + + ac_ext=c From owner-svn-ports-head@freebsd.org Sat Oct 10 19:15:58 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 74B559D2B28; Sat, 10 Oct 2015 19:15:58 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAF7E1BCE; Sat, 10 Oct 2015 19:15:57 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AJFuVi007063; Sat, 10 Oct 2015 19:15:56 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AJFujW007058; Sat, 10 Oct 2015 19:15:56 GMT (envelope-from db@FreeBSD.org) Message-Id: <201510101915.t9AJFujW007058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sat, 10 Oct 2015 19:15:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399012 - in head/comms: unixcw unixcw/files xcwcp 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: Sat, 10 Oct 2015 19:15:58 -0000 Author: db Date: Sat Oct 10 19:15:56 2015 New Revision: 399012 URL: https://svnweb.freebsd.org/changeset/ports/399012 Log: Update to 3.5.0 2015-09-29 Kamil Ignacak * bugfix: fixing code that resets tone queue on flushing. A bug was found on FreeBSD: after pressing Ctrl+C, application that wanted to stop and delete generator as part of SIGINT handling procedure, got stuck in cw_tq_flush_internal() function, waiting for tone queue to go idle. This never happened. Resetting all tone queue state variables in flush function ensures that the function completes and returns, and that client application can exit. 2015-09-12 Kamil Ignacak * xcwcp: the application souce code files are now ported to Qt5. Build system files have been modified to use Qt5 to build xcwcp. Discovery and adding -fPIC to compiler flags for xcwcp is right now very naive, perhaps that will have to be improved in the future. Modified: head/comms/unixcw/Makefile head/comms/unixcw/distinfo (contents, props changed) head/comms/unixcw/files/patch-src_libcw_Makefile.in (contents, props changed) head/comms/unixcw/pkg-plist (contents, props changed) head/comms/xcwcp/Makefile Modified: head/comms/unixcw/Makefile ============================================================================== --- head/comms/unixcw/Makefile Sat Oct 10 18:49:44 2015 (r399011) +++ head/comms/unixcw/Makefile Sat Oct 10 19:15:56 2015 (r399012) @@ -4,7 +4,7 @@ # it still works as well. PORTNAME?= unixcw -PORTVERSION= 3.4.2 +PORTVERSION= 3.5.0 CATEGORIES= comms hamradio MASTER_SITES= SF/unixcw/unixcw-${PORTVERSION} DISTNAME= unixcw_${PORTVERSION}.orig @@ -13,9 +13,10 @@ MAINTAINER= hamradio@FreeBSD.org COMMENT?= Libs for cw on unix LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes -.ifndef CONFIGURE_ARGS +.ifndef CONFIGURE_ARGS CONFIGURE_ARGS= --disable-xcwcp .endif CONFIGURE_ARGS+= --includedir="${LOCALBASE}/include" \ @@ -23,11 +24,17 @@ CONFIGURE_ARGS+= --includedir="${LOCALBA --disable-alsa --disable-pulseaudio USE_LDCONFIG= yes -USES= gmake libtool pkgconfig +USES+= gmake libtool pkgconfig USE_CSTD= gnu99 WRKSRC= ${WRKDIR}/unixcw-${PORTVERSION} +MAJOR_LIB_VER= 6 +MINOR_LIB_VER= 5.1 +PLIST_SUB= MAJOR_LIB_VER=${MAJOR_LIB_VER} +PLIST_SUB+= MINOR_LIB_VER=${MINOR_LIB_VER} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcw.so.6.4.1 +.ifndef XCWCP + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcw.so.${MAJOR_LIB_VER}.${MINOR_LIB_VER} +.endif .include Modified: head/comms/unixcw/distinfo ============================================================================== --- head/comms/unixcw/distinfo Sat Oct 10 18:49:44 2015 (r399011) +++ head/comms/unixcw/distinfo Sat Oct 10 19:15:56 2015 (r399012) @@ -1,2 +1,2 @@ -SHA256 (unixcw_3.4.2.orig.tar.gz) = 8c26f80861cb88de7554f1d693fb6288cf49ab5c7a6af31ee727860f56d76075 -SIZE (unixcw_3.4.2.orig.tar.gz) = 710813 +SHA256 (unixcw_3.5.0.orig.tar.gz) = ca94e54ce7e6da458aba13ecdea05e4ec7db50c482abf78201403c718680ac0c +SIZE (unixcw_3.5.0.orig.tar.gz) = 719974 Modified: head/comms/unixcw/files/patch-src_libcw_Makefile.in ============================================================================== --- head/comms/unixcw/files/patch-src_libcw_Makefile.in Sat Oct 10 18:49:44 2015 (r399011) +++ head/comms/unixcw/files/patch-src_libcw_Makefile.in Sat Oct 10 19:15:56 2015 (r399012) @@ -1,7 +1,7 @@ ---- src/libcw/Makefile.in.orig 2015-06-10 20:55:54 UTC +--- src/libcw/Makefile.in.orig 2015-10-06 17:17:18 UTC +++ src/libcw/Makefile.in -@@ -690,7 +690,7 @@ libcw_test_simple_gen_LDADD = -lm -lpthr - libcw_test_simple_gen_CFLAGS = -rdynamic +@@ -676,7 +676,7 @@ libcw_test_internal_LDADD = -lm -lpthrea + libcw_test_internal_CFLAGS = -rdynamic # target: libcw.pc -pkgconfigdir = $(libdir)/pkgconfig Modified: head/comms/unixcw/pkg-plist ============================================================================== --- head/comms/unixcw/pkg-plist Sat Oct 10 18:49:44 2015 (r399011) +++ head/comms/unixcw/pkg-plist Sat Oct 10 19:15:56 2015 (r399012) @@ -5,8 +5,8 @@ include/libcw.h include/libcw_debug.h lib/libcw.a lib/libcw.so -lib/libcw.so.6 -lib/libcw.so.6.4.1 +lib/libcw.so.%%MAJOR_LIB_VER%% +lib/libcw.so.%%MAJOR_LIB_VER%%.%%MINOR_LIB_VER%% libdata/pkgconfig/libcw.pc man/man1/cw.1.gz man/man1/cwgen.1.gz Modified: head/comms/xcwcp/Makefile ============================================================================== --- head/comms/xcwcp/Makefile Sat Oct 10 18:49:44 2015 (r399011) +++ head/comms/xcwcp/Makefile Sat Oct 10 19:15:56 2015 (r399012) @@ -1,25 +1,28 @@ # $FreeBSD$ PORTNAME= xcwcp + COMMENT= X11 CW Tutor using unixcw +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libcw.so:${PORTSDIR}/comms/unixcw MASTERDIR= ${.CURDIR}/../unixcw PLIST= ${.CURDIR}/pkg-plist -USE_QT4= gui moc_build qmake_build rcc_build uic_build designer -USE_AUTOTOOLS= autoconf +USE_QT5= buildtools gui widgets qmake_build +USES= gettext +GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-xcwcp +XCWCP= yes PLIST_FILES= bin/xcwcp \ man/man1/xcwcp.1.gz +LDFLAGS+= -L${LOCALBASE}/lib -lintl -post-stage: - # Remove files from the unixcw plist - for plistfile in `cat ${MASTERDIR}/pkg-plist`; \ - do \ - cleanfile=`echo $${plistfile} | ${SED} -E 's|man/man(.*).gz|man/man\1|'`; \ - ${RM} ${STAGEDIR}${PREFIX}/$${cleanfile}; \ - done +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/xcwcp/xcwcp ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_DATA} ${WRKSRC}/src/xcwcp/xcwcp.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@freebsd.org Sat Oct 10 19:25: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 16FCBA10155; Sat, 10 Oct 2015 19:25:22 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id F04C41C9; Sat, 10 Oct 2015 19:25:21 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id E8D2213F2; Sat, 10 Oct 2015 19:25:21 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 6A2DFF3CA; Sat, 10 Oct 2015 19:25:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id j_w4AAe0frD6; Sat, 10 Oct 2015 19:25:18 +0000 (UTC) Content-Type: text/plain; charset=us-ascii DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 49647F3C7 Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r398953 - head/Mk From: Bryan Drewery X-Mailer: iPhone Mail (12H143) In-Reply-To: <20151010145946.GA12463@kloomba.lvv.mirantis.net> Date: Sat, 10 Oct 2015 12:25:14 -0700 Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <41D0729E-FA5B-4A34-9593-83E11754FB59@FreeBSD.org> References: <201510091920.t99JKO1Z074092@repo.freebsd.org> <20151010145946.GA12463@kloomba.lvv.mirantis.net> To: Roman Bogorodskiy 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: Sat, 10 Oct 2015 19:25:22 -0000 Wow I'm sorry. Please someone revert if not already. Regards, Bryan Drewery > On Oct 10, 2015, at 07:59, Roman Bogorodskiy wrote= : >=20 > Bryan Drewery wrote: >=20 >> Author: bdrewery >> Date: Fri Oct 9 19:20:24 2015 >> New Revision: 398953 >> URL: https://svnweb.freebsd.org/changeset/ports/398953 >>=20 >> Log: >> Don't include/parse bsd.options.desc.mk if not needed (showconfig or -V *= _DESC). >>=20 >> This is targetting dependency listing overhead. >>=20 >> With hat: portmgr >>=20 >> Modified: >> head/Mk/bsd.port.mk >>=20 >> Modified: head/Mk/bsd.port.mk >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D >> --- head/Mk/bsd.port.mk Fri Oct 9 19:09:27 2015 (r398952) >> +++ head/Mk/bsd.port.mk Fri Oct 9 19:20:24 2015 (r398953) >> @@ -5293,7 +5293,7 @@ config-conditional: >> .endif >> .endif # config-conditional >>=20 >> -.if !target(showconfig) >> +.if !target(showconfig) && (make(showconfig) || (!empty(.MAKEFLAGS:M-V) &= & !empty(.MAKEFLAGS:M*_DESC))) >> .include "${PORTSDIR}/Mk/bsd.options.desc.mk" >> MULTI_EOL=3D : you have to choose at least one of them >> SINGLE_EOL=3D : you have to select exactly one of them >=20 > This breaks displaying of standard options' description > in the 'make config' dialog. >=20 > Roman Bogorodskiy From owner-svn-ports-head@freebsd.org Sat Oct 10 19:45:53 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 137DEA108F5; Sat, 10 Oct 2015 19:45:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF6FEF12; Sat, 10 Oct 2015 19:45:52 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AJjpGK015731; Sat, 10 Oct 2015 19:45:51 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AJjpjM015730; Sat, 10 Oct 2015 19:45:51 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510101945.t9AJjpjM015730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 19:45:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399013 - head/Mk 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: Sat, 10 Oct 2015 19:45:53 -0000 Author: bapt Date: Sat Oct 10 19:45:51 2015 New Revision: 399013 URL: https://svnweb.freebsd.org/changeset/ports/399013 Log: Revert r398953 per bdrewery demand it breaks make config Reported by: novel Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Oct 10 19:15:56 2015 (r399012) +++ head/Mk/bsd.port.mk Sat Oct 10 19:45:51 2015 (r399013) @@ -5293,7 +5293,7 @@ config-conditional: .endif .endif # config-conditional -.if !target(showconfig) && (make(showconfig) || (!empty(.MAKEFLAGS:M-V) && !empty(.MAKEFLAGS:M*_DESC))) +.if !target(showconfig) .include "${PORTSDIR}/Mk/bsd.options.desc.mk" MULTI_EOL= : you have to choose at least one of them SINGLE_EOL= : you have to select exactly one of them From owner-svn-ports-head@freebsd.org Sat Oct 10 19:46:24 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 E8EE6A10939; Sat, 10 Oct 2015 19:46:24 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (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 8CA1EFF1; Sat, 10 Oct 2015 19:46:24 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wijq8 with SMTP id q8so8265377wij.0; Sat, 10 Oct 2015 12:46:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=/4HEEVuDi7TlI/m9TQG1q5HvEcuEY5eVwauz2k9UD/4=; b=VBMfNQ/h0nMYiiWyXY0/h9dRJrNsyOH3w1vcXw+2hfDqe5D64d5WKPvpjB385KlwJp bSEt4oCLbw39AxRTtyP75upWXav7PIrXy8oIiS8ts03mrcfcsLNQejcEMjLeP2jLBOo7 0vH7uwDdFRn+x9Nm01ZaKjeE4OJFlht1BzneyrYdNmG6uogl95NfWGmoe20uzPQb1LnL c0sbgSrJb6t7u9nUge48FbdoNi0V3/CoNJC9nTYHjD8oN+nljMV7iFpY/G1/UrNyatbM FBjzXnn345l9drQSRC+wFX6U2JwkXW2Wg7KvdUpXCB8Nrzk5bRIW42getyRJw0QxJJj2 JRWQ== X-Received: by 10.180.86.165 with SMTP id q5mr5924906wiz.52.1444506382142; Sat, 10 Oct 2015 12:46:22 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id m6sm4104881wif.11.2015.10.10.12.46.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 10 Oct 2015 12:46:21 -0700 (PDT) Sender: Baptiste Daroussin Date: Sat, 10 Oct 2015 21:46:19 +0200 From: Baptiste Daroussin To: Bryan Drewery Cc: Roman Bogorodskiy , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r398953 - head/Mk Message-ID: <20151010194619.GO91729@ivaldir.etoilebsd.net> References: <201510091920.t99JKO1Z074092@repo.freebsd.org> <20151010145946.GA12463@kloomba.lvv.mirantis.net> <41D0729E-FA5B-4A34-9593-83E11754FB59@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="djJN5oi3zFpblwUd" Content-Disposition: inline In-Reply-To: <41D0729E-FA5B-4A34-9593-83E11754FB59@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: Sat, 10 Oct 2015 19:46:25 -0000 --djJN5oi3zFpblwUd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 10, 2015 at 12:25:14PM -0700, Bryan Drewery wrote: > Wow I'm sorry. Please someone revert if not already. >=20 Done Best regards, Bapt --djJN5oi3zFpblwUd Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlYZawsACgkQ8kTtMUmk6Ex6kACfQlZOC8I8HaFg+PnXaRq0ZIKF IzAAnRPFipmrjEXd1PqUkB7WRkqgWfTc =/q58 -----END PGP SIGNATURE----- --djJN5oi3zFpblwUd-- From owner-svn-ports-head@freebsd.org Sat Oct 10 19:51: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 54E82A10ABB; Sat, 10 Oct 2015 19:51:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9FDA73B7; Sat, 10 Oct 2015 19:51:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AJpCsd016711; Sat, 10 Oct 2015 19:51:12 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AJpCcT016707; Sat, 10 Oct 2015 19:51:12 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510101951.t9AJpCcT016707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 10 Oct 2015 19:51:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399014 - head/www/firefox-i18n 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: Sat, 10 Oct 2015 19:51:14 -0000 Author: swills Date: Sat Oct 10 19:51:12 2015 New Revision: 399014 URL: https://svnweb.freebsd.org/changeset/ports/399014 Log: www/firefox-i18n: update to 41.0.1 PR: 203677 Submitted by: Christoph Moench-Tegeder Modified: head/www/firefox-i18n/Makefile head/www/firefox-i18n/Makefile.lang head/www/firefox-i18n/Makefile.option head/www/firefox-i18n/distinfo Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Sat Oct 10 19:45:51 2015 (r399013) +++ head/www/firefox-i18n/Makefile Sat Oct 10 19:51:12 2015 (r399014) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 41.0 +PORTVERSION= 41.0.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: head/www/firefox-i18n/Makefile.lang ============================================================================== --- head/www/firefox-i18n/Makefile.lang Sat Oct 10 19:45:51 2015 (r399013) +++ head/www/firefox-i18n/Makefile.lang Sat Oct 10 19:51:12 2015 (r399014) @@ -7,7 +7,7 @@ FIREFOX_I18N_ALL_= ach af an ar as ast a gu-IN he hi-IN hr hsb hu hy-AM id is it ja kk km \ kn ko lij lt lv mai mk ml mr ms nb-NO nl nn-NO \ or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq \ - sr sv-SE ta te th tr uk vi xh zh-CN zh-TW + sr sv-SE ta te th tr uk uz vi xh zh-CN zh-TW .if defined(FIREFOX_I18N_ALL) || defined(PACKAGE_BUILDING) || target(package) FIREFOX_I18N= ${FIREFOX_I18N_ALL_} @@ -57,9 +57,6 @@ FIREFOX_I18N+= ca .if ${PORT_OPTIONS:MLANG_CS} FIREFOX_I18N+= cs .endif -.if ${PORT_OPTIONS:MLANG_CSB} -FIREFOX_I18N+= csb -.endif .if ${PORT_OPTIONS:MLANG_CY} FIREFOX_I18N+= cy .endif @@ -174,9 +171,6 @@ FIREFOX_I18N+= kn .if ${PORT_OPTIONS:MLANG_KO} FIREFOX_I18N+= ko .endif -.if ${PORT_OPTIONS:MLANG_KU} -FIREFOX_I18N+= ku -.endif .if ${PORT_OPTIONS:MLANG_LIJ} FIREFOX_I18N+= lij .endif @@ -240,12 +234,12 @@ FIREFOX_I18N+= si .if ${PORT_OPTIONS:MLANG_SK} FIREFOX_I18N+= sk .endif -.if ${PORT_OPTIONS:MLANG_SON} -FIREFOX_I18N+= son -.endif .if ${PORT_OPTIONS:MLANG_SL} FIREFOX_I18N+= sl .endif +.if ${PORT_OPTIONS:MLANG_SON} +FIREFOX_I18N+= son +.endif .if ${PORT_OPTIONS:MLANG_SQ} FIREFOX_I18N+= sq .endif @@ -255,9 +249,6 @@ FIREFOX_I18N+= sr .if ${PORT_OPTIONS:MLANG_SV} FIREFOX_I18N+= sv-SE .endif -.if ${PORT_OPTIONS:MLANG_SW} -FIREFOX_I18N+= sw -.endif .if ${PORT_OPTIONS:MLANG_TA} FIREFOX_I18N+= ta .endif @@ -273,6 +264,9 @@ FIREFOX_I18N+= tr .if ${PORT_OPTIONS:MLANG_UK} FIREFOX_I18N+= uk .endif +.if ${PORT_OPTIONS:MLANG_UZ} +FIREFOX_I18N+= uz +.endif .if ${PORT_OPTIONS:MLANG_VI} FIREFOX_I18N+= vi .endif @@ -285,7 +279,4 @@ FIREFOX_I18N+= zh-CN .if ${PORT_OPTIONS:MLANG_TW} FIREFOX_I18N+= zh-TW .endif -.if ${PORT_OPTIONS:MLANG_ZU} -FIREFOX_I18N+= zu -.endif .endif Modified: head/www/firefox-i18n/Makefile.option ============================================================================== --- head/www/firefox-i18n/Makefile.option Sat Oct 10 19:45:51 2015 (r399013) +++ head/www/firefox-i18n/Makefile.option Sat Oct 10 19:51:12 2015 (r399014) @@ -1,100 +1,100 @@ # Created by: Koji Yokota # $FreeBSD$ +# this is sorted on the name of the xpi files, not the option name OPTIONS_DEFINE= LANG_ACH \ LANG_AF \ LANG_AN \ - LANG_SQ \ LANG_AR \ LANG_AS \ - LANG_AM \ LANG_AST \ LANG_AZ \ - LANG_EU \ - LANG_BN \ + LANG_BE \ + LANG_BG \ LANG_BB \ - LANG_BS \ + LANG_BN \ LANG_BR \ - LANG_BG \ - LANG_BE \ + LANG_BS \ LANG_CA \ - LANG_CN \ LANG_CS \ + LANG_CY \ LANG_DA \ - LANG_NL \ + LANG_DE \ + LANG_DSB \ + LANG_EL \ LANG_GB \ LANG_US \ + LANG_ZA \ LANG_EO \ + LANG_SA \ + LANG_SC \ + LANG_ES \ + LANG_SM \ LANG_ET \ - LANG_GL \ - LANG_DE \ - LANG_DSB \ - LANG_EL \ - LANG_GU \ + LANG_EU \ + LANG_FA \ LANG_FF \ LANG_FI \ LANG_FR \ LANG_FY \ LANG_GA \ LANG_GD \ + LANG_GL \ + LANG_GU \ LANG_HE \ LANG_HI \ LANG_HR \ LANG_HSB \ LANG_HU \ - LANG_IS \ + LANG_AM \ LANG_ID \ + LANG_IS \ LANG_IT \ LANG_JA \ - LANG_KN \ LANG_KK \ LANG_KM \ + LANG_KN \ LANG_KO \ - LANG_LV \ - LANG_LT \ LANG_LIJ \ - LANG_MK \ + LANG_LT \ + LANG_LV \ LANG_MAI \ + LANG_MK \ LANG_ML \ LANG_MR \ - LANG_MN \ LANG_MS \ LANG_NB \ + LANG_NL \ LANG_NN \ LANG_OR \ - LANG_FA \ + LANG_PA \ LANG_PL \ - LANG_PT \ LANG_PBR\ - LANG_PA \ - LANG_RO \ + LANG_PT \ LANG_RM \ + LANG_RO \ LANG_RU \ - LANG_SR \ LANG_SI \ - LANG_ES \ - LANG_SON \ - LANG_SA \ - LANG_SC \ - LANG_SM \ LANG_SK \ LANG_SL \ + LANG_SON \ + LANG_SQ \ + LANG_SR \ LANG_SV \ - LANG_TW \ LANG_TA \ LANG_TE \ LANG_TH \ LANG_TR \ LANG_UK \ + LANG_UZ \ LANG_VI \ - LANG_CY \ LANG_XH \ - LANG_ZA \ - LANG_ZU + LANG_CN \ + LANG_TW OPTIONS_DEFAULT=LANG_AR LANG_BN LANG_BR LANG_CN LANG_ET LANG_DE LANG_FR \ LANG_HI LANG_ID LANG_IT LANG_JA LANG_KO LANG_MK LANG_MR \ - LANG_MN LANG_PBR LANG_PA LANG_RU LANG_ES LANG_SON LANG_TE + LANG_PBR LANG_PA LANG_RU LANG_ES LANG_SON LANG_TE LANG_ACH_DESC?= Acholi language support LANG_AN_DESC?= Aragonese language support @@ -108,4 +108,5 @@ LANG_KM_DESC?= Khmer language support LANG_LIJ_DESC?= Ligurian (Genoa) language support LANG_MS_DESC?= Malay language support LANG_SW_DESC?= Swahili language support +LANG_UZ_DESC?= Uzbek language support LANG_XH_DESC?= Xhosa language support Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Sat Oct 10 19:45:51 2015 (r399013) +++ head/www/firefox-i18n/distinfo Sat Oct 10 19:51:12 2015 (r399014) @@ -1,176 +1,178 @@ -SHA256 (xpi/firefox-i18n-41.0/ach.xpi) = 86755444fc1b53893f4fe3c181adbccc4bd4d6e24035aeb1ce4d0e90586bbc4c -SIZE (xpi/firefox-i18n-41.0/ach.xpi) = 483439 -SHA256 (xpi/firefox-i18n-41.0/af.xpi) = 9a81d311727c1b393eb5a1d420c77a26cc01327b3c326a935b8b31b426977ab0 -SIZE (xpi/firefox-i18n-41.0/af.xpi) = 486121 -SHA256 (xpi/firefox-i18n-41.0/an.xpi) = 2e9df1c9f67ef5cafd5fd9e4d4d2ddaa642aa29b81a96e02fb47a658e53a1146 -SIZE (xpi/firefox-i18n-41.0/an.xpi) = 464516 -SHA256 (xpi/firefox-i18n-41.0/ar.xpi) = bb9ee3d703c10f9bc3e12e9f62ea95511955239a20fae81918f0c0529685baf8 -SIZE (xpi/firefox-i18n-41.0/ar.xpi) = 521159 -SHA256 (xpi/firefox-i18n-41.0/as.xpi) = 2bb52d1a41ca3955a460f0f2d48efe3e2c99ab579d72f1c183faed70403bb869 -SIZE (xpi/firefox-i18n-41.0/as.xpi) = 511219 -SHA256 (xpi/firefox-i18n-41.0/ast.xpi) = 2be891b76d75d39310f35c290a7d93aab8b6d4cde87e65f0820760fd230c7985 -SIZE (xpi/firefox-i18n-41.0/ast.xpi) = 399122 -SHA256 (xpi/firefox-i18n-41.0/az.xpi) = a213f91389bd869fc3b6eb154965da9ebf00f422cc3173696a97c060b6382530 -SIZE (xpi/firefox-i18n-41.0/az.xpi) = 492916 -SHA256 (xpi/firefox-i18n-41.0/be.xpi) = 3611cb1cecd6fd6ddfcc57ef936a351704299a54362d000c16779aab7f7399ec -SIZE (xpi/firefox-i18n-41.0/be.xpi) = 453403 -SHA256 (xpi/firefox-i18n-41.0/bg.xpi) = 45842f478fbac439a828950fd8a708352e6f249c967d71def55eeae0ec49c78f -SIZE (xpi/firefox-i18n-41.0/bg.xpi) = 492965 -SHA256 (xpi/firefox-i18n-41.0/bn-BD.xpi) = de27686738705b1291118126d87f9f6f60075a35abc3651ebbe8c62d3624f8ba -SIZE (xpi/firefox-i18n-41.0/bn-BD.xpi) = 527570 -SHA256 (xpi/firefox-i18n-41.0/bn-IN.xpi) = bc94787dc80a9afd100c0b784374aae1bdb03e03e496ce6f6cd5b7e3d254056b -SIZE (xpi/firefox-i18n-41.0/bn-IN.xpi) = 530267 -SHA256 (xpi/firefox-i18n-41.0/br.xpi) = 98db3d58490a3bd71ef114a8d066fa8515450b6d85c8474316f46cf7e4c0a3be -SIZE (xpi/firefox-i18n-41.0/br.xpi) = 444530 -SHA256 (xpi/firefox-i18n-41.0/bs.xpi) = 20bb1ecb9f4aa63163c6121e74a25b5d6b55c33b2dbe13531962df1dc52dad10 -SIZE (xpi/firefox-i18n-41.0/bs.xpi) = 486281 -SHA256 (xpi/firefox-i18n-41.0/ca.xpi) = 4921859dd265dad50f39187b7036e9154a73d4d32d5153f2c55cf529fee38e57 -SIZE (xpi/firefox-i18n-41.0/ca.xpi) = 461321 -SHA256 (xpi/firefox-i18n-41.0/cs.xpi) = 5fc00e06ade7de4ab82d93fb87f698c990f3764fbe56ea2780ce06af0b752413 -SIZE (xpi/firefox-i18n-41.0/cs.xpi) = 450333 -SHA256 (xpi/firefox-i18n-41.0/cy.xpi) = 25c0e0d472878821b3c45867f910ba90414ee419894f7f01dd9484ff9ff7e973 -SIZE (xpi/firefox-i18n-41.0/cy.xpi) = 448183 -SHA256 (xpi/firefox-i18n-41.0/da.xpi) = 96d7193c09620bfe570ae37deaaf356d182399057ecd70341c2777188496e64e -SIZE (xpi/firefox-i18n-41.0/da.xpi) = 453403 -SHA256 (xpi/firefox-i18n-41.0/de.xpi) = 5a28c5751581e669d0979c62217cbf7b9ac61995dcc35a53ab675e241e374c7f -SIZE (xpi/firefox-i18n-41.0/de.xpi) = 455710 -SHA256 (xpi/firefox-i18n-41.0/dsb.xpi) = ec63d4b44d4a7d3bf5f0e8523fd9a3b00939ad873a8737f89f27792bfec3259f -SIZE (xpi/firefox-i18n-41.0/dsb.xpi) = 474536 -SHA256 (xpi/firefox-i18n-41.0/el.xpi) = f1437c41e2450d5101c3fe2b5e128157d33f5b93336483db36314f3a5e3c9f96 -SIZE (xpi/firefox-i18n-41.0/el.xpi) = 501619 -SHA256 (xpi/firefox-i18n-41.0/en-GB.xpi) = a419880aa591291868e86d15dd0af1fe20f55cf18e62cfe272e71bf09b2e6b7b -SIZE (xpi/firefox-i18n-41.0/en-GB.xpi) = 441098 -SHA256 (xpi/firefox-i18n-41.0/en-US.xpi) = 1650d4abba5fc7c9a37e79034fad2206bf6f365d6ee40c99da4626f70412cdef -SIZE (xpi/firefox-i18n-41.0/en-US.xpi) = 471246 -SHA256 (xpi/firefox-i18n-41.0/en-ZA.xpi) = 5dc4e9357ad6f826572f96305ca8d1c5fa74a4c9c82fcbb78b3a7f34d9ecb242 -SIZE (xpi/firefox-i18n-41.0/en-ZA.xpi) = 444145 -SHA256 (xpi/firefox-i18n-41.0/eo.xpi) = 15ec1dcf88b51b671e2369346e87a0503b2b1ff8c32b9e91389816a4eadbc8e9 -SIZE (xpi/firefox-i18n-41.0/eo.xpi) = 487994 -SHA256 (xpi/firefox-i18n-41.0/es-AR.xpi) = 535f578884c390698c97db2717dd91f3d948fb135b8ba4f1b5ec09d796092ce5 -SIZE (xpi/firefox-i18n-41.0/es-AR.xpi) = 456517 -SHA256 (xpi/firefox-i18n-41.0/es-CL.xpi) = b65d4c72e66642d5188bf12686f2541d2b5178be83ee2fb727d82877aa1aaa3a -SIZE (xpi/firefox-i18n-41.0/es-CL.xpi) = 381632 -SHA256 (xpi/firefox-i18n-41.0/es-ES.xpi) = ca7968f53f99bcf8e5369926b0e8b23ca7272e54bd15447fa42d8588fdbcdbd6 -SIZE (xpi/firefox-i18n-41.0/es-ES.xpi) = 370111 -SHA256 (xpi/firefox-i18n-41.0/es-MX.xpi) = a6384d393b6c82d29834089db412c98de0ce58ef7293c59166b6675f236ba0ef -SIZE (xpi/firefox-i18n-41.0/es-MX.xpi) = 460283 -SHA256 (xpi/firefox-i18n-41.0/et.xpi) = 71db72097253d9eb7964e220ac7d559d34dbf0e1214715814349ab5fbcbd2046 -SIZE (xpi/firefox-i18n-41.0/et.xpi) = 445439 -SHA256 (xpi/firefox-i18n-41.0/eu.xpi) = 47cc5e46baad2e03a17cdfeb054d0d3f102094b4e9dcb1c8a49d104324f6115d -SIZE (xpi/firefox-i18n-41.0/eu.xpi) = 469716 -SHA256 (xpi/firefox-i18n-41.0/fa.xpi) = d3c1491021de3477709b2f77a2ed95e4a4b37fdadf37dce2892edf689cbc015b -SIZE (xpi/firefox-i18n-41.0/fa.xpi) = 516157 -SHA256 (xpi/firefox-i18n-41.0/ff.xpi) = 59efd5d132c0026a6c31be1674fc398450b8bb2ec75c0786bf3c817627a5532e -SIZE (xpi/firefox-i18n-41.0/ff.xpi) = 454687 -SHA256 (xpi/firefox-i18n-41.0/fi.xpi) = 0c919f496c2a0e1503a8f37ded5938100680e810f6025cea0e84ae27f70b06ee -SIZE (xpi/firefox-i18n-41.0/fi.xpi) = 447174 -SHA256 (xpi/firefox-i18n-41.0/fr.xpi) = df5faa391722a201d6f6ecf08de01d393ce96dd122f378434f11440f825e5b10 -SIZE (xpi/firefox-i18n-41.0/fr.xpi) = 465091 -SHA256 (xpi/firefox-i18n-41.0/fy-NL.xpi) = 8aea345024bd99ceb013899e839170b61e6ae6e1bbb5b9c65cbf92f2f610f35a -SIZE (xpi/firefox-i18n-41.0/fy-NL.xpi) = 458775 -SHA256 (xpi/firefox-i18n-41.0/ga-IE.xpi) = ccb6e56af07c093f77db2224abefa80a77690f955d6d54f77a6d857fb672429d -SIZE (xpi/firefox-i18n-41.0/ga-IE.xpi) = 473255 -SHA256 (xpi/firefox-i18n-41.0/gd.xpi) = 12ec59d2dd84dbd1e9efbb6accbda523d93845b1198ed54ed4a1712bd50268ff -SIZE (xpi/firefox-i18n-41.0/gd.xpi) = 457498 -SHA256 (xpi/firefox-i18n-41.0/gl.xpi) = db9f28f2202dc2cbe96729d1afe9cf41ab94ada69e5f1305c4c15d2d0cc6416d -SIZE (xpi/firefox-i18n-41.0/gl.xpi) = 452610 -SHA256 (xpi/firefox-i18n-41.0/gu-IN.xpi) = 53463a96319f19c4966cbef96f2a6fdbabe6e7e8f77473e74541e26724516a92 -SIZE (xpi/firefox-i18n-41.0/gu-IN.xpi) = 487514 -SHA256 (xpi/firefox-i18n-41.0/he.xpi) = 21d0550c2c7a3f017f4e1f83859387929c41f7f1df06db3b073852ac436fc435 -SIZE (xpi/firefox-i18n-41.0/he.xpi) = 486489 -SHA256 (xpi/firefox-i18n-41.0/hi-IN.xpi) = b15756e16e5998219c2505e06d5a05aa291cfbb73bf31556d55ce57284c535f6 -SIZE (xpi/firefox-i18n-41.0/hi-IN.xpi) = 509161 -SHA256 (xpi/firefox-i18n-41.0/hr.xpi) = b7fda3f4bc5a7d6476f8ea5cd4e7f9d9445133dfc21f9257a802e75792543e21 -SIZE (xpi/firefox-i18n-41.0/hr.xpi) = 481334 -SHA256 (xpi/firefox-i18n-41.0/hsb.xpi) = 599261f6ddd9511872addf55a54ac27f8a2c629600e437a83986bec7325ffa49 -SIZE (xpi/firefox-i18n-41.0/hsb.xpi) = 472165 -SHA256 (xpi/firefox-i18n-41.0/hu.xpi) = ac254be8aae3d7feeb7e871f76d315a0d498bfc18ea706c5d51fad200554d86c -SIZE (xpi/firefox-i18n-41.0/hu.xpi) = 457034 -SHA256 (xpi/firefox-i18n-41.0/hy-AM.xpi) = 86019023a1bba2985fd44dc18fe6eca18faccee769d2702ed4f5be6ee68cd0d2 -SIZE (xpi/firefox-i18n-41.0/hy-AM.xpi) = 538340 -SHA256 (xpi/firefox-i18n-41.0/id.xpi) = 64ba7710b02a8454892dbb2de437e11a1e0ce660a6c072c54f3f2788aaf9ab0d -SIZE (xpi/firefox-i18n-41.0/id.xpi) = 433970 -SHA256 (xpi/firefox-i18n-41.0/is.xpi) = ea2916c2eec477ea0baac33c5b506f2cbcee0e4023cf4d96d3a927470c40be5c -SIZE (xpi/firefox-i18n-41.0/is.xpi) = 488111 -SHA256 (xpi/firefox-i18n-41.0/it.xpi) = 81c0df60bd9a20f1f3bf6861b085a5172b398fc0dcdfc603e34ce306f80f37e0 -SIZE (xpi/firefox-i18n-41.0/it.xpi) = 363984 -SHA256 (xpi/firefox-i18n-41.0/ja.xpi) = 32386da85ad191fc2c445759649d929fd7eab3940daea328dd3e1a56533a7c37 -SIZE (xpi/firefox-i18n-41.0/ja.xpi) = 483302 -SHA256 (xpi/firefox-i18n-41.0/kk.xpi) = 98e27a0caa00137e3a7908a18220af0b5447371875be40a20caf22678adba9d2 -SIZE (xpi/firefox-i18n-41.0/kk.xpi) = 508364 -SHA256 (xpi/firefox-i18n-41.0/km.xpi) = 0391cceb932ff1d7099605e51b8abf9e5cbb311e4fc6d5a0b3f58388428332ca -SIZE (xpi/firefox-i18n-41.0/km.xpi) = 571707 -SHA256 (xpi/firefox-i18n-41.0/kn.xpi) = 87c7e4b1b00499929fa89cff96ee7b2040bc3b2fa39da43d913b460730e9837a -SIZE (xpi/firefox-i18n-41.0/kn.xpi) = 539237 -SHA256 (xpi/firefox-i18n-41.0/ko.xpi) = bfd714e03b16a6e4e440bd1907186a9856780be70cd0af9daca3374a7a2006ce -SIZE (xpi/firefox-i18n-41.0/ko.xpi) = 464904 -SHA256 (xpi/firefox-i18n-41.0/lij.xpi) = ae514d960dca72cf7c057af190624947c56307db25d00b580ee8cbfc94be535c -SIZE (xpi/firefox-i18n-41.0/lij.xpi) = 451188 -SHA256 (xpi/firefox-i18n-41.0/lt.xpi) = 46d2bcc9842f74d1a78e41ce470d2197fc8e5243886c0b4b62535ed930c2a01f -SIZE (xpi/firefox-i18n-41.0/lt.xpi) = 490118 -SHA256 (xpi/firefox-i18n-41.0/lv.xpi) = 9f01b6c0c4647981f595c2827453e1209587c34ca947a5879f6b8fe9707c707f -SIZE (xpi/firefox-i18n-41.0/lv.xpi) = 470364 -SHA256 (xpi/firefox-i18n-41.0/mai.xpi) = f3ececf56f634f8dcf3950d4bf9a7a21508021a45b99dff045135c1c037266c7 -SIZE (xpi/firefox-i18n-41.0/mai.xpi) = 517160 -SHA256 (xpi/firefox-i18n-41.0/mk.xpi) = 1b8e4d2d5cfd8c8768b42b6d394b9132dc806672cab3d3f0acdd475e73d6abd3 -SIZE (xpi/firefox-i18n-41.0/mk.xpi) = 530865 -SHA256 (xpi/firefox-i18n-41.0/ml.xpi) = 602b9759448353e33b8800fb392bc2e3785058d1ec2331528abc91a1021bbabc -SIZE (xpi/firefox-i18n-41.0/ml.xpi) = 529030 -SHA256 (xpi/firefox-i18n-41.0/mr.xpi) = dbea36f8a4869cf15db2ae9a324d43297295d63c1a3dd8e45dfc4997e5d6676d -SIZE (xpi/firefox-i18n-41.0/mr.xpi) = 511323 -SHA256 (xpi/firefox-i18n-41.0/ms.xpi) = 59f5f143b9ed9cc12a2cf9cdc2e5d1af25bde7c78aec55a5232e680b737fdf9d -SIZE (xpi/firefox-i18n-41.0/ms.xpi) = 493483 -SHA256 (xpi/firefox-i18n-41.0/nb-NO.xpi) = b70ff1288f2ebd217c67f0b4fa1c48dcd6800d98ebca03d880d01592eb1f9fe8 -SIZE (xpi/firefox-i18n-41.0/nb-NO.xpi) = 446371 -SHA256 (xpi/firefox-i18n-41.0/nl.xpi) = 82998109c104b4277a54a9c6aad3caca8d40e89290ca33f18e876e85158ad428 -SIZE (xpi/firefox-i18n-41.0/nl.xpi) = 446545 -SHA256 (xpi/firefox-i18n-41.0/nn-NO.xpi) = 6f39bbb77c7c07bcc5612b1715262f94d4d962b5148384ab2ec052e1a4b64eeb -SIZE (xpi/firefox-i18n-41.0/nn-NO.xpi) = 442561 -SHA256 (xpi/firefox-i18n-41.0/or.xpi) = c4fd3a8b1fbc8b79612b3d24b556419acce11a7836e21e7196dbe4e9eb0b4799 -SIZE (xpi/firefox-i18n-41.0/or.xpi) = 528104 -SHA256 (xpi/firefox-i18n-41.0/pa-IN.xpi) = 5ccc34672873d883693412696e0538dc16b96a712e0decad211fee4de5a2485f -SIZE (xpi/firefox-i18n-41.0/pa-IN.xpi) = 498581 -SHA256 (xpi/firefox-i18n-41.0/pl.xpi) = 757411d39b98fbfb71a7e502e44c27f64f01f8a3936bbb84b08f2a33ccf0c2b8 -SIZE (xpi/firefox-i18n-41.0/pl.xpi) = 400465 -SHA256 (xpi/firefox-i18n-41.0/pt-BR.xpi) = 65ae606a712e05cfffcd2f48a352c6b1b5abf17af7bac53c33a4877957566149 -SIZE (xpi/firefox-i18n-41.0/pt-BR.xpi) = 463057 -SHA256 (xpi/firefox-i18n-41.0/pt-PT.xpi) = 550605379e3224bc792a9d0c892dfa78253f075fb127779500d36ca17c6f393e -SIZE (xpi/firefox-i18n-41.0/pt-PT.xpi) = 443381 -SHA256 (xpi/firefox-i18n-41.0/rm.xpi) = 55d2765289fb4c58c9563136f2fcf56f15e955c42a3bf13252aefb3f6545cb28 -SIZE (xpi/firefox-i18n-41.0/rm.xpi) = 450638 -SHA256 (xpi/firefox-i18n-41.0/ro.xpi) = 4bad82622089310900ce2bb8c51aa9706ead23e5db1f143f2f672ad203777d9f -SIZE (xpi/firefox-i18n-41.0/ro.xpi) = 497506 -SHA256 (xpi/firefox-i18n-41.0/ru.xpi) = ecc0253088e310b0c696a6d371f4ba8418c35b9a37af89e6ba6594b458ec289b -SIZE (xpi/firefox-i18n-41.0/ru.xpi) = 412445 -SHA256 (xpi/firefox-i18n-41.0/si.xpi) = 635a596421c06dd5d5b00906fefc46462ffc8124b5dda2bd409bdcf188921e70 -SIZE (xpi/firefox-i18n-41.0/si.xpi) = 537933 -SHA256 (xpi/firefox-i18n-41.0/sk.xpi) = c3936ccbc02c6ce91d2f8ad339489ddca1840e7f3d8b17bd22a7dc41a4e11992 -SIZE (xpi/firefox-i18n-41.0/sk.xpi) = 472933 -SHA256 (xpi/firefox-i18n-41.0/son.xpi) = 24ad972e0cf7101962340eca64fdc56851699f207c629d5ed33dfe425b6d14a7 -SIZE (xpi/firefox-i18n-41.0/son.xpi) = 453251 -SHA256 (xpi/firefox-i18n-41.0/sl.xpi) = 38cba1c04cf4f67d1dd5ff906cea46d85f7de0267f16abe6c3d4c907beccd2f9 -SIZE (xpi/firefox-i18n-41.0/sl.xpi) = 445744 -SHA256 (xpi/firefox-i18n-41.0/sq.xpi) = ca0bd383ad3c871e52e0006ec7489ef590edf72f4894ebea75edb6b52b567953 -SIZE (xpi/firefox-i18n-41.0/sq.xpi) = 491167 -SHA256 (xpi/firefox-i18n-41.0/sr.xpi) = 59be1f67f0de0daa1800f806ec5760e6df852b46a65c4d99ead16dab6d35bab7 -SIZE (xpi/firefox-i18n-41.0/sr.xpi) = 482969 -SHA256 (xpi/firefox-i18n-41.0/sv-SE.xpi) = 949e99a51e305e35e310b3bb6ce77f57ea9e67adc9609704b240dadeaffc4351 -SIZE (xpi/firefox-i18n-41.0/sv-SE.xpi) = 455381 -SHA256 (xpi/firefox-i18n-41.0/ta.xpi) = 38b8529a311078571bb3d876576c788b9b299f5d167e2a6820919238c23de979 -SIZE (xpi/firefox-i18n-41.0/ta.xpi) = 509543 -SHA256 (xpi/firefox-i18n-41.0/te.xpi) = 658c162206d3545f59f2b1847e4635a80211cb76bdb9d040e53bcaf52a6fed48 -SIZE (xpi/firefox-i18n-41.0/te.xpi) = 530202 -SHA256 (xpi/firefox-i18n-41.0/th.xpi) = 3d6344bf7c129acd3f5527ffdad07c9388e5351966c7eeec919b23e9653bbb64 -SIZE (xpi/firefox-i18n-41.0/th.xpi) = 539599 -SHA256 (xpi/firefox-i18n-41.0/tr.xpi) = 65e7b4601f9dc50dea179b0eaf3e6a41a4634d43c667e2d84eb0b85dd11e5302 -SIZE (xpi/firefox-i18n-41.0/tr.xpi) = 484231 -SHA256 (xpi/firefox-i18n-41.0/uk.xpi) = b53435b077205b2c7455b139f4555251da3df4dbe072e9ce779b72a8d8c19d47 -SIZE (xpi/firefox-i18n-41.0/uk.xpi) = 500109 -SHA256 (xpi/firefox-i18n-41.0/vi.xpi) = ea794e879c90d30185f61f744490fd29b706334b4d9068b7e65002ca5a51909c -SIZE (xpi/firefox-i18n-41.0/vi.xpi) = 470334 -SHA256 (xpi/firefox-i18n-41.0/xh.xpi) = 8bc89179c1e2e298104dd50f383c93e30ae330978abdeaa1869fd2160aea58dd -SIZE (xpi/firefox-i18n-41.0/xh.xpi) = 450078 -SHA256 (xpi/firefox-i18n-41.0/zh-CN.xpi) = 47fe8497bf214ab2275e5be325edba33c96c28a015f8d450f1be9b57710c8ab8 -SIZE (xpi/firefox-i18n-41.0/zh-CN.xpi) = 486220 -SHA256 (xpi/firefox-i18n-41.0/zh-TW.xpi) = c0163e959663dfcdb977f5fc87af13d4129b61a4b8d73889cd830f8f9d16ca29 -SIZE (xpi/firefox-i18n-41.0/zh-TW.xpi) = 479031 +SHA256 (xpi/firefox-i18n-41.0.1/ach.xpi) = 0e1d7e0b07071e09e3aa8e7b1f2585a1f41226f86abecd60129acb6c29fdf795 +SIZE (xpi/firefox-i18n-41.0.1/ach.xpi) = 483441 +SHA256 (xpi/firefox-i18n-41.0.1/af.xpi) = 97350ade6c4b818a13c884c2840c196825d246386f11cef04fa7d45eab6329f3 +SIZE (xpi/firefox-i18n-41.0.1/af.xpi) = 486122 +SHA256 (xpi/firefox-i18n-41.0.1/an.xpi) = 202562e26cf563b1370b4484d011205db79632ff1fb8ad68d950f7eaf1d1ef6c +SIZE (xpi/firefox-i18n-41.0.1/an.xpi) = 464518 +SHA256 (xpi/firefox-i18n-41.0.1/ar.xpi) = 53d3aeb3303c1e0f73538a1af76617912c4faf78b5a463b9075c7fb9748bdf04 +SIZE (xpi/firefox-i18n-41.0.1/ar.xpi) = 521161 +SHA256 (xpi/firefox-i18n-41.0.1/as.xpi) = 12319363d20ae2d4338ef2faefd196c1aa79354266aaa96d5969365b27cf83aa +SIZE (xpi/firefox-i18n-41.0.1/as.xpi) = 511220 +SHA256 (xpi/firefox-i18n-41.0.1/ast.xpi) = df0b1298c2bd9f6d2957357a5600fca58a5f370fdd9fdb3bc34d4308fe3ef8c5 +SIZE (xpi/firefox-i18n-41.0.1/ast.xpi) = 399124 +SHA256 (xpi/firefox-i18n-41.0.1/az.xpi) = 88ccc2209ac5f96246fe47d877f6ec088c665c94443ad5e430878e30217f33ce +SIZE (xpi/firefox-i18n-41.0.1/az.xpi) = 492918 +SHA256 (xpi/firefox-i18n-41.0.1/be.xpi) = bdf4c9737194edec2f44b810d9fc5059e9afff25993064edfca55f06d184df86 +SIZE (xpi/firefox-i18n-41.0.1/be.xpi) = 453405 +SHA256 (xpi/firefox-i18n-41.0.1/bg.xpi) = b367bc4054df488173e914b3e872305f62ea9284ebf5b21828fa7f177c82883c +SIZE (xpi/firefox-i18n-41.0.1/bg.xpi) = 492967 +SHA256 (xpi/firefox-i18n-41.0.1/bn-BD.xpi) = 8ed5167d4e7fc2a50e4af4da10e1bcf09cc8fbd850fa7ac481fb1654c10be945 +SIZE (xpi/firefox-i18n-41.0.1/bn-BD.xpi) = 527572 +SHA256 (xpi/firefox-i18n-41.0.1/bn-IN.xpi) = 1cfd6cea984e69066fea5817366dd64ac491e5f9438b161aae64b427bcd90ca9 +SIZE (xpi/firefox-i18n-41.0.1/bn-IN.xpi) = 530270 +SHA256 (xpi/firefox-i18n-41.0.1/br.xpi) = f8e0b8d5f3c84a40df2661e7a6a2b6c3ae33016136a627454466020626b90a42 +SIZE (xpi/firefox-i18n-41.0.1/br.xpi) = 444532 +SHA256 (xpi/firefox-i18n-41.0.1/bs.xpi) = 6e5cd1996bc7483cd9e5f2bb7e3064c4f5ebce3cec4425a95269894865cbe70b +SIZE (xpi/firefox-i18n-41.0.1/bs.xpi) = 486282 +SHA256 (xpi/firefox-i18n-41.0.1/ca.xpi) = 8b70cac78f887946d5d50116844c5aa68c979bfc6f2739808d4710eb5694d1ad +SIZE (xpi/firefox-i18n-41.0.1/ca.xpi) = 461322 +SHA256 (xpi/firefox-i18n-41.0.1/cs.xpi) = 514f7c3b1c5d4fdce48fea2e4510999bdc79e21093c665ae8290c0eef00b4539 +SIZE (xpi/firefox-i18n-41.0.1/cs.xpi) = 450334 +SHA256 (xpi/firefox-i18n-41.0.1/cy.xpi) = b9c010802272a374282400216a37690cef3488ab6cd78778241a1039ce9b15a5 +SIZE (xpi/firefox-i18n-41.0.1/cy.xpi) = 448184 +SHA256 (xpi/firefox-i18n-41.0.1/da.xpi) = 1aed18769fbd440e811d2893fdbcf48b3f82ada7c2accc2777b4c8128f0e6678 +SIZE (xpi/firefox-i18n-41.0.1/da.xpi) = 453405 +SHA256 (xpi/firefox-i18n-41.0.1/de.xpi) = cfd357e6a681f84f7a42db2097f7df5bb8d99cbc72bc6b5d5e7f7af731b26c34 +SIZE (xpi/firefox-i18n-41.0.1/de.xpi) = 455711 +SHA256 (xpi/firefox-i18n-41.0.1/dsb.xpi) = be7aa74f254c16920697993ffa2915464a0b620afb109beaa4caa27d076e589d +SIZE (xpi/firefox-i18n-41.0.1/dsb.xpi) = 474538 +SHA256 (xpi/firefox-i18n-41.0.1/el.xpi) = 84e9c334fb97228e153801abebb364b140c8d83b5c0c74821a469d41cf1d2f63 +SIZE (xpi/firefox-i18n-41.0.1/el.xpi) = 501621 +SHA256 (xpi/firefox-i18n-41.0.1/en-GB.xpi) = cf29e810731e19fcffb1175f45dc2ade21cfc0fdcd96dc5176b83dccbc685767 +SIZE (xpi/firefox-i18n-41.0.1/en-GB.xpi) = 441100 +SHA256 (xpi/firefox-i18n-41.0.1/en-US.xpi) = 554b4988856adad5aae6ec21d3aab7b06d0970e08894aa771619ee8d2b8e1d62 +SIZE (xpi/firefox-i18n-41.0.1/en-US.xpi) = 471248 +SHA256 (xpi/firefox-i18n-41.0.1/en-ZA.xpi) = 968c4df0bde7ffb93247b0dfb301efe60027cd75e1ed55a07471776615122572 +SIZE (xpi/firefox-i18n-41.0.1/en-ZA.xpi) = 444146 +SHA256 (xpi/firefox-i18n-41.0.1/eo.xpi) = b132eb82edc724df6a52169e443f1e625c615fabbc2de144f58cd11d597908e5 +SIZE (xpi/firefox-i18n-41.0.1/eo.xpi) = 487996 +SHA256 (xpi/firefox-i18n-41.0.1/es-AR.xpi) = 9652be3eae31056f27e3b6fdcecedded4b0a095721c2fb762f6d1c6c4c50e57c +SIZE (xpi/firefox-i18n-41.0.1/es-AR.xpi) = 456519 +SHA256 (xpi/firefox-i18n-41.0.1/es-CL.xpi) = 0efc3546792328ab46d5772b10a02c43430be0ffed4e64a4cccd563ccfc84b12 +SIZE (xpi/firefox-i18n-41.0.1/es-CL.xpi) = 381634 +SHA256 (xpi/firefox-i18n-41.0.1/es-ES.xpi) = a6542c99b51a1661d1ffaa51e48c3d60b97ef2881bbff2fbeefca581fa5f5046 +SIZE (xpi/firefox-i18n-41.0.1/es-ES.xpi) = 370112 +SHA256 (xpi/firefox-i18n-41.0.1/es-MX.xpi) = ace4555517392aedd9a03b20a4f2caa2efc426e2042c91e83b83290cc5f3ac9b +SIZE (xpi/firefox-i18n-41.0.1/es-MX.xpi) = 460285 +SHA256 (xpi/firefox-i18n-41.0.1/et.xpi) = c90315bd392a6300942d399ca3faa19fe93e18718661e6f6e088eb671c481ecd +SIZE (xpi/firefox-i18n-41.0.1/et.xpi) = 445440 +SHA256 (xpi/firefox-i18n-41.0.1/eu.xpi) = 810e08f3fcac50e287fe4fdefeca3c76407b25b1147c08a850ac830f7b3c2027 +SIZE (xpi/firefox-i18n-41.0.1/eu.xpi) = 469718 +SHA256 (xpi/firefox-i18n-41.0.1/fa.xpi) = ebfd410f2ad1d12ff076ece62c665a7c25b97db8aa2fde3c16c0ac8964ad032e +SIZE (xpi/firefox-i18n-41.0.1/fa.xpi) = 516159 +SHA256 (xpi/firefox-i18n-41.0.1/ff.xpi) = 75c1661825e31f417bc662ca5c60053ddf4c5afc4e608358de255bd262de2f1d +SIZE (xpi/firefox-i18n-41.0.1/ff.xpi) = 454689 +SHA256 (xpi/firefox-i18n-41.0.1/fi.xpi) = 3384c59af108f186f6787291726216fdeabbba9837707139744f4a2336bb7b9c +SIZE (xpi/firefox-i18n-41.0.1/fi.xpi) = 447176 +SHA256 (xpi/firefox-i18n-41.0.1/fr.xpi) = 418a9119af70f689eba32e8a45bae02b2c27bd37cc439f58293d9d5e5bdfdfaa +SIZE (xpi/firefox-i18n-41.0.1/fr.xpi) = 465093 +SHA256 (xpi/firefox-i18n-41.0.1/fy-NL.xpi) = 65622f493c782108b259e384c6af1d5bfd17701f0f350c35c4de465cd617951d +SIZE (xpi/firefox-i18n-41.0.1/fy-NL.xpi) = 458776 +SHA256 (xpi/firefox-i18n-41.0.1/ga-IE.xpi) = de10c4a3136b24412a926c72836eabf982b51158f2257f1703d06782ff4a2acd +SIZE (xpi/firefox-i18n-41.0.1/ga-IE.xpi) = 473257 +SHA256 (xpi/firefox-i18n-41.0.1/gd.xpi) = bd5bb07fdaf9dc081d4135590862f929f88166e25cb29692627a6aad07c8dcaf +SIZE (xpi/firefox-i18n-41.0.1/gd.xpi) = 457500 +SHA256 (xpi/firefox-i18n-41.0.1/gl.xpi) = 54ca7876a1ce3c9add20e1f0434da6e130c69ac6009e6704d1df18fd644f0e9e +SIZE (xpi/firefox-i18n-41.0.1/gl.xpi) = 452612 +SHA256 (xpi/firefox-i18n-41.0.1/gu-IN.xpi) = e055bba4858a257f7562b32ed3eb316d42b5afca98f92cd3b5f42b336db3482b +SIZE (xpi/firefox-i18n-41.0.1/gu-IN.xpi) = 487516 +SHA256 (xpi/firefox-i18n-41.0.1/he.xpi) = fc4ec10279c6cd322e31cb43904667247c3b69aa7a1cc9f9354da307a06cf1c4 +SIZE (xpi/firefox-i18n-41.0.1/he.xpi) = 486490 +SHA256 (xpi/firefox-i18n-41.0.1/hi-IN.xpi) = 45a4656849c4367a545c6e1aedbcaee9a2e2d7312a64c6e7f56f95615f50ff0e +SIZE (xpi/firefox-i18n-41.0.1/hi-IN.xpi) = 509163 +SHA256 (xpi/firefox-i18n-41.0.1/hr.xpi) = 81e5cf9a8c318fdd46570284a324ec8f52dc172f0b2d583478375af27c497ecb +SIZE (xpi/firefox-i18n-41.0.1/hr.xpi) = 481336 +SHA256 (xpi/firefox-i18n-41.0.1/hsb.xpi) = ec81b38526e12b4b61ccf07de2a820d2d7c79e51186389dc29a6ea345b60adb1 +SIZE (xpi/firefox-i18n-41.0.1/hsb.xpi) = 472167 +SHA256 (xpi/firefox-i18n-41.0.1/hu.xpi) = 1b088745a37f2c29e384cb370c6fec7eb2dbdb4ec9698d2a7908daaedabf961a +SIZE (xpi/firefox-i18n-41.0.1/hu.xpi) = 457035 +SHA256 (xpi/firefox-i18n-41.0.1/hy-AM.xpi) = cc6ca6d9035244c85fcc6cfb6c9df05b4b93614ddd7d015688c83d70cf686686 +SIZE (xpi/firefox-i18n-41.0.1/hy-AM.xpi) = 538341 +SHA256 (xpi/firefox-i18n-41.0.1/id.xpi) = fe3dfe15e08da87a913c6483689870b5a7e64393b792e8bca9daf0692193682f +SIZE (xpi/firefox-i18n-41.0.1/id.xpi) = 433972 +SHA256 (xpi/firefox-i18n-41.0.1/is.xpi) = 7ca5c3d7506328b7e2cc92b2f631c97bcac87869f983318cf5b1f99384424e6d +SIZE (xpi/firefox-i18n-41.0.1/is.xpi) = 488113 +SHA256 (xpi/firefox-i18n-41.0.1/it.xpi) = 5755fe268cb7f79120abb5c49143b6f00e4830b4adb296bcaf797feca9cb158a +SIZE (xpi/firefox-i18n-41.0.1/it.xpi) = 363986 +SHA256 (xpi/firefox-i18n-41.0.1/ja.xpi) = 33fef07433a939b9d53ab18638c31676df709538c747ff72fd889c4fc940c61a +SIZE (xpi/firefox-i18n-41.0.1/ja.xpi) = 483304 +SHA256 (xpi/firefox-i18n-41.0.1/kk.xpi) = 64fbfa53fed92d8e456b1bfbb2eee8116596de671521ffa623b8997711860d0f +SIZE (xpi/firefox-i18n-41.0.1/kk.xpi) = 508365 +SHA256 (xpi/firefox-i18n-41.0.1/km.xpi) = 4fc735b224cdea455ed105e0d776c0e607503c7f64c1657ef894d943f4ef917a +SIZE (xpi/firefox-i18n-41.0.1/km.xpi) = 571709 +SHA256 (xpi/firefox-i18n-41.0.1/kn.xpi) = a6399f7890d658b6f808cbbb65ba7f3ee3f746bb3b30410a79cf9623936a35b9 +SIZE (xpi/firefox-i18n-41.0.1/kn.xpi) = 539239 +SHA256 (xpi/firefox-i18n-41.0.1/ko.xpi) = 0a32fd625b1d6254b7cc11839ddda1d354d65188cf79e4a695a9f72ed71d77a7 +SIZE (xpi/firefox-i18n-41.0.1/ko.xpi) = 464905 +SHA256 (xpi/firefox-i18n-41.0.1/lij.xpi) = a9eb7af3225bef89c6ca35b0fa5bc8781605b6b9abb4abebe293e2b8e0ce7c70 +SIZE (xpi/firefox-i18n-41.0.1/lij.xpi) = 451194 +SHA256 (xpi/firefox-i18n-41.0.1/lt.xpi) = a9255f0f3ee96e5a0779a72b68b5c55fd3de773803ef0a5ad3a78ed2461733b7 +SIZE (xpi/firefox-i18n-41.0.1/lt.xpi) = 490119 +SHA256 (xpi/firefox-i18n-41.0.1/lv.xpi) = 57ab2c15cd4b40aa551ea1d7574108f16742fec42d7bb2022f096fddfe130f95 +SIZE (xpi/firefox-i18n-41.0.1/lv.xpi) = 470365 +SHA256 (xpi/firefox-i18n-41.0.1/mai.xpi) = 1fb55aaeee4a2a9b46f375940383c59c827aae1ffab508276c4b90969f695ccd +SIZE (xpi/firefox-i18n-41.0.1/mai.xpi) = 517161 +SHA256 (xpi/firefox-i18n-41.0.1/mk.xpi) = 39113b209f9e17825d87253dcb77101fc4e4d18f67ba5b0efc32077894a64c29 +SIZE (xpi/firefox-i18n-41.0.1/mk.xpi) = 530866 +SHA256 (xpi/firefox-i18n-41.0.1/ml.xpi) = d52d8c7d614a0454ffe10c040b2a939ba428dee68d20d87005a50e9d7e67923b +SIZE (xpi/firefox-i18n-41.0.1/ml.xpi) = 529032 +SHA256 (xpi/firefox-i18n-41.0.1/mr.xpi) = 61fafdbfa825d695d6c5d38512c4ebf1559f7b39ad71de2351ea0584de965125 +SIZE (xpi/firefox-i18n-41.0.1/mr.xpi) = 511325 +SHA256 (xpi/firefox-i18n-41.0.1/ms.xpi) = 6ac0595e0a299e5a798c39bfaf8611bd0be92056b6496f811437ae738ff24772 +SIZE (xpi/firefox-i18n-41.0.1/ms.xpi) = 493485 +SHA256 (xpi/firefox-i18n-41.0.1/nb-NO.xpi) = 09c2e095dc6ee63dfbae0122c47d28e39b2764c398bb08d432253c1d123cb43e +SIZE (xpi/firefox-i18n-41.0.1/nb-NO.xpi) = 446372 +SHA256 (xpi/firefox-i18n-41.0.1/nl.xpi) = 8c0a359d85490b71af556e095592c466896b7d4cc80ad59c21a5bff67737c24b +SIZE (xpi/firefox-i18n-41.0.1/nl.xpi) = 446548 +SHA256 (xpi/firefox-i18n-41.0.1/nn-NO.xpi) = cd1ea65e70986de0bf36ca8ce68c822def20bf67c1aab1086902fd5a3193f76a +SIZE (xpi/firefox-i18n-41.0.1/nn-NO.xpi) = 442563 +SHA256 (xpi/firefox-i18n-41.0.1/or.xpi) = 274c5f764c47d357104acb27baf52546307ebefb649e0b99731863a91094ad47 +SIZE (xpi/firefox-i18n-41.0.1/or.xpi) = 528106 +SHA256 (xpi/firefox-i18n-41.0.1/pa-IN.xpi) = 7ae13e9687eb86499a624d72f71cc37e43a2346517be4b0f7319270495906fc4 +SIZE (xpi/firefox-i18n-41.0.1/pa-IN.xpi) = 498583 +SHA256 (xpi/firefox-i18n-41.0.1/pl.xpi) = fad85972b99e17b959cdc0f79786f6900b9719e9c8bf503e746e53313d72ef8a +SIZE (xpi/firefox-i18n-41.0.1/pl.xpi) = 400466 +SHA256 (xpi/firefox-i18n-41.0.1/pt-BR.xpi) = ad65a013ef7044cc7946f31b6d4c81b287250c59165317107b591b9add998c8c +SIZE (xpi/firefox-i18n-41.0.1/pt-BR.xpi) = 463059 +SHA256 (xpi/firefox-i18n-41.0.1/pt-PT.xpi) = f30c6297d6446087a6d1466b15e9f21ffbab89508ab0b4bdde3bf22f779fcd6f +SIZE (xpi/firefox-i18n-41.0.1/pt-PT.xpi) = 443383 +SHA256 (xpi/firefox-i18n-41.0.1/rm.xpi) = 8dcc565897afa57fb7c4e53aa3eff9abd4522a11be5ad4924a9dbe2e83bf7b42 +SIZE (xpi/firefox-i18n-41.0.1/rm.xpi) = 450640 +SHA256 (xpi/firefox-i18n-41.0.1/ro.xpi) = 0bbb369d396282e79b111398733174a84bc6c92268bbf3e040d0c8a363e05a50 +SIZE (xpi/firefox-i18n-41.0.1/ro.xpi) = 497507 +SHA256 (xpi/firefox-i18n-41.0.1/ru.xpi) = 824111f820b81de57bbdbde11ea18bc590c1b35b6a90c857129eacd9fc12226a +SIZE (xpi/firefox-i18n-41.0.1/ru.xpi) = 412447 +SHA256 (xpi/firefox-i18n-41.0.1/si.xpi) = 1c133f62d128f647b361cbb9e717009855908893b5bc6da869812a7e2cf48a79 +SIZE (xpi/firefox-i18n-41.0.1/si.xpi) = 537934 +SHA256 (xpi/firefox-i18n-41.0.1/sk.xpi) = 05108f1c11115fba1c4271103b9466ae8cf357516c42f4a273f8b3b9de087063 +SIZE (xpi/firefox-i18n-41.0.1/sk.xpi) = 472935 +SHA256 (xpi/firefox-i18n-41.0.1/sl.xpi) = 3ce7b9d2517dadd947f1849d58edeacea42a8c7a68ec1ef86f06e7111006c0c3 +SIZE (xpi/firefox-i18n-41.0.1/sl.xpi) = 445746 +SHA256 (xpi/firefox-i18n-41.0.1/son.xpi) = 66daa25c3f9e448ff9b9906fd5ff17393d8aa31ae68109a35d376a2c28e31b6c +SIZE (xpi/firefox-i18n-41.0.1/son.xpi) = 453253 +SHA256 (xpi/firefox-i18n-41.0.1/sq.xpi) = e764b9cb6583aebf52e071f539237bbfe535a715d1939d5a664b60c35b0f668e +SIZE (xpi/firefox-i18n-41.0.1/sq.xpi) = 491168 +SHA256 (xpi/firefox-i18n-41.0.1/sr.xpi) = e39ee04fc8ca4fe6543708ec3a5e49fc99b8801de4e323e33e8f5c3f11842c12 +SIZE (xpi/firefox-i18n-41.0.1/sr.xpi) = 482971 +SHA256 (xpi/firefox-i18n-41.0.1/sv-SE.xpi) = 447097907572849eab9b8ca1a60d87fc7df071808cac82297f8ea5f2ac46b0f4 +SIZE (xpi/firefox-i18n-41.0.1/sv-SE.xpi) = 455382 +SHA256 (xpi/firefox-i18n-41.0.1/ta.xpi) = ce187fb6594319345a668607ee36436384e06b0908086d2e89e801b27fe478ad +SIZE (xpi/firefox-i18n-41.0.1/ta.xpi) = 509545 +SHA256 (xpi/firefox-i18n-41.0.1/te.xpi) = a0290f5bd0b877433a4afcc2b447f96c14087c1b6e143dc5962d7da4a10dc6b3 +SIZE (xpi/firefox-i18n-41.0.1/te.xpi) = 530204 +SHA256 (xpi/firefox-i18n-41.0.1/th.xpi) = 67bcf41773e6fd389a96db578029f904d0d54a8ec46086e7382c1eff2eefdc8d +SIZE (xpi/firefox-i18n-41.0.1/th.xpi) = 539600 +SHA256 (xpi/firefox-i18n-41.0.1/tr.xpi) = 56250792a6768763153178be68998bd912cc6d2d33366023e83a92cfafc4bb85 +SIZE (xpi/firefox-i18n-41.0.1/tr.xpi) = 484232 +SHA256 (xpi/firefox-i18n-41.0.1/uk.xpi) = bfc13862f69b9270ec45595e5f42cbd2ac893a06d193c1e57b6bcfe0a47928c1 +SIZE (xpi/firefox-i18n-41.0.1/uk.xpi) = 500110 +SHA256 (xpi/firefox-i18n-41.0.1/uz.xpi) = 91b3337740a55672a6c9065a74cd677a0d2cb7388e855d4e214860631df78c49 +SIZE (xpi/firefox-i18n-41.0.1/uz.xpi) = 501949 +SHA256 (xpi/firefox-i18n-41.0.1/vi.xpi) = 949eca406e118a6508912d379babde3cde6d20154da59260e760c1ef07d2dbb3 +SIZE (xpi/firefox-i18n-41.0.1/vi.xpi) = 470336 +SHA256 (xpi/firefox-i18n-41.0.1/xh.xpi) = 791d68f4e7b43201478c4334dea7bd9812f1df2e82a36c6b89af62bf1ca88cd4 +SIZE (xpi/firefox-i18n-41.0.1/xh.xpi) = 450079 +SHA256 (xpi/firefox-i18n-41.0.1/zh-CN.xpi) = 6719c7ab93c9ccba84630247ab33c4f61971e8052bb73442ea196e37de90d7cc +SIZE (xpi/firefox-i18n-41.0.1/zh-CN.xpi) = 486222 +SHA256 (xpi/firefox-i18n-41.0.1/zh-TW.xpi) = c14373d6b8d5e978864a29ce35d50d2c0430d12befd9cc284dd8b63f86356b1b +SIZE (xpi/firefox-i18n-41.0.1/zh-TW.xpi) = 479033 From owner-svn-ports-head@freebsd.org Sat Oct 10 19:53: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 C8DBBA10B1A; Sat, 10 Oct 2015 19:53:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 887248B0; Sat, 10 Oct 2015 19:53:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AJraVG018805; Sat, 10 Oct 2015 19:53:36 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AJra94018804; Sat, 10 Oct 2015 19:53:36 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510101953.t9AJra94018804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 19:53:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399015 - head/Mk 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: Sat, 10 Oct 2015 19:53:37 -0000 Author: bapt Date: Sat Oct 10 19:53:36 2015 New Revision: 399015 URL: https://svnweb.freebsd.org/changeset/ports/399015 Log: Check if the port directory is aboslute otherwise prepend ${PORTSDIR} in FETCH_LIST It allows dependencies to be defined without ${PORTSDIR} Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Oct 10 19:51:12 2015 (r399014) +++ head/Mk/bsd.port.mk Sat Oct 10 19:53:36 2015 (r399015) @@ -4439,6 +4439,10 @@ fetch-recursive-list: # -mi FETCH_LIST?= for i in $$deps; do \ prog=$${i%%:*}; dir=$${i\#*:}; \ + case $$dir in \ + /*) ;; \ + *) dir=${PORTSDIR}/$$dir ;; \ + esac; \ case $$dir in \ *:*) if [ $$prog != $${prog\#/} -o ! -e $$prog ]; then \ dir=$${dir%%:*}; \ From owner-svn-ports-head@freebsd.org Sat Oct 10 20:16:36 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 92B9AA10DF9; Sat, 10 Oct 2015 20:16:36 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 616F011FC; Sat, 10 Oct 2015 20:16:36 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AKGZU5024839; Sat, 10 Oct 2015 20:16:35 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AKGZtI024834; Sat, 10 Oct 2015 20:16:35 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201510102016.t9AKGZtI024834@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Sat, 10 Oct 2015 20:16:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399016 - head/devel/p4p 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: Sat, 10 Oct 2015 20:16:36 -0000 Author: gordon Date: Sat Oct 10 20:16:34 2015 New Revision: 399016 URL: https://svnweb.freebsd.org/changeset/ports/399016 Log: Update devel/p4p to 2015.1/1240625 Fix due to micropatching breaking fetch Approved by: mat (mentor, implicit) MFH: 2015Q4 Modified: head/devel/p4p/Makefile head/devel/p4p/distinfo.freebsd100x86 head/devel/p4p/distinfo.freebsd100x86_64 head/devel/p4p/distinfo.freebsd70x86 head/devel/p4p/distinfo.freebsd70x86_64 Modified: head/devel/p4p/Makefile ============================================================================== --- head/devel/p4p/Makefile Sat Oct 10 19:53:36 2015 (r399015) +++ head/devel/p4p/Makefile Sat Oct 10 20:16:34 2015 (r399016) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4p -PORTVERSION= 2015.1.1227227 +PORTVERSION= 2015.1.1240625 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4p/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4p/distinfo.freebsd100x86 Sat Oct 10 19:53:36 2015 (r399015) +++ head/devel/p4p/distinfo.freebsd100x86 Sat Oct 10 20:16:34 2015 (r399016) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1227227/bin.freebsd100x86/p4p) = c11abfc70aa0e3601f5f2ce22e0360ec9e41b83b629a64af2c73f7d719745821 -SIZE (perforce/2015.1.1227227/bin.freebsd100x86/p4p) = 2362784 +SHA256 (perforce/2015.1.1240625/bin.freebsd100x86/p4p) = a306d9eeba4f5c19a074d2751cf6f2075db14f11fb3547a11adf1d64a69be4be +SIZE (perforce/2015.1.1240625/bin.freebsd100x86/p4p) = 2362784 Modified: head/devel/p4p/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4p/distinfo.freebsd100x86_64 Sat Oct 10 19:53:36 2015 (r399015) +++ head/devel/p4p/distinfo.freebsd100x86_64 Sat Oct 10 20:16:34 2015 (r399016) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1227227/bin.freebsd100x86_64/p4p) = cf0e02061e4cf0083e538fef6601ca3be114fce4508e794c4410b7fe4197e57c -SIZE (perforce/2015.1.1227227/bin.freebsd100x86_64/p4p) = 2628656 +SHA256 (perforce/2015.1.1240625/bin.freebsd100x86_64/p4p) = 6ebaad1447fa66d41e58fb3d772f0667dd55b9790e287b44b1b14d4c5db1f7f8 +SIZE (perforce/2015.1.1240625/bin.freebsd100x86_64/p4p) = 2628656 Modified: head/devel/p4p/distinfo.freebsd70x86 ============================================================================== --- head/devel/p4p/distinfo.freebsd70x86 Sat Oct 10 19:53:36 2015 (r399015) +++ head/devel/p4p/distinfo.freebsd70x86 Sat Oct 10 20:16:34 2015 (r399016) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1227227/bin.freebsd70x86/p4p) = 9f10efa7dff4bcd87f8270769f52a137fa7a2598e33b1287a2a3fbf304ecd6e9 -SIZE (perforce/2015.1.1227227/bin.freebsd70x86/p4p) = 2404256 +SHA256 (perforce/2015.1.1240625/bin.freebsd70x86/p4p) = 64b484473dd47af3b38e1e0584da6ec19a5615e463bd7dfe4f74db15fc0f5e65 +SIZE (perforce/2015.1.1240625/bin.freebsd70x86/p4p) = 2404320 Modified: head/devel/p4p/distinfo.freebsd70x86_64 ============================================================================== --- head/devel/p4p/distinfo.freebsd70x86_64 Sat Oct 10 19:53:36 2015 (r399015) +++ head/devel/p4p/distinfo.freebsd70x86_64 Sat Oct 10 20:16:34 2015 (r399016) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1227227/bin.freebsd70x86_64/p4p) = 43321600030a85712b829beab35e38375a5d68978dcac5dd11a23ce905c3a56c -SIZE (perforce/2015.1.1227227/bin.freebsd70x86_64/p4p) = 2602424 +SHA256 (perforce/2015.1.1240625/bin.freebsd70x86_64/p4p) = 711f2184940470eca32aac874321cba94ed491ad5e3cfa71333c8578e1e2cf66 +SIZE (perforce/2015.1.1240625/bin.freebsd70x86_64/p4p) = 2602552 From owner-svn-ports-head@freebsd.org Sat Oct 10 20:23:41 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 646CDA10F62; Sat, 10 Oct 2015 20:23:41 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 272441885; Sat, 10 Oct 2015 20:23:41 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AKNeR7027700; Sat, 10 Oct 2015 20:23:40 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AKNepJ027699; Sat, 10 Oct 2015 20:23:40 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510102023.t9AKNepJ027699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 20:23:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399017 - head/Mk 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: Sat, 10 Oct 2015 20:23:41 -0000 Author: bapt Date: Sat Oct 10 20:23:40 2015 New Revision: 399017 URL: https://svnweb.freebsd.org/changeset/ports/399017 Log: Remove unused variable Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Oct 10 20:16:34 2015 (r399016) +++ head/Mk/bsd.port.mk Sat Oct 10 20:23:40 2015 (r399017) @@ -3031,7 +3031,6 @@ check-deprecated: # Check if the port is listed in the vulnerability database AUDITFILE?= ${PKG_DBDIR}/vuln.xml -_EXTRACT_AUDITFILE= ${CAT} "${AUDITFILE}" check-vulnerable: .if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING) From owner-svn-ports-head@freebsd.org Sat Oct 10 20:38: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 359F39D2323; Sat, 10 Oct 2015 20:38:47 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F41111FBD; Sat, 10 Oct 2015 20:38:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AKchAj030828; Sat, 10 Oct 2015 20:38:43 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AKcgLp030826; Sat, 10 Oct 2015 20:38:42 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510102038.t9AKcgLp030826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 20:38:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399018 - in head: . ports-mgmt ports-mgmt/bpm 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: Sat, 10 Oct 2015 20:38:47 -0000 Author: bapt Date: Sat Oct 10 20:38:42 2015 New Revision: 399018 URL: https://svnweb.freebsd.org/changeset/ports/399018 Log: Remove bpm which does not support pkg and has no upstream anymore Deleted: head/ports-mgmt/bpm/ Modified: head/MOVED head/ports-mgmt/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sat Oct 10 20:23:40 2015 (r399017) +++ head/MOVED Sat Oct 10 20:38:42 2015 (r399018) @@ -7889,3 +7889,4 @@ net/linc-reference||2015-09-27|Has expir x11/xlogout||2015-09-27|Has expired: Useless cruft from 1989 net/rubygem-amq-client||2015-10-01|Has expired: Deprecated by Upstream. It is part of net/rubygem-amqp codebase now emulators/ppsspp-devel|emulators/ppsspp|2015-10-06|Out of date: use emulators/ppsspp for now +ports-mgmt/bpm||2015-10-10|No support for pkg Modified: head/ports-mgmt/Makefile ============================================================================== --- head/ports-mgmt/Makefile Sat Oct 10 20:23:40 2015 (r399017) +++ head/ports-mgmt/Makefile Sat Oct 10 20:38:42 2015 (r399018) @@ -3,7 +3,6 @@ COMMENT = Ports for managing, installing, and developing FreeBSD ports and packages - SUBDIR += bpm SUBDIR += chucky SUBDIR += dialog4ports SUBDIR += dialog4ports-static From owner-svn-ports-head@freebsd.org Sat Oct 10 20:52: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 76F249D260B; Sat, 10 Oct 2015 20:52:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 327268AB; Sat, 10 Oct 2015 20:52:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AKqL37036610; Sat, 10 Oct 2015 20:52:21 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AKqKpD036602; Sat, 10 Oct 2015 20:52:20 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201510102052.t9AKqKpD036602@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Sat, 10 Oct 2015 20:52:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399019 - in head/irc/weechat: . 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: Sat, 10 Oct 2015 20:52:22 -0000 Author: garga Date: Sat Oct 10 20:52:20 2015 New Revision: 399019 URL: https://svnweb.freebsd.org/changeset/ports/399019 Log: Upgrade irc/weechat to 1.3 Added: head/irc/weechat/files/patch-cmake_FindIconv.cmake - copied unchanged from r399012, head/irc/weechat/files/patch-cmake-FindIconv.cmake head/irc/weechat/files/patch-cmake_FindLua.cmake - copied unchanged from r399012, head/irc/weechat/files/patch-cmake-FindLua_cmake head/irc/weechat/files/patch-cmake_FindPython.cmake - copied unchanged from r399012, head/irc/weechat/files/patch-cmake-FindPython_cmake head/irc/weechat/files/patch-cmake_FindRuby.cmake - copied, changed from r399012, head/irc/weechat/files/patch-cmake-FindRuby_cmake head/irc/weechat/files/patch-cmake_FindTCL.cmake - copied unchanged from r399012, head/irc/weechat/files/patch-cmake-FindTCL_cmake Deleted: head/irc/weechat/files/patch-cmake-FindIconv.cmake head/irc/weechat/files/patch-cmake-FindLua_cmake head/irc/weechat/files/patch-cmake-FindPython_cmake head/irc/weechat/files/patch-cmake-FindRuby_cmake head/irc/weechat/files/patch-cmake-FindTCL_cmake Modified: head/irc/weechat/Makefile head/irc/weechat/distinfo head/irc/weechat/pkg-plist Modified: head/irc/weechat/Makefile ============================================================================== --- head/irc/weechat/Makefile Sat Oct 10 20:38:42 2015 (r399018) +++ head/irc/weechat/Makefile Sat Oct 10 20:52:20 2015 (r399019) @@ -2,13 +2,9 @@ # $FreeBSD$ PORTNAME= weechat -PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTVERSION= 1.3 CATEGORIES= irc -MASTER_SITES= http://weechat.org/files/src/ \ - http://perturb.me.uk/distfiles/weechat/:mandocs \ - LOCAL/jase/weechat/:mandocs -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +MASTER_SITES= http://weechat.org/files/src/ MAINTAINER= jase@FreeBSD.org COMMENT= Lightweight and user friendly ncurses based IRC client @@ -18,119 +14,100 @@ LICENSE= GPLv3 CONFLICTS= weechat-devel-[0-9]* USE_LDCONFIG= yes -USES= cmake iconv ncurses +USES= cmake iconv ncurses tar:bzip2 CMAKE_ARGS+= -DENABLE_GUILE=no \ -DICONV_INCLUDE_PATH=${ICONV_INCLUDE_PATH} -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl \ - libgcrypt.so:${PORTSDIR}/security/libgcrypt + libgcrypt.so:${PORTSDIR}/security/libgcrypt OPTIONS_DEFINE= RUBY PYTHON PERL TCL LUA CHARSET BACKTRACE ASPELL \ - GNUTLS CA_BUNDLE NLS ICON MANPAGES DOCS + GNUTLS CA_BUNDLE NLS ICON MANPAGES DOCS OPTIONS_DEFAULT=RUBY PYTHON PERL TCL LUA CHARSET BACKTRACE ASPELL \ - GNUTLS CA_BUNDLE ICON MANPAGES + GNUTLS CA_BUNDLE ICON MANPAGES OPTIONS_SUB= yes BACKTRACE_DESC= Provide crash backtraces CA_BUNDLE_DESC= Include CA bundle for certificate verification CHARSET_DESC= Charset conversion support -ICON_DESC= Desktop icon +ICON_DESC= Desktop icon PYTHON_DESC= Python scripting language support -RUBY_DESC= Ruby scripting language support +RUBY_DESC= Ruby scripting language support ASPELL_CMAKE_OFF= -DENABLE_ASPELL=no ASPELL_LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell BACKTRACE_LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo -CA_BUNDLE_CMAKE_ON= -DCA_FILE=${LOCALBASE}/share/certs/ca-root-nss.crt +CA_BUNDLE_CMAKE_ON= -DCA_FILE=${LOCALBASE}/share/certs/ca-root-nss.crt CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss CHARSET_CMAKE_OFF= -DENABLE_CHARSET=no +DOCS_CMAKE_ON= -DENABLE_DOC=yes + GNUTLS_CMAKE_OFF= -DENABLE_GNUTLS=no GNUTLS_USES= pkgconfig GNUTLS_LIB_DEPENDS= libgnutls.so.28:${PORTSDIR}/security/gnutls LUA_CMAKE_OFF= -DENABLE_LUA=no LUA_CMAKE_ON= -DBSD_LUA_LIBDIR=${LUA_LIBDIR} \ - -DBSD_LUA_INCDIR=${LUA_INCDIR} \ - -DBSD_LUA_VER=${LUA_VER} -LUA_USES= lua:51 + -DBSD_LUA_INCDIR=${LUA_INCDIR} \ + -DBSD_LUA_VER=${LUA_VER} +LUA_USES= lua:51 + +MANPAGES_CMAKE_ON= -DENABLE_MAN=yes -DMANDIR=${MANPREFIX}/man NLS_CMAKE_OFF= -DENABLE_NLS=no -NLS_USES= gettext +NLS_USES= gettext PERL_CMAKE_OFF= -DENABLE_PERL=no -PERL_USES= perl5 +PERL_USES= perl5 PYTHON_CMAKE_OFF= -DENABLE_PYTHON=no PYTHON_CMAKE_ON= -DBSD_PYTHON_CMD=${PYTHON_CMD} \ - -DBSD_PYTHON_VER=${PYTHON_VERSION} + -DBSD_PYTHON_VER=${PYTHON_VERSION} PYTHON_USES= python RUBY_CMAKE_OFF= -DENABLE_RUBY=no RUBY_CMAKE_ON= -DBSD_RUBY_CMD=${RUBY} \ - -DBSD_RUBY_VER=${RUBY_NAME} -RUBY_USE= ruby=yes + -DBSD_RUBY_VER=${RUBY_NAME} +RUBY_USE= ruby=yes TCL_CMAKE_OFF= -DENABLE_TCL=no TCL_CMAKE_ON= -DBSD_TCL_VER=${TCL_VER} \ - -DBSD_TCL_LIBDIR=${LOCALBASE}/lib \ - -DBSD_TCL_INCDIR=${TCL_INCLUDEDIR} -TCL_USES= tcl:85+ - -.if defined(MAINTAINER_MODE) -BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \ - docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl \ - asciidoc:${PORTSDIR}/textproc/asciidoc \ - source-highlight>=3.1.5:${PORTSDIR}/textproc/source-highlight -CMAKE_ARGS+= -DENABLE_MAN=yes -DMANDIR=${MANPREFIX}/man -DENABLE_DOC=yes -.else -CMAKE_ARGS+= -DENABLE_MAN=no -DENABLE_DOC=no -.endif + -DBSD_TCL_LIBDIR=${LOCALBASE}/lib \ + -DBSD_TCL_INCDIR=${TCL_INCLUDEDIR} +TCL_USES= tcl:85+ .include -.if ${PORT_OPTIONS:MDOCS} && !defined(MAINTAINER_MODE) -DISTFILES+= ${DISTNAME}-docs.txz:mandocs -.endif - -.if ${PORT_OPTIONS:MMANPAGES} && !defined(MAINTAINER_MODE) -DISTFILES+= ${DISTNAME}-manpages.txz:mandocs +.if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MMANPAGES} +BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \ + docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl \ + asciidoc:${PORTSDIR}/textproc/asciidoc \ + source-highlight>=3.1.5:${PORTSDIR}/textproc/source-highlight .endif post-patch: - @${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' ${WRKSRC}/CMakeLists.txt - @${REINPLACE_CMD} -e 's|INSTALL|#INSTALL|' ${WRKSRC}/doc/CMakeLists.txt + @${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' \ + ${WRKSRC}/CMakeLists.txt .for f in src/CMakeLists.txt src/core/CMakeLists.txt cmake/*.cmake - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/${f} + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/${f} .endfor .if empty(PORT_OPTIONS:MBACKTRACE) - @${REINPLACE_CMD} -e '/IF.*FreeBSD/,/ENDIF.*FreeBSD/d' ${WRKSRC}/src/core/CMakeLists.txt + @${REINPLACE_CMD} -e '/IF.*FreeBSD/,/ENDIF.*FreeBSD/d' \ + ${WRKSRC}/src/core/CMakeLists.txt .endif .if empty(PORT_OPTIONS:MICON) - @${REINPLACE_CMD} -e '/^# icon$$/,/^$$/d' ${WRKSRC}/CMakeLists.txt + @${REINPLACE_CMD} -e '/^# icon$$/,/^$$/d' \ + ${WRKSRC}/CMakeLists.txt .endif post-install: -.if ${PORT_OPTIONS:MMANPAGES} && !defined(MAINTAINER_MODE) - ${INSTALL_MAN} ${WRKDIR}/manpages/man1/weechat.1.gz ${STAGEDIR}${PREFIX}/man/man1 -.for f in de fr it ja pl - @${MKDIR} ${STAGEDIR}${PREFIX}/man/${f}/man1 - ${INSTALL_MAN} ${WRKDIR}/manpages/${f}/man1/weechat.1.gz ${STAGEDIR}${PREFIX}/man/${f}/man1 -.endfor -.endif -.if ${PORT_OPTIONS:MDOCS} && !defined(MAINTAINER_MODE) - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKDIR}/docs/* ${STAGEDIR}${DOCSDIR}/ -.endif ${LN} -sf ${PREFIX}/bin/weechat ${STAGEDIR}${PREFIX}/bin/weechat-curses -# Make build fail to be able to take the generated manpages/docs from the archived wrkdir -.if defined(MAINTAINER_MODE) && defined(MAINTAINER_BREAK_BUILD) - @${FALSE} -.endif .include Modified: head/irc/weechat/distinfo ============================================================================== --- head/irc/weechat/distinfo Sat Oct 10 20:38:42 2015 (r399018) +++ head/irc/weechat/distinfo Sat Oct 10 20:52:20 2015 (r399019) @@ -1,6 +1,2 @@ -SHA256 (weechat-1.1.1.tar.gz) = a32f7e57d5e834195bacaffa874419b4a9d17cd42883c80d7ecb9fadbf601349 -SIZE (weechat-1.1.1.tar.gz) = 3294132 -SHA256 (weechat-1.1.1-docs.txz) = efb8f40e7e389b80420067889062215ac0a4636f80c55d573e9f235939abaa61 -SIZE (weechat-1.1.1-docs.txz) = 726876 -SHA256 (weechat-1.1.1-manpages.txz) = efcce2d00462371a9f9a47af1b5586dcac23e79542ad8b2340677ea37c20426b -SIZE (weechat-1.1.1-manpages.txz) = 13288 +SHA256 (weechat-1.3.tar.bz2) = 703dd771f74a2391bab656992712331d9151a227ac3210393a4ecf6458605148 +SIZE (weechat-1.3.tar.bz2) = 2402422 Copied: head/irc/weechat/files/patch-cmake_FindIconv.cmake (from r399012, head/irc/weechat/files/patch-cmake-FindIconv.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/weechat/files/patch-cmake_FindIconv.cmake Sat Oct 10 20:52:20 2015 (r399019, copy of r399012, head/irc/weechat/files/patch-cmake-FindIconv.cmake) @@ -0,0 +1,14 @@ +--- cmake/FindIconv.cmake ++++ cmake/FindIconv.cmake +@@ -48,9 +48,8 @@ find_library(ICONV_LIBRARY + + if(ICONV_INCLUDE_PATH) + if(ICONV_LIBRARY) +- string(REGEX REPLACE "/[^/]*$" "" ICONV_LIB_PATH "${ICONV_LIBRARY}") +- check_library_exists(iconv libiconv_open ${ICONV_LIB_PATH} LIBICONV_OPEN_FOUND) +- check_library_exists(iconv iconv_open ${ICONV_LIB_PATH} ICONV_OPEN_FOUND) ++ check_library_exists("${ICONV_LIBRARY}" libiconv_open "" LIBICONV_OPEN_FOUND) ++ check_library_exists("${ICONV_LIBRARY}" iconv_open "" ICONV_OPEN_FOUND) + if(LIBICONV_OPEN_FOUND OR ICONV_OPEN_FOUND) + set(ICONV_FOUND TRUE) + endif() Copied: head/irc/weechat/files/patch-cmake_FindLua.cmake (from r399012, head/irc/weechat/files/patch-cmake-FindLua_cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/weechat/files/patch-cmake_FindLua.cmake Sat Oct 10 20:52:20 2015 (r399019, copy of r399012, head/irc/weechat/files/patch-cmake-FindLua_cmake) @@ -0,0 +1,9 @@ +--- cmake/FindLua.cmake.orig 2015-01-12 09:12:09.922611844 +0000 ++++ cmake/FindLua.cmake 2015-01-12 09:23:01.083607077 +0000 +@@ -35,5 +35,5 @@ + + find_package(PkgConfig) + if(PKG_CONFIG_FOUND) +- pkg_search_module(LUA lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua51 lua-5.0 lua5.0 lua50 lua) ++ pkg_search_module(LUA lua-${BSD_LUA_VER}) + endif() Copied: head/irc/weechat/files/patch-cmake_FindPython.cmake (from r399012, head/irc/weechat/files/patch-cmake-FindPython_cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/weechat/files/patch-cmake_FindPython.cmake Sat Oct 10 20:52:20 2015 (r399019, copy of r399012, head/irc/weechat/files/patch-cmake-FindPython_cmake) @@ -0,0 +1,73 @@ +--- cmake/FindPython.cmake.orig 2015-01-12 09:23:34.292562072 +0000 ++++ cmake/FindPython.cmake 2015-01-12 09:32:04.954526522 +0000 +@@ -33,17 +33,9 @@ + set(PYTHON_FIND_QUIETLY TRUE) + endif() + +-if(ENABLE_PYTHON3) +- find_program(PYTHON_EXECUTABLE +- NAMES python3.4 python3.3 python3.2 python3.1 python3.0 python3 python2.7 python2.6 python2.5 python +- PATHS /usr/bin /usr/local/bin /usr/pkg/bin +- ) +-else() +- find_program(PYTHON_EXECUTABLE +- NAMES python2.7 python2.6 python2.5 python +- PATHS /usr/bin /usr/local/bin /usr/pkg/bin +- ) +-endif() ++find_program(PYTHON_EXECUTABLE ++ NAMES ${BSD_PYTHON_CMD} ++ ) + + if(PYTHON_EXECUTABLE) + execute_process( +@@ -52,11 +44,6 @@ + ) + + execute_process( +- COMMAND ${PYTHON_EXECUTABLE} -c "import sys; from distutils.sysconfig import *; sys.stdout.write(get_config_var('LIBPL'))" +- OUTPUT_VARIABLE PYTHON_POSSIBLE_LIB_PATH +- ) +- +- execute_process( + COMMAND ${PYTHON_EXECUTABLE} -c "import sys; from distutils.sysconfig import *; sys.stdout.write(get_config_var('LINKFORSHARED'))" + OUTPUT_VARIABLE PYTHON_LFLAGS + ) +@@ -65,32 +52,13 @@ + NAMES Python.h + HINTS ${PYTHON_INC_DIR} + ) +- if(ENABLE_PYTHON3) +- find_library(PYTHON_LIBRARY +- NAMES python3.4 python3.3 python3.2 python3.1 python3.0 python3 python2.7 python2.6 python2.5 python +- HINTS ${PYTHON_POSSIBLE_LIB_PATH} +- ) +- else() +- find_library(PYTHON_LIBRARY +- NAMES python2.7 python2.6 python2.5 python +- HINTS ${PYTHON_POSSIBLE_LIB_PATH} +- ) +- endif() ++ ++ find_library(PYTHON_LIBRARY ++ NAMES ${BSD_PYTHON_VER} ++ ) + + if(PYTHON_LIBRARY AND PYTHON_INCLUDE_PATH) +- execute_process( +- COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(sys.version[:3])" +- OUTPUT_VARIABLE PYTHON_VERSION +- ) +- execute_process( +- COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(str(sys.version_info < (2,5)))" +- OUTPUT_VARIABLE PYTHON_OLD_VERSION +- ) +- if(${PYTHON_OLD_VERSION} STREQUAL "True") +- message("Python >= 2.5 is needed to build python plugin, version found: ${PYTHON_VERSION}") +- else() +- set(PYTHON_FOUND TRUE) +- endif() ++ set(PYTHON_FOUND TRUE) + endif() + + mark_as_advanced( Copied and modified: head/irc/weechat/files/patch-cmake_FindRuby.cmake (from r399012, head/irc/weechat/files/patch-cmake-FindRuby_cmake) ============================================================================== --- head/irc/weechat/files/patch-cmake-FindRuby_cmake Sat Oct 10 19:15:56 2015 (r399012, copy source) +++ head/irc/weechat/files/patch-cmake_FindRuby.cmake Sat Oct 10 20:52:20 2015 (r399019) @@ -1,12 +1,12 @@ ---- cmake/FindRuby.cmake.orig 2015-01-12 09:32:28.592525659 +0000 -+++ cmake/FindRuby.cmake 2015-01-12 09:49:05.649456415 +0000 -@@ -31,22 +31,16 @@ +--- cmake/FindRuby.cmake.orig 2015-08-16 06:27:07 UTC ++++ cmake/FindRuby.cmake +@@ -31,22 +31,16 @@ if(RUBY_FOUND) set(RUBY_FIND_QUIETLY TRUE) endif() -find_package(PkgConfig) -if(PKG_CONFIG_FOUND) -- pkg_search_module(RUBY ruby-2.1 ruby-2.0 ruby-1.9 ruby-1.8) +- pkg_search_module(RUBY ruby-2.2 ruby-2.1 ruby-2.0 ruby-1.9 ruby-1.8) -endif() - if(RUBY_FOUND) @@ -16,7 +16,7 @@ find_program(RUBY_EXECUTABLE - NAMES ruby1.9.3 ruby193 ruby1.9.2 ruby192 ruby1.9.1 ruby191 ruby1.9 ruby19 ruby1.8 ruby18 ruby - PATHS /usr/bin /usr/local/bin /usr/pkg/bin -+ NAMES ${BSD_RUBY_CMD} ++ NAMES ${BSD_RUBY_CMD} ) if(RUBY_EXECUTABLE) execute_process( @@ -25,7 +25,7 @@ OUTPUT_VARIABLE RUBY_ARCH_DIR ) execute_process( -@@ -54,11 +48,11 @@ +@@ -54,11 +48,11 @@ else() OUTPUT_VARIABLE RUBY_ARCH ) execute_process( @@ -39,7 +39,7 @@ OUTPUT_VARIABLE RUBY_RUBY_LIB_PATH ) find_path(RUBY_INCLUDE_DIRS -@@ -67,8 +61,7 @@ +@@ -67,8 +61,7 @@ else() ) set(RUBY_INCLUDE_ARCH "${RUBY_INCLUDE_DIRS}/${RUBY_ARCH}") find_library(RUBY_LIB Copied: head/irc/weechat/files/patch-cmake_FindTCL.cmake (from r399012, head/irc/weechat/files/patch-cmake-FindTCL_cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/weechat/files/patch-cmake_FindTCL.cmake Sat Oct 10 20:52:20 2015 (r399019, copy of r399012, head/irc/weechat/files/patch-cmake-FindTCL_cmake) @@ -0,0 +1,105 @@ +--- cmake/FindTCL.cmake.orig 2015-01-12 09:49:31.591454833 +0000 ++++ cmake/FindTCL.cmake 2015-01-12 09:52:04.595540774 +0000 +@@ -55,97 +55,18 @@ + set(TCL_FIND_QUIETLY TRUE) + endif() + +-include(CMakeFindFrameworks) +-include(FindTclsh) +- +-get_filename_component(TCL_TCLSH_PATH "${TCL_TCLSH}" PATH) +-get_filename_component(TCL_TCLSH_PATH_PARENT "${TCL_TCLSH_PATH}" PATH) +-string(REGEX REPLACE +- "^.*tclsh([0-9]\\.*[0-9]).*$" "\\1" TCL_TCLSH_VERSION "${TCL_TCLSH}") +- +-get_filename_component(TCL_INCLUDE_PATH_PARENT "${TCL_INCLUDE_PATH}" PATH) +- +-get_filename_component(TCL_LIBRARY_PATH "${TCL_LIBRARY}" PATH) +-get_filename_component(TCL_LIBRARY_PATH_PARENT "${TCL_LIBRARY_PATH}" PATH) +-string(REGEX REPLACE +- "^.*tcl([0-9]\\.*[0-9]).*$" "\\1" TCL_VERSION "${TCL_LIBRARY}") +- +-set(TCL_POSSIBLE_LIB_PATHS +- "${TCL_INCLUDE_PATH_PARENT}/lib" +- "${TCL_INCLUDE_PATH_PARENT}/lib64" +- "${TCL_LIBRARY_PATH}" +- "${TCL_TCLSH_PATH_PARENT}/lib" +- "${TCL_TCLSH_PATH_PARENT}/lib64" +- /usr/lib +- /usr/lib64 +- /usr/local/lib +- /usr/local/lib64 +- ) +- +-if(WIN32) +- get_filename_component( +- ActiveTcl_CurrentVersion +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl;CurrentVersion]" +- NAME) +- set(TCLTK_POSSIBLE_LIB_PATHS ${TCLTK_POSSIBLE_LIB_PATHS} +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl\\${ActiveTcl_CurrentVersion}]/lib" +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.6;Root]/lib" +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.5;Root]/lib" +- "$ENV{ProgramFiles}/Tcl/Lib" +- "C:/Program Files/Tcl/lib" +- "C:/Tcl/lib" +- ) +-endif() ++SET(TCL_VERSION ${BSD_TCL_VER}) ++STRING(REPLACE "." "" TCL_INT_VERSION ${TCL_VERSION}) + + find_library(TCL_LIBRARY + NAMES +- tcl86 tcl8.6 +- tcl85 tcl8.5 +- tcl +- tcl${TCL_VERSION} tcl${TCL_TCLSH_VERSION} +- PATHS ${TCL_POSSIBLE_LIB_PATHS} ++ tcl${TCL_INT_VERSION} ++ PATHS ${BSD_TCL_LIBDIR} + ) + +-cmake_find_frameworks(Tcl) +- +-set(TCL_FRAMEWORK_INCLUDES) +-if(Tcl_FRAMEWORKS) +- if(NOT TCL_INCLUDE_PATH) +- foreach(dir ${Tcl_FRAMEWORKS}) +- set(TCL_FRAMEWORK_INCLUDES ${TCL_FRAMEWORK_INCLUDES} ${dir}/Headers) +- endforeach(dir) +- endif() +-endif() +- +-set(TCL_POSSIBLE_INCLUDE_PATHS +- "${TCL_LIBRARY_PATH_PARENT}/include" +- "${TCL_INCLUDE_PATH}" +- ${TCL_FRAMEWORK_INCLUDES} +- "${TCL_TCLSH_PATH_PARENT}/include" +- /usr/include/tcl8.6 +- /usr/include/tcl8.5 +- /usr/include +- /usr/local/include +- /usr/include/tcl${TCL_VERSION} +- /usr/local/include/tcl${TCL_VERSION} +- /usr/local/include/tcl8.6 +- /usr/local/include/tcl8.5 +- ) +- +-if(WIN32) +- set(TCLTK_POSSIBLE_INCLUDE_PATHS ${TCLTK_POSSIBLE_INCLUDE_PATHS} +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActiveTcl\\${ActiveTcl_CurrentVersion}]/include" +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.6;Root]/include" +- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.5;Root]/include" +- "$ENV{ProgramFiles}/Tcl/include" +- "C:/Program Files/Tcl/include" +- "C:/Tcl/include" +- ) +-endif() +- + find_path(TCL_INCLUDE_PATH + NAMES tcl.h +- PATHS ${TCL_POSSIBLE_INCLUDE_PATHS} ++ PATHS ${BSD_TCL_INCDIR} + ) + + if(TCL_LIBRARY AND TCL_INCLUDE_PATH) Modified: head/irc/weechat/pkg-plist ============================================================================== --- head/irc/weechat/pkg-plist Sat Oct 10 20:38:42 2015 (r399018) +++ head/irc/weechat/pkg-plist Sat Oct 10 20:52:20 2015 (r399019) @@ -17,6 +17,7 @@ libdata/pkgconfig/weechat.pc %%MANPAGES%%man/it/man1/weechat.1.gz %%MANPAGES%%man/ja/man1/weechat.1.gz %%MANPAGES%%man/pl/man1/weechat.1.gz +%%MANPAGES%%man/ru/man1/weechat.1.gz %%ASPELL%%lib/weechat/plugins/aspell.so %%CHARSET%%lib/weechat/plugins/charset.so %%LUA%%lib/weechat/plugins/lua.so From owner-svn-ports-head@freebsd.org Sat Oct 10 20:53:36 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 499049D2643; Sat, 10 Oct 2015 20:53:36 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1559498B; Sat, 10 Oct 2015 20:53:36 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AKrZCm036737; Sat, 10 Oct 2015 20:53:35 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AKrZcb036736; Sat, 10 Oct 2015 20:53:35 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510102053.t9AKrZcb036736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 20:53:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399020 - head/Mk 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: Sat, 10 Oct 2015 20:53:36 -0000 Author: bapt Date: Sat Oct 10 20:53:34 2015 New Revision: 399020 URL: https://svnweb.freebsd.org/changeset/ports/399020 Log: Remove another unused variable Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Oct 10 20:52:20 2015 (r399019) +++ head/Mk/bsd.port.mk Sat Oct 10 20:53:34 2015 (r399020) @@ -2107,7 +2107,6 @@ MTREE_FILE= /etc/mtree/BSD.usr.dist .else MTREE_FILE= ${PORTSDIR}/Templates/BSD.local.dist .endif -MTREE_FILE_DEFAULT=yes .endif MTREE_CMD?= /usr/sbin/mtree MTREE_ARGS?= -U ${MTREE_FOLLOWS_SYMLINKS} -f ${MTREE_FILE} -d -e -p From owner-svn-ports-head@freebsd.org Sat Oct 10 21:04: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 F117C9D27F7; Sat, 10 Oct 2015 21:04:45 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE338E77; Sat, 10 Oct 2015 21:04:45 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AL4ign039814; Sat, 10 Oct 2015 21:04:44 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AL4iur039809; Sat, 10 Oct 2015 21:04:44 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510102104.t9AL4iur039809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 10 Oct 2015 21:04:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399021 - in head: graphics/dri graphics/libGL lang/clover 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: Sat, 10 Oct 2015 21:04:46 -0000 Author: kwm Date: Sat Oct 10 21:04:44 2015 New Revision: 399021 URL: https://svnweb.freebsd.org/changeset/ports/399021 Log: Update Mesa to 10.6.9. * Unbreak build on powerpc and other !x86 archs by moving the --with-dri-drivers logic from dri/Makefile to the libGL/Makefile.common file. So the settings are applied to all mesa ports, this was missed in the 10.6.6 update. [1] * Don't try to enable OpenCL support on anything other then i386 and amd64. [1] * Move the texture-float and vdpau logic to Makefile.common even if the latter isn't supported yet. Keep OPTIONS_DEFINE/DEFAULT in dri/Makefile since they need to defined before bsd.port.options.mk is included, and they only affect the dri modules. * Sed on 11 and 10 supports \< and \> however sed on 9.x and dragonfly do not, replace the sed keywords with some magic to get the intended results. [2] Submitted by: marino@ [2] Reported and tested by: arved@ (on ppc32)[1] Modified: head/graphics/dri/Makefile head/graphics/libGL/Makefile.common head/graphics/libGL/Makefile.targets head/graphics/libGL/distinfo head/lang/clover/Makefile Modified: head/graphics/dri/Makefile ============================================================================== --- head/graphics/dri/Makefile Sat Oct 10 20:53:34 2015 (r399020) +++ head/graphics/dri/Makefile Sat Oct 10 21:04:44 2015 (r399021) @@ -25,56 +25,12 @@ PKGHELP= ${.CURDIR}/pkg-help .include -ALL_DRI_DRIVERS=I915 I965 R200 RADEON SWRAST - .include "${.CURDIR}/../../graphics/libGL/Makefile.common" #src/mesa/libmesagallium.la #MESA_BUILD_WRKSRC= src/util src/gallium #MESA_INSTALL_WRKSRC= src/gallium -PLIST_SUB+= VERSION=${MESADISTVERSION} - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 -DRI_DRIVERS= ${ALL_DRI_DRIVERS} -.endif - -.if ${PORT_OPTIONS:MTEXTURE} -CONFIGURE_ARGS+=--enable-texture-float -.endif - -.if 0 #${PORT_OPTIONS:MVDPAU} -.if ${PORT_OPTIONS:MGALLIUM} == "" -IGNORE= VDPAU option requires GALLIUM support to be enabled -.endif -CONFIGURE_ARGS+=--enable-vdpau -LIB_DEPENDS+= libvdpau.so:${PORTSDIR}/multimedia/libvdpau -PLIST_SUB+= VDPAU="" -.else -CONFIGURE_ARGS+=--disable-vdpau -PLIST_SUB+= VDPAU="@comment " -.endif - -.if ${ARCH} == powerpc || ${ARCH} == powerpc64 -DRI_DRIVERS= RADEON SWRAST -.endif -.if ${ARCH} == sparc64 || ${ARCH} == armv6 -DRI_DRIVERS= SWRAST -.endif - -# empty for unsupported arches -DRI_DRIVERS+= - -.for _d in ${ALL_DRI_DRIVERS} -. if ${DRI_DRIVERS:M${_d}} -PLIST_SUB+= ${_d}_DRIVER="" -. else -PLIST_SUB+= ${_d}_DRIVER="@comment " -. endif -.endfor - -CONFIGURE_ARGS+=--with-dri-drivers="${DRI_DRIVERS:tl}" - .include "${.CURDIR}/../../graphics/libGL/Makefile.targets" post-install: Modified: head/graphics/libGL/Makefile.common ============================================================================== --- head/graphics/libGL/Makefile.common Sat Oct 10 20:53:34 2015 (r399020) +++ head/graphics/libGL/Makefile.common Sat Oct 10 21:04:44 2015 (r399021) @@ -18,7 +18,7 @@ MESAVERSION= ${MESABASEVERSION}${MESASUBVERSION:C/^(.)/.\1/} MESADISTVERSION=${MESABASEVERSION}${MESASUBVERSION:C/^(.)/-\1/} -MESABASEVERSION= 10.6.8 +MESABASEVERSION= 10.6.9 # if there is a subversion, don't include the '-' between 7.11-rc2. MESASUBVERSION= @@ -81,7 +81,9 @@ CONFIGURE_ARGS+= --enable-egl --with-egl CONFIGURE_ARGS+= --enable-gles2 # Clover (OpenCL). -.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000) +.if ${OPSYS} == DragonFly || \ + (${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && \ + (${ARCH} == i386 || ${ARCH} == amd64)) BUILD_DEPENDS+= libclc>=0.0.r222830:${PORTSDIR}/devel/libclc # We need the clang port too even if it is not used to compile because @@ -103,19 +105,65 @@ BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>=0: .if ${COMPONENT:Mdri} != "" || ${COMPONENT:Mclover} != "" || ${COMPONENT:Megl} != "" RUN_DEPENDS+= llvm${MESA_LLVM_VER}>=0:${PORTSDIR}/devel/llvm${MESA_LLVM_VER} .endif + CONFIGURE_ENV+= LLVM_CONFIG=${LOCALBASE}/bin/llvm-config${MESA_LLVM_VER} CONFIGURE_ARGS+=--enable-gallium-llvm \ --enable-xvmc \ --with-gallium-drivers=r300,r600,radeonsi,svga,swrast +.if ${PORT_OPTIONS:MTEXTURE} +CONFIGURE_ARGS+=--enable-texture-float +.endif + .if !(${ARCH} == amd64 || ${ARCH} == i386) CONFIGURE_ARGS+=--disable-gallium-intel .endif +# this is disabled because our kernel driver is too old +# merge this and the one below when support does land. +.if 0 #${PORT_OPTIONS:MVDPAU} +.if ${PORT_OPTIONS:MGALLIUM} == "" +IGNORE= VDPAU option requires GALLIUM support to be enabled +.endif +CONFIGURE_ARGS+=--enable-vdpau +LIB_DEPENDS+= libvdpau.so:${PORTSDIR}/multimedia/libvdpau +PLIST_SUB+= VDPAU="" +.else +CONFIGURE_ARGS+=--disable-vdpau +PLIST_SUB+= VDPAU="@comment " +.endif + # what to do with this one? Currently disabled in dri. .if ${COMPONENT:Mvdpau} == "" CONFIGURE_ARGS+=--disable-vdpau .else CONFIGURE_ARGS+=--enable-vdpau .endif + +ALL_DRI_DRIVERS=I915 I965 R200 RADEON SWRAST + +.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 +DRI_DRIVERS= ${ALL_DRI_DRIVERS} +.endif + +.if ${ARCH} == powerpc || ${ARCH} == powerpc64 +DRI_DRIVERS= RADEON SWRAST +.endif +.if ${ARCH} == sparc64 || ${ARCH} == armv6 +DRI_DRIVERS= SWRAST +.endif + +# empty for unsupported arches +DRI_DRIVERS+= + +.for _d in ${ALL_DRI_DRIVERS} +. if ${DRI_DRIVERS:M${_d}} +PLIST_SUB+= ${_d}_DRIVER="" +. else +PLIST_SUB+= ${_d}_DRIVER="@comment " +. endif +.endfor + +CONFIGURE_ARGS+=--with-dri-drivers="${DRI_DRIVERS:tl}" + Modified: head/graphics/libGL/Makefile.targets ============================================================================== --- head/graphics/libGL/Makefile.targets Sat Oct 10 20:53:34 2015 (r399020) +++ head/graphics/libGL/Makefile.targets Sat Oct 10 21:04:44 2015 (r399021) @@ -3,7 +3,9 @@ # this file holds common targets post-patch: +# Sed on 9.x and dragonfly don't support \< or \> @${REINPLACE_CMD} -e 's|-ffast-math|${FAST_MATH}|' -e 's|x86_64|amd64|' \ + -e "/\>\/\// s|/-|/ -|; s|\\\>||" \ -e 's|python2 python|python2disabled pythondisabled|g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' \ Modified: head/graphics/libGL/distinfo ============================================================================== --- head/graphics/libGL/distinfo Sat Oct 10 20:53:34 2015 (r399020) +++ head/graphics/libGL/distinfo Sat Oct 10 21:04:44 2015 (r399021) @@ -1,2 +1,2 @@ -SHA256 (mesa-10.6.8.tar.xz) = e36ee5ceeadb3966fb5ce5b4cf18322dbb76a4f075558ae49c3bba94f57d58fd -SIZE (mesa-10.6.8.tar.xz) = 7042260 +SHA256 (mesa-10.6.9.tar.xz) = b04c4de6280b863babc2929573da17218d92e9e4ba6272d548d135415723e8c3 +SIZE (mesa-10.6.9.tar.xz) = 7041588 Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Sat Oct 10 20:53:34 2015 (r399020) +++ head/lang/clover/Makefile Sat Oct 10 21:04:44 2015 (r399021) @@ -16,7 +16,7 @@ RUN_DEPENDS= opencl>=0:${PORTSDIR}/devel USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto \ presentproto xvmc xshmfence -ONLY_FOR_ARCHS= i386 amd64 powerpc64 +ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= Clover needs a graphics driver supported by the Radeon KMS driver .include @@ -25,9 +25,7 @@ ONLY_FOR_ARCHS_REASON= Clover needs a gr #MESA_BUILD_WRKSRC= src/util src/glsl src/mesa src/gallium MESA_INSTALL_WRKSRC= src/gallium/targets/opencl src/gallium/targets/pipe-loader -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001514 && ${ARCH} == powerpc64 -IGNORE= Clover is only support on powerpc64 in FreeBSD 10.2 -.elif ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 && ${ARCH} != powerpc64 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000 IGNORE= Clover is only supported on FreeBSD 10.1 and newer .endif From owner-svn-ports-head@freebsd.org Sat Oct 10 21:19: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 8D6519D29EA; Sat, 10 Oct 2015 21:19:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A6D6185D; Sat, 10 Oct 2015 21:19:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ALJh2W042993; Sat, 10 Oct 2015 21:19:43 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ALJhi4042992; Sat, 10 Oct 2015 21:19:43 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510102119.t9ALJhi4042992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 21:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399022 - head/Mk 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: Sat, 10 Oct 2015 21:19:44 -0000 Author: bapt Date: Sat Oct 10 21:19:43 2015 New Revision: 399022 URL: https://svnweb.freebsd.org/changeset/ports/399022 Log: Avoid a useless call to dirname Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Oct 10 21:04:44 2015 (r399021) +++ head/Mk/bsd.port.mk Sat Oct 10 21:19:43 2015 (r399022) @@ -4829,7 +4829,7 @@ ${i:S/-//:tu}= ${WRKDIR}/${SUB_FILES:M${ .if !target(generate-plist) generate-plist: ${WRKDIR} @${ECHO_MSG} "===> Generating temporary packing list" - @${MKDIR} `${DIRNAME} ${TMPPLIST}` + @${MKDIR} ${TMPPLIST:H} @if [ ! -f ${DESCR} ]; then ${ECHO_MSG} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi @>${TMPPLIST} @for file in ${PLIST_FILES}; do \ From owner-svn-ports-head@freebsd.org Sat Oct 10 21:24:24 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 0F26D9D2B5E; Sat, 10 Oct 2015 21:24:24 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA3651B88; Sat, 10 Oct 2015 21:24:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ALOMZ1045834; Sat, 10 Oct 2015 21:24:22 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ALOM9W045833; Sat, 10 Oct 2015 21:24:22 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510102124.t9ALOM9W045833@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 10 Oct 2015 21:24:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399023 - head/Mk 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: Sat, 10 Oct 2015 21:24:24 -0000 Author: bapt Date: Sat Oct 10 21:24:22 2015 New Revision: 399023 URL: https://svnweb.freebsd.org/changeset/ports/399023 Log: Add PLIST_DIRSTRY deprecation to sanity check (forgot to add it before) Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Sat Oct 10 21:19:43 2015 (r399022) +++ head/Mk/bsd.sanity.mk Sat Oct 10 21:24:22 2015 (r399023) @@ -161,7 +161,7 @@ SANITY_UNSUPPORTED= USE_OPENAL USE_FAM U PYDISTUTILS_AUTOPLIST PYTHON_PY3K_PLIST_HACK PYDISTUTILS_NOEGGINFO \ USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \ UNIQUENAME LATEST_LINK -SANITY_DEPRECATED= PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS +SANITY_DEPRECATED= PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS PLIST_DIRSTRY SANITY_NOTNEEDED= WX_UNICODE USE_AUTOTOOLS_ALT= USES=autoreconf and GNU_CONFIGURE=yes @@ -199,6 +199,7 @@ NO_INSTALL_MANPAGES_ALT= USES=imake:noma UNIQUENAME_ALT= PKGBASE LATEST_LINK_ALT= PKGBASE WX_UNICODE_REASON= Now no-op as only unicode is supported now +PLIST_DIRSTRY_ALT= PLIST_DIRS .for a in ${SANITY_DEPRECATED} .if defined(${a}) From owner-svn-ports-head@freebsd.org Sat Oct 10 21:28: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 2F18D9D2BE2; Sat, 10 Oct 2015 21:28:50 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE90D1CC7; Sat, 10 Oct 2015 21:28:49 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ALSn1C046353; Sat, 10 Oct 2015 21:28:49 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ALSntv046352; Sat, 10 Oct 2015 21:28:49 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510102128.t9ALSntv046352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 21:28:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399024 - head/irc/weechat-devel 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: Sat, 10 Oct 2015 21:28:50 -0000 Author: marino Date: Sat Oct 10 21:28:48 2015 New Revision: 399024 URL: https://svnweb.freebsd.org/changeset/ports/399024 Log: irc/weechat-devel: Deprecate for removal (31 Oct 15) The weechat-devel port has been behind the stable weechat for a long time and its presence has caused confusion. Rather than mark IGNORE temporarily, set removal in motion because stable is updated so frequently that there is no point to a -devel port PR: 203169 Approved by: maintainer timeout Modified: head/irc/weechat-devel/Makefile Modified: head/irc/weechat-devel/Makefile ============================================================================== --- head/irc/weechat-devel/Makefile Sat Oct 10 21:24:22 2015 (r399023) +++ head/irc/weechat-devel/Makefile Sat Oct 10 21:28:48 2015 (r399024) @@ -15,6 +15,9 @@ COMMENT= Lightweight and user friendly n LICENSE= GPLv3 +DEPRECATED= far behind stable ird/weechat (use it instead) +EXPIRATION_DATE= 2015-10-31 + LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libgcrypt.so:${PORTSDIR}/security/libgcrypt From owner-svn-ports-head@freebsd.org Sat Oct 10 21:32: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 C756A9D2D62; Sat, 10 Oct 2015 21:32:56 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94472184; Sat, 10 Oct 2015 21:32:56 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ALWtIm049241; Sat, 10 Oct 2015 21:32:55 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ALWtH0049240; Sat, 10 Oct 2015 21:32:55 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510102132.t9ALWtH0049240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Oct 2015 21:32:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399025 - head/irc/weechat-devel 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: Sat, 10 Oct 2015 21:32:56 -0000 Author: marino Date: Sat Oct 10 21:32:55 2015 New Revision: 399025 URL: https://svnweb.freebsd.org/changeset/ports/399025 Log: irc/weechat-devel: fix typo in DEPRECATED line Modified: head/irc/weechat-devel/Makefile Modified: head/irc/weechat-devel/Makefile ============================================================================== --- head/irc/weechat-devel/Makefile Sat Oct 10 21:28:48 2015 (r399024) +++ head/irc/weechat-devel/Makefile Sat Oct 10 21:32:55 2015 (r399025) @@ -15,7 +15,7 @@ COMMENT= Lightweight and user friendly n LICENSE= GPLv3 -DEPRECATED= far behind stable ird/weechat (use it instead) +DEPRECATED= far behind stable irc/weechat (use it instead) EXPIRATION_DATE= 2015-10-31 LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ From owner-svn-ports-head@freebsd.org Sat Oct 10 22:42: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 0DB2C9D3708; Sat, 10 Oct 2015 22:42:37 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1DDC692; Sat, 10 Oct 2015 22:42:36 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AMgZ7i069440; Sat, 10 Oct 2015 22:42:35 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AMgZwm069438; Sat, 10 Oct 2015 22:42:35 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201510102242.t9AMgZwm069438@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 10 Oct 2015 22:42:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399026 - head/net-p2p/btsync 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: Sat, 10 Oct 2015 22:42:37 -0000 Author: junovitch Date: Sat Oct 10 22:42:35 2015 New Revision: 399026 URL: https://svnweb.freebsd.org/changeset/ports/399026 Log: net-p2p/btsync: update 1.4.111 -> 2.2.0 PR: 198884 Submitted by: Joshua Ruehlig (maintainer) Modified: head/net-p2p/btsync/Makefile head/net-p2p/btsync/distinfo Modified: head/net-p2p/btsync/Makefile ============================================================================== --- head/net-p2p/btsync/Makefile Sat Oct 10 21:32:55 2015 (r399025) +++ head/net-p2p/btsync/Makefile Sat Oct 10 22:42:35 2015 (r399026) @@ -1,10 +1,11 @@ # $FreeBSD$ PORTNAME= btsync -PORTVERSION= 1.4.111 +PORTVERSION= 2.2.0 CATEGORIES= net-p2p -MASTER_SITES= http://syncapp.bittorrent.com/${PORTVERSION}/ -DISTNAME= ${PORTNAME}_freebsd_${CONFIG_ARCH}-${PORTVERSION} +MASTER_SITES= https://download-cdn.getsyncapp.com/${PORTVERSION}/FreeBSD-${CONFIG_ARCH}/ \ + http://download-cdn.getsyncapp.com/${PORTVERSION}/FreeBSD-${CONFIG_ARCH}/ +DISTNAME= BitTorrent-Sync_freebsd_${CONFIG_ARCH} MAINTAINER= joshruehlig@gmail.com COMMENT= Distributed peer-to-peer file syncing application Modified: head/net-p2p/btsync/distinfo ============================================================================== --- head/net-p2p/btsync/distinfo Sat Oct 10 21:32:55 2015 (r399025) +++ head/net-p2p/btsync/distinfo Sat Oct 10 22:42:35 2015 (r399026) @@ -1,4 +1,4 @@ -SHA256 (btsync_freebsd_i386-1.4.111.tar.gz) = 8c771dae5ea3579dc13e977538cf0ac614661b7303f6ddb68d29687b42fb10f2 -SIZE (btsync_freebsd_i386-1.4.111.tar.gz) = 4112473 -SHA256 (btsync_freebsd_x64-1.4.111.tar.gz) = e23e18733cd9a011835d14784dcacb31670d66f946813edafce4d889d10faba4 -SIZE (btsync_freebsd_x64-1.4.111.tar.gz) = 4237019 +SHA256 (BitTorrent-Sync_freebsd_i386.tar.gz) = aed1e3253872b8ea6f974a7b3608baa559261b057c36f708917b8cc6bc88c7af +SIZE (BitTorrent-Sync_freebsd_i386.tar.gz) = 4871605 +SHA256 (BitTorrent-Sync_freebsd_x64.tar.gz) = 2f2f3cf26b804be5e9ebd435152eac975195679e4be48a6b29d3478a108772bc +SIZE (BitTorrent-Sync_freebsd_x64.tar.gz) = 4941486 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:05 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 853A39D3C30; Sat, 10 Oct 2015 23:11:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 309A21314; Sat, 10 Oct 2015 23:11:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANB4hK078182; Sat, 10 Oct 2015 23:11:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANB3NA078177; Sat, 10 Oct 2015 23:11:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANB3NA078177@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399027 - in head/security: . rubygem-sshkey 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: Sat, 10 Oct 2015 23:11:05 -0000 Author: sunpoet Date: Sat Oct 10 23:11:03 2015 New Revision: 399027 URL: https://svnweb.freebsd.org/changeset/ports/399027 Log: - Add rubygem-sshkey 1.7.0 SSHKey generates private and public SSH keys (RSA and DSA supported) using pure Ruby. WWW: https://github.com/bensie/sshkey Added: head/security/rubygem-sshkey/ head/security/rubygem-sshkey/Makefile (contents, props changed) head/security/rubygem-sshkey/distinfo (contents, props changed) head/security/rubygem-sshkey/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Oct 10 22:42:35 2015 (r399026) +++ head/security/Makefile Sat Oct 10 23:11:03 2015 (r399027) @@ -960,6 +960,7 @@ SUBDIR += rubygem-ruby-saml SUBDIR += rubygem-scrypt SUBDIR += rubygem-six + SUBDIR += rubygem-sshkey SUBDIR += rubygem-sshkit SUBDIR += rubygem-twitter_oauth SUBDIR += safesh Added: head/security/rubygem-sshkey/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-sshkey/Makefile Sat Oct 10 23:11:03 2015 (r399027) @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= sshkey +PORTVERSION= 1.7.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate private/public SSH keypairs using pure Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/security/rubygem-sshkey/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-sshkey/distinfo Sat Oct 10 23:11:03 2015 (r399027) @@ -0,0 +1,2 @@ +SHA256 (rubygem/sshkey-1.7.0.gem) = bbe4950847a0507ef277e706cead1bf8f2634650356df86bcced22b928513195 +SIZE (rubygem/sshkey-1.7.0.gem) = 24064 Added: head/security/rubygem-sshkey/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-sshkey/pkg-descr Sat Oct 10 23:11:03 2015 (r399027) @@ -0,0 +1,4 @@ +SSHKey generates private and public SSH keys (RSA and DSA supported) using pure +Ruby. + +WWW: https://github.com/bensie/sshkey From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11: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 8FF799D3C5D; Sat, 10 Oct 2015 23:11:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B32D1349; Sat, 10 Oct 2015 23:11:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANB9UD078298; Sat, 10 Oct 2015 23:11:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANB9Jf078296; Sat, 10 Oct 2015 23:11:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANB9Jf078296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399028 - 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: Sat, 10 Oct 2015 23:11:10 -0000 Author: sunpoet Date: Sat Oct 10 23:11:09 2015 New Revision: 399028 URL: https://svnweb.freebsd.org/changeset/ports/399028 Log: - Update to 0.016 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 Sat Oct 10 23:11:03 2015 (r399027) +++ head/devel/p5-experimental/Makefile Sat Oct 10 23:11:09 2015 (r399028) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= experimental -PORTVERSION= 0.015 +PORTVERSION= 0.016 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:LEONT Modified: head/devel/p5-experimental/distinfo ============================================================================== --- head/devel/p5-experimental/distinfo Sat Oct 10 23:11:03 2015 (r399027) +++ head/devel/p5-experimental/distinfo Sat Oct 10 23:11:09 2015 (r399028) @@ -1,2 +1,2 @@ -SHA256 (experimental-0.015.tar.gz) = 4e20eb02c7d996001871e90a31022c703b27e00d3e2cf3231dee672e91334fe5 -SIZE (experimental-0.015.tar.gz) = 12361 +SHA256 (experimental-0.016.tar.gz) = f451d764057617b412a1cbd9ed66cac16d139d25ab156b05f370422371560480 +SIZE (experimental-0.016.tar.gz) = 12397 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:15 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 55EEF9D3C85; Sat, 10 Oct 2015 23:11:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23230146E; Sat, 10 Oct 2015 23:11:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBECV078401; Sat, 10 Oct 2015 23:11:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBEHw078400; Sat, 10 Oct 2015 23:11:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBEHw078400@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399029 - head/devel/rubygem-inflecto 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: Sat, 10 Oct 2015 23:11:15 -0000 Author: sunpoet Date: Sat Oct 10 23:11:14 2015 New Revision: 399029 URL: https://svnweb.freebsd.org/changeset/ports/399029 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-inflecto/Makefile Modified: head/devel/rubygem-inflecto/Makefile ============================================================================== --- head/devel/rubygem-inflecto/Makefile Sat Oct 10 23:11:09 2015 (r399028) +++ head/devel/rubygem-inflecto/Makefile Sat Oct 10 23:11:14 2015 (r399029) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Inflector for strings LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USE_RUBY= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11: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 46F7B9D3CAE; Sat, 10 Oct 2015 23:11:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12CAC1594; Sat, 10 Oct 2015 23:11:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBJRu078515; Sat, 10 Oct 2015 23:11:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBJ6Q078513; Sat, 10 Oct 2015 23:11:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBJ6Q078513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399030 - head/sysutils/rubygem-backup 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: Sat, 10 Oct 2015 23:11:20 -0000 Author: sunpoet Date: Sat Oct 10 23:11:18 2015 New Revision: 399030 URL: https://svnweb.freebsd.org/changeset/ports/399030 Log: - Update to 4.2.2 Changes: http://backup.github.io/backup/v4/release-notes/ https://github.com/backup/backup/commits/master Modified: head/sysutils/rubygem-backup/Makefile head/sysutils/rubygem-backup/distinfo Modified: head/sysutils/rubygem-backup/Makefile ============================================================================== --- head/sysutils/rubygem-backup/Makefile Sat Oct 10 23:11:14 2015 (r399029) +++ head/sysutils/rubygem-backup/Makefile Sat Oct 10 23:11:18 2015 (r399030) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= backup -PORTVERSION= 4.2.1 +PORTVERSION= 4.2.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-backup/distinfo ============================================================================== --- head/sysutils/rubygem-backup/distinfo Sat Oct 10 23:11:14 2015 (r399029) +++ head/sysutils/rubygem-backup/distinfo Sat Oct 10 23:11:18 2015 (r399030) @@ -1,2 +1,2 @@ -SHA256 (rubygem/backup-4.2.1.gem) = 79f40008e2e1bbe0c366e51edf4002fa25528031962ab227cf2943c3ae19ec54 -SIZE (rubygem/backup-4.2.1.gem) = 83968 +SHA256 (rubygem/backup-4.2.2.gem) = 37c4ee7214e831bd9ecbd540a7c0fc89f9d702c727eb4017b9efcea00d96453a +SIZE (rubygem/backup-4.2.2.gem) = 83968 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:24 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 E059E9D3CD9; Sat, 10 Oct 2015 23:11:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD1451782; Sat, 10 Oct 2015 23:11:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBNex078618; Sat, 10 Oct 2015 23:11:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBNRX078617; Sat, 10 Oct 2015 23:11:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBNRX078617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399031 - head/textproc/rubygem-autoprefixer-rails 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: Sat, 10 Oct 2015 23:11:25 -0000 Author: sunpoet Date: Sat Oct 10 23:11:23 2015 New Revision: 399031 URL: https://svnweb.freebsd.org/changeset/ports/399031 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-autoprefixer-rails/Makefile Modified: head/textproc/rubygem-autoprefixer-rails/Makefile ============================================================================== --- head/textproc/rubygem-autoprefixer-rails/Makefile Sat Oct 10 23:11:18 2015 (r399030) +++ head/textproc/rubygem-autoprefixer-rails/Makefile Sat Oct 10 23:11:23 2015 (r399031) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse CSS and add vendor prefixes to CSS rules LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-execjs>=0:${PORTSDIR}/devel/rubygem-execjs \ rubygem-json>=0:${PORTSDIR}/devel/rubygem-json From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:29 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 9611C9D3D03; Sat, 10 Oct 2015 23:11:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B2391889; Sat, 10 Oct 2015 23:11:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBS4D078720; Sat, 10 Oct 2015 23:11:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBSQZ078719; Sat, 10 Oct 2015 23:11:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBSQZ078719@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399032 - head/textproc/asciidoc 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: Sat, 10 Oct 2015 23:11:29 -0000 Author: sunpoet Date: Sat Oct 10 23:11:28 2015 New Revision: 399032 URL: https://svnweb.freebsd.org/changeset/ports/399032 Log: - Sort SHEBANG_FILES - Cleanup Makefile: configuration files with .sample suffix are handled by @sample already Modified: head/textproc/asciidoc/Makefile Modified: head/textproc/asciidoc/Makefile ============================================================================== --- head/textproc/asciidoc/Makefile Sat Oct 10 23:11:23 2015 (r399031) +++ head/textproc/asciidoc/Makefile Sat Oct 10 23:11:28 2015 (r399032) @@ -30,10 +30,10 @@ CONF_FILES= asciidoc.conf docbook45.conf SHEBANG_FILES= a2x.py \ asciidoc.py \ asciidocapi.py \ - filters/latex/latex2png.py \ + filters/code/code-filter.py \ filters/graphviz/graphviz2png.py \ - filters/music/music2png.py \ - filters/code/code-filter.py + filters/latex/latex2png.py \ + filters/music/music2png.py python_OLD_CMD= /usr/bin/env python post-patch: @@ -45,10 +45,5 @@ post-patch: post-install: ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/ ${INSTALL_DATA} ${WRKSRC}/asciidocapi.py ${STAGEDIR}${PYTHON_SITELIBDIR}/ -.for conf_file in ${CONF_FILES} - @if [ ! -f ${ETCDIR}/${conf_file} ]; then \ - ${CP} -p ${STAGEDIR}${ETCDIR}/${conf_file}.sample ${STAGEDIR}${ETCDIR}/${conf_file}; \ - fi -.endfor .include From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:34 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 A16AE9D3D2A; Sat, 10 Oct 2015 23:11:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B8181972; Sat, 10 Oct 2015 23:11:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBXvL078835; Sat, 10 Oct 2015 23:11:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBXpk078833; Sat, 10 Oct 2015 23:11:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBXpk078833@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399033 - head/databases/p5-Tangram 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: Sat, 10 Oct 2015 23:11:34 -0000 Author: sunpoet Date: Sat Oct 10 23:11:33 2015 New Revision: 399033 URL: https://svnweb.freebsd.org/changeset/ports/399033 Log: - Update to 2.12 Modified: head/databases/p5-Tangram/Makefile head/databases/p5-Tangram/distinfo Modified: head/databases/p5-Tangram/Makefile ============================================================================== --- head/databases/p5-Tangram/Makefile Sat Oct 10 23:11:28 2015 (r399032) +++ head/databases/p5-Tangram/Makefile Sat Oct 10 23:11:33 2015 (r399033) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Tangram -PORTVERSION= 2.11 +PORTVERSION= 2.12 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-Tangram/distinfo ============================================================================== --- head/databases/p5-Tangram/distinfo Sat Oct 10 23:11:28 2015 (r399032) +++ head/databases/p5-Tangram/distinfo Sat Oct 10 23:11:33 2015 (r399033) @@ -1,2 +1,2 @@ -SHA256 (Tangram-2.11.tar.gz) = d18c3c997213d576ab7d036749750806a0ec4fc024731d10547a57e11397e65d -SIZE (Tangram-2.11.tar.gz) = 174989 +SHA256 (Tangram-2.12.tar.gz) = 06da4d0e5f4bd0dd001d1a67736197ff378d5de0519c5af0d60624e98bc5ea19 +SIZE (Tangram-2.12.tar.gz) = 175039 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11: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 C29CE9D3D4F; Sat, 10 Oct 2015 23:11:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D8141A56; Sat, 10 Oct 2015 23:11:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBcTw078953; Sat, 10 Oct 2015 23:11:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBchE078950; Sat, 10 Oct 2015 23:11:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBchE078950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399034 - head/devel/p5-Data-Object 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: Sat, 10 Oct 2015 23:11:39 -0000 Author: sunpoet Date: Sat Oct 10 23:11:38 2015 New Revision: 399034 URL: https://svnweb.freebsd.org/changeset/ports/399034 Log: - Update to 0.57 Changes: http://search.cpan.org/dist/Data-Object/CHANGES Modified: head/devel/p5-Data-Object/Makefile head/devel/p5-Data-Object/distinfo Modified: head/devel/p5-Data-Object/Makefile ============================================================================== --- head/devel/p5-Data-Object/Makefile Sat Oct 10 23:11:33 2015 (r399033) +++ head/devel/p5-Data-Object/Makefile Sat Oct 10 23:11:38 2015 (r399034) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Object -PORTVERSION= 0.55 +PORTVERSION= 0.57 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-Object/distinfo ============================================================================== --- head/devel/p5-Data-Object/distinfo Sat Oct 10 23:11:33 2015 (r399033) +++ head/devel/p5-Data-Object/distinfo Sat Oct 10 23:11:38 2015 (r399034) @@ -1,2 +1,2 @@ -SHA256 (Data-Object-0.55.tar.gz) = 881304b2ce35b6b45f0a4c763a7f0311ac4d32390b0609e4a3b31091d0673b15 -SIZE (Data-Object-0.55.tar.gz) = 101533 +SHA256 (Data-Object-0.57.tar.gz) = 04fa1fa493f38c60f7ba255bb6040cf54494772b14f563820a8123166d6ad373 +SIZE (Data-Object-0.57.tar.gz) = 103895 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11: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 F3E7B9D3D77; Sat, 10 Oct 2015 23:11:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 980EE1B4F; Sat, 10 Oct 2015 23:11:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBhH1079069; Sat, 10 Oct 2015 23:11:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBhNw079067; Sat, 10 Oct 2015 23:11:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBhNw079067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399035 - head/devel/p5-Minion 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: Sat, 10 Oct 2015 23:11:45 -0000 Author: sunpoet Date: Sat Oct 10 23:11:43 2015 New Revision: 399035 URL: https://svnweb.freebsd.org/changeset/ports/399035 Log: - Update to 2.03 Changes: http://search.cpan.org/dist/Minion/Changes Modified: head/devel/p5-Minion/Makefile head/devel/p5-Minion/distinfo Modified: head/devel/p5-Minion/Makefile ============================================================================== --- head/devel/p5-Minion/Makefile Sat Oct 10 23:11:38 2015 (r399034) +++ head/devel/p5-Minion/Makefile Sat Oct 10 23:11:43 2015 (r399035) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Minion -PORTVERSION= 2.02 +PORTVERSION= 2.03 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/devel/p5-Minion/distinfo ============================================================================== --- head/devel/p5-Minion/distinfo Sat Oct 10 23:11:38 2015 (r399034) +++ head/devel/p5-Minion/distinfo Sat Oct 10 23:11:43 2015 (r399035) @@ -1,2 +1,2 @@ -SHA256 (Minion-2.02.tar.gz) = d946a2f4155e31226d3349d957220d770c03539f5f3d72675bb81b4c8a7b931d -SIZE (Minion-2.02.tar.gz) = 26873 +SHA256 (Minion-2.03.tar.gz) = 5848a50abd61bf9c691e1f7d7edf941c9733c1a04a7d284f12ff3bcb8deabce9 +SIZE (Minion-2.03.tar.gz) = 27112 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11: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 03F819D3D9E; Sat, 10 Oct 2015 23:11:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81A861C42; Sat, 10 Oct 2015 23:11:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBmK6079201; Sat, 10 Oct 2015 23:11:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBmf4079198; Sat, 10 Oct 2015 23:11:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBmf4079198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399036 - head/security/p5-Crypt-OpenSSL-Random 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: Sat, 10 Oct 2015 23:11:50 -0000 Author: sunpoet Date: Sat Oct 10 23:11:48 2015 New Revision: 399036 URL: https://svnweb.freebsd.org/changeset/ports/399036 Log: - Update to 0.11 - Add LICENSE - Strip shared library - Sort PLIST Changes: http://search.cpan.org/dist/Crypt-OpenSSL-Random/Changes Modified: head/security/p5-Crypt-OpenSSL-Random/Makefile head/security/p5-Crypt-OpenSSL-Random/distinfo head/security/p5-Crypt-OpenSSL-Random/pkg-plist Modified: head/security/p5-Crypt-OpenSSL-Random/Makefile ============================================================================== --- head/security/p5-Crypt-OpenSSL-Random/Makefile Sat Oct 10 23:11:43 2015 (r399035) +++ head/security/p5-Crypt-OpenSSL-Random/Makefile Sat Oct 10 23:11:48 2015 (r399036) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Crypt-OpenSSL-Random -PORTVERSION= 0.10 +PORTVERSION= 0.11 CATEGORIES= security perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RURBAN @@ -11,9 +11,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 interface to the OpenSSL pseudo-random number generator +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +MAKE_ARGS= PASTHRU_INC=-I${OPENSSLINC} USES= perl5 -USE_PERL5= configure USE_OPENSSL= yes -MAKE_ARGS+= PASTHRU_INC=-I${OPENSSLINC} +USE_PERL5= configure + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Crypt/OpenSSL/Random/Random.so .include Modified: head/security/p5-Crypt-OpenSSL-Random/distinfo ============================================================================== --- head/security/p5-Crypt-OpenSSL-Random/distinfo Sat Oct 10 23:11:43 2015 (r399035) +++ head/security/p5-Crypt-OpenSSL-Random/distinfo Sat Oct 10 23:11:48 2015 (r399036) @@ -1,2 +1,2 @@ -SHA256 (Crypt-OpenSSL-Random-0.10.tar.gz) = ae65d0ab6907edd1d67f87fdf0923ecae4d54c4c2e0ac9d9df97227903ccf18a -SIZE (Crypt-OpenSSL-Random-0.10.tar.gz) = 14911 +SHA256 (Crypt-OpenSSL-Random-0.11.tar.gz) = bb8c81c6a39b9b13a22d818ee9a746242f136f0fadceb6b9776ae615e7524c7a +SIZE (Crypt-OpenSSL-Random-0.11.tar.gz) = 15161 Modified: head/security/p5-Crypt-OpenSSL-Random/pkg-plist ============================================================================== --- head/security/p5-Crypt-OpenSSL-Random/pkg-plist Sat Oct 10 23:11:43 2015 (r399035) +++ head/security/p5-Crypt-OpenSSL-Random/pkg-plist Sat Oct 10 23:11:48 2015 (r399036) @@ -1,3 +1,3 @@ -%%PERL5_MAN3%%/Crypt::OpenSSL::Random.3.gz %%SITE_ARCH%%/Crypt/OpenSSL/Random.pm %%SITE_ARCH%%/auto/Crypt/OpenSSL/Random/Random.so +%%PERL5_MAN3%%/Crypt::OpenSSL::Random.3.gz From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:54 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 7441B9D3DCB; Sat, 10 Oct 2015 23:11:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FFCC1D26; Sat, 10 Oct 2015 23:11:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBrwd079318; Sat, 10 Oct 2015 23:11:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBrn2079316; Sat, 10 Oct 2015 23:11:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBrn2079316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399037 - head/www/p5-HTML-Scrubber 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: Sat, 10 Oct 2015 23:11:54 -0000 Author: sunpoet Date: Sat Oct 10 23:11:53 2015 New Revision: 399037 URL: https://svnweb.freebsd.org/changeset/ports/399037 Log: - Update to 0.15 - Add NO_ARCH Changes: http://search.cpan.org/dist/HTML-Scrubber/Changes Modified: head/www/p5-HTML-Scrubber/Makefile head/www/p5-HTML-Scrubber/distinfo Modified: head/www/p5-HTML-Scrubber/Makefile ============================================================================== --- head/www/p5-HTML-Scrubber/Makefile Sat Oct 10 23:11:48 2015 (r399036) +++ head/www/p5-HTML-Scrubber/Makefile Sat Oct 10 23:11:53 2015 (r399037) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= HTML-Scrubber -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -20,6 +20,7 @@ TEST_DEPENDS= p5-Test-CPAN-Meta>=0:${POR p5-Test-Memory-Cycle>=0:${PORTSDIR}/devel/p5-Test-Memory-Cycle \ p5-Test-NoTabs>=0:${PORTSDIR}/devel/p5-Test-NoTabs +NO_ARCH= yes USES= perl5 USE_PERL5= modbuild Modified: head/www/p5-HTML-Scrubber/distinfo ============================================================================== --- head/www/p5-HTML-Scrubber/distinfo Sat Oct 10 23:11:48 2015 (r399036) +++ head/www/p5-HTML-Scrubber/distinfo Sat Oct 10 23:11:53 2015 (r399037) @@ -1,2 +1,2 @@ -SHA256 (HTML-Scrubber-0.14.tar.gz) = 82596a3a1ead946809ff2e00886c5dd3b4c113beb0625230c3077118700bb201 -SIZE (HTML-Scrubber-0.14.tar.gz) = 33672 +SHA256 (HTML-Scrubber-0.15.tar.gz) = 7133e317e5963168a445836d144f35c69fc9c4edad0025fb17c46729ea432ed4 +SIZE (HTML-Scrubber-0.15.tar.gz) = 34250 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:11:59 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 6DC4A9D3DF7; Sat, 10 Oct 2015 23:11:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AAA81E09; Sat, 10 Oct 2015 23:11:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANBwPm079432; Sat, 10 Oct 2015 23:11:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANBwkw079430; Sat, 10 Oct 2015 23:11:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102311.t9ANBwkw079430@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:11:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399038 - head/devel/rubygem-highline 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: Sat, 10 Oct 2015 23:11:59 -0000 Author: sunpoet Date: Sat Oct 10 23:11:58 2015 New Revision: 399038 URL: https://svnweb.freebsd.org/changeset/ports/399038 Log: - Update to 1.7.8 Changes: https://github.com/JEG2/highline/blob/1-7-stable/Changelog.md Modified: head/devel/rubygem-highline/Makefile head/devel/rubygem-highline/distinfo Modified: head/devel/rubygem-highline/Makefile ============================================================================== --- head/devel/rubygem-highline/Makefile Sat Oct 10 23:11:53 2015 (r399037) +++ head/devel/rubygem-highline/Makefile Sat Oct 10 23:11:58 2015 (r399038) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= highline -PORTVERSION= 1.7.7 +PORTVERSION= 1.7.8 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-highline/distinfo ============================================================================== --- head/devel/rubygem-highline/distinfo Sat Oct 10 23:11:53 2015 (r399037) +++ head/devel/rubygem-highline/distinfo Sat Oct 10 23:11:58 2015 (r399038) @@ -1,2 +1,2 @@ -SHA256 (rubygem/highline-1.7.7.gem) = 4acd3a1f8eddb11443e7912f8ed0c688919c85c4ed193a568165d804b7a28add -SIZE (rubygem/highline-1.7.7.gem) = 224768 +SHA256 (rubygem/highline-1.7.8.gem) = 795274094fd385bfe45a2ac7b68462b6ba43e21bf311dbdca5225a63dba3c5d9 +SIZE (rubygem/highline-1.7.8.gem) = 224768 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 147129D3E1B; Sat, 10 Oct 2015 23:12:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D66AD1EE6; Sat, 10 Oct 2015 23:12:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANC3Md079526; Sat, 10 Oct 2015 23:12:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANC2b7079525; Sat, 10 Oct 2015 23:12:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANC2b7079525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399039 - head/devel/rubygem-annoy 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: Sat, 10 Oct 2015 23:12:04 -0000 Author: sunpoet Date: Sat Oct 10 23:12:02 2015 New Revision: 399039 URL: https://svnweb.freebsd.org/changeset/ports/399039 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/devel/rubygem-annoy/Makefile Modified: head/devel/rubygem-annoy/Makefile ============================================================================== --- head/devel/rubygem-annoy/Makefile Sat Oct 10 23:11:58 2015 (r399038) +++ head/devel/rubygem-annoy/Makefile Sat Oct 10 23:12:02 2015 (r399039) @@ -10,11 +10,11 @@ MAINTAINER= swills@FreeBSD.org COMMENT= Present the user with a simple question before a destructive action LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-highline>=1.5.0:${PORTSDIR}/devel/rubygem-highline NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:08 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 E03A29D3E49; Sat, 10 Oct 2015 23:12:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6CD9F1FD5; Sat, 10 Oct 2015 23:12:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANC7kF079627; Sat, 10 Oct 2015 23:12:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANC7U8079626; Sat, 10 Oct 2015 23:12:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANC7U8079626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399040 - head/devel/rubygem-commander 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: Sat, 10 Oct 2015 23:12:09 -0000 Author: sunpoet Date: Sat Oct 10 23:12:07 2015 New Revision: 399040 URL: https://svnweb.freebsd.org/changeset/ports/399040 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-commander/Makefile Modified: head/devel/rubygem-commander/Makefile ============================================================================== --- head/devel/rubygem-commander/Makefile Sat Oct 10 23:12:02 2015 (r399039) +++ head/devel/rubygem-commander/Makefile Sat Oct 10 23:12:07 2015 (r399040) @@ -10,11 +10,11 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Complete solution for Ruby command-line executables LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-highline>=1.7.2:${PORTSDIR}/devel/rubygem-highline NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:13 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 767019D3E6B; Sat, 10 Oct 2015 23:12:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DF27F5; Sat, 10 Oct 2015 23:12:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCC0o079729; Sat, 10 Oct 2015 23:12:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCCBo079728; Sat, 10 Oct 2015 23:12:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCCBo079728@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399041 - head/devel/rubygem-cyoi 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: Sat, 10 Oct 2015 23:12:13 -0000 Author: sunpoet Date: Sat Oct 10 23:12:11 2015 New Revision: 399041 URL: https://svnweb.freebsd.org/changeset/ports/399041 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-cyoi/Makefile Modified: head/devel/rubygem-cyoi/Makefile ============================================================================== --- head/devel/rubygem-cyoi/Makefile Sat Oct 10 23:12:07 2015 (r399040) +++ head/devel/rubygem-cyoi/Makefile Sat Oct 10 23:12:11 2015 (r399041) @@ -9,6 +9,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Library to prompt for infrastructure and login credentials LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fog>=0:${PORTSDIR}/devel/rubygem-fog \ rubygem-highline>=1.6:${PORTSDIR}/devel/rubygem-highline \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 4EE3E9D3EA0; Sat, 10 Oct 2015 23:12:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D516C202; Sat, 10 Oct 2015 23:12:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCG9h079819; Sat, 10 Oct 2015 23:12:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCGD8079818; Sat, 10 Oct 2015 23:12:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCGD8079818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399042 - head/devel/rubygem-jeweler 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: Sat, 10 Oct 2015 23:12:18 -0000 Author: sunpoet Date: Sat Oct 10 23:12:16 2015 New Revision: 399042 URL: https://svnweb.freebsd.org/changeset/ports/399042 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/devel/rubygem-jeweler/Makefile Modified: head/devel/rubygem-jeweler/Makefile ============================================================================== --- head/devel/rubygem-jeweler/Makefile Sat Oct 10 23:12:11 2015 (r399041) +++ head/devel/rubygem-jeweler/Makefile Sat Oct 10 23:12:16 2015 (r399042) @@ -10,6 +10,7 @@ MAINTAINER= douglas@douglasthrift.net COMMENT= Simple and opinionated helper for creating Rubygem projects LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-builder32>=0:${PORTSDIR}/devel/rubygem-builder32 \ rubygem-bundler>=1.0:${PORTSDIR}/sysutils/rubygem-bundler \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 A98439D3EC4; Sat, 10 Oct 2015 23:12:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60A8D2E9; Sat, 10 Oct 2015 23:12:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCLqx079906; Sat, 10 Oct 2015 23:12:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCLZt079905; Sat, 10 Oct 2015 23:12:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCLZt079905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399043 - head/devel/rubygem-kafo 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: Sat, 10 Oct 2015 23:12:22 -0000 Author: sunpoet Date: Sat Oct 10 23:12:21 2015 New Revision: 399043 URL: https://svnweb.freebsd.org/changeset/ports/399043 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/devel/rubygem-kafo/Makefile Modified: head/devel/rubygem-kafo/Makefile ============================================================================== --- head/devel/rubygem-kafo/Makefile Sat Oct 10 23:12:16 2015 (r399042) +++ head/devel/rubygem-kafo/Makefile Sat Oct 10 23:12:21 2015 (r399043) @@ -10,6 +10,7 @@ MAINTAINER= mmoll@FreeBSD.org COMMENT= Ruby framework to create installers LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-clamp>=0.6.2:${PORTSDIR}/devel/rubygem-clamp \ rubygem-highline>=1.6.21:${PORTSDIR}/devel/rubygem-highline \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:27 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 1B74F9D3EEC; Sat, 10 Oct 2015 23:12:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE3903D4; Sat, 10 Oct 2015 23:12:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCQ0R080009; Sat, 10 Oct 2015 23:12:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCQnD080008; Sat, 10 Oct 2015 23:12:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCQnD080008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399044 - head/devel/rubygem-ruby-bugzilla 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: Sat, 10 Oct 2015 23:12:27 -0000 Author: sunpoet Date: Sat Oct 10 23:12:25 2015 New Revision: 399044 URL: https://svnweb.freebsd.org/changeset/ports/399044 Log: - Add LICENSE_FILE Modified: head/devel/rubygem-ruby-bugzilla/Makefile Modified: head/devel/rubygem-ruby-bugzilla/Makefile ============================================================================== --- head/devel/rubygem-ruby-bugzilla/Makefile Sat Oct 10 23:12:21 2015 (r399043) +++ head/devel/rubygem-ruby-bugzilla/Makefile Sat Oct 10 23:12:25 2015 (r399044) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Access to Bugzilla through WebService APIs in Ruby LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-gruff>=0:${PORTSDIR}/graphics/rubygem-gruff \ rubygem-highline>=0:${PORTSDIR}/devel/rubygem-highline From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:31 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 62C039D3F11; Sat, 10 Oct 2015 23:12:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D9106C8; Sat, 10 Oct 2015 23:12:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCUSV080096; Sat, 10 Oct 2015 23:12:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCURh080095; Sat, 10 Oct 2015 23:12:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCURh080095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399045 - head/net/rubygem-rudy 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: Sat, 10 Oct 2015 23:12:31 -0000 Author: sunpoet Date: Sat Oct 10 23:12:30 2015 New Revision: 399045 URL: https://svnweb.freebsd.org/changeset/ports/399045 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/net/rubygem-rudy/Makefile Modified: head/net/rubygem-rudy/Makefile ============================================================================== --- head/net/rubygem-rudy/Makefile Sat Oct 10 23:12:25 2015 (r399044) +++ head/net/rubygem-rudy/Makefile Sat Oct 10 23:12:30 2015 (r399045) @@ -11,6 +11,7 @@ MAINTAINER= swills@FreeBSD.org COMMENT= EC2 deployment tool LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-amazon-ec2>=0.9.10:${PORTSDIR}/net/rubygem-amazon-ec2 \ rubygem-aws-s3>=0.6.1:${PORTSDIR}/net/rubygem-aws-s3 \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:35 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 AD3B79D3F37; Sat, 10 Oct 2015 23:12:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 752DC835; Sat, 10 Oct 2015 23:12:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCYH1080186; Sat, 10 Oct 2015 23:12:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCY0a080185; Sat, 10 Oct 2015 23:12:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCY0a080185@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399046 - head/sysutils/rhc 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: Sat, 10 Oct 2015 23:12:35 -0000 Author: sunpoet Date: Sat Oct 10 23:12:34 2015 New Revision: 399046 URL: https://svnweb.freebsd.org/changeset/ports/399046 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/sysutils/rhc/Makefile Modified: head/sysutils/rhc/Makefile ============================================================================== --- head/sysutils/rhc/Makefile Sat Oct 10 23:12:30 2015 (r399045) +++ head/sysutils/rhc/Makefile Sat Oct 10 23:12:34 2015 (r399046) @@ -11,6 +11,7 @@ MAINTAINER= dereckson@gmail.com COMMENT= Administration console client for RedHat OpenShift LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/bin/minitar:${PORTSDIR}/archivers/rubygem-archive-tar-minitar \ ${LOCALBASE}/bin/commander:${PORTSDIR}/devel/rubygem-commander \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 E04859D3F5D; Sat, 10 Oct 2015 23:12:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD47890F; Sat, 10 Oct 2015 23:12:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCcW4080339; Sat, 10 Oct 2015 23:12:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCctd080338; Sat, 10 Oct 2015 23:12:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCctd080338@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399047 - head/sysutils/rubygem-hammer_cli 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: Sat, 10 Oct 2015 23:12:40 -0000 Author: sunpoet Date: Sat Oct 10 23:12:38 2015 New Revision: 399047 URL: https://svnweb.freebsd.org/changeset/ports/399047 Log: - Add LICENSE_FILE Approved by: portmgr (blanket) Modified: head/sysutils/rubygem-hammer_cli/Makefile Modified: head/sysutils/rubygem-hammer_cli/Makefile ============================================================================== --- head/sysutils/rubygem-hammer_cli/Makefile Sat Oct 10 23:12:34 2015 (r399046) +++ head/sysutils/rubygem-hammer_cli/Makefile Sat Oct 10 23:12:38 2015 (r399047) @@ -10,6 +10,7 @@ MAINTAINER= mmoll@FreeBSD.org COMMENT= Provides CLI interfaces for Ruby apps LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-apipie-bindings>=0.0.14:${PORTSDIR}/devel/rubygem-apipie-bindings \ rubygem-awesome_print>=1.1.0:${PORTSDIR}/devel/rubygem-awesome_print \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 3BDF39D3F98; Sat, 10 Oct 2015 23:12:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5383A3E; Sat, 10 Oct 2015 23:12:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANChhF080456; Sat, 10 Oct 2015 23:12:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCh9H080454; Sat, 10 Oct 2015 23:12:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCh9H080454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399048 - head/devel/rubygem-sidekiq 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: Sat, 10 Oct 2015 23:12:45 -0000 Author: sunpoet Date: Sat Oct 10 23:12:43 2015 New Revision: 399048 URL: https://svnweb.freebsd.org/changeset/ports/399048 Log: - Update to 3.5.1 - Add LICENSE_FILE Changes: https://github.com/mperham/sidekiq/blob/master/Changes.md Modified: head/devel/rubygem-sidekiq/Makefile head/devel/rubygem-sidekiq/distinfo Modified: head/devel/rubygem-sidekiq/Makefile ============================================================================== --- head/devel/rubygem-sidekiq/Makefile Sat Oct 10 23:12:38 2015 (r399047) +++ head/devel/rubygem-sidekiq/Makefile Sat Oct 10 23:12:43 2015 (r399048) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sidekiq -PORTVERSION= 3.5.0 +PORTVERSION= 3.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -10,8 +10,9 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Simple, efficient background processing for Ruby LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-celluloid>=0.17.0:${PORTSDIR}/devel/rubygem-celluloid \ +RUN_DEPENDS= rubygem-celluloid>=0.17.2:${PORTSDIR}/devel/rubygem-celluloid \ rubygem-connection_pool>=2.2:${PORTSDIR}/net/rubygem-connection_pool \ rubygem-json>=1:${PORTSDIR}/devel/rubygem-json \ rubygem-redis>=3.2.1:${PORTSDIR}/databases/rubygem-redis \ Modified: head/devel/rubygem-sidekiq/distinfo ============================================================================== --- head/devel/rubygem-sidekiq/distinfo Sat Oct 10 23:12:38 2015 (r399047) +++ head/devel/rubygem-sidekiq/distinfo Sat Oct 10 23:12:43 2015 (r399048) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sidekiq-3.5.0.gem) = 9ac4e7dc257c7f972232cd4f4254a9fbdf9f61092155e075e19556d3c47d6887 -SIZE (rubygem/sidekiq-3.5.0.gem) = 294400 +SHA256 (rubygem/sidekiq-3.5.1.gem) = a0b12f70171a2ce19065425348773fc6f080c487b24e1fe8a53e44222208c793 +SIZE (rubygem/sidekiq-3.5.1.gem) = 297472 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12: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 809589D3FBF; Sat, 10 Oct 2015 23:12:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21137B83; Sat, 10 Oct 2015 23:12:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCmDK080557; Sat, 10 Oct 2015 23:12:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCmuo080556; Sat, 10 Oct 2015 23:12:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCmuo080556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399049 - head/devel/rubygem-sidetiq 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: Sat, 10 Oct 2015 23:12:49 -0000 Author: sunpoet Date: Sat Oct 10 23:12:48 2015 New Revision: 399049 URL: https://svnweb.freebsd.org/changeset/ports/399049 Log: - Use @FreeBSD.org - Add LICENSE_FILE Modified: head/devel/rubygem-sidetiq/Makefile Modified: head/devel/rubygem-sidetiq/Makefile ============================================================================== --- head/devel/rubygem-sidetiq/Makefile Sat Oct 10 23:12:43 2015 (r399048) +++ head/devel/rubygem-sidetiq/Makefile Sat Oct 10 23:12:48 2015 (r399049) @@ -6,10 +6,11 @@ PORTVERSION= 0.6.3 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ruby@freebsd.org +MAINTAINER= ruby@FreeBSD.org COMMENT= Recurring jobs for Sidekiq LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-celluloid>=0.14.1:${PORTSDIR}/devel/rubygem-celluloid \ rubygem-ice_cube>=0.11.1:${PORTSDIR}/devel/rubygem-ice_cube \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:54 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 7590D9D3FEA; Sat, 10 Oct 2015 23:12:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C648FCBD; Sat, 10 Oct 2015 23:12:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCqG7080673; Sat, 10 Oct 2015 23:12:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCqiG080671; Sat, 10 Oct 2015 23:12:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCqiG080671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399050 - head/graphics/rubygem-gemojione 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: Sat, 10 Oct 2015 23:12:54 -0000 Author: sunpoet Date: Sat Oct 10 23:12:52 2015 New Revision: 399050 URL: https://svnweb.freebsd.org/changeset/ports/399050 Log: - Update to 2.1.0 Changes: https://github.com/jonathanwiesel/gemojione/commits/master Modified: head/graphics/rubygem-gemojione/Makefile head/graphics/rubygem-gemojione/distinfo Modified: head/graphics/rubygem-gemojione/Makefile ============================================================================== --- head/graphics/rubygem-gemojione/Makefile Sat Oct 10 23:12:48 2015 (r399049) +++ head/graphics/rubygem-gemojione/Makefile Sat Oct 10 23:12:52 2015 (r399050) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gemojione -PORTVERSION= 2.0.1 +PORTVERSION= 2.1.0 CATEGORIES= graphics rubygems MASTER_SITES= RG @@ -11,10 +11,9 @@ COMMENT= Gem containing EmojiOne unicode LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-json>0:${PORTSDIR}/devel/rubygem-json +RUN_DEPENDS= rubygem-json>=0:${PORTSDIR}/devel/rubygem-json NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/graphics/rubygem-gemojione/distinfo ============================================================================== --- head/graphics/rubygem-gemojione/distinfo Sat Oct 10 23:12:48 2015 (r399049) +++ head/graphics/rubygem-gemojione/distinfo Sat Oct 10 23:12:52 2015 (r399050) @@ -1,2 +1,2 @@ -SHA256 (rubygem/gemojione-2.0.1.gem) = d888584bce980007ebf991a4bd6967c6b87624e7975aa143f80b02fd36a0a518 -SIZE (rubygem/gemojione-2.0.1.gem) = 1946112 +SHA256 (rubygem/gemojione-2.1.0.gem) = 266f5ddb22f7cb7d5773400490a96a0cb07bd5108c6b4cbcf989f0cbda1cc79b +SIZE (rubygem/gemojione-2.1.0.gem) = 2375680 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:12:58 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 9492B9D201D; Sat, 10 Oct 2015 23:12:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CD98D7C; Sat, 10 Oct 2015 23:12:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANCvqL080776; Sat, 10 Oct 2015 23:12:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANCv3Q080775; Sat, 10 Oct 2015 23:12:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102312.t9ANCv3Q080775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399051 - head/devel/rubygem-ice_cube 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: Sat, 10 Oct 2015 23:12:58 -0000 Author: sunpoet Date: Sat Oct 10 23:12:57 2015 New Revision: 399051 URL: https://svnweb.freebsd.org/changeset/ports/399051 Log: - Use @FreeBSD.org - Add LICENSE Modified: head/devel/rubygem-ice_cube/Makefile Modified: head/devel/rubygem-ice_cube/Makefile ============================================================================== --- head/devel/rubygem-ice_cube/Makefile Sat Oct 10 23:12:52 2015 (r399050) +++ head/devel/rubygem-ice_cube/Makefile Sat Oct 10 23:12:57 2015 (r399051) @@ -6,11 +6,12 @@ PORTVERSION= 0.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ruby@freebsd.org +MAINTAINER= ruby@FreeBSD.org COMMENT= Recurring date library for Ruby -NO_ARCH= yes +LICENSE= MIT +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:02 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 E6F0A9D204E; Sat, 10 Oct 2015 23:13:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1424E4E; Sat, 10 Oct 2015 23:13:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AND1L4080880; Sat, 10 Oct 2015 23:13:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AND1j9080879; Sat, 10 Oct 2015 23:13:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9AND1j9080879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399052 - head/www/rubygem-task_list 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: Sat, 10 Oct 2015 23:13:03 -0000 Author: sunpoet Date: Sat Oct 10 23:13:01 2015 New Revision: 399052 URL: https://svnweb.freebsd.org/changeset/ports/399052 Log: - Use @FreeBSD.org - Add LICENSE_FILE - Use = instead of ?= Modified: head/www/rubygem-task_list/Makefile Modified: head/www/rubygem-task_list/Makefile ============================================================================== --- head/www/rubygem-task_list/Makefile Sat Oct 10 23:12:57 2015 (r399051) +++ head/www/rubygem-task_list/Makefile Sat Oct 10 23:13:01 2015 (r399052) @@ -6,15 +6,15 @@ PORTVERSION= 1.0.2 CATEGORIES= www rubygems MASTER_SITES= RG -MAINTAINER= ruby@freebsd.org +MAINTAINER= ruby@FreeBSD.org COMMENT= GitHub-flavored-Markdown TaskList components LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS?= rubygem-html-pipeline>=0.0.0:${PORTSDIR}/textproc/rubygem-html-pipeline +RUN_DEPENDS= rubygem-html-pipeline>=0:${PORTSDIR}/textproc/rubygem-html-pipeline NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:07 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 4481C9D2078; Sat, 10 Oct 2015 23:13:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CCDBF2A; Sat, 10 Oct 2015 23:13:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9AND6HJ080970; Sat, 10 Oct 2015 23:13:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9AND6YH080969; Sat, 10 Oct 2015 23:13:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9AND6YH080969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399053 - head/devel/wxformbuilder 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: Sat, 10 Oct 2015 23:13:07 -0000 Author: sunpoet Date: Sat Oct 10 23:13:05 2015 New Revision: 399053 URL: https://svnweb.freebsd.org/changeset/ports/399053 Log: - Use @FreeBSD.org Approved by: portmgr (blanket) Modified: head/devel/wxformbuilder/Makefile Modified: head/devel/wxformbuilder/Makefile ============================================================================== --- head/devel/wxformbuilder/Makefile Sat Oct 10 23:13:01 2015 (r399052) +++ head/devel/wxformbuilder/Makefile Sat Oct 10 23:13:05 2015 (r399053) @@ -6,7 +6,7 @@ CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-nightly/${DISTVERSION} DISTNAME= wxFormBuilder_v${DISTVERSION}-source -MAINTAINER= shurd@freebsd.org +MAINTAINER= shurd@FreeBSD.org COMMENT= WYSIWYG GUI Designer and Code Generator for wxWidgets LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13: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 A50B59D20A5; Sat, 10 Oct 2015 23:13:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C9A2100A; Sat, 10 Oct 2015 23:13:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDAao081057; Sat, 10 Oct 2015 23:13:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDAZ6081056; Sat, 10 Oct 2015 23:13:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDAZ6081056@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399054 - head/sysutils/iocage-devel 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: Sat, 10 Oct 2015 23:13:11 -0000 Author: sunpoet Date: Sat Oct 10 23:13:10 2015 New Revision: 399054 URL: https://svnweb.freebsd.org/changeset/ports/399054 Log: - Use @FreeBSD.org Approved by: portmgr (blanket) Modified: head/sysutils/iocage-devel/Makefile Modified: head/sysutils/iocage-devel/Makefile ============================================================================== --- head/sysutils/iocage-devel/Makefile Sat Oct 10 23:13:05 2015 (r399053) +++ head/sysutils/iocage-devel/Makefile Sat Oct 10 23:13:10 2015 (r399054) @@ -6,7 +6,7 @@ PORTVERSION= 20150921 CATEGORIES= sysutils PKGNAMESUFFIX= -devel -MAINTAINER= kmoore@freebsd.org +MAINTAINER= kmoore@FreeBSD.org COMMENT= Full featured, no dependency Jail container manager - devel build LICENSE= BSD2CLAUSE From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:16 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 1974C9D20D2; Sat, 10 Oct 2015 23:13:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC31210E8; Sat, 10 Oct 2015 23:13:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDFJI081174; Sat, 10 Oct 2015 23:13:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDEUk081172; Sat, 10 Oct 2015 23:13:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDEUk081172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399055 - head/textproc/rubygem-sass 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: Sat, 10 Oct 2015 23:13:16 -0000 Author: sunpoet Date: Sat Oct 10 23:13:14 2015 New Revision: 399055 URL: https://svnweb.freebsd.org/changeset/ports/399055 Log: - Update to 3.4.19 - Add LICENSE_FILE Changes: https://github.com/sass/sass/blob/stable/doc-src/SASS_CHANGELOG.md http://sass-lang.com/documentation/file.SASS_CHANGELOG.html Modified: head/textproc/rubygem-sass/Makefile head/textproc/rubygem-sass/distinfo Modified: head/textproc/rubygem-sass/Makefile ============================================================================== --- head/textproc/rubygem-sass/Makefile Sat Oct 10 23:13:10 2015 (r399054) +++ head/textproc/rubygem-sass/Makefile Sat Oct 10 23:13:14 2015 (r399055) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sass -PORTVERSION= 3.4.18 +PORTVERSION= 3.4.19 CATEGORIES= textproc ruby MASTER_SITES= RG @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sass is an extension of CSS3 LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes USE_RUBY= yes Modified: head/textproc/rubygem-sass/distinfo ============================================================================== --- head/textproc/rubygem-sass/distinfo Sat Oct 10 23:13:10 2015 (r399054) +++ head/textproc/rubygem-sass/distinfo Sat Oct 10 23:13:14 2015 (r399055) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sass-3.4.18.gem) = 1dbc7edeef048ae9d7e48089c8d77841d97a6cbed1b6bc894dc126f94c43b0ea -SIZE (rubygem/sass-3.4.18.gem) = 339456 +SHA256 (rubygem/sass-3.4.19.gem) = 2faca8aa3b76beb0bc59dccabc5114eb4118af9d613121fbaa120e1c8b7f0290 +SIZE (rubygem/sass-3.4.19.gem) = 338944 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13: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 7DC6E9D2109; Sat, 10 Oct 2015 23:13:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 414B311CA; Sat, 10 Oct 2015 23:13:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDJmZ081274; Sat, 10 Oct 2015 23:13:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDJuM081273; Sat, 10 Oct 2015 23:13:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDJuM081273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399056 - head/textproc/rubygem-compass 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: Sat, 10 Oct 2015 23:13:20 -0000 Author: sunpoet Date: Sat Oct 10 23:13:19 2015 New Revision: 399056 URL: https://svnweb.freebsd.org/changeset/ports/399056 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-compass/Makefile Modified: head/textproc/rubygem-compass/Makefile ============================================================================== --- head/textproc/rubygem-compass/Makefile Sat Oct 10 23:13:14 2015 (r399055) +++ head/textproc/rubygem-compass/Makefile Sat Oct 10 23:13:19 2015 (r399056) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Provides an open-source CSS authoring framework LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.markdown RUN_DEPENDS= rubygem-chunky_png>=1.2:${PORTSDIR}/graphics/rubygem-chunky_png \ rubygem-compass-core>=1.0.2:${PORTSDIR}/textproc/rubygem-compass-core \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:24 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 C8A5C9D212F; Sat, 10 Oct 2015 23:13:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9488812A5; Sat, 10 Oct 2015 23:13:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDNKB081377; Sat, 10 Oct 2015 23:13:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDNqj081376; Sat, 10 Oct 2015 23:13:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDNqj081376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399057 - head/textproc/rubygem-compass-core 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: Sat, 10 Oct 2015 23:13:24 -0000 Author: sunpoet Date: Sat Oct 10 23:13:23 2015 New Revision: 399057 URL: https://svnweb.freebsd.org/changeset/ports/399057 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-compass-core/Makefile Modified: head/textproc/rubygem-compass-core/Makefile ============================================================================== --- head/textproc/rubygem-compass-core/Makefile Sat Oct 10 23:13:19 2015 (r399056) +++ head/textproc/rubygem-compass-core/Makefile Sat Oct 10 23:13:23 2015 (r399057) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compass core stylesheet library and minimum required ruby extensions LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-multi_json>=1.0:${PORTSDIR}/devel/rubygem-multi_json \ rubygem-sass>=3.3.0:${PORTSDIR}/textproc/rubygem-sass From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:29 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 323E09D216A; Sat, 10 Oct 2015 23:13:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA9AD136B; Sat, 10 Oct 2015 23:13:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDSnV081481; Sat, 10 Oct 2015 23:13:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDSm9081480; Sat, 10 Oct 2015 23:13:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDSm9081480@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399058 - head/textproc/rubygem-compass-import-once 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: Sat, 10 Oct 2015 23:13:29 -0000 Author: sunpoet Date: Sat Oct 10 23:13:27 2015 New Revision: 399058 URL: https://svnweb.freebsd.org/changeset/ports/399058 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-compass-import-once/Makefile Modified: head/textproc/rubygem-compass-import-once/Makefile ============================================================================== --- head/textproc/rubygem-compass-import-once/Makefile Sat Oct 10 23:13:23 2015 (r399057) +++ head/textproc/rubygem-compass-import-once/Makefile Sat Oct 10 23:13:27 2015 (r399058) @@ -10,6 +10,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compass core stylesheet library and minimum required ruby extensions LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sass>=3.2:${PORTSDIR}/textproc/rubygem-sass From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:34 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 4AF509D219F; Sat, 10 Oct 2015 23:13:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 608D514A4; Sat, 10 Oct 2015 23:13:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDW17081582; Sat, 10 Oct 2015 23:13:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDW6d081581; Sat, 10 Oct 2015 23:13:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDW6d081581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399059 - head/textproc/rubygem-jekyll-assets 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: Sat, 10 Oct 2015 23:13:34 -0000 Author: sunpoet Date: Sat Oct 10 23:13:32 2015 New Revision: 399059 URL: https://svnweb.freebsd.org/changeset/ports/399059 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-jekyll-assets/Makefile Modified: head/textproc/rubygem-jekyll-assets/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-assets/Makefile Sat Oct 10 23:13:27 2015 (r399058) +++ head/textproc/rubygem-jekyll-assets/Makefile Sat Oct 10 23:13:32 2015 (r399059) @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Create javascript/CSS assets for Jekyll sites LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-fastimage>=1.6:${PORTSDIR}/graphics/rubygem-fastimage \ rubygem-jekyll>=2:${PORTSDIR}/www/rubygem-jekyll \ @@ -20,7 +21,6 @@ RUN_DEPENDS= rubygem-fastimage>=1.6:${PO rubygem-sprockets-sass>=0:${PORTSDIR}/devel/rubygem-sprockets-sass NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:38 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 03AEC9D21D1; Sat, 10 Oct 2015 23:13:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C39EE15A1; Sat, 10 Oct 2015 23:13:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDaXx081685; Sat, 10 Oct 2015 23:13:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDanK081684; Sat, 10 Oct 2015 23:13:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDanK081684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399060 - head/textproc/rubygem-sass-rails 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: Sat, 10 Oct 2015 23:13:38 -0000 Author: sunpoet Date: Sat Oct 10 23:13:36 2015 New Revision: 399060 URL: https://svnweb.freebsd.org/changeset/ports/399060 Log: - Add LICENSE_FILE Modified: head/textproc/rubygem-sass-rails/Makefile Modified: head/textproc/rubygem-sass-rails/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails/Makefile Sat Oct 10 23:13:32 2015 (r399059) +++ head/textproc/rubygem-sass-rails/Makefile Sat Oct 10 23:13:36 2015 (r399060) @@ -11,6 +11,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties>=3.2.0:${PORTSDIR}/www/rubygem-railties \ rubygem-sass>=3.3.4:${PORTSDIR}/textproc/rubygem-sass \ From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13: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 30F4C9D21FB; Sat, 10 Oct 2015 23:13:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0CC41795; Sat, 10 Oct 2015 23:13:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDfGM081772; Sat, 10 Oct 2015 23:13:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDf7P081771; Sat, 10 Oct 2015 23:13:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDf7P081771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399061 - head/textproc/rubygem-scss_lint 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: Sat, 10 Oct 2015 23:13:42 -0000 Author: sunpoet Date: Sat Oct 10 23:13:40 2015 New Revision: 399061 URL: https://svnweb.freebsd.org/changeset/ports/399061 Log: - Fix typo Approved by: portmgr (blanket) Modified: head/textproc/rubygem-scss_lint/Makefile Modified: head/textproc/rubygem-scss_lint/Makefile ============================================================================== --- head/textproc/rubygem-scss_lint/Makefile Sat Oct 10 23:13:36 2015 (r399060) +++ head/textproc/rubygem-scss_lint/Makefile Sat Oct 10 23:13:40 2015 (r399061) @@ -9,7 +9,7 @@ MAINTAINER= mmoll@FreeBSD.org COMMENT= SCSS linter LICENSE= MIT -LICENSE-FILE= ${WRKSRC}/MIT-LICENSE +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rainbow>=2.0:${PORTSDIR}/devel/rubygem-rainbow \ rubygem-sass>=3.4.15:${PORTSDIR}/textproc/rubygem-sass From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:46 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 900AC9D222B; Sat, 10 Oct 2015 23:13:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A2AA1890; Sat, 10 Oct 2015 23:13:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDjpC081875; Sat, 10 Oct 2015 23:13:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDjMh081874; Sat, 10 Oct 2015 23:13:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDjMh081874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399062 - head/www/rubygem-bootstrap-sass 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: Sat, 10 Oct 2015 23:13:46 -0000 Author: sunpoet Date: Sat Oct 10 23:13:45 2015 New Revision: 399062 URL: https://svnweb.freebsd.org/changeset/ports/399062 Log: - Add LICENSE_FILE - Reword COMMENT Modified: head/www/rubygem-bootstrap-sass/Makefile Modified: head/www/rubygem-bootstrap-sass/Makefile ============================================================================== --- head/www/rubygem-bootstrap-sass/Makefile Sat Oct 10 23:13:40 2015 (r399061) +++ head/www/rubygem-bootstrap-sass/Makefile Sat Oct 10 23:13:45 2015 (r399062) @@ -6,9 +6,10 @@ CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org -COMMENT= Twitter's Bootstrap +COMMENT= Bootstrap by Twitter LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-autoprefixer-rails>=5.0.0.1:${PORTSDIR}/textproc/rubygem-autoprefixer-rails \ rubygem-sass>=3.3.0:${PORTSDIR}/textproc/rubygem-sass From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:51 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 6647D9D2257; Sat, 10 Oct 2015 23:13:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 303861974; Sat, 10 Oct 2015 23:13:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDoVK081989; Sat, 10 Oct 2015 23:13:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDol0081987; Sat, 10 Oct 2015 23:13:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDol0081987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399063 - head/www/rubygem-semantic-ui-sass 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: Sat, 10 Oct 2015 23:13:51 -0000 Author: sunpoet Date: Sat Oct 10 23:13:49 2015 New Revision: 399063 URL: https://svnweb.freebsd.org/changeset/ports/399063 Log: - Update to 2.1.3.0 - Add LICENSE_FILE Changes: https://github.com/doabit/semantic-ui-sass/blob/master/CHANGELOG.md https://github.com/doabit/semantic-ui-sass/commits/master Modified: head/www/rubygem-semantic-ui-sass/Makefile head/www/rubygem-semantic-ui-sass/distinfo Modified: head/www/rubygem-semantic-ui-sass/Makefile ============================================================================== --- head/www/rubygem-semantic-ui-sass/Makefile Sat Oct 10 23:13:45 2015 (r399062) +++ head/www/rubygem-semantic-ui-sass/Makefile Sat Oct 10 23:13:49 2015 (r399063) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= semantic-ui-sass -PORTVERSION= 1.11.5.0 +PORTVERSION= 2.1.3.0 CATEGORIES= www rubygems MASTER_SITES= RG @@ -10,6 +10,7 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Semantic UI, converted to Sass and ready to drop into Rails & Compass LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sass>=3.2:${PORTSDIR}/textproc/rubygem-sass Modified: head/www/rubygem-semantic-ui-sass/distinfo ============================================================================== --- head/www/rubygem-semantic-ui-sass/distinfo Sat Oct 10 23:13:45 2015 (r399062) +++ head/www/rubygem-semantic-ui-sass/distinfo Sat Oct 10 23:13:49 2015 (r399063) @@ -1,2 +1,2 @@ -SHA256 (rubygem/semantic-ui-sass-1.11.5.0.gem) = c1034dc28a2896b91e3a1a726361990e7377051dc950e913b50350da2eb629e1 -SIZE (rubygem/semantic-ui-sass-1.11.5.0.gem) = 790016 +SHA256 (rubygem/semantic-ui-sass-2.1.3.0.gem) = 050fe73f3481576da86fcef712d693f887799e01e2b4255be1fccbaa7dd1241c +SIZE (rubygem/semantic-ui-sass-2.1.3.0.gem) = 825344 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:13:55 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 AF2A89D228C; Sat, 10 Oct 2015 23:13:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76DF81A49; Sat, 10 Oct 2015 23:13:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDsWC082092; Sat, 10 Oct 2015 23:13:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDsL9082091; Sat, 10 Oct 2015 23:13:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDsL9082091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399064 - head/textproc/rubygem-sass32 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: Sat, 10 Oct 2015 23:13:55 -0000 Author: sunpoet Date: Sat Oct 10 23:13:54 2015 New Revision: 399064 URL: https://svnweb.freebsd.org/changeset/ports/399064 Log: - Add LICENSE_FILE - Update PORTSCOUT Modified: head/textproc/rubygem-sass32/Makefile Modified: head/textproc/rubygem-sass32/Makefile ============================================================================== --- head/textproc/rubygem-sass32/Makefile Sat Oct 10 23:13:49 2015 (r399063) +++ head/textproc/rubygem-sass32/Makefile Sat Oct 10 23:13:54 2015 (r399064) @@ -11,13 +11,13 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sass is an extension of CSS3 LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -NO_ARCH= yes +PORTSCOUT= limit:^3\.2\. +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PORTSCOUT= ignore - .include From owner-svn-ports-head@freebsd.org Sat Oct 10 23:14:00 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 036F89D22B3; Sat, 10 Oct 2015 23:14:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4BBB1B17; Sat, 10 Oct 2015 23:13:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANDws5082193; Sat, 10 Oct 2015 23:13:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANDwNJ082192; Sat, 10 Oct 2015 23:13:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102313.t9ANDwNJ082192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:13:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399065 - head/textproc/rubygem-sass-rails4 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: Sat, 10 Oct 2015 23:14:00 -0000 Author: sunpoet Date: Sat Oct 10 23:13:58 2015 New Revision: 399065 URL: https://svnweb.freebsd.org/changeset/ports/399065 Log: - Add LICENSE_FILE - Update RUN_DEPENDS - Fix PORTSCOUT Modified: head/textproc/rubygem-sass-rails4/Makefile Modified: head/textproc/rubygem-sass-rails4/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails4/Makefile Sat Oct 10 23:13:54 2015 (r399064) +++ head/textproc/rubygem-sass-rails4/Makefile Sat Oct 10 23:13:58 2015 (r399065) @@ -12,17 +12,18 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ - rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ - rubygem-sprockets>=2.12.3:${PORTSDIR}/devel/rubygem-sprockets \ + rubygem-sass32>=3.2.2:${PORTSDIR}/textproc/rubygem-sass32 \ + rubygem-sprockets>=2.8:${PORTSDIR}/devel/rubygem-sprockets \ rubygem-sprockets-rails>=2.0:${PORTSDIR}/devel/rubygem-sprockets-rails +PORTSCOUT= limit:^4\. + NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PORTSCOUT= limit:^1\.4 - .include From owner-svn-ports-head@freebsd.org Sat Oct 10 23:14:08 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 E01479D2310; Sat, 10 Oct 2015 23:14:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 726FC1CF4; Sat, 10 Oct 2015 23:14:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANE7Uq082401; Sat, 10 Oct 2015 23:14:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANE795082400; Sat, 10 Oct 2015 23:14:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102314.t9ANE795082400@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:14:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399067 - head/textproc/rubygem-sass-rails5 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: Sat, 10 Oct 2015 23:14:09 -0000 Author: sunpoet Date: Sat Oct 10 23:14:07 2015 New Revision: 399067 URL: https://svnweb.freebsd.org/changeset/ports/399067 Log: - Update RUN_DEPENDS: use newer rubygem-sass - Bump PORTREVISION for dependency change Modified: head/textproc/rubygem-sass-rails5/Makefile Modified: head/textproc/rubygem-sass-rails5/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails5/Makefile Sat Oct 10 23:14:02 2015 (r399066) +++ head/textproc/rubygem-sass-rails5/Makefile Sat Oct 10 23:14:07 2015 (r399067) @@ -3,6 +3,7 @@ PORTNAME= sass-rails PORTVERSION= 5.0.4 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 @@ -14,7 +15,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ - rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ + rubygem-sass>=3.1:${PORTSDIR}/textproc/rubygem-sass \ rubygem-sprockets3>=3.0.3:${PORTSDIR}/devel/rubygem-sprockets3 \ rubygem-sprockets-rails>=2.0:${PORTSDIR}/devel/rubygem-sprockets-rails \ rubygem-tilt>=1.1:${PORTSDIR}/devel/rubygem-tilt From owner-svn-ports-head@freebsd.org Sat Oct 10 23:14: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 679B29D22EB; Sat, 10 Oct 2015 23:14:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F2661C1E; Sat, 10 Oct 2015 23:14:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANE3bJ082299; Sat, 10 Oct 2015 23:14:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANE3nV082298; Sat, 10 Oct 2015 23:14:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102314.t9ANE3nV082298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:14:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399066 - head/textproc/rubygem-sass-rails4-rails41 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: Sat, 10 Oct 2015 23:14:04 -0000 Author: sunpoet Date: Sat Oct 10 23:14:02 2015 New Revision: 399066 URL: https://svnweb.freebsd.org/changeset/ports/399066 Log: - Update RUN_DEPENDS Modified: head/textproc/rubygem-sass-rails4-rails41/Makefile Modified: head/textproc/rubygem-sass-rails4-rails41/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails4-rails41/Makefile Sat Oct 10 23:13:58 2015 (r399065) +++ head/textproc/rubygem-sass-rails4-rails41/Makefile Sat Oct 10 23:14:02 2015 (r399066) @@ -4,8 +4,8 @@ PKGNAMESUFFIX= 4-rails41 RUN_DEPENDS= rubygem-railties41>=4.1.12:${PORTSDIR}/www/rubygem-railties41 \ - rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ - rubygem-sprockets>=2.12.3:${PORTSDIR}/devel/rubygem-sprockets \ + rubygem-sass32>=3.2.2:${PORTSDIR}/textproc/rubygem-sass32 \ + rubygem-sprockets>=2.8:${PORTSDIR}/devel/rubygem-sprockets \ rubygem-sprockets-rails-rails41>=2.0:${PORTSDIR}/devel/rubygem-sprockets-rails-rails41 MASTERDIR= ${.CURDIR}/../rubygem-sass-rails4 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:14:13 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 807749D2347; Sat, 10 Oct 2015 23:14:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4802C1DD8; Sat, 10 Oct 2015 23:14:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANEC5j082516; Sat, 10 Oct 2015 23:14:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANECPA082514; Sat, 10 Oct 2015 23:14:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102314.t9ANECPA082514@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:14:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399068 - head/devel/rubygem-bosh_common 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: Sat, 10 Oct 2015 23:14:13 -0000 Author: sunpoet Date: Sat Oct 10 23:14:11 2015 New Revision: 399068 URL: https://svnweb.freebsd.org/changeset/ports/399068 Log: - Update to 1.3098.0 Changes: https://github.com/cloudfoundry/bosh/releases Modified: head/devel/rubygem-bosh_common/Makefile head/devel/rubygem-bosh_common/distinfo Modified: head/devel/rubygem-bosh_common/Makefile ============================================================================== --- head/devel/rubygem-bosh_common/Makefile Sat Oct 10 23:14:07 2015 (r399067) +++ head/devel/rubygem-bosh_common/Makefile Sat Oct 10 23:14:11 2015 (r399068) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bosh_common -PORTVERSION= 1.2941.0 +PORTVERSION= 1.3098.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-logging>=1.8.2:${PO rubygem-semi_semantic>=1.1.0:${PORTSDIR}/devel/rubygem-semi_semantic NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-bosh_common/distinfo ============================================================================== --- head/devel/rubygem-bosh_common/distinfo Sat Oct 10 23:14:07 2015 (r399067) +++ head/devel/rubygem-bosh_common/distinfo Sat Oct 10 23:14:11 2015 (r399068) @@ -1,2 +1,2 @@ -SHA256 (rubygem/bosh_common-1.2941.0.gem) = 4706a85e48ad371346cf4a413a92331e7d847674a3de14e123356eedf8bb331f -SIZE (rubygem/bosh_common-1.2941.0.gem) = 11776 +SHA256 (rubygem/bosh_common-1.3098.0.gem) = 43229d4a2cdba0f53dc9a2fa773df351e32fc006b5747de3e9ed021a7c1e0c55 +SIZE (rubygem/bosh_common-1.3098.0.gem) = 11776 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:14: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 54C699D2386; Sat, 10 Oct 2015 23:14:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C9791EB2; Sat, 10 Oct 2015 23:14:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANEHjo082633; Sat, 10 Oct 2015 23:14:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANEHLR082631; Sat, 10 Oct 2015 23:14:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102314.t9ANEHLR082631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399069 - head/devel/rubygem-bosh-template 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: Sat, 10 Oct 2015 23:14:18 -0000 Author: sunpoet Date: Sat Oct 10 23:14:16 2015 New Revision: 399069 URL: https://svnweb.freebsd.org/changeset/ports/399069 Log: - Update to 1.3098.0 Changes: https://github.com/cloudfoundry/bosh/releases Modified: head/devel/rubygem-bosh-template/Makefile head/devel/rubygem-bosh-template/distinfo Modified: head/devel/rubygem-bosh-template/Makefile ============================================================================== --- head/devel/rubygem-bosh-template/Makefile Sat Oct 10 23:14:11 2015 (r399068) +++ head/devel/rubygem-bosh-template/Makefile Sat Oct 10 23:14:16 2015 (r399069) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bosh-template -PORTVERSION= 1.2941.0 +PORTVERSION= 1.3098.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -13,7 +13,6 @@ LICENSE= APACHE20 RUN_DEPENDS= rubygem-semi_semantic>=1.1.0:${PORTSDIR}/devel/rubygem-semi_semantic NO_ARCH= yes - USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-bosh-template/distinfo ============================================================================== --- head/devel/rubygem-bosh-template/distinfo Sat Oct 10 23:14:11 2015 (r399068) +++ head/devel/rubygem-bosh-template/distinfo Sat Oct 10 23:14:16 2015 (r399069) @@ -1,2 +1,2 @@ -SHA256 (rubygem/bosh-template-1.2941.0.gem) = 32e84192e87f88863acb943966bba45ae21bd11aa9cde541752b22d9bd366455 -SIZE (rubygem/bosh-template-1.2941.0.gem) = 6656 +SHA256 (rubygem/bosh-template-1.3098.0.gem) = 1dd1593805c203f39630c037290b982f57d9f17830a1af3d5962ca3be7a01d4f +SIZE (rubygem/bosh-template-1.3098.0.gem) = 6656 From owner-svn-ports-head@freebsd.org Sat Oct 10 23:15:08 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 4B54F9D23D5; Sat, 10 Oct 2015 23:15:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23FECAF; Sat, 10 Oct 2015 23:15:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANF7H7082796; Sat, 10 Oct 2015 23:15:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANF7Pl082793; Sat, 10 Oct 2015 23:15:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102315.t9ANF7Pl082793@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:15:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399070 - in head/devel/rubygem-blobstore_client: . 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: Sat, 10 Oct 2015 23:15:08 -0000 Author: sunpoet Date: Sat Oct 10 23:15:06 2015 New Revision: 399070 URL: https://svnweb.freebsd.org/changeset/ports/399070 Log: - Update to 1.3098.0 Changes: https://github.com/cloudfoundry/bosh/releases Modified: head/devel/rubygem-blobstore_client/Makefile head/devel/rubygem-blobstore_client/distinfo head/devel/rubygem-blobstore_client/files/patch-gemspec Modified: head/devel/rubygem-blobstore_client/Makefile ============================================================================== --- head/devel/rubygem-blobstore_client/Makefile Sat Oct 10 23:14:16 2015 (r399069) +++ head/devel/rubygem-blobstore_client/Makefile Sat Oct 10 23:15:06 2015 (r399070) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= blobstore_client -PORTVERSION= 1.2941.0 -PORTREVISION= 1 +PORTVERSION= 1.3098.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -13,10 +12,10 @@ LICENSE= APACHE20 RUN_DEPENDS= rubygem-aws-sdk>=1.60.2:${PORTSDIR}/devel/rubygem-aws-sdk \ rubygem-bosh_common>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-bosh_common \ - rubygem-fog>=1.27.0:${PORTSDIR}/devel/rubygem-fog \ + rubygem-fog>=1.31.0:${PORTSDIR}/devel/rubygem-fog \ + rubygem-fog-aws>=0.7.6:${PORTSDIR}/net/rubygem-fog-aws \ rubygem-httpclient>=2.4.0:${PORTSDIR}/www/rubygem-httpclient \ - rubygem-multi_json>=1.1:${PORTSDIR}/devel/rubygem-multi_json \ - rubygem-ruby-atmos-pure>=1.0.5:${PORTSDIR}/devel/rubygem-ruby-atmos-pure + rubygem-multi_json>=1.1:${PORTSDIR}/devel/rubygem-multi_json NO_ARCH= yes USE_RUBY= yes Modified: head/devel/rubygem-blobstore_client/distinfo ============================================================================== --- head/devel/rubygem-blobstore_client/distinfo Sat Oct 10 23:14:16 2015 (r399069) +++ head/devel/rubygem-blobstore_client/distinfo Sat Oct 10 23:15:06 2015 (r399070) @@ -1,2 +1,2 @@ -SHA256 (rubygem/blobstore_client-1.2941.0.gem) = 06115218f8279b113f5270c1d946c1ff6019a86ed9bb7d6914a4e177f50d6799 -SIZE (rubygem/blobstore_client-1.2941.0.gem) = 12800 +SHA256 (rubygem/blobstore_client-1.3098.0.gem) = fb8b78dda81277de9f37c45ca0fe7e891251cf80d89ce53d8365b169969824d4 +SIZE (rubygem/blobstore_client-1.3098.0.gem) = 12288 Modified: head/devel/rubygem-blobstore_client/files/patch-gemspec ============================================================================== --- head/devel/rubygem-blobstore_client/files/patch-gemspec Sat Oct 10 23:14:16 2015 (r399069) +++ head/devel/rubygem-blobstore_client/files/patch-gemspec Sat Oct 10 23:15:06 2015 (r399070) @@ -1,13 +1,15 @@ ---- blobstore_client.gemspec.orig 2015-08-10 18:41:21 UTC +--- blobstore_client.gemspec.orig 2015-10-10 09:48:48 UTC +++ blobstore_client.gemspec -@@ -24,8 +24,8 @@ Gem::Specification.new do |s| +@@ -24,9 +24,9 @@ Gem::Specification.new do |s| if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["= 1.60.2"]) -- s.add_runtime_dependency(%q, ["~> 1.27.0"]) +- s.add_runtime_dependency(%q, ["<= 0.1.1"]) +- s.add_runtime_dependency(%q, ["~> 1.31.0"]) - s.add_runtime_dependency(%q, ["= 2.4.0"]) -+ s.add_runtime_dependency(%q, ["~> 1.27"]) ++ s.add_runtime_dependency(%q, [">= 0.7.6"]) ++ s.add_runtime_dependency(%q, [">= 1.31.0"]) + s.add_runtime_dependency(%q, [">= 2.4.0"]) s.add_runtime_dependency(%q, ["~> 1.1"]) - s.add_runtime_dependency(%q, ["~> 1.0.5"]) - s.add_runtime_dependency(%q, ["~> 1.2941.0"]) + s.add_runtime_dependency(%q, ["~> 1.3098.0"]) + s.add_development_dependency(%q, ["~> 3.0"]) From owner-svn-ports-head@freebsd.org Sat Oct 10 23:15:13 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 494B09D2402; Sat, 10 Oct 2015 23:15:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E206CC; Sat, 10 Oct 2015 23:15:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANFCqR082929; Sat, 10 Oct 2015 23:15:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANFBkD082926; Sat, 10 Oct 2015 23:15:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102315.t9ANFBkD082926@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:15:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399071 - in head/sysutils/rubygem-bosh_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: Sat, 10 Oct 2015 23:15:13 -0000 Author: sunpoet Date: Sat Oct 10 23:15:11 2015 New Revision: 399071 URL: https://svnweb.freebsd.org/changeset/ports/399071 Log: - Update to 1.3098.0 Changes: https://github.com/cloudfoundry/bosh/releases Modified: head/sysutils/rubygem-bosh_cli/Makefile head/sysutils/rubygem-bosh_cli/distinfo head/sysutils/rubygem-bosh_cli/files/patch-gemspec Modified: head/sysutils/rubygem-bosh_cli/Makefile ============================================================================== --- head/sysutils/rubygem-bosh_cli/Makefile Sat Oct 10 23:15:06 2015 (r399070) +++ head/sysutils/rubygem-bosh_cli/Makefile Sat Oct 10 23:15:11 2015 (r399071) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= bosh_cli -PORTVERSION= 1.2941.0 -PORTREVISION= 2 +PORTVERSION= 1.3098.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -24,6 +23,7 @@ RUN_DEPENDS= rubygem-blobstore_client>=$ rubygem-net-ssh>=2.2.1:${PORTSDIR}/security/rubygem-net-ssh \ rubygem-net-ssh-gateway>=1.2.0:${PORTSDIR}/security/rubygem-net-ssh-gateway \ rubygem-progressbar>=0.9.0:${PORTSDIR}/devel/rubygem-progressbar \ + rubygem-sshkey>=1.7.0:${PORTSDIR}/security/rubygem-sshkey \ rubygem-terminal-table>=1.4.3:${PORTSDIR}/textproc/rubygem-terminal-table NO_ARCH= yes Modified: head/sysutils/rubygem-bosh_cli/distinfo ============================================================================== --- head/sysutils/rubygem-bosh_cli/distinfo Sat Oct 10 23:15:06 2015 (r399070) +++ head/sysutils/rubygem-bosh_cli/distinfo Sat Oct 10 23:15:11 2015 (r399071) @@ -1,2 +1,2 @@ -SHA256 (rubygem/bosh_cli-1.2941.0.gem) = 0f4512de00d8e5e186ed6a9dcaaa07140ade8960bbce02add15b803049f5548f -SIZE (rubygem/bosh_cli-1.2941.0.gem) = 89088 +SHA256 (rubygem/bosh_cli-1.3098.0.gem) = f71960b596d7728278d6b460da85445cb31741254380329c1fb3fd7b9f46f8e2 +SIZE (rubygem/bosh_cli-1.3098.0.gem) = 95744 Modified: head/sysutils/rubygem-bosh_cli/files/patch-gemspec ============================================================================== --- head/sysutils/rubygem-bosh_cli/files/patch-gemspec Sat Oct 10 23:15:06 2015 (r399070) +++ head/sysutils/rubygem-bosh_cli/files/patch-gemspec Sat Oct 10 23:15:11 2015 (r399071) @@ -1,7 +1,7 @@ ---- bosh_cli.gemspec.orig 2015-08-10 18:37:20 UTC +--- bosh_cli.gemspec.orig 2015-10-10 09:54:54 UTC +++ bosh_cli.gemspec @@ -27,14 +27,14 @@ Gem::Specification.new do |s| - s.add_runtime_dependency(%q, ["~> 1.2941.0"]) + s.add_runtime_dependency(%q, ["~> 1.3098.0"]) s.add_runtime_dependency(%q, ["~> 3.2.1"]) s.add_runtime_dependency(%q, ["~> 1.7"]) - s.add_runtime_dependency(%q, ["~> 1.6.2"]) @@ -11,11 +11,11 @@ - s.add_runtime_dependency(%q, ["~> 1.4.3"]) + s.add_runtime_dependency(%q, [">= 2.4.0"]) + s.add_runtime_dependency(%q, [">= 1.4.3"]) - s.add_runtime_dependency(%q, ["~> 1.2941.0"]) + s.add_runtime_dependency(%q, ["~> 1.3098.0"]) s.add_runtime_dependency(%q, [">= 2.2.1"]) s.add_runtime_dependency(%q, ["~> 1.2.0"]) - s.add_runtime_dependency(%q, ["~> 1.1.0"]) + s.add_runtime_dependency(%q, [">= 1.1.0"]) s.add_runtime_dependency(%q, ["~> 1.5.0"]) s.add_runtime_dependency(%q, ["~> 0.5.4"]) - s.add_development_dependency(%q, ["~> 3.0"]) + s.add_runtime_dependency(%q, ["~> 1.7.0"]) From owner-svn-ports-head@freebsd.org Sat Oct 10 23:15:17 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 C13E29D2430; Sat, 10 Oct 2015 23:15:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87C101AF; Sat, 10 Oct 2015 23:15:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANFGtX083018; Sat, 10 Oct 2015 23:15:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANFGTm083017; Sat, 10 Oct 2015 23:15:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102315.t9ANFGTm083017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:15:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399072 - head/biology/ruby-bio 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: Sat, 10 Oct 2015 23:15:17 -0000 Author: sunpoet Date: Sat Oct 10 23:15:16 2015 New Revision: 399072 URL: https://svnweb.freebsd.org/changeset/ports/399072 Log: - Fix typo Approved by: portmgr (blanket) Modified: head/biology/ruby-bio/Makefile Modified: head/biology/ruby-bio/Makefile ============================================================================== --- head/biology/ruby-bio/Makefile Sat Oct 10 23:15:11 2015 (r399071) +++ head/biology/ruby-bio/Makefile Sat Oct 10 23:15:16 2015 (r399072) @@ -28,7 +28,7 @@ USE_RUBY_SETUP= yes SHEBANG_FILES= sample/biofetch.rb ruby_OLD_CMD= /usr/proj/bioruby/bin/ruby -XML_PARSER_RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/xmlparser.so:${PORTSDIR}/textproc/ruby-xmlparser +XMLPARSER_RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/xmlparser.so:${PORTSDIR}/textproc/ruby-xmlparser BDB4_RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb MYSQL_RUN_DEPENDS= rubygem-dbd-mysql>=0:${PORTSDIR}/databases/rubygem-dbd-mysql PGSQL_RUN_DEPENDS= rubygem-dbd-pg>=0:${PORTSDIR}/databases/rubygem-dbd-pg From owner-svn-ports-head@freebsd.org Sat Oct 10 23:15: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 14C969D2459; Sat, 10 Oct 2015 23:15:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D10CD28B; Sat, 10 Oct 2015 23:15:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANFKtw083106; Sat, 10 Oct 2015 23:15:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANFKkA083105; Sat, 10 Oct 2015 23:15:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510102315.t9ANFKkA083105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Oct 2015 23:15:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399073 - head/graphics/libbpg 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: Sat, 10 Oct 2015 23:15:22 -0000 Author: sunpoet Date: Sat Oct 10 23:15:20 2015 New Revision: 399073 URL: https://svnweb.freebsd.org/changeset/ports/399073 Log: - Convert to new options target helper Approved by: portmgr (blanket) Modified: head/graphics/libbpg/Makefile Modified: head/graphics/libbpg/Makefile ============================================================================== --- head/graphics/libbpg/Makefile Sat Oct 10 23:15:16 2015 (r399072) +++ head/graphics/libbpg/Makefile Sat Oct 10 23:15:20 2015 (r399073) @@ -29,28 +29,22 @@ USES= compiler:c++11-lib gmake jpeg CFLAGS+= -fPIC -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include +do-configure-JCTVC-off: + ${REINPLACE_CMD} -e 's/^USE_JCTVC=y$$/#USE_JCTVC=/' ${WRKSRC}/Makefile -do-configure: -.if ! ${PORT_OPTIONS:MSDL} +do-configure-SDL-off: ${REINPLACE_CMD} -e 's/^USE_BPGVIEW=y$$/#USE_BPGVIEW=/' ${WRKSRC}/Makefile -.endif -.if ! ${PORT_OPTIONS:MJCTVC} - ${REINPLACE_CMD} -e 's/^USE_JCTVC=y$$/#USE_JCTVC=/' ${WRKSRC}/Makefile -.endif -.if ${PORT_OPTIONS:MX265} + +do-configure-X265-on: ${REINPLACE_CMD} -e 's/^#USE_JCTVC_HIGH_BIT_DEPTH=y$$/USE_JCTVC_HIGH_BIT_DEPTH=y/' ${WRKSRC}/Makefile -.endif -.if ${PORT_OPTIONS:MX265} ${REINPLACE_CMD} -e 's/^#USE_X265=y$$/USE_X265=y/' ${WRKSRC}/Makefile -.endif post-install: -.if ${PORT_OPTIONS:MSDL} - ${INSTALL_PROGRAM} ${WRKSRC}/bpgview ${STAGEDIR}${PREFIX}/bin -.endif ${INSTALL_DATA} ${WRKSRC}/libbpg.h ${STAGEDIR}${PREFIX}/include ${INSTALL_DATA} ${WRKSRC}/libbpg.a ${STAGEDIR}${PREFIX}/lib ${INSTALL_LIB} ${WRKSRC}/libbpg.so ${STAGEDIR}${PREFIX}/lib +post-install-SDL-on: + ${INSTALL_PROGRAM} ${WRKSRC}/bpgview ${STAGEDIR}${PREFIX}/bin + .include From owner-svn-ports-head@freebsd.org Sat Oct 10 23:17:59 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 C7DAE9D24DE; Sat, 10 Oct 2015 23:17:59 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A326483D; Sat, 10 Oct 2015 23:17:59 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ANHwO4083439; Sat, 10 Oct 2015 23:17:58 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ANHwBm083431; Sat, 10 Oct 2015 23:17:58 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201510102317.t9ANHwBm083431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Sat, 10 Oct 2015 23:17:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399074 - in head/databases: percona56-client percona56-client/files percona56-server percona56-server/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: Sat, 10 Oct 2015 23:17:59 -0000 Author: flo Date: Sat Oct 10 23:17:57 2015 New Revision: 399074 URL: https://svnweb.freebsd.org/changeset/ports/399074 Log: Update to 5.6.26.74.0 PR: 203148 Submitted by: Thomas Babut Added: head/databases/percona56-client/files/patch-vio_viosocket.c (contents, props changed) head/databases/percona56-server/files/patch-sql_mysqld.cc (contents, props changed) head/databases/percona56-server/files/patch-vio_viosocket.c (contents, props changed) Modified: head/databases/percona56-client/Makefile head/databases/percona56-client/files/patch-CMakeLists.txt head/databases/percona56-server/Makefile head/databases/percona56-server/distinfo head/databases/percona56-server/pkg-plist Modified: head/databases/percona56-client/Makefile ============================================================================== --- head/databases/percona56-client/Makefile Sat Oct 10 23:15:20 2015 (r399073) +++ head/databases/percona56-client/Makefile Sat Oct 10 23:17:57 2015 (r399074) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= percona -PORTREVISION= 2 PKGNAMESUFFIX= 56-client COMMENT= Multithreaded SQL database (client) Modified: head/databases/percona56-client/files/patch-CMakeLists.txt ============================================================================== --- head/databases/percona56-client/files/patch-CMakeLists.txt Sat Oct 10 23:15:20 2015 (r399073) +++ head/databases/percona56-client/files/patch-CMakeLists.txt Sat Oct 10 23:17:57 2015 (r399074) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2014-10-06 18:06:02.000000000 +0200 -+++ CMakeLists.txt 2014-10-18 16:20:43.311977761 +0200 -@@ -468,40 +468,17 @@ +--- CMakeLists.txt 2015-09-14 17:49:16.000000000 +0200 ++++ CMakeLists.txt.new 2015-09-16 09:04:18.149047561 +0200 +@@ -471,41 +471,17 @@ ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(client) @@ -37,12 +37,13 @@ - ADD_SUBDIRECTORY(packaging/rpm-oel) - ADD_SUBDIRECTORY(packaging/rpm-fedora) - ADD_SUBDIRECTORY(packaging/rpm-sles) +- ADD_SUBDIRECTORY(packaging/rpm-docker) -ENDIF() - INCLUDE(cmake/abi_check.cmake) INCLUDE(cmake/tags.cmake) -@@ -568,18 +546,17 @@ +@@ -542,18 +518,17 @@ SET(CPACK_GENERATOR "TGZ") ENDIF() ADD_SUBDIRECTORY(packaging/WiX) @@ -62,7 +63,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") INSTALL(FILES COPYING LICENSE.mysql DESTINATION ${INSTALL_DOCREADMEDIR} -@@ -605,5 +582,6 @@ +@@ -579,6 +554,7 @@ PATTERN "sp-imp-spec.txt" EXCLUDE ) ENDIF() Added: head/databases/percona56-client/files/patch-vio_viosocket.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/percona56-client/files/patch-vio_viosocket.c Sat Oct 10 23:17:57 2015 (r399074) @@ -0,0 +1,13 @@ +--- vio/viosocket.c.orig 2015-07-08 07:38:39 UTC ++++ vio/viosocket.c +@@ -33,6 +33,10 @@ + static void (*before_io_wait)(void)= 0; + static void (*after_io_wait)(void)= 0; + ++#ifdef __FreeBSD__ ++#define s6_addr32 __u6_addr.__u6_addr32 ++#endif ++ + /* Wait callback macros (both performance schema and threadpool */ + #define START_SOCKET_WAIT(locker, state_ptr, sock, which, timeout) \ + do \ Modified: head/databases/percona56-server/Makefile ============================================================================== --- head/databases/percona56-server/Makefile Sat Oct 10 23:15:20 2015 (r399073) +++ head/databases/percona56-server/Makefile Sat Oct 10 23:17:57 2015 (r399074) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.6.24-72.2 +DISTVERSION= 5.6.26-74.0 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/ Modified: head/databases/percona56-server/distinfo ============================================================================== --- head/databases/percona56-server/distinfo Sat Oct 10 23:15:20 2015 (r399073) +++ head/databases/percona56-server/distinfo Sat Oct 10 23:17:57 2015 (r399074) @@ -1,2 +1,2 @@ -SHA256 (percona-server-5.6.24-72.2.tar.gz) = 5aa6469f3a55fe0fd1cfe315f2f9cacb0ce318620086c93821c9000d6e25c0de -SIZE (percona-server-5.6.24-72.2.tar.gz) = 34099689 +SHA256 (percona-server-5.6.26-74.0.tar.gz) = 9156038d84bd1190a5b5df963877876584d30bd515ba3ad39e65a532430c1608 +SIZE (percona-server-5.6.26-74.0.tar.gz) = 54819177 Added: head/databases/percona56-server/files/patch-sql_mysqld.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/percona56-server/files/patch-sql_mysqld.cc Sat Oct 10 23:17:57 2015 (r399074) @@ -0,0 +1,19 @@ +--- sql/mysqld.cc.orig 2015-07-25 17:06:21 UTC ++++ sql/mysqld.cc +@@ -2117,6 +2117,16 @@ + #ifndef EMBEDDED_LIBRARY + + /* Initialise proxy protocol. */ ++ ++/* At least OpenBSD and NexentaCore do not ++* define s6_addr32 for user land settings. ++*/ ++#if !defined s6_addr32 && defined __sun__ ++# define s6_addr32 _S6_un._S6_u32 ++#elif !defined s6_addr32 && ( defined __OpenBSD__ || defined __FreeBSD__ ) ++# define s6_addr32 __u6_addr.__u6_addr32 ++#endif /* !defined s6_addr32 */ ++ + static void set_proxy() + { + const char *p; Added: head/databases/percona56-server/files/patch-vio_viosocket.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/percona56-server/files/patch-vio_viosocket.c Sat Oct 10 23:17:57 2015 (r399074) @@ -0,0 +1,13 @@ +--- vio/viosocket.c.orig 2015-07-08 07:38:39 UTC ++++ vio/viosocket.c +@@ -33,6 +33,10 @@ + static void (*before_io_wait)(void)= 0; + static void (*after_io_wait)(void)= 0; + ++#ifdef __FreeBSD__ ++#define s6_addr32 __u6_addr.__u6_addr32 ++#endif ++ + /* Wait callback macros (both performance schema and threadpool */ + #define START_SOCKET_WAIT(locker, state_ptr, sock, which, timeout) \ + do \ Modified: head/databases/percona56-server/pkg-plist ============================================================================== --- head/databases/percona56-server/pkg-plist Sat Oct 10 23:15:20 2015 (r399073) +++ head/databases/percona56-server/pkg-plist Sat Oct 10 23:17:57 2015 (r399074) @@ -139,6 +139,9 @@ man/man8/mysqld.8.gz %%DATADIR%%/swedish/errmsg.sys %%DATADIR%%/tests/suite/query_response_time/basic.result %%DATADIR%%/tests/suite/query_response_time/basic.test +%%DATADIR%%/tests/suite/query_response_time/bug1453277-master.opt +%%DATADIR%%/tests/suite/query_response_time/bug1453277.result +%%DATADIR%%/tests/suite/query_response_time/bug1453277.test %%DATADIR%%/tests/suite/query_response_time/query_response_time-rw-begin.inc %%DATADIR%%/tests/suite/query_response_time/query_response_time-rw-end.inc %%DATADIR%%/tests/suite/query_response_time/query_response_time-rw.result