From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 01:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FED6D8E for ; Sun, 8 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69E2D16A9 for ; Sun, 8 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB81K0fE051214 for ; Sun, 8 Dec 2013 01:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB81K0wb051213; Sun, 8 Dec 2013 01:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 01:20:00 GMT Resent-Message-Id: <201312080120.rB81K0wb051213@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kenji Rikitake Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08A51BB3 for ; Sun, 8 Dec 2013 01:16:39 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DCAAF169A for ; Sun, 8 Dec 2013 01:16:38 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB81Gc3i015598 for ; Sun, 8 Dec 2013 01:16:38 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB81Gcxe015586; Sun, 8 Dec 2013 01:16:38 GMT (envelope-from nobody) Message-Id: <201312080116.rB81Gcxe015586@oldred.freebsd.org> Date: Sun, 8 Dec 2013 01:16:38 GMT From: Kenji Rikitake To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184588: [ports] editors/vim: lua is not loaded when invoked from vim command X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 01:20:00 -0000 >Number: 184588 >Category: ports >Synopsis: [ports] editors/vim: lua is not loaded when invoked from vim command >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 01:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kenji Rikitake >Release: 10.0-BETA4 >Organization: >Environment: FreeBSD wellmax.priv.k2r.org 10.0-BETA4 FreeBSD 10.0-BETA4 #18 r258903: Wed Dec 4 12:31:36 JST 2013 root@wellmax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL amd64 >Description: when lua is being invoked from vim, the following error message shows up: E370: Could not load library liblua-5.1 Lua library cannot be loaded >How-To-Repeat: /usr/local/bin/vim type ":" to enter ex prompt then type "lua print(100)" >Fix: Patch as in the attached file. Patch details: Summary * This is a patch for (Ports editors/vim r335790) to fix the following error when lua is being invoked from vim: E370: Could not load library liblua-5.1 Lua library cannot be loaded. * Two files are changed: Makefile and files/patch-configure ## on Makefile * Change CONF_OPT_LUA_PREFIX using ${LOCALBASE} to ${LUA_PREFIX} since is assumed * /usr/ports/Mk/Uses/iconv.mk handles existence and non-existence of libiconv.so: always enable "USES+= iconv" ## on files/patch-configure * Rebuild from 7.4.110 src/auto/configure * move definition of "vi_cv_version_lua=${LUA_VER}" * add .so to "-DDYNAMIC_LUA_DLL=\\\"liblua-${vi_cv_version_lua}.so\\\" in LUA_CFLAGS for properly loading the shared library of lua from /usr/local/lib/liblua-${LUA_VER}.so Patch attached with submission follows: # Summary * This is a patch for (Ports editors/vim r335790) to fix the following error when lua is being invoked from vim: E370: Could not load library liblua-5.1 Lua library cannot be loaded. * Two files are changed: Makefile and files/patch-configure ## on Makefile * Change CONF_OPT_LUA_PREFIX using ${LOCALBASE} to ${LUA_PREFIX} since is assumed * /usr/ports/Mk/Uses/iconv.mk handles existence and non-existence of libiconv.so: always enable "USES+= iconv" ## on files/patch-configure * Rebuild from 7.4.110 src/auto/configure * move definition of "vi_cv_version_lua=${LUA_VER}" * add .so to "-DDYNAMIC_LUA_DLL=\\\"liblua-${vi_cv_version_lua}.so\\\" in LUA_CFLAGS for properly loading the shared library of lua from /usr/local/lib/liblua-${LUA_VER}.so ## environment * `uname -a` result: FreeBSD wellmax.priv.k2r.org 10.0-BETA4 FreeBSD 10.0-BETA4 #18 r258903: Wed Dec 4 12:31:36 JST 2013 root@wellmax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL amd64 ## Patch author * Kenji Rikitake [End of memorandum] --- Makefile.orig 2013-12-07 08:24:14.000000000 +0900 +++ Makefile 2013-12-08 09:39:53.000000000 +0900 @@ -98,7 +98,7 @@ .if ${PORT_OPTIONS:MLUA} USE_LUA= yes MAKE_ARGS+= CONF_OPT_LUA="--enable-luainterp=dynamic" -MAKE_ARGS+= CONF_OPT_LUA_PREFIX="--with-lua-prefix=${LOCALBASE}" +MAKE_ARGS+= CONF_OPT_LUA_PREFIX="--with-lua-prefix=${LUA_PREFIX}" .endif .if ${PORT_OPTIONS:MPERL} @@ -162,9 +162,7 @@ .endif MAKE_ARGS+= CONF_OPT_GUI=${CONF_OPT_GUI} ${I18N} -.if exists(${LOCALBASE}/lib/libiconv.so) USES+= iconv -.endif post-patch: @(${FIND} ${WRKSRC}/../runtime/ -name menu\*.vim -print0 | ${XARGS} -0 \ --- files/patch-configure.orig 2013-12-03 04:48:37.000000000 +0900 +++ files/patch-configure 2013-12-08 09:57:40.000000000 +0900 @@ -1,5 +1,5 @@ ---- auto/configure.orig 2013-10-17 12:11:54.000000000 +0200 -+++ auto/configure 2013-10-17 12:12:56.000000000 +0200 +--- auto/configure.orig 2013-12-08 09:19:43.000000000 +0900 ++++ auto/configure 2013-12-08 09:21:36.000000000 +0900 @@ -858,7 +858,7 @@ psdir='${docdir}' libdir='${exec_prefix}/lib' @@ -9,7 +9,7 @@ ac_prev= ac_dashdash= -@@ -4739,7 +4739,7 @@ +@@ -4752,7 +4752,7 @@ if test "${vi_cv_version_lua_luajit+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -18,7 +18,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_lua_luajit" >&5 $as_echo "$vi_cv_version_lua_luajit" >&6; } -@@ -4793,7 +4793,7 @@ +@@ -4806,7 +4806,7 @@ if test "${vi_cv_version_plain_lua+set}" = set; then : $as_echo_n "(cached) " >&6 else @@ -27,7 +27,15 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_plain_lua" >&5 $as_echo "$vi_cv_version_plain_lua" >&6; } -@@ -4884,7 +4884,7 @@ +@@ -4862,6 +4862,7 @@ + fi + else + if test "X$LUA_INC" != "X"; then ++ vi_cv_version_lua=${LUA_VER} + LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua$vi_cv_version_lua" + else + LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua" +@@ -4897,7 +4898,7 @@ LIBS=$libs_save fi if test "x$lua_ok" = "xyes"; then @@ -36,17 +44,16 @@ LUA_SRC="if_lua.c" LUA_OBJ="objects/if_lua.o" LUA_PRO="if_lua.pro" -@@ -4941,7 +4941,8 @@ +@@ -4954,7 +4955,7 @@ $as_echo "#define DYNAMIC_LUA 1" >>confdefs.h LUA_LIBS="" - LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"${vi_cv_dll_name_lua}\\\" $LUA_CFLAGS" -+ vi_cv_version_lua=${LUA_VER} -+ LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"liblua-${vi_cv_version_lua}\\\" $LUA_CFLAGS" ++ LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"liblua-${vi_cv_version_lua}.so\\\" $LUA_CFLAGS" fi if test "X$LUA_CFLAGS$LUA_LIBS" != "X" && \ test "x$MACOSX" = "xyes" && test "x$vi_cv_with_luajit" != "xno" && \ -@@ -6610,7 +6611,7 @@ +@@ -6623,7 +6624,7 @@ $as_echo "$try/tclConfig.sh" >&6; } . $try/tclConfig.sh TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"` >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 01:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC4CFDBB; Sun, 8 Dec 2013 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0F2B16AA; Sun, 8 Dec 2013 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB81K81e051352; Sun, 8 Dec 2013 01:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB81K8us051351; Sun, 8 Dec 2013 01:20:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 01:20:08 GMT Message-Id: <201312080120.rB81K8us051351@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184588: [ports] editors/vim: lua is not loaded when invoked from vim command X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 01:20:08 -0000 Synopsis: [ports] editors/vim: lua is not loaded when invoked from vim command Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 01:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184588 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 05:02:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 198E080D; Sun, 8 Dec 2013 05:02:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0A8011E4; Sun, 8 Dec 2013 05:02:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB852qqr098459; Sun, 8 Dec 2013 05:02:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB852qlV098458; Sun, 8 Dec 2013 05:02:52 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 05:02:52 GMT Message-Id: <201312080502.rB852qlV098458@freefall.freebsd.org> To: stefankueck@online.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184564: graphics/gpicview 0.2.4 doen't compile with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 05:02:53 -0000 Synopsis: graphics/gpicview 0.2.4 doen't compile with clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Dec 8 05:02:52 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184564 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 05:09:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A485787B; Sun, 8 Dec 2013 05:09:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77D9F1207; Sun, 8 Dec 2013 05:09:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8595Wp099015; Sun, 8 Dec 2013 05:09:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8595hx099014; Sun, 8 Dec 2013 05:09:05 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 05:09:05 GMT Message-Id: <201312080509.rB8595hx099014@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184582: ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 05:09:05 -0000 Synopsis: ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Sun Dec 8 05:09:05 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184582 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 05:09:07 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F98E87D; Sun, 8 Dec 2013 05:09:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 333291208; Sun, 8 Dec 2013 05:09:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8597cQ099096; Sun, 8 Dec 2013 05:09:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8597Yg099095; Sun, 8 Dec 2013 05:09:07 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 05:09:07 GMT Message-Id: <201312080509.rB8597Yg099095@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184582: ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 05:09:07 -0000 Synopsis: ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 05:09:06 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184582 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 05:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F2CB8F5 for ; Sun, 8 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B7051211 for ; Sun, 8 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB85A04g099264 for ; Sun, 8 Dec 2013 05:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB85A0Us099262; Sun, 8 Dec 2013 05:10:00 GMT (envelope-from gnats) Date: Sun, 8 Dec 2013 05:10:00 GMT Message-Id: <201312080510.rB85A0Us099262@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184564: graphics/gpicview 0.2.4 doen't compile with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 05:10:01 -0000 The following reply was made to PR ports/184564; it has been noted by GNATS. From: Edwin Groothuis To: jmohacsi@bsd.hu Cc: bug-followup@FreeBSD.org Subject: Re: ports/184564: graphics/gpicview 0.2.4 doen't compile with clang Date: Sun, 8 Dec 2013 05:02:51 UT Maintainer of graphics/gpicview, Please note that PR ports/184564 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184564 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 05:09:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAB848EE; Sun, 8 Dec 2013 05:09:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE7A6120E; Sun, 8 Dec 2013 05:09:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB859tdG099156; Sun, 8 Dec 2013 05:09:55 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB859twN099155; Sun, 8 Dec 2013 05:09:55 GMT (envelope-from linimon) Date: Sun, 8 Dec 2013 05:09:55 GMT Message-Id: <201312080509.rB859twN099155@freefall.freebsd.org> To: asomers@FreeBSD.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/183207: [patch] sysutils/mkfile-1.1.1 no longer accepts the default unit suffix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 05:09:55 -0000 Synopsis: [patch] sysutils/mkfile-1.1.1 no longer accepts the default unit suffix State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Dec 8 05:09:34 UTC 2013 State-Changed-Why: apparently fixed in ports/183315. http://www.freebsd.org/cgi/query-pr.cgi?pr=183207 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 08:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79DFFDC5 for ; Sun, 8 Dec 2013 08:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 660391CA7 for ; Sun, 8 Dec 2013 08:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB88K2p8058573 for ; Sun, 8 Dec 2013 08:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB88K26h058572; Sun, 8 Dec 2013 08:20:02 GMT (envelope-from gnats) Date: Sun, 8 Dec 2013 08:20:02 GMT Message-Id: <201312080820.rB88K26h058572@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Gerald Pfeifer Subject: Re: ports/184578: science/meep : fix build with gcc47 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Gerald Pfeifer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 08:20:02 -0000 The following reply was made to PR ports/184578; it has been noted by GNATS. From: Gerald Pfeifer To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184578: science/meep : fix build with gcc47 Date: Sun, 8 Dec 2013 09:16:39 +0100 (CET) Sorry for not catching this earlier, but does r335855 | gerald | 2013-12-07 22:36:21 +0000 (Sat, 07 Dec 2013) | 6 lines Explicitly include the GCC run time directory in LDFLAGS. This should not be necessary when linking with GCC, but that's not the only way the link process can be invoked. PR: 182136 of Mk/bsd.gcc.mk address this. If so, this PR can be closed. (Otherwise, if there is anything to commit, please note the referenced PR should be 182136, that was my mistake communicating with Christoph. So, PR 182136 and 184578 should be referenced in any commit due to this.) Gerald From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 12:24:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2008CCB; Sun, 8 Dec 2013 12:24:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95B1C1FAB; Sun, 8 Dec 2013 12:24:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8COhhT018914; Sun, 8 Dec 2013 12:24:43 GMT (envelope-from marino@freefall.freebsd.org) Received: (from marino@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8COhIg018891; Sun, 8 Dec 2013 12:24:43 GMT (envelope-from marino) Date: Sun, 8 Dec 2013 12:24:43 GMT Message-Id: <201312081224.rB8COhIg018891@freefall.freebsd.org> To: marino@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marino@FreeBSD.org From: marino@FreeBSD.org Subject: Re: ports/181731: [patch] games/atris: unbreak with bmake X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 12:24:43 -0000 Synopsis: [patch] games/atris: unbreak with bmake Responsible-Changed-From-To: freebsd-ports-bugs->marino Responsible-Changed-By: marino Responsible-Changed-When: Sun Dec 8 12:24:43 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181731 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B8D7324 for ; Sun, 8 Dec 2013 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F0C3119D for ; Sun, 8 Dec 2013 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8DA0Uc041610 for ; Sun, 8 Dec 2013 13:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8DA0jt041600; Sun, 8 Dec 2013 13:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 13:10:00 GMT Resent-Message-Id: <201312081310.rB8DA0jt041600@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mathieu Arnold Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 715FD229 for ; Sun, 8 Dec 2013 13:05:17 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 075631184 for ; Sun, 8 Dec 2013 13:05:14 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id B363CBDC78 for ; Sun, 8 Dec 2013 14:05:09 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 5F89BBDC64 for ; Sun, 8 Dec 2013 14:05:09 +0100 (CET) Received: from aragorn.in.absolight.net (aragorn.in.absolight.net [79.143.241.225]) by gw.in.absolight.net (Postfix) with ESMTP id 8EDAD6155 for ; Sun, 8 Dec 2013 14:05:08 +0100 (CET) Received: by aragorn.in.absolight.net (Postfix, from userid 1000) id EDFB514269C; Sun, 8 Dec 2013 14:05:07 +0100 (CET) Message-Id: <20131208130507.EDFB514269C@aragorn.in.absolight.net> Date: Sun, 8 Dec 2013 14:05:07 +0100 (CET) From: Mathieu Arnold To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184589: [PATCH] net/linknx: update to 0.0.1.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:10:00 -0000 >Number: 184589 >Category: ports >Synopsis: [PATCH] net/linknx: update to 0.0.1.30 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 13:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 9.2-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn.in.absolight.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC >Description: - Update to 0.0.1.30 - Add LUA and MySQL support - Convert to new options framework - Support staging - Add LICENSE - New LIB_DEPENDS format If you don't have time to maintain the port further, I'll gladly take it on. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- linknx-0.0.1.30.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 335881) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= linknx -PORTVERSION= 0.0.1.25 -PORTREVISION= 4 +PORTVERSION= 0.0.1.30 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -10,36 +9,43 @@ MAINTAINER= bkoenig@alpha-tierchen.de COMMENT= Rule-based event handling in a KNX installation -LIB_DEPENDS= pthsem.20:${PORTSDIR}/devel/pthsem +LICENSE= GPLv2 + +LIB_DEPENDS= libpthsem.so:${PORTSDIR}/devel/pthsem BUILD_DEPENDS= ${LOCALBASE}/lib/libargp.a:${PORTSDIR}/devel/argp-standalone +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_AUTOTOOLS= autoconf CONFIGURE_ARGS+=CFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-I${LOCALBASE}/include -L/${LOCALBASE}/lib" -OPTIONS_DEFINE= LIBESMTP LIBCURL +OPTIONS_DEFINE= LIBESMTP LIBCURL LIBLUA MYSQL OPTIONS_DEFAULT= LIBESMTP +OPTIONS_SUB= LIBESMTP_DESC= Install libesmtp for SMTP support LIBCURL_DESC= Install libcurl for Clickatell SMS support +LIBLUA_DESC= Install lilua for scripting +MYSQL_DESC= Install libmysql for logging & persist -NO_STAGE= yes -.include +LIBESMTP_CONFIGURE_ENABLE= smtp +LIBESMTP_LIB_DEPENDS= libesmtp.so:${PORTSDIR}/mail/libesmtp +LIBCURL_CONFIGURE_WITH= libcurl +LIBCURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +LIBLUA_CONFIGURE_WITH= lua +LIBLUA_USE= lua=yes +LIBLUA_CFLAGS= -I${LUA_INCDIR} +LIBLUA_LDFLAGS= -L${LUA_LIBDIR} +MYSQL_CONFIGURE_WITH= mysql=${LOCALBASE}/bin/mysql_config +MYSQL_USE= mysql=yes -.if ${PORT_OPTIONS:MLIBESMTP} -CONFIGURE_ARGS+= --enable-smtp -LIB_DEPENDS+= esmtp.7:${PORTSDIR}/mail/libesmtp -.else -CONFIGURE_ARGS+= --disable-smtp -.endif +PORTDOCS= * -.if ${PORT_OPTIONS:MLIBCURL} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl -CONFIGURE_ARGS+= --with-libcurl=${LOCALBASE} -.else -CONFIGURE_ARGS+= --without-libcurl -.endif +PLIST_FILES= bin/linknx USE_RC_SUBR= ${PORTNAME} -.include +post-patch: + ${REINPLACE_CMD} "s/LUAPC=lua/LUAPC=lua-${LUA_VER}/" ${WRKSRC}/configure.ac + +.include Index: distinfo =================================================================== --- distinfo (revision 335881) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (linknx-0.0.1.25.tar.gz) = 2ad2db638d0f1542f34c0dce80ce8c5519c70cea80286d70ad7b91d923c5ff28 -SIZE (linknx-0.0.1.25.tar.gz) = 290886 +SHA256 (linknx-0.0.1.30.tar.gz) = 46e60620ad29d69bf3a1a3e9529322443c0d585e7e676ca7d441042b5fcad25e +SIZE (linknx-0.0.1.30.tar.gz) = 327809 Index: pkg-plist =================================================================== --- pkg-plist (revision 335881) +++ pkg-plist (working copy) @@ -1,4 +0,0 @@ -bin/linknx -%%DOCSDIR%%/linknx.xml -%%DOCSDIR%%/linknx_doc.tgz -@dirrm %%DOCSDIR%% --- linknx-0.0.1.30.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB2DF355; Sun, 8 Dec 2013 13:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F5D6119F; Sun, 8 Dec 2013 13:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8DA8NN043967; Sun, 8 Dec 2013 13:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8DA8Lt043959; Sun, 8 Dec 2013 13:10:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 13:10:08 GMT Message-Id: <201312081310.rB8DA8Lt043959@freefall.freebsd.org> To: mat@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184589: [PATCH] net/linknx: update to 0.0.1.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:10:08 -0000 Synopsis: [PATCH] net/linknx: update to 0.0.1.30 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Dec 8 13:10:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184589 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:10:44 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2276D38E; Sun, 8 Dec 2013 13:10:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EAD0411EB; Sun, 8 Dec 2013 13:10:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8DAhKs054976; Sun, 8 Dec 2013 13:10:43 GMT (envelope-from mat@freefall.freebsd.org) Received: (from mat@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8DAghC054338; Sun, 8 Dec 2013 13:10:42 GMT (envelope-from mat) Date: Sun, 8 Dec 2013 13:10:42 GMT Message-Id: <201312081310.rB8DAghC054338@freefall.freebsd.org> To: bkoenig@alpha-tierchen.de, mat@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mat@FreeBSD.org From: mat@FreeBSD.org Subject: Re: ports/184589: [PATCH] net/linknx: update to 0.0.1.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:10:44 -0000 Synopsis: [PATCH] net/linknx: update to 0.0.1.30 Responsible-Changed-From-To: freebsd-ports-bugs->mat Responsible-Changed-By: mat Responsible-Changed-When: Sun Dec 8 13:10:42 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=184589 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:40:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D107F56 for ; Sun, 8 Dec 2013 13:40:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2487C134D for ; Sun, 8 Dec 2013 13:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8De27v077270 for ; Sun, 8 Dec 2013 13:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8De2Yl077234; Sun, 8 Dec 2013 13:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 13:40:02 GMT Resent-Message-Id: <201312081340.rB8De2Yl077234@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51BFBB37 for ; Sun, 8 Dec 2013 13:31:47 +0000 (UTC) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 18D8B1301 for ; Sun, 8 Dec 2013 13:31:46 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 837BE5C0F; Sun, 8 Dec 2013 21:26:36 +0800 (CST) Message-Id: <20131208132636.837BE5C0F@deep.tw> Date: Sun, 8 Dec 2013 21:26:36 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184590: [MAINTAINER] www/node: configure fix with python2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:40:03 -0000 >Number: 184590 >Category: ports >Synopsis: [MAINTAINER] www/node: configure fix with python2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 13:40:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r253131: Thu Jul 11 16:55:44 CST >Description: fix configure with python2 to prevent the build fault. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- node-0.10.22_1.patch begins here --- diff -ruN ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2013-12-08 20:10:27.000000000 +0800 +++ ./Makefile 2013-12-08 20:27:25.000000000 +0800 @@ -3,6 +3,7 @@ PORTNAME= node PORTVERSION= 0.10.22 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} @@ -27,6 +28,7 @@ REINPLACE_ARGS= -i '' post-patch: + @${REINPLACE_CMD} -e '1 s|${SETENV} python|&2|' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/deps/v8/build/common.gypi \ ${WRKSRC}/deps/v8/tools/gyp/v8.gyp --- node-0.10.22_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:40:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF53AF83; Sun, 8 Dec 2013 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4DEBD134E; Sun, 8 Dec 2013 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8DeA3n079006; Sun, 8 Dec 2013 13:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8DeAnI078999; Sun, 8 Dec 2013 13:40:10 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 13:40:10 GMT Message-Id: <201312081340.rB8DeAnI078999@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184590: [MAINTAINER] www/node: configure fix with python2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:40:10 -0000 Synopsis: [MAINTAINER] www/node: configure fix with python2 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 13:40:10 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184590 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 959731D2 for ; Sun, 8 Dec 2013 13:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A4BF13C5 for ; Sun, 8 Dec 2013 13:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8Do0NA094299 for ; Sun, 8 Dec 2013 13:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8Do0SJ094296; Sun, 8 Dec 2013 13:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 13:50:00 GMT Resent-Message-Id: <201312081350.rB8Do0SJ094296@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65797FBA for ; Sun, 8 Dec 2013 13:43:21 +0000 (UTC) Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.31.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E1CA1399 for ; Sun, 8 Dec 2013 13:43:20 +0000 (UTC) Received: from [89.183.23.49] (helo=medusa.sysfault.org) by smtprelay03.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1Vpecf-0004oW-E6 for FreeBSD-gnats-submit@freebsd.org; Sun, 08 Dec 2013 14:42:13 +0100 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1Vpece-0009ic-AQ for FreeBSD-gnats-submit@freebsd.org; Sun, 08 Dec 2013 14:42:12 +0100 Received: (from marcus@localhost) by medusa.sysfault.org (8.14.7/8.14.7/Submit) id rB8DgC9s037361; Sun, 8 Dec 2013 14:42:12 +0100 (CET) (envelope-from marcus) Message-Id: <201312081342.rB8DgC9s037361@medusa.sysfault.org> Date: Sun, 8 Dec 2013 14:42:12 +0100 (CET) From: Marcus von Appen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184591: [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Marcus von Appen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:50:00 -0000 >Number: 184591 >Category: ports >Synopsis: [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 13:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #11 r255414: Mon Sep 9 15:04:24 CEST 2013 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA amd64 >Description: lang/python has to vanish as RUN_DEPENDS and BUILD_DEPENDS from bsd.python.mk to allow clean package builds for different python versions. The patch below requires an exp-run to fix the direct or indirect usage of `python` and build or installation time of ports. >How-To-Repeat: n/a >Fix: Index: Mk/bsd.python.mk =================================================================== --- Mk/bsd.python.mk (revision 335877) +++ Mk/bsd.python.mk (working copy) @@ -578,15 +578,13 @@ .if ${PYTHON_NO_DEPENDS} == "NO" .if defined(USE_PYTHON_BUILD) -BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \ - python:${PORTSDIR}/lang/python +BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} .if defined(_WANTS_META_PORT) BUILD_DEPENDS+= python${_WANTS_META_PORT}:${PORTSDIR}/lang/python${_WANTS_META_PORT} .endif .endif .if defined(USE_PYTHON_RUN) -RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \ - python:${PORTSDIR}/lang/python +RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} .if defined(_WANTS_META_PORT) RUN_DEPENDS+= python${_WANTS_META_PORT}:${PORTSDIR}/lang/python${_WANTS_META_PORT} .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 13:50:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9A4A1FF; Sun, 8 Dec 2013 13:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AECFA13C6; Sun, 8 Dec 2013 13:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8Do8EW096792; Sun, 8 Dec 2013 13:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8Do84Y096785; Sun, 8 Dec 2013 13:50:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 13:50:08 GMT Message-Id: <201312081350.rB8Do84Y096785@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184591: [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 13:50:08 -0000 Synopsis: [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 13:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 14:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7213BF8F for ; Sun, 8 Dec 2013 14:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A18416A5 for ; Sun, 8 Dec 2013 14:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8EK0g2095920 for ; Sun, 8 Dec 2013 14:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8EK09S095909; Sun, 8 Dec 2013 14:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 14:20:00 GMT Resent-Message-Id: <201312081420.rB8EK09S095909@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Geoffroy Desvernay Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D7C3DBA; Sun, 8 Dec 2013 14:18:38 +0000 (UTC) Received: from melo.ec-m.fr (melo.ec-m.fr [147.94.19.139]) by mx1.freebsd.org (Postfix) with ESMTP id DBBBC1691; Sun, 8 Dec 2013 14:18:37 +0000 (UTC) Received: from amavis3.serv.int (amavis3.serv.int [10.3.0.47]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 4D2E9AC9E9; Sun, 8 Dec 2013 15:18:30 +0100 (CET) Received: from melo.ec-m.fr ([10.3.0.13]) by amavis3.serv.int (amavis3.serv.int [10.3.0.47]) (amavisd-new, port 10024) with LMTP id DJhF1o8FJbwQ; Sun, 8 Dec 2013 15:18:26 +0100 (CET) Received: from dgeo.sysadm.ec-m.fr (dgeo.sysadm.ec-m.fr [147.94.19.169]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 9D998AC9D7; Sun, 8 Dec 2013 15:18:26 +0100 (CET) Received: by dgeo.sysadm.ec-m.fr (Postfix, from userid 0) id 988201CCA2; Sun, 8 Dec 2013 15:18:26 +0100 (CET) Message-Id: <20131208141826.988201CCA2@dgeo.sysadm.ec-m.fr> Date: Sun, 8 Dec 2013 15:18:26 +0100 (CET) From: Geoffroy Desvernay To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184592: [PATCH] www/rubygem-unicorn: add rc.d script Cc: ruby@FreeBSD.org, caleb@land.fm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 14:20:01 -0000 >Number: 184592 >Category: ports >Synopsis: [PATCH] www/rubygem-unicorn: add rc.d script >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 14:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Geoffroy Desvernay >Release: FreeBSD 10.0-BETA4 amd64 >Organization: Ecole Centrale de Marseille >Environment: System: FreeBSD dgeo.sysadm.ec-m.fr 10.0-BETA4 FreeBSD 10.0-BETA4 #0: Mon Dec 2 18:21:18 CET >Description: Just add an init script to the port to ease unicorn deployments on freebsd (stolen from https://github.com/caleb/freebsd-unicorn), original author is cc'd. tested on 9.2 and 10-BETA4 Port maintainer (ruby@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: figure out how to start unicorn app(s) after installation >Fix: copy the init script to /usr/local/etc/rc.d or apply this patch to this port :) --- rubygem-unicorn-4.6.3_1.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 335885) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= unicorn PORTVERSION= 4.6.3 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG @@ -17,5 +18,6 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/unicorn bin/unicorn_rails +USE_RC_SUBR= unicorn .include Index: files/unicorn.in =================================================================== --- files/unicorn.in (revision 0) +++ files/unicorn.in (working copy) @@ -0,0 +1,307 @@ +#!/bin/sh + +# PROVIDE: unicorn +# REQUIRE: LOGIN SERVERS +# KEYWORD: shutdown + +. /etc/rc.subr + +name="unicorn" +rcvar=`set_rcvar` +procname="ruby" + +extra_commands="upgrade show reopenlogs" +start_cmd="unicorn_start_command" +upgrade_cmd="unicorn_upgrade_command" +show_cmd="unicorn_show_command" +reopenlogs_cmd="unicorn_reopenlogs_command" + +load_rc_config "${name}" + +: ${unicorn_enable:="NO"} +: ${unicorn_flags:="-D"} +: ${unicorn_env:="production"} +: ${unicorn_init_config:=""} +: ${unicorn_bundle_gemfile:=""} +: ${unicorn_profiles:=""} +: ${unicorn_upgrade_timeout:="60"} +: ${unicorn_rc_script:="%%PREFIX%%/etc/rc.d/unicorn"} + +# +# Convenience function to read a profile's environment variable, or fall back to a default +# +# e.x. _read_profile_var my_app pidfile '/u/my_app/shard/pids/unicorn.pid' +# +_read_profile_var() +{ + profile=$1 + var=$2 + default=$3 + default2=$4 + eval value="\${unicorn_${profile}_${var}:-${default}}" + eval value="\${value:-${default2}}" + echo "${value}" +} + +# +# Takes a directory and sets up some default environement variables based on a capistrano layout +# +_setup_directory() +{ + local directory + directory=$1 + + directory_command="${directory}/current/bin/unicorn_rails" + directory_pidfile="${directory}/shared/pids/unicorn.pid" + directory_old_pidfile="${directory_pidfile}.oldbin" + directory_config="${directory}/current/config/unicorn.conf.rb" + directory_rackup="${directory}/current/config.ru" + directory_init_config="${directory}/current/.env" + directory_bundle_gemfile="${directory}/current/Gemfile" + directory_chdir="${directory}/current" + + # only use the directory_init_config if it exists + if [ ! -f "${directory_init_config}" ]; then + unset directory_init_config + fi + + # only use the bundle_gemfile if it exists + if [ ! -f "${directory_bundle_gemfile}" ]; then + unset directory_bundle_gemfile + fi + + if [ -f "${directory_config}" ]; then + directory_user=`stat -f "%Su" "${directory_config}"` # default to the owner of the config file + fi +} + +# +# If we have a profile, set up the environment for that profile +# +if [ -n "$2" ]; then + profile="$2" + + # set the rcvar for this specific profile + rcvar=`set_rcvar "${name}_${profile}"` + # if the user provides a directory, we can infer some default configuration + directory=`_read_profile_var "${profile}" "directory"` + + if [ -n "${directory}" ]; then + _setup_directory "${directory}" + fi + + unicorn_rackup=` _read_profile_var "${profile}" "rackup" "${directory_rackup}"` + unicorn_old_pidfile=` _read_profile_var "${profile}" "old_pidfile" "${directory_old_pidfile}"` + unicorn_config=` _read_profile_var "${profile}" "config" "${directory_config}"` + unicorn_init_config=` _read_profile_var "${profile}" "init_config" "${directory_init_config}"` + unicorn_bundle_gemfile=`_read_profile_var "${profile}" "bundle_gemfile" "${directory_bundle_gemfile}"` + unicorn_chdir=` _read_profile_var "${profile}" "chdir" "${directory_chdir}"` + unicorn_listen=` _read_profile_var "${profile}" "listen" "${unicorn_listen}"` + unicorn_user=` _read_profile_var "${profile}" "user" "${unicorn_user}" "${directory_user}"` + unicorn_nice=` _read_profile_var "${profile}" "nice" "${unicorn_nice}"` + unicorn_env=` _read_profile_var "${profile}" "env" "${unicorn_env}"` + unicorn_flags=` _read_profile_var "${profile}" "flags" "${unicorn_flags}"` + + command=`_read_profile_var "${profile}" "command" "${unicorn_command}" "${directory_command}"` + command_args=`_read_profile_var "${profile}" "command_args" "${unicorn_command_args}" "${directory_command_args}"` + pidfile=`_read_profile_var "${profile}" "pidfile" "${directory_pidfile}"` +else + if [ "x${unicorn_profiles}" != "x" -a "x$1" != "x" ]; then + # If we weren't started with a profile, run the command on all available profiles + for profile in ${unicorn_profiles}; do + # By default set the profile rcvar to no to suppress warnings by checkyesno + profile_rcvar=`set_rcvar "${name}_${profile}"` + eval "${profile_rcvar}=\${${profile_rcvar}:-'NO'}" + + if checkyesno ${profile_rcvar}; then + echo "Running ${1} on ${profile}" + ${unicorn_rc_script} $1 $profile + else + echo "Skipping ${profile}" + + # Unset the variable and then checkyesno again to print the warning + eval "unset ${profile_rcvar}" + checkyesno ${profile_rcvar} + fi + echo + done + exit 0 + else + # look for a profile-less configuration + + # if the user provides a directory, we can infer some default configuration + directory=${unicorn_directory:-} + + if [ -n "${directory}" ]; then + _setup_directory "${directory}" + fi + + unicorn_rackup=${unicorn_rackup:-$directory_rackup} + unicorn_old_pidfile=${unicorn_old_pidfile:-$directory_old_pidfile} + unicorn_chdir=${unicorn_chdir:-$directory_chdir} + unicorn_rackup=${unicorn_rackup:-$directory_rackup} + unicorn_user=${unicorn_user:-$directory_user} + unicorn_config=${unicorn_config:-$directory_config} + unicorn_init_config=${unicorn_init_config:-$directory_init_config} + unicorn_bundle_gemfile=${unicorn_bundle_gemfile:-$directory_bundle_gemfile} + + command=${unicorn_command:-$directory_command} + command_args=${unicorn_command_args:-$directory_command_args} + pidfile=${unicorn_pidfile:-$directory_pidfile} + fi +fi + +# add the directory as a required directory, if it's specified +required_dirs="${directory:-}" + +# if we have a config file or rackup file specified, make sure it exists +required_files="${unicorn_config:-} ${unicorn_rackup:-}" + +# +# Build up the flags based on the environment variables +# +[ -n "${unicorn_listen}" ] && unicorn_flags="-l ${unicorn_listen} ${unicorn_flags}" +[ -n "${unicorn_config}" ] && unicorn_flags="-c ${unicorn_config} ${unicorn_flags}" +[ -n "${unicorn_env}" ] && unicorn_flags="-E ${unicorn_env} ${unicorn_flags}" + +# Add our rackup file to the unicorn command_args +[ -n "${unicorn_rackup:-}" ] && command_args="${unicorn_rackup:-} ${command_args:-}" + +# This function builds the command to start unicorn. This is split out so we can +# print it from the "show" command +_unicorn_start_command() +{ + local shell_command + shell_command="${unicorn_bundle_gemfile:+export BUNDLE_GEMFILE=$unicorn_bundle_gemfile && }"\ +"${unicorn_init_config:+. $unicorn_init_config && }"\ +"${unicorn_chdir:+cd $unicorn_chdir && }"\ +"${unicorn_nice:+nice -n $unicorn_nice }"\ +"${command} ${rc_flags} ${command_args}" + + if [ -n "${unicorn_user}" ]; then + echo "su -l ${unicorn_user} -c \"${shell_command}\"" + else + echo "sh -c \"${shell_command}\"" + fi +} + +# +# The start command +# +unicorn_start_command() +{ + # ensure unicorn isn't already running + if [ -z "$rc_fast" -a -n "$rc_pid" ]; then + echo 1>&2 "${name} already running? (pid=$rc_pid)." + return 1 + fi + + # ensure that the command exists and is executable + if [ ! -x ${_chroot}${_chroot:+"/"}${command} ]; then + warn "run_rc_command: cannot run $command" + return 1 + fi + + check_startmsgs && echo "Starting ${name}: ${profile}." + + eval "$(_unicorn_start_command)" + _return=$? + + if [ $_return -ne 0 ] && [ -z "${rc_force}" ]; then + return 1 + fi + + return 0 +} + +unicorn_upgrade_command() +{ + if [ -n "${rc_pid}" ]; then + # Tell the master to spawn a new version of itself + if kill -USR2 "${rc_pid}"; then + n=$unicorn_upgrade_timeout + + # Wait until the unicorn_old_pidfile and pidfile both exist and are non-empty + echo -n >&2 "Waiting for the new master to spawn" + while [ \( ! -s "${unicorn_old_pidfile}" -o ! -s "${pidfile}" \) -a $n -ge 0 ]; do + printf >&2 '.' && sleep 1 && n=$(( $n-1 )) + done + echo + + # if the pidfile or unicorn_old_pidfile still don't exist, quit + if [ ! -s "${pidfile}" -o ! -s "${unicorn_old_pidfile}" ]; then + [ ! -s "${pidfile}" ] && echo >&2 "${pidfile} doesn't exist after ${unicorn_upgrade_timeout} seconds" + [ ! -s "${punicorn_old_pidfile}" ] && echo >&2 "${unicorn_old_pidfile} doesn't exist after ${unicorn_upgrade_timeout} seconds" + return 1 + fi + + # make sure the new master can receive signals, and then QUIT the old one + echo >&2 "Killing the old master" + kill -0 `check_pidfile "${pidfile}" "${procname}"` && kill -QUIT `check_pidfile "${unicorn_old_pidfile}" "${procname}"` + + # Wait for the old master to die + echo -n >&2 "Waiting for the old master to cleanup" + while [ -s "${unicorn_old_pidfile}" -a $n -ge 0 ]; do + printf >&2 '.' && sleep 1 && n=$(( $n-1 )) + done + echo + + # If the old master is still around, print that fact and exit with an error + if [ -s "${unicorn_old_pidfile}" -a $n -lt 0 ]; then + echo >&2 "${unicorn_old_pidfile} still exists after ${unicorn_upgrade_timeout} seconds" + return 1 + fi + + # everything worked, return success + return 0 + fi + + # If there isn't a pid in rc_pid, just run the start command + echo >&2 "Couldn't upgrade, running `start` instead" + $0 start "${2}" + fi +} + +# +# Prints the configuration for the given profile +# +unicorn_show_command() +{ + if [ -n "${profile}" ]; then + banner="Unicorn Configuration for ${profile}" + else + banner="Unicorn Configuration" + fi + + echo " +# +# ${banner} +# + +command: ${command} +command_args: ${command_args} +rackup: ${unicorn_rackup} +pidfile: ${pidfile} +old_pidfile: ${unicorn_old_pidfile} +listen: ${unicorn_listen} +config: ${unicorn_config} +init_config: ${unicorn_init_config} +bundle_gemfile: ${unicorn_bundle_gemfile} +chdir: ${unicorn_chdir} +user: ${unicorn_user} +nice: ${unicorn_nice} +env: ${unicorn_env} +flags: ${unicorn_flags} + +start_command: + +$(_unicorn_start_command) +" +} + +unicorn_reopenlogs_command() +{ + [ -n "${rc_pid}" ] && kill -USR1 $rc_pid +} + +run_rc_command "${1}" Property changes on: files/unicorn.in ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property --- rubygem-unicorn-4.6.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 14:20:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7005FC1; Sun, 8 Dec 2013 14:20:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B875416A8; Sun, 8 Dec 2013 14:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8EKA63098362; Sun, 8 Dec 2013 14:20:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8EKAwC098348; Sun, 8 Dec 2013 14:20:10 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 14:20:10 GMT Message-Id: <201312081420.rB8EKAwC098348@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184592: [PATCH] www/rubygem-unicorn: add rc.d script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 14:20:11 -0000 Synopsis: [PATCH] www/rubygem-unicorn: add rc.d script Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 14:20:10 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184592 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 14:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B433B36F for ; Sun, 8 Dec 2013 14:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F6991841 for ; Sun, 8 Dec 2013 14:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8Eo0Ci025132 for ; Sun, 8 Dec 2013 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8Eo09X025122; Sun, 8 Dec 2013 14:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 14:50:00 GMT Resent-Message-Id: <201312081450.rB8Eo09X025122@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hyogeol Lee Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA11C2F8 for ; Sun, 8 Dec 2013 14:41:52 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B636F1804 for ; Sun, 8 Dec 2013 14:41:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8EfqEA022114 for ; Sun, 8 Dec 2013 14:41:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8Efq8f022108; Sun, 8 Dec 2013 14:41:52 GMT (envelope-from nobody) Message-Id: <201312081441.rB8Efq8f022108@oldred.freebsd.org> Date: Sun, 8 Dec 2013 14:41:52 GMT From: Hyogeol Lee To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184593: Cannot install lang/mit-scheme X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 14:50:00 -0000 >Number: 184593 >Category: ports >Synopsis: Cannot install lang/mit-scheme >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 14:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hyogeol Lee >Release: FreeBSD 10.0 >Organization: BTS technologies >Environment: FreeBSD localhost.localdomain 10.0-BETA4 FreeBSD 10.0-BETA4 #7 r258988: Fri Dec 6 11:28:16 KST 2013 root@:/usr/obj/usr/src/sys/QUEEN amd64 >Description: lang/mit-scheme build fine, but install failed on microcode subdirectory. Error message: gmake[2]: Entering directory `/usr/ports/lang/mit-scheme/work/mit-scheme-9.1.1/src' /bin/sh ./microcode/mkinstalldirs /usr/ports/lang/mit-scheme/work/stage/usr/local/lib/mit-scheme-x86-64 install -o root -g wheel -m 444 ./etc/optiondb.scm /usr/ports/lang/mit-scheme/work/stage/usr/local/lib/mit-scheme-x86-64/. install -o root -g wheel -m 444 lib/*.com /usr/ports/lang/mit-scheme/work/stage/usr/local/lib/mit-scheme-x86-64/. etc/make-in-subdirs.sh install microcode runtime compiler cref sf star-parser edwin ffi imail sos ssp xml run_cmd in microcode/: make install make[3]: don't know how to make w. Stop make[3]: stopped in /usr/ports/lang/mit-scheme/work/mit-scheme-9.1.1/src/microcode gmake[2]: *** [install-standard] 오류 2 gmake[2]: Leaving directory `/usr/ports/lang/mit-scheme/work/mit-scheme-9.1.1/src' *** Error code 2 Stop. make[1]: stopped in /usr/ports/lang/mit-scheme *** Error code 1 Stop. make: stopped in /usr/ports/lang/mit-scheme >How-To-Repeat: cd /usr/ports/lang/mit-scheme/ ; make install >Fix: --- work/mit-scheme-9.1.1/src/etc/make-in-subdirs.sh.org 2013-12-08 23:39:03.317920305 +0900 +++ work/mit-scheme-9.1.1/src/etc/make-in-subdirs.sh 2013-12-08 23:39:13.489920620 +0900 @@ -29,5 +29,5 @@ TARGET=${1} shift for SUBDIR in "${@}"; do - run_cmd_in_dir "${SUBDIR}" make "${TARGET}" + run_cmd_in_dir "${SUBDIR}" gmake "${TARGET}" done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 14:50:46 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 577113A3; Sun, 8 Dec 2013 14:50:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2DC7F1885; Sun, 8 Dec 2013 14:50:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8EojxZ031881; Sun, 8 Dec 2013 14:50:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8EojYI031864; Sun, 8 Dec 2013 14:50:45 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 14:50:45 GMT Message-Id: <201312081450.rB8EojYI031864@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184593: Cannot install lang/mit-scheme X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 14:50:46 -0000 Synopsis: Cannot install lang/mit-scheme Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 14:50:45 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184593 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 15:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3259D9B6 for ; Sun, 8 Dec 2013 15:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7461194D for ; Sun, 8 Dec 2013 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8FA0OH013013 for ; Sun, 8 Dec 2013 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8FA0Cv013011; Sun, 8 Dec 2013 15:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 15:10:00 GMT Resent-Message-Id: <201312081510.rB8FA0Cv013011@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADB3D7F1 for ; Sun, 8 Dec 2013 15:06:57 +0000 (UTC) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 7D71F1931 for ; Sun, 8 Dec 2013 15:06:56 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id D41B161FAC; Mon, 9 Dec 2013 00:06:48 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id B24884E646; Mon, 9 Dec 2013 00:06:48 +0900 (JST) Received: by eastasia.home.utahime.org (Postfix, from userid 1000) id 976E24E642; Mon, 9 Dec 2013 00:06:48 +0900 (JST) Message-Id: <20131208150648.976E24E642@eastasia.home.utahime.org> Date: Mon, 9 Dec 2013 00:06:48 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184594: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 15:10:01 -0000 >Number: 184594 >Category: ports >Synopsis: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258726: Fri Nov 29 10:51:02 JST 2013 xxxx amd64 >Description: There is no explanation about 'alias' option in pkg.conf(5) but two examples in EXAMPLES section. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 15:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7806C9E6; Sun, 8 Dec 2013 15:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C7CE1950; Sun, 8 Dec 2013 15:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8FA95S016256; Sun, 8 Dec 2013 15:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8FA9OR016253; Sun, 8 Dec 2013 15:10:09 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 15:10:09 GMT Message-Id: <201312081510.rB8FA9OR016253@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184594: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 15:10:09 -0000 Synopsis: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 15:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184594 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 16:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 318BB72A for ; Sun, 8 Dec 2013 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0BFB71DE7 for ; Sun, 8 Dec 2013 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8GK0L3072980 for ; Sun, 8 Dec 2013 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8GK0tM072864; Sun, 8 Dec 2013 16:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 16:20:00 GMT Resent-Message-Id: <201312081620.rB8GK0tM072864@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Gmelin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 269DB718 for ; Sun, 8 Dec 2013 16:17:23 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 10BA21DE0 for ; Sun, 8 Dec 2013 16:17:23 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8GHMhJ033921 for ; Sun, 8 Dec 2013 16:17:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8GHMsA033914; Sun, 8 Dec 2013 16:17:22 GMT (envelope-from nobody) Message-Id: <201312081617.rB8GHMsA033914@oldred.freebsd.org> Date: Sun, 8 Dec 2013 16:17:22 GMT From: Michael Gmelin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184596: converters/php5-iconv: iconv transliteration support broken on 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 16:20:01 -0000 >Number: 184596 >Category: ports >Synopsis: converters/php5-iconv: iconv transliteration support broken on 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 16:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Michael Gmelin >Release: 10.0-BETA3 >Organization: Grem Equity GmbH >Environment: FreeBSD srv10 10.0-BETA3 FreeBSD 10.0-BETA3 #0: Mon Dec 2 20:44:29 UTC 2013 root@:/usr/obj/usr/src/sys/GENERIC amd64 >Description: php5-iconv has been changed to use FreeBSD's native iconv implementation where available (read FreeBSD 10). Unfortunately FreeBSD doesn't support GNU iconv's TRANSLIT and IGNORE extensions, which are clearly documented to be supported unconditionally on any platform by the PHP project: http://www.php.net/manual/en/function.iconv.php "out_charset The output charset. If you append the string //TRANSLIT to out_charset transliteration is activated. This means that when a character can't be represented in the target charset, it can be approximated through one or several similarly looking characters. If you append the string //IGNORE, characters that cannot be represented in the target charset are silently discarded. Otherwise, str is cut from the first illegal character and an E_NOTICE is generated." As a result, PHP code that runs correctly on other operating systems or FreeBSD < 10 will break in subtle ways on 10. >How-To-Repeat: Run the following code snippet: cat t.php < EOF FreeBSD 9.2: $ php t.php TZst FreeBSD 10 BETA3: $ php t.php T?st >Fix: Implement TRANSLIT/IGNORE extensions in base or make the port use converters/libiconv. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 16:20:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A64F87A0; Sun, 8 Dec 2013 16:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C2D81DEB; Sun, 8 Dec 2013 16:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8GK97p075557; Sun, 8 Dec 2013 16:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8GK9xA075535; Sun, 8 Dec 2013 16:20:09 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 16:20:09 GMT Message-Id: <201312081620.rB8GK9xA075535@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184596: converters/php5-iconv: iconv transliteration support broken on 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 16:20:09 -0000 Synopsis: converters/php5-iconv: iconv transliteration support broken on 10 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 16:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184596 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 16:28:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCDC28EE; Sun, 8 Dec 2013 16:28:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90C101E5C; Sun, 8 Dec 2013 16:28:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8GS0Br052009; Sun, 8 Dec 2013 16:28:00 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8GS06s051991; Sun, 8 Dec 2013 16:28:00 GMT (envelope-from eadler) Date: Sun, 8 Dec 2013 16:28:00 GMT Message-Id: <201312081628.rB8GS06s051991@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Subject: Re: ports/184595: converters/php5-iconv: iconv transliteration support broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 16:28:00 -0000 Synopsis: converters/php5-iconv: iconv transliteration support broken Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: eadler Responsible-Changed-When: Sun Dec 8 16:27:45 UTC 2013 Responsible-Changed-Why: Over to the correct ML http://www.freebsd.org/cgi/query-pr.cgi?pr=184595 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 16:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FE47A25 for ; Sun, 8 Dec 2013 16:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 226691E74 for ; Sun, 8 Dec 2013 16:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8GU032073663 for ; Sun, 8 Dec 2013 16:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8GU0hD073662; Sun, 8 Dec 2013 16:30:00 GMT (envelope-from gnats) Date: Sun, 8 Dec 2013 16:30:00 GMT Message-Id: <201312081630.rB8GU0hD073662@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Michael Gmelin Subject: Re: misc/184595: converters/php5-iconv: iconv transliteration support broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Michael Gmelin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 16:30:01 -0000 The following reply was made to PR ports/184595; it has been noted by GNATS. From: Michael Gmelin To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/184595: converters/php5-iconv: iconv transliteration support broken Date: Sun, 8 Dec 2013 17:22:44 +0100 Please close this PR, I resubmitted it in the correct category (ports/184596). -- Michael Gmelin From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 16:32:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73E20A68; Sun, 8 Dec 2013 16:32:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4860B1ECA; Sun, 8 Dec 2013 16:32:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8GW4QR092499; Sun, 8 Dec 2013 16:32:04 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8GW4MR092485; Sun, 8 Dec 2013 16:32:04 GMT (envelope-from eadler) Date: Sun, 8 Dec 2013 16:32:04 GMT Message-Id: <201312081632.rB8GW4MR092485@freefall.freebsd.org> To: freebsd@grem.de, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Subject: Re: ports/184595: converters/php5-iconv: iconv transliteration support broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 16:32:04 -0000 Synopsis: converters/php5-iconv: iconv transliteration support broken State-Changed-From-To: open->closed State-Changed-By: eadler State-Changed-When: Sun Dec 8 16:32:03 UTC 2013 State-Changed-Why: new PR created with the same info http://www.freebsd.org/cgi/query-pr.cgi?pr=184595 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 17:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 840A92C3 for ; Sun, 8 Dec 2013 17:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F0B810E7 for ; Sun, 8 Dec 2013 17:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8HK0xs006944 for ; Sun, 8 Dec 2013 17:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8HK0XX006943; Sun, 8 Dec 2013 17:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 17:20:00 GMT Resent-Message-Id: <201312081720.rB8HK0XX006943@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jose Jachuf Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6960262 for ; Sun, 8 Dec 2013 17:09:54 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C32141068 for ; Sun, 8 Dec 2013 17:09:54 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8H9sbB000906 for ; Sun, 8 Dec 2013 17:09:54 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8H9seg000901; Sun, 8 Dec 2013 17:09:54 GMT (envelope-from nobody) Message-Id: <201312081709.rB8H9seg000901@oldred.freebsd.org> Date: Sun, 8 Dec 2013 17:09:54 GMT From: Jose Jachuf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184598: databases/py-firebirdsql: update to 0.8.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 17:20:00 -0000 >Number: 184598 >Category: ports >Synopsis: databases/py-firebirdsql: update to 0.8.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 17:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jose Jachuf >Release: 9.2-RELEASE >Organization: . >Environment: FreeBSD hp530.jjachuf.com 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: simple version update >How-To-Repeat: - >Fix: - Patch attached with submission follows: diff -ruN py-firebirdsql-old/Makefile py-firebirdsql/Makefile --- py-firebirdsql-old/Makefile 2013-12-04 09:48:16.000000000 -0300 +++ py-firebirdsql/Makefile 2013-12-08 13:27:36.000000000 -0300 @@ -1,8 +1,8 @@ # Created by: Jose Jachuf -# $FreeBSD: databases/py-firebirdsql/Makefile 335583 2013-12-03 17:47:15Z culot $ +# $FreeBSD: databases/py-firebirdsql/Makefile 335621 2013-12-04 15:15:53Z culot $ PORTNAME= firebirdsql -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN py-firebirdsql-old/distinfo py-firebirdsql/distinfo --- py-firebirdsql-old/distinfo 2013-12-04 09:48:16.000000000 -0300 +++ py-firebirdsql/distinfo 2013-12-08 13:27:36.000000000 -0300 @@ -1,2 +1,2 @@ -SHA256 (firebirdsql-0.8.0.tar.gz) = 13b84944f40afbf9c95d65341d8b96b0a417b11476053f239bfd63e24d86b905 -SIZE (firebirdsql-0.8.0.tar.gz) = 37282 +SHA256 (firebirdsql-0.8.1.tar.gz) = 33b35b65ee111d674e77722cf69b7f5d6b3d187f7bb00fd6ea82a16df716c737 +SIZE (firebirdsql-0.8.1.tar.gz) = 37320 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 17:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 611AB2F4; Sun, 8 Dec 2013 17:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3716910EA; Sun, 8 Dec 2013 17:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8HK8De007079; Sun, 8 Dec 2013 17:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8HK8Kl007078; Sun, 8 Dec 2013 17:20:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 17:20:08 GMT Message-Id: <201312081720.rB8HK8Kl007078@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184598: databases/py-firebirdsql: update to 0.8.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 17:20:08 -0000 Synopsis: databases/py-firebirdsql: update to 0.8.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 17:20:07 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184598 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 18:35:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A852F5B4; Sun, 8 Dec 2013 18:35:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7CEE815C7; Sun, 8 Dec 2013 18:35:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8IZhn2027510; Sun, 8 Dec 2013 18:35:43 GMT (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8IZghf027509; Sun, 8 Dec 2013 18:35:42 GMT (envelope-from gerald) Date: Sun, 8 Dec 2013 18:35:42 GMT Message-Id: <201312081835.rB8IZghf027509@freefall.freebsd.org> To: devel@stasyan.com, cmt@burggraben.net, gerald@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gerald@FreeBSD.org Subject: Re: ports/184578: science/meep : fix build with gcc47 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 18:35:43 -0000 Synopsis: science/meep : fix build with gcc47 State-Changed-From-To: feedback->closed State-Changed-By: gerald State-Changed-When: Sun Dec 8 18:35:01 UTC 2013 State-Changed-Why: Christoph confirmed this should be covered by my global change. http://www.freebsd.org/cgi/query-pr.cgi?pr=184578 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 18:35:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16F135E2; Sun, 8 Dec 2013 18:35:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E098D15C9; Sun, 8 Dec 2013 18:35:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8IZsuZ027601; Sun, 8 Dec 2013 18:35:54 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8IZsOL027600; Sun, 8 Dec 2013 18:35:54 GMT (envelope-from pawel) Date: Sun, 8 Dec 2013 18:35:54 GMT Message-Id: <201312081835.rB8IZsOL027600@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184563: [maintainer-update] [patch] devel/dulwich: Update to 0.9.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 18:35:55 -0000 Synopsis: [maintainer-update] [patch] devel/dulwich: Update to 0.9.4 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Dec 8 18:35:54 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184563 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:00:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37A05DEB for ; Sun, 8 Dec 2013 19:00:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1039516F7 for ; Sun, 8 Dec 2013 19:00:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8J03IR031638 for ; Sun, 8 Dec 2013 19:00:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8J03ZB031637; Sun, 8 Dec 2013 19:00:03 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 19:00:03 GMT Resent-Message-Id: <201312081900.rB8J03ZB031637@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, udvzsolt@gmail.com Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 431BBCFE for ; Sun, 8 Dec 2013 18:59:34 +0000 (UTC) Received: from mail-bk0-x234.google.com (mail-bk0-x234.google.com [IPv6:2a00:1450:4008:c01::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C18B416E7 for ; Sun, 8 Dec 2013 18:59:33 +0000 (UTC) Received: by mail-bk0-f52.google.com with SMTP id u14so1034753bkz.25 for ; Sun, 08 Dec 2013 10:59:32 -0800 (PST) Received: from bsd-zsolt (91.82.0.34.pool.invitel.hu. [91.82.0.34]) by mx.google.com with ESMTPSA id e3sm6119245bkk.13.2013.12.08.10.59.28 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 08 Dec 2013 10:59:30 -0800 (PST) Received: by bsd-zsolt (sSMTP sendmail emulation); Sun, 08 Dec 2013 19:58:32 +0100 Message-Id: <52a4c192.034dcc0a.66a7.ffffc109@mx.google.com> Date: Sun, 08 Dec 2013 19:58:32 +0100 From: Zsolt Udvari To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184599: www/codeigniter update to 2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: udvzsolt@gmail.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:00:04 -0000 >Number: 184599 >Category: ports >Synopsis: www/codeigniter update to 2.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 19:00:03 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Zsolt Udvari >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD bsd-zsolt 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: www/codeigniter update to 2.4. Patch attached. >How-To-Repeat: >Fix: --- codeigniter.diff begins here --- diff -ur /usr/ports/www/codeigniter/Makefile codeigniter/Makefile --- /usr/ports/www/codeigniter/Makefile 2013-09-21 01:36:50.000000000 +0200 +++ codeigniter/Makefile 2013-12-08 19:46:53.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: www/codeigniter/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= codeigniter -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ http://www.codeigniter.org.tw/download_files/ diff -ur /usr/ports/www/codeigniter/distinfo codeigniter/distinfo --- /usr/ports/www/codeigniter/distinfo 2012-10-10 23:49:02.000000000 +0200 +++ codeigniter/distinfo 2013-12-08 19:47:26.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (CodeIgniter_2.1.3.zip) = fb91ab573741b8aed004fdbf6e6351db993e6a5079b95857b7d74f1e8c0edc44 -SIZE (CodeIgniter_2.1.3.zip) = 2321739 +SHA256 (CodeIgniter_2.1.4.zip) = 5ad6f8a9a2f3dc647aec554b388a62658304c5bd4295eb50b063ef8d69da1f19 +SIZE (CodeIgniter_2.1.4.zip) = 2319027 --- codeigniter.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:00:12 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 981ADE24; Sun, 8 Dec 2013 19:00:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6DCC516F8; Sun, 8 Dec 2013 19:00:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8J0CsM031711; Sun, 8 Dec 2013 19:00:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8J0CpG031710; Sun, 8 Dec 2013 19:00:12 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 19:00:12 GMT Message-Id: <201312081900.rB8J0CpG031710@freefall.freebsd.org> To: udvzsolt@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184599: www/codeigniter update to 2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:00:12 -0000 Synopsis: www/codeigniter update to 2.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Dec 8 19:00:12 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184599 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64E2C377 for ; Sun, 8 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51A42179C for ; Sun, 8 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8JA12q034118 for ; Sun, 8 Dec 2013 19:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8JA1UT034117; Sun, 8 Dec 2013 19:10:01 GMT (envelope-from gnats) Date: Sun, 8 Dec 2013 19:10:01 GMT Message-Id: <201312081910.rB8JA1UT034117@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184599: www/codeigniter update to 2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:10:01 -0000 The following reply was made to PR ports/184599; it has been noted by GNATS. From: Edwin Groothuis To: appleboy.tw@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184599: www/codeigniter update to 2.4 Date: Sun, 8 Dec 2013 19:00:11 UT Maintainer of www/codeigniter, Please note that PR ports/184599 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184599 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:16:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 816B65D7; Sun, 8 Dec 2013 19:16:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 536DC182E; Sun, 8 Dec 2013 19:16:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8JGpZt036940; Sun, 8 Dec 2013 19:16:51 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8JGpiY036939; Sun, 8 Dec 2013 19:16:51 GMT (envelope-from pawel) Date: Sun, 8 Dec 2013 19:16:51 GMT Message-Id: <201312081916.rB8JGpiY036939@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184583: [maintainer][patch] Update dns/gdnsd to 1.11.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:16:51 -0000 Synopsis: [maintainer][patch] Update dns/gdnsd to 1.11.0 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Dec 8 19:16:51 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184583 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 872CD622 for ; Sun, 8 Dec 2013 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 624BB1842 for ; Sun, 8 Dec 2013 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8JK16Y037094 for ; Sun, 8 Dec 2013 19:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8JK13Q037093; Sun, 8 Dec 2013 19:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 19:20:01 GMT Resent-Message-Id: <201312081920.rB8JK13Q037093@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BE6160A for ; Sun, 8 Dec 2013 19:17:39 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6BF601833 for ; Sun, 8 Dec 2013 19:17:39 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8JHbS2026853 for ; Sun, 8 Dec 2013 19:17:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8JHbfI026847; Sun, 8 Dec 2013 19:17:37 GMT (envelope-from nobody) Message-Id: <201312081917.rB8JHbfI026847@oldred.freebsd.org> Date: Sun, 8 Dec 2013 19:17:37 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184600: New port: sysutils/diskimage-tools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:20:01 -0000 >Number: 184600 >Category: ports >Synopsis: New port: sysutils/diskimage-tools >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 19:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 10.0-BETA3 >Organization: Acadix Consulting, LLC >Environment: FreeBSD oyster.jbacon.dyndns.org 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov 3 19:43:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Convenience tools for manipulating disk images such as ISOs and flash drive install images. WWW: http://acadix.biz/diskimage-tools.php >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # diskimage-tools # diskimage-tools/distinfo # diskimage-tools/pkg-descr # diskimage-tools/Makefile # diskimage-tools/pkg-plist # echo c - diskimage-tools mkdir -p diskimage-tools > /dev/null 2>&1 echo x - diskimage-tools/distinfo sed 's/^X//' >diskimage-tools/distinfo << '2a76e5fcdc13ac1a6935310c7f408612' XSHA256 (diskimage-tools-0.1.tar.xz) = 4f0b6257fe7ea989adaff356c0e1ad6c1f1d206855164048aecb6174585f50b0 XSIZE (diskimage-tools-0.1.tar.xz) = 1748 2a76e5fcdc13ac1a6935310c7f408612 echo x - diskimage-tools/pkg-descr sed 's/^X//' >diskimage-tools/pkg-descr << '67c878f12014f3648322fd40138de29b' XConvenience tools for manipulating disk images such as ISOs and flash drive Xinstall images. X XWWW: http://acadix.biz/diskimage-tools.php 67c878f12014f3648322fd40138de29b echo x - diskimage-tools/Makefile sed 's/^X//' >diskimage-tools/Makefile << '06debc080c742444f152b6260a07e2dd' X# Created by: Jason Bacon X# $FreeBSD$ X XPORTNAME= diskimage-tools XPORTVERSION= 0.1 XCATEGORIES= sysutils XMASTER_SITES= http://acadix.biz/Ports/distfiles/ \ X http://personalpages.tds.net/~jwbacon/Ports/distfiles/ X XMAINTAINER= jwbacon@tds.net XCOMMENT= Convenience tools for manipulating disk images X XLICENSE= bsd X XNO_BUILD= yes XUSE_XZ= yes X Xdo-install: X ${MKDIR} ${PREFIX}/sbin X ${INSTALL_SCRIPT} ${WRKSRC}/mount_cd9660_image \ X ${STAGEDIR}${PREFIX}/sbin X ${INSTALL_SCRIPT} ${WRKSRC}/umount_cd9660_image \ X ${STAGEDIR}${PREFIX}/sbin X ${INSTALL_SCRIPT} ${WRKSRC}/img2dev \ X ${STAGEDIR}${PREFIX}/sbin X ${INSTALL_MAN} ${WRKSRC}/mount_cd9660_image.1 \ X ${STAGEDIR}${MANPREFIX}/man/man1 X ${INSTALL_MAN} ${WRKSRC}/umount_cd9660_image.1 \ X ${STAGEDIR}${MANPREFIX}/man/man1 X ${INSTALL_MAN} ${WRKSRC}/img2dev.1 \ X ${STAGEDIR}${MANPREFIX}/man/man1 X X.include 06debc080c742444f152b6260a07e2dd echo x - diskimage-tools/pkg-plist sed 's/^X//' >diskimage-tools/pkg-plist << '333c3bd4641c85425a4608fe62205650' X@comment Generated by sysutils/genplist Xsbin/img2dev Xsbin/mount_cd9660_image Xsbin/umount_cd9660_image Xman/man1/img2dev.1.gz Xman/man1/mount_cd9660_image.1.gz Xman/man1/umount_cd9660_image.1.gz 333c3bd4641c85425a4608fe62205650 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9E29E99 for ; Sun, 8 Dec 2013 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 919B71970 for ; Sun, 8 Dec 2013 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8Je0sL041228 for ; Sun, 8 Dec 2013 19:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8Je0lQ041227; Sun, 8 Dec 2013 19:40:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 19:40:00 GMT Resent-Message-Id: <201312081940.rB8Je0lQ041227@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthias Andree Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A19D6C1F; Sun, 8 Dec 2013 19:36:14 +0000 (UTC) Received: from mandree by apollo.emma.line.org with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1Vpk8u-000NOt-RU; Sun, 08 Dec 2013 20:35:52 +0100 Message-Id: Date: Sun, 08 Dec 2013 20:35:52 +0100 From: Matthias Andree To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184602: Mk/bsd.port.mk: make missing distinfo file fatal Cc: portmgr@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Matthias Andree List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:40:00 -0000 >Number: 184602 >Category: ports >Synopsis: Mk/bsd.port.mk: make missing distinfo file fatal >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 19:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 9.2-RELEASE FreeBSD 9.2-RELEASE #4: Thu Oct 17 06:54:18 CEST 2013 root@apollo.emma.line.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I propose to make missing distinfo files fatal. Requires an -exp run, and may require doc/ updates. This patch is to be applied in port/Mk/: Index: bsd.port.mk =================================================================== --- bsd.port.mk (revision 335913) +++ bsd.port.mk (working copy) @@ -5094,6 +5100,7 @@ fi; \ elif [ -n "${_CKSUMFILES:M*}" ]; then \ ${ECHO_MSG} "=> No checksum file (${DISTINFO_FILE})."; \ + exit 1; \ fi .endif >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:40:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C0F0EC8; Sun, 8 Dec 2013 19:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 36F211972; Sun, 8 Dec 2013 19:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8Je8dJ041373; Sun, 8 Dec 2013 19:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8Je8bK041372; Sun, 8 Dec 2013 19:40:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 19:40:08 GMT Message-Id: <201312081940.rB8Je8bK041372@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184602: Mk/bsd.port.mk: make missing distinfo file fatal X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:40:08 -0000 Synopsis: Mk/bsd.port.mk: make missing distinfo file fatal Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 19:40:07 UTC 2013 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184602 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 19:45:30 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60B481EF; Sun, 8 Dec 2013 19:45:30 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 34C621A10; Sun, 8 Dec 2013 19:45:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8JjUlr043153; Sun, 8 Dec 2013 19:45:30 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8JjU61043152; Sun, 8 Dec 2013 19:45:30 GMT (envelope-from pawel) Date: Sun, 8 Dec 2013 19:45:30 GMT Message-Id: <201312081945.rB8JjU61043152@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184537: [PATCH] databases/tinycdb: also build+install shared library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 19:45:30 -0000 Synopsis: [PATCH] databases/tinycdb: also build+install shared library Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Dec 8 19:45:29 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184537 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C93FF9F0 for ; Sun, 8 Dec 2013 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A22B41B30 for ; Sun, 8 Dec 2013 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KA0LL047429 for ; Sun, 8 Dec 2013 20:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KA01X047428; Sun, 8 Dec 2013 20:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 20:10:00 GMT Resent-Message-Id: <201312082010.rB8KA01X047428@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Geoffroy Desvernay Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C8926BA; Sun, 8 Dec 2013 20:02:37 +0000 (UTC) Received: from melo.ec-m.fr (melo.ec-m.fr [147.94.19.139]) by mx1.freebsd.org (Postfix) with ESMTP id 5ADBF1AFA; Sun, 8 Dec 2013 20:02:37 +0000 (UTC) Received: from amavis3.serv.int (amavis3.serv.int [10.3.0.47]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 2F69FAC97D; Sun, 8 Dec 2013 21:02:36 +0100 (CET) Received: from melo.ec-m.fr ([10.3.0.13]) by amavis3.serv.int (amavis3.serv.int [10.3.0.47]) (amavisd-new, port 10024) with LMTP id x2yaSYD6Y+W3; Sun, 8 Dec 2013 21:02:34 +0100 (CET) Received: from dgeo.sysadm.ec-m.fr (dgeo.sysadm.ec-m.fr [147.94.19.169]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 5D7B5AC96B; Sun, 8 Dec 2013 21:02:34 +0100 (CET) Received: by dgeo.sysadm.ec-m.fr (Postfix, from userid 0) id 543A71CCA2; Sun, 8 Dec 2013 21:02:34 +0100 (CET) Message-Id: <20131208200234.543A71CCA2@dgeo.sysadm.ec-m.fr> Date: Sun, 8 Dec 2013 21:02:34 +0100 (CET) From: Geoffroy Desvernay To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184603: [PATCH] net/rubygem-openid: update to 2.3.0 Cc: ruby@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:10:00 -0000 >Number: 184603 >Category: ports >Synopsis: [PATCH] net/rubygem-openid: update to 2.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 20:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Geoffroy Desvernay >Release: FreeBSD 10.0-BETA4 amd64 >Organization: Ecole Centrale de Marseille >Environment: System: FreeBSD dgeo.sysadm.ec-m.fr 10.0-BETA4 FreeBSD 10.0-BETA4 #0: Mon Dec 2 18:21:18 CET >Description: - Update to 2.3.0 Port maintainer (ruby@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- rubygem-openid-2.3.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 335926) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openid -PORTVERSION= 2.2.3 +PORTVERSION= 2.3.0 CATEGORIES= net rubygems MASTER_SITES= RG DISTNAME= ruby-${PORTNAME}-${PORTVERSION} Index: distinfo =================================================================== --- distinfo (revision 335926) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ruby-openid-2.2.3.gem) = 0ddf69532c1f43a7045d8040cb0bd9f806c5b605c7d4f93c50fc5dab256508e8 -SIZE (rubygem/ruby-openid-2.2.3.gem) = 272896 +SHA256 (rubygem/ruby-openid-2.3.0.gem) = f69ed004e95f7094e23bfd8bc9ebfb1dc88a7b46637252ca2907a1189870ea7b +SIZE (rubygem/ruby-openid-2.3.0.gem) = 327680 --- rubygem-openid-2.3.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 752FAA1F; Sun, 8 Dec 2013 20:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 499A41C87; Sun, 8 Dec 2013 20:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KA9J4047568; Sun, 8 Dec 2013 20:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KA9hI047567; Sun, 8 Dec 2013 20:10:09 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 20:10:09 GMT Message-Id: <201312082010.rB8KA9hI047567@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184603: [PATCH] net/rubygem-openid: update to 2.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:10:09 -0000 Synopsis: [PATCH] net/rubygem-openid: update to 2.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 20:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184603 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 813D8113 for ; Sun, 8 Dec 2013 20:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 572B11CF8 for ; Sun, 8 Dec 2013 20:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KK0ho050277 for ; Sun, 8 Dec 2013 20:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KK0rW050276; Sun, 8 Dec 2013 20:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 20:20:00 GMT Resent-Message-Id: <201312082020.rB8KK0rW050276@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Geoffroy Desvernay Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78593C63; Sun, 8 Dec 2013 20:12:52 +0000 (UTC) Received: from melo.ec-m.fr (melo.ec-m.fr [147.94.19.139]) by mx1.freebsd.org (Postfix) with ESMTP id EBC1F1CB3; Sun, 8 Dec 2013 20:12:51 +0000 (UTC) Received: from amavis4.serv.int (amavis4.serv.int [10.3.0.48]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 042DBACA0D; Sun, 8 Dec 2013 21:12:51 +0100 (CET) Received: from melo.ec-m.fr ([10.3.0.13]) by amavis4.serv.int (amavis4.serv.int [10.3.0.48]) (amavisd-new, port 10024) with LMTP id Rs11OwKBR9md; Sun, 8 Dec 2013 21:12:47 +0100 (CET) Received: from dgeo.sysadm.ec-m.fr (dgeo.sysadm.ec-m.fr [147.94.19.169]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 3CAA9AC9E9; Sun, 8 Dec 2013 21:12:47 +0100 (CET) Received: by dgeo.sysadm.ec-m.fr (Postfix, from userid 0) id 1D9251CCA2; Sun, 8 Dec 2013 21:12:47 +0100 (CET) Message-Id: <20131208201247.1D9251CCA2@dgeo.sysadm.ec-m.fr> Date: Sun, 8 Dec 2013 21:12:47 +0100 (CET) From: Geoffroy Desvernay To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184604: [PATCH] www/redmine: update to 2.3.4, add UNICORN and STAGE Cc: ruby@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:20:00 -0000 >Number: 184604 >Category: ports >Synopsis: [PATCH] www/redmine: update to 2.3.4, add UNICORN and STAGE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 20:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Geoffroy Desvernay >Release: FreeBSD 10.0-BETA4 amd64 >Organization: Ecole Centrale de Marseille >Environment: System: FreeBSD dgeo.sysadm.ec-m.fr 10.0-BETA4 FreeBSD 10.0-BETA4 #0: Mon Dec 2 18:21:18 CET >Description: - Update to 2.3.4 - Add UNICORN option (depend on unicorn and install example config) see also ports/184592, this should permit a quick unicorn setup - enable STAGE-ing - move some chmod/chown to plist as suggested by https://wiki.freebsd.org/ports/StageDir - use OPTIONSng helpers to simplify a bit Port maintainer (ruby@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- redmine-2.3.4.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 335926) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redmine -PORTVERSION= 2.3.3 -PORTREVISION= 2 +PORTVERSION= 2.3.4 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_RUBYFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -27,11 +26,12 @@ USE_RAKE= yes NO_BUILD= yes SUB_LIST+= RUBY_NAME=${RUBY_NAME} +SUB_FILES= pkg-message OPTIONS_DEFINE= MYSQL MYSQL2 POSTGRESQL RMAGIC WWWSERVER OPTIONS_DEFAULT=MYSQL2 RMAGIC WWWSERVER THIN OPTIONS_SINGLE= WWWSERVER -OPTIONS_SINGLE_WWWSERVER= THIN PASSENGER +OPTIONS_SINGLE_WWWSERVER= THIN PASSENGER UNICORN POSTGRESQL_DESC=Enable PostgreSQL support RMAGIC_DESC= Enable Gantt charts support THIN_DESC= Use Thin WEB server @@ -38,42 +38,39 @@ PASSENGER_DESC= Use Apache/Nginx WEB server MYSQL2_DESC= MySQL database support (via mysql2 rubygem) NO_OPTIONS_SORT=yes +OPTIONS_SUB= yes -NO_STAGE= yes -.include +MYSQL_RUN_DEPENDS= rubygem-mysql>=2.8.1:${PORTSDIR}/databases/rubygem-mysql +MYSQL2_RUN_DEPENDS= rubygem-mysql2>=0:${PORTSDIR}/databases/rubygem-mysql2 +POSTGRESQL_RUN_DEPENDS= rubygem-pg>=0:${PORTSDIR}/databases/rubygem-pg +RMAGIC_RUN_DEPENDS= rubygem-rmagick>=2.0.0:${PORTSDIR}/graphics/rubygem-rmagick -.if ${PORT_OPTIONS:MMYSQL} -RUN_DEPENDS+= rubygem-mysql>=2.8.1:${PORTSDIR}/databases/rubygem-mysql -.endif +.include -.if ${PORT_OPTIONS:MMYSQL2} -RUN_DEPENDS+= rubygem-mysql2>=0:${PORTSDIR}/databases/rubygem-mysql2 -.endif - -.if ${PORT_OPTIONS:MPOSTGRESQL} -RUN_DEPENDS+= rubygem-pg>=0:${PORTSDIR}/databases/rubygem-pg -.endif - -.if ${PORT_OPTIONS:MRMAGIC} -RUN_DEPENDS+= rubygem-rmagick>=2.0.0:${PORTSDIR}/graphics/rubygem-rmagick -.else -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Gemfile -.endif - .if ${PORT_OPTIONS:MWWWSERVER} -.if ${PORT_OPTIONS:MTHIN} USERS= ${WWWOWN} GROUPS= ${WWWGRP} +SUB_LIST+= WWWSERVER="" WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +PLIST_SUB+= WWWSERVER="" WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +.if ${PORT_OPTIONS:MTHIN} RUN_DEPENDS+= thin:${PORTSDIR}/www/rubygem-thin USE_RC_SUBR= redmine -SUB_LIST+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} .endif .if ${PORT_OPTIONS:MPASSENGER} RUN_DEPENDS+= passenger-config:${PORTSDIR}/www/rubygem-passenger .endif + +.if ${PORT_OPTIONS:MUNICORN} +RUN_DEPENDS+= unicorn:${PORTSDIR}/www/rubygem-unicorn +SUB_LIST+= UNICORN="" +.else +SUB_LIST+= UNICORN="@comment " .endif +.endif +.include + post-extract: ${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml-dist @@ -81,24 +78,22 @@ ${MKDIR} ${WRKSRC}/public/plugin_assets do-install: - ${MKDIR} ${WWWDIR} - ${MKDIR} ${WWWDIR}/tmp/pids + ${MKDIR} ${STAGEDIR}${WWWDIR} + ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/pids +.if ${PORT_OPTIONS:MWWWSERVER} +.if ${PORT_OPTIONS:MUNICORN} + ${CP} -p ${FILESDIR}/unicorn.config.rb.sample ${WRKSRC}/config/unicorn.config.rb.sample +.endif +.endif + ${TOUCH} ${WRKSRC}/Gemfile.lock + ${FIND} ${WRKSRC}/script -type f -print | ${XARGS} ${CHMOD} 755 cd ${WRKSRC} && \ - ${COPYTREE_SHARE} "*" ${WWWDIR} "! ( -name *\.orig -o -name *\.bak )" - ${FIND} ${WRKSRC}/script -type f -print | ${XARGS} ${CHMOD} 755 + ${COPYTREE_SHARE} "*" ${STAGEDIR}${WWWDIR} "! ( -name *\.orig -o -name *\.bak )" post-install: - ${TOUCH} ${WWWDIR}/Gemfile.lock - ${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/Gemfile.lock - - if ! [ -r ${WWWDIR}/config/settings.yml ]; then \ - ${INSTALL_DATA} ${WWWDIR}/config/settings.yml-dist \ - ${WWWDIR}/config/settings.yml; \ - fi - for subdir in files log tmp public/plugin_assets; do \ - ${CHOWN} -R :${WWWGRP} ${WWWDIR}/$$subdir; \ - ${CHMOD} -R g+w ${WWWDIR}/$$subdir; \ + @for subdir in files log tmp public/plugin_assets; do \ + ${CHOWN} -R :${WWWGRP} ${STAGEDIR}${WWWDIR}/$$subdir; \ + ${CHMOD} -R g+w ${STAGEDIR}${WWWDIR}/$$subdir; \ done - @${CAT} ${PKGMESSAGE} .include Index: distinfo =================================================================== --- distinfo (revision 335926) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (redmine-2.3.3.tar.gz) = dbec7b62417b8cd36c02bf98f38d26429c27b67430217879ce8fe25af6add97b -SIZE (redmine-2.3.3.tar.gz) = 3803852 +SHA256 (redmine-2.3.4.tar.gz) = 0b435f4b121baf4cea9f66dbf9558c9e3a8a3239f99ef1e46c9044b4d9d327c6 +SIZE (redmine-2.3.4.tar.gz) = 3810010 Index: files/extra-patch-Gemfile =================================================================== --- files/extra-patch-Gemfile (revision 335926) +++ files/extra-patch-Gemfile (working copy) @@ -1,19 +0,0 @@ ---- ./Gemfile.orig 2013-07-30 12:49:03.000000000 -0400 -+++ ./Gemfile 2013-07-30 12:49:13.000000000 -0400 -@@ -18,16 +18,6 @@ - gem "rack-openid" - end - --# Optional gem for exporting the gantt to a PNG file, not supported with jruby --platforms :mri, :mingw do -- group :rmagick do -- # RMagick 2 supports ruby 1.9 -- # RMagick 1 would be fine for ruby 1.8 but Bundler does not support -- # different requirements for the same gem on different platforms -- gem "rmagick", ">= 2.0.0" -- end --end -- - platforms :jruby do - # jruby-openssl is bundled with JRuby 1.7.0 - gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0' Index: files/patch-Gemfile =================================================================== --- files/patch-Gemfile (revision 335926) +++ files/patch-Gemfile (working copy) @@ -1,59 +0,0 @@ ---- Gemfile.orig 2013-09-14 06:48:49.000000000 +0000 -+++ Gemfile 2013-10-28 18:11:49.154289224 +0000 -@@ -1,11 +1,11 @@ - source 'https://rubygems.org' - --gem "rails", "3.2.13" --gem "jquery-rails", "~> 2.0.2" -+gem "rails", "3.2.15" -+gem "jquery-rails", "~> 3.0" - gem "i18n", "~> 0.6.0" --gem "coderay", "~> 1.0.9" -+gem "coderay", "~> 1.1.0" - gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby] --gem "builder", "3.0.0" -+gem "builder", "~> 3.0.0" - - # Optional gem for LDAP authentication - group :ldap do -@@ -14,7 +14,7 @@ - - # Optional gem for OpenID authentication - group :openid do -- gem "ruby-openid", "~> 2.2.3", :require => "openid" -+ gem "ruby-openid", "~> 2.2", :require => "openid" - gem "rack-openid" - end - -@@ -46,10 +46,10 @@ - adapters.each do |adapter| - case adapter - when 'mysql2' -- gem "mysql2", "~> 0.3.11", :platforms => [:mri, :mingw] -+ gem "mysql2", "~> 0.3", :platforms => [:mri, :mingw] - gem "activerecord-jdbcmysql-adapter", :platforms => :jruby - when 'mysql' -- gem "mysql", "~> 2.8.1", :platforms => [:mri, :mingw] -+ gem "mysql", "~> 2.8", :platforms => [:mri, :mingw] - gem "activerecord-jdbcmysql-adapter", :platforms => :jruby - when /postgresql/ - gem "pg", ">= 0.11.0", :platforms => [:mri, :mingw] -@@ -71,18 +71,6 @@ - warn("Please configure your config/database.yml first") - end - --group :development do -- gem "rdoc", ">= 2.4.2" -- gem "yard" --end -- --group :test do -- gem "shoulda", "~> 3.3.2" -- gem "mocha", "~> 0.13.3" -- gem 'capybara', '~> 2.0.0' -- gem 'nokogiri', '< 1.6.0' --end -- - local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") - if File.exists?(local_gemfile) - puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v` Index: files/pkg-message.in =================================================================== --- files/pkg-message.in (revision 0) +++ files/pkg-message.in (working copy) @@ -0,0 +1,23 @@ +============================================================================= + +Redmine was installed. + +You now need to setup your Redmine installation so +please have a look at the Installation Guide. + +http://www.redmine.org/wiki/redmine/RedmineInstall + + +If you are upgrading please read the Upgrading Guide +before starting the new version. + +http://www.redmine.org/wiki/redmine/RedmineUpgrade + +============================================================================= +%%WWWSERVER%%%%UNICORN%%You configured redmine to work with unicorn: +%%WWWSERVER%%%%UNICORN%% +%%WWWSERVER%%%%UNICORN%% a sample unicorn config file was created to +%%WWWSERVER%%%%UNICORN%% %%WWWDIR%%/config/unicorn.config.rb +%%WWWSERVER%%%%UNICORN%% +%%WWWSERVER%%%%UNICORN%%You still need to launch unicorn ... +%%WWWSERVER%%%%UNICORN%%============================================================================= Property changes on: files/pkg-message.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/unicorn.config.rb.sample =================================================================== --- files/unicorn.config.rb.sample (revision 0) +++ files/unicorn.config.rb.sample (working copy) @@ -0,0 +1,37 @@ +worker_processes 2 +working_directory "/usr/local/www/redmine" + +#listen File.expand_path("tmp/unicorn.sock", ENV['RAILS_ROOT']) +#listen "/var/tmp/unicorn_redmine.sock", :backlog => 64 +#listen 3030,tcp_nopush => true +pid File.expand_path("tmp/unicorn.pid", ENV['RAILS_ROOT']) + +timeout 60 + +preload_app true + +stdout_path File.expand_path("log/unicorn.stdout.log", ENV['RAILS_ROOT']) +stderr_path File.expand_path("log/unicorn.stderr.log", ENV['RAILS_ROOT']) + +GC.respond_to?(:copy_on_write_friendly=) and GC.copy_on_write_friendly = true + +check_client_connection false + +before_fork do |server, worker| + defined?(ActiveRecord::Base) and ActiveRecord::Base.connection.disconnect! + + old_pid = "#{server.config[:pid]}.oldbin" + if old_pid != server.pid + begin + sig = (worker.nr + 1) >= server.worker_processes ? :QUIT : :TTOU + Process.kill(sig, File.read(old_pid).to_i) + rescue Errno::ENOENT, Errno::ESRCH + end + end + + sleep 1 + end + +after_fork do |server, worker| + defined?(ActiveRecord::Base) and ActiveRecord::Base.establish_connection +end Index: pkg-message =================================================================== --- pkg-message (revision 335926) +++ pkg-message (working copy) @@ -1,16 +0,0 @@ -============================================================================= - -Redmine was installed. - -You now need to setup your Redmine installation so -please have a look at the Installation Guide. - -http://www.redmine.org/wiki/redmine/RedmineInstall - - -If you are upgrading please read the Upgrading Guide -before starting the new version. - -http://www.redmine.org/wiki/redmine/RedmineUpgrade - -============================================================================= Index: pkg-plist =================================================================== --- pkg-plist (revision 335926) +++ pkg-plist (working copy) @@ -1,5 +1,4 @@ %%WWWDIR%%/Gemfile -%%WWWDIR%%/Gemfile.lock %%WWWDIR%%/README.rdoc %%WWWDIR%%/Rakefile %%WWWDIR%%/app/helpers/issue_statuses_helper.rb @@ -575,8 +574,6 @@ %%WWWDIR%%/config/environment.rb %%WWWDIR%%/config/application.rb %%WWWDIR%%/config/preinitializer.rb -%%WWWDIR%%/config/settings.yml-dist -%%WWWDIR%%/config/settings.yml %%WWWDIR%%/config.ru %%WWWDIR%%/db/migrate/001_setup.rb %%WWWDIR%%/db/migrate/20091017212644_add_missing_indexes_to_messages.rb @@ -823,7 +820,6 @@ %%WWWDIR%%/extra/sample_plugin/config/routes.rb %%WWWDIR%%/extra/sample_plugin/init.rb %%WWWDIR%%/extra/mail_handler/rdm-mailhandler.rb -%%WWWDIR%%/files/delete.me %%WWWDIR%%/lib/redcloth3.rb %%WWWDIR%%/lib/SVG/GPL.txt %%WWWDIR%%/lib/SVG/LICENSE.txt @@ -1147,7 +1143,6 @@ %%WWWDIR%%/lib/plugins/acts_as_versioned/init.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/MIT-LICENSE %%WWWDIR%%/lib/plugins/acts_as_versioned/CHANGELOG -%%WWWDIR%%/log/delete.me %%WWWDIR%%/plugins/README %%WWWDIR%%/public/404.html %%WWWDIR%%/public/help/wiki_syntax.html @@ -1413,8 +1408,6 @@ %%WWWDIR%%/public/javascripts/i18n/jquery.ui.datepicker-fi.js %%WWWDIR%%/public/javascripts/select_list_move.js %%WWWDIR%%/public/javascripts/raphael.js -%%WWWDIR%%/script/about -%%WWWDIR%%/script/rails %%WWWDIR%%/test/mocks/open_id_authentication_mock.rb %%WWWDIR%%/test/object_helpers.rb %%WWWDIR%%/test/test_helper.rb @@ -1773,9 +1766,24 @@ %%WWWDIR%%/test/extra/redmine_pm/repository_subversion_test.rb %%WWWDIR%%/test/extra/redmine_pm/test_case.rb %%WWWDIR%%/test/extra/redmine_pm/repository_git_test.rb +@unexec if cmp -s %D/%%WWWDIR%%/config/settings.yml %D/%%WWWDIR%%/config/settings.yml-dist ; then rm -f %D/%%WWWDIR%%/config/settings.yml; fi +%%WWWDIR%%/config/settings.yml-dist +@exec if [ ! -f %D/%%WWWDIR%%/config/settings.yml ]; then cp -p %D/%%WWWDIR%%/config/settings.yml-dist %D/%%WWWDIR%%/config/settings.yml; fi +%%WWWSERVER%%%%UNICORN%%@unexec if cmp -s %D/%%WWWDIR%%/config/unicorn.config.rb %D/%%WWWDIR%%/config/unicorn.config.rb.sample ; then rm -f %D/%%WWWDIR%%/config/unicorn.config.rb; fi +%%WWWSERVER%%%%UNICORN%%%%WWWDIR%%/config/unicorn.config.rb.sample +%%WWWSERVER%%%%UNICORN%%@exec if [ ! -f %D/%%WWWDIR%%/config/unicorn.config.rb ]; then cp -p %D/%%WWWDIR%%/config/unicorn.config.rb.sample %D/%%WWWDIR%%/config/unicorn.config.rb; fi +@mode 755 +%%WWWDIR%%/script/about +%%WWWDIR%%/script/rails +@group %%WWWGRP%% +@mode g+w +%%WWWDIR%%/files/delete.me +%%WWWDIR%%/log/delete.me %%WWWDIR%%/tmp/test/empty %%WWWDIR%%/tmp/pdf/empty %%WWWDIR%%/tmp/thumbnails/empty +@owner %%WWWOWN%% +%%WWWDIR%%/Gemfile.lock @dirrmtry %%WWWDIR%%/vendor @dirrmtry %%WWWDIR%%/tmp/thumbnails @dirrmtry %%WWWDIR%%/tmp/test --- redmine-2.3.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:20:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57E9F141; Sun, 8 Dec 2013 20:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D63E1D3B; Sun, 8 Dec 2013 20:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KK9RW050417; Sun, 8 Dec 2013 20:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KK9PU050416; Sun, 8 Dec 2013 20:20:09 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 20:20:09 GMT Message-Id: <201312082020.rB8KK9PU050416@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184604: [PATCH] www/redmine: update to 2.3.4, add UNICORN and STAGE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:20:09 -0000 Synopsis: [PATCH] www/redmine: update to 2.3.4, add UNICORN and STAGE Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 20:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184604 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF132355 for ; Sun, 8 Dec 2013 20:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A96C1D8D for ; Sun, 8 Dec 2013 20:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KU0KP052573 for ; Sun, 8 Dec 2013 20:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KU0v0052572; Sun, 8 Dec 2013 20:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 20:30:00 GMT Resent-Message-Id: <201312082030.rB8KU0v0052572@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1CEE194 for ; Sun, 8 Dec 2013 20:23:06 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A45031D50 for ; Sun, 8 Dec 2013 20:23:06 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8KN53w055710 for ; Sun, 8 Dec 2013 20:23:05 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8KN5vu055709; Sun, 8 Dec 2013 20:23:05 GMT (envelope-from nobody) Message-Id: <201312082023.rB8KN5vu055709@oldred.freebsd.org> Date: Sun, 8 Dec 2013 20:23:05 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184605: maintainer update: www/runsomebrowser + name change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:30:00 -0000 >Number: 184605 >Category: ports >Synopsis: maintainer update: www/runsomebrowser + name change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 20:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 10.0-BETA3 >Organization: Acadix Consulting, LLC >Environment: FreeBSD oyster.jbacon.dyndns.org 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov 3 19:43:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Change name to "webbrowser" and upgrade to next version. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/webbrowser/Makefile /usr/wip/www/webbrowser/Makefile --- /usr/ports/www/webbrowser/Makefile 1969-12-31 18:00:00.000000000 -0600 +++ /usr/wip/www/webbrowser/Makefile 2013-12-08 14:16:27.000000000 -0600 @@ -0,0 +1,24 @@ +# Created by: Jason Bacon +# $FreeBSD: www/runsomebrowser/Makefile 327776 2013-09-20 23:36:50Z bapt $ + +PORTNAME= webbrowser +PORTVERSION= 0.3 +CATEGORIES= www +MASTER_SITES= http://acadix.biz/Ports/distfiles/ \ + http://personalpages.tds.net/~jwbacon/Ports/distfiles/ + +MAINTAINER= jwbacon@tds.net +COMMENT= Wrapper for running the "best" available WEB browser + +LICENSE= BSD + +NO_BUILD= yes +USE_XZ= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/webbrowser ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/webbrowser.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +PLIST_FILES= bin/webbrowser man/man1/webbrowser.1.gz + +.include diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/webbrowser/distinfo /usr/wip/www/webbrowser/distinfo --- /usr/ports/www/webbrowser/distinfo 1969-12-31 18:00:00.000000000 -0600 +++ /usr/wip/www/webbrowser/distinfo 2013-12-08 14:08:37.000000000 -0600 @@ -0,0 +1,2 @@ +SHA256 (webbrowser-0.3.tar.xz) = 7e100607622d36c5822ffcf8b7cf135c5a70a29179ce832e86c07037f2f0c31f +SIZE (webbrowser-0.3.tar.xz) = 1656 diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/webbrowser/pkg-descr /usr/wip/www/webbrowser/pkg-descr --- /usr/ports/www/webbrowser/pkg-descr 1969-12-31 18:00:00.000000000 -0600 +++ /usr/wip/www/webbrowser/pkg-descr 2013-12-08 14:15:02.000000000 -0600 @@ -0,0 +1,6 @@ +Webbrowser is a wrapper script for finding and running the "best" available +installed browser on the system. It is intended for use by other +applications that invoke a browser, so that they need not be reconfigured +when a user switches to a different browser. + +WWW: http://personalpages.tds.net/~jwbacon/Ports >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 20:37:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52383427; Sun, 8 Dec 2013 20:37:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 24C211E02; Sun, 8 Dec 2013 20:37:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8KbsdM054437; Sun, 8 Dec 2013 20:37:54 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8KbsG8054436; Sun, 8 Dec 2013 20:37:54 GMT (envelope-from pawel) Date: Sun, 8 Dec 2013 20:37:54 GMT Message-Id: <201312082037.rB8KbsG8054436@freefall.freebsd.org> To: xxjack12xx@gmail.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/183950: audio/audacity build fails with TWOLAME=off [PATCH] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 20:37:55 -0000 Synopsis: audio/audacity build fails with TWOLAME=off [PATCH] Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Dec 8 20:37:54 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=183950 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 21:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCEEDC9D for ; Sun, 8 Dec 2013 21:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3F0E1FEC for ; Sun, 8 Dec 2013 21:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8LA0II060556 for ; Sun, 8 Dec 2013 21:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8LA0wN060555; Sun, 8 Dec 2013 21:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 21:10:00 GMT Resent-Message-Id: <201312082110.rB8LA0wN060555@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7787A84 for ; Sun, 8 Dec 2013 21:07:09 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 981C01FB8 for ; Sun, 8 Dec 2013 21:07:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8L79wG061958 for ; Sun, 8 Dec 2013 21:07:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8L79Uw061914; Sun, 8 Dec 2013 21:07:09 GMT (envelope-from nobody) Message-Id: <201312082107.rB8L79Uw061914@oldred.freebsd.org> Date: Sun, 8 Dec 2013 21:07:09 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184607: maintainer update: math/matlab-R2012a-installer + name change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 21:10:01 -0000 >Number: 184607 >Category: ports >Synopsis: maintainer update: math/matlab-R2012a-installer + name change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 21:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 10.0-BETA3 >Organization: Acadix Consulting, LLC >Environment: FreeBSD oyster.jbacon.dyndns.org 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov 3 19:43:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This upgrade generalizes the installer to handle any Matlab version, adds support for MEX compilation, adds a man page, and improves the user interface using auto-admin tools. >How-To-Repeat: >Fix: Patch attached. Patch attached with submission follows: diff -ruN --exclude=CVS --exclude=.svn /usr/ports/math/matlab-R2012a-installer/Makefile /usr/wip/math/matlab-installer/Makefile --- /usr/ports/math/matlab-R2012a-installer/Makefile 2013-09-20 15:55:04.000000000 -0500 +++ /usr/wip/math/matlab-installer/Makefile 2013-12-08 14:51:38.000000000 -0600 @@ -1,32 +1,37 @@ -# Created by: Jason Bacon +# Created by: Jason Bacon # $FreeBSD: math/matlab-R2012a-installer/Makefile 327746 2013-09-20 20:55:04Z bapt $ -PORTNAME= matlab-R2012a-installer -PORTVERSION= 0.1 +PORTNAME= matlab-installer +PORTVERSION= 0.2 CATEGORIES= math science java MASTER_SITES= http://acadix.biz/Ports/distfiles/ \ http://personalpages.tds.net/~jwbacon/Ports/distfiles/ MAINTAINER= jwbacon@tds.net -COMMENT= Mathworks(r) Matlab installation tool +COMMENT= Easy installation of Linux Matlab(r) on FreeBSD +LICENSE= BSD + +# Move devtools depend to USE_LINUX_APPS when possible +RUN_DEPENDS= mount_image:${PORTSDIR}/sysutils/diskimage-tools \ + auto-ask:${PORTSDIR}/sysutils/auto-admin \ + webbrowser:${PORTSDIR}/www/webbrowser \ + ${LINUXBASE}/usr/bin/gfortran:../../devel/linux-f10-devtools + +USE_XZ= yes USE_LINUX= yes -USE_LINUX_APPS= ncurses-base +USE_LINUX_APPS= ncurses-base dri USE_JAVA= yes JAVA_VERSION= 1.6+ JAVA_OS= linux JAVA_RUN= yes NO_BUILD= yes -SUB_FILES= pkg-message -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -NO_STAGE= yes do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - -post-install: - @${CAT} ${WRKDIR}/pkg-message + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/matlab-installer.1 ${STAGEDIR}${PREFIX}/man/man1 .include diff -ruN --exclude=CVS --exclude=.svn /usr/ports/math/matlab-R2012a-installer/distinfo /usr/wip/math/matlab-installer/distinfo --- /usr/ports/math/matlab-R2012a-installer/distinfo 2013-05-20 10:06:17.000000000 -0500 +++ /usr/wip/math/matlab-installer/distinfo 2013-12-08 14:35:43.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (matlab-R2012a-installer-0.1.tar.gz) = 047888d53f5d2cce32598e45072693aa225cb1472b9196e521f541a3b73ba749 -SIZE (matlab-R2012a-installer-0.1.tar.gz) = 4706 +SHA256 (matlab-installer-0.2.tar.xz) = 461e694d6140000cb40350daa126ae0e8c9a1e3ee0defee8c84643460bf977b6 +SIZE (matlab-installer-0.2.tar.xz) = 6668 diff -ruN --exclude=CVS --exclude=.svn /usr/ports/math/matlab-R2012a-installer/files/pkg-message.in /usr/wip/math/matlab-installer/files/pkg-message.in --- /usr/ports/math/matlab-R2012a-installer/files/pkg-message.in 2013-05-20 10:06:17.000000000 -0500 +++ /usr/wip/math/matlab-installer/files/pkg-message.in 1969-12-31 18:00:00.000000000 -0600 @@ -1,20 +0,0 @@ -==================================================================== -If you did not allow the Matlab installer to create symbolic links -to the Matlab binaries, users will need %%PREFIX%%/matlab/bin -in their PATH to run matlab. - -If you want to run matlab without the graphical desktop, you will need -a terminfo database installed in - - /compat/linux/usr/share/terminfo - -To install Matlab (r), have your license.dat file and installation -media ready, and run - - matlab-R2012a-installer - -as root. - -NOTE: The root user must have the ability to run X11 applications, -as Matlab R2012a does not have a text-based installer. -==================================================================== diff -ruN --exclude=CVS --exclude=.svn /usr/ports/math/matlab-R2012a-installer/pkg-descr /usr/wip/math/matlab-installer/pkg-descr --- /usr/ports/math/matlab-R2012a-installer/pkg-descr 2013-05-20 10:06:17.000000000 -0500 +++ /usr/wip/math/matlab-installer/pkg-descr 2013-12-08 14:50:44.000000000 -0600 @@ -1,5 +1,8 @@ -This port installs the prerequisites for Mathworks (r) Matlab R2012a for Linux -and an installer script matlab-2012a-installer, which automates the somewhat +This port installs the prerequisites for Mathworks (r) Matlab for Linux +and an installer script (matlab-installer), which automates the somewhat tricky process of installing Linux Matlab. -It requires installation media and a license file from Mathworks, Inc. +Installing Matlab requires Matlab installation media and a license file and +installation key from Mathworks, Inc. + +WWW: http://acadix.biz/matlab-installer.php >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 21:10:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F5E5CA2 for ; Sun, 8 Dec 2013 21:10:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BCE91FEF for ; Sun, 8 Dec 2013 21:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8LA2Fi060624 for ; Sun, 8 Dec 2013 21:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8LA2aL060623; Sun, 8 Dec 2013 21:10:02 GMT (envelope-from gnats) Date: Sun, 8 Dec 2013 21:10:02 GMT Message-Id: <201312082110.rB8LA2aL060623@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jason Bacon Subject: Re: ports/184605: maintainer update: www/runsomebrowser + name change X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jason Bacon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 21:10:03 -0000 The following reply was made to PR ports/184605; it has been noted by GNATS. From: Jason Bacon To: bug-followup@FreeBSD.org, jwbacon@tds.net Cc: Subject: Re: ports/184605: maintainer update: www/runsomebrowser + name change Date: Sun, 08 Dec 2013 14:59:54 -0600 This is a multi-part message in MIME format. --------------010306060306050603000301 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Original patch is corrupt. Please use attached... --------------010306060306050603000301 Content-Type: text/plain; charset=us-ascii; name="webbrowser-diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="webbrowser-diff.txt" diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/runsomebrowser/Makefile /usr/wip/www/webbrowser/Makefile --- /usr/ports/www/runsomebrowser/Makefile 2013-09-20 18:36:50.000000000 -0500 +++ /usr/wip/www/webbrowser/Makefile 2013-12-08 14:16:27.000000000 -0600 @@ -1,24 +1,24 @@ # Created by: Jason Bacon # $FreeBSD: www/runsomebrowser/Makefile 327776 2013-09-20 23:36:50Z bapt $ -PORTNAME= runsomebrowser -PORTVERSION= 0.2 +PORTNAME= webbrowser +PORTVERSION= 0.3 CATEGORIES= www -MASTER_SITES= http://personalpages.tds.net/~jwbacon/Ports/distfiles/ \ - http://jbacon.dyndns.org/~bacon/Ports/distfiles/ +MASTER_SITES= http://acadix.biz/Ports/distfiles/ \ + http://personalpages.tds.net/~jwbacon/Ports/distfiles/ MAINTAINER= jwbacon@tds.net -COMMENT= Script for running the an available WEB browser +COMMENT= Wrapper for running the "best" available WEB browser -NO_BUILD= yes +LICENSE= BSD -MAN1= runsomebrowser.1 +NO_BUILD= yes +USE_XZ= yes -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/runsomebrowser ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/runsomebrowser.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKSRC}/webbrowser ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/webbrowser.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 -PLIST_FILES= bin/runsomebrowser +PLIST_FILES= bin/webbrowser man/man1/webbrowser.1.gz .include diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/runsomebrowser/distinfo /usr/wip/www/webbrowser/distinfo --- /usr/ports/www/runsomebrowser/distinfo 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/www/webbrowser/distinfo 2013-12-08 14:08:37.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (runsomebrowser-0.2.tar.gz) = 2b19c7d26bf3626e1289b85de6347f193e804699ec04434e06f8e94bca0cc7c3 -SIZE (runsomebrowser-0.2.tar.gz) = 2140 +SHA256 (webbrowser-0.3.tar.xz) = 7e100607622d36c5822ffcf8b7cf135c5a70a29179ce832e86c07037f2f0c31f +SIZE (webbrowser-0.3.tar.xz) = 1656 diff -ruN --exclude=CVS --exclude=.svn /usr/ports/www/runsomebrowser/pkg-descr /usr/wip/www/webbrowser/pkg-descr --- /usr/ports/www/runsomebrowser/pkg-descr 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/www/webbrowser/pkg-descr 2013-12-08 14:15:02.000000000 -0600 @@ -1,4 +1,6 @@ -Shell script for finding and running an available installed browser -on the system. +Webbrowser is a wrapper script for finding and running the "best" available +installed browser on the system. It is intended for use by other +applications that invoke a browser, so that they need not be reconfigured +when a user switches to a different browser. -WWW: http://personalpages.tds.net/~jwbacon/Ports +WWW: http://personalpages.tds.net/~jwbacon/Ports --------------010306060306050603000301-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 21:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A00D6E2D for ; Sun, 8 Dec 2013 21:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 613851079 for ; Sun, 8 Dec 2013 21:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8LK0kS063332 for ; Sun, 8 Dec 2013 21:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8LK09e063331; Sun, 8 Dec 2013 21:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 21:20:00 GMT Resent-Message-Id: <201312082120.rB8LK09e063331@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alphons "Fonz" van Werven Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 816E5E29 for ; Sun, 8 Dec 2013 21:18:45 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E2D61075 for ; Sun, 8 Dec 2013 21:18:45 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8LIi3E011131 for ; Sun, 8 Dec 2013 21:18:44 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8LIimr011118; Sun, 8 Dec 2013 21:18:44 GMT (envelope-from nobody) Message-Id: <201312082118.rB8LIimr011118@oldred.freebsd.org> Date: Sun, 8 Dec 2013 21:18:44 GMT From: Alphons "Fonz" van Werven To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184608: Adoption of orphaned port games/xteddy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 21:20:00 -0000 >Number: 184608 >Category: ports >Synopsis: Adoption of orphaned port games/xteddy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 21:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alphons "Fonz" van Werven >Release: >Organization: >Environment: >Description: I volunteer to take maintainership of the orphaned port games/xteddy. The patch contains the maintainer update and the addition of a mirror to MASTER_SITES. The port appears to be up-to-date and in good shape. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-08 22:06:21.000000000 +0100 +++ Makefile 2013-12-08 22:06:49.000000000 +0100 @@ -4,9 +4,10 @@ PORTNAME= xteddy PORTVERSION= 2.2 CATEGORIES= games -MASTER_SITES= http://webstaff.itn.liu.se/~stegu/xteddy/ +MASTER_SITES= http://webstaff.itn.liu.se/~stegu/xteddy/ \ + http://www.skysmurf.nl/comp/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd@skysmurf.nl COMMENT= Cuddlesome teddy for the X desktop LICENSE= GPLv2 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1392545 for ; Sun, 8 Dec 2013 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B62D1667 for ; Sun, 8 Dec 2013 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8N00Go084010 for ; Sun, 8 Dec 2013 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8N00Uc084007; Sun, 8 Dec 2013 23:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 23:00:00 GMT Resent-Message-Id: <201312082300.rB8N00Uc084007@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Shane Ambler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52E1B47F for ; Sun, 8 Dec 2013 22:55:25 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3E2811648 for ; Sun, 8 Dec 2013 22:55:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8MtOZA032627 for ; Sun, 8 Dec 2013 22:55:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8MtOZP032626; Sun, 8 Dec 2013 22:55:24 GMT (envelope-from nobody) Message-Id: <201312082255.rB8MtOZP032626@oldred.freebsd.org> Date: Sun, 8 Dec 2013 22:55:24 GMT From: Shane Ambler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184609: [maintainer update] for graphics/openimageio X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:00:00 -0000 >Number: 184609 >Category: ports >Synopsis: [maintainer update] for graphics/openimageio >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 23:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Shane Ambler >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD leader.local 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #1 r259039: Sat Dec 7 08:31:58 CST 2013 root@leader.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This patch updates graphics/openimageio to 1.3.9 - the latest stable release. All patches have been incorporated upstream so the files directory can now be deleted. Also includes a small update to graphics/py-openimageio (slave) >How-To-Repeat: >Fix: Note on dependencies - This port is used by graphics/opencolorio-tools - can have a portrevision bump graphics/openshadinglanguage - also submitting an update graphics/blender - uses both oiio and osl - only needs one portrevision bump after both updates. Patch attached with submission follows: diff -Nru openimageio.orig/Makefile openimageio/Makefile --- openimageio.orig/Makefile 2013-12-09 08:35:45.214472612 +1030 +++ openimageio/Makefile 2013-12-06 14:44:24.539968969 +1030 @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= openimageio -PORTVERSION= 1.2.3 -PORTREVISION?= 2 +PORTVERSION= 1.3.9 +PORTREVISION?= 0 CATEGORIES?= graphics multimedia MAINTAINER?= FreeBSD@Shaneware.biz @@ -15,8 +15,7 @@ GH_ACCOUNT= OpenImageIO GH_PROJECT= oiio GH_TAGNAME= Release-${PORTVERSION} -GH_COMMIT= bcdad81 -WRKSRC= ${WRKDIR}/OpenImageIO-oiio-${GH_COMMIT}/src +GH_COMMIT= 1a57f2f # fbm also installs bin/idiff CONFLICTS= fbm-[0-9]* @@ -78,7 +77,7 @@ post-install: .if ${SLAVE_PORT} == no - ${LN} -sf libOpenImageIO.so.1.2 ${STAGEDIR}${PREFIX}/lib/libOpenImageIO.so.1 + ${LN} -sf libOpenImageIO.so.1.3 ${STAGEDIR}${PREFIX}/lib/libOpenImageIO.so.1 .endif .include diff -Nru openimageio.orig/distinfo openimageio/distinfo --- openimageio.orig/distinfo 2013-12-09 08:35:45.214472612 +1030 +++ openimageio/distinfo 2013-12-06 14:44:24.539968969 +1030 @@ -1,2 +1,2 @@ -SHA256 (openimageio-1.2.3.tar.gz) = 9d1dd8b332cc2a191f3d60acc68636a0736d1caa535c326554476bef7a88726d -SIZE (openimageio-1.2.3.tar.gz) = 12380067 +SHA256 (openimageio-1.3.9.tar.gz) = 4f68be9bcb50ebb1e645f8f9204247c90d443e050c26dda2cb7ebdead08cde88 +SIZE (openimageio-1.3.9.tar.gz) = 14832206 diff -Nru openimageio.orig/files/patch-include_sysutil.h openimageio/files/patch-include_sysutil.h --- openimageio.orig/files/patch-include_sysutil.h 2013-12-09 08:35:45.214472612 +1030 +++ openimageio/files/patch-include_sysutil.h 1970-01-01 09:30:00.000000000 +0930 @@ -1,10 +0,0 @@ ---- include/sysutil.h.orig 2013-09-24 15:26:10.604215091 +0930 -+++ include/sysutil.h 2013-09-24 15:26:16.727214989 +0930 -@@ -41,6 +41,7 @@ - #define OPENIMAGEIO_SYSUTIL_H - - #include -+#include - - #ifdef __MINGW32__ - #include // for alloca diff -Nru openimageio.orig/files/patch-ptex.imageio_ptex_PtexWriter.cpp openimageio/files/patch-ptex.imageio_ptex_PtexWriter.cpp --- openimageio.orig/files/patch-ptex.imageio_ptex_PtexWriter.cpp 2013-12-09 08:35:45.214472612 +1030 +++ openimageio/files/patch-ptex.imageio_ptex_PtexWriter.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,10 +0,0 @@ ---- ./ptex.imageio/ptex/PtexWriter.cpp.orig 2013-06-04 19:49:43.476382085 +0930 -+++ ./ptex.imageio/ptex/PtexWriter.cpp 2013-06-04 19:49:48.134381870 +0930 -@@ -66,6 +66,7 @@ - #include - #include - #include -+#include - - #include "filesystem.h" - diff -Nru openimageio.orig/pkg-plist openimageio/pkg-plist --- openimageio.orig/pkg-plist 2013-12-09 08:35:45.214472612 +1030 +++ openimageio/pkg-plist 2013-12-06 14:44:24.540969176 +1030 @@ -39,8 +39,8 @@ include/OpenImageIO/version.h lib/libOpenImageIO.so lib/libOpenImageIO.so.1 -lib/libOpenImageIO.so.1.2 -lib/libOpenImageIO.so.1.2.3 +lib/libOpenImageIO.so.1.3 +lib/libOpenImageIO.so.1.3.9 %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/openimageio.pdf diff -Nru py-openimageio.orig/Makefile py-openimageio/Makefile --- py-openimageio.orig/Makefile 2013-12-09 08:35:56.143307168 +1030 +++ py-openimageio/Makefile 2013-11-30 03:07:15.439490589 +1030 @@ -11,6 +11,6 @@ do-install: @${MKDIR} -p ${STAGEDIR}${PYTHON_SITELIBDIR} - ${INSTALL_LIB} ${BUILD_WRKSRC}/python/OpenImageIO.so ${STAGEDIR}${PYTHON_SITELIBDIR} + ${INSTALL_LIB} ${BUILD_WRKSRC}/src/python/OpenImageIO.so ${STAGEDIR}${PYTHON_SITELIBDIR} .include "${MASTERDIR}/Makefile" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B77E816 for ; Sun, 8 Dec 2013 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 452C0170C for ; Sun, 8 Dec 2013 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8NA12W086173 for ; Sun, 8 Dec 2013 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8NA1bk086170; Sun, 8 Dec 2013 23:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 23:10:01 GMT Resent-Message-Id: <201312082310.rB8NA1bk086170@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Shane Ambler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5DC9589 for ; Sun, 8 Dec 2013 23:03:39 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B4C1C16BB for ; Sun, 8 Dec 2013 23:03:39 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8N3dCH006346 for ; Sun, 8 Dec 2013 23:03:39 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8N3dNA006345; Sun, 8 Dec 2013 23:03:39 GMT (envelope-from nobody) Message-Id: <201312082303.rB8N3dNA006345@oldred.freebsd.org> Date: Sun, 8 Dec 2013 23:03:39 GMT From: Shane Ambler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184611: [maintainer update] for graphics/openshadinglanguage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:10:01 -0000 >Number: 184611 >Category: ports >Synopsis: [maintainer update] for graphics/openshadinglanguage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 23:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Shane Ambler >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD leader.local 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #1 r259039: Sat Dec 7 08:31:58 CST 2013 root@leader.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: update graphics/openshadinglanguage to 1.4.0 This release incorporates most previous patches - only three remain (patch-CMakeLists.txt patch-doc__CMakeLists.txt patch-shaders__CMakeLists.txt) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nru openshadinglanguage.orig/Makefile openshadinglanguage/Makefile --- openshadinglanguage.orig/Makefile 2013-12-09 08:34:10.510822996 +1030 +++ openshadinglanguage/Makefile 2013-11-30 03:07:15.374492541 +1030 @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= openshadinglanguage -PORTVERSION= 1.3.3 -PORTREVISION= 3 +PORTVERSION= 1.4.0 +PORTREVISION= 0 CATEGORIES= graphics devel MAINTAINER= FreeBSD@Shaneware.biz @@ -22,9 +22,7 @@ GH_ACCOUNT= imageworks GH_PROJECT= OpenShadingLanguage GH_TAGNAME= Release-${PORTVERSION} -GH_COMMIT= 18671dc - -WRKSRC= ${WRKDIR}/imageworks-OpenShadingLanguage-${GH_COMMIT}/src +GH_COMMIT= fb85664 CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config33" USE_LDCONFIG= yes @@ -32,10 +30,6 @@ .include -.if ${ARCH} == i386 && ! ${MACHINE_CPU:Mi586} -IGNORE= CPUTYPE must be i586 or higher in /etc/make.conf -.endif - .if ${OSVERSION} < 1000033 BUILD_DEPENDS+= flex>=2.5.37:${PORTSDIR}/textproc/flex CMAKE_ARGS+= -DFLEX_EXECUTABLE:STRING=${LOCALBASE}/bin/flex @@ -44,7 +38,7 @@ post-patch: @${REINPLACE_CMD} -e 's,/bin/bash,/bin/sh,' \ - ${WRKSRC}/liboslexec/serialize-bc.bash + ${WRKSRC}/src/liboslexec/serialize-bc.bash post-install: .for LNAME in oslcomp oslexec oslquery testshade diff -Nru openshadinglanguage.orig/distinfo openshadinglanguage/distinfo --- openshadinglanguage.orig/distinfo 2013-12-09 08:34:10.489554609 +1030 +++ openshadinglanguage/distinfo 2013-11-30 03:07:15.376288190 +1030 @@ -1,2 +1,2 @@ -SHA256 (openshadinglanguage-1.3.3.tar.gz) = 55c62a3eeedbf7dea5a672e0bdd73cc0fbf9c60e89d72d77bff5eb9cccca7578 -SIZE (openshadinglanguage-1.3.3.tar.gz) = 10316937 +SHA256 (openshadinglanguage-1.4.0.tar.gz) = 866bddfcaed7938a5ca61a7477e60ce7ae899b33d207a5faa7fd46cc72055f69 +SIZE (openshadinglanguage-1.4.0.tar.gz) = 11513652 diff -Nru openshadinglanguage.orig/files/patch-CMakeLists.txt openshadinglanguage/files/patch-CMakeLists.txt --- openshadinglanguage.orig/files/patch-CMakeLists.txt 2013-12-09 08:34:10.310225144 +1030 +++ openshadinglanguage/files/patch-CMakeLists.txt 2013-11-30 03:07:15.376490724 +1030 @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2013-07-12 01:01:18.000000000 +0200 -+++ CMakeLists.txt 2013-11-05 21:12:26.000000000 +0100 -@@ -9,10 +9,8 @@ +--- ./CMakeLists.txt.orig 2013-11-26 05:11:29.000000000 +1030 ++++ ./CMakeLists.txt 2013-11-28 23:52:39.202491493 +1030 +@@ -10,10 +10,8 @@ set (OSO_FILE_VERSION_MAJOR 1) set (OSO_FILE_VERSION_MINOR 0) @@ -13,7 +13,7 @@ set (CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE) message (STATUS "Project source dir = ${PROJECT_SOURCE_DIR}") message (STATUS "Project build dir = ${CMAKE_BINARY_DIR}") -@@ -21,6 +19,8 @@ +@@ -22,6 +20,8 @@ message (FATAL_ERROR "Not allowed to run in-source build!") endif () @@ -22,57 +22,46 @@ if (NOT CMAKE_BUILD_TYPE) set (CMAKE_BUILD_TYPE "Release") endif () -@@ -42,12 +42,11 @@ - OUTPUT_STRIP_TRAILING_WHITESPACE) - message (STATUS "Using gcc ${GCC_VERSION} as the compiler") - endif () --if (NOT CMAKE_COMPILER_IS_CLANG) -- string (REGEX MATCH clang CMAKE_COMPILER_IS_CLANG ${CMAKE_CXX_COMPILER}) -- if (CMAKE_COMPILER_IS_CLANG) -- set (CMAKE_COMPILER_IS_CLANG 1) -- message (STATUS "Using clang as the compiler") -- endif () -+ -+message (STATUS "CMAKE_CXX_COMPILER_ID is ${CMAKE_CXX_COMPILER_ID}") -+if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") -+ set (CMAKE_COMPILER_IS_CLANG 1) -+ message (STATUS "Using clang as the compiler") - endif () - - ## turn on more detailed warnings and consider warnings as errors -@@ -121,6 +120,10 @@ +@@ -124,12 +124,11 @@ endif () endif () +-# Try to detect if this is an OSX distro new enough that the system library +-# is libc++, in which case we should force use of Boost Wave (because that +-# avoids a nonstandard g++ extension in the other code path). +-if (EXISTS "/usr/lib/libc++.dylib" OR OSL_USE_LIBCPP) +- set (OSL_SYSTEM_HAS_LIBCPP ON) +-endif () +# Try to detect libc++, in which case we should force use of Boost +# Wave (because that avoids a nonstandard g++ extension in the other +# code path). +check_cxx_symbol_exists(_LIBCPP_VERSION string OSL_SYSTEM_HAS_LIBCPP) ++ set (VERBOSE OFF CACHE BOOL "Print lots of messages while compiling") set (BUILDSTATIC OFF CACHE BOOL "Build static library instead of shared") -@@ -129,12 +132,16 @@ - "Use an externally built shared library version of the pugixml library") - set (PUGIXML_HOME "" CACHE STRING "Hint about where to find external PugiXML library") - if (WIN32) -- set (USE_BOOST_WAVE ON CACHE BOOL "Use Boost Wave as preprocessor") - set (USE_LLVM_BITCODE OFF CACHE BOOL "Generate embedded LLVM bitcode") - else () -- set (USE_BOOST_WAVE OFF CACHE BOOL "Use Boost Wave as preprocessor") - set (USE_LLVM_BITCODE ON CACHE BOOL "Generated embedded LLVM bitcode") +@@ -167,7 +166,6 @@ + + if (CMAKE_COMPILER_IS_CLANG AND OSL_USE_LIBCPP) + message (STATUS "Using libc++") +- add_definitions ("-stdlib=libc++") endif () -+if (WIN32 OR OSL_SYSTEM_HAS_LIBCPP) -+ set (USE_BOOST_WAVE ON CACHE BOOL "Use Boost Wave as preprocessor") -+else () -+ set (USE_BOOST_WAVE OFF CACHE BOOL "Use Boost Wave as preprocessor") -+endif () -+ - set (USE_PARTIO ON CACHE BOOL "Use Partio if found") - if (LLVM_NAMESPACE) -@@ -149,6 +156,13 @@ - add_definitions ("${EXTRA_CPP_DEFINITIONS}") - endif() + set (CMAKE_MODULE_PATH +@@ -202,6 +200,10 @@ + + message (STATUS "CMAKE_INSTALL_RPATH = ${CMAKE_INSTALL_RPATH}") + ++# Try to detect libc++, in which case we should force use of Boost ++# Wave (because that avoids a nonstandard g++ extension in the other ++# code path). ++check_cxx_symbol_exists(_LIBCPP_VERSION string OSL_SYSTEM_HAS_LIBCPP) + + ########################################################################### + if (MSVC) +@@ -232,6 +234,13 @@ + add_subdirectory (src/include) + add_subdirectory (src/doc) +if (USE_BOOST_WAVE) + add_definitions ("-DUSE_BOOST_WAVE") @@ -82,5 +71,5 @@ + message (STATUS "Using libc++") +endif () - set (CMAKE_MODULE_PATH - "${PROJECT_SOURCE_DIR}/cmake/modules" + + ######################################################################### diff -Nru openshadinglanguage.orig/files/patch-doc__CMakeLists.txt openshadinglanguage/files/patch-doc__CMakeLists.txt --- openshadinglanguage.orig/files/patch-doc__CMakeLists.txt 2013-12-09 08:34:10.393309204 +1030 +++ openshadinglanguage/files/patch-doc__CMakeLists.txt 2013-11-30 03:07:15.438491007 +1030 @@ -1,5 +1,5 @@ ---- ./doc/CMakeLists.txt.orig 2013-02-15 11:22:42.000000000 +1030 -+++ ./doc/CMakeLists.txt 2013-02-17 07:11:28.270631151 +1030 +--- ./src/doc/CMakeLists.txt.orig 2013-11-26 05:11:29.000000000 +1030 ++++ ./src/doc/CMakeLists.txt 2013-11-28 23:57:11.961491397 +1030 @@ -1,11 +1,11 @@ set (public_docs osl-languagespec.pdf) # Some day: CLA-INDIVIDUAL CLA-CORPORATE @@ -7,10 +7,10 @@ -install (FILES ${public_docs} DESTINATION doc COMPONENT documentation) +install (FILES ${public_docs} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage COMPONENT documentation) - install ( FILES ${PROJECT_SOURCE_DIR}/../LICENSE - ${PROJECT_SOURCE_DIR}/../INSTALL - ${PROJECT_SOURCE_DIR}/../CHANGES - ${PROJECT_SOURCE_DIR}/../README.md + install ( FILES "${PROJECT_SOURCE_DIR}/LICENSE" + "${PROJECT_SOURCE_DIR}/INSTALL" + "${PROJECT_SOURCE_DIR}/CHANGES" + "${PROJECT_SOURCE_DIR}/README.md" - DESTINATION . ) + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage ) diff -Nru openshadinglanguage.orig/files/patch-liboslcomp__CMakeLists.txt openshadinglanguage/files/patch-liboslcomp__CMakeLists.txt --- openshadinglanguage.orig/files/patch-liboslcomp__CMakeLists.txt 2013-12-09 08:34:10.364596243 +1030 +++ openshadinglanguage/files/patch-liboslcomp__CMakeLists.txt 1970-01-01 09:30:00.000000000 +0930 @@ -1,9 +0,0 @@ ---- ./liboslcomp/CMakeLists.txt.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslcomp/CMakeLists.txt 2013-11-03 18:07:25.644118883 +1030 -@@ -29,6 +29,3 @@ - INSTALL ( TARGETS oslcomp LIBRARY DESTINATION lib ) - endif () - --IF ( USE_BOOST_WAVE ) -- ADD_DEFINITIONS ( -DUSE_BOOST_WAVE ) --ENDIF () diff -Nru openshadinglanguage.orig/files/patch-liboslcomp__oslcomp.cpp openshadinglanguage/files/patch-liboslcomp__oslcomp.cpp --- openshadinglanguage.orig/files/patch-liboslcomp__oslcomp.cpp 2013-12-09 08:34:10.378474958 +1030 +++ openshadinglanguage/files/patch-liboslcomp__oslcomp.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,20 +0,0 @@ ---- ./liboslcomp/oslcomp.cpp.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslcomp/oslcomp.cpp 2013-11-03 18:07:25.646119281 +1030 -@@ -32,7 +32,7 @@ - #include - #include - #include --#ifdef __GNUC__ -+#if defined(__GNUC__) && !defined(_LIBCPP_VERSION) && !defined(USE_BOOST_WAVE) - # include - #endif - #include -@@ -268,7 +268,7 @@ - // std::cout << "cpp command:\n>" << cppcommand << "<\n"; - FILE *cpppipe = popen (cppcommand.c_str(), "r"); - --#ifdef __GNUC__ -+#if defined(__GNUC__) && !defined(_LIBCPP_VERSION) - __gnu_cxx::stdio_filebuf fb (cpppipe, std::ios::in); - #else - std::filebuf fb (cpppipe); diff -Nru openshadinglanguage.orig/files/patch-liboslexec__constfold.cpp openshadinglanguage/files/patch-liboslexec__constfold.cpp --- openshadinglanguage.orig/files/patch-liboslexec__constfold.cpp 2013-12-09 08:34:10.393309204 +1030 +++ openshadinglanguage/files/patch-liboslexec__constfold.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,42 +0,0 @@ ---- ./liboslexec/constfold.cpp.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslexec/constfold.cpp 2013-11-03 18:07:25.648118961 +1030 -@@ -882,19 +882,22 @@ - { - Opcode &op (rop.inst()->ops()[opnum]); - // Symbol &R (*rop.inst()->argsymbol(op.firstarg()+0)); -- Symbol &Str (*rop.inst()->argsymbol(op.firstarg()+1)); -- Symbol &Results (*rop.inst()->argsymbol(op.firstarg()+2)); -- Symbol &Sep (*rop.inst()->argsymbol(op.firstarg()+3)); -- Symbol &Maxsplit (*rop.inst()->argsymbol(op.firstarg()+4)); -- if (Str.is_constant() && Sep.is_constant() && Maxsplit.is_constant()) { -+ Symbol &Str (*rop.opargsym (op, 1)); -+ Symbol &Results (*rop.opargsym (op, 2)); -+ Symbol *Sep (rop.opargsym (op, 3)); -+ Symbol *Maxsplit (rop.opargsym (op, 4)); -+ if (Str.is_constant() && (!Sep || Sep->is_constant()) && -+ (!Maxsplit || Maxsplit->is_constant())) { - // The split string, separator string, and maxsplit are all constants. - // Compute the results with Strutil::split. - int resultslen = Results.typespec().arraylength(); -- int maxsplit = Imath::clamp (*(int *)Maxsplit.data(), 0, resultslen); -+ int maxsplit = Maxsplit ? *(int *)Maxsplit->data() : resultslen; -+ maxsplit = std::min (maxsplit, resultslen); - std::vector splits; -+ ustring sep = Sep ? (*(ustring *)Sep->data()) : ustring(""); - Strutil::split ((*(ustring *)Str.data()).string(), splits, -- (*(ustring *)Sep.data()).string(), maxsplit); -- int n = std::min (maxsplit, (int)splits.size()); -+ sep.string(), maxsplit); -+ int n = std::min (std::max(0,maxsplit), (int)splits.size()); - // Temporarily stash the index of the symbol holding results - int resultsarg = rop.inst()->args()[op.firstarg()+2]; - // Turn the 'split' into a straight assignment of the return value... -@@ -1337,7 +1340,7 @@ - *(const float *)Y.data() == 2.0f) { - // Turn x^2 into x*x, even if x is not constant - static ustring kmul("mul"); -- op.reset (kmul, 2); -+ op.reset (kmul, 3); - rop.inst()->args()[op.firstarg()+2] = rop.inst()->args()[op.firstarg()+1]; - return 1; - } diff -Nru openshadinglanguage.orig/files/patch-liboslexec__dictionary.cpp openshadinglanguage/files/patch-liboslexec__dictionary.cpp --- openshadinglanguage.orig/files/patch-liboslexec__dictionary.cpp 2013-12-09 08:34:10.289627396 +1030 +++ openshadinglanguage/files/patch-liboslexec__dictionary.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,11 +0,0 @@ ---- ./liboslexec/dictionary.cpp.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslexec/dictionary.cpp 2013-11-03 18:07:25.650119434 +1030 -@@ -50,7 +50,7 @@ - namespace pvt { // OSL::pvt - - --#ifndef USE_EXTERNAL_PUGIXML -+#ifdef USING_OIIO_PUGI - namespace pugi = OIIO::pugi; - #endif - diff -Nru openshadinglanguage.orig/files/patch-liboslexec__llvm_gen.cpp openshadinglanguage/files/patch-liboslexec__llvm_gen.cpp --- openshadinglanguage.orig/files/patch-liboslexec__llvm_gen.cpp 2013-12-09 08:34:10.418663810 +1030 +++ openshadinglanguage/files/patch-liboslexec__llvm_gen.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,11 +0,0 @@ ---- ./liboslexec/llvm_gen.cpp.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslexec/llvm_gen.cpp 2013-11-03 18:07:25.652119256 +1030 -@@ -3310,7 +3310,7 @@ - Symbol& Results = *rop.opargsym (op, 2); - DASSERT (R.typespec().is_int() && Str.typespec().is_string() && - Results.typespec().is_array() && -- Results.typespec().simpletype() == TypeDesc::TypeString); -+ Results.typespec().is_string_based()); - - llvm::Value *args[5]; - args[0] = rop.llvm_load_value (Str); diff -Nru openshadinglanguage.orig/files/patch-liboslexec__llvm_instance.cpp openshadinglanguage/files/patch-liboslexec__llvm_instance.cpp --- openshadinglanguage.orig/files/patch-liboslexec__llvm_instance.cpp 2013-12-09 08:34:10.418663810 +1030 +++ openshadinglanguage/files/patch-liboslexec__llvm_instance.cpp 1970-01-01 09:30:00.000000000 +0930 @@ -1,11 +0,0 @@ ---- ./liboslexec/llvm_instance.cpp.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslexec/llvm_instance.cpp 2013-11-03 18:07:25.654119237 +1030 -@@ -809,7 +809,7 @@ - { - // Make a layer function: void layer_func(ShaderGlobals*, GroupData*) - // Note that the GroupData* is passed as a void*. -- std::string unique_layer_name = Strutil::format ("%s_%d", inst()->layername().c_str(), inst()->id()); -+ std::string unique_layer_name = Strutil::format ("%s_%d", inst()->layername(), inst()->id()); - - m_layer_func = llvm::cast(m_llvm_module->getOrInsertFunction(unique_layer_name, - llvm_type_void(), llvm_type_sg_ptr(), diff -Nru openshadinglanguage.orig/files/patch-liboslexec__runtimeoptimize.h openshadinglanguage/files/patch-liboslexec__runtimeoptimize.h --- openshadinglanguage.orig/files/patch-liboslexec__runtimeoptimize.h 2013-12-09 08:34:10.418663810 +1030 +++ openshadinglanguage/files/patch-liboslexec__runtimeoptimize.h 1970-01-01 09:30:00.000000000 +0930 @@ -1,32 +0,0 @@ ---- ./liboslexec/runtimeoptimize.h.orig 2013-07-12 08:31:18.000000000 +0930 -+++ ./liboslexec/runtimeoptimize.h 2013-11-03 18:07:25.656119123 +1030 -@@ -345,7 +345,8 @@ - /// Helper: return the ptr to the symbol that is the argnum-th - /// argument to the given op. - Symbol *opargsym (const Opcode &op, int argnum) { -- return inst()->argsymbol (op.firstarg()+argnum); -+ return (argnum < op.nargs()) ? -+ inst()->argsymbol (op.firstarg()+argnum) : NULL; - } - - /// Create an llvm function for the whole shader group, JIT it, -@@ -826,7 +827,7 @@ - /// - llvm::BasicBlock *llvm_exit_instance_block () { - if (! m_exit_instance_block) { -- std::string name = Strutil::format ("%s_%d_exit_", inst()->layername().c_str(), inst()->id()); -+ std::string name = Strutil::format ("%s_%d_exit_", inst()->layername(), inst()->id()); - m_exit_instance_block = llvm_new_basic_block (name); - } - return m_exit_instance_block; -@@ -887,8 +888,8 @@ - int m_local_unknown_message_sent; ///< Non-const setmessage in this inst - std::vector m_local_messages_sent; ///< Messages set in this inst - std::vector m_bblockids; ///< Basic block IDs for each op -- std::vector m_in_conditional; ///< Whether each op is in a cond -- std::vector m_in_loop; ///< Whether each op is in a loop -+ std::vector m_in_conditional; ///< Whether each op is in a cond -+ std::vector m_in_loop; ///< Whether each op is in a loop - std::vector m_layer_remap; ///< Remapping of layer ordering - std::set m_layers_already_run; ///< List of layers run - int m_num_used_layers; ///< Number of layers actually used diff -Nru openshadinglanguage.orig/files/patch-shaders__CMakeLists.txt openshadinglanguage/files/patch-shaders__CMakeLists.txt --- openshadinglanguage.orig/files/patch-shaders__CMakeLists.txt 2013-12-09 08:34:10.331308171 +1030 +++ openshadinglanguage/files/patch-shaders__CMakeLists.txt 2013-11-30 03:07:15.438491007 +1030 @@ -1,5 +1,5 @@ ---- ./shaders/CMakeLists.txt.orig 2013-02-15 11:22:42.000000000 +1030 -+++ ./shaders/CMakeLists.txt 2013-02-17 07:11:28.389609929 +1030 +--- ./src/shaders/CMakeLists.txt.orig 2013-02-15 11:22:42.000000000 +1030 ++++ ./src/shaders/CMakeLists.txt 2013-02-17 07:11:28.389609929 +1030 @@ -42,5 +42,5 @@ SOURCES ${shader_source} ${shader_headers}) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16F0C813 for ; Sun, 8 Dec 2013 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9CB21709 for ; Sun, 8 Dec 2013 23:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8NA0fn086105 for ; Sun, 8 Dec 2013 23:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8NA0BH086104; Sun, 8 Dec 2013 23:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 23:10:00 GMT Resent-Message-Id: <201312082310.rB8NA0BH086104@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, William Grzybowski Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78B5D541 for ; Sun, 8 Dec 2013 22:59:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 648941662 for ; Sun, 8 Dec 2013 22:59:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8MxtcC083919 for ; Sun, 8 Dec 2013 22:59:55 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8MxtuP083918; Sun, 8 Dec 2013 22:59:55 GMT (envelope-from wg) Message-Id: <201312082259.rB8MxtuP083918@freefall.freebsd.org> Date: Sun, 8 Dec 2013 22:59:55 GMT From: William Grzybowski To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184610: [exp-run] use setuptools for all python packages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: William Grzybowski List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:10:01 -0000 >Number: 184610 >Category: ports >Synopsis: [exp-run] use setuptools for all python packages >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 23:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: William Grzybowski >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 10.0-CURRENT FreeBSD 10.0-CURRENT #1 r251226: Sat Jun 1 21:56:43 UTC 2013 peter@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL amd64 >Description: This patch uses setuptools for all python packages, that way we can get rid of easy_install, unify the process and get rid of a lot of hacky code paths. >How-To-Repeat: >Fix: Please find the patch here: http://people.freebsd.org/~wg/setuptools-default.txt Thank you >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D62C9D80 for ; Sun, 8 Dec 2013 23:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9935F1852 for ; Sun, 8 Dec 2013 23:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8NU0rY091057 for ; Sun, 8 Dec 2013 23:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8NU0Ek091056; Sun, 8 Dec 2013 23:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 8 Dec 2013 23:30:00 GMT Resent-Message-Id: <201312082330.rB8NU0Ek091056@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9588DCB8 for ; Sun, 8 Dec 2013 23:26:18 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81A9A1827 for ; Sun, 8 Dec 2013 23:26:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8NQCqg094016 for ; Sun, 8 Dec 2013 23:26:12 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8NQCIo094015; Sun, 8 Dec 2013 23:26:12 GMT (envelope-from nobody) Message-Id: <201312082326.rB8NQCIo094015@oldred.freebsd.org> Date: Sun, 8 Dec 2013 23:26:12 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184612: graphics/ayam: [PATCH] unbreak on head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:30:00 -0000 >Number: 184612 >Category: ports >Synopsis: graphics/ayam: [PATCH] unbreak on head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 08 23:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: ayam requires gmake, but "make" is hardcoded in the makefile. Replacing "make" with "$(MAKE)" will cause the targets to execute gmake instead of bmake (the use of bmake is why this port is failing on head, F10) >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-08 23:16:00.785942000 +0000 +++ Makefile @@ -42,7 +42,7 @@ post-patch: @${REINPLACE_CMD} -e 's|^MF3DCFLAGS =|MF3DCFLAGS = -fPIC|g' \ ${WRKSRC}/MF3D/Makefile.mf3d @${REINPLACE_CMD} -e \ - 's|%%TCL_INCLUDEDIR%%|${TCL_INCLUDEDIR}|g; \ + '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' \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49305DAF; Sun, 8 Dec 2013 23:30:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0349C1856; Sun, 8 Dec 2013 23:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8NU8gj091192; Sun, 8 Dec 2013 23:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8NU8Zl091191; Sun, 8 Dec 2013 23:30:08 GMT (envelope-from edwin) Date: Sun, 8 Dec 2013 23:30:08 GMT Message-Id: <201312082330.rB8NU8Zl091191@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184612: graphics/ayam: [PATCH] unbreak on head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:30:09 -0000 Synopsis: graphics/ayam: [PATCH] unbreak on head Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Dec 8 23:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184612 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 8 23:44:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E93C1FD2; Sun, 8 Dec 2013 23:44:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA744193A; Sun, 8 Dec 2013 23:44:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8NiBGm094792; Sun, 8 Dec 2013 23:44:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB8NiBCB094791; Sun, 8 Dec 2013 23:44:11 GMT (envelope-from linimon) Date: Sun, 8 Dec 2013 23:44:11 GMT Message-Id: <201312082344.rB8NiBCB094791@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184610: [exp-run] use setuptools for all python packages X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 23:44:12 -0000 Synopsis: [exp-run] use setuptools for all python packages Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Sun Dec 8 23:44:03 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=184610 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFB78CDD for ; Mon, 9 Dec 2013 00:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 808CF1FEB for ; Mon, 9 Dec 2013 00:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90007m097129 for ; Mon, 9 Dec 2013 00:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9000Fw097128; Mon, 9 Dec 2013 00:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 00:00:00 GMT Resent-Message-Id: <201312090000.rB9000Fw097128@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42168C47 for ; Sun, 8 Dec 2013 23:57:58 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D3A41FD6 for ; Sun, 8 Dec 2013 23:57:58 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB8NvwmP038180 for ; Sun, 8 Dec 2013 23:57:58 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB8NvvhQ038171; Sun, 8 Dec 2013 23:57:57 GMT (envelope-from nobody) Message-Id: <201312082357.rB8NvvhQ038171@oldred.freebsd.org> Date: Sun, 8 Dec 2013 23:57:57 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184613: textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:00:00 -0000 >Number: 184613 >Category: ports >Synopsis: textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 00:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: german/ispell and german/ispell-neu do not build on F10 or head (check portsmon). This is because $MAKE defaults to "make" which uses bmake instead of the specified gmake. The attached patch to textproc/ispell will fix both of these broken german versions. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-08 23:46:43.750610000 +0000 +++ Makefile @@ -102,7 +102,8 @@ EXTRACT_ONLY+= ${BRDISTFILE} DENEUDISTFILE= igerman98-20071211.tar.bz2 MASTER_SITES+= http://www.j3e.de/ispell/igerman98/dict/:denu EXTRA_DICT+= ${DENEUDISTFILE}:denu -USE_GMAKE= yes +USES+= gmake +MAKE_ARGS+= MAKE=${GMAKE} .endif .if defined(ISPELL_DEALT) DEALTDISTFILE= hk-deutsch.tar.gz @@ -116,7 +117,7 @@ MASTER_SITES+= http://folk.uio.no/runekl EXTRA_DICT+= ${NODISTFILE}:no EXTRACT_ONLY+= ${NODISTFILE} MASKBITS?= 64 -USE_GMAKE= yes +USES+= gmake .endif .if defined(ISPELL_NL) NLDISTFILE= ispell-nl-1.0.0.tar.gz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5297D12; Mon, 9 Dec 2013 00:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8CB41FEF; Mon, 9 Dec 2013 00:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9008q7097288; Mon, 9 Dec 2013 00:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9008EH097287; Mon, 9 Dec 2013 00:00:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 00:00:08 GMT Message-Id: <201312090000.rB9008EH097287@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184613: textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:00:08 -0000 Synopsis: textproc/ispell: [PATCH] unbreak german ispell and ispell-neu on head Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 00:00:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184613 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:00:56 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 733EFD48; Mon, 9 Dec 2013 00:00:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 470141047; Mon, 9 Dec 2013 00:00:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB900uXD098949; Mon, 9 Dec 2013 00:00:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB900utZ098948; Mon, 9 Dec 2013 00:00:56 GMT (envelope-from linimon) Date: Mon, 9 Dec 2013 00:00:56 GMT Message-Id: <201312090000.rB900utZ098948@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184614: multimedia/vlc failded to buid with notify enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:00:56 -0000 Old Synopsis: Vlc failded to buid with notify enabled New Synopsis: multimedia/vlc failded to buid with notify enabled Responsible-Changed-From-To: freebsd-amd64->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Dec 9 00:00:24 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=184614 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:01:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D91C5D7A; Mon, 9 Dec 2013 00:01:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ACB821049; Mon, 9 Dec 2013 00:01:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9015ev099436; Mon, 9 Dec 2013 00:01:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9015QU099435; Mon, 9 Dec 2013 00:01:05 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 00:01:05 GMT Message-Id: <201312090001.rB9015QU099435@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184614: multimedia/vlc failded to buid with notify enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:01:05 -0000 Synopsis: multimedia/vlc failded to buid with notify enabled Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 00:01:05 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184614 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89724110 for ; Mon, 9 Dec 2013 00:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 643761112 for ; Mon, 9 Dec 2013 00:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90K1Ka009273 for ; Mon, 9 Dec 2013 00:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB90K1vO009272; Mon, 9 Dec 2013 00:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 00:20:01 GMT Resent-Message-Id: <201312090020.rB90K1vO009272@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C7CD79 for ; Mon, 9 Dec 2013 00:10:47 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89092109F for ; Mon, 9 Dec 2013 00:10:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB90Alpc042775 for ; Mon, 9 Dec 2013 00:10:47 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB90Al3V042737; Mon, 9 Dec 2013 00:10:47 GMT (envelope-from nobody) Message-Id: <201312090010.rB90Al3V042737@oldred.freebsd.org> Date: Mon, 9 Dec 2013 00:10:47 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:20:01 -0000 >Number: 184616 >Category: ports >Synopsis: ftp/ftpproxy: [PATCH] unbreak on F10 and head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 00:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: This port does not build on FreeBSD 10 or head because the internal makefile hardcodes "make" when the port specifies gmake is needed. As a result, bmake is used instead which fails on head. Attached patch fixes build by using gmake as intended. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: ftp/ftpproxy/files/patch-Makefile =================================================================== --- ftp/ftpproxy/files/patch-Makefile (revision 0) +++ ftp/ftpproxy/files/patch-Makefile (working copy) @@ -0,0 +1,20 @@ +--- Makefile.orig 2004-07-30 12:49:27.000000000 +0000 ++++ Makefile +@@ -9,7 +9,7 @@ TARGETS = ftp.proxy + + + all: $(TARGETS) +- cd src; make all ++ cd src; $(MAKE) all + + + install: all +@@ -18,7 +18,7 @@ install: all + + + ftp.proxy: +- cd src; make ftp.proxy ++ cd src; $(MAKE) ftp.proxy + + + tar: clean Property changes on: ftp/ftpproxy/files/patch-Makefile ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:20:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0D9717A; Mon, 9 Dec 2013 00:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7707F1114; Mon, 9 Dec 2013 00:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90K9PP010870; Mon, 9 Dec 2013 00:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB90K9uR010835; Mon, 9 Dec 2013 00:20:09 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 00:20:09 GMT Message-Id: <201312090020.rB90K9uR010835@freefall.freebsd.org> To: freebsd@marino.st, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:20:09 -0000 Synopsis: ftp/ftpproxy: [PATCH] unbreak on F10 and head State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Dec 9 00:20:09 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184616 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:28:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D305527B; Mon, 9 Dec 2013 00:28:35 +0000 (UTC) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 9CC8C1180; Mon, 9 Dec 2013 00:28:35 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id B6D0A61FAB; Mon, 9 Dec 2013 09:28:34 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 992234E646; Mon, 9 Dec 2013 09:28:34 +0900 (JST) Received: from localhost (rolling.home.utahime.org [192.168.174.11]) by eastasia.home.utahime.org (Postfix) with ESMTPA id 5C4AE4E642; Mon, 9 Dec 2013 09:28:34 +0900 (JST) Date: Mon, 09 Dec 2013 09:28:25 +0900 (JST) Message-Id: <20131209.092825.117873225.yasu@utahime.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/184594: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) From: Yasuhiro KIMURA In-Reply-To: <201312081510.rB8FA0DH012852@freefall.freebsd.org> References: <20131208150648.976E24E642@eastasia.home.utahime.org> <201312081510.rB8FA0DH012852@freefall.freebsd.org> X-Mailer: Mew version 6.5 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:28:35 -0000 On GitHub this issue is fixed as following: https://github.com/freebsd/pkg/commit/e2350ea560aae668df58e9d0fa3f8a1f31dcbcba From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:30:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6ED6C2BD for ; Mon, 9 Dec 2013 00:30:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49B171188 for ; Mon, 9 Dec 2013 00:30:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90U39Y015000 for ; Mon, 9 Dec 2013 00:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB90U3RA014999; Mon, 9 Dec 2013 00:30:03 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 00:30:03 GMT Resent-Message-Id: <201312090030.rB90U3RA014999@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B9CE1D9 for ; Mon, 9 Dec 2013 00:26:03 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 775D51171 for ; Mon, 9 Dec 2013 00:26:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB90Q3wI040329 for ; Mon, 9 Dec 2013 00:26:03 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB90Q3m4040328; Mon, 9 Dec 2013 00:26:03 GMT (envelope-from nobody) Message-Id: <201312090026.rB90Q3m4040328@oldred.freebsd.org> Date: Mon, 9 Dec 2013 00:26:03 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184617: sysutils/hdup: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:30:03 -0000 >Number: 184617 >Category: ports >Synopsis: sysutils/hdup: [PATCH] unbreak on F10 and head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 00:30:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: The internal makefile has hardcoded "make" when the port specified gmake is needed. As a result, bmake is used instead of gmake on FreeBSD 10 and head (unsuccessfully). The attached patch unbreaks the build on these platforms. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: sysutils/hdup/files/patch-Makefile.in =================================================================== --- sysutils/hdup/files/patch-Makefile.in (revision 0) +++ sysutils/hdup/files/patch-Makefile.in (working copy) @@ -0,0 +1,12 @@ +--- Makefile.in.orig 2005-12-09 19:19:50.000000000 +0000 ++++ Makefile.in +@@ -32,7 +32,7 @@ docclean: + @echo "done" + + uninstall: +- @(cd src ; make uninstall ) ++ @(cd src ; $(MAKE) uninstall ) + + install: +- @(cd src ; make install ) ++ @(cd src ; $(MAKE) install ) Property changes on: sysutils/hdup/files/patch-Makefile.in ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E11A22BB for ; Mon, 9 Dec 2013 00:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD3781186 for ; Mon, 9 Dec 2013 00:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90U2mI014989 for ; Mon, 9 Dec 2013 00:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB90U28g014988; Mon, 9 Dec 2013 00:30:02 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 00:30:02 GMT Message-Id: <201312090030.rB90U28g014988@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:30:02 -0000 The following reply was made to PR ports/184616; it has been noted by GNATS. From: Edwin Groothuis To: philippe@le-berre.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head Date: Mon, 9 Dec 2013 00:20:08 UT Maintainer of ftp/ftpproxy, Please note that PR ports/184616 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184616 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:30:16 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52A6B31A; Mon, 9 Dec 2013 00:30:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 28238118A; Mon, 9 Dec 2013 00:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB90UGfY015080; Mon, 9 Dec 2013 00:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB90UFVl015079; Mon, 9 Dec 2013 00:30:15 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 00:30:15 GMT Message-Id: <201312090030.rB90UFVl015079@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184617: sysutils/hdup: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:30:16 -0000 Synopsis: sysutils/hdup: [PATCH] unbreak on F10 and head Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 00:30:15 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184617 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 00:44:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E2073E7 for ; Mon, 9 Dec 2013 00:44:53 +0000 (UTC) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 193021268 for ; Mon, 9 Dec 2013 00:44:52 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 3C55E125FD2; Mon, 9 Dec 2013 09:36:15 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=airport.fm; h= message-id:date:from:reply-to:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; s=mail; bh=Z2uowgVGEgMhWnjT8vgT1+WFvOg=; b=ASmz1vni6iwSeNj6KQb6 yYNa9/Al1pFOYNItTKQdKPAeGg4k2WcdWucnzc4WUiwDti78BahA3Y3I1jl/PArD DYf/X8xpQwouzIq1KLPh2UFDOVLdKo9S1/M1LWLtS1VSTpX1Vz1txBKrXdDunONn di+RBsdCeTvDitmDdQb/7wE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=airport.fm; h=message-id :date:from:reply-to:mime-version:to:cc:subject:references :in-reply-to:content-type:content-transfer-encoding; q=dns; s= mail; b=jzCeGfmtPwzEim0Ip7Z1K58gSEIeCZQi1uhH13eBulIefdcgEa5c4JBk F4QCfg77GIc2KQZQYpod86UWmIpW4l8E/UO5E79lspcIEyZf5CkqT9eVUnfKEqfe fCzmLrH5sWua3sEJX3+VF8gY5r4TH9V3nIBPyKAQfkrL5ZG53Kc= Received: from [IPv6:2001:470:824b:a011:d185:a854:da30:ba1e] (unknown [IPv6:2001:470:824b:a011:d185:a854:da30:ba1e]) by ae-osaka.co.jp (Postfix) with ESMTPSA id BCA4B125EA9; Mon, 9 Dec 2013 09:36:14 +0900 (JST) Message-ID: <52A5107E.105@airport.fm> Date: Mon, 09 Dec 2013 09:36:14 +0900 From: Takefu User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/184521: [patch] sysutils/mbmon References: <201312070910.rB79A1xh030896@freefall.freebsd.org> In-Reply-To: <201312070910.rB79A1xh030896@freefall.freebsd.org> X-Enigmail-Version: 1.6 OpenPGP: id=9C3E8F56 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Muhammad Moinur Rahman <5u623l20@gmail.com> X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: takefu@airport.fm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 00:44:53 -0000 fix StageDir diff -ruN /usr/ports/sysutils/mbmon/Makefile ./Makefile --- /usr/ports/sysutils/mbmon/Makefile 2013-09-21 08:05:58.000000000 +0900 +++ ./Makefile 2013-12-09 09:31:38.000000000 +0900 @@ -3,7 +3,7 @@ PORTNAME?= mbmon PORTVERSION= 205 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES= sysutils MASTER_SITES= http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/xmbmon/ DISTNAME= xmbmon${PORTVERSION} @@ -33,7 +33,6 @@ USE_RC_SUBR= mbmon .endif -NO_STAGE= yes .include .if ${PORT_OPTIONS:MASUS} @@ -47,12 +46,12 @@ .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${CHMOD} u+s ${PREFIX}/bin/${PORTNAME} - ${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/|} ${PREFIX}/man/man1 -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/|} ${STAGEDIR}${PREFIX}/man/man1 +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .endif .include diff -ruN /usr/ports/sysutils/mbmon/files/patch-pci_pm.c ./files/patch-pci_pm.c --- /usr/ports/sysutils/mbmon/files/patch-pci_pm.c 2012-07-14 23:29:18.000000000 +0900 +++ ./files/patch-pci_pm.c 2013-12-09 09:24:18.000000000 +0900 @@ -9,7 +9,15 @@ break; case NFORCESMB: comt = "NVidia nForce"; -@@ -166,6 +166,7 @@ +@@ -158,6 +158,7 @@ + case ID_I801CA: + case ID_I801DB: + case ID_I801EB: ++ case ID_I801IB: + case ID_I6300ESB: + case ID_IICH6: + ret = ICH801SMB; +@@ -166,6 +167,7 @@ case ID_AMD756: case ID_AMD766: case ID_AMD768: @@ -17,7 +25,7 @@ ret = AMD756SMB; inq_smbba = getSMBBA3; break; -@@ -182,7 +183,7 @@ +@@ -182,7 +184,7 @@ inq_smbba = getSMBBA4; } break; diff -ruN /usr/ports/sysutils/mbmon/files/patch-pci_pm.h ./files/patch-pci_pm.h --- /usr/ports/sysutils/mbmon/files/patch-pci_pm.h 2012-07-14 23:29:18.000000000 +0900 +++ ./files/patch-pci_pm.h 2013-12-09 09:24:18.000000000 +0900 @@ -15,7 +15,13 @@ #define getSMBBA70 0x50 /* NVidia nForce2, bus0 */ #define getSMBBA71 0x54 /* NVidia nForce2, bus1 */ -@@ -68,7 +68,8 @@ +@@ -63,12 +63,14 @@ + #define ID_I801CA 0x24838086 + #define ID_I801DB 0x24C38086 + #define ID_I801EB 0x24D38086 ++#define ID_I801IB 0x29308086 + #define ID_I6300ESB 0x25A48086 + #define ID_IICH6 0x266A8086 #define ID_AMD756 0x740B1022 #define ID_AMD766 0x74131022 #define ID_AMD768 0x74431022 diff -ruN /usr/ports/sysutils/xmbmon/Makefile ./Makefile --- /usr/ports/sysutils/xmbmon/Makefile 2013-09-21 08:05:58.000000000 +0900 +++ ./Makefile 2013-12-09 09:28:07.000000000 +0900 @@ -14,9 +14,8 @@ PLIST_FILES= lib/X11/app-defaults/XMBmon MAN1= xmbmon.1x -NO_STAGE= yes post-install: - ${MKDIR} ${PREFIX}/lib/X11/app-defaults - ${INSTALL_DATA} ${WRKSRC}/xmbmon.resources ${PREFIX}/lib/X11/app-defaults/XMBmon + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/app-defaults + ${INSTALL_DATA} ${WRKSRC}/xmbmon.resources ${STAGEDIR}${PREFIX}/lib/X11/app-defaults/XMBmon .include "${MASTERDIR}/Makefile" > > Hi, > Give me sometimes. I will update it to support STAGE and some other hacks. -- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AE8D5C6 for ; Mon, 9 Dec 2013 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B18A1363 for ; Mon, 9 Dec 2013 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91A0A6024539 for ; Mon, 9 Dec 2013 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91A0QU024537; Mon, 9 Dec 2013 01:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 01:10:00 GMT Resent-Message-Id: <201312090110.rB91A0QU024537@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F2A8598 for ; Mon, 9 Dec 2013 01:03:04 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF5181347 for ; Mon, 9 Dec 2013 01:03:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9133oY074212 for ; Mon, 9 Dec 2013 01:03:03 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9133Cf074209; Mon, 9 Dec 2013 01:03:03 GMT (envelope-from nobody) Message-Id: <201312090103.rB9133Cf074209@oldred.freebsd.org> Date: Mon, 9 Dec 2013 01:03:03 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:10:00 -0000 >Number: 184618 >Category: ports >Synopsis: math/parmgridgen: [PATCH] unbreak F10 and head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 01:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: This port specifies gmake to be used, but the master makefile has "make" hardcoded, which causes bmake to be used instead on F10 and head (unsuccessfully). Adding this one-line diff to the port's makefile will unbreak the port. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-09 00:53:05.761868000 +0000 +++ Makefile @@ -21,6 +21,7 @@ MAKE_JOBS_UNSAFE= yes NO_STAGE= yes post-patch: + @${REINPLACE_CMD} 's|make|$$(MAKE)|g' ${WRKSRC}/Makefile #respect CFLAGS . for f in IMlib Lib Programs @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1FF65F7; Mon, 9 Dec 2013 01:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 784691365; Mon, 9 Dec 2013 01:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91A8X8024668; Mon, 9 Dec 2013 01:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91A8jA024667; Mon, 9 Dec 2013 01:10:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 01:10:08 GMT Message-Id: <201312090110.rB91A8jA024667@freefall.freebsd.org> To: freebsd@marino.st, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:10:08 -0000 Synopsis: math/parmgridgen: [PATCH] unbreak F10 and head State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Dec 9 01:10:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184618 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 898F965F for ; Mon, 9 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6460513C5 for ; Mon, 9 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91K0NC027549 for ; Mon, 9 Dec 2013 01:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91K0sc027548; Mon, 9 Dec 2013 01:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 01:20:00 GMT Resent-Message-Id: <201312090120.rB91K0sc027548@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62DBB647 for ; Mon, 9 Dec 2013 01:15:29 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E96713BA for ; Mon, 9 Dec 2013 01:15:29 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB91FTTM012235 for ; Mon, 9 Dec 2013 01:15:29 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB91FTTG012227; Mon, 9 Dec 2013 01:15:29 GMT (envelope-from nobody) Message-Id: <201312090115.rB91FTTG012227@oldred.freebsd.org> Date: Mon, 9 Dec 2013 01:15:29 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184619: math/sdpara: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:20:00 -0000 >Number: 184619 >Category: ports >Synopsis: math/sdpara: [PATCH] unbreak F10 and head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 01:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: This port specifies the use of gmake, yet the internal makefile has "make" hardcoded which results in the use of bmake of F10 and head instead (unsuccessfully). By updating the Makefile patch as shown in the attachment which lets gmake be used, the port will build on F10 and head. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: math/sdpara/files/patch-Makefile =================================================================== --- math/sdpara/files/patch-Makefile (revision 335916) +++ math/sdpara/files/patch-Makefile (working copy) @@ -1,5 +1,5 @@ ---- Makefile.orig 2009-01-09 11:26:29.000000000 +0900 -+++ Makefile 2009-02-17 14:11:48.000000000 +0900 +--- Makefile.orig 2009-01-09 02:26:29.000000000 +0000 ++++ Makefile @@ -4,20 +4,20 @@ # you edit here along your environment ############################################################ @@ -35,3 +35,16 @@ # F77_FUNC DEF_F77_FUNC = -DF77_FUNC\(name,NAME\)=name\ \#\#\ _ +@@ -82,10 +82,10 @@ cleanall: clean mumps-clean + force: cleanall all + + mumps: +- cd mumps; make ++ cd mumps; $(MAKE) + + mumps-clean: +- cd mumps; make distclean ++ cd mumps; $(MAKE) distclean + + update_make_headers: + g++ -MM *.cpp > make.headers >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B8C2695; Mon, 9 Dec 2013 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5182E13CC; Mon, 9 Dec 2013 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91K8hN027699; Mon, 9 Dec 2013 01:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91K8KH027698; Mon, 9 Dec 2013 01:20:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 01:20:08 GMT Message-Id: <201312090120.rB91K8KH027698@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, maho@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184619: math/sdpara: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:20:08 -0000 Synopsis: math/sdpara: [PATCH] unbreak F10 and head Responsible-Changed-From-To: freebsd-ports-bugs->maho Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 01:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184619 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 774D6662 for ; Mon, 9 Dec 2013 01:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 636AD13C7 for ; Mon, 9 Dec 2013 01:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91K15Z027617 for ; Mon, 9 Dec 2013 01:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91K1cq027616; Mon, 9 Dec 2013 01:20:01 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 01:20:01 GMT Message-Id: <201312090120.rB91K1cq027616@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:20:01 -0000 The following reply was made to PR ports/184618; it has been noted by GNATS. From: Edwin Groothuis To: devel@stasyan.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head Date: Mon, 9 Dec 2013 01:10:07 UT Maintainer of math/parmgridgen, Please note that PR ports/184618 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184618 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1F30660; Mon, 9 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 865AF13C6; Mon, 9 Dec 2013 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91K0OS027555; Mon, 9 Dec 2013 01:20:00 GMT (envelope-from marino@freefall.freebsd.org) Received: (from marino@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91JxOZ027501; Mon, 9 Dec 2013 01:19:59 GMT (envelope-from marino) Date: Mon, 9 Dec 2013 01:19:59 GMT Message-Id: <201312090119.rB91JxOZ027501@freefall.freebsd.org> To: philippe@le-berre.com, marino@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marino@FreeBSD.org From: marino@FreeBSD.org Subject: Re: ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:20:00 -0000 Synopsis: ftp/ftpproxy: [PATCH] unbreak on F10 and head Responsible-Changed-From-To: freebsd-ports-bugs->marino Responsible-Changed-By: marino Responsible-Changed-When: Mon Dec 9 01:19:59 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184616 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 01:20:45 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83475725; Mon, 9 Dec 2013 01:20:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56F841464; Mon, 9 Dec 2013 01:20:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB91KjRe029378; Mon, 9 Dec 2013 01:20:45 GMT (envelope-from marino@freefall.freebsd.org) Received: (from marino@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB91KhnW029377; Mon, 9 Dec 2013 01:20:43 GMT (envelope-from marino) Date: Mon, 9 Dec 2013 01:20:43 GMT Message-Id: <201312090120.rB91KhnW029377@freefall.freebsd.org> To: devel@stasyan.com, marino@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marino@FreeBSD.org From: marino@FreeBSD.org Subject: Re: ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 01:20:45 -0000 Synopsis: math/parmgridgen: [PATCH] unbreak F10 and head Responsible-Changed-From-To: freebsd-ports-bugs->marino Responsible-Changed-By: marino Responsible-Changed-When: Mon Dec 9 01:20:43 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184618 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 02:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9D64EC5 for ; Mon, 9 Dec 2013 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC06216E5 for ; Mon, 9 Dec 2013 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB92A1p4038289 for ; Mon, 9 Dec 2013 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB92A16q038288; Mon, 9 Dec 2013 02:10:01 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 02:10:01 GMT Message-Id: <201312090210.rB92A16q038288@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Bo-Yi Wu Subject: Re: ports/184599: www/codeigniter update to 2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Bo-Yi Wu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 02:10:02 -0000 The following reply was made to PR ports/184599; it has been noted by GNATS. From: Bo-Yi Wu To: bug-followup@freebsd.org Cc: Subject: Re: ports/184599: www/codeigniter update to 2.4 Date: Mon, 9 Dec 2013 10:01:27 +0800 --001a11c1ca60e7c28304ed1060ac Content-Type: text/plain; charset=ISO-8859-1 Please commit it. The correct title is "www/codeigniter update to 2.1.4" -- About me: http://about.me/appleboy On Mon, Dec 9, 2013 at 3:00 AM, Edwin Groothuis wrote: > Maintainer of www/codeigniter, > > Please note that PR ports/184599 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184599 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --001a11c1ca60e7c28304ed1060ac Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Please commit it. The correct title is "www/codeignit= er update to 2.1.4"



On Mon, Dec 9, 2013 at 3:00 AM, Edwin Gr= oothuis <edwin@freebsd.org> wrote:
Maintainer of www/codeigniter,

Please note that PR ports/184599 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/184= 599

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--001a11c1ca60e7c28304ed1060ac-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 02:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D74BEF6; Mon, 9 Dec 2013 02:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 52E251732; Mon, 9 Dec 2013 02:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB92A9QK038367; Mon, 9 Dec 2013 02:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB92A9Ps038366; Mon, 9 Dec 2013 02:10:09 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 02:10:09 GMT Message-Id: <201312090210.rB92A9Ps038366@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184620: Build failure for misc/qt4-qtconfig without PHONON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 02:10:09 -0000 Synopsis: Build failure for misc/qt4-qtconfig without PHONON Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 02:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184620 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 02:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E794EEC2 for ; Mon, 9 Dec 2013 02:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C1D9C16E3 for ; Mon, 9 Dec 2013 02:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB92A0bY038227 for ; Mon, 9 Dec 2013 02:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB92A006038226; Mon, 9 Dec 2013 02:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 02:10:00 GMT Resent-Message-Id: <201312090210.rB92A006038226@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Zheng Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CA90D24 for ; Mon, 9 Dec 2013 02:01:32 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 886A116A9 for ; Mon, 9 Dec 2013 02:01:32 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB921W2j071678 for ; Mon, 9 Dec 2013 02:01:32 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB921WnJ071661; Mon, 9 Dec 2013 02:01:32 GMT (envelope-from nobody) Message-Id: <201312090201.rB921WnJ071661@oldred.freebsd.org> Date: Mon, 9 Dec 2013 02:01:32 GMT From: Kevin Zheng To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184620: Build failure for misc/qt4-qtconfig without PHONON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 02:10:01 -0000 >Number: 184620 >Category: ports >Synopsis: Build failure for misc/qt4-qtconfig without PHONON >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 02:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kevin Zheng >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD sigma.local 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: Without the PHONON option set, misc/qt4-qtconfig fails to build due to a missing linker flag ("-lphonon"). clang++ -Wl,-rpath-link,/wrkdirs/usr/ports/misc/qt4-qtconfig/work/qt-everywhere-opensource-src-4.8.5/lib -pthread -Wl,-rpath,/usr/local/lib/qt4 -Wl,-rpath,/usr/local/lib/qt4 -o ../../bin/qtconfig-qt4 .obj/release-shared/colorbutton.o .obj/release-shared/main.o .obj/release-shared/previewframe.o .obj/release-shared/previewwidget.o .obj/release-shared/mainwindow.o .obj/release-shared/paletteeditoradvanced.o .obj/release-shared/moc_colorbutton.o .obj/release-shared/moc_previewframe.o .obj/release-shared/moc_previewwidget.o .obj/release-shared/moc_mainwindow.o .obj/release-shared/moc_paletteeditoradvanced.o .obj/release-shared/qrc_qtconfig.o -L/wrkdirs/usr/ports/misc/qt4-qtconfig/work/qt-everywhere-opensource-src-4.8.5/lib -L/usr/local/lib/qt4 -L/usr/local/lib -lphonon -L/wrkdirs/usr/ports/misc/qt4-qtconfig/work/qt-everywhere-opensource-src-4.8.5/lib -L/usr/local/lib/qt4 -L/usr/local/lib -lQtDBus -lQtXml -lQtGui -lQtCore -lXrender -lfontconfig -L/usr/local/lib -lfreetype -l Xext -lX11 -lm /usr/bin/ld: cannot find -lphonon clang++: error: linker command failed with exit code 1 (use -v to see invocation) *** [../../bin/qtconfig-qt4] Error code 1 >How-To-Repeat: Build the port without PHONON set. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 03:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0E2BC3F for ; Mon, 9 Dec 2013 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A794B1DFA for ; Mon, 9 Dec 2013 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB93e0Tc057984 for ; Mon, 9 Dec 2013 03:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB93e0SY057983; Mon, 9 Dec 2013 03:40:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 03:40:00 GMT Resent-Message-Id: <201312090340.rB93e0SY057983@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35354AD5 for ; Mon, 9 Dec 2013 03:36:24 +0000 (UTC) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 049CA1DD9 for ; Mon, 9 Dec 2013 03:36:22 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 8C0F65C16; Mon, 9 Dec 2013 11:36:19 +0800 (CST) Message-Id: <20131209033619.8C0F65C16@deep.tw> Date: Mon, 9 Dec 2013 11:36:19 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184621: [MAINTAINER] www/node-devel: update to 0.11.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 03:40:00 -0000 >Number: 184621 >Category: ports >Synopsis: [MAINTAINER] www/node-devel: update to 0.11.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 03:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r253131: Thu Jul 11 16:55:44 CST >Description: - Update to 0.11.9 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-devel-0.11.9.patch begins here --- diff -ruN ../node-devel.orig/Makefile ./Makefile --- ../node-devel.orig/Makefile 2013-12-07 10:47:46.000000000 +0800 +++ ./Makefile 2013-12-09 11:13:13.000000000 +0800 @@ -1,7 +1,7 @@ # $FreeBSD: head/www/node-devel/Makefile 334296 2013-11-19 10:12:06Z sunpoet $ PORTNAME= node -PORTVERSION= 0.11.8 +PORTVERSION= 0.11.9 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= -devel @@ -38,6 +38,7 @@ .endif post-patch: + @${REINPLACE_CMD} -e '1 s|${SETENV} python|&2|' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/deps/v8/tools/gyp/v8.gyp diff -ruN ../node-devel.orig/distinfo ./distinfo --- ../node-devel.orig/distinfo 2013-11-03 17:24:25.000000000 +0800 +++ ./distinfo 2013-12-09 11:14:10.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.11.8.tar.gz) = 87c809dea764d5d66f925626fba403fb2fb0c0ccfad408bf79fdb62dc246d65b -SIZE (node-v0.11.8.tar.gz) = 14937740 +SHA256 (node-v0.11.9.tar.gz) = cfcab9735a7e04a67671a96a8b0b7e71954c60c586ced5e3fe37d5c1a235b444 +SIZE (node-v0.11.9.tar.gz) = 15258471 --- node-devel-0.11.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 03:40:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C747C6D; Mon, 9 Dec 2013 03:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51AEA1DFC; Mon, 9 Dec 2013 03:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB93e8ox058119; Mon, 9 Dec 2013 03:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB93e8pw058118; Mon, 9 Dec 2013 03:40:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 03:40:08 GMT Message-Id: <201312090340.rB93e8pw058118@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184621: [MAINTAINER] www/node-devel: update to 0.11.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 03:40:08 -0000 Synopsis: [MAINTAINER] www/node-devel: update to 0.11.9 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 03:40:08 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184621 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 04:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D6C7BE4 for ; Mon, 9 Dec 2013 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D3B7C1105 for ; Mon, 9 Dec 2013 04:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB94U05D068872 for ; Mon, 9 Dec 2013 04:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB94U06f068871; Mon, 9 Dec 2013 04:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 04:30:00 GMT Resent-Message-Id: <201312090430.rB94U06f068871@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Shane Ambler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4C22731 for ; Mon, 9 Dec 2013 04:24:33 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B0C5F10AF for ; Mon, 9 Dec 2013 04:24:33 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB94OX6P018613 for ; Mon, 9 Dec 2013 04:24:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB94OXSG018603; Mon, 9 Dec 2013 04:24:33 GMT (envelope-from nobody) Message-Id: <201312090424.rB94OXSG018603@oldred.freebsd.org> Date: Mon, 9 Dec 2013 04:24:33 GMT From: Shane Ambler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184622: [maintainer update] for audio/hydrogen X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 04:30:01 -0000 >Number: 184622 >Category: ports >Synopsis: [maintainer update] for audio/hydrogen >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 04:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Shane Ambler >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD leader.local 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #1 r259039: Sat Dec 7 08:31:58 CST 2013 root@leader.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: update audio/hydrogen simply remove NO_STAGE as it has no issues with staging. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Nru hydrogen.orig/Makefile hydrogen/Makefile --- hydrogen.orig/Makefile 2013-12-09 14:46:24.284310784 +1030 +++ hydrogen/Makefile 2013-12-09 14:45:49.734307123 +1030 @@ -17,7 +17,6 @@ MAJORVERSION= 0.9.5 USE_QT4= corelib gui linguist_build moc_build network qt3support rcc_build sql uic_build xml -NO_STAGE= yes USE_SCONS= yes USES= pkgconfig >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 07:36:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F0FFD1B; Mon, 9 Dec 2013 07:36:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D46D91D14; Mon, 9 Dec 2013 07:36:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB97aNsa020678; Mon, 9 Dec 2013 07:36:23 GMT (envelope-from martymac@freefall.freebsd.org) Received: (from martymac@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB97aNwn020677; Mon, 9 Dec 2013 07:36:23 GMT (envelope-from martymac) Date: Mon, 9 Dec 2013 07:36:23 GMT Message-Id: <201312090736.rB97aNwn020677@freefall.freebsd.org> To: martymac@FreeBSD.org, martymac@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: martymac@FreeBSD.org Subject: Re: ports/184540: emulators/dolphin-emu: New options framework + DEBUG option set = wrong INSTALL_TARGET X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 07:36:24 -0000 Synopsis: emulators/dolphin-emu: New options framework + DEBUG option set = wrong INSTALL_TARGET Responsible-Changed-From-To: martymac->freebsd-ports-bugs Responsible-Changed-By: martymac Responsible-Changed-When: Mon Dec 9 07:32:11 UTC 2013 Responsible-Changed-Why: Release PR as it is not related to dolphin-emu itself. I think we have a bug somewhere in options handling that prevents INSTALL_TARGET from being defined to the correct by Uses/cmake.mk. http://www.freebsd.org/cgi/query-pr.cgi?pr=184540 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 08:18:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A32542F; Mon, 9 Dec 2013 08:18:08 +0000 (UTC) Received: from cpanel09.rubas.ch (cpanel09.rubas.ch [195.182.222.79]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 000AC1FBD; Mon, 9 Dec 2013 08:18:07 +0000 (UTC) Received: from 98-41.199-178.cust.bluewin.ch ([178.199.41.98]:53601 helo=gahrfit.gahr.ch) by cpanel09.rubas.ch with esmtpsa (UNKNOWN:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Vpw2W-0003Ia-BV; Mon, 09 Dec 2013 09:18:04 +0100 Date: Mon, 9 Dec 2013 09:18:01 +0100 From: Pietro Cerutti To: edwin@FreeBSD.org Subject: Re: ports/184565: cad/meshlab : fix build with gcc47, unbreak Message-ID: <20131209081801.GF23163@gahrfit.gahr.ch> References: <201312071650.rB7Go84E028515@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="E7i4zwmWs5DOuDSH" Content-Disposition: inline In-Reply-To: <201312071650.rB7Go84E028515@freefall.freebsd.org> X-PGP-Key: fp="DA6D E106 A5B8 54B8 5DD8 6D49 ADD0 D38E A192 089E"; id="0xA192089E"; get=; get=; User-Agent: Mutt/1.5.22 (2013-10-16) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel09.rubas.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Get-Message-Sender-Via: cpanel09.rubas.ch: authenticated_id: gahr@gahr.ch Cc: freebsd-ports-bugs@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: gahr@FreeBSD.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 08:18:08 -0000 --E7i4zwmWs5DOuDSH Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If this builds fine on all supported releases, please go ahead. Thanks! --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --E7i4zwmWs5DOuDSH Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQJ8BAEBCgBmBQJSpXy0XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQTZERTEwNkE1Qjg1NEI4NUREODZENDlB REQwRDM4RUExOTIwODlFAAoJEK3Q046hkgie1a8P/3eT57Dt1AZF9ni/2Pl3YjzU MaMrKgEm/H9Pl8s/1RihESXRpNje/g/aRR4yFA+IPf0CCKRlh18yg9ZXIZgByCZX 9+okKXiK0uCdEiKgGKmbY+/ie8grNpFwu8BEbAZBQJ5T72QbelL5Mv1bjqch2gVd yASgmBIIvlTUARZvWrYQywXumP7HY9HZUJQhh3uFE0cHRVhpSp5n2kjRKuSJKIAO oDl4HPJhMufhVjveO4HQyVDWL/Es/sWmLNGol0A2wbQEJ9lvzfTe+t0bHl9CQL52 kEnoj6rAooJtScY3iCe8RGyhMYJZDgILtJcAdfjK7QbS6pNmzxc+79ge+s31bU04 tebzc6TTO6cVRJZ7k14WPJxC6YGK937zQWqI1H9/5Mh7NUC3K8avZScRzm1gCEgb at00f4EVcSfxCuClETRFFymiMQbcAFzDNmC8RoJ4EbgprXAU5qrI0Iq7Xz+zKOZr BqsOPWXAcwpQjoayzIHXIlCXdjXU8LUoeJXECOcwwyi+0Opu5yn1Yk9mbJtxw3c/ KevrSRJ+rFNOcrMWBLzVE5gBvL8U6lwpYOjLtAdxp9lhNhHLnrdpJvIqf39Aht4h ECi7cUALfMwtbdJc/i2eQN8Dm9wvdCf00Qf50i61opOXj1CWKgtvmAKWg0BD33xy Gg39EyJ8jW/vgdopR0aq =EuG+ -----END PGP SIGNATURE----- --E7i4zwmWs5DOuDSH-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 08:32:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA8136C3 for ; Mon, 9 Dec 2013 08:32:09 +0000 (UTC) Received: from cpanel09.rubas.ch (cpanel09.rubas.ch [195.182.222.79]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5FB721109 for ; Mon, 9 Dec 2013 08:32:09 +0000 (UTC) Received: from 98-41.199-178.cust.bluewin.ch ([178.199.41.98]:53596 helo=gahrfit.gahr.ch) by cpanel09.rubas.ch with esmtpsa (UNKNOWN:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Vpw1N-00035b-Eu for freebsd-ports-bugs@FreeBSD.org; Mon, 09 Dec 2013 09:16:54 +0100 Date: Mon, 9 Dec 2013 09:16:50 +0100 From: Pietro Cerutti To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/184571: math/abacus : fix build with gcc47 Message-ID: <20131209081650.GE23163@gahrfit.gahr.ch> References: <201312071701.rB7H10Y4032698@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="gDGSpKKIBgtShtf+" Content-Disposition: inline In-Reply-To: <201312071701.rB7H10Y4032698@freefall.freebsd.org> X-PGP-Key: fp="DA6D E106 A5B8 54B8 5DD8 6D49 ADD0 D38E A192 089E"; id="0xA192089E"; get=; get=; User-Agent: Mutt/1.5.22 (2013-10-16) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel09.rubas.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Get-Message-Sender-Via: cpanel09.rubas.ch: authenticated_id: gahr@gahr.ch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: gahr@FreeBSD.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 08:32:09 -0000 --gDGSpKKIBgtShtf+ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Approved, thanks! --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --gDGSpKKIBgtShtf+ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQJ8BAEBCgBmBQJSpXxtXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQTZERTEwNkE1Qjg1NEI4NUREODZENDlB REQwRDM4RUExOTIwODlFAAoJEK3Q046hkgiejx8P/itlueQuZgA7R2t52m/kfI8y NXDqSlwdx0PXKbGoO3f2UOSUQ0/tjotv/iXjDMuFiQb8CCAIr/AkbHOF1wA4LhUC E9/BVKhieFEWtl4+8AJZCbm6nKhKi7iGn5gQ3EBoRFlqO+JrVvuDngsGt0eNJnbs lcKqzS3xwh5VifEb279aDfAU3dacXVr8bud8O0xfqXI2IEHkYCvQC2HcK3kAY2Vl 2FrFmMm8Ju4oAUQTVKftknDbzLkugWikxMkyhJp4m7lRnDVNzVS4aIOZQqxQwBJP V2qGM2qOYAVRFzYYUK2qkH6AFTvZ3IWkp8VnP2Av2aqdjNzdtwWv2AaqeAyirKpZ fMpWFtOtQUMMNew3eYBDYBBcQLy8x9FBUaJ9CKjr3dRK/omcTfN0OPr7dh5UJZtU MmtifvC2lf3/WfkeKxg1mBk+HFO4bQWxnQwrhVHuUYDfDkWPbdEXvoUx6V1qAByQ Ppr7Gh19YnnhSrfG3AW9rb8b78spDRHv9bInYZAM7vnp4tOaWX/03owpL/gdwGYy MBo63aislZexqukCz2s4z0AVXWpeD2dZ/1QmItPyovtowiRgOafF9BhrqU19E3Tt tEPuLMAmipRzydmbrkVnQvHdvhWTCDgPYN9Ww4zELm/+rCV/QbqERWx3BEvvcS+m 5zoeCWZHBIVQTJpcDmqG =71MH -----END PGP SIGNATURE----- --gDGSpKKIBgtShtf+-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:12:58 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82108AE; Mon, 9 Dec 2013 10:12:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56A6F192C; Mon, 9 Dec 2013 10:12:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9ACwYu059080; Mon, 9 Dec 2013 10:12:58 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9ACwW7059079; Mon, 9 Dec 2013 10:12:58 GMT (envelope-from jadawin) Date: Mon, 9 Dec 2013 10:12:58 GMT Message-Id: <201312091012.rB9ACwW7059079@freefall.freebsd.org> To: freebsd@skysmurf.nl, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184608: Adoption of orphaned port games/xteddy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:12:58 -0000 Synopsis: Adoption of orphaned port games/xteddy State-Changed-From-To: open->closed State-Changed-By: jadawin State-Changed-When: Mon Dec 9 10:12:57 UTC 2013 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184608 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DA222CF for ; Mon, 9 Dec 2013 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 27AC7197A for ; Mon, 9 Dec 2013 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9AK0R8060247 for ; Mon, 9 Dec 2013 10:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9AK0hO060246; Mon, 9 Dec 2013 10:20:00 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 10:20:00 GMT Message-Id: <201312091020.rB9AK0hO060246@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184608: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:20:01 -0000 The following reply was made to PR ports/184608; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184608: commit references a PR Date: Mon, 9 Dec 2013 10:12:46 +0000 (UTC) Author: jadawin Date: Mon Dec 9 10:12:39 2013 New Revision: 335959 URL: http://svnweb.freebsd.org/changeset/ports/335959 Log: - Maintainership to submitter - Update master_sites PR: ports/184608 Submitted by: Alphons "Fonz" van Werven Modified: head/games/xteddy/Makefile Modified: head/games/xteddy/Makefile ============================================================================== --- head/games/xteddy/Makefile Mon Dec 9 10:03:02 2013 (r335958) +++ head/games/xteddy/Makefile Mon Dec 9 10:12:39 2013 (r335959) @@ -4,9 +4,10 @@ PORTNAME= xteddy PORTVERSION= 2.2 CATEGORIES= games -MASTER_SITES= http://webstaff.itn.liu.se/~stegu/xteddy/ +MASTER_SITES= http://webstaff.itn.liu.se/~stegu/xteddy/ \ + http://www.skysmurf.nl/comp/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd@skysmurf.nl COMMENT= Cuddlesome teddy for the X desktop LICENSE= GPLv2 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:22:38 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BCC344A for ; Mon, 9 Dec 2013 10:22:38 +0000 (UTC) Received: from mx1.schibsted-it.no (mx1.schibsted-it.no [80.91.34.51]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A02AE1A08 for ; Mon, 9 Dec 2013 10:22:37 +0000 (UTC) Received: from sch-cas-ht-04.schibsted.no (unknown [192.168.110.146]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.schibsted-it.no (Postfix) with ESMTPS id B6668D992 for ; Mon, 9 Dec 2013 11:22:35 +0100 (CET) Received: from sch-ems-02.schibsted.no ([fe80::748e:d232:393c:bf4c]) by sch-cas-ht-04.schibsted.no ([::1]) with mapi id 14.03.0158.001; Mon, 9 Dec 2013 11:22:35 +0100 From: "Ro, Arnstein" To: "freebsd-ports-bugs@freebsd.org" Subject: unsubscribe: arnstein.ro@medianorge.no, arnstein.ro@schibsted-it.no, arnstein.ro@aftenposten.no. ro@ap.no Thread-Topic: unsubscribe: arnstein.ro@medianorge.no, arnstein.ro@schibsted-it.no, arnstein.ro@aftenposten.no. ro@ap.no Thread-Index: Ac70yJOd9Xt5rnioSzWwdSdzA1dfuQ== Date: Mon, 9 Dec 2013 10:22:35 +0000 Message-ID: <37D4F3562407F24DAFAA393DA49E67FE76990B84@sch-ems-02.schibsted.no> Accept-Language: nb-NO, en-US Content-Language: nb-NO X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [10.4.0.111] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:22:38 -0000 Med vennlig hilsen Arnstein Ro IT-konsulent Mob +4791635245 [http://pct.aftenposten.no/gfx/SchibstedIT.png] Schibsted IT AS Biskop Gunnerus gate 14 A PO Box 1 NO-0051 Oslo, Norway www.schibsted.no From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:43:52 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 813B890B; Mon, 9 Dec 2013 10:43:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53BA11B7D; Mon, 9 Dec 2013 10:43:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Ahqi8065788; Mon, 9 Dec 2013 10:43:52 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Ahq6G065787; Mon, 9 Dec 2013 10:43:52 GMT (envelope-from sunpoet) Date: Mon, 9 Dec 2013 10:43:52 GMT Message-Id: <201312091043.rB9Ahq6G065787@freefall.freebsd.org> To: appleboy.tw@gmail.com, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/184599: www/codeigniter update to 2.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:43:52 -0000 Synopsis: www/codeigniter update to 2.4 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Dec 9 10:43:51 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184599 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0461D99B for ; Mon, 9 Dec 2013 10:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D20581CB4 for ; Mon, 9 Dec 2013 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Ao0UL065998 for ; Mon, 9 Dec 2013 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Ao0EE065990; Mon, 9 Dec 2013 10:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 10:50:00 GMT Resent-Message-Id: <201312091050.rB9Ao0EE065990@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Julien Cigar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73AC4983 for ; Mon, 9 Dec 2013 10:47:49 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 457F71CA4 for ; Mon, 9 Dec 2013 10:47:49 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9AlmSb009549 for ; Mon, 9 Dec 2013 10:47:48 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9AlmeD009541; Mon, 9 Dec 2013 10:47:48 GMT (envelope-from nobody) Message-Id: <201312091047.rB9AlmeD009541@oldred.freebsd.org> Date: Mon, 9 Dec 2013 10:47:48 GMT From: Julien Cigar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184627: graphics/mapserver: libmapserver.so.1 => not found (0) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:50:01 -0000 >Number: 184627 >Category: ports >Synopsis: graphics/mapserver: libmapserver.so.1 => not found (0) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 10:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Julien Cigar >Release: 9.2-RELEASE >Organization: Belgian Biodiversity Platform >Environment: FreeBSD mordor.lan 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255980: Wed Oct 2 18:37:18 CEST 2013 root@mordor.lan:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: All binaries are missing shared object: libmapserver.so.1 This is with: mage@mordor:/home/mage % pkg info mapserver-6.4.0 mapserver-6.4.0 Name : mapserver Version : 6.4.0 Origin : graphics/mapserver Architecture : freebsd:9:x86:64 Prefix : /usr/local Categories : www graphics geography Maintainer : wen@FreeBSD.org WWW : http://mapserver.org/ Comment : System for developing web-based GIS applications Options : CAIRO : on CAIRO_SVG : off CURL : on DEBUG : off FASTCGI : on FRIBIDI : on GDAL : on GEOS : on KML : on MAPSERV : on PERL : off PHP : off POSTGIS : on PYTHON : off WCS : on WFS : on WMS : on Shared Libs required: libxml2.so.5 libproj.so.7 libpq.so.5 libpng15.so.15 libmapserver.so.1 libjpeg.so.11 libiconv.so.3 libgif.so.5 libgeos_c.so.9 libgdal.so.18 libgd.so.5 libfribidi.so.3 libfreetype.so.9 libfcgi.so.0 libcurl.so.7 libcairo.so.2 Shared Libs provided: libmapserver.so.6.4.0 Flat size : 1.86MiB Description : MapServer is a system for developing web-based GIS applications. The basic system consists of a CGI program that can be configured to respond to a variety of spatial requests like making maps, scalebars, and point, area and feature queries. Virtually all aspects of an application, from web interface to map appearance can be developed without any programming. For the more ambitious user, MapServer applications can be enhanced using Java, JavaScript or many other web technologies. WWW: http://mapserver.org/ mage@mordor:/home/mage % ldd /usr/local/www/apache22/cgi-bin/mapserv|grep -i 'not found' libmapserver.so.1 => not found (0) mage@mordor:/home/mage % ldd /usr/local/bin/shp2img|grep -i 'not found' libmapserver.so.1 => not found (0) etc >How-To-Repeat: install graphics/mapserver >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 10:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 973279CC; Mon, 9 Dec 2013 10:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D14B1CB8; Mon, 9 Dec 2013 10:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Ao9rl066156; Mon, 9 Dec 2013 10:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Ao9dS066151; Mon, 9 Dec 2013 10:50:09 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 10:50:09 GMT Message-Id: <201312091050.rB9Ao9dS066151@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184627: graphics/mapserver: libmapserver.so.1 => not found (0) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 10:50:09 -0000 Synopsis: graphics/mapserver: libmapserver.so.1 => not found (0) Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 10:50:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184627 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 11:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79565CB2 for ; Mon, 9 Dec 2013 11:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 50C4D1D74 for ; Mon, 9 Dec 2013 11:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9B004V067967 for ; Mon, 9 Dec 2013 11:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9B00HN067966; Mon, 9 Dec 2013 11:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 11:00:00 GMT Resent-Message-Id: <201312091100.rB9B00HN067966@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8D8BB69 for ; Mon, 9 Dec 2013 10:55:18 +0000 (UTC) Received: from bofh.1asiacom.net (bofh.1asiacom.net [103.4.109.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BB7B1D3F for ; Mon, 9 Dec 2013 10:55:17 +0000 (UTC) Received: from bofh.1asiacom.net (localhost [127.0.0.1]) by bofh.1asiacom.net (8.14.7/8.14.7) with ESMTP id rB9AsYpx087832 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 9 Dec 2013 16:54:34 +0600 (BDT) (envelope-from bofh@bofh.1asiacom.net) Received: (from root@localhost) by bofh.1asiacom.net (8.14.7/8.14.7/Submit) id rB9AsXqU087831; Mon, 9 Dec 2013 16:54:33 +0600 (BDT) (envelope-from bofh) Message-Id: <201312091054.rB9AsXqU087831@bofh.1asiacom.net> Date: Mon, 9 Dec 2013 16:54:33 +0600 (BDT) From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184628: [MAINTAINER] sysutils/xmbmon: STAGE/LICENSE/PATCH Cc: mitya@cabletv.dp.ua X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 11:00:01 -0000 >Number: 184628 >Category: ports >Synopsis: [MAINTAINER] sysutils/xmbmon: STAGE/LICENSE/PATCH >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 11:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD bofh.1asiacom.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r257540: Tue Nov 5 18:47:37 >Description: [DESCRIBE CHANGES] - Added STAGE support - Added LICENSE - Merged sysutils/mbmon and this into a single port with the help of OPTIONSNG - Merged PR ports/184521 so it should be closed - sysutils/mbmon should be marked depreciated and deleted as this has been merged For Committer's reference: http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/84i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/84amd64-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/92i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/92amd64-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/10b3i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/10b3amd64-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/11i386-default.log http://pdr.s.ubze.ro/bulk/latest-per-pkg/xmbmon/205_10/11amd64-default.log Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- xmbmon-205_10.patch begins here --- diff -ruN /usr/ports//sysutils/xmbmon/Makefile ./Makefile --- /usr/ports//sysutils/xmbmon/Makefile 2013-09-21 05:05:58.000000000 +0600 +++ ./Makefile 2013-12-09 16:32:51.000000000 +0600 @@ -1,22 +1,70 @@ # Created by: kaz@kobe1995.net (NAKAMURA Kauzushi) -# $FreeBSD: sysutils/xmbmon/Makefile 327772 2013-09-20 23:05:58Z bapt $ +# $FreeBSD: head/sysutils/xmbmon/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= xmbmon -PORTREVISION= 9 - -COMMENT= X motherboard monitor for LM78/79, W8378x, AS99127F, VT82C686, and ADM9240 - -MASTERDIR= ${.CURDIR}/../mbmon - +PORTVERSION= 205 +PORTREVISION= 10 +CATEGORIES= sysutils +MASTER_SITES= http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/${PORTNAME}/ +DISTNAME= ${PORTNAME}${PORTVERSION} + +MAINTAINER= 5u623l20@gmail.com +COMMENT= MB monitor for LM78/79, W8378x, AS99127F, VT82C686 and ADM9240 + +LICENSE= BSD + +PORTSCOUT= limit:^[0-9]+$ +PATCH_SITES+= ${MASTER_SITES} +PATCHFILES+= ${PORTNAME}${PORTVERSION}_fflush.patch + +ONLY_FOR_ARCHS= i386 amd64 +GNU_CONFIGURE= yes + +PORTDOCS= ChangeLog ChangeLog.jp ReadMe ReadMe.jp ReadMe.tech + +OPTIONS_DEFINE= ASUS SMB DOCS +OPTIONS_MULTI= INTERFACE +OPTIONS_MULTI_INTERFACE= CLI X11 +OPTIONS_DEFAULT=SMB CLI +ASUS_DESC= "Enable A7N8X-VM support" +SMB_DESC= "Enable smb(4) support" +CLI_DESC= "CLI support only" + +ASUS_PATCHFILES= ${PORTNAME}${PORTVERSION}_A7N8X-VM.patch +X11_PLIST_FILES= lib/X11/app-defaults/${PORTNAME} \ + man/man1/${PORTNAME}.1x.gz +CLI_PLIST_FILES= bin/mbmon \ + man/man1/mbmon.1.gz + +.include + +.if !${PORT_OPTIONS:MX11} +MAKE_ARGS= PROGRAM="mbmon" +.else USE_XORG= x11 xt -EXTRA_PATCHES= ${.CURDIR}/files/patch-* +.endif -PLIST_FILES= lib/X11/app-defaults/XMBmon -MAN1= xmbmon.1x +.if ${PORT_OPTIONS:MCLI} +USE_RC_SUBR= mbmon +.endif + +post-patch: + @${REINPLACE_CMD} -e 's+/usr/share/doc/mbmon+${STAGEIR}${DOCSDIR}+' ${WRKSRC}/mbmon.1 + @${REINPLACE_CMD} -e 's+%%STAGEDIR%%%%PREFIX%%+${STAGEDIR}${PREFIX}+' ${WRKSRC}/Makefile.in +.if !${PORT_OPTIONS:MX11} + @${REINPLACE_CMD} -e '/p xmbmon/d' ${WRKSRC}/Makefile.in +.endif +.if !${PORT_OPTIONS:MCLI} + @${REINPLACE_CMD} -e '/p mbmon/d' ${WRKSRC}/Makefile.in +.endif +.if ${PORT_OPTIONS:MSMB} + @${REINPLACE_CMD} -e 's/^DEFS=/&-DSMBUS_IOCTL /' ${WRKSRC}/Makefile.in +.endif -NO_STAGE= yes post-install: - ${MKDIR} ${PREFIX}/lib/X11/app-defaults - ${INSTALL_DATA} ${WRKSRC}/xmbmon.resources ${PREFIX}/lib/X11/app-defaults/XMBmon +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} +.endif -.include "${MASTERDIR}/Makefile" +.include diff -ruN /usr/ports//sysutils/xmbmon/distinfo ./distinfo --- /usr/ports//sysutils/xmbmon/distinfo 1970-01-01 06:00:00.000000000 +0600 +++ ./distinfo 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,6 @@ +SHA256 (xmbmon205.tar.gz) = 65b10ebfe53585ac22d6a31d8ef3fea552cb266cf2c124c00421dec1df5a4a4f +SIZE (xmbmon205.tar.gz) = 142987 +SHA256 (xmbmon205_fflush.patch) = f837f465861ce46e4a90d1d3c7a680c1904f7fb91e14efcbad22313c90e2cdc7 +SIZE (xmbmon205_fflush.patch) = 242 +SHA256 (xmbmon205_A7N8X-VM.patch) = 20565e0b1216d3becb87f796fa547e81fec84e37cff05405eb8f71bc97eebc68 +SIZE (xmbmon205_A7N8X-VM.patch) = 274 diff -ruN /usr/ports//sysutils/xmbmon/files/mbmon.in ./files/mbmon.in --- /usr/ports//sysutils/xmbmon/files/mbmon.in 1970-01-01 06:00:00.000000000 +0600 +++ ./files/mbmon.in 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,32 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/mbmon/files/mbmon.in 302141 2012-08-05 23:19:36Z dougb $ +# + +# PROVIDE: mbmon +# REQUIRE: LOGIN +# BEFORE: securelevel +# KEYWORD: shutdown + +# Add the following lines to /etc/rc.conf to enable the mbmon daemon: +# +# mbmon_enable="YES" +# mbmon_flags="" +# +# See mbmon(1) for mbmon_flags +# Set mbmon_port to the TCP port to listen to, default is 12999 + +. /etc/rc.subr + +name="mbmon" +rcvar=mbmon_enable + +# read configuration and set defaults +load_rc_config "$name" +: ${mbmon_enable="NO"} +: ${mbmon_port="12999"} + +command="%%PREFIX%%/bin/${name}" +command_args="-P ${mbmon_port}" + +run_rc_command "$1" diff -ruN /usr/ports//sysutils/xmbmon/files/patch-Makefile.in ./files/patch-Makefile.in --- /usr/ports//sysutils/xmbmon/files/patch-Makefile.in 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-Makefile.in 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,48 @@ +--- Makefile.in.orig Wed Feb 1 20:12:01 2006 ++++ Makefile.in Wed Feb 1 20:12:22 2006 +@@ -27,9 +27,9 @@ + + #CC=/compat/linux/usr/bin/gcc + CC=@CC@ +-CFLAGS=-O3 $(INCLUDES) $(DEFS) ++CFLAGS+=$(INCLUDES) $(DEFS) + CFLAGSX=$(CFLAGS) @X_CFLAGS@ +-LDFLAGS=-s ++LDFLAGS= + + LINT=lint + # LINT=$(CC) -c -Wall -Wshadow -Wpointer-arith +@@ -37,9 +37,9 @@ + RM=rm -f + INSTALL=install + +-INST_DIR=/usr/local/bin +-INST_MANDIR=/usr/local/man/man1 +-INST_XDIR=/usr/X11R6/bin ++INST_DIR=%%STAGEDIR%%%%PREFIX%%/bin ++INST_MANDIR=%%STAGEDIR%%%%PREFIX%%/man/man1 ++INST_XDIR=%%STAGEDIR%%%%PREFIX%%/lib/X11/app-defaults + INST_MANXDIR=/usr/X11R6/man/man1 + INST_XRDIR=/usr/X11R6/lib/X11/app-defaults + +@@ -56,7 +56,7 @@ + HWM_OBJ = sens_winbond.o sens_via686.o sens_it87.o sens_gl52.o sens_lm85.o sens_lm80.o sens_lm90.o sens_lm75.o sens_wl784.o smb_extemp.o + OBJS = getMBinfo.o tyan_tiger.o pci_pm.o sensors.o $(MB_OBJ) $(SMB_OBJ) $(HWM_OBJ) + +-all: $(PROGRAM) ++all: $(PROGRAM) $(MANPAGE) + + mbmon: mbmon.c mbmon.h methods.h pci_pm.h smbuses.h sensors.h $(OBJS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mbmon.c $(OBJS) $(LIBS) +@@ -135,10 +135,8 @@ + install: $(PROGRAM) + $(INSTALL) -o root -g wheel -m 4555 -c -p mbmon $(INST_DIR) + $(INSTALL) -o root -g wheel -m 4555 -c -p xmbmon $(INST_XDIR) +- +-install-man: $(MANPAGE) + $(INSTALL) -o root -g wheel -m 444 -c -p mbmon.1 $(INST_MANDIR) +- $(INSTALL) -o root -g wheel -m 444 -c -p xmbmon.1x $(INST_MANXDIR) ++ $(INSTALL) -o root -g wheel -m 444 -c -p xmbmon.1x $(INST_MANDIR) + + lint: + $(LINT) $(INCLUDES) $(DEFS) $(FONTDEFINES) $(SRCS) -lm diff -ruN /usr/ports//sysutils/xmbmon/files/patch-configure ./files/patch-configure --- /usr/ports//sysutils/xmbmon/files/patch-configure 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-configure 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,27 @@ +--- configure.orig Wed Feb 1 20:34:58 2006 ++++ configure Wed Feb 1 20:35:38 2006 +@@ -3487,7 +3487,6 @@ + + case "${host}" in + i?86-*-freebsd*) +- CC=cc + ;; + i?86-*-linux-*) + CC=gcc +@@ -3499,7 +3498,6 @@ + ADDLIBS="-li386" + ;; + *) +- CC=gcc + ;; + esac + +@@ -3946,7 +3944,7 @@ + done + + +-for ac_header in machine/smb.h ++for ac_header in dev/smbus/smb.h machine/smb.h + do + as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if eval "test \"\${$as_ac_Header+set}\" = set"; then diff -ruN /usr/ports//sysutils/xmbmon/files/patch-getMB-smb_ioctl.c ./files/patch-getMB-smb_ioctl.c --- /usr/ports//sysutils/xmbmon/files/patch-getMB-smb_ioctl.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-getMB-smb_ioctl.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,24 @@ +$FreeBSD: head/sysutils/mbmon/files/patch-getMB-smb_ioctl.c 300897 2012-07-14 14:29:18Z beat $ + +--- getMB-smb_ioctl.c.orig Sat Jul 5 18:15:24 2003 ++++ getMB-smb_ioctl.c Fri Dec 16 17:56:54 2005 +@@ -5,6 +5,7 @@ + #ifdef HAVE_SMBUS + /* assume SMBus ioctl support, only for FreeBSD */ + ++#include + #include + #include + #include +@@ -13,7 +14,11 @@ + #include + #include + ++#if __FreeBSD_version >= 500000 ++#include ++#else + #include ++#endif + + #include "methods.h" + diff -ruN /usr/ports//sysutils/xmbmon/files/patch-mbmon.c ./files/patch-mbmon.c --- /usr/ports//sysutils/xmbmon/files/patch-mbmon.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-mbmon.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,27 @@ +--- mbmon.c.orig 2004-08-13 16:23:32.000000000 +0900 ++++ mbmon.c 2009-06-10 12:13:47.000000000 +0900 +@@ -315,7 +315,7 @@ + + name = argv[0]; + #if !defined(LINUX) && defined(HAVE_SMBUS) && defined(SMBUS_IOCTL) +- while ((ch = getopt(argc,argv,"VSIAfdDYe:p:s:c:T:F:tunNirh")) != -1) { ++ while ((ch = getopt(argc,argv,"VSIAfdDYe:p:s:c:T:F:tunNirhP:")) != -1) { + #else + while ((ch = getopt(argc,argv,"VSIAfdDYe:p:c:T:F:tunNirhP:")) != -1) { + #endif +@@ -641,6 +641,7 @@ + fprintf(out, "%4d\n%4d\n%4d\n", rot1, rot2, rot3); + } + if (port) { ++ fflush(out); + #ifdef LOGGING + if (nfd) + #endif +@@ -659,6 +660,7 @@ + if (hostname_flag == 1) { + hostname(sh_flag); + } ++ fflush(stdout); + + /* count */ + if (count != 0) { diff -ruN /usr/ports//sysutils/xmbmon/files/patch-pci__pm.c ./files/patch-pci__pm.c --- /usr/ports//sysutils/xmbmon/files/patch-pci__pm.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-pci__pm.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,36 @@ +--- pci_pm.c.orig 2004-08-17 22:38:04.000000000 +0600 ++++ pci_pm.c 2013-12-05 23:58:00.000000000 +0600 +@@ -64,7 +64,7 @@ + comt = "Intel8XX(ICH/ICH2/ICH3/ICH4/ICH5/ICH6)"; + break; + case AMD756SMB: +- comt = "AMD756/766/768"; ++ comt = "AMD756/766/768/8111"; + break; + case NFORCESMB: + comt = "NVidia nForce"; +@@ -158,6 +158,7 @@ + case ID_I801CA: + case ID_I801DB: + case ID_I801EB: ++ case ID_I801IB: + case ID_I6300ESB: + case ID_IICH6: + ret = ICH801SMB; +@@ -166,6 +167,7 @@ + case ID_AMD756: + case ID_AMD766: + case ID_AMD768: ++ case ID_AMD8111_1: + ret = AMD756SMB; + inq_smbba = getSMBBA3; + break; +@@ -182,7 +184,7 @@ + inq_smbba = getSMBBA4; + } + break; +- case ID_AMD8111: ++ case ID_AMD8111_2: + ret = AMD8111SMB; + inq_smbba = getSMBBA6; + break; diff -ruN /usr/ports//sysutils/xmbmon/files/patch-pci__pm.h ./files/patch-pci__pm.h --- /usr/ports//sysutils/xmbmon/files/patch-pci__pm.h 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-pci__pm.h 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,31 @@ +--- pci_pm.h.orig 2004-07-14 21:02:49.000000000 +0600 ++++ pci_pm.h 2013-12-05 23:53:34.000000000 +0600 +@@ -32,10 +32,10 @@ + #define getSMBBA0 0x90 /* PIIX4, VIA596,686 */ + #define getSMBBA1 0xD0 /* VT8233/A/C */ + #define getSMBBA2 0x20 /* Intel801_ICH's */ +-#define getSMBBA3 0x58 /* AMD756,766,768 */ ++#define getSMBBA3 0x58 /* AMD756,766,768,8111 */ + #define getSMBBA4 0x14 /* NVidia nForce */ + #define getSMBBA5 0xE2 /* ALI7101 */ +-#define getSMBBA6 0x10 /* AMD8111 */ ++#define getSMBBA6 0x10 /* AMD8111 SMBus 2.0 */ + #define getSMBBA70 0x50 /* NVidia nForce2, bus0 */ + #define getSMBBA71 0x54 /* NVidia nForce2, bus1 */ + +@@ -63,12 +63,14 @@ + #define ID_I801CA 0x24838086 + #define ID_I801DB 0x24C38086 + #define ID_I801EB 0x24D38086 ++#define ID_I801IB 0x29308086 + #define ID_I6300ESB 0x25A48086 + #define ID_IICH6 0x266A8086 + #define ID_AMD756 0x740B1022 + #define ID_AMD766 0x74131022 + #define ID_AMD768 0x74431022 +-#define ID_AMD8111 0x746A1022 ++#define ID_AMD8111_1 0x746B1022 ++#define ID_AMD8111_2 0x746A1022 + #define ID_NFORCE 0x01B410DE + #define ID_NFORCE2 0x006410DE + #define ID_ALI7101 0x710110B9 diff -ruN /usr/ports//sysutils/xmbmon/files/patch-sens_lm85.c ./files/patch-sens_lm85.c --- /usr/ports//sysutils/xmbmon/files/patch-sens_lm85.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-sens_lm85.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,71 @@ +$FreeBSD: head/sysutils/mbmon/files/patch-sens_lm85.c 300897 2012-07-14 14:29:18Z beat $ + +--- sens_lm85.c Mon Oct 13 10:12:58 2003 ++++ sens_lm85.c Wed Dec 21 15:37:56 2005 +@@ -53,7 +53,6 @@ + #define ADM_24FAN(nr) (0x28 + (nr)) + #define ADM_24FANDIV 0x47 + #define ADM_24MODE 0x16 +-#define ADM_TEMPOFF(nr) (0x70 + (nr)) + #define ADM_EXTRES1 0x76 + #define ADM_EXTRES2 0x77 + #define ADM_FANPPR 0x7B +@@ -213,7 +212,7 @@ + static float lm85_temp( LM_METHODS *method, int no ) + { + int n, ne; +- float ext = 0.0, offset = 0.0; ++ float ext = 0.0; + + if (no < 0 || 2 < no) + return 0xFFFF; +@@ -226,18 +225,20 @@ + } else if (lm85chipid >= ADM1027) { + ne = method->Read(ADM_EXTRES2); + ext = 0.25 * ((ne >> ((no + 1) * 2)) & 0x03); +- n = method->Read(ADM_TEMPOFF(no)); +- if (n > 0x80) +- n -= 0xFF; +- offset = (float) n; ++ /* Unlock temperature registers. */ ++ if (no != 0) method->Read(LM85_TEMP(0)); ++ if (no != 1) method->Read(LM85_TEMP(1)); ++ if (no != 2) method->Read(LM85_TEMP(2)); ++ /* Unlock voltage register. */ ++ method->Read(LM85_VOLT(4)); + } + n = method->Read(LM85_TEMP(no)); + if (n == 0x80) + return 0xFFFF; + else if (n > 0x80) +- return (float) (n - 0xFF) + ext - offset; ++ return (float) (n - 0xFF) + ext; + else +- return (float) n + ext - offset; ++ return (float) n + ext; + } + + +@@ -262,10 +263,20 @@ + return 0xFFFF; + + if (lm85chipid >= ADM1027) { +- if (no == 4) ++ if (no == 4) { + ne = method->Read(ADM_EXTRES2) & 0x03; +- else ++ /* Unlock temperature registers. */ ++ method->Read(LM85_TEMP(0)); ++ method->Read(LM85_TEMP(1)); ++ method->Read(LM85_TEMP(2)); ++ } else { + ne = (method->Read(ADM_EXTRES1) >> (no * 2)) & 0x03; ++ /* Unlock voltage registers. */ ++ if (no != 0) method->Read(LM85_VOLT(0)); ++ if (no != 1) method->Read(LM85_VOLT(1)); ++ if (no != 2) method->Read(LM85_VOLT(2)); ++ if (no != 3) method->Read(LM85_VOLT(3)); ++ } + } + n = method->Read(LM85_VOLT(no)); + if (lm85chipid >= ADM1027) diff -ruN /usr/ports//sysutils/xmbmon/files/patch-sens_winbond.c ./files/patch-sens_winbond.c --- /usr/ports//sysutils/xmbmon/files/patch-sens_winbond.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-sens_winbond.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,11 @@ +--- sens_winbond.c Fri Jul 9 07:34:41 2004 ++++ sens_winbond.c Wed May 3 16:43:40 2006 +@@ -245,6 +244,8 @@ + case 0x20: /* 0x20 (or 0x21) 627HF */ + case 0x90: /* 0x90 (or 0x91?) 627THF */ + case 0x1A: /* 0x1A (??) 627THF-A */ ++ case 0xA0: /* 0xA0 (or 0xA1) */ ++ case 0xC0: /* 0xC0 (or 0xC1) 627DHG */ + wbdchipid = W83627HF; + break; + case 0x30: /* 0x30 (or 0x31) */ diff -ruN /usr/ports//sysutils/xmbmon/files/patch-testsmb.c ./files/patch-testsmb.c --- /usr/ports//sysutils/xmbmon/files/patch-testsmb.c 1970-01-01 06:00:00.000000000 +0600 +++ ./files/patch-testsmb.c 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,44 @@ +$FreeBSD: head/sysutils/mbmon/files/patch-testsmb.c 300897 2012-07-14 14:29:18Z beat $ + +--- testsmb.c Thu Aug 12 07:34:48 2004 ++++ testsmb.c Fri Dec 30 23:11:29 2005 +@@ -105,8 +105,9 @@ + case ID_AMD756: + case ID_AMD766: + case ID_AMD768: ++ case ID_AMD8111_1: + smbus = &smbus_amd; +- fprintf(stderr, "AMD756/766/768 found.\n"); ++ fprintf(stderr, "AMD756/766/768/8111 found.\n"); + break; + case ID_NFORCE: + smbus = &smbus_amd; +@@ -116,9 +117,9 @@ + smbus = &smbus_ali; + fprintf(stderr, "ALi M1535D+ found.\n"); + break; +- case ID_AMD8111: ++ case ID_AMD8111_2: + smbus = &smbus_amd8; +- fprintf(stderr, "AMD8111 found.\n"); ++ fprintf(stderr, "AMD8111 SMBus 2.0 found.\n"); + break; + case ID_NFORCE2: + smbus = &smbus_amd8; +@@ -126,7 +127,7 @@ + break; + default: + fprintf(stderr, "No known SMBus(I2C) chip found.\n"); +- goto exit; ++ continue; + } + + if(OpenIO() == -1) return -1; +@@ -141,7 +142,6 @@ + } + + CloseIO(); +-exit: + ; /* dummy statment for gcc 3.4 or after */ + + } /* endo of Big loop for smb_base candidates */ diff -ruN /usr/ports//sysutils/xmbmon/pkg-descr ./pkg-descr --- /usr/ports//sysutils/xmbmon/pkg-descr 1970-01-01 06:00:00.000000000 +0600 +++ ./pkg-descr 2013-12-09 03:40:47.000000000 +0600 @@ -0,0 +1,13 @@ +This is a X/tty motherboard monitor which supports LM78/79, WINBond +83781D/83782D/83783S, ASUS 991227F, and VIA VT82C686A/B PC-health +chips via 3 methods: ISA-I/O, SMBus, VIA-direct. + +Run "mbmon -h" or "xmbmon -help" to see the usage. + +***CAUTION*** + +These programs access to the SMBus or the ISA-IO port directly under +the superuser privilege, so it may cause a system crash. Please test +"mbmon -d" or "xmbmon -debug" first. + +WWW: http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/download.html --- xmbmon-205_10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 11:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC8F8CEB; Mon, 9 Dec 2013 11:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C1FD31D76; Mon, 9 Dec 2013 11:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9B09FW068104; Mon, 9 Dec 2013 11:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9B09nC068103; Mon, 9 Dec 2013 11:00:09 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 11:00:09 GMT Message-Id: <201312091100.rB9B09nC068103@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184628: [MAINTAINER] sysutils/xmbmon: STAGE/LICENSE/PATCH X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 11:00:10 -0000 Synopsis: [MAINTAINER] sysutils/xmbmon: STAGE/LICENSE/PATCH Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 11:00:09 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184628 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 11:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDA21AE8 for ; Mon, 9 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B6A7B1FEF for ; Mon, 9 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9BA1g1073610 for ; Mon, 9 Dec 2013 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9BA11L073609; Mon, 9 Dec 2013 11:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 11:10:01 GMT Resent-Message-Id: <201312091110.rB9BA11L073609@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Johannes Jost Meixner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D66AF37 for ; Mon, 9 Dec 2013 11:06:05 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5FC7B1E03 for ; Mon, 9 Dec 2013 11:06:04 +0000 (UTC) Received: from mx12.chaot.net (62.65.222.235.cable.starman.ee [62.65.222.235]) by dd16522.kasserver.com (Postfix) with ESMTPSA id 3719545601B for ; Mon, 9 Dec 2013 12:05:57 +0100 (CET) Received: from localhost (1003@localhost [local]); by mx12.chaot.net (OpenSMTPD) with ESMTPA id 323cee12; for ; Mon, 9 Dec 2013 13:05:56 +0200 (EET) Message-Id: <3038950675.enqueue@mx12.chaot.net> Date: Mon, 9 Dec 2013 13:05:56 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184629: [NEW PORT] devel/py-checkmanifest: Check MANIFEST.in in a Python source package for completeness X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 11:10:01 -0000 >Number: 184629 >Category: ports >Synopsis: [NEW PORT] devel/py-checkmanifest: Check MANIFEST.in in a Python source package for completeness >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 11:10:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3: Thu Nov 7 16:08:22 EET >Description: Check MANIFEST.in in a Python source package for completeness. Are you a Python developer? Have you uploaded packages to the Python Package Index? Have you accidentally uploaded broken packages with some files missing? If so, check-manifest is for you. WWW: https://github.com/mgedmin/check-manifest Generated with FreeBSD Port Tools 0.99_8 (mode: new) >How-To-Repeat: >Fix: --- .shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-checkmanifest # py-checkmanifest/distinfo # py-checkmanifest/Makefile # py-checkmanifest/pkg-descr # echo c - py-checkmanifest mkdir -p py-checkmanifest > /dev/null 2>&1 echo x - py-checkmanifest/distinfo sed 's/^X//' >py-checkmanifest/distinfo << '3a0ad28348c9172c0fdd7beb1fc99070' XSHA256 (check-manifest-0.17.tar.gz) = cf50974ff23490d410466ead6d8c3b2526300cce749f695e0394883fc2bdc8c9 XSIZE (check-manifest-0.17.tar.gz) = 16079 3a0ad28348c9172c0fdd7beb1fc99070 echo x - py-checkmanifest/Makefile sed 's/^X//' >py-checkmanifest/Makefile << '0d8d4314607a4ebc2e833f9d17b14023' X# Created by: Johannes Meixner X# $FreeBSD$ X XPORTNAME= checkmanifest XPORTVERSION= 0.17 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XDISTNAME= check-manifest-${PORTVERSION} X XMAINTAINER= xmj@chaot.net XCOMMENT= Check MANIFEST.in in a Python source package for completeness X XLICENSE= MIT X XPORTDOCS= README.rst \ X CHANGES.rst X XUSE_PYTHON= 2.7,3.2-3.3 XUSE_PYDISTUTILS= easy_install XPYDISTUTILS_AUTOPLIST= yes XPYDISTUTILS_PKGNAME= check-manifest X XOPTIONS_DEFINE= DOCS XDOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} X Xpost-install: X ${MKDIR} ${STAGEDIR}${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} X X.include 0d8d4314607a4ebc2e833f9d17b14023 echo x - py-checkmanifest/pkg-descr sed 's/^X//' >py-checkmanifest/pkg-descr << '5791c71bf61b9263d253fbcd1b43b9c1' XCheck MANIFEST.in in a Python source package for completeness. XAre you a Python developer? Have you uploaded packages to the Python Package XIndex? Have you accidentally uploaded broken packages with some files missing? XIf so, check-manifest is for you. X XWWW: https://github.com/mgedmin/check-manifest 5791c71bf61b9263d253fbcd1b43b9c1 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 11:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50B6DAE4 for ; Mon, 9 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3AF291FEC for ; Mon, 9 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9BA0ku073595 for ; Mon, 9 Dec 2013 11:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9BA0Tn073594; Mon, 9 Dec 2013 11:10:00 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 11:10:00 GMT Message-Id: <201312091110.rB9BA0Tn073594@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Muhammad Moinur Rahman <5u623l20@gmail.com> Subject: Re: ports/184521: [patch] sysutils/mbmon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Muhammad Moinur Rahman <5u623l20@gmail.com> List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 11:10:01 -0000 The following reply was made to PR ports/184521; it has been noted by GNATS. From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: "bug-followup@FreeBSD.org" Cc: Subject: Re: ports/184521: [patch] sysutils/mbmon Date: Mon, 9 Dec 2013 17:01:28 +0600 --047d7bb03e78ea6a1f04ed17eab9 Content-Type: text/plain; charset=UTF-8 Hi, A PR ports/184628 has been submitted. Please close this one. On Sat, Dec 7, 2013 at 3:08 PM, Muhammad Moinur Rahman <5u623l20@gmail.com>wrote: > Hi, > Give me sometimes. I will update it to support STAGE and some other hacks. > > > > On Thu, Dec 5, 2013 at 10:40 PM, Edwin Groothuis wrote: > >> Maintainer of sysutils/mbmon, >> >> Please note that PR ports/184521 has just been submitted. >> >> If it contains a patch for an upgrade, an enhancement or a bug fix >> you agree on, reply to this email stating that you approve the patch >> and a committer will take care of it. >> >> The full text of the PR can be found at: >> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184521 >> >> -- >> Edwin Groothuis via the GNATS Auto Assign Tool >> edwin@FreeBSD.org >> > > --047d7bb03e78ea6a1f04ed17eab9 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi,

A PR ports/184628 has been submitted.= Please close this one.


On Sat, Dec 7, 2013 at 3:08 PM, Muhammad Moinur Rahman &l= t;5u623l20@gmail.co= m> wrote:
Hi,
Give me sometimes. I will update it to support STAGE and some other hacks.<= /div>

=


On Thu, Dec 5, 2013 at 10:40 PM, Edwin Groot= huis <edwin@freebsd.org> wrote:
Maintainer of sysutils/mbmon,

Please note that PR ports/184521 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=C2=A0 =C2=A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dpor= ts/184521

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org


--047d7bb03e78ea6a1f04ed17eab9-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 11:10:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06431B41; Mon, 9 Dec 2013 11:10:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF60B1FF1; Mon, 9 Dec 2013 11:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9BAE6n073741; Mon, 9 Dec 2013 11:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9BAEAN073740; Mon, 9 Dec 2013 11:10:14 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 11:10:14 GMT Message-Id: <201312091110.rB9BAEAN073740@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184629: [NEW PORT] devel/py-checkmanifest: Check MANIFEST.in in a Python source package for completeness X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 11:10:15 -0000 Synopsis: [NEW PORT] devel/py-checkmanifest: Check MANIFEST.in in a Python source package for completeness Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 11:10:14 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184629 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 14:02:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08F2978E; Mon, 9 Dec 2013 14:02:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D16C81D30; Mon, 9 Dec 2013 14:02:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9E2Dhc015230; Mon, 9 Dec 2013 14:02:13 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9E2D8Q015229; Mon, 9 Dec 2013 14:02:13 GMT (envelope-from danilo) Date: Mon, 9 Dec 2013 14:02:13 GMT Message-Id: <201312091402.rB9E2D8Q015229@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/184609: [maintainer update] for graphics/openimageio X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 14:02:14 -0000 Synopsis: [maintainer update] for graphics/openimageio Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Mon Dec 9 14:02:13 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184609 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 14:02:23 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B8FA7BE; Mon, 9 Dec 2013 14:02:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E37F21D32; Mon, 9 Dec 2013 14:02:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9E2MGQ015319; Mon, 9 Dec 2013 14:02:22 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9E2MQq015318; Mon, 9 Dec 2013 14:02:22 GMT (envelope-from danilo) Date: Mon, 9 Dec 2013 14:02:22 GMT Message-Id: <201312091402.rB9E2MQq015318@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/184611: [maintainer update] for graphics/openshadinglanguage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 14:02:23 -0000 Synopsis: [maintainer update] for graphics/openshadinglanguage Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Mon Dec 9 14:02:22 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184611 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 14:02:33 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 551357EE; Mon, 9 Dec 2013 14:02:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2981D1D35; Mon, 9 Dec 2013 14:02:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9E2Xm6015407; Mon, 9 Dec 2013 14:02:33 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9E2Wqk015406; Mon, 9 Dec 2013 14:02:32 GMT (envelope-from danilo) Date: Mon, 9 Dec 2013 14:02:32 GMT Message-Id: <201312091402.rB9E2Wqk015406@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/184622: [maintainer update] for audio/hydrogen X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 14:02:33 -0000 Synopsis: [maintainer update] for audio/hydrogen Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Mon Dec 9 14:02:32 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184622 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 15:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2957EF27 for ; Mon, 9 Dec 2013 15:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ECA311105 for ; Mon, 9 Dec 2013 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9F00cN026464 for ; Mon, 9 Dec 2013 15:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9F00rg026463; Mon, 9 Dec 2013 15:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 15:00:00 GMT Resent-Message-Id: <201312091500.rB9F00rg026463@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christian Weisgerber Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D03F4E2D for ; Mon, 9 Dec 2013 14:59:11 +0000 (UTC) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 52DD310F1 for ; Mon, 9 Dec 2013 14:59:10 +0000 (UTC) Received: from mail-in-20-z2.arcor-online.net (mail-in-20-z2.arcor-online.net [151.189.8.85]) by mx.arcor.de (Postfix) with ESMTP id 5E9B3AB2BC for ; Mon, 9 Dec 2013 15:58:53 +0100 (CET) Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by mail-in-20-z2.arcor-online.net (Postfix) with ESMTP id 59BB96FB012 for ; Mon, 9 Dec 2013 15:58:53 +0100 (CET) Received: from lorvorc.mips.inka.de (dslb-092-075-215-225.pools.arcor-ip.net [92.75.215.225]) by mail-in-03.arcor-online.net (Postfix) with ESMTPS id BF7E3D9857 for ; Mon, 9 Dec 2013 15:58:52 +0100 (CET) Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.7/8.14.7) with ESMTP id rB9EwpId066958 for ; Mon, 9 Dec 2013 15:58:51 +0100 (CET) (envelope-from naddy@lorvorc.mips.inka.de) Received: (from naddy@localhost) by lorvorc.mips.inka.de (8.14.7/8.14.7/Submit) id rB9EwpoE066957; Mon, 9 Dec 2013 15:58:51 +0100 (CET) (envelope-from naddy) Message-Id: <201312091458.rB9EwpoE066957@lorvorc.mips.inka.de> Date: Mon, 9 Dec 2013 15:58:51 +0100 (CET) From: Christian Weisgerber To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184632: textproc/sgmlformat: broken regexp -> regex conversion X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Christian Weisgerber List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 15:00:01 -0000 >Number: 184632 >Category: ports >Synopsis: textproc/sgmlformat: broken regexp -> regex conversion >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 15:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: System: FreeBSD lorvorc.mips.inka.de 9.2-STABLE FreeBSD 9.2-STABLE #0 r259069: Sat Dec 7 15:52:28 CET 2013 naddy@lorvorc.mips.inka.de:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I don't know how to test this functionality, but the conversion from UNIX V8 to POSIX in patch-regex.txt cannot possibly be correct. You may want to compare the regex(3) and old regexp(3) man pages. http://svnweb.freebsd.org/base/stable/8/lib/libcompat/regexp/regexp.3?revision=196045&view=markup The most obvious problem is in translate.c, where changes like this - if (!regexec(t->attpair[a].rex, atval)) match = 0; + if (!regexec(&t->attpair[a].rex, atval, 0, NULL, 0)) match = 0; ignore that V8 regexec() and POSIX regexec() have inverted result codes. V8 regexec() returns 0 for failure, POSIX regexec() returns 0 for success. The problems in traninit.c are more subtle: - if (!(T.var_RE_value=regcomp(buf))) { + if (regcomp(&T.var_RE_value, buf, 0) != 0) { What happens in the error case? When POSIX regcomp() returns an error, the value of var_RE_value will be undefined. However, in translate.c, regexec() is blindly called with this value. Also, V8 regcomp() uses extended regular expressions. I have attached a replacement patch that reimplements the conversion from regexp to regex. It uses two simple wrapper functions that map the required V8 regcomp/regexec functionality onto POSIX regcomp/regexec. In particular, this allows us to still use (regex_t *)NULL to indicate an invalid/nonexistent regular expression. Again, I can't actually test this. >How-To-Repeat: >Fix: --- instant/tables.c.orig 1996-09-08 03:55:10.000000000 +0200 +++ instant/tables.c 2013-11-30 23:51:25.000000000 +0100 @@ -84,7 +84,7 @@ #include #include -#include +#include #include "general.h" #include "translate.h" --- instant/traninit.c.orig 1997-07-16 18:44:12.000000000 +0200 +++ instant/traninit.c 2013-11-30 23:51:25.000000000 +0100 @@ -69,7 +69,7 @@ #include #include #include -#include +#include #include "general.h" #include "translate.h" @@ -100,6 +100,23 @@ void AddSDATA(const char *from, const char *to); /* ______________________________________________________________________ */ +/* minimal compatibility wrapper for UNIX V8 regexp, match only + */ + +static regex_t *v8_regcomp(const char *pattern) +{ + regex_t *re; + if ((re = malloc(sizeof(regex_t))) != NULL) { + if (regcomp(re, pattern, REG_EXTENDED|REG_NOSUB)) { + free(re); + return NULL; + } + } + return re; +} +#define regcomp v8_regcomp + +/* ______________________________________________________________________ */ /* Read the translation specs from the input file, storing in memory. * Arguments: * Name of translation spec file. --- instant/translate.c.orig 1996-09-08 03:55:10.000000000 +0200 +++ instant/translate.c 2013-11-30 23:51:25.000000000 +0100 @@ -69,7 +69,7 @@ #include #include #include -#include +#include #include "general.h" #define STORAGE @@ -82,6 +82,18 @@ static void WasProcessed(Element_t *); /* ______________________________________________________________________ */ +/* minimal compatibility wrapper for UNIX V8 regexp, match only + */ + +static int v8_regexec(const regex_t *re, const char *string) +{ + if (re == NULL) + return 0; + return !regexec(re, string, 0, NULL, 0); +} +#define regexec v8_regexec + +/* ______________________________________________________________________ */ /* Translate the subtree starting at 'e'. Output goes to 'fp'. * This is the entry point for translating an instance. * Arguments: --- instant/translate.h.orig 1996-09-08 03:55:10.000000000 +0200 +++ instant/translate.h 2013-11-30 23:51:25.000000000 +0100 @@ -75,7 +75,7 @@ typedef struct { char *name; /* attribute name string */ char *val; /* attribute value string */ - regexp *rex; /* attribute value reg expr (compiled) */ + regex_t *rex; /* attribute value reg expr (compiled) */ } AttPair_t; typedef struct _Trans { @@ -83,19 +83,19 @@ char *gi; /* element name of tag under consideration */ char **gilist; /* list of element names (multiple gi's) */ char *context; /* context in tree - looking depth levels up */ - regexp *context_re; /* tree heirarchy looking depth levels up */ + regex_t *context_re; /* tree heirarchy looking depth levels up */ int depth; /* number of levels to look up the tree */ AttPair_t *attpair; /* attr name-value pairs */ int nattpairs; /* number of name-value pairs */ char *parent; /* GI has this element as parent */ int nth_child; /* GI is Nth child of this of parent element */ char *content; /* element has this string in content */ - regexp *content_re; /* content reg expr (compiled) */ + regex_t *content_re; /* content reg expr (compiled) */ char *pattrset; /* is this attr set (any value) in parent? */ char *var_name; /* variable name */ char *var_value; /* variable value */ char *var_RE_name; /* variable name (for VarREValue) */ - regexp *var_RE_value; /* variable value (compiled, for VarREValue) */ + regex_t *var_RE_value; /* variable value (compiled, for VarREValue) */ Map_t *relations; /* various relations to check */ /* actions */ @@ -150,4 +150,3 @@ void OSFtable(Element_t *, FILE *, char **, int); /* ______________________________________________________________________ */ - --- instant/tranvar.c.orig 1997-02-07 03:40:45.000000000 +0100 +++ instant/tranvar.c 2013-11-30 23:51:25.000000000 +0100 @@ -66,7 +66,7 @@ #include #include -#include +#include #include "general.h" #include "translate.h" --- instant/util.c.orig 1996-09-08 03:55:10.000000000 +0200 +++ instant/util.c 2013-11-30 23:51:25.000000000 +0100 @@ -85,7 +85,7 @@ #include #include #include -#include +#include /* CSS don't have it and I don't see where it's used #include */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 15:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C675FF6B; Mon, 9 Dec 2013 15:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C488114E; Mon, 9 Dec 2013 15:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9F09N5026609; Mon, 9 Dec 2013 15:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9F09Y3026608; Mon, 9 Dec 2013 15:00:09 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 15:00:09 GMT Message-Id: <201312091500.rB9F09Y3026608@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184632: textproc/sgmlformat: broken regexp -> regex conversion X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 15:00:09 -0000 Synopsis: textproc/sgmlformat: broken regexp -> regex conversion Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 15:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184632 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 15:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0AD135F for ; Mon, 9 Dec 2013 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B183C11C0 for ; Mon, 9 Dec 2013 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9FA0Za028759 for ; Mon, 9 Dec 2013 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9FA0FW028758; Mon, 9 Dec 2013 15:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 15:10:00 GMT Resent-Message-Id: <201312091510.rB9FA0FW028758@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alphons "Fonz" van Werven Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 166591F4 for ; Mon, 9 Dec 2013 15:06:38 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 01CDD1196 for ; Mon, 9 Dec 2013 15:06:38 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9F6bn3089066 for ; Mon, 9 Dec 2013 15:06:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9F6bXZ089048; Mon, 9 Dec 2013 15:06:37 GMT (envelope-from nobody) Message-Id: <201312091506.rB9F6bXZ089048@oldred.freebsd.org> Date: Mon, 9 Dec 2013 15:06:37 GMT From: Alphons "Fonz" van Werven To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 15:10:01 -0000 >Number: 184633 >Category: ports >Synopsis: Adoption of orphaned port misc/fortune-mod-futurama >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alphons "Fonz" van Werven >Release: >Organization: >Environment: >Description: The port misc/fortune-mod-futurama has been orphaned and I volunteer to take maintainership of it. The accompanying diff updates MAINTAINER and adds a mirror to MASTER_SITES. The port appears to be up to date, has already been stagified and seems to be in overall good shape. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-09 01:31:48.000000000 +0100 +++ Makefile 2013-12-09 15:58:24.000000000 +0100 @@ -5,9 +5,10 @@ PORTVERSION= 0.2 PORTREVISION= 4 CATEGORIES= misc -MASTER_SITES= http://www.netmeister.org/apps/ +MASTER_SITES= http://www.netmeister.org/apps/ \ + http://www.skysmurf.nl/comp/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd@skysmurf.nl COMMENT= Compilation of quotes from the TV series "Futurama" USE_BZIP2= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:01:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 062E974A; Mon, 9 Dec 2013 16:01:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CEA7D166D; Mon, 9 Dec 2013 16:01:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9G1N8G040890; Mon, 9 Dec 2013 16:01:23 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9G1NX0040889; Mon, 9 Dec 2013 16:01:23 GMT (envelope-from jadawin) Date: Mon, 9 Dec 2013 16:01:23 GMT Message-Id: <201312091601.rB9G1NX0040889@freefall.freebsd.org> To: freebsd@skysmurf.nl, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:01:24 -0000 Synopsis: Adoption of orphaned port misc/fortune-mod-futurama State-Changed-From-To: open->feedback State-Changed-By: jadawin State-Changed-When: Mon Dec 9 16:01:23 UTC 2013 State-Changed-Why: Can you please add support to STAGE? Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184633 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E438DED5 for ; Mon, 9 Dec 2013 16:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC11C17A9 for ; Mon, 9 Dec 2013 16:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GK0Kk044098 for ; Mon, 9 Dec 2013 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GK0bA044097; Mon, 9 Dec 2013 16:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 16:20:00 GMT Resent-Message-Id: <201312091620.rB9GK0bA044097@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B22BD61 for ; Mon, 9 Dec 2013 16:14:13 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4EA361766 for ; Mon, 9 Dec 2013 16:14:13 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id rB9GE3GQ014997 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 9 Dec 2013 16:14:09 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id rB9GDxum027544; Mon, 9 Dec 2013 16:13:59 GMT (envelope-from swills) Message-Id: <201312091613.rB9GDxum027544@meatwad.mouf.net> Date: Mon, 9 Dec 2013 16:13:59 GMT From: Steve Wills To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184634: [PATCH] graphics/gpicview: Fix build on HEAD Cc: jmohacsi@bsd.hu X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:20:01 -0000 >Number: 184634 >Category: ports >Synopsis: [PATCH] graphics/gpicview: Fix build on HEAD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 16:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 11.0-CURRENT FreeBSD 11.0-CURRENT #1 r257562M: Sun Nov 3 02:13:41 >Description: - Fix build on head Port maintainer (jmohacsi@bsd.hu) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- gpicview-0.2.4.patch begins here --- Index: files/patch-src__main-win.c =================================================================== --- files/patch-src__main-win.c (revision 0) +++ files/patch-src__main-win.c (working copy) @@ -0,0 +1,11 @@ +--- ./src/main-win.c.orig 2013-12-08 21:46:17.239667539 +0000 ++++ ./src/main-win.c 2013-12-08 21:52:52.117640308 +0000 +@@ -378,7 +378,7 @@ + image_list_sort_by_name( mw->img_list, GTK_SORT_DESCENDING ); + if (image_list_get_first(mw->img_list)) + main_win_open(mw, image_list_get_current_file_path(mw->img_list), zoom); +- return; ++ return TRUE; + } + + Property changes on: files/patch-src__main-win.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property --- gpicview-0.2.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAAADED6 for ; Mon, 9 Dec 2013 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B68E617AA for ; Mon, 9 Dec 2013 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GK17i044159 for ; Mon, 9 Dec 2013 16:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GK1FI044158; Mon, 9 Dec 2013 16:20:01 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 16:20:01 GMT Message-Id: <201312091620.rB9GK1FI044158@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Philippe =?iso-8859-1?Q?Aud=E9oud?= Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Philippe =?iso-8859-1?Q?Aud=E9oud?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:20:01 -0000 The following reply was made to PR ports/184633; it has been noted by GNATS. From: Philippe =?iso-8859-1?Q?Aud=E9oud?= To: "A.J. 'Fonz' van Werven" Cc: bug-followup@FreeBSD.org Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama Date: Mon, 9 Dec 2013 17:23:04 +0100 --61jdw2sOBCFtR2d/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, 09 Dec 2013, A.J. 'Fonz' van Werven wrote: > jadawin@FreeBSD.org wrote: >=20 > > Synopsis: Adoption of orphaned port misc/fortune-mod-futurama > [snip] > > Can you please add support to STAGE? Thanks! >=20 > That was already done yesterday by danilo. Or did something go wrong? >=20 > AvW > My bad :) Sorry=20 --61jdw2sOBCFtR2d/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (FreeBSD) iEYEARECAAYFAlKl7mcACgkQ5Jj8K8g11A7HygCeMV89Mh0K8i2535Q96R1wStvz 0A4An12ih0fj9IMPfvjyPJArY/BsonfZ =UwAT -----END PGP SIGNATURE----- --61jdw2sOBCFtR2d/-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA3DAF06; Mon, 9 Dec 2013 16:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F19817AC; Mon, 9 Dec 2013 16:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GK8N4044242; Mon, 9 Dec 2013 16:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GK8aY044241; Mon, 9 Dec 2013 16:20:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 16:20:08 GMT Message-Id: <201312091620.rB9GK8aY044241@freefall.freebsd.org> To: swills@freebsd.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184634: [PATCH] graphics/gpicview: Fix build on HEAD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:20:08 -0000 Synopsis: [PATCH] graphics/gpicview: Fix build on HEAD State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Dec 9 16:20:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184634 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE8C7ED7 for ; Mon, 9 Dec 2013 16:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA93E17AB for ; Mon, 9 Dec 2013 16:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GK2ke044167 for ; Mon, 9 Dec 2013 16:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GK27q044166; Mon, 9 Dec 2013 16:20:02 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 16:20:02 GMT Message-Id: <201312091620.rB9GK27q044166@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "A.J. 'Fonz' van Werven" Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "A.J. 'Fonz' van Werven" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:20:03 -0000 The following reply was made to PR ports/184633; it has been noted by GNATS. From: "A.J. 'Fonz' van Werven" To: jadawin@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama Date: Mon, 9 Dec 2013 17:13:21 +0100 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable jadawin@FreeBSD.org wrote: > Synopsis: Adoption of orphaned port misc/fortune-mod-futurama [snip] > Can you please add support to STAGE? Thanks! That was already done yesterday by danilo. Or did something go wrong? AvW --=20 I'm not completely useless, I can be used as a bad example. --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBAgAGBQJSpewhAAoJEAfP7gJTaCe8V08P/1Q6O/lqPtTmHYgo2icSknwT cof9/jvhm8bqOBtiWOmL0QK9LQb7mURyNafyeQogwHpCA9/jHmQ+uuW5ltGuJDrb RbjvPl/LBkEO5nCCSOEb7t98Pj7pY1mrewv5NenfCQRff0jF2b6CCJVfC6pM1Nky fhAlShxkXR9pFQ0XU3TLUrD9eB1GEe+7JLXbuTbUf/6o+LmXThuddnyYNYlwp6Aj t+4uUKvCGqYZxu1upv/VjoRplSKBkOpWWHGFyiPB1UazI6wqk2+gQLWEsWdoV+Kp zqALYR1MILAY0WElWFjGQMhLF6jrzwQRv/aSg8aJ2ymo18Dh0NrODX7iHyliChN1 z1YsDWiQAxe3Tlt72yLML2ni7dZt38vPu4YJIFzLVkc22Cvz89umzqa0DNjT6wGG AxXgeYk0hV+zzFXZnZcX5AANX32Z43Iz+y9ZxPqh3ZcGyWK8nGnDY1Ll05jbhCdC itMsFI67UgWlBWHX1dITsXDohFKbYUw9G5fAtljPu1TnYanE0BZp5SmqPNu9+kd5 ukkov7BckroyH0Qk5Ch+FmJiGKWZfEdgqSpMycSAL6J9lp3841gI+HmYK8rDegaR 1xHR9oV4XbKDa4yQtQzbNjIdxCeO7iX6zY4xNcfN9Vtp92SKXDrbH4PpcjVzmAAb h10u2CVmsSWY9yebNNsn =emf3 -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:20:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D84E115D; Mon, 9 Dec 2013 16:20:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AEDBA1829; Mon, 9 Dec 2013 16:20:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GKtwv046176; Mon, 9 Dec 2013 16:20:55 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GKt9v046175; Mon, 9 Dec 2013 16:20:55 GMT (envelope-from jadawin) Date: Mon, 9 Dec 2013 16:20:55 GMT Message-Id: <201312091620.rB9GKt9v046175@freefall.freebsd.org> To: freebsd@skysmurf.nl, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184633: Adoption of orphaned port misc/fortune-mod-futurama X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:20:55 -0000 Synopsis: Adoption of orphaned port misc/fortune-mod-futurama State-Changed-From-To: feedback->closed State-Changed-By: jadawin State-Changed-When: Mon Dec 9 16:20:55 UTC 2013 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184633 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 680092E6 for ; Mon, 9 Dec 2013 16:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54DC61884 for ; Mon, 9 Dec 2013 16:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GU1lF046733 for ; Mon, 9 Dec 2013 16:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GU1ih046732; Mon, 9 Dec 2013 16:30:01 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 16:30:01 GMT Message-Id: <201312091630.rB9GU1ih046732@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184633: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:30:01 -0000 The following reply was made to PR ports/184633; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184633: commit references a PR Date: Mon, 9 Dec 2013 16:20:50 +0000 (UTC) Author: jadawin Date: Mon Dec 9 16:20:43 2013 New Revision: 336003 URL: http://svnweb.freebsd.org/changeset/ports/336003 Log: - Submitter wants maintainership PR: ports/184633 Submitted by: Alphons "Fonz" van Werven Modified: head/misc/fortune-mod-futurama/Makefile (contents, props changed) Modified: head/misc/fortune-mod-futurama/Makefile ============================================================================== --- head/misc/fortune-mod-futurama/Makefile Mon Dec 9 16:18:08 2013 (r336002) +++ head/misc/fortune-mod-futurama/Makefile Mon Dec 9 16:20:43 2013 (r336003) @@ -5,9 +5,10 @@ PORTNAME= fortune-mod-futurama PORTVERSION= 0.2 PORTREVISION= 4 CATEGORIES= misc -MASTER_SITES= http://www.netmeister.org/apps/ +MASTER_SITES= http://www.netmeister.org/apps/ \ + http://www.skysmurf.nl/comp/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd@skysmurf.nl COMMENT= Compilation of quotes from the TV series "Futurama" USE_BZIP2= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A21E2EC for ; Mon, 9 Dec 2013 16:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 86FBC1888 for ; Mon, 9 Dec 2013 16:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9GU2Jm046756 for ; Mon, 9 Dec 2013 16:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9GU2vR046755; Mon, 9 Dec 2013 16:30:02 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 16:30:02 GMT Message-Id: <201312091630.rB9GU2vR046755@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184634: [PATCH] graphics/gpicview: Fix build on HEAD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:30:02 -0000 The following reply was made to PR ports/184634; it has been noted by GNATS. From: Edwin Groothuis To: jmohacsi@bsd.hu Cc: bug-followup@FreeBSD.org Subject: Re: ports/184634: [PATCH] graphics/gpicview: Fix build on HEAD Date: Mon, 9 Dec 2013 16:20:07 UT Maintainer of graphics/gpicview, Please note that PR ports/184634 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184634 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1235683 for ; Mon, 9 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC51C1968 for ; Mon, 9 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Ge0gx048485 for ; Mon, 9 Dec 2013 16:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Ge0fj048484; Mon, 9 Dec 2013 16:40:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 16:40:00 GMT Resent-Message-Id: <201312091640.rB9Ge0fj048484@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Ilya A. Arkhipov" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC864466 for ; Mon, 9 Dec 2013 16:34:10 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8D2A190A for ; Mon, 9 Dec 2013 16:34:10 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9GY9fM023798 for ; Mon, 9 Dec 2013 16:34:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9GY94o023797; Mon, 9 Dec 2013 16:34:09 GMT (envelope-from nobody) Message-Id: <201312091634.rB9GY94o023797@oldred.freebsd.org> Date: Mon, 9 Dec 2013 16:34:09 GMT From: "Ilya A. Arkhipov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184636: [patch] irc/ircservices fix pkg-message bug(forget it) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:40:01 -0000 >Number: 184636 >Category: ports >Synopsis: [patch] irc/ircservices fix pkg-message bug(forget it) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 16:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ilya A. Arkhipov >Release: FreeBSD 11.0-CURRENT >Organization: Home Inc. ^_^ >Environment: FreeBSD m1cro.park 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r256311M: Fri Oct 11 13:38:42 MSK 2013 root@m1cro.park:/usr/obj/usr/src/sys/MICROKERNEL amd64 >Description: [patch] irc/ircservices fix pkg-message bug(forget it) - Move files/pkg-message.in to pkg-message - Add it >How-To-Repeat: port test or build it >Fix: Was attached or http://m1cro.tk/ports/irc/ircservices/ircservices_fix_pkg-message.patch Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 335975) +++ Makefile (working copy) @@ -18,7 +18,6 @@ USE_PERL5= build HAS_CONFIGURE= yes USE_RC_SUBR= ircservices -SUB_FILES= pkg-message DIST_SUBDIR= ${PORTNAME} CONFIGURE_ARGS= -bindest ${PREFIX}/sbin -datdest ${PREFIX}/etc/ircservices \ Index: pkg-message =================================================================== --- pkg-message (revision 0) +++ pkg-message (working copy) @@ -0,0 +1,4 @@ +********** IMPORTANT ********** +The configuration directory has changed to %%PREFIX%%/etc/ircservices +Please copy your old config files there if updating +********** IMPORTANT ********* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C882CA8E for ; Mon, 9 Dec 2013 16:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3BF41A5E for ; Mon, 9 Dec 2013 16:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Go0Dw050317 for ; Mon, 9 Dec 2013 16:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Go0kT050313; Mon, 9 Dec 2013 16:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 16:50:00 GMT Resent-Message-Id: <201312091650.rB9Go0kT050313@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christer Edwards Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B93BA6B1 for ; Mon, 9 Dec 2013 16:40:09 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A65A7196A for ; Mon, 9 Dec 2013 16:40:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9Ge9ao043779 for ; Mon, 9 Dec 2013 16:40:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9Ge9WY043762; Mon, 9 Dec 2013 16:40:09 GMT (envelope-from nobody) Message-Id: <201312091640.rB9Ge9WY043762@oldred.freebsd.org> Date: Mon, 9 Dec 2013 16:40:09 GMT From: Christer Edwards To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184637: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:50:00 -0000 >Number: 184637 >Category: ports >Synopsis: maintainer update : sysutils/py-salt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 16:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Christer Edwards >Release: 9.2-RELEASE >Organization: Salt Stack >Environment: FreeBSD jupiter.zelut.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Maintainer update : sysutils/py-salt (0.17.3) >How-To-Repeat: Maintainer update : sysutils/py-salt (0.17.3) >Fix: Maintainer update : sysutils/py-salt (0.17.3) Patch attached with submission follows: diff -ruN sysutils/py-salt/Makefile sysutils/py-salt-0.17.3/Makefile --- sysutils/py-salt/Makefile 2013-11-14 14:17:27.000000000 -0700 +++ sysutils/py-salt-0.17.3/Makefile 2013-12-09 09:18:28.000000000 -0700 @@ -2,7 +2,7 @@ # $FreeBSD: sysutils/py-salt/Makefile 333794 2013-11-14 21:17:27Z vg $ PORTNAME= salt -PORTVERSION= 0.17.2 +PORTVERSION= 0.17.3 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN sysutils/py-salt/distinfo sysutils/py-salt-0.17.3/distinfo --- sysutils/py-salt/distinfo 2013-11-14 14:17:27.000000000 -0700 +++ sysutils/py-salt-0.17.3/distinfo 2013-12-09 09:18:33.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (salt-0.17.2.tar.gz) = f1339c02c40b8aa9c55db66bd5780037aa7f6eb4d592fa9e1353e74d1ab167b2 -SIZE (salt-0.17.2.tar.gz) = 1866629 +SHA256 (salt-0.17.3.tar.gz) = 2a66a0b92862d33477e7e817cb51ccb4e648481d4bc31732bfbb6f43a3e2e1fc +SIZE (salt-0.17.3.tar.gz) = 1869944 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 16:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02937AC2; Mon, 9 Dec 2013 16:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC2DC1AA8; Mon, 9 Dec 2013 16:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Go8lL050467; Mon, 9 Dec 2013 16:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Go8dn050466; Mon, 9 Dec 2013 16:50:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 16:50:08 GMT Message-Id: <201312091650.rB9Go8dn050466@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184637: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 16:50:09 -0000 Synopsis: maintainer update : sysutils/py-salt Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 16:50:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184637 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 17:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64FF9DD7 for ; Mon, 9 Dec 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5251D1B15 for ; Mon, 9 Dec 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9H012N052327 for ; Mon, 9 Dec 2013 17:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9H01RM052326; Mon, 9 Dec 2013 17:00:01 GMT (envelope-from gnats) Date: Mon, 9 Dec 2013 17:00:01 GMT Message-Id: <201312091700.rB9H01RM052326@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jason Bacon Subject: Re: ports/184566: biology/plink : fix build with gcc47 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jason Bacon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 17:00:01 -0000 The following reply was made to PR ports/184566; it has been noted by GNATS. From: Jason Bacon To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184566: biology/plink : fix build with gcc47 Date: Mon, 09 Dec 2013 10:50:52 -0600 Approved. On 12/07/13 10:50, Edwin Groothuis wrote: > Maintainer of biology/plink, > > Please note that PR ports/184566 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184566 > From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 18:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD401CBF for ; Mon, 9 Dec 2013 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97F3F10A5 for ; Mon, 9 Dec 2013 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9I007Y064551 for ; Mon, 9 Dec 2013 18:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9I00q3064550; Mon, 9 Dec 2013 18:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 18:00:00 GMT Resent-Message-Id: <201312091800.rB9I00q3064550@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthieu Volat Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB8A1B8B for ; Mon, 9 Dec 2013 17:55:34 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB0A4106A for ; Mon, 9 Dec 2013 17:55:34 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB9HtY6j033667 for ; Mon, 9 Dec 2013 17:55:34 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB9HtYDr033657; Mon, 9 Dec 2013 17:55:34 GMT (envelope-from nobody) Message-Id: <201312091755.rB9HtYDr033657@oldred.freebsd.org> Date: Mon, 9 Dec 2013 17:55:34 GMT From: Matthieu Volat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184639: [patch] net/mDNSResponder build with yacc (bison not needed) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 18:00:00 -0000 >Number: 184639 >Category: ports >Synopsis: [patch] net/mDNSResponder build with yacc (bison not needed) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 18:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Matthieu Volat >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD freedom.alkumuna.eu 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I have noticed by chance that parser files in net/mDNSResponder are in fact well writen and will work with base yacc implementation, thus do not require devel/bison to build. I've attached a patch that remove the dependency and change the BISON value. >How-To-Repeat: >Fix: See enclosed patch: 1. remove bison in use flags 2. set BISON value to yacc in mDNSPosix/Makefile Patch attached with submission follows: diff -ru mDNSResponder.orig/Makefile mDNSResponder/Makefile --- mDNSResponder.orig/Makefile 2013-12-09 18:21:53.000000000 +0100 +++ mDNSResponder/Makefile 2013-12-09 18:22:32.000000000 +0100 @@ -17,7 +17,7 @@ BUILD_WRKSRC= ${WRKSRC}/mDNSPosix INSTALL_WRKSRC= ${WRKSRC}/mDNSPosix MAKE_ARGS= LOCALBASE=${PREFIX} MANPATH=${MANPREFIX}/man os=freebsd -USES= bison gmake +USES= gmake USE_LDCONFIG= yes USE_RC_SUBR= mdnsd mdnsresponder diff -ru mDNSResponder.orig/files/patch-mDNSPosix-Makefile mDNSResponder/files/patch-mDNSPosix-Makefile --- mDNSResponder.orig/files/patch-mDNSPosix-Makefile 2013-12-09 18:21:53.000000000 +0100 +++ mDNSResponder/files/patch-mDNSPosix-Makefile 2013-12-09 18:39:59.000000000 +0100 @@ -1,5 +1,5 @@ ---- mDNSPosix/Makefile.orig 2011-11-03 08:23:39.000000000 +0800 -+++ mDNSPosix/Makefile 2013-10-13 02:29:12.791431406 +0800 +--- mDNSPosix/Makefile.orig 2012-10-18 00:11:12.000000000 +0200 ++++ mDNSPosix/Makefile 2013-12-09 18:39:26.000000000 +0100 @@ -54,7 +54,7 @@ SHAREDDIR ?= ../mDNSShared JDK = /usr/jdk @@ -18,7 +18,15 @@ # FreeBSD 4 requires threaded code to be compiled and linked using the "-pthread" option, # and requires that the "-lpthread" link option NOT be used # This appies only to FreeBSD -- "man cc" on FreeBSD says: -@@ -216,7 +216,7 @@ +@@ -133,6 +133,7 @@ + LINKOPTS_PTHREAD = -pthread + JAVACFLAGS_OS += -I$(JDK)/include/freebsd + LDCONFIG = ldconfig ++BISON = @yacc + else + + ifeq ($(os),openbsd) +@@ -216,7 +217,7 @@ all: setup Daemon libdns_sd Clients SAClient SAResponder SAProxyResponder Identify NetMonitor dnsextd $(OPTIONALTARG) @@ -27,7 +35,7 @@ # 'setup' sets up the build directory structure the way we want setup: -@@ -259,10 +259,10 @@ +@@ -259,10 +260,10 @@ @$(LD) $(LINKOPTS) -o $@ $+ @$(STRIP) $@ @@ -40,7 +48,7 @@ @$(MAKE) -C ../Clients # nss_mdns target builds the Name Service Switch module -@@ -276,43 +276,43 @@ +@@ -276,43 +277,43 @@ ############################################################################# # The Install targets place built stuff in their proper places @@ -95,7 +103,7 @@ $(CP) $< $@ chmod ugo+x $@ $@ start -@@ -329,26 +329,26 @@ +@@ -329,26 +330,26 @@ endif endif @@ -128,7 +136,7 @@ $(CP) $< $@ chmod 444 $@ -@@ -490,6 +490,8 @@ +@@ -490,6 +491,8 @@ $(BUILDDIR)/dnsextd: $(DNSEXTDOBJ) $(OBJDIR)/dnsextd.c.threadsafe.o $(CC) $+ -o $@ $(LINKOPTS) $(LINKOPTS_PTHREAD) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 18:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B62F2CF0; Mon, 9 Dec 2013 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B62D10A8; Mon, 9 Dec 2013 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9I08IL064687; Mon, 9 Dec 2013 18:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9I08b2064686; Mon, 9 Dec 2013 18:00:08 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 18:00:08 GMT Message-Id: <201312091800.rB9I08b2064686@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184639: [patch] net/mDNSResponder build with yacc (bison not needed) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 18:00:08 -0000 Synopsis: [patch] net/mDNSResponder build with yacc (bison not needed) Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 18:00:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184639 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 19:40:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8025B6C6 for ; Mon, 9 Dec 2013 19:40:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D7F319DF for ; Mon, 9 Dec 2013 19:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9Je4gi089917 for ; Mon, 9 Dec 2013 19:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9Je4Lj089916; Mon, 9 Dec 2013 19:40:04 GMT (envelope-from gnats) Resent-Date: Mon, 9 Dec 2013 19:40:04 GMT Resent-Message-Id: <201312091940.rB9Je4Lj089916@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EB7B68B for ; Mon, 9 Dec 2013 19:37:54 +0000 (UTC) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9114119C5 for ; Mon, 9 Dec 2013 19:37:53 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id C507E40018 for ; Mon, 9 Dec 2013 20:37:50 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id BAF4F40039; Mon, 9 Dec 2013 20:37:50 +0100 (CET) Received: from mx.daemonic.se (unknown [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id EE24E40018 for ; Mon, 9 Dec 2013 20:37:48 +0100 (CET) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3ddZSD5cKzz8jLC for ; Mon, 9 Dec 2013 20:37:48 +0100 (CET) Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id pOHwdRlZM8e6 for ; Mon, 9 Dec 2013 20:37:44 +0100 (CET) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3ddZS86B3Sz8jL9 for ; Mon, 9 Dec 2013 20:37:44 +0100 (CET) Received: from vivi.daemonic.se (vivi.daemonic.se [IPv6:2001:470:dca9:1::4]) by mail.daemonic.se (Postfix) with ESMTPS id 3ddZS85NMrz9CwV for ; Mon, 9 Dec 2013 20:37:44 +0100 (CET) Received: (from zeising@localhost) by vivi.daemonic.se (8.14.7/8.14.7/Submit) id rB9Jbirl019814; Mon, 9 Dec 2013 20:37:44 +0100 (CET) (envelope-from zeising) Message-Id: <201312091937.rB9Jbirl019814@vivi.daemonic.se> Date: Mon, 9 Dec 2013 20:37:44 +0100 (CET) From: Niclas Zeising To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184644: [PATCH] update net-mgmt/nagios-plugins to 1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 19:40:04 -0000 >Number: 184644 >Category: ports >Synopsis: [PATCH] update net-mgmt/nagios-plugins to 1.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Dec 09 19:40:03 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD vivi.daemonic.se 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r252979M: Sun Jul 7 21:07:39 CEST 2013 root@vivi.daemonic.se:/usr/obj/usr/src/sys/VIVI amd64 >Description: Attached patch updates net-mgmt/nagios-plugins to 1.5 and makes the port work with staging. >How-To-Repeat: >Fix: --- ports.nagios-plugin.1.5.update.diff begins here --- Index: net-mgmt/nagios-plugins/Makefile =================================================================== --- net-mgmt/nagios-plugins/Makefile (revision 335879) +++ net-mgmt/nagios-plugins/Makefile (working copy) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= nagios-plugins -PORTVERSION= 1.4.16 -PORTREVISION= 3 +PORTVERSION= 1.5 PORTEPOCH= 1 CATEGORIES= net-mgmt -MASTER_SITES= SF/nagiosplug/nagiosplug/${PORTVERSION} +MASTER_SITES= https://www.nagios-plugins.org/download/ MAINTAINER= demon@FreeBSD.org COMMENT= Plugins for Nagios @@ -18,8 +17,8 @@ ACLOCAL_ARGS= -I m4 -I gl/m4 AUTOMAKE_ARGS= --add-missing -OPTIONS_DEFINE= QSTAT FPING NETSNMP RADIUS MYSQL PGSQL LDAP IPV6 JAIL NLS -OPTIONS_DEFAULT=IPV6 +OPTIONS_DEFINE= QSTAT FPING NETSNMP RADIUS MYSQL PGSQL LDAP IPV6 JAIL NLS DBI +OPTIONS_DEFAULT=QSTAT FPING NETSNMP RADIUS MYSQL PGSQL LDAP IPV6 NLS DBI QSTAT_DESC= Game server query support (check_game) FPING_DESC= Support for non-flooding fast ping (check_fping) @@ -29,6 +28,7 @@ PGSQL_DESC= PostgreSQL support (check_pgsql) LDAP_DESC= OpenLDAP support (check_ldap) JAIL_DESC= Compilation within jail(8) (see Makefile) +DBI_DESC= Check database using DBI GNU_CONFIGURE= yes @@ -43,7 +43,6 @@ NAGIOSPOLLIP?= 127.0.0.1 NAGIOSPOLLIP6?= ::1 -NO_STAGE= yes .include CONFIGURE_ARGS= --with-nagios-user=${NAGIOSUSER} \ @@ -98,9 +97,9 @@ .if ${PORT_OPTIONS:MRADIUS} LIB_DEPENDS+= radiusclient-ng:${PORTSDIR}/net/radiusclient -CONFIGURE_ARGS+= --enable-radius PLIST_SUB+= SUB_RADIUS="" .else +CONFIGURE_ARGS+= --without-radius PLIST_SUB+= SUB_RADIUS="@comment " .endif @@ -124,9 +123,9 @@ .if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= YES -CONFIGURE_ARGS+= --enable-ldap PLIST_SUB+= SUB_LDAP="" .else +CONFIGURE_ARGS+= --without-ldap PLIST_SUB+= SUB_LDAP="@comment " .endif @@ -138,6 +137,13 @@ PLIST_SUB+= NLS="@comment " .endif +.if ${PORT_OPTIONS:MDBI} +PLIST_SUB+= SUB_DBI="" +LIB_DEPENDS+= libdbi.so:${PORTSDIR}/databases/libdbi +.else +CONFIGURE_ARGS+= --without-dbi +PLIST_SUB+= SUB_DBI="@comment " +.endif # Restore check_users from 1.4.15 for hosts without getutxent(3) .if ${OSVERSION} < 900007 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-plugins__check_users.c Index: net-mgmt/nagios-plugins/distinfo =================================================================== --- net-mgmt/nagios-plugins/distinfo (revision 335879) +++ net-mgmt/nagios-plugins/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (nagios-plugins-1.4.16.tar.gz) = b0caf07e0084e9b7f10fdd71cbd3ebabcd85ad78df64da360b51233b0e73b2bd -SIZE (nagios-plugins-1.4.16.tar.gz) = 2087089 +SHA256 (nagios-plugins-1.5.tar.gz) = fcc55e23bbf1c70bcf1a90749d30249955d4668a9b776b2521da023c5c2f2170 +SIZE (nagios-plugins-1.5.tar.gz) = 2428258 Index: net-mgmt/nagios-plugins/files/patch-configure.in =================================================================== --- net-mgmt/nagios-plugins/files/patch-configure.in (revision 335879) +++ net-mgmt/nagios-plugins/files/patch-configure.in (working copy) @@ -1,6 +1,6 @@ ---- configure.in.orig 2009-09-16 10:20:34.000000000 +0200 -+++ configure.in 2009-12-17 15:42:34.486203026 +0100 -@@ -11,8 +11,6 @@ +--- configure.in.orig 2013-10-02 17:22:21.000000000 +0200 ++++ configure.in 2013-12-09 16:12:25.845469460 +0100 +@@ -12,8 +12,6 @@ RELEASE=1 AC_SUBST(RELEASE) @@ -9,7 +9,7 @@ dnl Deprecated configure options -@@ -43,6 +41,7 @@ +@@ -44,6 +42,7 @@ gl_EARLY AC_PROG_GCC_TRADITIONAL AC_PROG_LIBTOOL @@ -17,7 +17,7 @@ AM_PROG_CC_C_O -@@ -200,11 +199,12 @@ +@@ -211,11 +210,12 @@ ACX_HELP_STRING([--with-pgsql=DIR], [sets path to pgsql installation]), PGSQL=$withval,) @@ -32,71 +32,60 @@ fi AC_CHECK_LIB(pq,PQsetdbLogin,,,-lcrypt) if test "$ac_cv_lib_pq_PQsetdbLogin" = "yes"; then -@@ -241,37 +241,42 @@ - AC_MSG_WARN([Skipping PostgreSQL plugin (check_pgsql)]) - AC_MSG_WARN([install lib crypt and PostgreSQL libs to compile this plugin (see REQUIREMENTS).]) - fi -+else -+ AC_MSG_WARN([Skipping PostgreSQL plugin (check_pgsql)]) -+ AC_MSG_WARN([PostgreSQL directory has not been found]) -+fi - LIBS="$_SAVEDLIBS" - CPPFLAGS="$_SAVEDCPPFLAGS" - -+AC_ARG_ENABLE(radius,--enable-radius compile check_radius) -+if test x$enable_radius = xyes; then +@@ -259,10 +259,10 @@ + dnl Check for DBI libraries + AS_IF([test "x$with_dbi" != "xno"], [ + _SAVEDLIBS="$LIBS" +- AC_CHECK_LIB(dbi,dbi_initialize) ++ AC_CHECK_LIB(dbi,dbi_initialize,,,-L${LOCALBASE}/lib) + if test "$ac_cv_lib_dbi_dbi_initialize" = "yes"; then + EXTRAS="$EXTRAS check_dbi" +- DBILIBS="-ldbi" ++ DBILIBS="-L${LOCALBASE}/lib -ldbi" + AC_SUBST(DBILIBS) + else + AC_MSG_WARN([Skipping dbi plugin]) +@@ -276,17 +276,13 @@ dnl Check for radius libraries - _SAVEDLIBS="$LIBS" --AC_CHECK_LIB(radiusclient,rc_read_config) --if test "$ac_cv_lib_radiusclient_rc_read_config" = "yes"; then -- EXTRAS="$EXTRAS check_radius" -- RADIUSLIBS="-lradiusclient" -- AC_SUBST(RADIUSLIBS) --else -- AC_CHECK_LIB(radiusclient-ng,rc_read_config) -+ AC_CHECK_LIB(radiusclient-ng,rc_read_config,,,-L${LOCALBASE}/lib) - if test "$ac_cv_lib_radiusclient_ng_rc_read_config" = "yes"; then - EXTRAS="$EXTRAS check_radius" -- RADIUSLIBS="-lradiusclient-ng" -+ RADIUSLIBS="-L${LOCALBASE}/lib -lradiusclient-ng"\ -+ RADIUSINCLUDE="-I${LOCALBASE}/include" - AC_SUBST(RADIUSLIBS) -+ AC_SUBST(RADIUSINCLUDE) - else - AC_MSG_WARN([Skipping radius plugin]) - AC_MSG_WARN([install radius libs to compile this plugin (see REQUIREMENTS).]) - fi --fi - LIBS="$_SAVEDLIBS" -+fi - -+AC_ARG_ENABLE(ldap,--enable-ldap compile check_ldap) -+if test x$enable_ldap = xyes; then + AS_IF([test "x$with_radius" != "xno"], [ + _SAVEDLIBS="$LIBS" +- AC_CHECK_LIB(radiusclient,rc_read_config) +- if test "$ac_cv_lib_radiusclient_rc_read_config" = "yes"; then +- EXTRAS="$EXTRAS check_radius" +- RADIUSLIBS="-lradiusclient" +- AC_SUBST(RADIUSLIBS) +- else +- AC_CHECK_LIB(radiusclient-ng,rc_read_config) ++ AC_CHECK_LIB(radiusclient-ng,rc_read_config,,,-L${LOCALBASE}/lib) + if test "$ac_cv_lib_radiusclient_ng_rc_read_config" = "yes"; then + EXTRAS="$EXTRAS check_radius" +- RADIUSLIBS="-lradiusclient-ng" ++ RADIUSLIBS="-L${LOCALBASE}/lib -lradiusclient-ng" ++ RADIUSINCLUDE="-I${LOCALBSE}/include" + AC_SUBST(RADIUSLIBS) ++ AC_SUBST(RADIUSINCLUDE) + else + AC_MSG_WARN([Skipping radius plugin]) + AC_MSG_WARN([install radius libs to compile this plugin (see REQUIREMENTS).]) +@@ -300,12 +296,13 @@ dnl Check for LDAP libraries - _SAVEDLIBS="$LIBS" --AC_CHECK_LIB(ldap,main,,,-llber) --if test "$ac_cv_lib_ldap_main" = "yes"; then -- LDAPLIBS="-lldap -llber"\ -- LDAPINCLUDE="-I/usr/include/ldap" -+AC_CHECK_LIB(ldap,ldap_simple_bind,,,-L${LOCALBASE}/lib -llber) -+if test "$ac_cv_lib_ldap_ldap_simple_bind" = "yes"; then -+ LDAPLIBS="-L${LOCALBASE}/lib -lldap -llber"\ -+ LDAPINCLUDE="-I${LOCALBASE}/include" - AC_SUBST(LDAPLIBS) - AC_SUBST(LDAPINCLUDE) -+ LIBS="-L${LOCALBASE}/lib $LIBS" - AC_CHECK_FUNCS(ldap_set_option) - EXTRAS="$EXTRAS check_ldap" - AC_CHECK_FUNCS(ldap_init ldap_set_option ldap_get_option ldap_start_tls_s) -@@ -280,6 +285,7 @@ - AC_MSG_WARN([install LDAP libs to compile this plugin (see REQUIREMENTS).]) - fi - LIBS="$_SAVEDLIBS" -+fi - - dnl Check for headers used by check_ide_smart - AC_CHECK_HEADER(linux/hdreg.h, FOUNDINCLUDE=yes, FOUNDINCLUDE=no) -@@ -597,22 +603,10 @@ + AS_IF([test "x$with_ldap" != "xno"], [ + _SAVEDLIBS="$LIBS" +- AC_CHECK_LIB(ldap,main,,,-llber) +- if test "$ac_cv_lib_ldap_main" = "yes"; then +- LDAPLIBS="-lldap -llber"\ +- LDAPINCLUDE="-I/usr/include/ldap" ++ AC_CHECK_LIB(ldap,ldap_simple_bind,,,-L${LOCALBASE}/lib -llber) ++ if test "$ac_cv_lib_ldap_ldap_simple_bind" = "yes"; then ++ LDAPLIBS="-L${LOCALBSE}/lib -lldap -llber" ++ LDAPINCLUDE="-I${LOCALBASE}/include" + AC_SUBST(LDAPLIBS) + AC_SUBST(LDAPINCLUDE) ++ LIBS="-L${LOCALBASE}/lib $LIBS" + AC_CHECK_FUNCS(ldap_set_option) + EXTRAS="$EXTRAS check_ldap" + AC_CHECK_FUNCS(ldap_init ldap_set_option ldap_get_option ldap_start_tls_s) +@@ -729,22 +726,10 @@ dnl ac_cv_ps_cols=8 dnl AC_MSG_RESULT([$ac_cv_ps_command]) @@ -122,7 +111,7 @@ then ac_cv_ps_varlist="[procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" ac_cv_ps_command="$PATH_TO_PS -axwo 'stat uid pid ppid vsz rss pcpu comm args'" -@@ -620,9 +614,8 @@ +@@ -752,9 +737,8 @@ ac_cv_ps_cols=9 AC_MSG_RESULT([$ac_cv_ps_command]) @@ -134,7 +123,7 @@ elif ps -axwo 'stat uid pid ppid vsz rss pcpu ucomm command' 2>/dev/null | \ egrep -i ["^ *STAT +UID +PID +PPID +VSZ +RSS +%CPU +UCOMM +COMMAND"] > /dev/null then -@@ -632,209 +625,6 @@ +@@ -764,209 +748,6 @@ ac_cv_ps_cols=9 AC_MSG_RESULT([$ac_cv_ps_command]) @@ -344,9 +333,9 @@ else AC_MSG_WARN([unable to find usable ps syntax - check_procs and check_nagios will not be compiled]) fi -@@ -1212,6 +1002,8 @@ - AC_DEFINE_UNQUOTED(WHO_COMMAND,"$ac_cv_path_to_who", - [path and arguments for invoking 'who']) +@@ -1354,6 +1135,8 @@ + AC_MSG_WARN([Get smbclient from Samba.org to monitor SMB shares]) + fi +AC_ARG_ENABLE(snmp,--enable-snmp compile check_hpjd and check_snmp) +if test x$enable_snmp = xyes; then @@ -353,7 +342,7 @@ AC_PATH_PROG(PATH_TO_SNMPGET,snmpget) AC_ARG_WITH(snmpget_command, ACX_HELP_STRING([--with-snmpget-command=PATH], -@@ -1242,7 +1034,10 @@ +@@ -1384,7 +1167,10 @@ else AC_MSG_WARN([Tried $PERL - install Net::SNMP perl module if you want to use the perl snmp plugins]) fi @@ -364,7 +353,7 @@ AC_PATH_PROG(PATH_TO_QUAKESTAT,quakestat) AC_PATH_PROG(PATH_TO_QSTAT,qstat) AC_ARG_WITH(qstat_command, -@@ -1267,7 +1062,10 @@ +@@ -1409,7 +1195,10 @@ AC_DEFINE_UNQUOTED(PATH_TO_QSTAT,"$ac_cv_path_to_qstat", [path to qstat/quakestat]) fi @@ -373,9 +362,9 @@ +AC_ARG_ENABLE(fping,--enable-fping compile check_fping) +if test x$enable_fping = xyes; then AC_PATH_PROG(PATH_TO_FPING,fping) - AC_ARG_WITH(fping_command, - ACX_HELP_STRING([--with-fping-command=PATH], -@@ -1279,6 +1077,7 @@ + AC_PATH_PROG(PATH_TO_FPING6,fping6) + +@@ -1430,6 +1219,7 @@ else AC_MSG_WARN([Get fping from http://www.fping.com in order to make check_fping plugin]) fi @@ -383,7 +372,7 @@ AC_PATH_PROG(PATH_TO_SSH,ssh) AC_ARG_WITH(ssh_command, -@@ -1346,32 +1145,12 @@ +@@ -1497,32 +1287,12 @@ dnl end if for PATH_TO_SWAP fi Index: net-mgmt/nagios-plugins/pkg-plist =================================================================== --- net-mgmt/nagios-plugins/pkg-plist (revision 335879) +++ net-mgmt/nagios-plugins/pkg-plist (working copy) @@ -3,6 +3,7 @@ libexec/nagios/check_by_ssh libexec/nagios/check_clamd libexec/nagios/check_cluster +%%SUB_DBI%%libexec/nagios/check_dbi libexec/nagios/check_dhcp libexec/nagios/check_dig libexec/nagios/check_disk --- ports.nagios-plugin.1.5.update.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 9 19:40:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 005336F8; Mon, 9 Dec 2013 19:40:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C904819E2; Mon, 9 Dec 2013 19:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9JeDdT090003; Mon, 9 Dec 2013 19:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB9JeDN4090002; Mon, 9 Dec 2013 19:40:13 GMT (envelope-from edwin) Date: Mon, 9 Dec 2013 19:40:13 GMT Message-Id: <201312091940.rB9JeDN4090002@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184644: [PATCH] update net-mgmt/nagios-plugins to 1.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 19:40:14 -0000 Synopsis: [PATCH] update net-mgmt/nagios-plugins to 1.5 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 9 19:40:13 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184644 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 00:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AEDE288 for ; Tue, 10 Dec 2013 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F3E71EE6 for ; Tue, 10 Dec 2013 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA0K0eD058696 for ; Tue, 10 Dec 2013 00:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA0K0gc058695; Tue, 10 Dec 2013 00:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 00:20:00 GMT Resent-Message-Id: <201312100020.rBA0K0gc058695@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "ports@c0decafe.net" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1AA8246; Tue, 10 Dec 2013 00:17:00 +0000 (UTC) Received: from web1.noc3.net (unknown [IPv6:2a01:4f8:a0:52a1::550a:c6d9]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0943F1EC6; Tue, 10 Dec 2013 00:16:59 +0000 (UTC) Received: from vystrel.c0decafe.net (vystrel.c0decafe.net [IPv6:2a01:4f8:a0:5ffe:c0de:cafe:0:3]) by web1.noc3.net (Postfix) with ESMTP id 712DB277CC; Tue, 10 Dec 2013 00:16:48 +0000 (GMT) Received: from vystrel.c0decafe.net (localhost [127.0.0.1]) by vystrel.c0decafe.net (8.14.7/8.14.7) with ESMTP id rBA0GlHJ012637 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 10 Dec 2013 02:16:47 +0200 (EET) (envelope-from bartender@c0decafe.net) Received: (from bartender@localhost) by vystrel.c0decafe.net (8.14.7/8.14.7/Submit) id rBA0Glis012636; Tue, 10 Dec 2013 02:16:47 +0200 (EET) (envelope-from bartender) Message-Id: <201312100016.rBA0Glis012636@vystrel.c0decafe.net> Date: Tue, 10 Dec 2013 02:16:47 +0200 (EET) From: "ports@c0decafe.net" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184646: [PATCH] lang/erlang: tls ecc fix Cc: olgeni@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 00:20:00 -0000 >Number: 184646 >Category: ports >Synopsis: [PATCH] lang/erlang: tls ecc fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 00:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: ports@c0decafe.net >Release: FreeBSD 10.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD vystrel.c0decafe.net 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #9 r259108: Mon Dec 9 03:23:52 >Description: Discussion: http://erlang.org/pipermail/erlang-bugs/2013-October/003771.html Patch: https://github.com/erlang/otp/commit/f13b2362c665ef2d98858a4601b1fecf31a21bb5 Port maintainer (olgeni@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- erlang-16.b.02,3.patch begins here --- diff -ruN /usr/ports/lang/erlang/files/patch-ecc ./files/patch-ecc --- /usr/ports/lang/erlang/files/patch-ecc 1970-01-01 02:00:00.000000000 +0200 +++ ./files/patch-ecc 2013-12-10 01:26:59.000000000 +0200 @@ -0,0 +1,313 @@ +diff --git a/lib/ssl/src/ssl_cipher.erl b/lib/ssl/src/ssl_cipher.erl +index 6513042..e6ed0d8 100644 +--- lib/ssl/src/ssl_cipher.erl ++++ lib/ssl/src/ssl_cipher.erl +@@ -34,7 +34,7 @@ + + -export([security_parameters/2, security_parameters/3, suite_definition/1, + decipher/5, cipher/5, +- suite/1, suites/1, anonymous_suites/0, psk_suites/1, srp_suites/0, ++ suite/1, suites/1, ec_keyed_suites/0, anonymous_suites/0, psk_suites/1, srp_suites/0, + openssl_suite/1, openssl_suite_name/1, filter/2, filter_suites/1, + hash_algorithm/1, sign_algorithm/1, is_acceptable_hash/2]). + +diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl +index 29a8996..b18452a 100644 +--- lib/ssl/src/ssl_handshake.erl ++++ lib/ssl/src/ssl_handshake.erl +@@ -49,13 +49,13 @@ + ]). + + %% Cipher suites handling +--export([available_suites/2, available_suites/3, cipher_suites/2, +- select_session/10]). ++-export([available_suites/2, cipher_suites/2, ++ select_session/10, supported_ecc/1]). + + %% Extensions handling + -export([client_hello_extensions/5, + handle_client_hello_extensions/8, %% Returns server hello extensions +- handle_server_hello_extensions/9 ++ handle_server_hello_extensions/9, select_curve/2 + ]). + + %% MISC +@@ -89,7 +89,7 @@ client_hello_extensions(Version, CipherSuites, SslOpts, ConnectionStates, Renego + {EcPointFormats, EllipticCurves} = + case advertises_ec_ciphers(lists:map(fun ssl_cipher:suite_definition/1, CipherSuites)) of + true -> +- ecc_extensions(tls_v1, Version); ++ client_ecc_extensions(tls_v1, Version); + false -> + {undefined, undefined} + end, +@@ -861,22 +861,29 @@ available_suites(UserSuites, Version) -> + UserSuites + end. + +-available_suites(ServerCert, UserSuites, Version) -> +- ssl_cipher:filter(ServerCert, available_suites(UserSuites, Version)). ++available_suites(ServerCert, UserSuites, Version, Curve) -> ++ ssl_cipher:filter(ServerCert, available_suites(UserSuites, Version)) ++ -- unavailable_ecc_suites(Curve). ++ ++unavailable_ecc_suites(no_curve) -> ++ ssl_cipher:ec_keyed_suites(); ++unavailable_ecc_suites(_) -> ++ []. + + cipher_suites(Suites, false) -> + [?TLS_EMPTY_RENEGOTIATION_INFO_SCSV | Suites]; + cipher_suites(Suites, true) -> + Suites. + +-select_session(SuggestedSessionId, CipherSuites, Compressions, Port, Session, Version, ++select_session(SuggestedSessionId, CipherSuites, Compressions, Port, #session{ecc = ECCCurve} = ++ Session, Version, + #ssl_options{ciphers = UserSuites} = SslOpts, Cache, CacheCb, Cert) -> + {SessionId, Resumed} = ssl_session:server_id(Port, SuggestedSessionId, + SslOpts, Cert, + Cache, CacheCb), +- Suites = ssl_handshake:available_suites(Cert, UserSuites, Version), + case Resumed of + undefined -> ++ Suites = available_suites(Cert, UserSuites, Version, ECCCurve), + CipherSuite = select_cipher_suite(CipherSuites, Suites), + Compression = select_compression(Compressions), + {new, Session#session{session_id = SessionId, +@@ -886,6 +893,13 @@ select_session(SuggestedSessionId, CipherSuites, Compressions, Port, Session, Ve + {resumed, Resumed} + end. + ++supported_ecc(Version) -> ++ case tls_v1:ecc_curves(Version) of ++ [] -> ++ undefined; ++ Curves -> ++ #elliptic_curves{elliptic_curve_list = Curves} ++ end. + %%-------------certificate handling -------------------------------- + + certificate_types({KeyExchange, _, _, _}) +@@ -926,9 +940,8 @@ certificate_authorities_from_db(CertDbHandle, CertDbRef) -> + handle_client_hello_extensions(RecordCB, Random, + #hello_extensions{renegotiation_info = Info, + srp = SRP, +- next_protocol_negotiation = NextProtocolNegotiation, +- ec_point_formats = EcPointFormats0, +- elliptic_curves = EllipticCurves0}, Version, ++ ec_point_formats = ECCFormat, ++ next_protocol_negotiation = NextProtocolNegotiation}, Version, + #ssl_options{secure_renegotiate = SecureRenegotation} = Opts, + #session{cipher_suite = CipherSuite, compression_method = Compression} = Session0, + ConnectionStates0, Renegotiation) -> +@@ -937,12 +950,11 @@ handle_client_hello_extensions(RecordCB, Random, + Random, CipherSuite, Compression, + ConnectionStates0, Renegotiation, SecureRenegotation), + ProtocolsToAdvertise = handle_next_protocol_extension(NextProtocolNegotiation, Renegotiation, Opts), +- {EcPointFormats, EllipticCurves} = handle_ecc_extensions(Version, EcPointFormats0, EllipticCurves0), ++ + ServerHelloExtensions = #hello_extensions{ + renegotiation_info = renegotiation_info(RecordCB, server, + ConnectionStates, Renegotiation), +- ec_point_formats = EcPointFormats, +- elliptic_curves = EllipticCurves, ++ ec_point_formats = server_ecc_extension(Version, ECCFormat), + next_protocol_negotiation = + encode_protocols_advertised_on_server(ProtocolsToAdvertise) + }, +@@ -1078,7 +1090,7 @@ srp_user(#ssl_options{srp_identity = {UserName, _}}) -> + srp_user(_) -> + undefined. + +-ecc_extensions(Module, Version) -> ++client_ecc_extensions(Module, Version) -> + CryptoSupport = proplists:get_value(public_keys, crypto:supports()), + case proplists:get_bool(ecdh, CryptoSupport) of + true -> +@@ -1089,15 +1101,13 @@ ecc_extensions(Module, Version) -> + {undefined, undefined} + end. + +-handle_ecc_extensions(Version, EcPointFormats0, EllipticCurves0) -> ++server_ecc_extension(_Version, EcPointFormats) -> + CryptoSupport = proplists:get_value(public_keys, crypto:supports()), + case proplists:get_bool(ecdh, CryptoSupport) of + true -> +- EcPointFormats1 = handle_ecc_point_fmt_extension(EcPointFormats0), +- EllipticCurves1 = handle_ecc_curves_extension(Version, EllipticCurves0), +- {EcPointFormats1, EllipticCurves1}; +- _ -> +- {undefined, undefined} ++ handle_ecc_point_fmt_extension(EcPointFormats); ++ false -> ++ undefined + end. + + handle_ecc_point_fmt_extension(undefined) -> +@@ -1105,11 +1115,6 @@ handle_ecc_point_fmt_extension(undefined) -> + handle_ecc_point_fmt_extension(_) -> + #ec_point_formats{ec_point_format_list = [?ECPOINT_UNCOMPRESSED]}. + +-handle_ecc_curves_extension(_Version, undefined) -> +- undefined; +-handle_ecc_curves_extension(Version, _) -> +- #elliptic_curves{elliptic_curve_list = tls_v1:ecc_curves(Version)}. +- + advertises_ec_ciphers([]) -> + false; + advertises_ec_ciphers([{ecdh_ecdsa, _,_,_} | _]) -> +@@ -1124,6 +1129,22 @@ advertises_ec_ciphers([{ecdh_anon, _,_,_} | _]) -> + true; + advertises_ec_ciphers([_| Rest]) -> + advertises_ec_ciphers(Rest). ++select_curve(#elliptic_curves{elliptic_curve_list = ClientCurves}, ++ #elliptic_curves{elliptic_curve_list = ServerCurves}) -> ++ select_curve(ClientCurves, ServerCurves); ++select_curve(undefined, _) -> ++ %% Client did not send ECC extension use default curve if ++ %% ECC cipher is negotiated ++ {namedCurve, ?secp256k1}; ++select_curve(_, []) -> ++ no_curve; ++select_curve(Curves, [Curve| Rest]) -> ++ case lists:member(Curve, Curves) of ++ true -> ++ {namedCurve, Curve}; ++ false -> ++ select_curve(Curves, Rest) ++ end. + + %%-------------------------------------------------------------------- + %%% Internal functions +@@ -1648,3 +1669,4 @@ advertised_hash_signs({Major, Minor}) when Major >= 3 andalso Minor >= 3 -> + ({Hash, _}) -> proplists:get_bool(Hash, Hashs) end, HashSigns)}; + advertised_hash_signs(_) -> + undefined. ++ +diff --git a/lib/ssl/src/ssl_handshake.hrl b/lib/ssl/src/ssl_handshake.hrl +index 3a3ad8c..f25b0df 100644 +--- lib/ssl/src/ssl_handshake.hrl ++++ lib/ssl/src/ssl_handshake.hrl +@@ -45,7 +45,8 @@ + master_secret, + srp_username, + is_resumable, +- time_stamp ++ time_stamp, ++ ecc + }). + + -define(NUM_OF_SESSION_ID_BYTES, 32). % TSL 1.1 & SSL 3 +diff --git a/lib/ssl/src/tls_connection.erl b/lib/ssl/src/tls_connection.erl +index 5618837..39595b4 100644 +--- lib/ssl/src/tls_connection.erl ++++ lib/ssl/src/tls_connection.erl +@@ -97,8 +97,7 @@ + terminated = false, % + allow_renegotiate = true, + expecting_next_protocol_negotiation = false :: boolean(), +- next_protocol = undefined :: undefined | binary(), +- client_ecc % {Curves, PointFmt} ++ next_protocol = undefined :: undefined | binary() + }). + + -define(DEFAULT_DIFFIE_HELLMAN_PARAMS, +@@ -405,26 +404,24 @@ hello(#server_hello{cipher_suite = CipherSuite, + hello(Hello = #client_hello{client_version = ClientVersion, + extensions = #hello_extensions{hash_signs = HashSigns}}, + State = #state{connection_states = ConnectionStates0, +- port = Port, session = #session{own_certificate = Cert} = Session0, ++ port = Port, ++ session = #session{own_certificate = Cert} = Session0, + renegotiation = {Renegotiation, _}, + session_cache = Cache, + session_cache_cb = CacheCb, + ssl_options = SslOpts}) -> + HashSign = ssl_handshake:select_hashsign(HashSigns, Cert), + case tls_handshake:hello(Hello, SslOpts, {Port, Session0, Cache, CacheCb, +- ConnectionStates0, Cert}, Renegotiation) of ++ ConnectionStates0, Cert}, Renegotiation) of + {Version, {Type, #session{cipher_suite = CipherSuite} = Session}, +- ConnectionStates, +- #hello_extensions{ec_point_formats = EcPointFormats, +- elliptic_curves = EllipticCurves} = ServerHelloExt} -> ++ ConnectionStates, ServerHelloExt} -> + {KeyAlg, _, _, _} = ssl_cipher:suite_definition(CipherSuite), +- NegotiatedHashSign = negotiated_hashsign(HashSign, KeyAlg, Version), +- do_server_hello(Type, ServerHelloExt, ++ NegotiatedHashSign = negotiated_hashsign(HashSign, KeyAlg, Version), ++ do_server_hello(Type, ServerHelloExt, + State#state{connection_states = ConnectionStates, + negotiated_version = Version, + session = Session, +- hashsign_algorithm = NegotiatedHashSign, +- client_ecc = {EllipticCurves, EcPointFormats}}); ++ hashsign_algorithm = NegotiatedHashSign}); + #alert{} = Alert -> + handle_own_alert(Alert, ClientVersion, hello, State) + end; +@@ -1647,12 +1644,13 @@ key_exchange(#state{role = server, key_algorithm = Algo, + negotiated_version = Version, + tls_handshake_history = Handshake0, + socket = Socket, +- transport_cb = Transport ++ transport_cb = Transport, ++ session = #session{ecc = Curve} + } = State) + when Algo == ecdhe_ecdsa; Algo == ecdhe_rsa; + Algo == ecdh_anon -> + +- ECDHKeys = public_key:generate_key(select_curve(State)), ++ ECDHKeys = public_key:generate_key(Curve), + ConnectionState = + ssl_record:pending_connection_state(ConnectionStates0, read), + SecParams = ConnectionState#connection_state.security_parameters, +@@ -3086,12 +3084,7 @@ default_hashsign(_Version, KeyExchange) + KeyExchange == rsa_psk; + KeyExchange == srp_anon -> + {null, anon}. +- +-select_curve(#state{client_ecc = {[Curve|_], _}}) -> +- {namedCurve, Curve}; +-select_curve(_) -> +- {namedCurve, ?secp256k1}. +- ++ + is_anonymous(Algo) when Algo == dh_anon; + Algo == ecdh_anon; + Algo == psk; +diff --git a/lib/ssl/src/tls_handshake.erl b/lib/ssl/src/tls_handshake.erl +index 02bfa69..ecbca83 100644 +--- lib/ssl/src/tls_handshake.erl ++++ lib/ssl/src/tls_handshake.erl +@@ -70,7 +70,7 @@ client_hello(Host, Port, ConnectionStates, + }. + + %%-------------------------------------------------------------------- +--spec server_hello(#session{}, tls_version(), #connection_states{}, ++-spec server_hello(binary(), tls_version(), #connection_states{}, + #hello_extensions{}) -> #server_hello{}. + %% + %% Description: Creates a server hello message. +@@ -120,17 +120,16 @@ hello(#client_hello{client_version = ClientVersion, + cipher_suites = CipherSuites, + compression_methods = Compressions, + random = Random, +- extensions = HelloExt}, ++ extensions = #hello_extensions{elliptic_curves = Curves} = HelloExt}, + #ssl_options{versions = Versions} = SslOpts, + {Port, Session0, Cache, CacheCb, ConnectionStates0, Cert}, Renegotiation) -> + Version = ssl_handshake:select_version(tls_record, ClientVersion, Versions), + case tls_record:is_acceptable_version(Version, Versions) of + true -> +- %% TODO: need to take supported Curves into Account when selecting the CipherSuite.... +- %% if whe have an ECDSA cert with an unsupported curve, we need to drop ECDSA ciphers ++ ECCCurve = ssl_handshake:select_curve(Curves, ssl_handshake:supported_ecc(Version)), + {Type, #session{cipher_suite = CipherSuite} = Session1} + = ssl_handshake:select_session(SugesstedId, CipherSuites, Compressions, +- Port, Session0, Version, ++ Port, Session0#session{ecc = ECCCurve}, Version, + SslOpts, Cache, CacheCb, Cert), + case CipherSuite of + no_suite -> --- erlang-16.b.02,3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 00:20:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E5842C2; Tue, 10 Dec 2013 00:20:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 740B81EE8; Tue, 10 Dec 2013 00:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA0KLsU058832; Tue, 10 Dec 2013 00:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA0KLLw058831; Tue, 10 Dec 2013 00:20:21 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 00:20:21 GMT Message-Id: <201312100020.rBA0KLLw058831@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184646: [PATCH] lang/erlang: tls ecc fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 00:20:21 -0000 Synopsis: [PATCH] lang/erlang: tls ecc fix Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 00:20:21 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184646 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 00:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACD9069F for ; Tue, 10 Dec 2013 00:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 808F41F9C for ; Tue, 10 Dec 2013 00:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA0U0F2060707 for ; Tue, 10 Dec 2013 00:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA0U0Au060706; Tue, 10 Dec 2013 00:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 00:30:00 GMT Resent-Message-Id: <201312100030.rBA0U0Au060706@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "ports@c0decafe.net" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C55C4F6 for ; Tue, 10 Dec 2013 00:24:14 +0000 (UTC) Received: from web1.noc3.net (web1.noc3.net [85.10.198.217]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49E4B1F5E for ; Tue, 10 Dec 2013 00:24:12 +0000 (UTC) Received: from vystrel.c0decafe.net (vystrel.c0decafe.net [IPv6:2a01:4f8:a0:5ffe:c0de:cafe:0:3]) by web1.noc3.net (Postfix) with ESMTP id 44870277D6; Tue, 10 Dec 2013 00:24:09 +0000 (GMT) Received: from vystrel.c0decafe.net (localhost [127.0.0.1]) by vystrel.c0decafe.net (8.14.7/8.14.7) with ESMTP id rBA0O8C7013267 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 10 Dec 2013 02:24:08 +0200 (EET) (envelope-from bartender@c0decafe.net) Received: (from bartender@localhost) by vystrel.c0decafe.net (8.14.7/8.14.7/Submit) id rBA0O7EH013266; Tue, 10 Dec 2013 02:24:07 +0200 (EET) (envelope-from bartender) Message-Id: <201312100024.rBA0O7EH013266@vystrel.c0decafe.net> Date: Tue, 10 Dec 2013 02:24:07 +0200 (EET) From: "ports@c0decafe.net" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 Cc: adams-ports@ateamsystems.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 00:30:00 -0000 >Number: 184647 >Category: ports >Synopsis: [PATCH] databases/couchdb: update to 1.5.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 00:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: ports@c0decafe.net >Release: FreeBSD 10.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD vystrel.c0decafe.net 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #9 r259108: Mon Dec 9 03:23:52 >Description: - Update to 1.5.0 Port maintainer (adams-ports@ateamsystems.com) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- couchdb-1.5.0,1.patch begins here --- diff -ruN /usr/ports/databases/couchdb/Makefile ./Makefile --- /usr/ports/databases/couchdb/Makefile 2013-11-03 06:58:44.000000000 +0200 +++ ./Makefile 2013-12-10 01:36:58.000000000 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: databases/couchdb/Makefile 332584 2013-11-03 04:58:44Z tabthorpe $ PORTNAME= couchdb -PORTVERSION= 1.4.0 +PORTVERSION= 1.5.0 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_APACHE} @@ -68,7 +68,7 @@ post-configure: # Cater for parallel Spidermonkey v1.7 and v1.8.5 installs by ensuring that -# jsapi.h gets pulled from /usr/local/include/js/ instead of /usr/local/include +# jsapi.h gets pulled from /usr/local/include/js/ instead of /usr/local/include @${FIND} ${WRKSRC} -name Makefile|${XARGS} ${REINPLACE_CMD} -e 's|include -I/usr/local/include/js|include/js -I/usr/local/include|' diff -ruN /usr/ports/databases/couchdb/distinfo ./distinfo --- /usr/ports/databases/couchdb/distinfo 2013-11-03 06:58:44.000000000 +0200 +++ ./distinfo 2013-12-09 23:26:32.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (apache-couchdb-1.4.0.tar.gz) = bdbb9c35c2738ae0fe63280bd818a50443253f3db2184f8b9c386e5615ae02b5 -SIZE (apache-couchdb-1.4.0.tar.gz) = 3422107 +SHA256 (apache-couchdb-1.5.0.tar.gz) = abbdb2a6433124a4a4b902856f6a8a070d53bf7a55faa7aa8b6feb7127638fef +SIZE (apache-couchdb-1.5.0.tar.gz) = 11594978 diff -ruN /usr/ports/databases/couchdb/pkg-plist ./pkg-plist --- /usr/ports/databases/couchdb/pkg-plist 2013-11-03 06:58:44.000000000 +0200 +++ ./pkg-plist 2013-12-10 01:36:37.000000000 +0200 @@ -6,480 +6,673 @@ etc/couchdb/local.ini.sample @exec if [ ! -f %D/etc/couchdb/local.ini ] ; then cp -p %D/%F %B/local.ini; chown couchdb:couchdb %B/local.ini; fi etc/logrotate.d/couchdb -info/CouchDB -lib/couchdb/bin/couchjs -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch.app -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_app.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_auth_cache.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_btree.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_changes.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_compaction_daemon.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_compress.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_config.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_config_writer.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_db.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_db_update_notifier.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_db_update_notifier_sup.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_db_updater.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_doc.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_drv.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_ejson_compare.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_event_sup.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_external_manager.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_external_server.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_file.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_auth.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_cors.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_db.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_external.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_misc_handlers.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_oauth.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_proxy.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_rewrite.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_stats_handlers.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_httpd_vhost.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_key_tree.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_log.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_native_process.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_os_daemons.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_os_process.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_passwords.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_primary_sup.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_query_servers.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_ref_counter.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_secondary_sup.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_server.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_server_sup.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_stats_aggregator.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_stats_collector.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_stream.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_task_status.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_users_db.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_util.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_uuids.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/couch_work_queue.beam -lib/couchdb/erlang/lib/couch-1.4.0/ebin/json_stream_parse.beam -lib/couchdb/erlang/lib/couch-1.4.0/include/couch_db.hrl -lib/couchdb/erlang/lib/couch-1.4.0/include/couch_js_functions.hrl -lib/couchdb/erlang/lib/couch-1.4.0/priv/couchspawnkillable -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_ejson_compare.a -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_ejson_compare.la -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_ejson_compare.so -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_icu_driver.a -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_icu_driver.la -lib/couchdb/erlang/lib/couch-1.4.0/priv/lib/couch_icu_driver.so -lib/couchdb/erlang/lib/couch-1.4.0/priv/stat_descriptions.cfg -lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin/couch_dbupdates.beam +%%DATADIR%%/www/verify_install.html +%%DATADIR%%/www/custom_test.html +%%DATADIR%%/www/script/jquery.js +%%DATADIR%%/www/script/oauth.js +%%DATADIR%%/www/script/replicator_db_inc.js +%%DATADIR%%/www/script/couch.js +%%DATADIR%%/www/script/test/rev_stemming.js +%%DATADIR%%/www/script/test/replicator_db_successive.js +%%DATADIR%%/www/script/test/replicator_db_survives.js +%%DATADIR%%/www/script/test/invalid_docids.js +%%DATADIR%%/www/script/test/attachment_paths.js +%%DATADIR%%/www/script/test/delayed_commits.js +%%DATADIR%%/www/script/test/attachment_ranges.js +%%DATADIR%%/www/script/test/oauth.js +%%DATADIR%%/www/script/test/compact.js +%%DATADIR%%/www/script/test/view_pagination.js +%%DATADIR%%/www/script/test/view_conflicts.js +%%DATADIR%%/www/script/test/replicator_db_compact_rep_db.js +%%DATADIR%%/www/script/test/attachment_views.js +%%DATADIR%%/www/script/test/jsonp.js +%%DATADIR%%/www/script/test/all_docs.js +%%DATADIR%%/www/script/test/replicator_db_credential_delegation.js +%%DATADIR%%/www/script/test/update_documents.js +%%DATADIR%%/www/script/test/recreate_doc.js +%%DATADIR%%/www/script/test/attachments_multipart.js +%%DATADIR%%/www/script/test/replicator_db_user_ctx.js +%%DATADIR%%/www/script/test/view_multi_key_all_docs.js +%%DATADIR%%/www/script/test/design_docs.js +%%DATADIR%%/www/script/test/changes.js +%%DATADIR%%/www/script/test/utf8.js +%%DATADIR%%/www/script/test/conflicts.js +%%DATADIR%%/www/script/test/replicator_db_security.js +%%DATADIR%%/www/script/test/auth_cache.js +%%DATADIR%%/www/script/test/lots_of_docs.js +%%DATADIR%%/www/script/test/uuids.js +%%DATADIR%%/www/script/test/view_sandboxing.js +%%DATADIR%%/www/script/test/view_offsets.js +%%DATADIR%%/www/script/test/replicator_db_update_security.js +%%DATADIR%%/www/script/test/rewrite.js +%%DATADIR%%/www/script/test/etags_views.js +%%DATADIR%%/www/script/test/lorem_b64.txt +%%DATADIR%%/www/script/test/replicator_db_swap_rep_db.js +%%DATADIR%%/www/script/test/large_docs.js +%%DATADIR%%/www/script/test/form_submit.js +%%DATADIR%%/www/script/test/reduce_false.js +%%DATADIR%%/www/script/test/replicator_db_bad_rep_id.js +%%DATADIR%%/www/script/test/oauth_users_db.js +%%DATADIR%%/www/script/test/replicator_db_identical.js +%%DATADIR%%/www/script/test/replicator_db_continuous.js +%%DATADIR%%/www/script/test/method_override.js +%%DATADIR%%/www/script/test/reader_acl.js +%%DATADIR%%/www/script/test/content_negotiation.js +%%DATADIR%%/www/script/test/users_db_security.js +%%DATADIR%%/www/script/test/view_compaction.js +%%DATADIR%%/www/script/test/etags_head.js +%%DATADIR%%/www/script/test/view_multi_key_temp.js +%%DATADIR%%/www/script/test/bulk_docs.js +%%DATADIR%%/www/script/test/design_options.js +%%DATADIR%%/www/script/test/users_db.js +%%DATADIR%%/www/script/test/replicator_db_by_doc_id.js +%%DATADIR%%/www/script/test/attachments.js +%%DATADIR%%/www/script/test/stats.js +%%DATADIR%%/www/script/test/view_errors.js +%%DATADIR%%/www/script/test/multiple_rows.js +%%DATADIR%%/www/script/test/list_views.js +%%DATADIR%%/www/script/test/batch_save.js +%%DATADIR%%/www/script/test/design_paths.js +%%DATADIR%%/www/script/test/basics.js +%%DATADIR%%/www/script/test/attachment_names.js +%%DATADIR%%/www/script/test/http.js +%%DATADIR%%/www/script/test/view_include_docs.js +%%DATADIR%%/www/script/test/replication.js +%%DATADIR%%/www/script/test/security_validation.js +%%DATADIR%%/www/script/test/erlang_views.js +%%DATADIR%%/www/script/test/proxyauth.js +%%DATADIR%%/www/script/test/show_documents.js +%%DATADIR%%/www/script/test/purge.js +%%DATADIR%%/www/script/test/view_collation.js +%%DATADIR%%/www/script/test/replicator_db_field_validation.js +%%DATADIR%%/www/script/test/coffee.js +%%DATADIR%%/www/script/test/copy_doc.js +%%DATADIR%%/www/script/test/config.js +%%DATADIR%%/www/script/test/replicator_db_write_auth.js +%%DATADIR%%/www/script/test/reduce_builtin.js +%%DATADIR%%/www/script/test/cookie_auth.js +%%DATADIR%%/www/script/test/view_multi_key_design.js +%%DATADIR%%/www/script/test/replicator_db_invalid_filter.js +%%DATADIR%%/www/script/test/reduce_false_temp.js +%%DATADIR%%/www/script/test/reduce.js +%%DATADIR%%/www/script/test/replicator_db_identical_continuous.js +%%DATADIR%%/www/script/test/lorem.txt +%%DATADIR%%/www/script/test/view_collation_raw.js +%%DATADIR%%/www/script/test/view_update_seq.js +%%DATADIR%%/www/script/test/replicator_db_simple.js +%%DATADIR%%/www/script/test/replicator_db_filtered.js +%%DATADIR%%/www/script/jquery.suggest.js +%%DATADIR%%/www/script/futon.format.js +%%DATADIR%%/www/script/futon.js +%%DATADIR%%/www/script/jquery.form.js +%%DATADIR%%/www/script/json2.js +%%DATADIR%%/www/script/couch_tests.js +%%DATADIR%%/www/script/futon.browse.js +%%DATADIR%%/www/script/jquery.dialog.js +%%DATADIR%%/www/script/base64.js +%%DATADIR%%/www/script/jspec/jspec.jquery.js +%%DATADIR%%/www/script/jspec/jspec.xhr.js +%%DATADIR%%/www/script/jspec/jspec.css +%%DATADIR%%/www/script/jspec/jspec.js +%%DATADIR%%/www/script/jquery-ui-1.8.11.custom.min.js +%%DATADIR%%/www/script/jquery.resizer.js +%%DATADIR%%/www/script/jquery.couch.js +%%DATADIR%%/www/script/sha1.js +%%DATADIR%%/www/script/couch_test_runner.js +%%DATADIR%%/www/script/jquery.editinline.js +%%DATADIR%%/www/couch_tests.html +%%DATADIR%%/www/status.html +%%DATADIR%%/www/session.html +%%DATADIR%%/www/image/spinner_33.gif +%%DATADIR%%/www/image/thead-key.gif +%%DATADIR%%/www/image/load.png +%%DATADIR%%/www/image/toggle-collapse.gif +%%DATADIR%%/www/image/test_success.gif +%%DATADIR%%/www/image/twisty.gif +%%DATADIR%%/www/image/toggle-expand.gif +%%DATADIR%%/www/image/run-mini.png +%%DATADIR%%/www/image/running.png +%%DATADIR%%/www/image/rarrow.png +%%DATADIR%%/www/image/key.png +%%DATADIR%%/www/image/path.gif +%%DATADIR%%/www/image/compact.png +%%DATADIR%%/www/image/save.png +%%DATADIR%%/www/image/sidebar-toggle.png +%%DATADIR%%/www/image/logo.png +%%DATADIR%%/www/image/delete.png +%%DATADIR%%/www/image/run.png +%%DATADIR%%/www/image/apply.gif +%%DATADIR%%/www/image/spinner_6b.gif +%%DATADIR%%/www/image/order-asc.gif +%%DATADIR%%/www/image/cancel.gif +%%DATADIR%%/www/image/add.png +%%DATADIR%%/www/image/hgrad.gif +%%DATADIR%%/www/image/delete-mini.png +%%DATADIR%%/www/image/progress.gif +%%DATADIR%%/www/image/spinner.gif +%%DATADIR%%/www/image/grippie.gif +%%DATADIR%%/www/image/order-desc.gif +%%DATADIR%%/www/image/test_failure.gif +%%DATADIR%%/www/image/bg.png +%%DATADIR%%/www/image/thead.gif +%%DATADIR%%/www/favicon.ico +%%DATADIR%%/www/config.html +%%DATADIR%%/www/dialog/_delete_database.html +%%DATADIR%%/www/dialog/_admin_party.html +%%DATADIR%%/www/dialog/_delete_document.html +%%DATADIR%%/www/dialog/_create_admin.html +%%DATADIR%%/www/dialog/_save_view_as.html +%%DATADIR%%/www/dialog/_share_test_reports.html +%%DATADIR%%/www/dialog/_change_password.html +%%DATADIR%%/www/dialog/_create_database.html +%%DATADIR%%/www/dialog/_compact_cleanup.html +%%DATADIR%%/www/dialog/_login.html +%%DATADIR%%/www/dialog/_create_config.html +%%DATADIR%%/www/dialog/_database_security.html +%%DATADIR%%/www/dialog/_signup.html +%%DATADIR%%/www/dialog/_upload_attachment.html +%%DATADIR%%/www/style/jquery-ui-1.8.11.custom.css +%%DATADIR%%/www/style/layout.css +%%DATADIR%%/www/document.html +%%DATADIR%%/www/index.html +%%DATADIR%%/www/docs/query-server/index.html +%%DATADIR%%/www/docs/query-server/protocol.html +%%DATADIR%%/www/docs/query-server/javascript.html +%%DATADIR%%/www/docs/query-server/erlang.html +%%DATADIR%%/www/docs/objects.inv +%%DATADIR%%/www/docs/about.html +%%DATADIR%%/www/docs/_static/comment.png +%%DATADIR%%/www/docs/_static/down.png +%%DATADIR%%/www/docs/_static/plus.png +%%DATADIR%%/www/docs/_static/ajax-loader.gif +%%DATADIR%%/www/docs/_static/up.png +%%DATADIR%%/www/docs/_static/websupport.js +%%DATADIR%%/www/docs/_static/up-pressed.png +%%DATADIR%%/www/docs/_static/rtd.css +%%DATADIR%%/www/docs/_static/jquery.js +%%DATADIR%%/www/docs/_static/comment-bright.png +%%DATADIR%%/www/docs/_static/minus.png +%%DATADIR%%/www/docs/_static/underscore.js +%%DATADIR%%/www/docs/_static/favicon.ico +%%DATADIR%%/www/docs/_static/pygments.css +%%DATADIR%%/www/docs/_static/file.png +%%DATADIR%%/www/docs/_static/default.css +%%DATADIR%%/www/docs/_static/doctools.js +%%DATADIR%%/www/docs/_static/down-pressed.png +%%DATADIR%%/www/docs/_static/logo.png +%%DATADIR%%/www/docs/_static/searchtools.js +%%DATADIR%%/www/docs/_static/sidebar.js +%%DATADIR%%/www/docs/_static/comment-close.png +%%DATADIR%%/www/docs/_static/basic.css +%%DATADIR%%/www/docs/contributing.html +%%DATADIR%%/www/docs/download.html +%%DATADIR%%/www/docs/api/document/index.html +%%DATADIR%%/www/docs/api/document/common.html +%%DATADIR%%/www/docs/api/document/attachments.html +%%DATADIR%%/www/docs/api/local.html +%%DATADIR%%/www/docs/api/server/authn.html +%%DATADIR%%/www/docs/api/server/configuration.html +%%DATADIR%%/www/docs/api/server/common.html +%%DATADIR%%/www/docs/api/server/index.html +%%DATADIR%%/www/docs/api/database/index.html +%%DATADIR%%/www/docs/api/database/misc.html +%%DATADIR%%/www/docs/api/database/bulk-api.html +%%DATADIR%%/www/docs/api/database/common.html +%%DATADIR%%/www/docs/api/database/security.html +%%DATADIR%%/www/docs/api/database/temp-views.html +%%DATADIR%%/www/docs/api/database/changes.html +%%DATADIR%%/www/docs/api/database/compact.html +%%DATADIR%%/www/docs/api/ddoc/rewrites.html +%%DATADIR%%/www/docs/api/ddoc/views.html +%%DATADIR%%/www/docs/api/ddoc/index.html +%%DATADIR%%/www/docs/api/ddoc/common.html +%%DATADIR%%/www/docs/api/ddoc/render.html +%%DATADIR%%/www/docs/api/basics.html +%%DATADIR%%/www/docs/api/index.html +%%DATADIR%%/www/docs/maintenance/performance.html +%%DATADIR%%/www/docs/maintenance/index.html +%%DATADIR%%/www/docs/maintenance/compaction.html +%%DATADIR%%/www/docs/_images/intro-why-01.png +%%DATADIR%%/www/docs/_images/intro-tour-04.png +%%DATADIR%%/www/docs/_images/intro-tour-03.png +%%DATADIR%%/www/docs/_images/views-intro-03.png +%%DATADIR%%/www/docs/_images/views-intro-04.png +%%DATADIR%%/www/docs/_images/futon-createdb.png +%%DATADIR%%/www/docs/_images/intro-consistency-03.png +%%DATADIR%%/www/docs/_images/intro-consistency-04.png +%%DATADIR%%/www/docs/_images/intro-tour-02.png +%%DATADIR%%/www/docs/_images/intro-tour-05.png +%%DATADIR%%/www/docs/_images/futon-editeddoc.png +%%DATADIR%%/www/docs/_images/intro-consistency-05.png +%%DATADIR%%/www/docs/_images/intro-consistency-02.png +%%DATADIR%%/www/docs/_images/views-intro-02.png +%%DATADIR%%/www/docs/_images/intro-consistency-01.png +%%DATADIR%%/www/docs/_images/intro-consistency-06.png +%%DATADIR%%/www/docs/_images/views-intro-01.png +%%DATADIR%%/www/docs/_images/intro-tour-10.png +%%DATADIR%%/www/docs/_images/intro-tour-08.png +%%DATADIR%%/www/docs/_images/intro-tour-06.png +%%DATADIR%%/www/docs/_images/intro-tour-01.png +%%DATADIR%%/www/docs/_images/intro-why-03.png +%%DATADIR%%/www/docs/_images/futon-replform.png +%%DATADIR%%/www/docs/_images/futon-overview.png +%%DATADIR%%/www/docs/_images/futon-editdoc.png +%%DATADIR%%/www/docs/_images/intro-consistency-07.png +%%DATADIR%%/www/docs/_images/intro-why-02.png +%%DATADIR%%/www/docs/_images/intro-tour-07.png +%%DATADIR%%/www/docs/_images/intro-tour-09.png +%%DATADIR%%/www/docs/config-ref.html +%%DATADIR%%/www/docs/search.html +%%DATADIR%%/www/docs/http-api.html +%%DATADIR%%/www/docs/install/freebsd.html +%%DATADIR%%/www/docs/install/windows.html +%%DATADIR%%/www/docs/install/mac.html +%%DATADIR%%/www/docs/install/index.html +%%DATADIR%%/www/docs/install/unix.html +%%DATADIR%%/www/docs/replication/index.html +%%DATADIR%%/www/docs/replication/replicator.html +%%DATADIR%%/www/docs/replication/intro.html +%%DATADIR%%/www/docs/replication/protocol.html +%%DATADIR%%/www/docs/replication/conflicts.html +%%DATADIR%%/www/docs/json-structure.html +%%DATADIR%%/www/docs/_sources/config/index.txt +%%DATADIR%%/www/docs/_sources/config/query-servers.txt +%%DATADIR%%/www/docs/_sources/config/proxying.txt +%%DATADIR%%/www/docs/_sources/config/couchdb.txt +%%DATADIR%%/www/docs/_sources/config/http.txt +%%DATADIR%%/www/docs/_sources/config/externals.txt +%%DATADIR%%/www/docs/_sources/config/services.txt +%%DATADIR%%/www/docs/_sources/config/replicator.txt +%%DATADIR%%/www/docs/_sources/config/http-handlers.txt +%%DATADIR%%/www/docs/_sources/config/logging.txt +%%DATADIR%%/www/docs/_sources/config/auth.txt +%%DATADIR%%/www/docs/_sources/config/compaction.txt +%%DATADIR%%/www/docs/_sources/config/intro.txt +%%DATADIR%%/www/docs/_sources/config/misc.txt +%%DATADIR%%/www/docs/_sources/cve/2012-5641.txt +%%DATADIR%%/www/docs/_sources/cve/2012-5650.txt +%%DATADIR%%/www/docs/_sources/cve/2010-3854.txt +%%DATADIR%%/www/docs/_sources/cve/2012-5649.txt +%%DATADIR%%/www/docs/_sources/cve/2010-2234.txt +%%DATADIR%%/www/docs/_sources/cve/2010-0009.txt +%%DATADIR%%/www/docs/_sources/cve/index.txt +%%DATADIR%%/www/docs/_sources/externals.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.5.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.2.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.3.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.4.txt +%%DATADIR%%/www/docs/_sources/whatsnew/0.11.txt +%%DATADIR%%/www/docs/_sources/whatsnew/0.9.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.0.txt +%%DATADIR%%/www/docs/_sources/whatsnew/0.10.txt +%%DATADIR%%/www/docs/_sources/whatsnew/0.8.txt +%%DATADIR%%/www/docs/_sources/whatsnew/index.txt +%%DATADIR%%/www/docs/_sources/whatsnew/1.1.txt +%%DATADIR%%/www/docs/_sources/contributing.txt +%%DATADIR%%/www/docs/_sources/query-server/index.txt +%%DATADIR%%/www/docs/_sources/query-server/erlang.txt +%%DATADIR%%/www/docs/_sources/query-server/javascript.txt +%%DATADIR%%/www/docs/_sources/query-server/protocol.txt +%%DATADIR%%/www/docs/_sources/replication/intro.txt +%%DATADIR%%/www/docs/_sources/replication/protocol.txt +%%DATADIR%%/www/docs/_sources/replication/replicator.txt +%%DATADIR%%/www/docs/_sources/replication/conflicts.txt +%%DATADIR%%/www/docs/_sources/replication/index.txt +%%DATADIR%%/www/docs/_sources/experimental.txt +%%DATADIR%%/www/docs/_sources/couchapp/ddocs.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/pagination.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/intro.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/collation.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/index.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/nosql.txt +%%DATADIR%%/www/docs/_sources/couchapp/views/joins.txt +%%DATADIR%%/www/docs/_sources/couchapp/index.txt +%%DATADIR%%/www/docs/_sources/install/mac.txt +%%DATADIR%%/www/docs/_sources/install/freebsd.txt +%%DATADIR%%/www/docs/_sources/install/windows.txt +%%DATADIR%%/www/docs/_sources/install/index.txt +%%DATADIR%%/www/docs/_sources/install/unix.txt +%%DATADIR%%/www/docs/_sources/api/local.txt +%%DATADIR%%/www/docs/_sources/api/index.txt +%%DATADIR%%/www/docs/_sources/api/ddoc/views.txt +%%DATADIR%%/www/docs/_sources/api/ddoc/rewrites.txt +%%DATADIR%%/www/docs/_sources/api/ddoc/index.txt +%%DATADIR%%/www/docs/_sources/api/ddoc/common.txt +%%DATADIR%%/www/docs/_sources/api/ddoc/render.txt +%%DATADIR%%/www/docs/_sources/api/database/bulk-api.txt +%%DATADIR%%/www/docs/_sources/api/database/changes.txt +%%DATADIR%%/www/docs/_sources/api/database/temp-views.txt +%%DATADIR%%/www/docs/_sources/api/database/misc.txt +%%DATADIR%%/www/docs/_sources/api/database/index.txt +%%DATADIR%%/www/docs/_sources/api/database/security.txt +%%DATADIR%%/www/docs/_sources/api/database/compact.txt +%%DATADIR%%/www/docs/_sources/api/database/common.txt +%%DATADIR%%/www/docs/_sources/api/server/authn.txt +%%DATADIR%%/www/docs/_sources/api/server/common.txt +%%DATADIR%%/www/docs/_sources/api/server/configuration.txt +%%DATADIR%%/www/docs/_sources/api/server/index.txt +%%DATADIR%%/www/docs/_sources/api/basics.txt +%%DATADIR%%/www/docs/_sources/api/document/attachments.txt +%%DATADIR%%/www/docs/_sources/api/document/index.txt +%%DATADIR%%/www/docs/_sources/api/document/common.txt +%%DATADIR%%/www/docs/_sources/contents.txt +%%DATADIR%%/www/docs/_sources/fauxton/addons.txt +%%DATADIR%%/www/docs/_sources/fauxton/install.txt +%%DATADIR%%/www/docs/_sources/fauxton/index.txt +%%DATADIR%%/www/docs/_sources/json-structure.txt +%%DATADIR%%/www/docs/_sources/intro/overview.txt +%%DATADIR%%/www/docs/_sources/intro/index.txt +%%DATADIR%%/www/docs/_sources/intro/api.txt +%%DATADIR%%/www/docs/_sources/intro/consistency.txt +%%DATADIR%%/www/docs/_sources/intro/tour.txt +%%DATADIR%%/www/docs/_sources/intro/futon.txt +%%DATADIR%%/www/docs/_sources/intro/curl.txt +%%DATADIR%%/www/docs/_sources/intro/why.txt +%%DATADIR%%/www/docs/_sources/intro/security.txt +%%DATADIR%%/www/docs/_sources/maintenance/performance.txt +%%DATADIR%%/www/docs/_sources/maintenance/index.txt +%%DATADIR%%/www/docs/_sources/maintenance/compaction.txt +%%DATADIR%%/www/docs/_sources/about.txt +%%DATADIR%%/www/docs/config/externals.html +%%DATADIR%%/www/docs/config/services.html +%%DATADIR%%/www/docs/config/http.html +%%DATADIR%%/www/docs/config/replicator.html +%%DATADIR%%/www/docs/config/query-servers.html +%%DATADIR%%/www/docs/config/misc.html +%%DATADIR%%/www/docs/config/auth.html +%%DATADIR%%/www/docs/config/compaction.html +%%DATADIR%%/www/docs/config/proxying.html +%%DATADIR%%/www/docs/config/couchdb.html +%%DATADIR%%/www/docs/config/intro.html +%%DATADIR%%/www/docs/config/logging.html +%%DATADIR%%/www/docs/config/index.html +%%DATADIR%%/www/docs/config/http-handlers.html +%%DATADIR%%/www/docs/fauxton/install.html +%%DATADIR%%/www/docs/fauxton/index.html +%%DATADIR%%/www/docs/fauxton/addons.html +%%DATADIR%%/www/docs/intro/overview.html +%%DATADIR%%/www/docs/intro/index.html +%%DATADIR%%/www/docs/intro/security.html +%%DATADIR%%/www/docs/intro/why.html +%%DATADIR%%/www/docs/intro/futon.html +%%DATADIR%%/www/docs/intro/curl.html +%%DATADIR%%/www/docs/intro/tour.html +%%DATADIR%%/www/docs/intro/api.html +%%DATADIR%%/www/docs/intro/consistency.html +%%DATADIR%%/www/docs/cve/index.html +%%DATADIR%%/www/docs/cve/2010-0009.html +%%DATADIR%%/www/docs/cve/2012-5650.html +%%DATADIR%%/www/docs/cve/2010-3854.html +%%DATADIR%%/www/docs/cve/2010-2234.html +%%DATADIR%%/www/docs/cve/2012-5641.html +%%DATADIR%%/www/docs/cve/2012-5649.html +%%DATADIR%%/www/docs/whatsnew/1.5.html +%%DATADIR%%/www/docs/whatsnew/0.11.html +%%DATADIR%%/www/docs/whatsnew/1.1.html +%%DATADIR%%/www/docs/whatsnew/1.4.html +%%DATADIR%%/www/docs/whatsnew/0.10.html +%%DATADIR%%/www/docs/whatsnew/1.0.html +%%DATADIR%%/www/docs/whatsnew/0.8.html +%%DATADIR%%/www/docs/whatsnew/index.html +%%DATADIR%%/www/docs/whatsnew/1.2.html +%%DATADIR%%/www/docs/whatsnew/1.3.html +%%DATADIR%%/www/docs/whatsnew/0.9.html +%%DATADIR%%/www/docs/externals.html +%%DATADIR%%/www/docs/couchapp/index.html +%%DATADIR%%/www/docs/couchapp/ddocs.html +%%DATADIR%%/www/docs/couchapp/views/collation.html +%%DATADIR%%/www/docs/couchapp/views/joins.html +%%DATADIR%%/www/docs/couchapp/views/index.html +%%DATADIR%%/www/docs/couchapp/views/nosql.html +%%DATADIR%%/www/docs/couchapp/views/pagination.html +%%DATADIR%%/www/docs/couchapp/views/intro.html +%%DATADIR%%/www/docs/searchindex.js +%%DATADIR%%/www/docs/contents.html +%%DATADIR%%/www/docs/experimental.html +%%DATADIR%%/www/docs/index.html +%%DATADIR%%/www/replicator.html +%%DATADIR%%/www/spec/run.html +%%DATADIR%%/www/spec/couch_js_instance_methods_1_spec.js +%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_3_spec.js +%%DATADIR%%/www/spec/couch_js_class_methods_spec.js +%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_2_spec.js +%%DATADIR%%/www/spec/couch_js_instance_methods_2_spec.js +%%DATADIR%%/www/spec/custom_helpers.js +%%DATADIR%%/www/spec/jquery_couch_js_class_methods_spec.js +%%DATADIR%%/www/spec/couch_js_instance_methods_3_spec.js +%%DATADIR%%/www/spec/jquery_couch_js_instance_methods_1_spec.js +%%DATADIR%%/www/database.html +%%DATADIR%%/www/fauxton/index.html +%%DATADIR%%/www/fauxton/img/FontAwesome.otf +%%DATADIR%%/www/fauxton/img/minilogo.png +%%DATADIR%%/www/fauxton/img/fontawesome-webfont.eot +%%DATADIR%%/www/fauxton/img/fontawesome-webfont.svg +%%DATADIR%%/www/fauxton/img/linen.png +%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.ttf +%%DATADIR%%/www/fauxton/img/couchdb-site.png +%%DATADIR%%/www/fauxton/img/glyphicons-halflings-white.png +%%DATADIR%%/www/fauxton/img/fontawesome-webfont.woff +%%DATADIR%%/www/fauxton/img/fontawesome-webfont.ttf +%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.eot +%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.svg +%%DATADIR%%/www/fauxton/img/fontcustom_fauxton.woff +%%DATADIR%%/www/fauxton/img/glyphicons-halflings.png +%%DATADIR%%/www/fauxton/img/couchdblogo.png +%%DATADIR%%/www/fauxton/img/loader.gif +%%DATADIR%%/www/fauxton/css/index.css +%%DATADIR%%/www/fauxton/js/require.js +%%DATADIR%%/www/plugins.html +%%DATADIR%%/www/_sidebar.html +%%DATADIR%%/server/main-coffee.js +%%DATADIR%%/server/main.js +%%PORTDOCS%%%%DOCSDIR%%/BUGS.gz +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Windows.gz +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.gz +%%PORTDOCS%%%%DOCSDIR%%/NOTICE.gz +%%PORTDOCS%%%%DOCSDIR%%/DEVELOPERS.gz +%%PORTDOCS%%%%DOCSDIR%%/README.gz +%%PORTDOCS%%%%DOCSDIR%%/CouchDB.pdf.gz +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Unix.gz +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.gz +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.gz +%%PORTDOCS%%%%DOCSDIR%%/THANKS.gz +%%PORTDOCS%%@dirrm %%DOCSDIR%% lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin/couch_dbupdates_httpd.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_compactor.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_server.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_updater.beam -lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.app -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_cleanup.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_compactor.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_http.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_index.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_show.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_test_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_updater.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_util.beam -lib/couchdb/erlang/lib/couch_mrview-0.1/include/couch_mrview.hrl -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.app -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_api_wrap.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc_pool.beam +lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin/couch_dbupdates.beam +lib/couchdb/erlang/lib/etap/ebin/etap.beam +lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.a +lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.la +lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.so +lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.app +lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochinum.beam +lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochijson2.beam +lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_notifier.beam lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpd.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.app +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_utils.beam lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_job_sup.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc_pool.beam lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_manager.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_notifier.beam -lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_utils.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_httpc.beam lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_worker.beam +lib/couchdb/erlang/lib/couch_replicator-0.1/ebin/couch_replicator_api_wrap.beam lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator.hrl lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator_api_wrap.hrl lib/couchdb/erlang/lib/couch_replicator-0.1/include/couch_replicator_js_functions.hrl -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.app -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/ejson.beam -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochijson2.beam -lib/couchdb/erlang/lib/ejson-0.1.0/ebin/mochinum.beam -lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.a -lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.la -lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.so +lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_compactor.beam +lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index.beam +lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_updater.beam +lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_util.beam +lib/couchdb/erlang/lib/couch_index-0.1/ebin/couch_index_server.beam lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.app lib/couchdb/erlang/lib/erlang-oauth/ebin/oauth.beam -lib/couchdb/erlang/lib/etap/ebin/etap.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.app -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_app.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_http_client.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lb.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lib.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_sup.beam -lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_test.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/include/couch_mrview.hrl +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_http.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_show.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_cleanup.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_compactor.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_index.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview.app +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_util.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_updater.beam +lib/couchdb/erlang/lib/couch_mrview-0.1/ebin/couch_mrview_test_util.beam +lib/couchdb/erlang/lib/couch-1.5.0/priv/stat_descriptions.cfg +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_icu_driver.so +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_ejson_compare.a +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_ejson_compare.la +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_ejson_compare.so +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_icu_driver.la +lib/couchdb/erlang/lib/couch-1.5.0/priv/lib/couch_icu_driver.a +lib/couchdb/erlang/lib/couch-1.5.0/priv/couchspawnkillable +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_log.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_server_sup.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_secondary_sup.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_app.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_work_queue.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_drv.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_event_sup.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_query_servers.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_proxy.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/json_stream_parse.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_vhost.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_stats_handlers.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_cors.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_ref_counter.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_passwords.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_changes.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_auth_cache.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_stream.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_task_status.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_stats_collector.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_file.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_native_process.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_external_server.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_os_daemons.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_server.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_stats_aggregator.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_util.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_config_writer.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_doc.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_users_db.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_primary_sup.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_misc_handlers.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_compaction_daemon.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_btree.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_key_tree.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_rewrite.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_os_process.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_external_manager.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_uuids.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_db.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_ejson_compare.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_db.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_db_update_notifier_sup.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_external.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_config.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_db_update_notifier.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch.app +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_oauth.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_db_updater.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_httpd_auth.beam +lib/couchdb/erlang/lib/couch-1.5.0/ebin/couch_compress.beam +lib/couchdb/erlang/lib/couch-1.5.0/include/couch_js_functions.hrl +lib/couchdb/erlang/lib/couch-1.5.0/include/couch_db.hrl +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_http.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochilists.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_cover.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_sup.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt_records.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt_std.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiglobal.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochihex.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochijson.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_headers.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_echo.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket_server.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochijson2.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochilists.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochilogfile2.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochinum.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochitemp.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiutf8.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.app -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_acceptor.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochihex.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_app.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_charref.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_cookies.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_cover.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_echo.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_headers.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiglobal.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_html.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_http.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochijson.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochifmt.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/reloader.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_io.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_mime.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_multipart.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochitemp.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_request.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiutf8.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_response.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_skel.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_socket_server.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_sup.beam lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_util.beam -lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/reloader.beam -lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.app -lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.beam -lib/couchdb/erlang/lib/snappy-1.0.5/priv/snappy_nif.a +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_acceptor.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb.app +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_charref.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_mime.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochinum.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_skel.beam +lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin/mochiweb_multipart.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.app +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lib.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_lb.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_app.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_http_client.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_sup.beam +lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin/ibrowse_test.beam lib/couchdb/erlang/lib/snappy-1.0.5/priv/snappy_nif.la +lib/couchdb/erlang/lib/snappy-1.0.5/priv/snappy_nif.a lib/couchdb/erlang/lib/snappy-1.0.5/priv/snappy_nif.so -share/couchdb/server/main-coffee.js -share/couchdb/server/main.js -share/couchdb/www/_sidebar.html -share/couchdb/www/config.html -share/couchdb/www/couch_tests.html -share/couchdb/www/custom_test.html -share/couchdb/www/database.html -share/couchdb/www/dialog/_admin_party.html -share/couchdb/www/dialog/_change_password.html -share/couchdb/www/dialog/_compact_cleanup.html -share/couchdb/www/dialog/_create_admin.html -share/couchdb/www/dialog/_create_config.html -share/couchdb/www/dialog/_create_database.html -share/couchdb/www/dialog/_database_security.html -share/couchdb/www/dialog/_delete_database.html -share/couchdb/www/dialog/_delete_document.html -share/couchdb/www/dialog/_login.html -share/couchdb/www/dialog/_save_view_as.html -share/couchdb/www/dialog/_share_test_reports.html -share/couchdb/www/dialog/_signup.html -share/couchdb/www/dialog/_upload_attachment.html -share/couchdb/www/docs/_images/futon-createdb.png -share/couchdb/www/docs/_images/futon-editdoc.png -share/couchdb/www/docs/_images/futon-editeddoc.png -share/couchdb/www/docs/_images/futon-overview.png -share/couchdb/www/docs/_images/futon-replform.png -share/couchdb/www/docs/_sources/api-basics.txt -share/couchdb/www/docs/_sources/api/authn.txt -share/couchdb/www/docs/_sources/api/configuration.txt -share/couchdb/www/docs/_sources/api/database.txt -share/couchdb/www/docs/_sources/api/design.txt -share/couchdb/www/docs/_sources/api/documents.txt -share/couchdb/www/docs/_sources/api/local.txt -share/couchdb/www/docs/_sources/api/misc.txt -share/couchdb/www/docs/_sources/api/reference.txt -share/couchdb/www/docs/_sources/changelog.txt -share/couchdb/www/docs/_sources/changes.txt -share/couchdb/www/docs/_sources/config_reference.txt -share/couchdb/www/docs/_sources/configuring.txt -share/couchdb/www/docs/_sources/contributing.txt -share/couchdb/www/docs/_sources/ddocs.txt -share/couchdb/www/docs/_sources/index.txt -share/couchdb/www/docs/_sources/intro.txt -share/couchdb/www/docs/_sources/json-structure.txt -share/couchdb/www/docs/_sources/query-servers.txt -share/couchdb/www/docs/_sources/replication.txt -share/couchdb/www/docs/_sources/replicator.txt -share/couchdb/www/docs/_static/ajax-loader.gif -share/couchdb/www/docs/_static/basic.css -share/couchdb/www/docs/_static/comment-bright.png -share/couchdb/www/docs/_static/comment-close.png -share/couchdb/www/docs/_static/comment.png -share/couchdb/www/docs/_static/default.css -share/couchdb/www/docs/_static/doctools.js -share/couchdb/www/docs/_static/down-pressed.png -share/couchdb/www/docs/_static/down.png -share/couchdb/www/docs/_static/favicon.ico -share/couchdb/www/docs/_static/file.png -share/couchdb/www/docs/_static/jquery.js -share/couchdb/www/docs/_static/logo.png -share/couchdb/www/docs/_static/minus.png -share/couchdb/www/docs/_static/plus.png -share/couchdb/www/docs/_static/pygments.css -share/couchdb/www/docs/_static/rtd.css -share/couchdb/www/docs/_static/searchtools.js -share/couchdb/www/docs/_static/sidebar.js -share/couchdb/www/docs/_static/underscore.js -share/couchdb/www/docs/_static/up-pressed.png -share/couchdb/www/docs/_static/up.png -share/couchdb/www/docs/_static/websupport.js -share/couchdb/www/docs/api-basics.html -share/couchdb/www/docs/api/authn.html -share/couchdb/www/docs/api/configuration.html -share/couchdb/www/docs/api/database.html -share/couchdb/www/docs/api/design.html -share/couchdb/www/docs/api/documents.html -share/couchdb/www/docs/api/local.html -share/couchdb/www/docs/api/misc.html -share/couchdb/www/docs/api/reference.html -share/couchdb/www/docs/changelog.html -share/couchdb/www/docs/changes.html -share/couchdb/www/docs/config_reference.html -share/couchdb/www/docs/configuring.html -share/couchdb/www/docs/ddocs.html -share/couchdb/www/docs/genindex.html -share/couchdb/www/docs/index.html -share/couchdb/www/docs/intro.html -share/couchdb/www/docs/json-structure.html -share/couchdb/www/docs/objects.inv -share/couchdb/www/docs/query-servers.html -share/couchdb/www/docs/replication.html -share/couchdb/www/docs/replicator.html -share/couchdb/www/docs/search.html -share/couchdb/www/docs/searchindex.js -share/couchdb/www/document.html -share/couchdb/www/favicon.ico -share/couchdb/www/image/add.png -share/couchdb/www/image/apply.gif -share/couchdb/www/image/bg.png -share/couchdb/www/image/cancel.gif -share/couchdb/www/image/compact.png -share/couchdb/www/image/delete-mini.png -share/couchdb/www/image/delete.png -share/couchdb/www/image/grippie.gif -share/couchdb/www/image/hgrad.gif -share/couchdb/www/image/key.png -share/couchdb/www/image/load.png -share/couchdb/www/image/logo.png -share/couchdb/www/image/order-asc.gif -share/couchdb/www/image/order-desc.gif -share/couchdb/www/image/path.gif -share/couchdb/www/image/progress.gif -share/couchdb/www/image/rarrow.png -share/couchdb/www/image/run-mini.png -share/couchdb/www/image/run.png -share/couchdb/www/image/running.png -share/couchdb/www/image/save.png -share/couchdb/www/image/sidebar-toggle.png -share/couchdb/www/image/spinner.gif -share/couchdb/www/image/spinner_33.gif -share/couchdb/www/image/spinner_6b.gif -share/couchdb/www/image/test_failure.gif -share/couchdb/www/image/test_success.gif -share/couchdb/www/image/thead-key.gif -share/couchdb/www/image/thead.gif -share/couchdb/www/image/toggle-collapse.gif -share/couchdb/www/image/toggle-expand.gif -share/couchdb/www/image/twisty.gif -share/couchdb/www/index.html -share/couchdb/www/replicator.html -share/couchdb/www/script/base64.js -share/couchdb/www/script/couch.js -share/couchdb/www/script/couch_test_runner.js -share/couchdb/www/script/couch_tests.js -share/couchdb/www/script/futon.browse.js -share/couchdb/www/script/futon.format.js -share/couchdb/www/script/futon.js -share/couchdb/www/script/jquery-ui-1.8.11.custom.min.js -share/couchdb/www/script/jquery.couch.js -share/couchdb/www/script/jquery.dialog.js -share/couchdb/www/script/jquery.editinline.js -share/couchdb/www/script/jquery.form.js -share/couchdb/www/script/jquery.js -share/couchdb/www/script/jquery.resizer.js -share/couchdb/www/script/jquery.suggest.js -share/couchdb/www/script/json2.js -share/couchdb/www/script/jspec/jspec.css -share/couchdb/www/script/jspec/jspec.jquery.js -share/couchdb/www/script/jspec/jspec.js -share/couchdb/www/script/jspec/jspec.xhr.js -share/couchdb/www/script/oauth.js -share/couchdb/www/script/replicator_db_inc.js -share/couchdb/www/script/sha1.js -share/couchdb/www/script/test/all_docs.js -share/couchdb/www/script/test/attachment_names.js -share/couchdb/www/script/test/attachment_paths.js -share/couchdb/www/script/test/attachment_ranges.js -share/couchdb/www/script/test/attachment_views.js -share/couchdb/www/script/test/attachments.js -share/couchdb/www/script/test/attachments_multipart.js -share/couchdb/www/script/test/auth_cache.js -share/couchdb/www/script/test/basics.js -share/couchdb/www/script/test/batch_save.js -share/couchdb/www/script/test/bulk_docs.js -share/couchdb/www/script/test/changes.js -share/couchdb/www/script/test/coffee.js -share/couchdb/www/script/test/compact.js -share/couchdb/www/script/test/config.js -share/couchdb/www/script/test/conflicts.js -share/couchdb/www/script/test/content_negotiation.js -share/couchdb/www/script/test/cookie_auth.js -share/couchdb/www/script/test/copy_doc.js -share/couchdb/www/script/test/delayed_commits.js -share/couchdb/www/script/test/design_docs.js -share/couchdb/www/script/test/design_options.js -share/couchdb/www/script/test/design_paths.js -share/couchdb/www/script/test/erlang_views.js -share/couchdb/www/script/test/etags_head.js -share/couchdb/www/script/test/etags_views.js -share/couchdb/www/script/test/form_submit.js -share/couchdb/www/script/test/http.js -share/couchdb/www/script/test/invalid_docids.js -share/couchdb/www/script/test/jsonp.js -share/couchdb/www/script/test/large_docs.js -share/couchdb/www/script/test/list_views.js -share/couchdb/www/script/test/lorem.txt -share/couchdb/www/script/test/lorem_b64.txt -share/couchdb/www/script/test/lots_of_docs.js -share/couchdb/www/script/test/method_override.js -share/couchdb/www/script/test/multiple_rows.js -share/couchdb/www/script/test/oauth.js -share/couchdb/www/script/test/oauth_users_db.js -share/couchdb/www/script/test/proxyauth.js -share/couchdb/www/script/test/purge.js -share/couchdb/www/script/test/reader_acl.js -share/couchdb/www/script/test/recreate_doc.js -share/couchdb/www/script/test/reduce.js -share/couchdb/www/script/test/reduce_builtin.js -share/couchdb/www/script/test/reduce_false.js -share/couchdb/www/script/test/reduce_false_temp.js -share/couchdb/www/script/test/replication.js -share/couchdb/www/script/test/replicator_db_bad_rep_id.js -share/couchdb/www/script/test/replicator_db_by_doc_id.js -share/couchdb/www/script/test/replicator_db_compact_rep_db.js -share/couchdb/www/script/test/replicator_db_continuous.js -share/couchdb/www/script/test/replicator_db_credential_delegation.js -share/couchdb/www/script/test/replicator_db_field_validation.js -share/couchdb/www/script/test/replicator_db_filtered.js -share/couchdb/www/script/test/replicator_db_identical.js -share/couchdb/www/script/test/replicator_db_identical_continuous.js -share/couchdb/www/script/test/replicator_db_invalid_filter.js -share/couchdb/www/script/test/replicator_db_security.js -share/couchdb/www/script/test/replicator_db_simple.js -share/couchdb/www/script/test/replicator_db_successive.js -share/couchdb/www/script/test/replicator_db_survives.js -share/couchdb/www/script/test/replicator_db_swap_rep_db.js -share/couchdb/www/script/test/replicator_db_update_security.js -share/couchdb/www/script/test/replicator_db_user_ctx.js -share/couchdb/www/script/test/replicator_db_write_auth.js -share/couchdb/www/script/test/rev_stemming.js -share/couchdb/www/script/test/rewrite.js -share/couchdb/www/script/test/security_validation.js -share/couchdb/www/script/test/show_documents.js -share/couchdb/www/script/test/stats.js -share/couchdb/www/script/test/update_documents.js -share/couchdb/www/script/test/users_db.js -share/couchdb/www/script/test/users_db_security.js -share/couchdb/www/script/test/utf8.js -share/couchdb/www/script/test/uuids.js -share/couchdb/www/script/test/view_collation.js -share/couchdb/www/script/test/view_collation_raw.js -share/couchdb/www/script/test/view_compaction.js -share/couchdb/www/script/test/view_conflicts.js -share/couchdb/www/script/test/view_errors.js -share/couchdb/www/script/test/view_include_docs.js -share/couchdb/www/script/test/view_multi_key_all_docs.js -share/couchdb/www/script/test/view_multi_key_design.js -share/couchdb/www/script/test/view_multi_key_temp.js -share/couchdb/www/script/test/view_offsets.js -share/couchdb/www/script/test/view_pagination.js -share/couchdb/www/script/test/view_sandboxing.js -share/couchdb/www/script/test/view_update_seq.js -share/couchdb/www/script/test/view_xml.js -share/couchdb/www/session.html -share/couchdb/www/spec/couch_js_class_methods_spec.js -share/couchdb/www/spec/couch_js_instance_methods_1_spec.js -share/couchdb/www/spec/couch_js_instance_methods_2_spec.js -share/couchdb/www/spec/couch_js_instance_methods_3_spec.js -share/couchdb/www/spec/custom_helpers.js -share/couchdb/www/spec/jquery_couch_js_class_methods_spec.js -share/couchdb/www/spec/jquery_couch_js_instance_methods_1_spec.js -share/couchdb/www/spec/jquery_couch_js_instance_methods_2_spec.js -share/couchdb/www/spec/jquery_couch_js_instance_methods_3_spec.js -share/couchdb/www/spec/run.html -share/couchdb/www/status.html -share/couchdb/www/style/jquery-ui-1.8.11.custom.css -share/couchdb/www/style/layout.css -share/couchdb/www/verify_install.html -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.gz -%%PORTDOCS%%%%DOCSDIR%%/BUGS.gz -%%PORTDOCS%%%%DOCSDIR%%/CouchDB.pdf.gz -%%PORTDOCS%%%%DOCSDIR%%/DEVELOPERS.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Unix.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.Windows.gz -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.gz -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.gz -%%PORTDOCS%%%%DOCSDIR%%/NOTICE.gz -%%PORTDOCS%%%%DOCSDIR%%/README.gz -%%PORTDOCS%%%%DOCSDIR%%/THANKS.gz -@dirrm %%PORTDOCS%%%%DOCSDIR%% -@dirrm share/couchdb/www/style -@dirrm share/couchdb/www/spec -@dirrm share/couchdb/www/script/test -@dirrm share/couchdb/www/script/jspec -@dirrm share/couchdb/www/script -@dirrm share/couchdb/www/image -@dirrm share/couchdb/www/docs/api -@dirrm share/couchdb/www/docs/_static -@dirrm share/couchdb/www/docs/_sources/api -@dirrm share/couchdb/www/docs/_sources -@dirrm share/couchdb/www/docs/_images -@dirrm share/couchdb/www/docs -@dirrm share/couchdb/www/dialog -@dirrm share/couchdb/www -@dirrm share/couchdb/server -@dirrm share/couchdb -@dirrm lib/couchdb/erlang/lib/snappy-1.0.5/priv -@dirrm lib/couchdb/erlang/lib/snappy-1.0.5/ebin -@dirrm lib/couchdb/erlang/lib/snappy-1.0.5 -@dirrm lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin -@dirrm lib/couchdb/erlang/lib/mochiweb-1.4.1 -@dirrm lib/couchdb/erlang/lib/ibrowse-2.2.0/ebin -@dirrm lib/couchdb/erlang/lib/ibrowse-2.2.0 -@dirrm lib/couchdb/erlang/lib/etap/ebin -@dirrm lib/couchdb/erlang/lib/etap -@dirrm lib/couchdb/erlang/lib/erlang-oauth/ebin -@dirrm lib/couchdb/erlang/lib/erlang-oauth -@dirrm lib/couchdb/erlang/lib/ejson-0.1.0/priv -@dirrm lib/couchdb/erlang/lib/ejson-0.1.0/ebin -@dirrm lib/couchdb/erlang/lib/ejson-0.1.0 -@dirrm lib/couchdb/erlang/lib/couch_replicator-0.1/include -@dirrm lib/couchdb/erlang/lib/couch_replicator-0.1/ebin -@dirrm lib/couchdb/erlang/lib/couch_replicator-0.1 -@dirrm lib/couchdb/erlang/lib/couch_mrview-0.1/include -@dirrm lib/couchdb/erlang/lib/couch_mrview-0.1/ebin -@dirrm lib/couchdb/erlang/lib/couch_mrview-0.1 -@dirrm lib/couchdb/erlang/lib/couch_index-0.1/ebin -@dirrm lib/couchdb/erlang/lib/couch_index-0.1 -@dirrm lib/couchdb/erlang/lib/couch_dbupdates-0.1/ebin -@dirrm lib/couchdb/erlang/lib/couch_dbupdates-0.1 -@dirrm lib/couchdb/erlang/lib/couch-1.4.0/priv/lib -@dirrm lib/couchdb/erlang/lib/couch-1.4.0/priv -@dirrm lib/couchdb/erlang/lib/couch-1.4.0/include -@dirrm lib/couchdb/erlang/lib/couch-1.4.0/ebin -@dirrm lib/couchdb/erlang/lib/couch-1.4.0 -@dirrm lib/couchdb/erlang/lib -@dirrm lib/couchdb/erlang -@dirrm lib/couchdb/bin -@dirrm lib/couchdb -@dirrm etc/logrotate.d -@dirrm etc/couchdb/local.d -@dirrm etc/couchdb/default.d -@dirrm etc/couchdb +lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.app +lib/couchdb/erlang/lib/snappy-1.0.5/ebin/snappy.beam +lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins.beam +lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins_httpd.beam +lib/couchdb/erlang/lib/couch_plugins-0.1/ebin/couch_plugins.app +lib/couchdb/bin/couchjs +info/dir +info/CouchDB +@dirrmtry share/couchdb/www/fauxton/js +@dirrmtry share/couchdb/www/fauxton/img +@dirrmtry share/couchdb/www/fauxton/css +@dirrmtry share/couchdb/www/fauxton +@dirrmtry share/couchdb/www/docs/whatsnew +@dirrmtry share/couchdb/www/docs/replication +@dirrmtry share/couchdb/www/docs/query-server +@dirrmtry share/couchdb/www/docs/maintenance +@dirrmtry share/couchdb/www/docs/intro +@dirrmtry share/couchdb/www/docs/install +@dirrmtry share/couchdb/www/docs/fauxton +@dirrmtry share/couchdb/www/docs/cve +@dirrmtry share/couchdb/www/docs/couchapp/views +@dirrmtry share/couchdb/www/docs/couchapp +@dirrmtry share/couchdb/www/docs/config +@dirrmtry share/couchdb/www/docs/api/server +@dirrmtry share/couchdb/www/docs/api/document +@dirrmtry share/couchdb/www/docs/api/ddoc +@dirrmtry share/couchdb/www/docs/api/database +@dirrmtry share/couchdb/www/docs/_sources/whatsnew +@dirrmtry share/couchdb/www/docs/_sources/replication +@dirrmtry share/couchdb/www/docs/_sources/query-server +@dirrmtry share/couchdb/www/docs/_sources/maintenance +@dirrmtry share/couchdb/www/docs/_sources/intro +@dirrmtry share/couchdb/www/docs/_sources/install +@dirrmtry share/couchdb/www/docs/_sources/fauxton +@dirrmtry share/couchdb/www/docs/_sources/cve +@dirrmtry share/couchdb/www/docs/_sources/couchapp/views +@dirrmtry share/couchdb/www/docs/_sources/couchapp +@dirrmtry share/couchdb/www/docs/_sources/config +@dirrmtry share/couchdb/www/docs/_sources/api/server +@dirrmtry share/couchdb/www/docs/_sources/api/document +@dirrmtry share/couchdb/www/docs/_sources/api/ddoc +@dirrmtry share/couchdb/www/docs/_sources/api/database +@dirrmtry lib/couchdb/erlang/lib/couch_plugins-0.1/ebin +@dirrmtry lib/couchdb/erlang/lib/couch_plugins-0.1 +@dirrmtry lib/couchdb/erlang/lib/couch-1.5.0/priv/lib +@dirrmtry lib/couchdb/erlang/lib/couch-1.5.0/priv +@dirrmtry lib/couchdb/erlang/lib/couch-1.5.0/include +@dirrmtry lib/couchdb/erlang/lib/couch-1.5.0/ebin +@dirrmtry lib/couchdb/erlang/lib/couch-1.5.0 --- couchdb-1.5.0,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 00:30:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB1356D7; Tue, 10 Dec 2013 00:30:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B0CB21FE6; Tue, 10 Dec 2013 00:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA0UB2F060841; Tue, 10 Dec 2013 00:30:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA0UB7X060840; Tue, 10 Dec 2013 00:30:11 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 00:30:11 GMT Message-Id: <201312100030.rBA0UB7X060840@freefall.freebsd.org> To: ports@c0decafe.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 00:30:11 -0000 Synopsis: [PATCH] databases/couchdb: update to 1.5.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Dec 10 00:30:11 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184647 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 00:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C2E3953 for ; Tue, 10 Dec 2013 00:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 18083104E for ; Tue, 10 Dec 2013 00:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA0e0tp062832 for ; Tue, 10 Dec 2013 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA0e0kX062831; Tue, 10 Dec 2013 00:40:00 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 00:40:00 GMT Message-Id: <201312100040.rBA0e0kX062831@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 00:40:01 -0000 The following reply was made to PR ports/184647; it has been noted by GNATS. From: Edwin Groothuis To: adams-ports@ateamsystems.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 Date: Tue, 10 Dec 2013 00:30:10 UT Maintainer of databases/couchdb, Please note that PR ports/184647 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184647 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 02:04:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66BC09A7; Tue, 10 Dec 2013 02:04:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39EF516D2; Tue, 10 Dec 2013 02:04:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA24EhJ083283; Tue, 10 Dec 2013 02:04:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA24Ekp083282; Tue, 10 Dec 2013 02:04:14 GMT (envelope-from linimon) Date: Tue, 10 Dec 2013 02:04:14 GMT Message-Id: <201312100204.rBA24Ekp083282@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184630: mail/thunderbird jobserver unavailable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 02:04:14 -0000 Synopsis: mail/thunderbird jobserver unavailable Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Dec 10 02:04:02 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=184630 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 02:04:19 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C3139AA; Tue, 10 Dec 2013 02:04:19 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3FB8D16D4; Tue, 10 Dec 2013 02:04:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA24JS7083381; Tue, 10 Dec 2013 02:04:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA24Jj8083380; Tue, 10 Dec 2013 02:04:19 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 02:04:19 GMT Message-Id: <201312100204.rBA24Jj8083380@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184630: mail/thunderbird jobserver unavailable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 02:04:19 -0000 Synopsis: mail/thunderbird jobserver unavailable Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Dec 10 02:04:18 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184630 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 02:04:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 286D8A1F; Tue, 10 Dec 2013 02:04:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F1D1F16D5; Tue, 10 Dec 2013 02:04:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA24KH2083462; Tue, 10 Dec 2013 02:04:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA24K96083461; Tue, 10 Dec 2013 02:04:20 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 02:04:20 GMT Message-Id: <201312100204.rBA24K96083461@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184630: mail/thunderbird jobserver unavailable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 02:04:21 -0000 Synopsis: mail/thunderbird jobserver unavailable Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 02:04:20 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184630 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 04:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DC8342E for ; Tue, 10 Dec 2013 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EFA31FF9 for ; Tue, 10 Dec 2013 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA4K1cR011984 for ; Tue, 10 Dec 2013 04:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA4K1h9011983; Tue, 10 Dec 2013 04:20:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 04:20:01 GMT Message-Id: <201312100420.rBA4K1h9011983@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Adam Strohl Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Adam Strohl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 04:20:01 -0000 The following reply was made to PR ports/184647; it has been noted by GNATS. From: Adam Strohl To: bug-followup@FreeBSD.org, ports@c0decafe.net Cc: Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 Date: Tue, 10 Dec 2013 11:18:25 +0700 Hello, This is a duplicate of http://www.freebsd.org/cgi/query-pr.cgi?pr=184463 which we submitted a week or so ago. -- Adam Strohl http://www.ateamsystems.com/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 04:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 841A3544 for ; Tue, 10 Dec 2013 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56DFC108B for ; Tue, 10 Dec 2013 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA4U17P013859 for ; Tue, 10 Dec 2013 04:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA4U1OP013858; Tue, 10 Dec 2013 04:30:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 04:30:01 GMT Message-Id: <201312100430.rBA4U1OP013858@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Adam Strohl Subject: Re: ports/184463: Upgraded databases/couchdb (1.5.0) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Adam Strohl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 04:30:01 -0000 The following reply was made to PR ports/184463; it has been noted by GNATS. From: Adam Strohl To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184463: Upgraded databases/couchdb (1.5.0) Date: Tue, 10 Dec 2013 11:15:24 +0700 Hello, Can I get some action on this, someone just submitted a competing patch because they didn't search the PR database first. -- Adam Strohl http://www.ateamsystems.com/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 05:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E46E10B for ; Tue, 10 Dec 2013 05:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 706091480 for ; Tue, 10 Dec 2013 05:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA5e1HI028167 for ; Tue, 10 Dec 2013 05:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA5e146028166; Tue, 10 Dec 2013 05:40:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 05:40:01 GMT Message-Id: <201312100540.rBA5e146028166@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Alex Kozlov Subject: Re: ports/184111: [UPDATE] emulators/desmume to v0.9.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alex Kozlov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 05:40:02 -0000 The following reply was made to PR ports/184111; it has been noted by GNATS. From: Alex Kozlov To: Hardy Schumacher Cc: bug-followup@FreeBSD.org Subject: Re: ports/184111: [UPDATE] emulators/desmume to v0.9.9 Date: Tue, 10 Dec 2013 07:36:23 +0200 Hi, Hardy It seems that v0.9.10 is out in meantime. Can you please update the patch? -- Alex From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 06:36:29 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46EC0ACD for ; Tue, 10 Dec 2013 06:36:29 +0000 (UTC) Received: from ts1-103.calg.interhop.net (ts1-103.calg.interhop.net [165.154.28.103]) by mx1.freebsd.org (Postfix) with ESMTP id F23DB17F8 for ; Tue, 10 Dec 2013 06:36:27 +0000 (UTC) From: "Mark L Brander" To: freebsd-ports-bugs@freebsd.org Subject: Wedding Invitation Of Matthew 22, Scripture Now Being Fulfilled! X-Mailer: Smart_Send_3_1_6 Date: Tue, 10 Dec 2013 01:36:33 -0500 Message-ID: <5728370991048281117559@Home> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: prophecynewsnetwork@gmail.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 06:36:29 -0000 This extraordinary prophecy/wedding invitation can be read in any language at [1]www.revelation12.ca The kingdom of heaven is like unto a certain king, which made a marriage for his son, And sent forth his servants to call them that were bidden to the wedding: and they would not come. (they would not come because they would not believe it was true) Amazing [2]'biblical signs' are now being seen and photographed in the skies over many nations. The 'Wedding in Heaven' is surely very close. The Lord has been indicating in recent visions to prophet Linda Newkirk that His 'tarrying' will end soon, so ask right away to be a guest, things are going to get very bad in the earth soon and you will be glad that you did! Be sure to read the update that follows the invitation. An Open Invitation To A Spectacular And Timely, Heavenly Event! Our Father in Heaven Speaks! Receive, Believe And Ask! My Blessed Child, I am your Father Yahweh, yea Jehovah, Most High God; and I come to you today to impart to you a message of My great love, of My great mercy and of My great grace! My Little One, few know, or believe, that you, Linda Newkirk, the same Linda Newkirk of Mayflower, Arkansas, are the Woman of Revelation Chapter Twelve! And, few know how you have labored, how you have travailed, how you have suffered, and how you have often wept beneath the weight of unspeakable persecution! And, all for the love of Me, for the love of My Son and for the love of humanity! Yes, few know, and of those who know, few believe! For your trials have been so great as you have travailed beneath the feet of Satan and all of his demonic hordes! Oh yes, you have travailed to bring forth My holy seed! A tiny seed indeed when it was given to you; but at this time, it has been maturing in your body for more than seventeen months! And, during this time, it has been growing in strength, power, and stature until it is, for a certainty, now a "manchild!" And, soon, oh so soon, it will be birthed back to My throne! But, not without you; for he is a part of you! My Child, I have told you that, as the Woman of Revelation Twelve, you are the spiritual mother of My Kingdom! What grows in you is My Kingdom Seed! It is also the seed of My Son, Jesus, who is Saviour of Humanity! All, who marry Him, will receive this seed! All, who come into My Kingdom, to work in My service, and to be a part of My Kingdom, the queens, the kings and all others, must receive this seed! None will be a part of My Kingdom, who do not have this seed! My Little One, as I have told you, soon and oh so soon, I will take you and My "manchild," my now-matured holy seed, back to My throne! And, what awaits you in heaven is most surely the second greatest celebration ever to take place in heaven, the first being when My Son returned after He was crucified! Now comes another grand celebration in Heaven and in some ways, perhaps in many ways, it is even more grand than when My Son returned, but not in all ways! For this celebration, this marriage to My Son, will go on for some time; with you, My Little One, being the first to marry Him, your marriage to Him coming through the now-matured holy seed of My Son! For, you are the spiritual mother of My Kingdom, the very one, who has birthed the holy seed into the earth, which is now a manchild! My Little One, you have so often wanted these works to be finished! So often you have sought this; for you have wanted an end to the constant persecution, which is directed at you! But, you have not wanted to leave this Earth and to come into Heaven without your faithful friends! In fact, My Little One, your cries have continually come before My throne, wherein you have repeatedly asked that all "clean" souls be allowed to come with you and the manchild when you come to My throne! And, yes, My Child, I shall grant this request, but in an even greater way than what you ask! Surely, I will now give the grace, great grace to you, that when I come for you and the manchild, I will also take those, have been your faithful friends. But, My Little One, I extend more, and I extend it to those, who are on the streets, who are in the highways and the bi-ways! Even if they do not know if Revelation Chapter Twelve is true; and even if they do not know a thing about what you have been through, if they ask of Me with a sincere heart and a humble heart to come, I will allow many of them to come with you, even total strangers! I will answer the calls of many, even those, who are lost and who sleep under the bridges! Yes, I offer to them now a grand trip to heaven, a trip to behold the wedding of the ages, a chance to be a part of something so grand, that all of heaven is daily in great anticipation! And, this wedding, My Little One, is the wedding of My Son, as He first weds you, the spiritual mother of My Kingdom in the Earth!! Oh, yes soon, and oh so soon, you will have paid your price, your great price indeed, to birth My Kingdom into the Earth! And, all subsequent marriages to My Son could only come about because you have paid the price! If you have not paid the price to birth My Kingdom into the Earth, I would have no Kingdom in the Earth! And, soon, oh so soon, I shall so greatly reward you! For, you will marry My Son first and all will soon know that you are the woman, who bears the crown with twelve stars, the true Queen of Heaven, indeed! Now, my Little One, I open up My invitation to this wedding, not only to your faithful friends, but to all, who truly wish to come, who can truly believe and truly ask! And, while I now allow you to post this on the Internet as a public invitation, I now call up others, who see and know the truth of what I write, to copy this message into printed form and to take it and to distribute it into the streets, wherever they live. Some may need to translate this message into their own language! And, I call you now! I call you from the continents; and I call you from the islands to take this message, to copy it into printed form and to widely distribute it to those in the streets, where you live! I now invite anyone, who can receive the truth of what I tell you and who can believe, thereafter asking with a sincere heart, to be a guest at this most grand of weddings in heaven! Oh, yes, this is true! This is real! And, this invitation is not being sent directly to the churches! This is not My desire; for they have overwhelmingly spurned these works of Revelation Twelve! My invitation now goes into the streets and I call forth My workers, the sincere of heart, those, who also wish to be a part of this grand wedding, to come forth now! I call you to come forth and to copy this message and to take it into the streets, take it into the jails! Take it into the villages! Take it into the highways and the bi-ways; to make haste! For, this wedding is soon, oh so soon, not many weeks away! Though many of My own have rejected these works, and are thereby unworthy to come, many others will not reject this invitation, but will shout with glee! For, they will hold dear what I now give so freely! Oh, yes this is unexpected! All that I give now is unexpected! But, oh so soon, many will get a trip into heaven, which will forever change them! And, they will see the very first wedding, ever, in heaven, the wedding of My chosen, daughter, Linda Newkirk, the Woman of Revelation Twelve, to My Son! Thereafter, Linda Newkirk will begin her work as the Queen of Heaven, my Son's very own queen; and as such will bear much power in Heaven and in the Earth! All, who take seriously this invitation, and who come to Me in prayer, truly believing and truly asking to go, will indeed be received as guests of this grand heavenly event! And, yes, even some of these will be evil! For, first, I am a God of great love, of great mercy and grace! And, through this invitation of love, many will be forever changed! My Beloved Child, type this and get this posted on the Internet soon! I will touch the hearts of many, who read this message, that they copy it onto paper and distribute it into the streets, where they live! Come, Oh you nations! Receive what I freely offer! For, now My grace, My love, My righteousness, and My glory comes forth as you could neither have imagined, nor could have conceived in any way!! Glorious rewards now come to those, who believe! Witnessed, dictated and recorded this 3rd day of November, 2007 Linda Newkirk Important Update To The Wedding Invitation! From The Mountain Prophecies Chapter Ninety-Three PART III The Wedding Invitation Come to Me, My Blessed Child; for I am your first love! I am your husband! I am your Creator; and `yes,' as you often say to me, I am the Love of Your Life! Yes, I am Yahweh, Most High God, Jesus, your Redeemer! My Blessed Child, this is a new day for you, a new time for you, and a new day for My people! For, I have now released very great numbers of My holy seed into the bodies, into the spirits and into the souls of My Faithful! I have imparted these holy seeds into My 144,000 elect, but also to some few others, whom I have so chosen! For, this has been My great blessing to some, who have been faithful to you and faithful to these works, who are not part of the 144,000. Do you remember the marriage invitation, which I gave to you? Yes, My Lord. Then, know, My Blessed Child, that I must also make ready all of those, who have believed and who have truly wanted to attend this wedding, as wedding guests. So, My Little One, I must raise up some pearls and make them spiritually ready to attend this wedding. And, in order to do so, I have already chosen some to receive this holy seed, that they may be made spiritually ready to enter in through the passageway of fire. You see, My Little One, and you know well, that I am a God of great mysteries. I laid out the wedding invitation before the people, a sincere and true offer on My part, but the one key to being a wedding guest has been the presence of a simple faith, a simple trust in Me. But, My Child, most have thrown away the wedding invitation. Most have forgotten about the wedding invitation, but a few still hold onto this invitation and they long to attend this wedding; for they believe! But, My Little One, these numbers are few; and I promised you that I would take the greatest numbers possible to this wedding as wedding guests. Therefore, I now extend this offer once more, and only once more. Therefore, at the end of this message, post once again the wedding invitation. For, this is My great gift of love for those, who are able to believe and to receive these truths. I have not given this invitation in vain, but in truth; and I honor My words in My offer through this wedding invitation. For, this is My promise to you, My Blessed Child, and I will keep My promises. Blessed Saviour, as I type this message, this day being the 18^th day of August, I have some questions about these wedding guests. My Lord, must all, who enter into this passageway of light and fire have the holy seed within them? My Lord, in years past, you carried me into the light and I stood in Your wonderful light; and I did not yet have the holy seed. So, I do wonder about how that was and how this will be. You do well to wonder, my Blessed Child; for there are three different levels among these wedding guests: 1. Those, who have the holy seed; 2. Those, who do not have the holy seed, but who have clean hearts, and have lived worthy to go into the light; 3. and, those, who have not lived worthy to go into the light, but at the very last minute, they are changed through My divine intervention and made ready to go into the light. And, because of these three distinctions, these three different types of wedding guests will take their different places at this wedding. See? Yes, my Lord; and thank You so very much for explaining these important truths to me. Praises to Your Holy Name! Received and witnessed by, Linda Newkirk August 18, 2012 References 1. http://www.revelation12.ca/ 2. http://revelation12.ca/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 06:36:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1DB8ACE for ; Tue, 10 Dec 2013 06:36:31 +0000 (UTC) Received: from ts1-103.calg.interhop.net (ts1-103.calg.interhop.net [165.154.28.103]) by mx1.freebsd.org (Postfix) with ESMTP id E9BB917FA for ; Tue, 10 Dec 2013 06:36:29 +0000 (UTC) From: "Mark L Brander" To: freebsd-ports-bugs@hub.freebsd.org Subject: Wedding Invitation Of Matthew 22, Scripture Now Being Fulfilled! X-Mailer: Smart_Send_3_1_6 Date: Tue, 10 Dec 2013 01:36:34 -0500 Message-ID: <57283709910483220630303@Home> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: prophecynewsnetwork@gmail.com List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 06:36:31 -0000 This extraordinary prophecy/wedding invitation can be read in any language at [1]www.revelation12.ca The kingdom of heaven is like unto a certain king, which made a marriage for his son, And sent forth his servants to call them that were bidden to the wedding: and they would not come. (they would not come because they would not believe it was true) Amazing [2]'biblical signs' are now being seen and photographed in the skies over many nations. The 'Wedding in Heaven' is surely very close. The Lord has been indicating in recent visions to prophet Linda Newkirk that His 'tarrying' will end soon, so ask right away to be a guest, things are going to get very bad in the earth soon and you will be glad that you did! Be sure to read the update that follows the invitation. An Open Invitation To A Spectacular And Timely, Heavenly Event! Our Father in Heaven Speaks! Receive, Believe And Ask! My Blessed Child, I am your Father Yahweh, yea Jehovah, Most High God; and I come to you today to impart to you a message of My great love, of My great mercy and of My great grace! My Little One, few know, or believe, that you, Linda Newkirk, the same Linda Newkirk of Mayflower, Arkansas, are the Woman of Revelation Chapter Twelve! And, few know how you have labored, how you have travailed, how you have suffered, and how you have often wept beneath the weight of unspeakable persecution! And, all for the love of Me, for the love of My Son and for the love of humanity! Yes, few know, and of those who know, few believe! For your trials have been so great as you have travailed beneath the feet of Satan and all of his demonic hordes! Oh yes, you have travailed to bring forth My holy seed! A tiny seed indeed when it was given to you; but at this time, it has been maturing in your body for more than seventeen months! And, during this time, it has been growing in strength, power, and stature until it is, for a certainty, now a "manchild!" And, soon, oh so soon, it will be birthed back to My throne! But, not without you; for he is a part of you! My Child, I have told you that, as the Woman of Revelation Twelve, you are the spiritual mother of My Kingdom! What grows in you is My Kingdom Seed! It is also the seed of My Son, Jesus, who is Saviour of Humanity! All, who marry Him, will receive this seed! All, who come into My Kingdom, to work in My service, and to be a part of My Kingdom, the queens, the kings and all others, must receive this seed! None will be a part of My Kingdom, who do not have this seed! My Little One, as I have told you, soon and oh so soon, I will take you and My "manchild," my now-matured holy seed, back to My throne! And, what awaits you in heaven is most surely the second greatest celebration ever to take place in heaven, the first being when My Son returned after He was crucified! Now comes another grand celebration in Heaven and in some ways, perhaps in many ways, it is even more grand than when My Son returned, but not in all ways! For this celebration, this marriage to My Son, will go on for some time; with you, My Little One, being the first to marry Him, your marriage to Him coming through the now-matured holy seed of My Son! For, you are the spiritual mother of My Kingdom, the very one, who has birthed the holy seed into the earth, which is now a manchild! My Little One, you have so often wanted these works to be finished! So often you have sought this; for you have wanted an end to the constant persecution, which is directed at you! But, you have not wanted to leave this Earth and to come into Heaven without your faithful friends! In fact, My Little One, your cries have continually come before My throne, wherein you have repeatedly asked that all "clean" souls be allowed to come with you and the manchild when you come to My throne! And, yes, My Child, I shall grant this request, but in an even greater way than what you ask! Surely, I will now give the grace, great grace to you, that when I come for you and the manchild, I will also take those, have been your faithful friends. But, My Little One, I extend more, and I extend it to those, who are on the streets, who are in the highways and the bi-ways! Even if they do not know if Revelation Chapter Twelve is true; and even if they do not know a thing about what you have been through, if they ask of Me with a sincere heart and a humble heart to come, I will allow many of them to come with you, even total strangers! I will answer the calls of many, even those, who are lost and who sleep under the bridges! Yes, I offer to them now a grand trip to heaven, a trip to behold the wedding of the ages, a chance to be a part of something so grand, that all of heaven is daily in great anticipation! And, this wedding, My Little One, is the wedding of My Son, as He first weds you, the spiritual mother of My Kingdom in the Earth!! Oh, yes soon, and oh so soon, you will have paid your price, your great price indeed, to birth My Kingdom into the Earth! And, all subsequent marriages to My Son could only come about because you have paid the price! If you have not paid the price to birth My Kingdom into the Earth, I would have no Kingdom in the Earth! And, soon, oh so soon, I shall so greatly reward you! For, you will marry My Son first and all will soon know that you are the woman, who bears the crown with twelve stars, the true Queen of Heaven, indeed! Now, my Little One, I open up My invitation to this wedding, not only to your faithful friends, but to all, who truly wish to come, who can truly believe and truly ask! And, while I now allow you to post this on the Internet as a public invitation, I now call up others, who see and know the truth of what I write, to copy this message into printed form and to take it and to distribute it into the streets, wherever they live. Some may need to translate this message into their own language! And, I call you now! I call you from the continents; and I call you from the islands to take this message, to copy it into printed form and to widely distribute it to those in the streets, where you live! I now invite anyone, who can receive the truth of what I tell you and who can believe, thereafter asking with a sincere heart, to be a guest at this most grand of weddings in heaven! Oh, yes, this is true! This is real! And, this invitation is not being sent directly to the churches! This is not My desire; for they have overwhelmingly spurned these works of Revelation Twelve! My invitation now goes into the streets and I call forth My workers, the sincere of heart, those, who also wish to be a part of this grand wedding, to come forth now! I call you to come forth and to copy this message and to take it into the streets, take it into the jails! Take it into the villages! Take it into the highways and the bi-ways; to make haste! For, this wedding is soon, oh so soon, not many weeks away! Though many of My own have rejected these works, and are thereby unworthy to come, many others will not reject this invitation, but will shout with glee! For, they will hold dear what I now give so freely! Oh, yes this is unexpected! All that I give now is unexpected! But, oh so soon, many will get a trip into heaven, which will forever change them! And, they will see the very first wedding, ever, in heaven, the wedding of My chosen, daughter, Linda Newkirk, the Woman of Revelation Twelve, to My Son! Thereafter, Linda Newkirk will begin her work as the Queen of Heaven, my Son's very own queen; and as such will bear much power in Heaven and in the Earth! All, who take seriously this invitation, and who come to Me in prayer, truly believing and truly asking to go, will indeed be received as guests of this grand heavenly event! And, yes, even some of these will be evil! For, first, I am a God of great love, of great mercy and grace! And, through this invitation of love, many will be forever changed! My Beloved Child, type this and get this posted on the Internet soon! I will touch the hearts of many, who read this message, that they copy it onto paper and distribute it into the streets, where they live! Come, Oh you nations! Receive what I freely offer! For, now My grace, My love, My righteousness, and My glory comes forth as you could neither have imagined, nor could have conceived in any way!! Glorious rewards now come to those, who believe! Witnessed, dictated and recorded this 3rd day of November, 2007 Linda Newkirk Important Update To The Wedding Invitation! From The Mountain Prophecies Chapter Ninety-Three PART III The Wedding Invitation Come to Me, My Blessed Child; for I am your first love! I am your husband! I am your Creator; and `yes,' as you often say to me, I am the Love of Your Life! Yes, I am Yahweh, Most High God, Jesus, your Redeemer! My Blessed Child, this is a new day for you, a new time for you, and a new day for My people! For, I have now released very great numbers of My holy seed into the bodies, into the spirits and into the souls of My Faithful! I have imparted these holy seeds into My 144,000 elect, but also to some few others, whom I have so chosen! For, this has been My great blessing to some, who have been faithful to you and faithful to these works, who are not part of the 144,000. Do you remember the marriage invitation, which I gave to you? Yes, My Lord. Then, know, My Blessed Child, that I must also make ready all of those, who have believed and who have truly wanted to attend this wedding, as wedding guests. So, My Little One, I must raise up some pearls and make them spiritually ready to attend this wedding. And, in order to do so, I have already chosen some to receive this holy seed, that they may be made spiritually ready to enter in through the passageway of fire. You see, My Little One, and you know well, that I am a God of great mysteries. I laid out the wedding invitation before the people, a sincere and true offer on My part, but the one key to being a wedding guest has been the presence of a simple faith, a simple trust in Me. But, My Child, most have thrown away the wedding invitation. Most have forgotten about the wedding invitation, but a few still hold onto this invitation and they long to attend this wedding; for they believe! But, My Little One, these numbers are few; and I promised you that I would take the greatest numbers possible to this wedding as wedding guests. Therefore, I now extend this offer once more, and only once more. Therefore, at the end of this message, post once again the wedding invitation. For, this is My great gift of love for those, who are able to believe and to receive these truths. I have not given this invitation in vain, but in truth; and I honor My words in My offer through this wedding invitation. For, this is My promise to you, My Blessed Child, and I will keep My promises. Blessed Saviour, as I type this message, this day being the 18^th day of August, I have some questions about these wedding guests. My Lord, must all, who enter into this passageway of light and fire have the holy seed within them? My Lord, in years past, you carried me into the light and I stood in Your wonderful light; and I did not yet have the holy seed. So, I do wonder about how that was and how this will be. You do well to wonder, my Blessed Child; for there are three different levels among these wedding guests: 1. Those, who have the holy seed; 2. Those, who do not have the holy seed, but who have clean hearts, and have lived worthy to go into the light; 3. and, those, who have not lived worthy to go into the light, but at the very last minute, they are changed through My divine intervention and made ready to go into the light. And, because of these three distinctions, these three different types of wedding guests will take their different places at this wedding. See? Yes, my Lord; and thank You so very much for explaining these important truths to me. Praises to Your Holy Name! Received and witnessed by, Linda Newkirk August 18, 2012 References 1. http://www.revelation12.ca/ 2. http://revelation12.ca/ From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 08:41:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C0777D9; Tue, 10 Dec 2013 08:41:31 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E331711CC; Tue, 10 Dec 2013 08:41:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA8fUMm085241; Tue, 10 Dec 2013 08:41:30 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA8fTcm085240; Tue, 10 Dec 2013 08:41:29 GMT (envelope-from jadawin) Date: Tue, 10 Dec 2013 08:41:29 GMT Message-Id: <201312100841.rBA8fTcm085240@freefall.freebsd.org> To: 5u623l20@gmail.com, mitya@cabletv.dp.ua, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184521: [patch] sysutils/mbmon X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 08:41:31 -0000 Synopsis: [patch] sysutils/mbmon State-Changed-From-To: feedback->closed State-Changed-By: jadawin State-Changed-When: Tue Dec 10 08:41:29 UTC 2013 State-Changed-Why: Duplicate with 184628 and close by maintainer request http://www.freebsd.org/cgi/query-pr.cgi?pr=184521 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 08:43:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E4C2847; Tue, 10 Dec 2013 08:43:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5FC5511E7; Tue, 10 Dec 2013 08:43:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA8hLCg085357; Tue, 10 Dec 2013 08:43:21 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA8hE3S085355; Tue, 10 Dec 2013 08:43:14 GMT (envelope-from jadawin) Date: Tue, 10 Dec 2013 08:43:14 GMT Message-Id: <201312100843.rBA8hE3S085355@freefall.freebsd.org> To: simon.krenz@ghostbsd.org, ari@stonepile.fi, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184283: dns/ddclient fails with ssl=yes after upgrading p5-IO-Socket-SSL to 1.950 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 08:43:21 -0000 Synopsis: dns/ddclient fails with ssl=yes after upgrading p5-IO-Socket-SSL to 1.950 State-Changed-From-To: feedback->open State-Changed-By: jadawin State-Changed-When: Tue Dec 10 08:43:14 UTC 2013 State-Changed-Why: Maintainer timed out. http://www.freebsd.org/cgi/query-pr.cgi?pr=184283 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 09:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 688F36E9 for ; Tue, 10 Dec 2013 09:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26A9F169C for ; Tue, 10 Dec 2013 09:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA9U2t5094449 for ; Tue, 10 Dec 2013 09:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA9U1ES094448; Tue, 10 Dec 2013 09:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 09:30:01 GMT Resent-Message-Id: <201312100930.rBA9U1ES094448@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yoshiaki Kasahara Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4816D6CF for ; Tue, 10 Dec 2013 09:29:18 +0000 (UTC) Received: from elvenbow.cc.kyushu-u.ac.jp (elvenbow.nc.kyushu-u.ac.jp [133.5.6.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E624C1690 for ; Tue, 10 Dec 2013 09:29:17 +0000 (UTC) Received: from elvenbow.cc.kyushu-u.ac.jp (kasahara@localhost [127.0.0.1]) by elvenbow.cc.kyushu-u.ac.jp (8.14.7/8.14.7) with ESMTP id rBA9T8Wg098883 for ; Tue, 10 Dec 2013 18:29:08 +0900 (JST) (envelope-from kasahara@elvenbow.cc.kyushu-u.ac.jp) Received: (from kasahara@localhost) by elvenbow.cc.kyushu-u.ac.jp (8.14.7/8.14.7/Submit) id rBA9T8XS098882; Tue, 10 Dec 2013 18:29:08 +0900 (JST) (envelope-from kasahara) Message-Id: <201312100929.rBA9T8XS098882@elvenbow.cc.kyushu-u.ac.jp> Date: Tue, 10 Dec 2013 18:29:08 +0900 (JST) From: Yoshiaki Kasahara To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184652: sysutils/munin-master clobbers .htaccess when upgrading X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Yoshiaki Kasahara List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 09:30:02 -0000 >Number: 184652 >Category: ports >Synopsis: sysutils/munin-master clobbers .htaccess when upgrading >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 09:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yoshiaki Kasahara >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: Kyushu University >Environment: System: FreeBSD elvenbow.cc.kyushu-u.ac.jp 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255506: Fri Sep 13 16:09:51 JST 2013 root@elvenbow.cc.kyushu-u.ac.jp:/usr/obj/usr/src/sys/ELVENBOW amd64 >Description: Upgrading sysutils/munin-master clobbers %%WWWDIR%%/.htaccess (deinstall unconditionally removes the file and reinstall put a flesh one). I need to allow our internal network to browse the munin page without password, and I always have to modify .htaccess after upgrading munin-master. Please do not remove/clobber user-modified configuration file. >How-To-Repeat: >Fix: Maybe it is better to treat .htaccess as "7.3 Configuration Files" (in FreeBSD Porter's Handbook). >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 09:30:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A953753; Tue, 10 Dec 2013 09:30:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4004716A0; Tue, 10 Dec 2013 09:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBA9UAjq094533; Tue, 10 Dec 2013 09:30:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBA9UAqW094532; Tue, 10 Dec 2013 09:30:10 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 09:30:10 GMT Message-Id: <201312100930.rBA9UAqW094532@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184652: sysutils/munin-master clobbers .htaccess when upgrading X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 09:30:10 -0000 Synopsis: sysutils/munin-master clobbers .htaccess when upgrading Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 09:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184652 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 10:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7647FF0 for ; Tue, 10 Dec 2013 10:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A23B01923 for ; Tue, 10 Dec 2013 10:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAA00mi000174 for ; Tue, 10 Dec 2013 10:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAA00Th000173; Tue, 10 Dec 2013 10:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 10:00:00 GMT Resent-Message-Id: <201312101000.rBAA00Th000173@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F077BEFF for ; Tue, 10 Dec 2013 09:56:02 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC52018EE for ; Tue, 10 Dec 2013 09:56:02 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBA9u2P4005226 for ; Tue, 10 Dec 2013 09:56:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBA9u2Xl005225; Tue, 10 Dec 2013 09:56:02 GMT (envelope-from nobody) Message-Id: <201312100956.rBA9u2Xl005225@oldred.freebsd.org> Date: Tue, 10 Dec 2013 09:56:02 GMT From: Andrew To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184653: non-existent files in pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 10:00:00 -0000 >Number: 184653 >Category: ports >Synopsis: non-existent files in pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 10:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: 9.1-R >Organization: >Environment: 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building databases/p5-DBD-mysql51 in tinderbox. ===> Building package for p5-DBD-mysql51-4.025 242 tar: lib/perl5/5.16/man/man3/Bundle::DBD::mysql.3.gz: Cannot stat: No such file or directory 243 tar: lib/perl5/5.16/man/man3/DBD::mysql.3.gz: Cannot stat: No such file or directory 244 tar: lib/perl5/5.16/man/man3/DBD::mysql::INSTALL.3.gz: Cannot stat: No such file or directory 245 tar: Error exit delayed from previous errors. 246 pkg_create: make_dist: tar command failed with code 256 247 *** Error code 1 >How-To-Repeat: Using tinderbox try to build databases/mysql51-client and build databases/p5-DBD-mysql51 >Fix: --- pkg-plist.orig 2013-12-05 07:36:43.000000000 +0000 +++ pkg-plist 2013-12-05 07:36:55.000000000 +0000 @@ -1,6 +1,3 @@ -%%PERL5_MAN3%%/Bundle::DBD::mysql.3.gz -%%PERL5_MAN3%%/DBD::mysql.3.gz -%%PERL5_MAN3%%/DBD::mysql::INSTALL.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Bundle/DBD/mysql.pm %%SITE_PERL%%/%%PERL_ARCH%%/DBD/mysql.pm %%SITE_PERL%%/%%PERL_ARCH%%/DBD/mysql/GetInfo.pm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 10:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B97F5CFE for ; Tue, 10 Dec 2013 10:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 92E221CEB for ; Tue, 10 Dec 2013 10:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAAU0ab006988 for ; Tue, 10 Dec 2013 10:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAAU05o006987; Tue, 10 Dec 2013 10:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 10:30:00 GMT Resent-Message-Id: <201312101030.rBAAU05o006987@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Horia Racoviceanu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FAC5CEE for ; Tue, 10 Dec 2013 10:28:53 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A7131CE1 for ; Tue, 10 Dec 2013 10:28:53 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAASrMj094814 for ; Tue, 10 Dec 2013 10:28:53 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAASrJP094811; Tue, 10 Dec 2013 10:28:53 GMT (envelope-from nobody) Message-Id: <201312101028.rBAASrJP094811@oldred.freebsd.org> Date: Tue, 10 Dec 2013 10:28:53 GMT From: Horia Racoviceanu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184654: New port: databases/galera Synchronous multi-master replication engine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 10:30:00 -0000 >Number: 184654 >Category: ports >Synopsis: New port: databases/galera Synchronous multi-master replication engine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 10:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Horia Racoviceanu >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD aitch 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: Galera is a synchronous multi-master replication engine that provides its service through wsrep API (https://launchpad.net/wsrep). It features optimistic transaction execution and commit time replication and certification of writesets. WWW: http://www.codership.com/ >How-To-Repeat: Build log: https://redports.org/buildarchive/20131210083729-79880/ >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # galera # galera/Makefile # galera/pkg-descr # galera/distinfo # galera/files # galera/files/garb.in # echo c - galera mkdir -p galera > /dev/null 2>&1 echo x - galera/Makefile sed 's/^X//' >galera/Makefile << 'a56e76b7267450f451944cd75a5ade44' X# Created by: Horia Racoviceanu X# $FreeBSD$ X XPORTNAME= galera XPORTVERSION= 25.3.2 XDISTVERSIONSUFFIX= -src XCATEGORIES= databases XMASTER_SITES= https://launchpadlibrarian.net/158038010/ X XMAINTAINER= horia@racoviceanu.com XCOMMENT= Synchronous multi-master replication engine X XLICENSE= GPLv3 X XBUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs \ X ${LOCALBASE}/bin/checkmk:${PORTSDIR}/devel/libcheck XLIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo X XSCRIPTS_ENV= TARGET=${STAGEDIR}${PREFIX}/lib X XUSES= scons XSCONS_ARGS= -Q -c --conf=force --warn=no-missing-sconscript X XUSE_GCC= yes XUSE_LDCONFIG= yes XUSE_OPENSSL= yes XUSE_RC_SUBR= garb X XCXXFLAGS+= -std=c++11 X XSUB_LIST= LD_LIBRARY_PATH=${TEST_MAKE_ENV} X XPLIST_FILES= bin/garbd \ X lib/libgalera_smm.so \ X lib/libgalera.so X XPORTDOCS= AUTHORS README X XOPTIONS_DEFINE= DOCS TEST X XTEST_MAKE_ENV+= LD_LIBRARY_PATH=${LOCALBASE}/lib/${CC}:$$LD_LIBRARY_PATH X X.include X X.if ${OSVERSION} < 900506 XIGNORE= need __WORDSIZE found in FreeBSD 9 X.endif X Xpost-patch: X @${REINPLACE_CMD} -e "/ conf.env.Append(CPPFLAGS = ' -Werror')/d" \ X ${WRKSRC}/SConstruct X.if ! ${PORT_OPTIONS:MTEST} X @${REINPLACE_CMD} -e "s|'tests', 1|'tests', 0|" ${WRKSRC}/SConstruct X.endif X.if ${PORT_OPTIONS:MTEST} X @${REINPLACE_CMD} -e "s|(tc, 60)|(tc, 180)|" \ X ${WRKSRC}/${PORTNAME}/tests/ist_check.cpp X.endif X Xdo-install: X ${INSTALL_LIB} ${WRKDIR}/${DISTNAME}/libgalera_smm.so ${STAGEDIR}${PREFIX}/lib/ X @(cd ${STAGEDIR}${PREFIX}/lib && ${LN} -sf libgalera_smm.so lib${PORTNAME}.so) X ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/garb/garbd ${STAGEDIR}${PREFIX}/bin/ X X @${MKDIR} ${STAGEDIR}${DOCSDIR} X ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} X X.include a56e76b7267450f451944cd75a5ade44 echo x - galera/pkg-descr sed 's/^X//' >galera/pkg-descr << '379cdda07570333c04313562f33484b8' XGalera is a synchronous multi-master replication engine that provides its Xservice through wsrep API (https://launchpad.net/wsrep). It features Xoptimistic transaction execution and commit time replication and Xcertification of writesets. X XWWW: http://www.codership.com/ 379cdda07570333c04313562f33484b8 echo x - galera/distinfo sed 's/^X//' >galera/distinfo << '7a063854f908d24c7d2d206b7a92676b' XSHA256 (galera-25.3.2-src.tar.gz) = 5dd54364720f8854088590bdfea1e3a7f3e37fda3dfe8a5f58ebcc987cc6788d XSIZE (galera-25.3.2-src.tar.gz) = 3808803 7a063854f908d24c7d2d206b7a92676b echo c - galera/files mkdir -p galera/files > /dev/null 2>&1 echo x - galera/files/garb.in sed 's/^X//' >galera/files/garb.in << '257044ddbaf13cd105f11ad73bf9a165' X#!/bin/sh X# X# garb.sh for rc.d usage (c) 2013 Codership Oy X# $Id$ X X# PROVIDE: garb X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# Add the following line to /etc/rc.conf to enable Galera Arbitrator Daemon (garbd): X# garb_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable Galera Arbitrator Daemon. X# garb_galera_nodes (str): A space-separated list of node addresses (address[:port]) in the cluster X# (default empty). X# garb_galera_group (str): Galera cluster name, should be the same as on the rest of the nodes. X# (default empty). X# Optional: X# garb_galera_options (str): Optional Galera internal options string (e.g. SSL settings) X# see http://www.codership.com/wiki/doku.php?id=galera_parameters X# (default empty). X# garb_log_file (str): Log file for garbd (default empty). Optional, by default logs to syslog X# garb_pid_file (str): Custum PID file path and name. X# Default to "/var/run/garb.pid". X# X X. /etc/rc.subr X Xname="garb" Xrcvar=garb_enable X Xload_rc_config $name X X# set defaults X: ${garb_enable="NO"} X: ${garb_galera_nodes=""} X: ${garb_galera_group=""} X: ${garb_galera_options=""} X: ${garb_log_file=""} X: ${garb_pid_file="/var/run/garb.pid"} X Xprocname="%%PREFIX%%/bin/garbd" Xcommand="/usr/sbin/daemon" Xcommand_args="-c -f -u nobody -p $garb_pid_file $procname" Xstart_precmd="${name}_prestart" X#start_cmd="${name}_start" Xstart_postcmd="${name}_poststart" Xstop_precmd="${name}_prestop" X#stop_cmd="${name}_stop" X#stop_postcmd="${name}_poststop" X#extra_commands="reload" X#reload_cmd="${name}_reload" Xexport %%LD_LIBRARY_PATH%% X Xgarb_prestart() X{ X [ "$(id -ur)" != "0" ] && err 4 "root rights are required to start $name" X [ -r "$garb_pid_file" ] && err 0 "$procname is already running with PID $(cat $garb_pid_file)" X [ -x "$procname" ] || err 5 "$procname is not found" X X # check that node addresses are configured X [ -z "$garb_galera_nodes" ] && err 6 "List of garb_galera_nodes is not configured" X [ -z "$garb_galera_group" ] && err 6 "garb_galera_group name is not configured" X X GALERA_PORT=${GALERA_PORT:-4567} X X # Find a working node X for ADDRESS in ${garb_galera_nodes} 0; do X HOST=$(echo $ADDRESS | cut -d \: -f 1) X PORT=$(echo $ADDRESS | cut -d \: -f 2) X PORT=${PORT:-$GALERA_PORT} X nc -z $HOST $PORT >/dev/null 2>&1 && break X done X [ ${ADDRESS} == "0" ] && err 1 "None of the nodes in $garb_galera_nodes is accessible" X X command_args="$command_args -a gcomm://$ADDRESS" X [ -n "$garb_galera_group" ] && command_args="$command_args -g $garb_galera_group" X [ -n "$garb_galera_options" ] && command_args="$command_args -o $garb_galera_options" X [ -n "$garb_log_file" ] && command_args="$command_args -l $garb_log_file" X return 0 X} X Xgarb_poststart() X{ X local timeout=15 X while [ ! -f "$garb_pid_file" -a $timeout -gt 0 ]; do X timeout=$(( timeout - 1 )) X sleep 1 X done X return 0 X} X Xgarb_prestop() { X [ "$(id -ur)" != "0" ] && err 4 "root rights are required to stop $name" X [ -r $garb_pid_file ] || err 0 "" X return 0 X} X Xrun_rc_command "$1" 257044ddbaf13cd105f11ad73bf9a165 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 10:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECAB048F for ; Tue, 10 Dec 2013 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C5A991EEA for ; Tue, 10 Dec 2013 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAAo0FW010665 for ; Tue, 10 Dec 2013 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAAo0wr010664; Tue, 10 Dec 2013 10:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 10:50:00 GMT Resent-Message-Id: <201312101050.rBAAo0wr010664@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Robert Backahus Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 686F215C for ; Tue, 10 Dec 2013 10:41:33 +0000 (UTC) Received: from spam.symbionetworks.com (smtp02.symbionetworks.com [125.213.165.10]) by mx1.freebsd.org (Postfix) with ESMTP id 2CC501E81 for ; Tue, 10 Dec 2013 10:41:32 +0000 (UTC) Received: from spam.symbionetworks.com (localhost.localdomain [127.0.0.1]) by localhost (Email Security Appliance) with SMTP id 6EAA218BC3C5_2A6ED22B for ; Tue, 10 Dec 2013 10:29:54 +0000 (GMT) Received: from boffin.lan (unknown [115.187.242.125]) by spam.symbionetworks.com (Sophos Email Appliance) with ESMTP id CF52818BC399_2A6ED20F for ; Tue, 10 Dec 2013 10:29:52 +0000 (GMT) Received: (from robbak@localhost) by boffin.lan (8.14.6/8.14.6/Submit) id rBAAbn6o003552; Tue, 10 Dec 2013 20:37:49 +1000 (EST) (envelope-from robbak) Message-Id: <201312101037.rBAAbn6o003552@boffin.lan> Date: Tue, 10 Dec 2013 20:37:49 +1000 (EST) From: Robert Backahus To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184655: [MAINTAINER] net-p2p/bitcoin: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 10:50:01 -0000 >Number: 184655 >Category: ports >Synopsis: [MAINTAINER] net-p2p/bitcoin: update to 0.8.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 10:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Robert Backahus >Release: FreeBSD 9.1-STABLE amd64 >Organization: >Environment: System: FreeBSD boffin 9.1-STABLE FreeBSD 9.1-STABLE #4 r246398: Thu Feb 7 02:57:27 >Description: Update to 0.8.6 Remove patch--init_cpp, applied upstream. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- bitcoin-0.8.6.patch begins here --- diff -ruN /usr/ports/net-p2p/bitcoin/Makefile ./Makefile --- /usr/ports/net-p2p/bitcoin/Makefile 2013-11-22 22:55:11.000000000 +1000 +++ ./Makefile 2013-12-10 18:33:37.000000000 +1000 @@ -2,7 +2,7 @@ # $FreeBSD: net-p2p/bitcoin/Makefile 334587 2013-11-22 12:55:11Z makc $ PORTNAME= bitcoin -PORTVERSION= 0.8.5 +PORTVERSION= 0.8.6 CATEGORIES= net-p2p finance MASTER_SITES= ${MASTER_SITE_LOCAL} \ http://people.freebsd.org/~swills/ \ @@ -23,7 +23,7 @@ USE_GITHUB= yes GH_ACCOUNT= bitcoin GH_PROJECT= bitcoin -GH_COMMIT= 8090e11 +GH_COMMIT= 15e2837 GH_TAGNAME= v${PORTVERSION} USE_GMAKE= yes diff -ruN /usr/ports/net-p2p/bitcoin/distinfo ./distinfo --- /usr/ports/net-p2p/bitcoin/distinfo 2013-09-24 11:48:57.000000000 +1000 +++ ./distinfo 2013-12-10 18:25:00.000000000 +1000 @@ -1,2 +1,2 @@ -SHA256 (bitcoin-0.8.5.tar.gz) = 0a60bda22fb198a2682a6a0b3c82b3da053f76efdd5930eae9af3792bdc4bffe -SIZE (bitcoin-0.8.5.tar.gz) = 3181937 +SHA256 (bitcoin-0.8.6.tar.gz) = 0703ce3fce77b63bce11388790176f5626b521b7403d72db1ed452c692fdc55d +SIZE (bitcoin-0.8.6.tar.gz) = 3194755 diff -ruN /usr/ports/net-p2p/bitcoin/files/patch-init_cpp ./files/patch-init_cpp --- /usr/ports/net-p2p/bitcoin/files/patch-init_cpp 2013-05-30 21:28:53.000000000 +1000 +++ ./files/patch-init_cpp 1970-01-01 10:00:00.000000000 +1000 @@ -1,12 +0,0 @@ -diff -ur ../bitcoin-bitcoin-18c9239.orig/src/init.cpp ./src/init.cpp ---- ../bitcoin-bitcoin-18c9239.orig/src/init.cpp 2013-05-24 22:50:15.000000000 +1000 -+++ ./src/init.cpp 2013-05-24 22:53:20.000000000 +1000 -@@ -530,7 +530,7 @@ - // Make sure enough file descriptors are available - int nBind = std::max((int)mapArgs.count("-bind"), 1); - nMaxConnections = GetArg("-maxconnections", 125); -- nMaxConnections = std::max(std::min(nMaxConnections, FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS), 0); -+ nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS)), 0); - int nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS); - if (nFD < MIN_CORE_FILEDESCRIPTORS) - return InitError(_("Not enough file descriptors available.")); --- bitcoin-0.8.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 10:50:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF4304BC; Tue, 10 Dec 2013 10:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 842071EEC; Tue, 10 Dec 2013 10:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAAo8R0010807; Tue, 10 Dec 2013 10:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAAo8ag010806; Tue, 10 Dec 2013 10:50:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 10:50:08 GMT Message-Id: <201312101050.rBAAo8ag010806@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184655: [MAINTAINER] net-p2p/bitcoin: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 10:50:08 -0000 Synopsis: [MAINTAINER] net-p2p/bitcoin: update to 0.8.6 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 10:50:08 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184655 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 12:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A50BE9A8 for ; Tue, 10 Dec 2013 12:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FB69143F for ; Tue, 10 Dec 2013 12:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAC00gp025002 for ; Tue, 10 Dec 2013 12:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAC00ot024999; Tue, 10 Dec 2013 12:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 12:00:00 GMT Resent-Message-Id: <201312101200.rBAC00ot024999@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Moisseev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 017C679C for ; Tue, 10 Dec 2013 11:55:44 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C7ACD13C7 for ; Tue, 10 Dec 2013 11:55:43 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBABtgqw050997 for ; Tue, 10 Dec 2013 11:55:42 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBABtg1L050989; Tue, 10 Dec 2013 11:55:42 GMT (envelope-from nobody) Message-Id: <201312101155.rBABtg1L050989@oldred.freebsd.org> Date: Tue, 10 Dec 2013 11:55:42 GMT From: Alexander Moisseev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184656: [maintainer update] sysutils/p5-BackupPC-XS: update to 0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 12:00:00 -0000 >Number: 184656 >Category: ports >Synopsis: [maintainer update] sysutils/p5-BackupPC-XS: update to 0.30 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 12:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexander Moisseev >Release: >Organization: >Environment: >Description: - Update to 0.30 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN p5-BackupPC-XS.orig/Makefile p5-BackupPC-XS/Makefile --- p5-BackupPC-XS.orig/Makefile 2013-11-18 18:08:08.000000000 +0400 +++ p5-BackupPC-XS/Makefile 2013-12-03 10:10:26.000000000 +0400 @@ -2,10 +2,10 @@ # $FreeBSD: sysutils/p5-BackupPC-XS/Makefile 334197 2013-11-18 14:08:08Z jadawin $ PORTNAME= BackupPC-XS -PORTVERSION= 0.20 +PORTVERSION= 0.30 CATEGORIES= sysutils perl5 MASTER_SITES= SF -MASTER_SITE_SUBDIR= backuppc/backuppc-beta/4.0.0alpha2 +MASTER_SITE_SUBDIR= backuppc/backuppc-beta/4.0.0alpha3 PKGNAMEPREFIX= p5- MAINTAINER= moiseev@mezonplus.ru diff -ruN p5-BackupPC-XS.orig/distinfo p5-BackupPC-XS/distinfo --- p5-BackupPC-XS.orig/distinfo 2013-11-18 18:08:08.000000000 +0400 +++ p5-BackupPC-XS/distinfo 2013-12-03 10:10:41.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (BackupPC-XS-0.20.tar.gz) = b80745bac2a0d8c3d8e4c0be72d68e2d4450926f065d8b9af62cbee555d83f87 -SIZE (BackupPC-XS-0.20.tar.gz) = 281081 +SHA256 (BackupPC-XS-0.30.tar.gz) = a0a987d98624e17de7890b2cb8ceedf5bd9c73786c1b32e3a2b65643d5792f79 +SIZE (BackupPC-XS-0.30.tar.gz) = 281325 diff -ruN p5-BackupPC-XS.orig/files/patch-Makefile.PL p5-BackupPC-XS/files/patch-Makefile.PL --- p5-BackupPC-XS.orig/files/patch-Makefile.PL 2013-11-18 18:08:08.000000000 +0400 +++ p5-BackupPC-XS/files/patch-Makefile.PL 1970-01-01 03:00:00.000000000 +0300 @@ -1,31 +0,0 @@ ---- Makefile.PL.orig 2013-05-26 11:32:01.000000000 +0400 -+++ Makefile.PL 2013-09-26 09:38:14.000000000 +0400 -@@ -14,10 +14,6 @@ - bpc_refCount$(OBJ_EXT) - ]; - $object =~ s/[\n\r\s]+/ /g; --my $ldfrom = $object; --$ldfrom =~ s{(\w+)/}{}g; --$ldfrom .= ' zlib/libzlib$(LIB_EXT)'; --$ldfrom .= ' md5/libmd5$(LIB_EXT)'; - - WriteMakefile( - NAME => 'BackupPC::XS', -@@ -28,7 +24,7 @@ - DEFINE => '', # e.g., '-DHAVE_SOMETHING' - INC => '-I.', # e.g., '-I. -I/usr/include/other' - OBJECT => $object, -- LDFROM => $ldfrom, -+ MYEXTLIB => 'zlib/libzlib$(LIB_EXT) md5/libmd5$(LIB_EXT)', - DIR => ['md5', 'zlib'], - depend => { 'BackupPC_XS.o' => 'config.h' }, - clean => { FILES => "config.log config.status config.h" }, -@@ -38,7 +34,7 @@ - return <<'EOF'; - - zlib/libzlib$(LIB_EXT): zlib/Makefile config.h -- cd md5 && $(MAKE) $(PASSTHRU) -+ cd zlib && $(MAKE) $(PASSTHRU) - - md5/libmd5$(LIB_EXT): md5/Makefile config.h - cd md5 && $(MAKE) $(PASSTHRU) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 12:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EF8A9D9; Tue, 10 Dec 2013 12:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 039E61442; Tue, 10 Dec 2013 12:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAC0897025155; Tue, 10 Dec 2013 12:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAC08Fm025154; Tue, 10 Dec 2013 12:00:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 12:00:08 GMT Message-Id: <201312101200.rBAC08Fm025154@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184656: [maintainer update] sysutils/p5-BackupPC-XS: update to 0.30 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 12:00:09 -0000 Synopsis: [maintainer update] sysutils/p5-BackupPC-XS: update to 0.30 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 12:00:08 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184656 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 12:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73633E10 for ; Tue, 10 Dec 2013 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D4BD15D1 for ; Tue, 10 Dec 2013 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBACK1E3033389 for ; Tue, 10 Dec 2013 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBACK1YK033388; Tue, 10 Dec 2013 12:20:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 12:20:01 GMT Message-Id: <201312101220.rBACK1YK033388@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Alexander Moisseev Subject: Re: ports/182434: New port: net/rsync-bpc Modified rsync that used as part of BackupPC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alexander Moisseev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 12:20:01 -0000 The following reply was made to PR ports/182434; it has been noted by GNATS. From: Alexander Moisseev To: bug-followup@FreeBSD.org, moiseev@mezonplus.ru Cc: Subject: Re: ports/182434: New port: net/rsync-bpc Modified rsync that used as part of BackupPC Date: Tue, 10 Dec 2013 16:05:13 +0400 This is a multi-part message in MIME format. --------------020304000604000508030504 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Since rsync-bpc-3.0.9.3 released, please use attached shar instead of originally submitted shars. --------------020304000604000508030504 Content-Type: text/plain; charset=windows-1251; name="rsync-bpc-3.0.9.3.shar" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="rsync-bpc-3.0.9.3.shar" IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJcnN5 bmMtYnBjCiMJcnN5bmMtYnBjL01ha2VmaWxlCiMJcnN5bmMtYnBjL3BrZy1kZXNjcgojCXJz eW5jLWJwYy9kaXN0aW5mbwojCmVjaG8gYyAtIHJzeW5jLWJwYwpta2RpciAtcCByc3luYy1i cGMgPiAvZGV2L251bGwgMj4mMQplY2hvIHggLSByc3luYy1icGMvTWFrZWZpbGUKc2VkICdz L15YLy8nID5yc3luYy1icGMvTWFrZWZpbGUgPDwgJzk4Y2M2ODc0ODcxMDJkNzA3MDMyN2Mw MTE3MjQ5ZjkzJwpYIyBDcmVhdGVkIGJ5OiBBbGV4YW5kZXIgTW9pc3NlZXYgPG1vaXNlZXZA bWV6b25wbHVzLnJ1PgpYIyAkRnJlZUJTRCQKWApYUE9SVE5BTUU9CXJzeW5jLWJwYwpYUE9S VFZFUlNJT049CTMuMC45LjMKWENBVEVHT1JJRVM9CW5ldApYTUFTVEVSX1NJVEVTPQlTRgpY TUFTVEVSX1NJVEVfU1VCRElSPQliYWNrdXBwYy9iYWNrdXBwYy1iZXRhLzQuMC4wYWxwaGEz ClgKWE1BSU5UQUlORVI9CW1vaXNlZXZAbWV6b25wbHVzLnJ1ClhDT01NRU5UPQlNb2RpZmll ZCByc3luYyB0aGF0IHVzZWQgYXMgcGFydCBvZiBCYWNrdXBQQwpYClhMSUNFTlNFPQlHUEx2 MwpYTElDRU5TRV9GSUxFPQkke1dSS1NSQ30vQ09QWUlORwpYClhIQVNfQ09ORklHVVJFPQl5 ZXMKWENPTkZJR1VSRV9TQ1JJUFQ9CWNvbmZpZ3VyZS5zaApYQ09ORklHVVJFX0FSR1M9CS0t cHJlZml4PSR7UFJFRklYfQpYClhQTElTVF9GSUxFUz0JYmluL3JzeW5jX2JwYwpYClguaW5j bHVkZSA8YnNkLnBvcnQubWs+Cjk4Y2M2ODc0ODcxMDJkNzA3MDMyN2MwMTE3MjQ5ZjkzCmVj aG8geCAtIHJzeW5jLWJwYy9wa2ctZGVzY3IKc2VkICdzL15YLy8nID5yc3luYy1icGMvcGtn LWRlc2NyIDw8ICdiNmYwZTY3M2YxYzUyZDIyYjJiODNjN2Q0ZTM2M2RjNycKWFJzeW5jLWJw YyBpcyBhIGN1c3RvbWl6ZWQgdmVyc2lvbiBvZiByc3luYyB0aGF0IGlzIHVzZWQgYXMgcGFy dCBvZiBCYWNrdXBQQywKWGFuIG9wZW4gc291cmNlIGJhY2t1cCBzeXN0ZW0uClgKWFRoZSBt YWluIGNoYW5nZSB0byByc3luYyBpcyBhZGRpbmcgYSBzaGltIGxheWVyIHRoYXQgZW11bGF0 ZXMgdGhlIHN5c3RlbSBjYWxscwpYZm9yIGFjY2Vzc2luZyB0aGUgZmlsZSBzeXN0ZW0gc28g dGhhdCByc3luYyBjYW4gZGlyZWN0bHkgcmVhZC93cml0ZSBmaWxlcyBpbgpYQmFja3VwUEMn cyBmb3JtYXQuClgKWFJzeW5jLWJwYyBpcyBmdWxseSBsaW5lLWNvbXBhdGlibGUgd2l0aCB2 YW5pbGxhIHJzeW5jLCBzbyBpdCBjYW4gdGFsayB0byByc3luYwpYc2VydmVycyBhbmQgY2xp ZW50cy4KWApYUnN5bmMtYnBjIHNlcnZlcyBubyBwdXJwb3NlIG91dHNpZGUgb2YgQmFja3Vw UEMuClgKWFdXVzogaHR0cDovL2JhY2t1cHBjLnNvdXJjZWZvcmdlLm5ldApiNmYwZTY3M2Yx YzUyZDIyYjJiODNjN2Q0ZTM2M2RjNwplY2hvIHggLSByc3luYy1icGMvZGlzdGluZm8Kc2Vk ICdzL15YLy8nID5yc3luYy1icGMvZGlzdGluZm8gPDwgJ2FiYjljNDI3ZjM5MTY3OGNiNWUy MjUwOWUxYzExOTRhJwpYU0hBMjU2IChyc3luYy1icGMtMy4wLjkuMy50YXIuZ3opID0gNGIx NDdhMGZlNjBhY2E2NTg3OWFkMzQzMGM3YzhlYWQwOTU2MjE2MWI4YmJkMjlmNWYyOTA1NGI5 MjVmZTAxYQpYU0laRSAocnN5bmMtYnBjLTMuMC45LjMudGFyLmd6KSA9IDc3NTEzNAphYmI5 YzQyN2YzOTE2NzhjYjVlMjI1MDllMWMxMTk0YQpleGl0Cgo= --------------020304000604000508030504-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 12:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 713F6E11 for ; Tue, 10 Dec 2013 12:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5CBC015D2 for ; Tue, 10 Dec 2013 12:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBACK2Gg033395 for ; Tue, 10 Dec 2013 12:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBACK2xE033394; Tue, 10 Dec 2013 12:20:02 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 12:20:02 GMT Message-Id: <201312101220.rBACK2xE033394@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Alexander Moisseev Subject: Re: ports/183241: New port: sysutils/backuppc-devel - development version of sysutils/backuppc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alexander Moisseev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 12:20:02 -0000 The following reply was made to PR ports/183241; it has been noted by GNATS. From: Alexander Moisseev To: bug-followup@FreeBSD.org, moiseev@mezonplus.ru Cc: Subject: Re: ports/183241: New port: sysutils/backuppc-devel - development version of sysutils/backuppc Date: Tue, 10 Dec 2013 16:10:28 +0400 This is a multi-part message in MIME format. --------------020402030802050300030809 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Since BackupPC 4.0.0alpha3 released, please use attached shar instead of originally submitted shar. --------------020402030802050300030809 Content-Type: text/plain; charset=windows-1251; name="backuppc-devel.shar" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="backuppc-devel.shar" IyBUaGlzIGlzIGEgc2hlbGwgYXJjaGl2ZS4gIFNhdmUgaXQgaW4gYSBmaWxlLCByZW1vdmUg YW55dGhpbmcgYmVmb3JlCiMgdGhpcyBsaW5lLCBhbmQgdGhlbiB1bnBhY2sgaXQgYnkgZW50 ZXJpbmcgInNoIGZpbGUiLiAgTm90ZSwgaXQgbWF5CiMgY3JlYXRlIGRpcmVjdG9yaWVzOyBm aWxlcyBhbmQgZGlyZWN0b3JpZXMgd2lsbCBiZSBvd25lZCBieSB5b3UgYW5kCiMgaGF2ZSBk ZWZhdWx0IHBlcm1pc3Npb25zLgojCiMgVGhpcyBhcmNoaXZlIGNvbnRhaW5zOgojCiMJYmFj a3VwcGMtZGV2ZWwKIwliYWNrdXBwYy1kZXZlbC9kaXN0aW5mbwojCWJhY2t1cHBjLWRldmVs L2ZpbGVzCiMJYmFja3VwcGMtZGV2ZWwvZmlsZXMvYmFja3VwcGMuaW4KIwliYWNrdXBwYy1k ZXZlbC9maWxlcy9wYXRjaC1iaW4tQmFja3VwUENfcnJkVXBkYXRlCiMJYmFja3VwcGMtZGV2 ZWwvZmlsZXMvcGtnLWRlaW5zdGFsbC5pbgojCWJhY2t1cHBjLWRldmVsL2ZpbGVzL3BrZy1t ZXNzYWdlLmluCiMJYmFja3VwcGMtZGV2ZWwvTWFrZWZpbGUKIwliYWNrdXBwYy1kZXZlbC9w a2ctZGVzY3IKIwliYWNrdXBwYy1kZXZlbC9wa2ctcGxpc3QKIwplY2hvIGMgLSBiYWNrdXBw Yy1kZXZlbApta2RpciAtcCBiYWNrdXBwYy1kZXZlbCA+IC9kZXYvbnVsbCAyPiYxCmVjaG8g eCAtIGJhY2t1cHBjLWRldmVsL2Rpc3RpbmZvCnNlZCAncy9eWC8vJyA+YmFja3VwcGMtZGV2 ZWwvZGlzdGluZm8gPDwgJzBkYmVjNDY4MDkzMjQxZDA0NDQzYWEzNjIxNTAxMzI1JwpYU0hB MjU2IChCYWNrdXBQQy00LjAuMGFscGhhMy50YXIuZ3opID0gM2U2M2FkMzc1NDY1NDI1Zjk3 MTc5MTUyZDA5ZTkxOTYzY2NlZDhiNWNhN2U0MDAyOTBiODFkZWNmODNhOTAyZQpYU0laRSAo QmFja3VwUEMtNC4wLjBhbHBoYTMudGFyLmd6KSA9IDU4Mzk3MAowZGJlYzQ2ODA5MzI0MWQw NDQ0M2FhMzYyMTUwMTMyNQplY2hvIGMgLSBiYWNrdXBwYy1kZXZlbC9maWxlcwpta2RpciAt cCBiYWNrdXBwYy1kZXZlbC9maWxlcyA+IC9kZXYvbnVsbCAyPiYxCmVjaG8geCAtIGJhY2t1 cHBjLWRldmVsL2ZpbGVzL2JhY2t1cHBjLmluCnNlZCAncy9eWC8vJyA+YmFja3VwcGMtZGV2 ZWwvZmlsZXMvYmFja3VwcGMuaW4gPDwgJ2ZhZmI3MTQ5YjJjMWI2NWFmMjcxZmViMmIyNTNj ZDBmJwpYIyEvYmluL3NoClgKWCMgUFJPVklERTogYmFja3VwcGMKWCMgUkVRVUlSRTogTE9H SU4KWCMgS0VZV09SRDogc2h1dGRvd24KWCMKWCMgQWRkIHRoZSBmb2xsb3dpbmcgbGluZSB0 byAvZXRjL3JjLmNvbmYgdG8gZW5hYmxlIEJhY2t1cFBDOgpYIyBiYWNrdXBwY19lbmFibGU9 IllFUyIKWApYLiAvZXRjL3JjLnN1YnIKWApYbmFtZT0iYmFja3VwcGMiClhyY3Zhcj1iYWNr dXBwY19lbmFibGUKWApYbG9hZF9yY19jb25maWcgJG5hbWUKWApYOiAke2JhY2t1cHBjX2Vu YWJsZTo9Ik5PIn0KWDogJHtiYWNrdXBwY19mbGFnczo9Ii1kIn0KWDogJHtiYWNrdXBwY191 c2VyOj0iYmFja3VwcGMifQpYOiAke2JhY2t1cHBjX2dyb3VwOj0iYmFja3VwcGMifQpYOiAk e2JhY2t1cHBjX2NvbmZpZzo9IiUlRVRDRElSJSUvY29uZmlnLnBsIn0KWApYY29tbWFuZF9p bnRlcnByZXRlcj0iL3Vzci9iaW4vcGVybCIKWGNvbW1hbmQ9IiUlUFJFRklYJSUvYmluL0Jh Y2t1cFBDIgpYClhyZXF1aXJlZF9maWxlcz0iJHtiYWNrdXBwY19jb25maWd9IgpYcGlkZmls ZT0iL3Zhci9ydW4vQmFja3VwUEMvQmFja3VwUEMucGlkIgpYClhydW5fcmNfY29tbWFuZCAi JDEiCmZhZmI3MTQ5YjJjMWI2NWFmMjcxZmViMmIyNTNjZDBmCmVjaG8geCAtIGJhY2t1cHBj LWRldmVsL2ZpbGVzL3BhdGNoLWJpbi1CYWNrdXBQQ19ycmRVcGRhdGUKc2VkICdzL15YLy8n ID5iYWNrdXBwYy1kZXZlbC9maWxlcy9wYXRjaC1iaW4tQmFja3VwUENfcnJkVXBkYXRlIDw8 ICczODRhNGE3ZGMwYmVhYmUyZjQzOWIxNTY4NGY2Zjc0OScKWC0tLSAuL2Jpbi9CYWNrdXBQ Q19ycmRVcGRhdGUub3JpZwkyMDEzLTEyLTA5IDE3OjA2OjQ1LjAwMDAwMDAwMCArMDQwMApY KysrIC4vYmluL0JhY2t1cFBDX3JyZFVwZGF0ZQkyMDEzLTEyLTEwIDEyOjI0OjQxLjAwMDAw MDAwMCArMDQwMApYQEAgLTEwOSw3ICsxMDksNyBAQApYICAgICB9ClggICAgICRzaXplVG90 ID0gJHNpemVUb3QgLyAxMDI0OwpYIApYLSAgICBwcmludCAkYnBjLT5jbWRTeXN0ZW1PckV2 YWwoClgrICAgIGlmICggJGVyciA9ICRicGMtPmNtZFN5c3RlbU9yRXZhbCgKWCAgICAgICAg ICAgICBbClggICAgICAgICAgICAgICAgICRDb25me1JyZFRvb2xQYXRofSwKWCAgICAgICAg ICAgICAgICAgInVwZGF0ZSIsICRSUkRGaWxlLApYQEAgLTExOSwxMyArMTE5LDE3IEBAClgg ICAgICAgICAgICAgICAgIC4gJEluZm97InBvb2xLYiJ9ICAuICI6IgpYICAgICAgICAgICAg ICAgICAuICRJbmZveyJwb29sNEtiIn0gLiAiOiIKWCAgICAgICAgICAgICAgICAgLiAkSW5m b3siY3Bvb2w0S2IifQpYLSAgICAgICAgICAgIF0pOwpYLSAgICAgcHJpbnRmKCIlc1JSRCB1 cGRhdGVkOiIKWCsgICAgICAgICAgICBdKSApIHsKWCsgICAgICAgIHByaW50ICIkZXJyIjsK WCsgICAgfQpYKyAgICBlbHNlIHsKWCsgICAgICAgIHByaW50ZigiJXNSUkQgdXBkYXRlZDoi ClggICAgICAgICAgIC4gIiBkYXRlICVzOyBjcG9vbEtiICVmOyB0b3RhbCAlZjsiClggICAg ICAgICAgIC4gIiBwb29sS2IgJWY7IHBvb2w0S2IgJWY7IGNwb29sNEtiICVmXG4iLApYICAg ICAgICAgICAgICAgICAkYnBjLT50aW1lU3RhbXAsClggICAgICAgICAgICAgICAgICROb3dS bmQxLCAkSW5mb3siY3Bvb2xLYiJ9LCAkc2l6ZVRvdCwKWCAgICAgICAgICAgICAgICAgJElu Zm97InBvb2xLYiJ9LCAkSW5mb3sicG9vbDRLYiJ9LCAkSW5mb3siY3Bvb2w0S2IifSk7Clgr ICAgIH0KWCB9ClggClggIwpYQEAgLTE0MCw3ICsxNDQsNyBAQApYICAgICAjClggICAgICMg R2V0IGVhY2ggcG9vbCBtYXggdmFsdWUgZnJvbSBSUkQKWCAgICAgIwpYLSAgICAkYnBjLT5j bWRTeXN0ZW1PckV2YWwoClgrICAgICRicGMtPmNtZFN5c3RlbU9yRXZhbExvbmcoClggICAg ICAgICAgICAgWwpYICAgICAgICAgICAgICAgICAkQ29uZntScmRUb29sUGF0aH0sClggICAg ICAgICAgICAgICAgICJncmFwaHYiLCAiLSIsClhAQCAtMTU4LDcgKzE2Miw3IEBAClggICAg ICAgICAgICAgICAgIGlmICggJF9bMF0gPX4gL15wcmludFxbKFswLTNdKVxdID0gIihbLjAt OV0rKSIkLyApIHsKWCAgICAgICAgICAgICAgICAgICAgICRwb29sTWF4WyQxXSA9ICQyIHVu bGVzcyAoICQyID09IDAgKTsKWCAgICAgICAgICAgICAgICAgfQpYLSAgICAgICAgICAgIH0p OwpYKyAgICAgICAgICAgIH0sIDEsIHVuZGVmKTsKWCAKWCAgICAgbXkgJHBvb2xTaXplR3Jh cGggPSBbClggICAgICAgICAiJENvbmZ7UnJkVG9vbFBhdGh9IiwKWEBAIC0yMjgsNiArMjMy LDYgQEAKWCAgICAgICAgIHByaW50KCJDYW4ndCBvcGVuL2NyZWF0ZSAkTG9nRGlyL3Bvb2xV c2FnZSR3ZWVrcy5wbmdcbiIpOwpYICAgICAgICAgcmV0dXJuOwpYICAgICB9ClgtICAgICRi cGMtPmNtZFN5c3RlbU9yRXZhbCgkcG9vbFNpemVHcmFwaCwgc3ViIHsgcHJpbnQgJGZkT3V0 ICRfWzBdIH0pOwpYKyAgICAkYnBjLT5jbWRTeXN0ZW1PckV2YWxMb25nKCRwb29sU2l6ZUdy YXBoLCBzdWIgeyBwcmludCAkZmRPdXQgJF9bMF0gfSwgMSwgdW5kZWYpOwpYICAgICBjbG9z ZSgkZmRPdXQpOwpYIH0KMzg0YTRhN2RjMGJlYWJlMmY0MzliMTU2ODRmNmY3NDkKZWNobyB4 IC0gYmFja3VwcGMtZGV2ZWwvZmlsZXMvcGtnLWRlaW5zdGFsbC5pbgpzZWQgJ3MvXlgvLycg PmJhY2t1cHBjLWRldmVsL2ZpbGVzL3BrZy1kZWluc3RhbGwuaW4gPDwgJ2NiOTdlNWUxN2Zj MTA2MWYxZTBhMDA1YzhlNWJiZjUwJwpYIyEgL2Jpbi9zaApYClhpZiBbICIkMiIgIT0gIlBP U1QtREVJTlNUQUxMIiBdOyB0aGVuClggICAgZXhpdCAwClhmaQpYClhlY2hvClhlY2hvICI9 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PSIKWGVjaG8gIiBJZiB5b3UgYXJlIHBlcm1hbmVudGx5IHJlbW92 aW5nIEJhY2t1cFBDLCB5b3Ugc2hvdWxkIG1hbnVhbGx5IGRlbGV0ZToiClhlY2hvICIgIC0g dGhlIGJhY2t1cHBjIHVzZXIvZ3JvdXA6CXB3IHVzZXJkZWwgYmFja3VwcGMiClhpZiBbIC1k ICUlRVRDRElSJSUgXTsgdGhlbgpYICAgIGVjaG8gIiAgLSBCYWNrdXBQQyBjb25maWd1cmF0 aW9uOglybSAtciAlJUVUQ0RJUiUlIgpYZmkKWGlmIFsgLWQgJSVCUENfREFUQURJUiUlIF07 IHRoZW4KWCAgICBlY2hvICIgIC0gQmFja3VwUEMgZGF0YSBkaXJlY3Rvcnk6CXJtIC1yICUl QlBDX0RBVEFESVIlJSIKWGZpClhpZiBbIC1kIC92YXIvbG9nL0JhY2t1cFBDIF07IHRoZW4K WCAgICBlY2hvICIgIC0gQmFja3VwUEMgbG9ncyBkaXJlY3Rvcnk6CXJtIC1yIC92YXIvbG9n L0JhY2t1cFBDIgpYZmkKWGVjaG8gIj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09IgpYZWNobwpjYjk3ZTVl MTdmYzEwNjFmMWUwYTAwNWM4ZTViYmY1MAplY2hvIHggLSBiYWNrdXBwYy1kZXZlbC9maWxl cy9wa2ctbWVzc2FnZS5pbgpzZWQgJ3MvXlgvLycgPmJhY2t1cHBjLWRldmVsL2ZpbGVzL3Br Zy1tZXNzYWdlLmluIDw8ICdmZTgzYWVhYzVlNjdlYjYxNDlhYzJkMWQxZjQ1OWJjNycKWD09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09ClggLSBZb3UgbmVlZCB0byBjdXN0b21pemUgJSVFVENESVIl JS9jb25maWcucGwgLgpYClggICAgIElmIHRoaXMgaXMgYW4gdXBncmFkZSwgaW5zdGFsbCBC YWNrdXBQQyBmcm9tIHBvcnQgKG5vdCBmcm9tIHBhY2thZ2UpClggICAgIGFuZCBtYWtlIHN1 cmUgdGhlIGZ1bGwgcGF0aCBvZiB0aGUgZXhpc3RpbmcgQmFja3VwUEMKWCAgICAgY29uZmln dXJhdGlvbiBkaXJlY3RvcnkgaXMgJSVFVENESVIlJSAuClggICAgIE90aGVyd2lzZSB5b3Ug d2lsbCBuZWVkIHRvIG1ha2UgY2hhbmdlcyBpbiBjb25maWcucGwgYnkgaGFuZC4KWApYIC0g QWRkIHRoZSBmb2xsb3dpbmcgbGluZSB0byAvZXRjL3JjLmNvbmYgdG8gZW5hYmxlIEJhY2t1 cFBDOgpYClggICAgIGJhY2t1cHBjX2VuYWJsZT0iWUVTIgpYClggLSBEYXRhIGRpcmVjdG9y eSBpcyAlJUJQQ19EQVRBRElSJSUgLgpYClggICAgIFRoaXMgaXMgd2hlcmUgYWxsIHRoZSBQ QyBiYWNrdXAgZGF0YSBpcyBzdG9yZWQuClggICAgIFRoaXMgZmlsZSBzeXN0ZW0gbmVlZHMg dG8gYmUgYmlnIGVub3VnaApYICAgICB0byBhY2NvbW1vZGF0ZSBhbGwgdGhlIFBDcyB5b3Ug ZXhwZWN0IHRvIGJhY2t1cC4KWD09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CmZlODNhZWFjNWU2N2Vi NjE0OWFjMmQxZDFmNDU5YmM3CmVjaG8geCAtIGJhY2t1cHBjLWRldmVsL01ha2VmaWxlCnNl ZCAncy9eWC8vJyA+YmFja3VwcGMtZGV2ZWwvTWFrZWZpbGUgPDwgJzIxZTBiYzQ1NzhlMWZk NDc0MjMzNzUzOTc0MGZlMDQ5JwpYIyBDcmVhdGVkIGJ5OiBBbGV4YW5kZXIgTW9pc3NlZXYg PG1vaXNlZXZAbWV6b25wbHVzLnJ1PgpYIyAkRnJlZUJTRCQKWApYUE9SVE5BTUU9CWJhY2t1 cHBjClhESVNUVkVSU0lPTj0JNC4wLjBhbHBoYTMKWENBVEVHT1JJRVM9CXN5c3V0aWxzClhN QVNURVJfU0lURVM9CVNGClhNQVNURVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9LyR7UE9S VE5BTUV9LWJldGEvJHtESVNUVkVSU0lPTn0KWFBLR05BTUVTVUZGSVg9CS1kZXZlbApYRElT VE5BTUU9CUJhY2t1cFBDLSR7RElTVFZFUlNJT059ClgKWE1BSU5UQUlORVI9CW1vaXNlZXZA bWV6b25wbHVzLnJ1ClhDT01NRU5UPQlTeXN0ZW0gZm9yIGJhY2tpbmcgUENzIGFuZCBsYXB0 b3BzIHRvIGEgc2VydmVyClgKWExJQ0VOU0U9CUdQTHYzClhMSUNFTlNFX0ZJTEU9CSR7V1JL U1JDfS9MSUNFTlNFClgKWENPTkZMSUNUUz0JYmFja3VwcGMtWzAtOV0qClhMQVRFU1RfTElO Sz0JJHtQT1JUTkFNRX0tZGV2ZWwKWApYUlVOX0RFUEVORFM9CXA1LUZpbGUtTGlzdGluZz49 MDoke1BPUlRTRElSfS9zeXN1dGlscy9wNS1GaWxlLUxpc3RpbmcgXApYCQlwNS1CYWNrdXBQ Qy1YUz49MC4zMDoke1BPUlRTRElSfS9zeXN1dGlscy9wNS1CYWNrdXBQQy1YUwpYClhVU0Vf UkNfU1VCUj0JYmFja3VwcGMKWApYVVNFUz0JCXBlcmw1ClhOT19CVUlMRD0JeWVzClgKWFVT RVJTPQkJYmFja3VwcGMKWEdST1VQUz0JCWJhY2t1cHBjClgKWEJQQ19DR0lESVI/PQkke1BS RUZJWH0vd3d3L2NnaS1iaW4KWEJQQ19EQVRBRElSPz0JL3Zhci9kYi9CYWNrdXBQQwpYClhT VUJfRklMRVM9CXBrZy1kZWluc3RhbGwgcGtnLW1lc3NhZ2UKWFNVQl9MSVNUPQlCUENfREFU QURJUj0ke0JQQ19EQVRBRElSfQpYClhQTElTVF9TVUIrPQlCUENfQ0dJRElSPSR7QlBDX0NH SURJUjpTLF4ke1BSRUZJWH0vLCx9IFwKWAkJQlBDX0RBVEFESVI9JHtCUENfREFUQURJUn0g XApYCQlESVNUVkVSU0lPTj0ke0RJU1RWRVJTSU9OfQpYClhPUFRJT05TX0RFRklORT0JCUFS Q0hJVkVfWklQIFJTWU5DX0JQQyBOTUJMT09LVVAgXApYCQkJUlJEVE9PTCBTTUJDTElFTlQg WE1MX1JTUwpYT1BUSU9OU19ERUZBVUxUPQlBUkNISVZFX1pJUApYClhBUkNISVZFX1pJUF9E RVNDPQlQZXJsIG1vZHVsZSBmb3IgWmlwIGFyY2hpdmUgZmlsZXMKWFJTWU5DX0JQQ19ERVND PQkJTW9kaWZpZWQgcnN5bmMgdGhhdCB1c2VkIGFzIHBhcnQgb2YgQmFja3VwUEMKWE5NQkxP T0tVUF9ERVNDPQkJTmV0QklPUyBOYW1lIGxvb2t1cCB0b29sClhSUkRUT09MX0RFU0M9CQlS b3VuZCBSb2JpbiBEYXRhYmFzZSBUb29scwpYU01CQ0xJRU5UX0RFU0M9CQlTYW1iYSBjbGll bnQKWFhNTF9SU1NfREVTQz0JCVBlcmwgZXh0ZW5zaW9uIHRvIG1hbmFnZSBSU1MgZmlsZXMK WApYLmluY2x1ZGUgPGJzZC5wb3J0Lm9wdGlvbnMubWs+ClgKWC5pZiAke1BPUlRfT1BUSU9O UzpNQVJDSElWRV9aSVB9ClhSVU5fREVQRU5EUys9CXA1LUFyY2hpdmUtWmlwPj0wOiR7UE9S VFNESVJ9L2FyY2hpdmVycy9wNS1BcmNoaXZlLVppcApYLmVuZGlmClguaWYgJHtQT1JUX09Q VElPTlM6TVJTWU5DX0JQQ30KWFJVTl9ERVBFTkRTKz0JcnN5bmMtYnBjPj0zLjAuOS4zOiR7 UE9SVFNESVJ9L25ldC9yc3luYy1icGMKWC5lbmRpZgpYLmlmICR7UE9SVF9PUFRJT05TOk1O TUJMT09LVVB9ClhSVU5fREVQRU5EUys9CW5tYmxvb2t1cDoke1BPUlRTRElSfS9uZXQvc2Ft YmEtbm1ibG9va3VwClguZW5kaWYKWC5pZiAke1BPUlRfT1BUSU9OUzpNUlJEVE9PTH0KWFJV Tl9ERVBFTkRTKz0JcnJkdG9vbDoke1BPUlRTRElSfS9kYXRhYmFzZXMvcnJkdG9vbApYLmVu ZGlmClguaWYgJHtQT1JUX09QVElPTlM6TVNNQkNMSUVOVH0KWFJVTl9ERVBFTkRTKz0Jc21i Y2xpZW50OiR7UE9SVFNESVJ9L25ldC9zYW1iYS1zbWJjbGllbnQKWC5lbmRpZgpYLmlmICR7 UE9SVF9PUFRJT05TOk1YTUxfUlNTfQpYUlVOX0RFUEVORFMrPQlwNS1YTUwtUlNTPj0wOiR7 UE9SVFNESVJ9L3RleHRwcm9jL3A1LVhNTC1SU1MKWC5lbmRpZgpYClhwb3N0LXBhdGNoOgpY CUAke1JFSU5QTEFDRV9DTUR9IFwKWAkJLWUgJ3N8L2V0Yy9CYWNrdXBQQ1woL2NvbmZpZy5w bFwpfCR7RVRDRElSfVwxfCcgXApYCQkke1dSS1NSQ30vY29uZmlndXJlLnBsClgJQCR7UkVJ TlBMQUNFX0NNRH0gXApYCQktZSAnc3xTVERFUlIgIlBsZWFzZSBzdSB8U1RERVJSICJQbGVh c2Ugc3UgWy1tXSB8JyBcClgJCSR7V1JLU1JDfS9saWIvQmFja3VwUEMvTGliLnBtClgJQCR7 UkVJTlBMQUNFX0NNRH0gXApYCQktZSAnc3wgeW91IGNhbiB1c2UgdGhlIC1zfCB5b3UgY2Fu IHVzZSB0aGUgLW18JyBcClgJCS1lICdzfG9wdGlvbiB0byBzdSB0byBleHBsaWNpdGx5IHJ1 bnxvcHRpb24gdG8gc3UgdG8gcnVufCcgXApYCQktZSAnc3xzdSAtcyAvYmluL2Jhc2ggX19C QUNLVVBQQ1VTRVJfX3xzdSAtbSBfX0JBQ0tVUFBDVVNFUl9ffCcgXApYCQkke1dSS1NSQ30v ZG9jL0JhY2t1cFBDLmh0bWwgJHtXUktTUkN9L2RvYy9CYWNrdXBQQy5wb2QKWApYcHJlLWlu c3RhbGw6ClgJQCR7RUNIT19NU0d9ClgJQCR7RUNIT19NU0d9ICI9PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09IgpYCUAke0VDSE9fTVNHfSAiIFlvdSBjYW4gdXNlIHRoZSBmb2xsb3dpbmcgdmFyaWFi bGVzIHRvIHR3ZWFrIGluc3RhbGxhdGlvbi10aW1lIG9wdGlvbnM6IgpYCUAke0VDSE9fTVNH fSAiIAlCUENfQ0dJRElSIgpYCUAke0VDSE9fTVNHfSAiIAlCUENfREFUQURJUiIKWAlAJHtF Q0hPX01TR30gIj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0iClgJQCR7RUNIT19NU0d9ClgKWGRvLWlu c3RhbGw6ClgJQGlmIFsgLWYgJHtFVENESVJ9L2NvbmZpZy5wbCBdOyB0aGVuIFwKWAkJJHtN S0RJUn0gJHtTVEFHRURJUn0ke0VUQ0RJUn07IFwKWAkJJHtDUH0gLXAgJHtFVENESVJ9L2Nv bmZpZy5wbCAke1NUQUdFRElSfSR7RVRDRElSfS9jb25maWcucGw7IFwKWAlmaQpYCUBpZiBb IC1mICR7RVRDRElSfS9ob3N0cyBdOyB0aGVuIFwKWAkJJHtNS0RJUn0gJHtTVEFHRURJUn0k e0VUQ0RJUn07IFwKWAkJJHtDUH0gLXAgJHtFVENESVJ9L2hvc3RzICR7U1RBR0VESVJ9JHtF VENESVJ9L2hvc3RzOyBcClgJZmkKWApYCUBjZCAke1dSS1NSQ30gJiYgJHtQRVJMfSBjb25m aWd1cmUucGwJXApYCQktLWJhdGNoCQkJCVwKWAkJLS1iYWNrdXBwYy11c2VyICR7VVNFUlN9 CVwKWAkJLS1jb25maWctZGlyICR7RVRDRElSfQkJXApYCQktLWNnaS1kaXIgJHtCUENfQ0dJ RElSfQkJXApYCQktLWRhdGEtZGlyICR7QlBDX0RBVEFESVJ9CVwKWAkJLS1kZXN0LWRpciAk e1NUQUdFRElSfQkJXApYCQktLWZocwkJCQlcClgJCS0taHRtbC1kaXIgJHtXV1dESVJ9CQlc ClgJCS0taHRtbC1kaXItdXJsIC8ke1BPUlROQU1FfQlcClgJCS0taW5zdGFsbC1kaXIgJHtQ UkVGSVh9CQlcClgJCS0tbm8tc2V0LXBlcm1zCQkJXApYCQktLXVpZC1pZ25vcmUKWApYCUAk e0VYRUN9IHBvZDJtYW4gLS1zZWN0aW9uPTEgLS1yZWxlYXNlPSR7UE9SVFZFUlNJT059IC0t bmFtZT1CYWNrdXBQQyAtLWNlbnRlcj1CYWNrdXBQQyIgdXNlciBndWlkZSIgJHtXUktTUkN9 L2RvYy9CYWNrdXBQQy5wb2QgJHtXUktTUkN9LyR7UE9SVE5BTUV9LjEKWAkke0lOU1RBTExf TUFOfSAke1dSS1NSQ30vJHtQT1JUTkFNRX0uMSAke1NUQUdFRElSfSR7TUFOUFJFRklYfS9t YW4vbWFuMQpYClgJQGlmIFsgISAtZiAke1NUQUdFRElSfSR7RVRDRElSfS9jb25maWcucGwu cHJlLSR7RElTVFZFUlNJT059IF07IHRoZW4gXApYCQk+ICR7U1RBR0VESVJ9JHtFVENESVJ9 L2NvbmZpZy5wbC5wcmUtJHtESVNUVkVSU0lPTn07IFwKWAlmaQpYCUAke0lOU1RBTEx9IC1k ICR7U1RBR0VESVJ9JHtQUkVGSVh9L2xpYmV4ZWMvJHtQT1JUTkFNRX0KWAlAY2QgJHtTVEFH RURJUn0ke0VUQ0RJUn0gJiYgXApYCQkke0NIR1JQfSB3aGVlbCBjb25maWcucGwgY29uZmln LnBsLnByZS0ke0RJU1RWRVJTSU9OfSAmJiBcClgJCSR7Q1B9IC1wIGNvbmZpZy5wbCBob3N0 cyBjb25maWcucGwucHJlLSR7RElTVFZFUlNJT059IFwKWAkJCSR7U1RBR0VESVJ9JHtQUkVG SVh9L2xpYmV4ZWMvJHtQT1JUTkFNRX0vClgKWC5pbmNsdWRlIDxic2QucG9ydC5taz4KMjFl MGJjNDU3OGUxZmQ0NzQyMzM3NTM5NzQwZmUwNDkKZWNobyB4IC0gYmFja3VwcGMtZGV2ZWwv cGtnLWRlc2NyCnNlZCAncy9eWC8vJyA+YmFja3VwcGMtZGV2ZWwvcGtnLWRlc2NyIDw8ICc3 NGM1MmZiYjdmNWRlYjkyM2FjZmUxM2Q4NmY5NmRlMycKWEJhY2t1cFBDIGlzIGEgaGlnaC1w ZXJmb3JtYW5jZSwgZW50ZXJwcmlzZS1ncmFkZSBzeXN0ZW0gZm9yIGJhY2tpbmcgdXAgTGlu dXgsClhXaW5YWCBhbmQgTWFjT1NYIFBDcyBhbmQgbGFwdG9wcyB0byBhIHNlcnZlcidzIGRp c2suClhCYWNrdXBQQyBpcyBoaWdobHkgY29uZmlndXJhYmxlIGFuZCBlYXN5IHRvIGluc3Rh bGwgYW5kIG1haW50YWluLgpYClhXV1c6IGh0dHA6Ly9iYWNrdXBwYy5zb3VyY2Vmb3JnZS5u ZXQKNzRjNTJmYmI3ZjVkZWI5MjNhY2ZlMTNkODZmOTZkZTMKZWNobyB4IC0gYmFja3VwcGMt ZGV2ZWwvcGtnLXBsaXN0CnNlZCAncy9eWC8vJyA+YmFja3VwcGMtZGV2ZWwvcGtnLXBsaXN0 IDw8ICdmYjJkN2JlNTBmMTYzNDlkZTY5NDJiNmMzMzE4YWI5NicKWEBzdG9wZGFlbW9uIGJh Y2t1cHBjClhAdW5leGVjIGlmIGNtcCAtcyAlRC9ldGMvYmFja3VwcGMvY29uZmlnLnBsICVE L2V0Yy9iYWNrdXBwYy9jb25maWcucGwuc2FtcGxlOyB0aGVuIHJtIC1mICVEL2V0Yy9iYWNr dXBwYy9jb25maWcucGw7IGZpClhAdW5leGVjIGlmIGNtcCAtcyAlRC9ldGMvYmFja3VwcGMv aG9zdHMgJUQvZXRjL2JhY2t1cHBjL2hvc3RzLnNhbXBsZTsgdGhlbiBybSAtZiAlRC9ldGMv YmFja3VwcGMvaG9zdHM7IGZpClhAcm10cnkgZXRjL2JhY2t1cHBjL2NvbmZpZy5wbC5zYW1w bGUKWEBybXRyeSBldGMvYmFja3VwcGMvaG9zdHMuc2FtcGxlClhAbW9kZSAwNTU1ClhiaW4v QmFja3VwUEMKWGJpbi9CYWNrdXBQQ19BZG1pbl9TQ0dJClhiaW4vQmFja3VwUENfYXJjaGl2 ZQpYYmluL0JhY2t1cFBDX2FyY2hpdmVIb3N0ClhiaW4vQmFja3VwUENfYXJjaGl2ZVN0YXJ0 ClhiaW4vQmFja3VwUENfYXR0cmliUHJpbnQKWGJpbi9CYWNrdXBQQ19iYWNrdXBEZWxldGUK WGJpbi9CYWNrdXBQQ19iYWNrdXBEdXBsaWNhdGUKWGJpbi9CYWNrdXBQQ19kdW1wClhiaW4v QmFja3VwUENfZml4dXBCYWNrdXBTdW1tYXJ5ClhiaW4vQmFja3VwUENfZnNjawpYYmluL0Jh Y2t1cFBDX2xzClhiaW4vQmFja3VwUENfbmlnaHRseQpYYmluL0JhY2t1cFBDX3Bvb2xDbnRQ cmludApYYmluL0JhY2t1cFBDX3JlZkNvdW50VXBkYXRlClhiaW4vQmFja3VwUENfcmVzdG9y ZQpYYmluL0JhY2t1cFBDX3JyZFVwZGF0ZQpYYmluL0JhY2t1cFBDX3NlbmRFbWFpbApYYmlu L0JhY2t1cFBDX3NlcnZlck1lc2cKWGJpbi9CYWNrdXBQQ190YXJDcmVhdGUKWGJpbi9CYWNr dXBQQ190YXJFeHRyYWN0ClhiaW4vQmFja3VwUENfemNhdApYYmluL0JhY2t1cFBDX3ppcENy ZWF0ZQpYQG1vZGUgMDQ0NApYbGliL0JhY2t1cFBDL0NHSS9BZG1pbk9wdGlvbnMucG0KWGxp Yi9CYWNrdXBQQy9DR0kvQXJjaGl2ZS5wbQpYbGliL0JhY2t1cFBDL0NHSS9BcmNoaXZlSW5m by5wbQpYbGliL0JhY2t1cFBDL0NHSS9Ccm93c2UucG0KWGxpYi9CYWNrdXBQQy9DR0kvRGly SGlzdG9yeS5wbQpYbGliL0JhY2t1cFBDL0NHSS9FZGl0Q29uZmlnLnBtClhsaWIvQmFja3Vw UEMvQ0dJL0VtYWlsU3VtbWFyeS5wbQpYbGliL0JhY2t1cFBDL0NHSS9HZW5lcmFsSW5mby5w bQpYbGliL0JhY2t1cFBDL0NHSS9Ib3N0SW5mby5wbQpYbGliL0JhY2t1cFBDL0NHSS9MT0ds aXN0LnBtClhsaWIvQmFja3VwUEMvQ0dJL0xpYi5wbQpYbGliL0JhY2t1cFBDL0NHSS9RdWV1 ZS5wbQpYbGliL0JhY2t1cFBDL0NHSS9SU1MucG0KWGxpYi9CYWNrdXBQQy9DR0kvUmVsb2Fk U2VydmVyLnBtClhsaWIvQmFja3VwUEMvQ0dJL1Jlc3RvcmUucG0KWGxpYi9CYWNrdXBQQy9D R0kvUmVzdG9yZUZpbGUucG0KWGxpYi9CYWNrdXBQQy9DR0kvUmVzdG9yZUluZm8ucG0KWGxp Yi9CYWNrdXBQQy9DR0kvU3RhcnRTZXJ2ZXIucG0KWGxpYi9CYWNrdXBQQy9DR0kvU3RhcnRT dG9wQmFja3VwLnBtClhsaWIvQmFja3VwUEMvQ0dJL1N0b3BTZXJ2ZXIucG0KWGxpYi9CYWNr dXBQQy9DR0kvU3VtbWFyeS5wbQpYbGliL0JhY2t1cFBDL0NHSS9WaWV3LnBtClhsaWIvQmFj a3VwUEMvQ29uZmlnL01ldGEucG0KWGxpYi9CYWNrdXBQQy9EaXJPcHMucG0KWGxpYi9CYWNr dXBQQy9MYW5nL2N6LnBtClhsaWIvQmFja3VwUEMvTGFuZy9kZS5wbQpYbGliL0JhY2t1cFBD L0xhbmcvZW4ucG0KWGxpYi9CYWNrdXBQQy9MYW5nL2VzLnBtClhsaWIvQmFja3VwUEMvTGFu Zy9mci5wbQpYbGliL0JhY2t1cFBDL0xhbmcvaXQucG0KWGxpYi9CYWNrdXBQQy9MYW5nL2ph LnBtClhsaWIvQmFja3VwUEMvTGFuZy9ubC5wbQpYbGliL0JhY2t1cFBDL0xhbmcvcGwucG0K WGxpYi9CYWNrdXBQQy9MYW5nL3B0X2JyLnBtClhsaWIvQmFja3VwUEMvTGFuZy9ydS5wbQpY bGliL0JhY2t1cFBDL0xhbmcvdWsucG0KWGxpYi9CYWNrdXBQQy9MYW5nL3poX0NOLnBtClhs aWIvQmFja3VwUEMvTGliLnBtClhsaWIvQmFja3VwUEMvU3RvcmFnZS5wbQpYbGliL0JhY2t1 cFBDL1N0b3JhZ2UvVGV4dC5wbQpYbGliL0JhY2t1cFBDL1ZpZXcucG0KWGxpYi9CYWNrdXBQ Qy9YZmVyLnBtClhsaWIvQmFja3VwUEMvWGZlci9BcmNoaXZlLnBtClhsaWIvQmFja3VwUEMv WGZlci9GdHAucG0KWGxpYi9CYWNrdXBQQy9YZmVyL1Byb3RvY29sLnBtClhsaWIvQmFja3Vw UEMvWGZlci9Sc3luYy5wbQpYbGliL0JhY2t1cFBDL1hmZXIvU21iLnBtClhsaWIvQmFja3Vw UEMvWGZlci9UYXIucG0KWGxpYi9CYWNrdXBQQy9aaXAvRmlsZU1lbWJlci5wbQpYbGliL05l dC9GVFAvQXV0b1JlY29ubmVjdC5wbQpYbGliL05ldC9GVFAvUmV0ckhhbmRsZS5wbQpYbWFu L21hbjEvYmFja3VwcGMuMS5negpYJSVQT1JURE9DUyUlc2hhcmUvZG9jL0JhY2t1cFBDL0Jh Y2t1cFBDLmh0bWwKWCUlUE9SVERPQ1MlJXNoYXJlL2RvYy9CYWNrdXBQQy9CYWNrdXBQQy5w b2QKWCUlV1dXRElSJSUvMDAwMDAwMC5naWYKWCUlV1dXRElSJSUvMDAwMDAxMS5naWYKWCUl V1dXRElSJSUvMDAwMTAwMC5naWYKWCUlV1dXRElSJSUvMDAxMDAwMC5naWYKWCUlV1dXRElS JSUvMDAxMDAwMS5naWYKWCUlV1dXRElSJSUvMDAxMTAwMC5naWYKWCUlV1dXRElSJSUvMDAx MTAwMS5naWYKWCUlV1dXRElSJSUvMTAwMDAwMC5naWYKWCUlV1dXRElSJSUvMTAwMDEwMC5n aWYKWCUlV1dXRElSJSUvMTAwMTAwMC5naWYKWCUlV1dXRElSJSUvMTAwMTEwMC5naWYKWCUl V1dXRElSJSUvMTAxMDAwMC5naWYKWCUlV1dXRElSJSUvMTAxMDAwMS5naWYKWCUlV1dXRElS JSUvMTAxMTAwMC5naWYKWCUlV1dXRElSJSUvMTEwMDAwMC5naWYKWCUlV1dXRElSJSUvMTEw MDEwMC5naWYKWCUlV1dXRElSJSUvMTEwMDEwMS5naWYKWCUlV1dXRElSJSUvMTEwMDExMC5n aWYKWCUlV1dXRElSJSUvMTEwMDExMS5naWYKWCUlV1dXRElSJSUvMTEwMTAwMC5naWYKWCUl V1dXRElSJSUvMTEwMTEwMC5naWYKWCUlV1dXRElSJSUvMTEwMTEwMS5naWYKWCUlV1dXRElS JSUvMTEwMTExMC5naWYKWCUlV1dXRElSJSUvMTEwMTExMS5naWYKWCUlV1dXRElSJSUvMTEx MDAwMC5naWYKWCUlV1dXRElSJSUvMTExMDAwMS5naWYKWCUlV1dXRElSJSUvMTExMDEwMC5n aWYKWCUlV1dXRElSJSUvMTExMDEwMS5naWYKWCUlV1dXRElSJSUvMTExMDExMC5naWYKWCUl V1dXRElSJSUvMTExMDExMS5naWYKWCUlV1dXRElSJSUvMTExMTAwMC5naWYKWCUlV1dXRElS JSUvMTExMTAwMS5naWYKWCUlV1dXRElSJSUvMTExMTEwMC5naWYKWCUlV1dXRElSJSUvMTEx MTEwMS5naWYKWCUlV1dXRElSJSUvMTExMTExMC5naWYKWCUlV1dXRElSJSUvMTExMTExMS5n aWYKWCUlV1dXRElSJSUvQmFja3VwUENfc3RuZC5jc3MKWCUlV1dXRElSJSUvQmFja3VwUENf c3RuZF9vcmlnLmNzcwpYJSVXV1dESVIlJS9mYXZpY29uLmljbwpYJSVXV1dESVIlJS9pY29u LWRpci5wbmcKWCUlV1dXRElSJSUvaWNvbi1maWxlLnBuZwpYJSVXV1dESVIlJS9pY29uLWhh cmRsaW5rLnBuZwpYJSVXV1dESVIlJS9pY29uLXN5bWxpbmsucG5nClglJVdXV0RJUiUlL2xv Z28uZ2lmClglJVdXV0RJUiUlL3NvcnR0YWJsZS5qcwpYQG93bmVyIGJhY2t1cHBjClhAZ3Jv dXAgYmFja3VwcGMKWEBtb2RlIDA0NTU0ClglJUJQQ19DR0lESVIlJS9CYWNrdXBQQ19BZG1p bgpYQG93bmVyClhAZ3JvdXAKWEBtb2RlClhAZXhlYyBta2RpciAtcCAtbSAwNzUwIC92YXIv cnVuL0JhY2t1cFBDClhAZXhlYyBjaG93biBiYWNrdXBwYzpiYWNrdXBwYyAvdmFyL3J1bi9C YWNrdXBQQwpYQGV4ZWMgbWtkaXIgLXAgLW0gMDc1MCAvdmFyL2xvZy9CYWNrdXBQQwpYQGV4 ZWMgY2hvd24gYmFja3VwcGM6YmFja3VwcGMgL3Zhci9sb2cvQmFja3VwUEMKWEBleGVjIG1r ZGlyIC1wIC1tIDA3NTAgJSVCUENfREFUQURJUiUlL3Bvb2wKWEBleGVjIG1rZGlyIC1wIC1t IDA3NTAgJSVCUENfREFUQURJUiUlL3BjClhAZXhlYyBta2RpciAtcCAtbSAwNzUwICUlQlBD X0RBVEFESVIlJS9jcG9vbApYQGV4ZWMgbWtkaXIgLXAgLW0gMDc1MCAlJUJQQ19EQVRBRElS JSUKWEBleGVjIGNob3duIC1SIGJhY2t1cHBjOmJhY2t1cHBjICUlQlBDX0RBVEFESVIlJQpY QHVuZXhlYyBybWRpciA+L2Rldi9udWxsIDI+JjEgL3Zhci9ydW4vQmFja3VwUEMgfHwgOgpY QHVuZXhlYyBybWRpciA+L2Rldi9udWxsIDI+JjEgL3Zhci9sb2cvQmFja3VwUEMgfHwgOgpY QHVuZXhlYyBybWRpciA+L2Rldi9udWxsIDI+JjEgJSVCUENfREFUQURJUiUlL3Bvb2wgfHwg OgpYQHVuZXhlYyBybWRpciA+L2Rldi9udWxsIDI+JjEgJSVCUENfREFUQURJUiUlL3BjIHx8 IDoKWEB1bmV4ZWMgcm1kaXIgPi9kZXYvbnVsbCAyPiYxICUlQlBDX0RBVEFESVIlJS9jcG9v bCB8fCA6ClhAdW5leGVjIHJtZGlyID4vZGV2L251bGwgMj4mMSAlJUJQQ19EQVRBRElSJSUg fHwgOgpYQGRpcnJtdHJ5ICUlQlBDX0NHSURJUiUlClhAZGlycm10cnkgJSVXV1dESVIlJQpY JSVQT1JURE9DUyUlQGRpcnJtIHNoYXJlL2RvYy9CYWNrdXBQQwpYQGRpcnJtdHJ5IGxpYi9O ZXQvRlRQClhAZGlycm10cnkgbGliL05ldApYQGRpcnJtIGxpYi9CYWNrdXBQQy9aaXAKWEBk aXJybSBsaWIvQmFja3VwUEMvWGZlcgpYQGRpcnJtIGxpYi9CYWNrdXBQQy9TdG9yYWdlClhA ZGlycm0gbGliL0JhY2t1cFBDL0xhbmcKWEBkaXJybSBsaWIvQmFja3VwUEMvQ29uZmlnClhA ZGlycm0gbGliL0JhY2t1cFBDL0NHSQpYQGRpcnJtIGxpYi9CYWNrdXBQQwpYQGV4ZWMgbWtk aXIgLXAgLW0gMDc1MCAlRC9ldGMvYmFja3VwcGMKWEBleGVjIGNob3duIGJhY2t1cHBjOmJh Y2t1cHBjICVEL2V0Yy9iYWNrdXBwYwpYQGRpcnJtdHJ5IGV0Yy9iYWNrdXBwYwpYQG93bmVy IGJhY2t1cHBjClhAZ3JvdXAgYmFja3VwcGMKWEBtb2RlIDA2NDAKWGxpYmV4ZWMvYmFja3Vw cGMvY29uZmlnLnBsLnByZS0lJURJU1RWRVJTSU9OJSUKWEBleGVjIGlmIFsgLXMgJUQvJUYg LWEgISAtZiAlRC9ldGMvYmFja3VwcGMvJWYgXTsgdGhlbiBjcCAtcCAlRC8lRiAlRC9ldGMv YmFja3VwcGMvOyBmaQpYbGliZXhlYy9iYWNrdXBwYy9jb25maWcucGwKWEBleGVjIGlmIFsg ISAtZiAlRC9ldGMvYmFja3VwcGMvJWYgXTsgdGhlbiBjcCAtcCAlRC8lRiAlRC9ldGMvYmFj a3VwcGMvY29uZmlnLnBsLnNhbXBsZTsgZmkKWEBleGVjIGNwIC1wICVELyVGICVEL2V0Yy9i YWNrdXBwYy8KWEBtb2RlIDA2NDQKWGxpYmV4ZWMvYmFja3VwcGMvaG9zdHMKWEBleGVjIGlm IFsgISAtZiAlRC9ldGMvYmFja3VwcGMvJWYgXTsgdGhlbiBjcCAtcCAlRC8lRiAlRC9ldGMv YmFja3VwcGMvaG9zdHMuc2FtcGxlOyBmaQpYQGV4ZWMgY3AgLXAgJUQvJUYgJUQvZXRjL2Jh Y2t1cHBjLwpYQG93bmVyIHJvb3QKWEBncm91cCB3aGVlbApYQG1vZGUKWEBkaXJybSBsaWJl eGVjL2JhY2t1cHBjCmZiMmQ3YmU1MGYxNjM0OWRlNjk0MmI2YzMzMThhYjk2CmV4aXQKCg== --------------020402030802050300030809-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 13:19:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F128FD7A; Tue, 10 Dec 2013 13:19:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C35931A44; Tue, 10 Dec 2013 13:19:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBADJEmc046261; Tue, 10 Dec 2013 13:19:14 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBADJEH9046260; Tue, 10 Dec 2013 13:19:14 GMT (envelope-from madpilot) Date: Tue, 10 Dec 2013 13:19:14 GMT Message-Id: <201312101319.rBADJEH9046260@freefall.freebsd.org> To: madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Subject: Re: ports/184636: [patch] irc/ircservices fix pkg-message bug(forget it) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 13:19:15 -0000 Synopsis: [patch] irc/ircservices fix pkg-message bug(forget it) Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Tue Dec 10 13:19:14 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184636 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 13:41:46 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB6BBB45; Tue, 10 Dec 2013 13:41:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EAAA1D3B; Tue, 10 Dec 2013 13:41:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBADfk0I051790; Tue, 10 Dec 2013 13:41:46 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBADfkO0051789; Tue, 10 Dec 2013 13:41:46 GMT (envelope-from nemysis) Date: Tue, 10 Dec 2013 13:41:46 GMT Message-Id: <201312101341.rBADfkO0051789@freefall.freebsd.org> To: nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nemysis@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/184654: New port: databases/galera Synchronous multi-master replication engine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 13:41:46 -0000 Synopsis: New port: databases/galera Synchronous multi-master replication engine Responsible-Changed-From-To: freebsd-ports-bugs->nemysis Responsible-Changed-By: nemysis Responsible-Changed-When: Tue Dec 10 13:41:46 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184654 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 15:57:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3B25EE; Tue, 10 Dec 2013 15:57:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A894517ED; Tue, 10 Dec 2013 15:57:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAFvZna078694; Tue, 10 Dec 2013 15:57:35 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAFvYVm078693; Tue, 10 Dec 2013 15:57:34 GMT (envelope-from jadawin) Date: Tue, 10 Dec 2013 15:57:34 GMT Message-Id: <201312101557.rBAFvYVm078693@freefall.freebsd.org> To: agrishkov@hostcomm.ru, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/184653: non-existent files in pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 15:57:35 -0000 Synopsis: non-existent files in pkg-plist State-Changed-From-To: open->closed State-Changed-By: jadawin State-Changed-When: Tue Dec 10 15:57:34 UTC 2013 State-Changed-Why: patch already committed. And we add stage support on p5-DBD-mysql5*. Thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=184653 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 16:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF81A476 for ; Tue, 10 Dec 2013 16:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 822EA1958 for ; Tue, 10 Dec 2013 16:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAGK0Xr083741 for ; Tue, 10 Dec 2013 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAGK0I9083740; Tue, 10 Dec 2013 16:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 16:20:00 GMT Resent-Message-Id: <201312101620.rBAGK0I9083740@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steven Kreuzer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B970410; Tue, 10 Dec 2013 16:13:48 +0000 (UTC) Received: from scruffy.exit2shell.com (scruffy.exit2shell.com [174.136.99.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E85F4191E; Tue, 10 Dec 2013 16:13:47 +0000 (UTC) Received: by scruffy.exit2shell.com with ESMTP id rBAG1ZB6029431; Tue, 10 Dec 2013 08:01:36 -0800 (PST) Received: by clamps.exit2shell.com (sSMTP sendmail emulation); Tue, 10 Dec 2013 16:01:36 +0000 Message-Id: <201312101601.rBAG1ZB6029431@scruffy.exit2shell.com> Date: Tue, 10 Dec 2013 16:01:36 +0000 From: Steven Kreuzer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/184659: [PATCH] sysutils/cfengine35: update to 3.5.3 Cc: cy@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 16:20:00 -0000 >Number: 184659 >Category: ports >Synopsis: [PATCH] sysutils/cfengine35: update to 3.5.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 16:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steven Kreuzer >Release: FreeBSD 9.1-RELEASE-p5 i386 >Organization: >Environment: System: FreeBSD clamps.exit2shell.com 9.1-RELEASE-p5 FreeBSD 9.1-RELEASE-p5 #0: Sat Jul 27 01:01:40 UTC 2013 >Description: - Update to 3.5.3 Port maintainer (cy@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- cfengine35-3.5.3.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336065) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cfengine -PORTVERSION= 3.5.2 +PORTVERSION= 3.5.3 CATEGORIES= sysutils MASTER_SITES= http://cfengine.com/source-code/download?file= Index: distinfo =================================================================== --- distinfo (revision 336065) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (cfengine-3.5.2.tar.gz) = 0362224d2968929cb4a1f2b4e98efbb6f5d1ecea5e9e9ae3e86fa8d083a70d6a -SIZE (cfengine-3.5.2.tar.gz) = 1560750 +SHA256 (cfengine-3.5.3.tar.gz) = 0e2d13ba1d75f826bf15411912ce21075734796a35e8fb8ecf545d70d60f41e1 +SIZE (cfengine-3.5.3.tar.gz) = 1542468 --- cfengine35-3.5.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 16:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48CE24A3; Tue, 10 Dec 2013 16:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E05E1959; Tue, 10 Dec 2013 16:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAGK7v0083877; Tue, 10 Dec 2013 16:20:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAGK7iL083876; Tue, 10 Dec 2013 16:20:07 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 16:20:07 GMT Message-Id: <201312101620.rBAGK7iL083876@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cy@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184659: [PATCH] sysutils/cfengine35: update to 3.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 16:20:08 -0000 Synopsis: [PATCH] sysutils/cfengine35: update to 3.5.3 Responsible-Changed-From-To: freebsd-ports-bugs->cy Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 16:20:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184659 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 16:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCF709B4 for ; Tue, 10 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9843E1ACE for ; Tue, 10 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAGe0do087673 for ; Tue, 10 Dec 2013 16:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAGe0UZ087672; Tue, 10 Dec 2013 16:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 16:40:00 GMT Resent-Message-Id: <201312101640.rBAGe0UZ087672@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oleg Sidorkin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF3F477B for ; Tue, 10 Dec 2013 16:35:29 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BB361A8E for ; Tue, 10 Dec 2013 16:35:29 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAGZTje040238 for ; Tue, 10 Dec 2013 16:35:29 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAGZT8J040237; Tue, 10 Dec 2013 16:35:29 GMT (envelope-from nobody) Message-Id: <201312101635.rBAGZT8J040237@oldred.freebsd.org> Date: Tue, 10 Dec 2013 16:35:29 GMT From: Oleg Sidorkin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184660: [patch] update www\xpi-flagfox from 4.2.11 to 4.2.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 16:40:00 -0000 >Number: 184660 >Category: ports >Synopsis: [patch] update www\xpi-flagfox from 4.2.11 to 4.2.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 16:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Oleg Sidorkin >Release: stable/10 >Organization: >Environment: FreeBSD oleg84.trtk.ru 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r258692M: Thu Nov 28 07:55:30 MSK 2013 olsi@oleg84.trtk.ru:/usr/obj/usr/src/sys/QUADKERNEL amd64 >Description: New version of plugin was released. The attached patch contains svn diff to update the port to the latest version. >How-To-Repeat: >Fix: commit the attached patch Patch attached with submission follows: Index: www/xpi-flagfox/Makefile =================================================================== --- www/xpi-flagfox/Makefile (revision 336067) +++ www/xpi-flagfox/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flagfox -PORTVERSION= 4.2.11 +PORTVERSION= 4.2.15 DISTVERSIONSUFFIX= -sm+fx CATEGORIES= www Index: www/xpi-flagfox/distinfo =================================================================== --- www/xpi-flagfox/distinfo (revision 336067) +++ www/xpi-flagfox/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xpi/flagfox-4.2.11-sm+fx.xpi) = 8147dfa7d8cc4ffea2968f5f7840d8e75bdfc2d699f5b8cad314125d7c32557a -SIZE (xpi/flagfox-4.2.11-sm+fx.xpi) = 552526 +SHA256 (xpi/flagfox-4.2.15-sm+fx.xpi) = 89ce94536481de561790d77034ea47ce957912c5a392aad8ee5cd85e605f5582 +SIZE (xpi/flagfox-4.2.15-sm+fx.xpi) = 559215 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:00:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C352E9C for ; Tue, 10 Dec 2013 17:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E117B1D23 for ; Tue, 10 Dec 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAH011c091757 for ; Tue, 10 Dec 2013 17:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAH01Nh091756; Tue, 10 Dec 2013 17:00:01 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 17:00:01 GMT Resent-Message-Id: <201312101700.rBAH01Nh091756@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Adam McDougall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A484CE6C for ; Tue, 10 Dec 2013 16:57:42 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 904461D09 for ; Tue, 10 Dec 2013 16:57:42 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAGvgcT030343 for ; Tue, 10 Dec 2013 16:57:42 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAGvghn030342; Tue, 10 Dec 2013 16:57:42 GMT (envelope-from nobody) Message-Id: <201312101657.rBAGvghn030342@oldred.freebsd.org> Date: Tue, 10 Dec 2013 16:57:42 GMT From: Adam McDougall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184662: www/owncloud hardcodes PHP 5.4 version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:00:02 -0000 >Number: 184662 >Category: ports >Synopsis: www/owncloud hardcodes PHP 5.4 version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 17:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 9.2-STABLE >Organization: >Environment: FreeBSD build9 9.2-STABLE FreeBSD 9.2-STABLE #3 r258899M: Tue Dec 3 22:12:11 EST 2013 root@build9:/usr/obj/usr/src/sys/BUILD9 amd64 >Description: The port makefile has DEFAULT_PHP_VER=5 which hardcodes a reliance on PHP 5.4. The software supports PHP 5.3 and we need to run 5.3 on our site, but I have to hand edit the port makefile to override DEFAULT_PHP_VER=5. Can it be removed or altered so I can override it from my build environment? >How-To-Repeat: Set DEFAULT_PHP_VER=53 in your port building environment, build owncloud, watch it get overridden unconditionally with PHP 5.4 >Fix: Remove DEFAULT_PHP_VER=5 or make it DEFAULT_PHP_VER?=5 perhaps so it can be overridden? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:00:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CF90F12; Tue, 10 Dec 2013 17:00:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7AAC1D26; Tue, 10 Dec 2013 17:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAH09nB091844; Tue, 10 Dec 2013 17:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAH09Xk091843; Tue, 10 Dec 2013 17:00:09 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 17:00:09 GMT Message-Id: <201312101700.rBAH09Xk091843@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kevlo@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184662: www/owncloud hardcodes PHP 5.4 version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:00:10 -0000 Synopsis: www/owncloud hardcodes PHP 5.4 version Responsible-Changed-From-To: freebsd-ports-bugs->kevlo Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 17:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184662 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC81298B; Tue, 10 Dec 2013 17:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B23761F8F; Tue, 10 Dec 2013 17:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHU8bO098835; Tue, 10 Dec 2013 17:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHU8P4098834; Tue, 10 Dec 2013 17:30:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 17:30:08 GMT Message-Id: <201312101730.rBAHU8P4098834@freefall.freebsd.org> To: pawel@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184663: [PATCH] www/volta changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:30:08 -0000 Synopsis: [PATCH] www/volta changed dependency after databases/tinycdb update State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Dec 10 17:30:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184663 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:30:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 571E69BA; Tue, 10 Dec 2013 17:30:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BA1F1F91; Tue, 10 Dec 2013 17:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHUEDg098972; Tue, 10 Dec 2013 17:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHUE5r098971; Tue, 10 Dec 2013 17:30:14 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 17:30:14 GMT Message-Id: <201312101730.rBAHUE5r098971@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184664: [PATCH] www/cblog changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:30:14 -0000 Synopsis: [PATCH] www/cblog changed dependency after databases/tinycdb update Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 17:30:13 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184664 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06423954 for ; Tue, 10 Dec 2013 17:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D54A61F48 for ; Tue, 10 Dec 2013 17:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHU0v0098756 for ; Tue, 10 Dec 2013 17:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHU0OV098748; Tue, 10 Dec 2013 17:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 17:30:00 GMT Resent-Message-Id: <201312101730.rBAHU0OV098748@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pawel Pekala Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3219046E for ; Tue, 10 Dec 2013 17:21:20 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E54C1EDD for ; Tue, 10 Dec 2013 17:21:20 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAHLJ9J058039 for ; Tue, 10 Dec 2013 17:21:19 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAHLJTt058030; Tue, 10 Dec 2013 17:21:19 GMT (envelope-from nobody) Message-Id: <201312101721.rBAHLJTt058030@oldred.freebsd.org> Date: Tue, 10 Dec 2013 17:21:19 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184664: [PATCH] www/cblog changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:30:01 -0000 >Number: 184664 >Category: ports >Synopsis: [PATCH] www/cblog changed dependency after databases/tinycdb update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 17:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: 11.0-CURRENT >Organization: >Environment: FreeBSD blaviken.slowicza.org 11.0-CURRENT FreeBSD 11.0-CURRENT #6 r259064M: Sat Dec 7 11:24:24 CET 2013 corn@blaviken.slowicza.org:/usr/obj/old/src/sys/GENERIC amd64 >Description: After my commit your port now links dynamically to libcdb.so. http://svnweb.freebsd.org/ports?view=revision&revision=335935 Proposed patch sets dependencies to current state. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (wersja 336068) +++ Makefile (kopia robocza) @@ -2,7 +2,7 @@ PORTNAME= cblog PORTVERSION= 0.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://files.etoilebsd.net/cblog/ @@ -9,9 +9,9 @@ MAINTAINER= bapt@FreeBSD.org COMMENT= Simple weblog in C using markdown -BUILD_DEPENDS= ${LOCALBASE}/lib/libneo_cs.a:${PORTSDIR}/www/clearsilver \ - ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb -LIB_DEPENDS= libfcgi.so:${PORTSDIR}/www/fcgi +BUILD_DEPENDS= ${LOCALBASE}/lib/libneo_cs.a:${PORTSDIR}/www/clearsilver +LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb \ + libfcgi.so:${PORTSDIR}/www/fcgi LICENSE= BSD >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE239951 for ; Tue, 10 Dec 2013 17:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F79E1F46 for ; Tue, 10 Dec 2013 17:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHU0ET098692 for ; Tue, 10 Dec 2013 17:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHU0Dp098691; Tue, 10 Dec 2013 17:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 17:30:00 GMT Resent-Message-Id: <201312101730.rBAHU0Dp098691@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pawel Pekala Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15D03944 for ; Tue, 10 Dec 2013 17:29:23 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 028441F3D for ; Tue, 10 Dec 2013 17:29:23 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAHTMOo018233 for ; Tue, 10 Dec 2013 17:29:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAHTMij018232; Tue, 10 Dec 2013 17:29:22 GMT (envelope-from nobody) Message-Id: <201312101729.rBAHTMij018232@oldred.freebsd.org> Date: Tue, 10 Dec 2013 17:29:22 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184663: [PATCH] www/volta changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:30:00 -0000 >Number: 184663 >Category: ports >Synopsis: [PATCH] www/volta changed dependency after databases/tinycdb update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 17:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: 11.0-CURRENT >Organization: >Environment: FreeBSD blaviken.slowicza.org 11.0-CURRENT FreeBSD 11.0-CURRENT #6 r259064M: Sat Dec 7 11:24:24 CET 2013 corn@blaviken.slowicza.org:/usr/obj/old/src/sys/GENERIC amd64 >Description: http://svnweb.freebsd.org/ports?view=revision&revision=335935 After this commit your port now links dynamically to libcdb.so Proposed patch sets port's dependencies to current state. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (wersja 336068) +++ Makefile (kopia robocza) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= volta -DISTVERSION= 0.2.0 +PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://dl.dropbox.com/u/7234177/Releases/ \ http://projects.martini.nu/volta/chrome/site/ @@ -14,7 +15,7 @@ LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= cdb:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb USES= pkgconfig USE_GMAKE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BD2ECA5 for ; Tue, 10 Dec 2013 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 27D461008 for ; Tue, 10 Dec 2013 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHe1w0001071 for ; Tue, 10 Dec 2013 17:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHe0lo001070; Tue, 10 Dec 2013 17:40:00 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 17:40:00 GMT Message-Id: <201312101740.rBAHe0lo001070@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184663: [PATCH] www/volta changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:40:01 -0000 The following reply was made to PR ports/184663; it has been noted by GNATS. From: Edwin Groothuis To: mahlon@martini.nu Cc: bug-followup@FreeBSD.org Subject: Re: ports/184663: [PATCH] www/volta changed dependency after databases/tinycdb update Date: Tue, 10 Dec 2013 17:30:07 UT Maintainer of www/volta, Please note that PR ports/184663 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184663 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF290EE4 for ; Tue, 10 Dec 2013 17:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7CBC10C4 for ; Tue, 10 Dec 2013 17:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHo0Oo002936 for ; Tue, 10 Dec 2013 17:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHo0Uo002935; Tue, 10 Dec 2013 17:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 17:50:00 GMT Resent-Message-Id: <201312101750.rBAHo0Uo002935@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hilko Meyer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F38A0CF0 for ; Tue, 10 Dec 2013 17:42:01 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE1851065 for ; Tue, 10 Dec 2013 17:42:01 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAHg0U7041352 for ; Tue, 10 Dec 2013 17:42:00 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAHg0s7041344; Tue, 10 Dec 2013 17:42:00 GMT (envelope-from nobody) Message-Id: <201312101742.rBAHg0s7041344@oldred.freebsd.org> Date: Tue, 10 Dec 2013 17:42:00 GMT From: Hilko Meyer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184665: x11/xcb-proto fail to install as build dependency with staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:50:01 -0000 >Number: 184665 >Category: ports >Synopsis: x11/xcb-proto fail to install as build dependency with staging >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 17:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hilko Meyer >Release: 8.3-RELEASE-p11 >Organization: >Environment: FreeBSD x.y.uni-hannover.de 8.3-RELEASE-p11 FreeBSD 8.3-RELEASE-p11 #3: Tue Sep 10 18:06:01 CEST 2013 z@x.y.uni-hannover.de:/usr/obj/usr/src/sys/x i386 >Description: I tried to upgrade libxcb-1.9.1 to libxcb-1.9.1_1 but it failed because x11/xcb-proto is needed as build dependency but wasn't installed in the upgrade process. You can see in the attached buildlog that it was built, installed into staging area and the package was built. But after building the package xcb-proto wasn't installed and it returned to the build of libxcb. The next build dependency for libxcb (textproc/libxslt/) was installed as expected. Building with NO_STAGE=yes worked. >How-To-Repeat: Deinstall x11/xcb-proto Try to build a port which needs x11/xcb-proto as build dependency. >Fix: Workaround: Set NO_STAGE=yes Patch attached with submission follows: [Updating the pkgdb in /var/db/pkg ... - 112 packages found (-0 +0) done] ---> Upgrading 'libxcb-1.9.1' to 'libxcb-1.9.1_1' (x11/libxcb) ---> Building '/usr/ports/x11/libxcb' ===> Cleaning for xcb-proto-1.8 ===> Cleaning for libxslt-1.1.28_1 ===> Cleaning for libxcb-1.9.1_1 ===> License MIT accepted by the user ===> Fetching all distfiles required by libxcb-1.9.1_1 for building ===> Extracting for libxcb-1.9.1_1 => SHA256 Checksum OK for libxcb-1.9.1.tar.bz2. ===> Patching for libxcb-1.9.1_1 ===> Applying FreeBSD patches for libxcb-1.9.1_1 ===> libxcb-1.9.1_1 depends on file: /usr/local/lib/libcheck.a - found ===> libxcb-1.9.1_1 depends on package: xcb-proto>=1.7 - not found ===> Verifying package for xcb-proto>=1.7 in /usr/ports/x11/xcb-proto ===> Fetching all distfiles required by xcb-proto-1.8 for building ===> Extracting for xcb-proto-1.8 => SHA256 Checksum OK for xcb-proto-1.8.tar.bz2. ===> Patching for xcb-proto-1.8 ===> xcb-proto-1.8 depends on executable: xmllint - found ===> xcb-proto-1.8 depends on file: /usr/local/bin/python2.7 - found ===> xcb-proto-1.8 depends on executable: python - found ===> Configuring for xcb-proto-1.8 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking for xmllint... /usr/local/bin/xmllint checking whether /usr/local/bin/python2.7 version >= 2.5... yes checking for /usr/local/bin/python2.7 version... 2.7 checking for /usr/local/bin/python2.7 platform... freebsd8 checking for /usr/local/bin/python2.7 script directory... ${prefix}/lib/python2.7/site-packages checking for /usr/local/bin/python2.7 extension module directory... ${exec_prefix}/lib/python2.7/site-packages configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating xcbgen/Makefile config.status: creating xcb-proto.pc ===> Building for xcb-proto-1.8 Making all in src Making all in xcbgen ===> Staging for xcb-proto-1.8 ===> xcb-proto-1.8 depends on file: /usr/local/bin/python2.7 - found ===> xcb-proto-1.8 depends on executable: python - found ===> Generating temporary packing list Making install in src /bin/mkdir -p '/usr/ports/x11/xcb-proto/work/stage/usr/local/share/xcb' install -o root -g wheel -m 444 xcb.xsd xproto.xml bigreq.xml composite.xml damage.xml dpms.xml dri2.xml ge.xml glx.xml randr.xml record.xml render.xml res.xml screensaver.xml shape.xml shm.xml sync.xml xc_misc.xml xevie.xml xf86dri.xml xf86vidmode.xml xfixes.xml xinerama.xml xinput.xml xkb.xml xprint.xml xselinux.xml xtest.xml xv.xml xvmc.xml '/usr/ports/x11/xcb-proto/work/stage/usr/local/share/xcb' Making install in xcbgen /bin/mkdir -p '/usr/ports/x11/xcb-proto/work/stage/usr/local/lib/python2.7/site-packages/xcbgen' install -o root -g wheel -m 444 __init__.py error.py expr.py matcher.py state.py xtypes.py '/usr/ports/x11/xcb-proto/work/stage/usr/local/lib/python2.7/site-packages/xcbgen' Byte-compiling python modules... __init__.pyerror.pyexpr.pymatcher.pystate.pyxtypes.py Byte-compiling python modules (optimized versions) ... __init__.pyerror.pyexpr.pymatcher.pystate.pyxtypes.py /bin/mkdir -p '/usr/ports/x11/xcb-proto/work/stage/usr/local/libdata/pkgconfig' install -o root -g wheel -m 444 xcb-proto.pc '/usr/ports/x11/xcb-proto/work/stage/usr/local/libdata/pkgconfig' ====> Compressing man pages (compress-man) ===> Building package for xcb-proto-1.8 Creating package /usr/ports/x11/xcb-proto/work/xcb-proto-1.8.tbz Registering depends: python-2.7_1,2 python2-2_1 python27-2.7.6_1 gettext-0.18.3.1 libiconv-1.14_1. Creating bzip'd tar ball in '/usr/ports/x11/xcb-proto/work/xcb-proto-1.8.tbz' ===> Returning to build of libxcb-1.9.1_1 ===> libxcb-1.9.1_1 depends on file: /usr/local/libdata/pkgconfig/pthread-stubs.pc - found ===> libxcb-1.9.1_1 depends on file: /usr/local/bin/python2.7 - found ===> libxcb-1.9.1_1 depends on executable: python - found ===> libxcb-1.9.1_1 depends on executable: gmake - found ===> libxcb-1.9.1_1 depends on executable: pkgconf - found ===> libxcb-1.9.1_1 depends on file: /usr/local/libdata/pkgconfig/xau.pc - found ===> libxcb-1.9.1_1 depends on file: /usr/local/libdata/pkgconfig/xdmcp.pc - found ===> libxcb-1.9.1_1 depends on executable: xsltproc - not found ===> Verifying package for xsltproc in /usr/ports/textproc/libxslt ===> License MIT accepted by the user ===> Found saved configuration for libxslt-1.1.28_1 ===> Fetching all distfiles required by libxslt-1.1.28_1 for building ===> Extracting for libxslt-1.1.28_1 => SHA256 Checksum OK for gnome2/libxslt-1.1.28.tar.gz. ===> Patching for libxslt-1.1.28_1 ===> Applying FreeBSD patches for libxslt-1.1.28_1 ===> libxslt-1.1.28_1 depends on executable: gmake - found ===> libxslt-1.1.28_1 depends on shared library: libxml2.so - found ===> Configuring for libxslt-1.1.28_1 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd8.3 checking host system type... i386-portbld-freebsd8.3 checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking whether gmake supports nested variables... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking how to run the C preprocessor... cpp checking for rm... /bin/rm checking for mv... /bin/mv checking for tar... /usr/bin/tar checking for xmllint... /usr/local/bin/xmllint checking for xsltproc... /usr/bin/xsltproc checking for ANSI C header files... (cached) yes checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd8.3 file names to i386-portbld-freebsd8.3 format... func_convert_file_noop checking how to convert i386-portbld-freebsd8.3 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... rm: conftest*: No such file or directory yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... rm: conftest*: No such file or directory no checking dynamic linker characteristics... freebsd8.3 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for sys/types.h... (cached) yes checking for sys/time.h... (cached) yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for string.h... (cached) yes checking how to pass version script to the linker (/usr/bin/ld)... -Wl,--version-script= checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking for pthread_join in -pthread... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking xlocale.h usability... no checking xlocale.h presence... no checking for xlocale.h... no checking ieeefp.h usability... yes checking ieeefp.h presence... yes checking for ieeefp.h... yes checking nan.h usability... no checking nan.h presence... no checking for nan.h... no checking for math.h... (cached) yes checking fp_class.h usability... no checking fp_class.h presence... no checking for fp_class.h... no checking for float.h... (cached) yes checking ansidecl.h usability... no checking ansidecl.h presence... no checking for ansidecl.h... no checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for time.h... (cached) yes checking for sys/stat.h... (cached) yes checking for sys/select.h... (cached) yes checking for stdarg.h... (cached) yes checking for stat... (cached) yes checking for _stat... (cached) yes checking for pow... no checking for pow in -lm... yes checking for floor... no checking for floor in -lm... yes checking for fabs... yes checking for gettimeofday... (cached) yes checking for mktime... yes checking for localtime... (cached) yes checking for localtime_r... yes checking for asctime... yes checking for time... (cached) yes checking for gmtime... yes checking for gmtime_r... yes checking for ftime... no checking for printf... yes checking for sprintf... yes checking for fprintf... yes checking for snprintf... (cached) yes checking for vfprintf... yes checking for vsprintf... (cached) yes checking for vsnprintf... (cached) yes checking for sscanf... yes checking for clock_gettime... (cached) yes checking for perl... perl Disabling crypto support Enabling debugger checking for libxml libraries >= 2.6.27... 2.8.0 found checking whether shared libraries will be built (required for plugins)... yes checking libxml2 module support... yes configure: creating ./config.status config.status: creating Makefile config.status: creating libxslt.pc config.status: creating libexslt.pc config.status: creating libxslt/Makefile config.status: creating libxslt/xsltconfig.h config.status: creating libxslt/xsltwin32config.h config.status: creating libexslt/Makefile config.status: creating libexslt/exsltconfig.h config.status: creating xsltproc/Makefile config.status: creating python/Makefile config.status: creating python/tests/Makefile config.status: creating tests/Makefile config.status: creating tests/docs/Makefile config.status: creating tests/REC1/Makefile config.status: creating tests/REC2/Makefile config.status: creating tests/REC/Makefile config.status: creating tests/general/Makefile config.status: creating tests/reports/Makefile config.status: creating tests/extensions/Makefile config.status: creating tests/namespaces/Makefile config.status: creating tests/keys/Makefile config.status: creating tests/numbers/Makefile config.status: creating tests/documents/Makefile config.status: creating tests/xmlspec/Makefile config.status: creating tests/multiple/Makefile config.status: creating tests/xinclude/Makefile config.status: creating tests/XSLTMark/Makefile config.status: creating tests/docbook/Makefile config.status: creating tests/exslt/Makefile config.status: creating tests/exslt/common/Makefile config.status: creating tests/exslt/functions/Makefile config.status: creating tests/exslt/math/Makefile config.status: creating tests/exslt/sets/Makefile config.status: creating tests/exslt/strings/Makefile config.status: creating tests/exslt/date/Makefile config.status: creating tests/exslt/dynamic/Makefile config.status: creating tests/plugins/Makefile config.status: creating doc/Makefile config.status: creating xslt-config config.status: creating libxslt.spec config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands rm: libtoolT: No such file or directory ===> Building for libxslt-1.1.28_1 gmake all-recursive gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' Making all in libxslt gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' CC attrvt.lo CC xslt.lo xslt.c: In function 'xsltParseStylesheetExcludePrefix': xslt.c:1735: warning: passing argument 2 of 'exclPrefixPush' discards qualifiers from pointer target type CC xsltlocale.lo xsltlocale.c:210: warning: 'xsltDefaultRegion' defined but not used CC xsltutils.lo CC pattern.lo CC templates.lo CC variables.lo CC keys.lo CC numbers.lo CC extensions.lo CC extra.lo CC functions.lo CC namespaces.lo CC imports.lo CC attributes.lo CC documents.lo CC preproc.lo CC transform.lo CC security.lo CCLD libxslt.la gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' Making all in libexslt gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' CC exslt.lo CC common.lo CC crypto.lo CC math.lo CC sets.lo CC functions.lo CC strings.lo CC date.lo CC saxon.lo CC dynamic.lo CCLD libexslt.la gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' Making all in xsltproc gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' CC xsltproc.o CCLD xsltproc CC testThreads.o CCLD testThreads gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' Making all in doc gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[2]: /usr/bin/xsltproc: Kommando nicht gefunden gmake[2]: [xsltproc.1] Fehler 127 (ignoriert) gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' sed -e 's?\@XSLT_LIBDIR\@?-L/usr/local/lib?g' \ -e 's?\@XSLT_INCLUDEDIR\@?-I/usr/local/include?g' \ -e 's?\@VERSION\@?1.1.28?g' \ -e 's?\@XSLT_LIBS\@?-lxslt -L/usr/local/lib -lxml2 -lz -L/usr/local/lib -liconv -lm -lm ?g' \ < ./xsltConf.sh.in > xsltConf.tmp \ && mv xsltConf.tmp xsltConf.sh gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' ===> Installing for libxslt-1.1.28_1 ===> Generating temporary packing list ===> Checking if textproc/libxslt already installed Making install in libxslt gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' /bin/mkdir -p '/usr/local/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c -o root -g wheel libxslt.la '/usr/local/lib' libtool: install: /usr/bin/install -c -o root -g wheel .libs/libxslt.so.2 /usr/local/lib/libxslt.so.2 libtool: install: (cd /usr/local/lib && { ln -s -f libxslt.so.2 libxslt.so || { rm -f libxslt.so && ln -s libxslt.so.2 libxslt.so; }; }) libtool: install: (cd /usr/local/lib && { ln -s -f libxslt.so.2 libxslt.so || { rm -f libxslt.so && ln -s libxslt.so.2 libxslt.so; }; }) libtool: install: /usr/bin/install -c -o root -g wheel .libs/libxslt.lai /usr/local/lib/libxslt.la libtool: install: /usr/bin/install -c -o root -g wheel .libs/libxslt.a /usr/local/lib/libxslt.a libtool: install: chmod 644 /usr/local/lib/libxslt.a libtool: install: ranlib /usr/local/lib/libxslt.a gmake install-exec-hook gmake[3]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' /bin/mkdir -p "/usr/local/lib/libxslt-plugins" gmake[3]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' /bin/mkdir -p '/usr/local/man/man3' install -o root -g wheel -m 444 libxslt.3 '/usr/local/man/man3' /bin/mkdir -p '/usr/local/include/libxslt' install -o root -g wheel -m 444 xslt.h xsltutils.h pattern.h templates.h variables.h keys.h numbersInternals.h extensions.h extra.h functions.h namespaces.h imports.h attributes.h documents.h preproc.h transform.h security.h xsltInternals.h xsltconfig.h xsltexports.h xsltlocale.h '/usr/local/include/libxslt' gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libxslt' Making install in libexslt gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' /bin/mkdir -p '/usr/local/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c -o root -g wheel libexslt.la '/usr/local/lib' libtool: install: warning: relinking `libexslt.la' libtool: install: (cd /usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt; /bin/sh /usr/ports/textproc/libxslt/work/libxslt-1.1.28/libtool --silent --tag CC --mode=relink cc -I/usr/local/include/libxml2 -I/usr/local/include -O2 -pipe -march=athlon-mp -fno-strict-aliasing -Wall -version-info 8:17:8 -L/usr/local/lib -o libexslt.la -rpath /usr/local/lib exslt.lo common.lo crypto.lo math.lo sets.lo functions.lo strings.lo date.lo saxon.lo dynamic.lo ../libxslt/libxslt.la ) libtool: install: /usr/bin/install -c -o root -g wheel .libs/libexslt.so.8T /usr/local/lib/libexslt.so.8 libtool: install: (cd /usr/local/lib && { ln -s -f libexslt.so.8 libexslt.so || { rm -f libexslt.so && ln -s libexslt.so.8 libexslt.so; }; }) libtool: install: (cd /usr/local/lib && { ln -s -f libexslt.so.8 libexslt.so || { rm -f libexslt.so && ln -s libexslt.so.8 libexslt.so; }; }) libtool: install: /usr/bin/install -c -o root -g wheel .libs/libexslt.lai /usr/local/lib/libexslt.la libtool: install: /usr/bin/install -c -o root -g wheel .libs/libexslt.a /usr/local/lib/libexslt.a libtool: install: chmod 644 /usr/local/lib/libexslt.a libtool: install: ranlib /usr/local/lib/libexslt.a /bin/mkdir -p '/usr/local/include/libexslt' install -o root -g wheel -m 444 exslt.h exsltconfig.h exsltexports.h '/usr/local/include/libexslt' /bin/mkdir -p '/usr/local/man/man3' install -o root -g wheel -m 444 libexslt.3 '/usr/local/man/man3' gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/libexslt' Making install in xsltproc gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' /bin/mkdir -p '/usr/local/bin' /bin/sh ../libtool --mode=install install -s -o root -g wheel -m 555 xsltproc '/usr/local/bin' libtool: install: install -o root -g wheel -m 555 -s .libs/xsltproc /usr/local/bin/xsltproc gmake[2]: Für das Ziel »install-data-am« ist nichts zu tun. gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/xsltproc' Making install in doc gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[1]: /usr/bin/xsltproc: Kommando nicht gefunden gmake[1]: [xsltproc.1] Fehler 127 (ignoriert) gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[2]: Für das Ziel »install-exec-am« ist nichts zu tun. gmake[2]: /usr/bin/xsltproc: Kommando nicht gefunden gmake[2]: [xsltproc.1] Fehler 127 (ignoriert) /bin/mkdir -p '/usr/local/man/man1' install -o root -g wheel -m 444 xsltproc.1 '/usr/local/man/man1' gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28/doc' gmake[1]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' gmake[2]: Entering directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' /bin/mkdir -p '/usr/local/bin' install -o root -g wheel -m 555 xslt-config '/usr/local/bin' /bin/mkdir -p '/usr/local/lib' install -o root -g wheel -m 444 xsltConf.sh '/usr/local/lib' /bin/mkdir -p '/usr/local/share/aclocal' install -o root -g wheel -m 444 libxslt.m4 '/usr/local/share/aclocal' /bin/mkdir -p '/usr/local/libdata/pkgconfig' install -o root -g wheel -m 444 libxslt.pc libexslt.pc '/usr/local/libdata/pkgconfig' gmake[2]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' gmake[1]: Leaving directory `/usr/ports/textproc/libxslt/work/libxslt-1.1.28' ===> Compressing manual pages for libxslt-1.1.28_1 ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for libxslt-1.1.28_1 ===> Building package for libxslt-1.1.28_1 ===> Returning to build of libxcb-1.9.1_1 ===> libxcb-1.9.1_1 depends on shared library: libxml2.so - found ===> Configuring for libxcb-1.9.1_1 configure: loading site script /usr/ports/Templates/config.site checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking for style of include used by gmake... GNU checking whether gmake supports nested variables... yes checking dependency style of cc... gcc3 checking whether gmake supports nested variables... (cached) yes checking whether /usr/local/bin/python2.7 version is >= 2.6... yes checking for /usr/local/bin/python2.7 version... 2.7 checking for /usr/local/bin/python2.7 platform... freebsd8 checking for /usr/local/bin/python2.7 script directory... ${prefix}/lib/python2.7/site-packages checking for /usr/local/bin/python2.7 extension module directory... ${exec_prefix}/lib/python2.7/site-packages checking pkg-config is at least version 0.9.0... yes checking for CHECK... yes checking build system type... i386-portbld-freebsd8.3 checking host system type... i386-portbld-freebsd8.3 checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd8.3 file names to i386-portbld-freebsd8.3 format... func_convert_file_noop checking how to convert i386-portbld-freebsd8.3 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.3 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking for xsltproc... /usr/local/bin/xsltproc checking for XCBPROTO... configure: error: Package requirements (xcb-proto >= 1.7) were not met: Package xcb-proto was not found in the pkg-config search path. Perhaps you should add the directory containing `xcb-proto.pc' to the PKG_CONFIG_PATH environment variable Package 'xcb-proto', required by 'world', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables XCBPROTO_CFLAGS and XCBPROTO_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/x11/libxcb/work/libxcb-1.9.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/sbin/pkg_info -Ea). *** Error code 1 Stop in /usr/ports/x11/libxcb. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20131209-3273-1ujb2db env UPGRADE_TOOL=portupgrade UPGRADE_PORT=libxcb-1.9.1 UPGRADE_PORT_VER=1.9.1 make DEPENDS_TARGET=package ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! x11/libxcb (libxcb-1.9.1) (configure error) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 17:50:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 898ADF1F; Tue, 10 Dec 2013 17:50:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DD9710C8; Tue, 10 Dec 2013 17:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAHoB2L003078; Tue, 10 Dec 2013 17:50:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAHoBfb003077; Tue, 10 Dec 2013 17:50:11 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 17:50:11 GMT Message-Id: <201312101750.rBAHoBfb003077@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184665: x11/xcb-proto fail to install as build dependency with staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 17:50:11 -0000 Synopsis: x11/xcb-proto fail to install as build dependency with staging Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 17:50:11 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184665 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6160356 for ; Tue, 10 Dec 2013 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90BB31171 for ; Tue, 10 Dec 2013 18:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAI00Hn004939 for ; Tue, 10 Dec 2013 18:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAI00MH004937; Tue, 10 Dec 2013 18:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 18:00:00 GMT Resent-Message-Id: <201312101800.rBAI00MH004937@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pawel Pekala Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B90D3EE5 for ; Tue, 10 Dec 2013 17:50:02 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 99F5510C5 for ; Tue, 10 Dec 2013 17:50:02 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAHo27c053968 for ; Tue, 10 Dec 2013 17:50:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAHo2Ze053954; Tue, 10 Dec 2013 17:50:02 GMT (envelope-from nobody) Message-Id: <201312101750.rBAHo2Ze053954@oldred.freebsd.org> Date: Tue, 10 Dec 2013 17:50:02 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184666: [PATCH] mail/postfix dependency change after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:00:00 -0000 >Number: 184666 >Category: ports >Synopsis: [PATCH] mail/postfix dependency change after databases/tinycdb update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 18:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: 11.0-CURRENT >Organization: >Environment: FreeBSD blaviken.slowicza.org 11.0-CURRENT FreeBSD 11.0-CURRENT #6 r259064M: Sat Dec 7 11:24:24 CET 2013 corn@blaviken.slowicza.org:/usr/obj/old/src/sys/GENERIC amd64 >Description: http://svnweb.freebsd.org/changeset/ports/335935 After this commits mail/postfix* ports link to libcdb.so dynamically when built with CDB=on. Proposed patch sets library dependencies to current state. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: postfix/Makefile =================================================================== --- postfix/Makefile (wersja 336068) +++ postfix/Makefile (kopia robocza) @@ -218,7 +218,7 @@ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Index: postfix-current/Makefile =================================================================== --- postfix-current/Makefile (wersja 336068) +++ postfix-current/Makefile (kopia robocza) @@ -216,7 +216,7 @@ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Index: postfix27/Makefile =================================================================== --- postfix27/Makefile (wersja 336068) +++ postfix27/Makefile (kopia robocza) @@ -198,7 +198,7 @@ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Index: postfix28/Makefile =================================================================== --- postfix28/Makefile (wersja 336068) +++ postfix28/Makefile (kopia robocza) @@ -220,7 +220,7 @@ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif Index: postfix29/Makefile =================================================================== --- postfix29/Makefile (wersja 336068) +++ postfix29/Makefile (kopia robocza) @@ -220,7 +220,7 @@ .endif .if ${PORT_OPTIONS:MCDB} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcdb.a:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS+= libcdb.so:${PORTSDIR}/databases/tinycdb POSTFIX_CCARGS+= -DHAS_CDB -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lcdb .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF5BA38A; Tue, 10 Dec 2013 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A54EC1175; Tue, 10 Dec 2013 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAI08ls005078; Tue, 10 Dec 2013 18:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAI08Ni005076; Tue, 10 Dec 2013 18:00:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 18:00:08 GMT Message-Id: <201312101800.rBAI08Ni005076@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sahil@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184666: [PATCH] mail/postfix dependency change after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:00:08 -0000 Synopsis: [PATCH] mail/postfix dependency change after databases/tinycdb update Responsible-Changed-From-To: freebsd-ports-bugs->sahil Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 18:00:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184666 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86278533 for ; Tue, 10 Dec 2013 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60017120D for ; Tue, 10 Dec 2013 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIA0s2007195 for ; Tue, 10 Dec 2013 18:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIA0i9007194; Tue, 10 Dec 2013 18:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 18:10:00 GMT Resent-Message-Id: <201312101810.rBAIA0i9007194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Adam McDougall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C6B4522 for ; Tue, 10 Dec 2013 18:08:37 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1C491203 for ; Tue, 10 Dec 2013 18:08:36 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAI8a1G032727 for ; Tue, 10 Dec 2013 18:08:36 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAI8arT032721; Tue, 10 Dec 2013 18:08:36 GMT (envelope-from nobody) Message-Id: <201312101808.rBAI8arT032721@oldred.freebsd.org> Date: Tue, 10 Dec 2013 18:08:36 GMT From: Adam McDougall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184667: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:10:00 -0000 >Number: 184667 >Category: ports >Synopsis: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 18:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 10.0-BETA4 >Organization: >Environment: FreeBSD build10 10.0-BETA4 FreeBSD 10.0-BETA4 #1 r258899M: Tue Dec 3 22:00:37 EST 2013 root@build10:/usr/obj/usr/src/sys/BUILD10 amd64 >Description: --- dovecot-auth --- libtool: link: cc -std=gnu99 -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -Wstrict-aliasing=2 -fstack-protector -o dovecot-auth auth.o auth-cache.o auth-client-connection.o auth-master-connection.o auth-master-listener.o auth-request.o auth-request-handler.o auth-stream.o auth-worker-client.o auth-worker-server.o db-checkpassword.o db-sql.o db-passwd-file.o main.o mech.o mech-anonymous.o mech-plain.o mech-login.o mech-cram-md5.o mech-digest-md5.o mech-external.o mech-gssapi.o mech-ntlm.o mech-otp.o mech-skey.o mech-rpa.o mech-apop.o mech-winbind.o otp-skey-common.o plain-common.o passdb.o passdb-blocking.o passdb-bsdauth.o passdb-cache.o passdb-checkpassword.o passdb-passwd.o passdb-passwd-file.o passdb-pam.o passdb-shadow.o passdb-sia.o passdb-vpopmail.o passdb-sql.o userdb.o userdb-blocking.o userdb-checkpassword.o userdb-nss.o userdb-passwd.o userdb-passwd-file .o userdb-prefetch.o userdb-static.o userdb-vpopmail.o userdb-sql.o db-ldap.o passdb-ldap.o userdb-ldap.o -pthread -Wl,--export-dynamic -L/usr/local/lib libpassword.a ../lib-settings/libsettings.a ../lib-ntlm/libntlm.a ../lib-otp/libotp.a ../lib-sql/libsql.a ../lib/liblib.a -lpam -L/usr/lib -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -lrt -pthread mech-gssapi.o: In function `mech_gssapi_auth_continue': mech-gssapi.c:(.text+0xae2): undefined reference to `__gss_krb5_nt_principal_name_oid_desc' mech-gssapi.c:(.text+0xaef): undefined reference to `__gss_krb5_nt_principal_name_oid_desc' cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [dovecot-auth] Error code 1 >How-To-Repeat: Compile mail/dovecot on 10 with GSSAPI option enabled >Fix: Add: LDFLAGS+= -lgssapi_krb5 to the Makefile inside the .if ${PORT_OPTIONS:MGSSAPI} section. The fix is very similar to recent SVN r335618 to bind ports. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CDDE564; Tue, 10 Dec 2013 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6C68120F; Tue, 10 Dec 2013 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIA8Yn007332; Tue, 10 Dec 2013 18:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIA8qh007331; Tue, 10 Dec 2013 18:10:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 18:10:08 GMT Message-Id: <201312101810.rBAIA8qh007331@freefall.freebsd.org> To: mcdouga9@egr.msu.edu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184667: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:10:09 -0000 Synopsis: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Dec 10 18:10:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184667 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 737E6A7F for ; Tue, 10 Dec 2013 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DA4612E3 for ; Tue, 10 Dec 2013 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIK1oh013537 for ; Tue, 10 Dec 2013 18:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIK1GV013536; Tue, 10 Dec 2013 18:20:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 18:20:01 GMT Message-Id: <201312101820.rBAIK1GV013536@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184667: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:20:01 -0000 The following reply was made to PR ports/184667; it has been noted by GNATS. From: Edwin Groothuis To: yds@CoolRat.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/184667: mail/dovecot PATCH (needs -lgssapi_krb5 for GSSAPI on FreeBSD 10) Date: Tue, 10 Dec 2013 18:10:07 UT Maintainer of mail/dovecot, Please note that PR ports/184667 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184667 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:31:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B005E97; Tue, 10 Dec 2013 18:31:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B44013F0; Tue, 10 Dec 2013 18:31:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIVp3U017175; Tue, 10 Dec 2013 18:31:51 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIVpd4017174; Tue, 10 Dec 2013 18:31:51 GMT (envelope-from pawel) Date: Tue, 10 Dec 2013 18:31:51 GMT Message-Id: <201312101831.rBAIVpd4017174@freefall.freebsd.org> To: mahlon@martini.nu, pawel@FreeBSD.org, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184663: [PATCH] www/volta changed dependency after databases/tinycdb update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:31:51 -0000 Synopsis: [PATCH] www/volta changed dependency after databases/tinycdb update State-Changed-From-To: feedback->closed State-Changed-By: pawel State-Changed-When: Tue Dec 10 18:31:50 UTC 2013 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184663 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57D1DB3 for ; Tue, 10 Dec 2013 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 443BE1476 for ; Tue, 10 Dec 2013 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIe17A017636 for ; Tue, 10 Dec 2013 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIe17g017635; Tue, 10 Dec 2013 18:40:01 GMT (envelope-from gnats) Date: Tue, 10 Dec 2013 18:40:01 GMT Message-Id: <201312101840.rBAIe17g017635@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184663: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:40:01 -0000 The following reply was made to PR ports/184663; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184663: commit references a PR Date: Tue, 10 Dec 2013 18:30:53 +0000 (UTC) Author: pawel Date: Tue Dec 10 18:30:46 2013 New Revision: 336076 URL: http://svnweb.freebsd.org/changeset/ports/336076 Log: Links dynamically to libcdb after databases/tinycdb update PR: ports/184663 Submitted by: me Approved by: bapt (portmgr) Modified: head/www/volta/Makefile Modified: head/www/volta/Makefile ============================================================================== --- head/www/volta/Makefile Tue Dec 10 18:29:23 2013 (r336075) +++ head/www/volta/Makefile Tue Dec 10 18:30:46 2013 (r336076) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= volta -DISTVERSION= 0.2.0 +PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://dl.dropbox.com/u/7234177/Releases/ \ http://projects.martini.nu/volta/chrome/site/ @@ -14,7 +15,7 @@ COMMENT= A high performance, low resourc LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= cdb:${PORTSDIR}/databases/tinycdb +LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb USES= pkgconfig USE_GMAKE= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A695C4BE for ; Tue, 10 Dec 2013 18:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8049A155B for ; Tue, 10 Dec 2013 18:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIo0jl019484 for ; Tue, 10 Dec 2013 18:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIo0WF019483; Tue, 10 Dec 2013 18:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 18:50:00 GMT Resent-Message-Id: <201312101850.rBAIo0WF019483@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Adam McDougall Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22C0011D for ; Tue, 10 Dec 2013 18:41:52 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D1D614DC for ; Tue, 10 Dec 2013 18:41:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBAIfpjL085057 for ; Tue, 10 Dec 2013 18:41:51 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBAIfpGX085051; Tue, 10 Dec 2013 18:41:51 GMT (envelope-from nobody) Message-Id: <201312101841.rBAIfpGX085051@oldred.freebsd.org> Date: Tue, 10 Dec 2013 18:41:51 GMT From: Adam McDougall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184668: devel/libevent installs broken manpage symlinks on 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:50:00 -0000 >Number: 184668 >Category: ports >Synopsis: devel/libevent installs broken manpage symlinks on 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 18:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 10.0-BETA4 >Organization: >Environment: FreeBSD build10 10.0-BETA4 FreeBSD 10.0-BETA4 #1 r258899M: Tue Dec 3 22:00:37 EST 2013 root@build10:/usr/obj/usr/src/sys/BUILD10 amd64 >Description: I noticed from the standard "weekly run output" emails that the libevent package installs some broken manpage links on 10 (see below). Example: -r--r--r-- 1 root wheel 5596 Dec 3 22:51 event.3.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 event_add.3.gz -> ../man/-.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 event_base_dispatch.3.gz -> ../man/-.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 event_base_loop.3.gz -> ../man/-.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 bufferevent_base_set.3.gz -> ../man/-.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 bufferevent_disable.3.gz -> ../man/-.gz lrwxr-xr-x 1 root wheel 11 Dec 3 22:51 bufferevent_enable.3.gz -> ../man/-.gz Rebuilding whatis database: makewhatis: /usr/local/man/man3/bufferevent_base_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_disable.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_enable.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_free.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_new.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_read.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_settimeout.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_write.3.gz: No such file or directory makewhatis: /usr/local/man/man3/bufferevent_write_buffer.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_add_buffer.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_add_printf.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_add_vprintf.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_drain.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_find.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_free.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_new.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_read.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_readline.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evbuffer_write.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_clear_nameservers_and_suspend.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_config_windows_nameservers.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_count_nameservers.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_err_to_string.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_nameserver_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_nameserver_ip_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_resolv_conf_parse.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_resolve_ipv4.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_resolve_reverse.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_resume.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_search_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_search_clear.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_search_ndots_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_set_log_fn.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evdns_shutdown.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_base_dispatch.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_base_loop.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_base_loopexit.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_base_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_del.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_dispatch.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_initialized.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_loop.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_loopexit.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_once.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_pending.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_priority_init.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_priority_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/event_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evhttp_free.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evhttp_start.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evtimer_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evtimer_del.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evtimer_initialized.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evtimer_pending.3.gz: No such file or directory makewhatis: /usr/local/man/man3/evtimer_set.3.gz: No such file or directory makewhatis: /usr/local/man/man3/signal_add.3.gz: No such file or directory makewhatis: /usr/local/man/man3/signal_del.3.gz: No such file or directory makewhatis: /usr/local/man/man3/signal_initialized.3.gz: No such file or directory makewhatis: /usr/local/man/man3/signal_pending.3.gz: No such file or directory makewhatis: /usr/local/man/man3/signal_set.3.gz: No such file or directory >How-To-Repeat: I've been using poudriere on 10 to compile pkgng packages. I do not see the same problem on 9 for some reason. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 18:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DA4C4F4; Tue, 10 Dec 2013 18:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E41E1561; Tue, 10 Dec 2013 18:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAIo9t8019618; Tue, 10 Dec 2013 18:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAIo9oq019617; Tue, 10 Dec 2013 18:50:09 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 18:50:09 GMT Message-Id: <201312101850.rBAIo9oq019617@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184668: devel/libevent installs broken manpage symlinks on 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 18:50:09 -0000 Synopsis: devel/libevent installs broken manpage symlinks on 10 Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 18:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184668 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0A74AF2 for ; Tue, 10 Dec 2013 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B702D1857 for ; Tue, 10 Dec 2013 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJU0bQ028325 for ; Tue, 10 Dec 2013 19:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJU0rc028324; Tue, 10 Dec 2013 19:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 19:30:00 GMT Resent-Message-Id: <201312101930.rBAJU0rc028324@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D4D1895 for ; Tue, 10 Dec 2013 19:24:19 +0000 (UTC) Received: from mailout09.t-online.de (mailout09.t-online.de [194.25.134.84]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49EC3182C for ; Tue, 10 Dec 2013 19:24:18 +0000 (UTC) Received: from fwd19.aul.t-online.de (fwd19.aul.t-online.de ) by mailout09.t-online.de with smtp id 1VqSug-0000YM-5T; Tue, 10 Dec 2013 20:24:10 +0100 Received: from mailout.charlieroot.de (VsuJ-4Zpwh4EV0YprPd0lTUYctBvHvkQa1u+IZOEcpn-DkFStq0dnELTZcnA-M0ZCF@[79.197.70.10]) by fwd19.aul.t-online.de with esmtp id 1VqSuc-0T5KjY0; Tue, 10 Dec 2013 20:24:06 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id CA20F61FC7 for ; Tue, 10 Dec 2013 20:24:05 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 9FE5B18283; Tue, 10 Dec 2013 20:24:05 +0100 (CET) Message-Id: <20131210192405.9FE5B18283@BSDHelmut964.charlieroot.de> Date: Tue, 10 Dec 2013 20:24:05 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184669: [MAINTAINER] www/typo3: update to 6.1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:30:01 -0000 >Number: 184669 >Category: ports >Synopsis: [MAINTAINER] www/typo3: update to 6.1.7 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 19:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - Update to 6.1.7 - Bug and security fixes - http://typo3.org/news/article/typo3-cms-4532-4717-6012-and-617-released/ - http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/ Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-6.1.7.patch begins here --- diff -ruN ../typo3.org/Makefile ./Makefile --- ../typo3.org/Makefile 2013-12-10 20:04:22.000000000 +0100 +++ ./Makefile 2013-12-10 20:04:40.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/typo3/Makefile 335081 2013-11-28 07:40:44Z culot $ PORTNAME= typo3 -PORTVERSION= 6.1.6 +PORTVERSION= 6.1.7 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} diff -ruN ../typo3.org/distinfo ./distinfo --- ../typo3.org/distinfo 2013-11-27 13:47:05.000000000 +0100 +++ ./distinfo 2013-12-10 20:04:50.000000000 +0100 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-6.1.6.tar.gz) = b2b642dce479b88419a719b50518544b20b17fef58fe7de6a666bdf0d160dfd5 -SIZE (typo3_src-6.1.6.tar.gz) = 21141976 -SHA256 (dummy-6.1.6.tar.gz) = 59bafa6e4202df2f223e026eb9d8f4909c76db9a6133ebc21121806cb291a973 -SIZE (dummy-6.1.6.tar.gz) = 9817 +SHA256 (typo3_src-6.1.7.tar.gz) = d14a99349aa8776568639ee62666099aeac470b924d614bf7b99910879471958 +SIZE (typo3_src-6.1.7.tar.gz) = 21144129 +SHA256 (dummy-6.1.7.tar.gz) = 5df4ba1214469db22f2b7778db679c41020b2a18676c0cedb852d4d524534677 +SIZE (dummy-6.1.7.tar.gz) = 9816 --- typo3-6.1.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:44:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 525BAA51; Tue, 10 Dec 2013 19:44:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2460219C8; Tue, 10 Dec 2013 19:44:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJiDIE031981; Tue, 10 Dec 2013 19:44:13 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJiCIZ031980; Tue, 10 Dec 2013 19:44:12 GMT (envelope-from sunpoet) Date: Tue, 10 Dec 2013 19:44:12 GMT Message-Id: <201312101944.rBAJiCIZ031980@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/184669: [MAINTAINER] www/typo3: update to 6.1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:44:13 -0000 Synopsis: [MAINTAINER] www/typo3: update to 6.1.7 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Dec 10 19:44:12 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184669 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0C71F25 for ; Tue, 10 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C70961A1A for ; Tue, 10 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJo0P3032183 for ; Tue, 10 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJo0A0032181; Tue, 10 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312101950.rBAJo0A0032181@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC388574 for ; Tue, 10 Dec 2013 19:40:08 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C585191B for ; Tue, 10 Dec 2013 19:40:07 +0000 (UTC) Received: from fwd03.aul.t-online.de (fwd03.aul.t-online.de ) by mailout03.t-online.de with smtp id 1VqTA0-0005tE-4O; Tue, 10 Dec 2013 20:40:00 +0100 Received: from mailout.charlieroot.de (GoUN+UZTQh1DYeJ5n+fhTFU8EVObk4PUrLWAhhNmgsOga+n16fAdHzMeEeQTqSfgWn@[79.197.70.10]) by fwd03.aul.t-online.de with esmtp id 1VqT9u-0sfyvg0; Tue, 10 Dec 2013 20:39:54 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id EAA7361FC7 for ; Tue, 10 Dec 2013 20:39:53 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id D23D118283; Tue, 10 Dec 2013 20:39:53 +0100 (CET) Message-Id: <20131210193953.D23D118283@BSDHelmut964.charlieroot.de> Date: Tue, 10 Dec 2013 20:39:53 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184671: [MAINTAINER] www/typo347: update to 4.7.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:50:01 -0000 >Number: 184671 >Category: ports >Synopsis: [MAINTAINER] www/typo347: update to 4.7.17 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - Update to 4.7.17 - Bug and security fixes - http://typo3.org/news/article/typo3-cms-4532-4717-6012-and-617-released/ - http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/ Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-4.7.17.patch begins here --- diff -ruN ../typo347.org/Makefile ./Makefile --- ../typo347.org/Makefile 2013-12-10 20:33:40.000000000 +0100 +++ ./Makefile 2013-12-10 20:33:50.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/typo347/Makefile 335083 2013-11-28 08:03:45Z culot $ PORTNAME= typo3 -PORTVERSION= 4.7.16 +PORTVERSION= 4.7.17 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} diff -ruN ../typo347.org/distinfo ./distinfo --- ../typo347.org/distinfo 2013-11-27 15:19:37.000000000 +0100 +++ ./distinfo 2013-12-10 20:34:00.000000000 +0100 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.7.16.tar.gz) = 93457c92adc46ace7a3b37a92dabda971ccb53ebc9fdca462aaed429b8cba8b7 -SIZE (typo3_src-4.7.16.tar.gz) = 22630645 -SHA256 (dummy-4.7.16.tar.gz) = 707c5319780b7e9ac469537fbe955efa52af04c35988ec4994ef5dc9c972d2d6 -SIZE (dummy-4.7.16.tar.gz) = 10277 +SHA256 (typo3_src-4.7.17.tar.gz) = f2b6fb15d56a5dbe24b3ccbcbf15c6f465154fb9bb244554653d4e26fa3ed613 +SIZE (typo3_src-4.7.17.tar.gz) = 22632250 +SHA256 (dummy-4.7.17.tar.gz) = 2cd45e97ea8ad67915283301c3daffe00b5e314cf6c85f7da9745fb041b4ae74 +SIZE (dummy-4.7.17.tar.gz) = 10277 diff -ruN ../typo347.org/pkg-plist ./pkg-plist --- ../typo347.org/pkg-plist 2013-08-06 09:23:32.000000000 +0200 +++ ./pkg-plist 2013-12-10 20:35:27.000000000 +0100 @@ -2989,6 +2989,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/oracle/templavoila.diff %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/postgresql/postgresql-compatibility.sql %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/ChangeLog +%%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit/tools/class.tx_em_toolsTest.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/class.tx_em_api.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/class.tx_em_extensionmanager.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/conf.php @@ -8972,6 +8973,9 @@ @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/database @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/connection @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit/tools +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/postgresql @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/oracle --- typo3-4.7.17.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABCDDF23 for ; Tue, 10 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 815FE1A18 for ; Tue, 10 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJo00R032164 for ; Tue, 10 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJo0bO032163; Tue, 10 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 10 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312101950.rBAJo0bO032163@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7A51F14 for ; Tue, 10 Dec 2013 19:49:34 +0000 (UTC) Received: from mailout11.t-online.de (mailout11.t-online.de [194.25.134.85]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 464A51A09 for ; Tue, 10 Dec 2013 19:49:33 +0000 (UTC) Received: from fwd31.aul.t-online.de (fwd31.aul.t-online.de ) by mailout11.t-online.de with smtp id 1VqT3z-0000jS-Vi; Tue, 10 Dec 2013 20:33:48 +0100 Received: from mailout.charlieroot.de (Jl1Wu4ZB8hmVOl6vh4OJC8J9Nb6roHPvAZTnq8wWVZRN7bP9bkI-gXKt6CmRe72Qt3@[79.197.70.10]) by fwd31.aul.t-online.de with esmtp id 1VqT3x-02rMXo0; Tue, 10 Dec 2013 20:33:45 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id CFE2F61FC7 for ; Tue, 10 Dec 2013 20:33:44 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 8D7A018283; Tue, 10 Dec 2013 20:33:38 +0100 (CET) Message-Id: <20131210193338.8D7A018283@BSDHelmut964.charlieroot.de> Date: Tue, 10 Dec 2013 20:33:38 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184670: [MAINTAINER] www/typo345: update to 4.5.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:50:00 -0000 >Number: 184670 >Category: ports >Synopsis: [MAINTAINER] www/typo345: update to 4.5.32 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Dec 10 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - Update to 4.5.32 - Bug and security fixes - http://typo3.org/news/article/typo3-cms-4532-4717-6012-and-617-released/ - http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/ Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-4.5.32.patch begins here --- diff -ruN ../typo345.org/Makefile ./Makefile --- ../typo345.org/Makefile 2013-11-27 14:00:52.000000000 +0100 +++ ./Makefile 2013-12-10 20:24:28.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/typo345/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= typo3 -PORTVERSION= 4.5.31 +PORTVERSION= 4.5.32 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} diff -ruN ../typo345.org/distinfo ./distinfo --- ../typo345.org/distinfo 2013-11-27 14:01:04.000000000 +0100 +++ ./distinfo 2013-12-10 20:24:42.000000000 +0100 @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.5.31.tar.gz) = b2f7cdc11507412a0f93f798b479dd37506b21d6ebe84c6baeda8174521d7569 -SIZE (typo3_src-4.5.31.tar.gz) = 20764313 -SHA256 (dummy-4.5.31.tar.gz) = 933228a830be9397a5a446492b614322a646339e3d081df343cbd4a6650f74da -SIZE (dummy-4.5.31.tar.gz) = 9977 +SHA256 (typo3_src-4.5.32.tar.gz) = e15d436fadcd269c5c1a118d34c1b666ad4353e2ea2af3c09c238305752efe65 +SIZE (typo3_src-4.5.32.tar.gz) = 20769345 +SHA256 (dummy-4.5.32.tar.gz) = a3f7fb33a363ba90f4df0570d49c94c3de667026da836839e2a6aaa07c6274f1 +SIZE (dummy-4.5.32.tar.gz) = 9978 diff -ruN ../typo345.org/pkg-plist ./pkg-plist --- ../typo345.org/pkg-plist 2013-08-06 09:23:31.000000000 +0200 +++ ./pkg-plist 2013-12-10 20:28:21.000000000 +0100 @@ -2791,6 +2791,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/oracle/templavoila.diff %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/postgresql/postgresql-compatibility.sql %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/ChangeLog +%%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit/tools/class.tx_em_toolsTest.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/class.tx_em_api.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/class.tx_em_extensionmanager.php %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/conf.php @@ -8059,6 +8060,9 @@ @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/database @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes/connection @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/classes +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit/tools +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests/Unit +@dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em/Tests @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/em @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/postgresql @dirrm %%WWWDIR%%_src-%%PORTVERSION%%/typo3/sysext/dbal/res/oracle --- typo3-4.5.32.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63B61F52; Tue, 10 Dec 2013 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E6901A1B; Tue, 10 Dec 2013 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJo8dc032310; Tue, 10 Dec 2013 19:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJo8v8032309; Tue, 10 Dec 2013 19:50:08 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 19:50:08 GMT Message-Id: <201312101950.rBAJo8v8032309@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184670: [MAINTAINER] www/typo345: update to 4.5.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:50:09 -0000 Synopsis: [MAINTAINER] www/typo345: update to 4.5.32 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 19:50:08 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184670 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 10 19:50:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E81DF83; Tue, 10 Dec 2013 19:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 511421A1D; Tue, 10 Dec 2013 19:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBAJoEps032392; Tue, 10 Dec 2013 19:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBAJoEof032391; Tue, 10 Dec 2013 19:50:14 GMT (envelope-from edwin) Date: Tue, 10 Dec 2013 19:50:14 GMT Message-Id: <201312101950.rBAJoEof032391@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184671: [MAINTAINER] www/typo347: update to 4.7.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 19:50:14 -0000 Synopsis: [MAINTAINER] www/typo347: update to 4.7.17 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Tue Dec 10 19:50:13 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184671 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 00:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 956099AA for ; Wed, 11 Dec 2013 00:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6EFD11DDF for ; Wed, 11 Dec 2013 00:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB0A0OY094688 for ; Wed, 11 Dec 2013 00:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB0A0k9094687; Wed, 11 Dec 2013 00:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 00:10:00 GMT Resent-Message-Id: <201312110010.rBB0A0k9094687@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hilko Meyer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85F247F4 for ; Wed, 11 Dec 2013 00:03:23 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 701B61DA2 for ; Wed, 11 Dec 2013 00:03:23 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBB03NuF015469 for ; Wed, 11 Dec 2013 00:03:23 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBB03N9q015461; Wed, 11 Dec 2013 00:03:23 GMT (envelope-from nobody) Message-Id: <201312110003.rBB03N9q015461@oldred.freebsd.org> Date: Wed, 11 Dec 2013 00:03:23 GMT From: Hilko Meyer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184672: portupgrade -p libxcb fails to install x11/xcb-proto as dependency with staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 00:10:00 -0000 >Number: 184672 >Category: ports >Synopsis: portupgrade -p libxcb fails to install x11/xcb-proto as dependency with staging >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 00:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hilko Meyer >Release: 8.3-RELEASE-p11 >Organization: >Environment: FreeBSD x.y.uni-hannover.de 8.3-RELEASE-p11 FreeBSD 8.3-RELEASE-p11 #3: Tue Sep 10 18:06:01 CEST 2013 z@x.y.uni-hannover.de:/usr/obj/usr/src/sys/x i386 >Description: As described in ports/184665 I tried to upgrade libxcb-1.9.1 to libxcb-1.9.1_1 but it failed because x11/xcb-proto is needed as build dependency but wasn't installed in the upgrade process. You can see in the attached buildlog (attached in ports/184665) that it was built, installed into staging area and the package was built. But after building the package xcb-proto wasn't installed and it returned to the build of libxcb. The next build dependency for libxcb (textproc/libxslt/) was installed as expected. I did some tests after zeisings answer to that PR and it looks like the culprit is the '-p' option for portupgrade. cd x11/libxcb && make worked portupgrade libxcb worked portupgrade -p libxcb failed And portupgrade -M NO_STAGE=yes -p libxcb worked too Maybe you can just remove the '-p' option, because packages are build automagically after staging was introduced. >How-To-Repeat: Deinstall x11/xcb-proto portupgrade -p libxcb >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 00:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 092979D9; Wed, 11 Dec 2013 00:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1AD61DE1; Wed, 11 Dec 2013 00:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB0A8kP094828; Wed, 11 Dec 2013 00:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB0A8j3094827; Wed, 11 Dec 2013 00:10:08 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 00:10:08 GMT Message-Id: <201312110010.rBB0A8j3094827@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184672: portupgrade -p libxcb fails to install x11/xcb-proto as dependency with staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 00:10:09 -0000 Synopsis: portupgrade -p libxcb fails to install x11/xcb-proto as dependency with staging Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 00:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184672 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 01:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C538B0 for ; Wed, 11 Dec 2013 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CEA612F3 for ; Wed, 11 Dec 2013 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB1U0wq017725 for ; Wed, 11 Dec 2013 01:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB1U0rc017716; Wed, 11 Dec 2013 01:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 01:30:00 GMT Resent-Message-Id: <201312110130.rBB1U0rc017716@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Viktor Štujber Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 766ECA6 for ; Wed, 11 Dec 2013 01:29:09 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 61CFF12EC for ; Wed, 11 Dec 2013 01:29:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBB1T9tU059391 for ; Wed, 11 Dec 2013 01:29:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBB1T9d9059390; Wed, 11 Dec 2013 01:29:09 GMT (envelope-from nobody) Message-Id: <201312110129.rBB1T9d9059390@oldred.freebsd.org> Date: Wed, 11 Dec 2013 01:29:09 GMT From: Viktor Štujber To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184673: abort when a dependency's ports directory doesn't exist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 01:30:00 -0000 >Number: 184673 >Category: ports >Synopsis: abort when a dependency's ports directory doesn't exist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 01:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Viktor Štujber >Release: 9.1 >Organization: >Environment: FreeBSD 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251958M: Wed Jun 19 01:33:28 CEST 2013 >Description: While installing a port, the system will check for dependencies and will try to install any that are missing using the ports tree. If the port's directory does not exist, Mk/bsd.port.mk will just print "No directory for $$prog. Skipping.." and continue with the main build. The build will most likely fail somewhere down the line. If you're not actively watching/logging the build output, that will be the only indication that something went wrong. A hypothetical configure script might even work around the missing dependency and silently build an incomplete or inferior product. I suggest changing all places that do this 'skipping' thing to instead abort the build. Or at least have a way to configure this behavior (although I can't think of a reason why one would want to continue). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 06:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E48B69DC for ; Wed, 11 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BFE4E1A80 for ; Wed, 11 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB6K0Gj082201 for ; Wed, 11 Dec 2013 06:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB6K0qH082190; Wed, 11 Dec 2013 06:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 06:20:00 GMT Resent-Message-Id: <201312110620.rBB6K0qH082190@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, celle Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3A769B4 for ; Wed, 11 Dec 2013 06:17:47 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 758331A66 for ; Wed, 11 Dec 2013 06:17:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBB6HkcP075155 for ; Wed, 11 Dec 2013 06:17:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBB6Hkdu075145; Wed, 11 Dec 2013 06:17:46 GMT (envelope-from nobody) Message-Id: <201312110617.rBB6Hkdu075145@oldred.freebsd.org> Date: Wed, 11 Dec 2013 06:17:46 GMT From: celle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184679: locking assertion failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 06:20:01 -0000 >Number: 184679 >Category: ports >Synopsis: locking assertion failure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 06:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: celle >Release: 9.2 release p2 >Organization: >Environment: FreeBSD alisha 9.2-RELEASE FreeBSD 9.2-RELEASE #3: Mon Sep 30 04:20:55 CDT 2013 paul@alisha:/usr/obj/usr/src/sys/GENERIC i386 >Description: Games/linux-ut2004-demo and full game fails to run on 9.2 on i386 and amd64 on non-kms radeon drivers. Was working on 9.1 i386 radeon before recent update and works on 9.1 on amd64 on nvidia. The demo also doesn't download from website. fcntl: Invalid argument WARNING: ALC_EXT_capture is subject to change! X Error of failed request: BadLength (poly request too large or internal Xlib length error) Major opcode of failed request: 137 (DRI2) Minor opcode of failed request: 1 () Serial number of failed request: 24 Current serial number in output stream: 24 Locking assertion failure. Backtrace: #0 /usr/lib/libxcb-xlib.so.0 [0x2911f767] #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0x2911f90e] #2 /usr/lib/libX11.so.6 [0x290500e9] #3 /usr/lib/libX11.so.6(XSync+0x25) [0x290441d5] #4 ./libSDL-1.2.so.0 [0x28d6f219] #5 ./libSDL-1.2.so.0(SDL_VideoQuit+0x51) [0x28d64741] #6 ./libSDL-1.2.so.0(SDL_QuitSubSystem+0x5a) [0x28d47c7e] #7 ./ut2004-bin [0x8953f36] #8 /lib/libc.so.6(exit+0x89) [0x28ec4cc9] #9 /usr/lib/libX11.so.6 [0x290488fe] #10 ./libSDL-1.2.so.0 [0x28d6d280] #11 /usr/lib/libX11.so.6(_XError+0x109) [0x29048aa9] #12 /usr/lib/libX11.so.6(_XReply+0x22e) [0x29050f2e] #13 /usr/lib/libGL.so.1(DRI2Connect+0x9e) [0x2b40243e] #14 /usr/lib/libGL.so.1 [0x2b40185d] #15 /usr/lib/libGL.so.1 [0x2b3e5612] #16 /usr/lib/libGL.so.1 [0x2b3e1b62] #17 /usr/lib/libGL.so.1(glXChooseVisual+0x31) [0x2b3e26ae] #18 ./libSDL-1.2.so.0(X11_GL_GetVisual+0x28e) [0x28d69d62] #19 ./libSDL-1.2.so.0 [0x28d6e149] Same error reproduced on i386 desktop with radeon 1600xt and laptop with amd64 with amd rs690 since 9.2 release. >How-To-Repeat: # portmaster games/linux-ut2004-demo # mount linproc # mode 666 needed in xorg.conf for users $ ut2004-demo >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 06:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B32D59DA for ; Wed, 11 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79B6A1A7E for ; Wed, 11 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB6K01F082151 for ; Wed, 11 Dec 2013 06:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB6K0H3082150; Wed, 11 Dec 2013 06:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 06:20:00 GMT Resent-Message-Id: <201312110620.rBB6K0H3082150@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 53633974 for ; Wed, 11 Dec 2013 06:15:49 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id 25B8A1A52 for ; Wed, 11 Dec 2013 06:15:48 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id BEF1A750783; Wed, 11 Dec 2013 14:15:46 +0800 (CST) Message-Id: <20131211061546.BEF1A750783@goingmarry.kkbox.com> Date: Wed, 11 Dec 2013 14:15:46 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184678: [MAINTAINER] devel/pear-TheSeer_fDOMDocument: update to 1.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 06:20:00 -0000 >Number: 184678 >Category: ports >Synopsis: [MAINTAINER] devel/pear-TheSeer_fDOMDocument: update to 1.4.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 06:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Update to 1.4.2 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- pear-TheSeer_fDOMDocument-1.4.2.patch begins here --- diff -ruN /usr/ports/devel/pear-TheSeer_fDOMDocument/Makefile ./Makefile --- /usr/ports/devel/pear-TheSeer_fDOMDocument/Makefile 2013-11-09 05:41:53.000000000 +0800 +++ ./Makefile 2013-12-11 12:46:33.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: devel/pear-TheSeer_fDOMDocument/Makefile 333263 2013-11-08 21:41:53Z antoine $ PORTNAME= fDOMDocument -PORTVERSION= 1.3.2 +PORTVERSION= 1.4.2 CATEGORIES= devel www pear MASTER_SITES= http://pear.netpirates.net/get/ PKGNAMEPREFIX= pear-TheSeer_ diff -ruN /usr/ports/devel/pear-TheSeer_fDOMDocument/distinfo ./distinfo --- /usr/ports/devel/pear-TheSeer_fDOMDocument/distinfo 2013-01-03 19:37:21.000000000 +0800 +++ ./distinfo 2013-12-11 12:46:33.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PEAR/fDOMDocument-1.3.2.tgz) = a2c6d648a6e48028452781efacedc62270a9acfe75b0c088f274c6f457b00146 -SIZE (PEAR/fDOMDocument-1.3.2.tgz) = 13907 +SHA256 (PEAR/fDOMDocument-1.4.2.tgz) = efd2ef6c8929ae548c95dc65f5a6b5a614e1be5895bcdb077d5b9c2c1d114c97 +SIZE (PEAR/fDOMDocument-1.4.2.tgz) = 15121 --- pear-TheSeer_fDOMDocument-1.4.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 06:20:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E219A35; Wed, 11 Dec 2013 06:20:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 02AFB1A82; Wed, 11 Dec 2013 06:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB6KDM4082299; Wed, 11 Dec 2013 06:20:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB6KDHi082298; Wed, 11 Dec 2013 06:20:13 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 06:20:13 GMT Message-Id: <201312110620.rBB6KDHi082298@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184678: [MAINTAINER] devel/pear-TheSeer_fDOMDocument: update to 1.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 06:20:14 -0000 Synopsis: [MAINTAINER] devel/pear-TheSeer_fDOMDocument: update to 1.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 06:20:13 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184678 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 06:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC84EDDE for ; Wed, 11 Dec 2013 06:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 92DEB1B7E for ; Wed, 11 Dec 2013 06:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB6U0oY084148 for ; Wed, 11 Dec 2013 06:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB6U0TD084147; Wed, 11 Dec 2013 06:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 06:30:00 GMT Resent-Message-Id: <201312110630.rBB6U0TD084147@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 108B7BBE for ; Wed, 11 Dec 2013 06:25:25 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id D6DFC1B20 for ; Wed, 11 Dec 2013 06:25:24 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id DBA137501D3; Wed, 11 Dec 2013 14:15:30 +0800 (CST) Message-Id: <20131211061530.DBA137501D3@goingmarry.kkbox.com> Date: Wed, 11 Dec 2013 14:15:30 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184680: [MAINTAINER] devel/pear-TheSeer_DirectoryScanner: update to 1.2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 06:30:00 -0000 >Number: 184680 >Category: ports >Synopsis: [MAINTAINER] devel/pear-TheSeer_DirectoryScanner: update to 1.2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 06:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Update to 1.2.0 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- pear-TheSeer_DirectoryScanner-1.2.0.patch begins here --- diff -ruN /usr/ports/devel/pear-TheSeer_DirectoryScanner/Makefile ./Makefile --- /usr/ports/devel/pear-TheSeer_DirectoryScanner/Makefile 2013-11-09 05:41:53.000000000 +0800 +++ ./Makefile 2013-12-11 12:49:16.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: devel/pear-TheSeer_DirectoryScanner/Makefile 333263 2013-11-08 21:41:53Z antoine $ PORTNAME= DirectoryScanner -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.0 CATEGORIES= devel pear MASTER_SITES= http://pear.netpirates.net/get/ PKGNAMEPREFIX= pear-TheSeer_ diff -ruN /usr/ports/devel/pear-TheSeer_DirectoryScanner/distinfo ./distinfo --- /usr/ports/devel/pear-TheSeer_DirectoryScanner/distinfo 2012-12-20 04:05:43.000000000 +0800 +++ ./distinfo 2013-12-11 12:49:16.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PEAR/DirectoryScanner-1.1.0.tgz) = 8d0c269cd5b386c9aebd9fc0080771adb00833262906434cd30d0c872cdb04e6 -SIZE (PEAR/DirectoryScanner-1.1.0.tgz) = 3644 +SHA256 (PEAR/DirectoryScanner-1.2.0.tgz) = 7716867c405b617f371befebec5e03fc6330ef6731d7d48e76b4d2dd3b19caad +SIZE (PEAR/DirectoryScanner-1.2.0.tgz) = 3827 --- pear-TheSeer_DirectoryScanner-1.2.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 06:30:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76565E0F; Wed, 11 Dec 2013 06:30:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F44F1C7C; Wed, 11 Dec 2013 06:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBB6U8SG084312; Wed, 11 Dec 2013 06:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBB6U8xx084311; Wed, 11 Dec 2013 06:30:08 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 06:30:08 GMT Message-Id: <201312110630.rBB6U8xx084311@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184680: [MAINTAINER] devel/pear-TheSeer_DirectoryScanner: update to 1.2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 06:30:10 -0000 Synopsis: [MAINTAINER] devel/pear-TheSeer_DirectoryScanner: update to 1.2.0 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 06:30:08 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184680 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 08:20:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B57447BC; Wed, 11 Dec 2013 08:20:21 +0000 (UTC) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 8004C16BB; Wed, 11 Dec 2013 08:20:21 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 2EBE661FAB; Wed, 11 Dec 2013 17:20:13 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 049104E642; Wed, 11 Dec 2013 17:20:13 +0900 (JST) Received: from localhost (rolling.home.utahime.org [192.168.174.11]) by eastasia.home.utahime.org (Postfix) with ESMTPA id BA8F84E62C; Wed, 11 Dec 2013 17:20:12 +0900 (JST) Date: Wed, 11 Dec 2013 17:20:03 +0900 (JST) Message-Id: <20131211.172003.57340235.yasu@utahime.org> To: bapt@FreeBSD.org Subject: Re: ports/184594: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) From: Yasuhiro KIMURA In-Reply-To: <201312081510.rB8FA0DH012852@freefall.freebsd.org> References: <20131208150648.976E24E642@eastasia.home.utahime.org> <201312081510.rB8FA0DH012852@freefall.freebsd.org> X-Mailer: Mew version 6.5 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 08:20:21 -0000 Hello, Since this issue is fixed in 1.2.3, would you please close this PR? Best Regards. --- Yasuhiro KIMURA From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 08:31:25 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 020FCD2A; Wed, 11 Dec 2013 08:31:25 +0000 (UTC) Received: from mail-we0-x22b.google.com (mail-we0-x22b.google.com [IPv6:2a00:1450:400c:c03::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62BAE183B; Wed, 11 Dec 2013 08:31:24 +0000 (UTC) Received: by mail-we0-f171.google.com with SMTP id q58so6155250wes.30 for ; Wed, 11 Dec 2013 00:31:22 -0800 (PST) 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=a0lD1/yG6HvWalMl2wyxaywOxC/zqkERyjRMlAsUxvI=; b=trSCqQh6V5USTY8dMNNdWavvBaa7lixmR8o6P2axk/VLDms7m+LGkiv6wqujo79KeZ BqiTX/acyRwSZoVXUpcx6xJloBH/fcocFxlicRiZyKE4EJIXKXTkWnmcQjrZEmWDLzRs QRrZIFsqOlSQlQJ/ajKAffzJf9cNbTwzfsbnduPFreFh6QawBu+JBpxv08kffEOF80T4 9mATRprgfckcv+DAR5KJZ0ssBWh/vzMclaEdxP488UD9Xh+YpEmPLaRjoXeeFA4tWQT8 B6IwRH8luGMX2y5l/06vgIJ6jd3w1s/exxh+7GUB7k5ZP5TT8NMK5jOqurHIT6NbE7+p 2dXg== X-Received: by 10.180.73.70 with SMTP id j6mr23146082wiv.47.1386750682769; Wed, 11 Dec 2013 00:31:22 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id d2sm12581168wik.11.2013.12.11.00.31.21 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 11 Dec 2013 00:31:21 -0800 (PST) Sender: Baptiste Daroussin Date: Wed, 11 Dec 2013 09:31:19 +0100 From: Baptiste Daroussin To: Yasuhiro KIMURA Subject: Re: ports/184594: ports-mgmt/pkg: no explanation about 'alias' option in pkg.conf(5) Message-ID: <20131211083119.GH99623@ithaqua.etoilebsd.net> References: <20131208150648.976E24E642@eastasia.home.utahime.org> <201312081510.rB8FA0DH012852@freefall.freebsd.org> <20131211.172003.57340235.yasu@utahime.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3VRmKSg17yJg2MZg" Content-Disposition: inline In-Reply-To: <20131211.172003.57340235.yasu@utahime.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 08:31:25 -0000 --3VRmKSg17yJg2MZg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 11, 2013 at 05:20:03PM +0900, Yasuhiro KIMURA wrote: > Hello, >=20 > Since this issue is fixed in 1.2.3, would you please close this PR? >=20 > Best Regards. >=20 > --- > Yasuhiro KIMURA Done thanks for reminder :) regards, Bapt --3VRmKSg17yJg2MZg Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlKoItcACgkQ8kTtMUmk6EwpugCgqCkaOrHlRUCpqn969Y/C9Fiz e3oAniOVWl93DrjGctmxQtRZzqnRrrQZ =GPK5 -----END PGP SIGNATURE----- --3VRmKSg17yJg2MZg-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 10:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C25BDF02 for ; Wed, 11 Dec 2013 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D9AA1747 for ; Wed, 11 Dec 2013 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBAo0fe053182 for ; Wed, 11 Dec 2013 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBAo0oQ053181; Wed, 11 Dec 2013 10:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 10:50:00 GMT Resent-Message-Id: <201312111050.rBBAo0oQ053181@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vitaly Magerya Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F5B1EF2 for ; Wed, 11 Dec 2013 10:49:40 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6BAAE1743 for ; Wed, 11 Dec 2013 10:49:40 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBAneUC083601 for ; Wed, 11 Dec 2013 10:49:40 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBAnevk083595; Wed, 11 Dec 2013 10:49:40 GMT (envelope-from nobody) Message-Id: <201312111049.rBBAnevk083595@oldred.freebsd.org> Date: Wed, 11 Dec 2013 10:49:40 GMT From: Vitaly Magerya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184682: lang/petite-chez: update LEGAL to match the port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 10:50:00 -0000 >Number: 184682 >Category: ports >Synopsis: lang/petite-chez: update LEGAL to match the port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 10:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Vitaly Magerya >Release: >Organization: >Environment: >Description: * Capitalize NO_PACKAGE message * Update LEGAL so that the text matches NO_PACKAGE * Fix the distfile glob in LEGAL >How-To-Repeat: >Fix: Patch attached with submission follows: --- LEGAL.orig 2013-12-11 12:38:14.000000000 +0200 +++ LEGAL 2013-12-11 12:48:08.000000000 +0200 @@ -195,7 +195,7 @@ oracle/* databases/jdbc-oracle9i This software is under license and export controls oracle/sqldeveloper* databases/sqldeveloper This software is under license and export controls palmos-sdk-*-1.tar.gz palm/palmos-sdk License agreement is required -pcsv*i3fb.tar.gz lang/petite-chez Must acknowledge license +pcsv*fb.tar.gz lang/petite-chez User must accept license terms before installation PDFlib-Lite-*.tar.gz print/pdflib Many odd restrictions on usage and distribution pgp* security/pgp Various locality restrictions pgp* security/pgpdump Various locality restrictions --- lang/petite-chez/Makefile.orig 2013-12-11 12:39:23.000000000 +0200 +++ lang/petite-chez/Makefile 2013-12-11 12:39:28.000000000 +0200 @@ -16,10 +16,10 @@ ONLY_FOR_ARCHS= i386 amd64 -NO_PACKAGE= user must accept license terms before installation +NO_PACKAGE= User must accept license terms before installation .if defined(PACKAGE_BUILDING) -IGNORE= user must accept license terms before installation +IGNORE= User must accept license terms before installation .endif OPTIONS_DEFINE= THREADS >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A218D516 for ; Wed, 11 Dec 2013 12:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6324110E4 for ; Wed, 11 Dec 2013 12:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCA0tb069769 for ; Wed, 11 Dec 2013 12:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCA0aC069768; Wed, 11 Dec 2013 12:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 12:10:00 GMT Resent-Message-Id: <201312111210.rBBCA0aC069768@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Reinier de Blois Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A411736B for ; Wed, 11 Dec 2013 12:05:15 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 906AB1069 for ; Wed, 11 Dec 2013 12:05:15 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBC5FRT096320 for ; Wed, 11 Dec 2013 12:05:15 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBC5FMU096316; Wed, 11 Dec 2013 12:05:15 GMT (envelope-from nobody) Message-Id: <201312111205.rBBC5FMU096316@oldred.freebsd.org> Date: Wed, 11 Dec 2013 12:05:15 GMT From: Reinier de Blois To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184683: [MAINTAINER] graphics/squish: fix compile error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:10:00 -0000 >Number: 184683 >Category: ports >Synopsis: [MAINTAINER] graphics/squish: fix compile error >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 12:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Reinier de Blois >Release: >Organization: >Environment: >Description: A compile error popped up in this port on later FreeBSD versions. Attached is a fix. (It also changes my e-mail address to one that I check more frequently). >How-To-Repeat: >Fix: Patch made by using "svn diff" in the graphics/squish directory. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 336157) +++ Makefile (working copy) @@ -1,4 +1,4 @@ -# Created by: Reinier de Blois +# Created by: Reinier de Blois # $FreeBSD$ PORTNAME= squish @@ -6,7 +6,7 @@ CATEGORIES= graphics MASTER_SITES= http://libsquish.googlecode.com/files/ -MAINTAINER= me@rdb.name +MAINTAINER= rddeblois@gmail.com COMMENT= Open source DXT compression library LICENSE= MIT @@ -15,7 +15,7 @@ MAKE_ENV= INSTALL_DIR=${STAGEDIR}${PREFIX} PLIST_FILES= include/squish.h \ lib/libsquish.a -CXXFLAGS+= -fPIC +CXXFLAGS+= -fPIC -include limits.h OPTIONS_RADIO= RG1 OPTIONS_RADIO_RG1= ALTIVEC SSE >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08EC4549; Wed, 11 Dec 2013 12:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D22FC10EA; Wed, 11 Dec 2013 12:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCA72c069900; Wed, 11 Dec 2013 12:10:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCA7Pp069899; Wed, 11 Dec 2013 12:10:07 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 12:10:07 GMT Message-Id: <201312111210.rBBCA7Pp069899@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184683: [MAINTAINER] graphics/squish: fix compile error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:10:08 -0000 Synopsis: [MAINTAINER] graphics/squish: fix compile error Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Wed Dec 11 12:10:07 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184683 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA1F354F; Wed, 11 Dec 2013 12:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91A3E10EC; Wed, 11 Dec 2013 12:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCA9DI069975; Wed, 11 Dec 2013 12:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCA957069974; Wed, 11 Dec 2013 12:10:09 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 12:10:09 GMT Message-Id: <201312111210.rBBCA957069974@freefall.freebsd.org> To: rddeblois@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184683: [MAINTAINER] graphics/squish: fix compile error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:10:09 -0000 Synopsis: [MAINTAINER] graphics/squish: fix compile error State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 11 12:10:09 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184683 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 939217B2 for ; Wed, 11 Dec 2013 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D57811B9 for ; Wed, 11 Dec 2013 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCK1rg076202 for ; Wed, 11 Dec 2013 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCK1p0076201; Wed, 11 Dec 2013 12:20:01 GMT (envelope-from gnats) Date: Wed, 11 Dec 2013 12:20:01 GMT Message-Id: <201312111220.rBBCK1p0076201@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184683: [MAINTAINER] graphics/squish: fix compile error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:20:01 -0000 The following reply was made to PR ports/184683; it has been noted by GNATS. From: Edwin Groothuis To: me@rdb.name Cc: bug-followup@FreeBSD.org Subject: Re: ports/184683: [MAINTAINER] graphics/squish: fix compile error Date: Wed, 11 Dec 2013 12:10:08 UT Maintainer of graphics/squish, Please note that PR ports/184683 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184683 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2192D7B6 for ; Wed, 11 Dec 2013 12:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DAD0611BD for ; Wed, 11 Dec 2013 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCK1P9076213 for ; Wed, 11 Dec 2013 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCK1w9076212; Wed, 11 Dec 2013 12:20:01 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 12:20:01 GMT Resent-Message-Id: <201312111220.rBBCK1w9076212@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E056573C for ; Wed, 11 Dec 2013 12:14:54 +0000 (UTC) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 291EA117E for ; Wed, 11 Dec 2013 12:14:53 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id C1E064001D for ; Wed, 11 Dec 2013 13:14:50 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id B457D40025; Wed, 11 Dec 2013 13:14:50 +0100 (CET) Received: from mx.daemonic.se (unknown [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 89F4B4001D for ; Wed, 11 Dec 2013 13:14:34 +0100 (CET) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3dfcWt0mXBz8jLB for ; Wed, 11 Dec 2013 13:14:34 +0100 (CET) Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id XbgTIG0YRuIp for ; Wed, 11 Dec 2013 13:14:02 +0100 (CET) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3dfcWG5Tf3z8jL9 for ; Wed, 11 Dec 2013 13:14:02 +0100 (CET) Received: from vivi.daemonic.se (vivi.daemonic.se [IPv6:2001:470:dca9:1::4]) by mail.daemonic.se (Postfix) with ESMTPS id 3dfcWG4kfcz9CwV for ; Wed, 11 Dec 2013 13:14:02 +0100 (CET) Received: (from zeising@localhost) by vivi.daemonic.se (8.14.7/8.14.7/Submit) id rBBCE2EJ068310; Wed, 11 Dec 2013 13:14:02 +0100 (CET) (envelope-from zeising) Message-Id: <201312111214.rBBCE2EJ068310@vivi.daemonic.se> Date: Wed, 11 Dec 2013 13:14:02 +0100 (CET) From: Niclas Zeising To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184684: [EXP-RUN] switch CURRENT to new xorg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:20:02 -0000 >Number: 184684 >Category: ports >Synopsis: [EXP-RUN] switch CURRENT to new xorg >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 12:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD vivi.daemonic.se 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r252979M: Sun Jul 7 21:07:39 CEST 2013 root@vivi.daemonic.se:/usr/obj/usr/src/sys/VIVI amd64 >Description: Attached patch switches current over to new xorg, and stagifies remaining xorg ports. Please apply it with svn patch and run an exp-run on FreeBSD current. Patch also available at http://people.freebsd.org/~zeising/xorg-switch.2013-12-11.diff >How-To-Repeat: >Fix: --- xorg-switch.diff begins here --- Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 336156) +++ Mk/bsd.port.mk (working copy) @@ -1222,6 +1222,17 @@ .endif .endif +# Enable new xorg for FreeBSD versions after Radeon KMS was imported unless +# WITHOUT_NEW_XORG is set. +# XXX - This version should switch to whatever version newcons gets. +.if ${OSVERSION} >= 1100000 +. if !defined(WITHOUT_NEW_XORG) +WITH_NEW_XORG?= yes +. else +.undef WITH_NEW_XORG +. endif +.endif + # Only define tools here (for transition period with between pkg tools) .include "${PORTSDIR}/Mk/bsd.commands.mk" Index: Mk/bsd.xorg.mk =================================================================== --- Mk/bsd.xorg.mk (revision 336156) +++ Mk/bsd.xorg.mk (working copy) @@ -56,7 +56,9 @@ . endif . if ${XORG_CAT} == "driver" -USE_XORG+= xorg-server xproto randrproto xi +USE_XORG+= xorg-server xproto randrproto xi renderproto xextproto \ + inputproto kbproto fontsproto videoproto dri2proto xf86driproto \ + glproto xineramaproto resourceproto scrnsaverproto # work around a llvm bug on i386, llvm bug #15806 # reproduced with clang 3.2 (current release) and 3.1 . if ${ARCH} == i386 @@ -63,14 +65,6 @@ CFLAGS+= -fno-optimize-sibling-calls . endif CONFIGURE_ENV+= DRIVER_MAN_SUFFIX=4x DRIVER_MAN_DIR='$$(mandir)/man4' -. if ${PORTNAME:M*input*}x != x -USE_XORG+= inputproto videoproto fontsproto renderproto xextproto \ - dri2proto -. elif ${PORTNAME:M*video*}x != x -USE_XORG+= videoproto fontsproto renderproto xextproto dri2proto -. else -IGNORE= doesn't contain either "video" or "input" -. endif . endif . if ${XORG_CAT} == "font" @@ -147,7 +141,7 @@ CONFIGURE_ARGS+= --with-xkb-path=${LOCALBASE}/share/X11/xkb LIB_PC_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dri.pc:${PORTSDIR}/graphics/dri -USE_XORG+= pciaccess xextproto videoproto fontsproto dri2proto +USE_XORG+= pciaccess xextproto videoproto fontsproto dri2proto fontutil:build . endif .endif @@ -171,6 +165,7 @@ dmx \ dmxproto \ dri2proto \ + dri3proto \ evieproto \ fixesproto \ fontcacheproto \ @@ -185,6 +180,7 @@ oldx \ pciaccess \ pixman \ + presentproto \ printproto \ randrproto \ recordproto \ @@ -238,6 +234,7 @@ xrender \ xres \ xscrnsaver \ + xshmfence \ xt \ xtrans \ xtrap \ @@ -254,6 +251,7 @@ dmx_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dmx.pc:${PORTSDIR}/x11/libdmx dmxproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dmxproto.pc:${PORTSDIR}/x11/dmxproto dri2proto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dri2proto.pc:${PORTSDIR}/x11/dri2proto +dri3proto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dri3proto.pc:${PORTSDIR}/x11/dri3proto evieproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/evieproto.pc:${PORTSDIR}/x11/evieext fixesproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/fixesproto.pc:${PORTSDIR}/x11/fixesproto fontcacheproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/fontcacheproto.pc:${PORTSDIR}/x11-fonts/fontcacheproto @@ -268,6 +266,7 @@ oldx_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/oldx.pc:${PORTSDIR}/x11/liboldX pciaccess_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pciaccess.pc:${PORTSDIR}/devel/libpciaccess pixman_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pixman-1.pc:${PORTSDIR}/x11/pixman +presentproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/presentproto.pc:${PORTSDIR}/x11/presentproto printproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/printproto.pc:${PORTSDIR}/x11/printproto randrproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/randrproto.pc:${PORTSDIR}/x11/randrproto recordproto_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/recordproto.pc:${PORTSDIR}/x11/recordproto @@ -322,6 +321,7 @@ xres_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xres.pc:${PORTSDIR}/x11/libXres xscrnsaver_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xscrnsaver.pc:${PORTSDIR}/x11/libXScrnSaver xt_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xt.pc:${PORTSDIR}/x11-toolkits/libXt +xshmfence_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xshmfence.pc:${PORTSDIR}/x11/libxshmfence xtrans_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xtrans.pc:${PORTSDIR}/x11/xtrans xtrap_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xtrap.pc:${PORTSDIR}/x11/libXTrap xtst_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xtst.pc:${PORTSDIR}/x11/libXtst Index: UPDATING =================================================================== --- UPDATING (revision 336156) +++ UPDATING (working copy) @@ -5,6 +5,31 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +201309xx: + AFFECTS: users of x11/xorg and all xorg ports + AUTHOR: zeising@FreeBSD.org + + The default xorg version has been switched for FreeBSD CURRENT. + + No special upgrade procedure should be needed, but it is necessary to + recompile all xorg drivers and other ports that depend on the xserver + version, including emulators/virtualbox-ose-additions. Portrevisions + have been bumped where needed, but users of drivers not in the ports + tree will need to recompile those. + +201309xx: + AFFECTS: users of x11/pixman + AUTHOR: zeising@FreeBSD.org + + The library version of x11/pixman has changed, and portrevision has + been bumped in all dependent ports. If you have external software that + depends on pixman, this software needs to be recompiled. + To recompile all software dependent on pixman, run: + + # portmaster -r pixman + or + # portupgrade -rf pixman + 20131209: AFFECTS: users of dns/bind96, dns/bind98 and bind99 on FreeBSD 10.0 AUTHOR: erwin@FreeBSD.org Index: astro/viking/Makefile =================================================================== --- astro/viking/Makefile (revision 336156) +++ astro/viking/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= viking PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/ Index: cad/pdnmesh/Makefile =================================================================== --- cad/pdnmesh/Makefile (revision 336156) +++ cad/pdnmesh/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= pdnmesh PORTVERSION= 0.2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source/${PORTVERSION} Index: cad/repsnapper/Makefile =================================================================== --- cad/repsnapper/Makefile (revision 336156) +++ cad/repsnapper/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= repsnapper PORTVERSION= 2.3.2a3 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= https://codeload.github.com/timschmidt/repsnapper/tar.gz/ DISTNAME= ${PORTVERSION} Index: deskutils/pinot/Makefile =================================================================== --- deskutils/pinot/Makefile (revision 336156) +++ deskutils/pinot/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= pinot PORTVERSION= 1.06 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} #MASTER_SITES= http://colinf.chez.com/pinot/ Index: devel/gccmakedep/Makefile =================================================================== --- devel/gccmakedep/Makefile (revision 336156) +++ devel/gccmakedep/Makefile (working copy) @@ -13,10 +13,7 @@ BUILD_DEPENDS= tradcpp:${PORTSDIR}/devel/tradcpp -MAN1= gccmakedep.1 - -PLIST_FILES= bin/gccmakedep +PLIST_FILES= bin/gccmakedep man/man1/gccmakedep.1.gz CONFIGURE_ENV+= ac_cv_path_RAWCPP=tradcpp -NO_STAGE= yes .include Index: devel/imake/Makefile =================================================================== --- devel/imake/Makefile (revision 336156) +++ devel/imake/Makefile (working copy) @@ -25,15 +25,4 @@ CONFIGURE_ENV= ac_cv_path_RAWCPP=tradcpp -MAN1= ccmakedep.1 \ - cleanlinks.1 \ - imake.1 \ - makeg.1 \ - mergelib.1 \ - mkdirhier.1 \ - mkhtmlindex.1 \ - revpath.1 \ - xmkmf.1 - -NO_STAGE= yes .include Index: devel/imake/pkg-plist =================================================================== --- devel/imake/pkg-plist (revision 336156) +++ devel/imake/pkg-plist (working copy) @@ -7,3 +7,12 @@ bin/mkhtmlindex bin/revpath bin/xmkmf +man/man1/ccmakedep.1.gz +man/man1/cleanlinks.1.gz +man/man1/imake.1.gz +man/man1/makeg.1.gz +man/man1/mergelib.1.gz +man/man1/mkdirhier.1.gz +man/man1/mkhtmlindex.1.gz +man/man1/revpath.1.gz +man/man1/xmkmf.1.gz Index: devel/libpciaccess/Makefile =================================================================== --- devel/libpciaccess/Makefile (revision 336156) +++ devel/libpciaccess/Makefile (working copy) @@ -14,5 +14,4 @@ XORG_CAT= lib -NO_STAGE= yes .include Index: devel/makedepend/Makefile =================================================================== --- devel/makedepend/Makefile (revision 336156) +++ devel/makedepend/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= util USE_XORG= xproto -PLIST_FILES= bin/makedepend +PLIST_FILES= bin/makedepend man/man1/makedepend.1.gz -MAN1= makedepend.1 - -NO_STAGE= yes .include Index: devel/xorg-macros/Makefile =================================================================== --- devel/xorg-macros/Makefile (revision 336156) +++ devel/xorg-macros/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xorg-macros -PORTVERSION= 1.17.1 +PORTVERSION= 1.18.0 CATEGORIES= devel x11 DISTNAME= util-macros-$(PORTVERSION) Index: devel/xorg-macros/distinfo =================================================================== --- devel/xorg-macros/distinfo (revision 336156) +++ devel/xorg-macros/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/util/util-macros-1.17.1.tar.bz2) = 5e52654f2a0b04223cf28a9d7fd62cf288852e639ac13a75172fd47d0d6ac625 -SIZE (xorg/util/util-macros-1.17.1.tar.bz2) = 79105 +SHA256 (xorg/util/util-macros-1.18.0.tar.bz2) = e5e3d132a852f0576ea2cf831a9813c54a58810a59cdb198f56b884c5a78945b +SIZE (xorg/util/util-macros-1.18.0.tar.bz2) = 77830 Index: emulators/catapult/Makefile =================================================================== --- emulators/catapult/Makefile (revision 336156) +++ emulators/catapult/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= catapult PORTVERSION= 0.9.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= SF/openmsx/openmsx/${PORTVERSION} DISTNAME= openmsx-${PORTNAME}-${PORTVERSION} Index: emulators/qemu-devel/Makefile =================================================================== --- emulators/qemu-devel/Makefile (revision 336156) +++ emulators/qemu-devel/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= qemu PORTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/:release \ LOCAL/nox:snapshot Index: emulators/tme/Makefile =================================================================== --- emulators/tme/Makefile (revision 336156) +++ emulators/tme/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= tme PORTVERSION= 0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://people.csail.mit.edu/fredette/tme/ Index: emulators/virtualbox-ose-additions/Makefile =================================================================== --- emulators/virtualbox-ose-additions/Makefile (revision 336156) +++ emulators/virtualbox-ose-additions/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose DISTVERSION= 4.2.20 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ Index: games/klavaro/Makefile =================================================================== --- games/klavaro/Makefile (revision 336156) +++ games/klavaro/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= klavaro PORTVERSION= 1.9.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/ Index: graphics/cairo/Makefile =================================================================== --- graphics/cairo/Makefile (revision 336156) +++ graphics/cairo/Makefile (working copy) @@ -4,7 +4,7 @@ PORTNAME= cairo PORTVERSION= 1.10.2 -PORTREVISION= 6 +PORTREVISION= 7 PORTEPOCH?= 2 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/releases/ Index: graphics/freeglut/Makefile =================================================================== --- graphics/freeglut/Makefile (revision 336156) +++ graphics/freeglut/Makefile (working copy) @@ -28,7 +28,6 @@ progress.html structure.html BINS= CallbackMaker Fractals Fractals_random Lorenz One shapes -NO_STAGE= yes .include pre-configure: @@ -43,17 +42,17 @@ post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for FILE in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${STAGEDIR}${DOCSDIR} .endfor @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/progs/demos/Fractals/fractals.dat ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/progs/demos/Fractals/fractals.dat ${STAGEDIR}${EXAMPLESDIR} .for prog in ${BINS} - @${INSTALL_PROGRAM} ${WRKSRC}/progs/demos/${prog}/.libs/${prog:L} ${EXAMPLESDIR} + @${INSTALL_PROGRAM} ${WRKSRC}/progs/demos/${prog}/.libs/${prog:L} ${STAGEDIR}${EXAMPLESDIR} .endfor @${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}." .endif Index: graphics/libdrm/Makefile =================================================================== --- graphics/libdrm/Makefile (revision 336156) +++ graphics/libdrm/Makefile (working copy) @@ -17,7 +17,6 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes -NO_STAGE= yes OPTIONS_DEFINE= MANPAGES @@ -42,28 +41,22 @@ .endif .if ${PORT_OPTIONS:MMANPAGES} -BUILD_DEPENDS+= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl \ - xsltproc:${PORTSDIR}/textproc/libxslt -MAN3= drmAvailable.3 \ - drmHandleEvent.3 \ - drmModeGetResources.3 -MAN7= drm-gem.7 \ - drm-kms.7 \ - drm-memory.7 \ - drm-mm.7 \ - drm-ttm.7 \ - drm.7 +BUILD_DEPENDS+= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl +USE_GNOME+= libxslt:build +PLIST_SUB+= MAN="" .else CONFIGURE_ARGS+=--disable-manpages +PLIST_SUB+= MAN="@comment " .endif -LIBDRM_VERSION= 2.4.46 +LIBDRM_VERSION= 2.4.50 LIBDRM_REVISION=0 PLIST_SUB+= OLD="@comment " NEW="" EXTRA_PATCHES+= ${FILESDIR}/extra-configure \ ${FILESDIR}/extra-tests_modetest_Makefile.in \ ${FILESDIR}/extra-tests_modetest_modetest.c \ - ${FILESDIR}/extra-tests_modetest_strchrnul.c + ${FILESDIR}/extra-tests_modetest_strchrnul.c \ + ${FILESDIR}/extra-tests__radeon__radeon_ttm.c CONFIGURE_ARGS+=--disable-vmwgfx .else CONFIGURE_ARGS= --enable-nouveau-experimental-api @@ -85,4 +78,7 @@ s,i?86|x86_64),i?86|amd64|x86_64),g' \ ${WRKSRC}/configure +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so.* + .include Index: graphics/libdrm/distinfo =================================================================== --- graphics/libdrm/distinfo (revision 336156) +++ graphics/libdrm/distinfo (working copy) @@ -1,4 +1,4 @@ SHA256 (libdrm-2.4.17.tar.bz2) = b8a4e7c610b0e970546d791c06e28882857a49d34698633a89292d7ae142316a SIZE (libdrm-2.4.17.tar.bz2) = 408882 -SHA256 (libdrm-2.4.46.tar.bz2) = 33cf320dad4e8060768714792e12643ddf6756a719d262ba7d60b39c2b2650f1 -SIZE (libdrm-2.4.46.tar.bz2) = 554190 +SHA256 (libdrm-2.4.50.tar.bz2) = 3823d24cda800c2cd36995e01830b890edb8fb1bebf97d5ea4318b8c3933b045 +SIZE (libdrm-2.4.50.tar.bz2) = 563613 Index: graphics/libdrm/files/extra-tests__radeon__radeon_ttm.c =================================================================== --- graphics/libdrm/files/extra-tests__radeon__radeon_ttm.c (revision 0) +++ graphics/libdrm/files/extra-tests__radeon__radeon_ttm.c (working copy) @@ -0,0 +1,13 @@ +--- tests/radeon/radeon_ttm.c.orig 2013-11-07 11:34:28.207096353 +0100 ++++ tests/radeon/radeon_ttm.c 2013-11-07 11:37:41.571085931 +0100 +@@ -25,6 +25,10 @@ + */ + #include + #include ++#include ++ ++#include ++ + #include "rbo.h" + + /* allocate as many single page bo to try to starve the kernel Property changes on: graphics/libdrm/files/extra-tests__radeon__radeon_ttm.c ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: graphics/libdrm/files/extra-tests_modetest_Makefile.in =================================================================== --- graphics/libdrm/files/extra-tests_modetest_Makefile.in (revision 336156) +++ graphics/libdrm/files/extra-tests_modetest_Makefile.in (working copy) @@ -1,6 +1,6 @@ ---- tests/modetest/Makefile.in.orig 2013-04-04 15:41:48.212028807 +0200 -+++ tests/modetest/Makefile.in 2013-04-04 15:45:21.384003991 +0200 -@@ -36,8 +52,11 @@ +--- tests/modetest/Makefile.in.orig 2013-10-11 18:46:07.000000000 +0200 ++++ tests/modetest/Makefile.in 2013-11-07 11:30:15.274123603 +0100 +@@ -80,8 +80,11 @@ host_triplet = @host@ @HAVE_INSTALL_TESTS_TRUE@bin_PROGRAMS = modetest$(EXEEXT) @HAVE_INSTALL_TESTS_FALSE@noinst_PROGRAMS = modetest$(EXEEXT) @@ -12,9 +12,9 @@ +@HAVE_CAIRO_TRUE@am__append_2 = $(CAIRO_CFLAGS) +@HAVE_CAIRO_TRUE@am__append_3 = $(CAIRO_LIBS) subdir = tests/modetest - DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -@@ -53,7 +72,10 @@ + DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/build-aux/depcomp +@@ -98,7 +101,10 @@ CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) @@ -26,16 +26,16 @@ modetest_OBJECTS = $(am_modetest_OBJECTS) am__DEPENDENCIES_1 = @HAVE_CAIRO_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) -@@ -229,12 +265,10 @@ - top_builddir = @top_builddir@ +@@ -306,12 +312,12 @@ top_srcdir = @top_srcdir@ - AM_CFLAGS = -I$(top_srcdir)/include/drm -I$(top_srcdir)/libkms/ \ + AM_CFLAGS = $(filter-out -Wpointer-arith, $(WARN_CFLAGS)) \ + -I$(top_srcdir)/include/drm -I$(top_srcdir)/libkms/ \ - -I$(top_srcdir) $(am__append_1) --modetest_SOURCES = \ ++ -I$(top_srcdir) $(am__append_2) + modetest_SOURCES = \ - buffers.c modetest.c buffers.h -- -+ -I$(top_srcdir) $(am__append_2) -+modetest_SOURCES = buffers.c modetest.c buffers.h $(am__append_1) ++ buffers.c modetest.c buffers.h $(am__append_1) + modetest_LDADD = $(top_builddir)/libdrm.la \ - $(top_builddir)/libkms/libkms.la $(am__append_2) + $(top_builddir)/libkms/libkms.la $(am__append_3) @@ -42,7 +42,7 @@ all: all-am .SUFFIXES: -@@ -333,6 +370,7 @@ +@@ -417,6 +423,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/modetest.Po@am__quote@ Index: graphics/libdrm/files/extra-tests_modetest_modetest.c =================================================================== --- graphics/libdrm/files/extra-tests_modetest_modetest.c (revision 336156) +++ graphics/libdrm/files/extra-tests_modetest_modetest.c (working copy) @@ -1,6 +1,6 @@ ---- tests/modetest/modetest.c.orig 2013-02-22 00:44:28.203705216 +0100 -+++ tests/modetest/modetest.c 2013-02-22 00:44:56.803699770 +0100 -@@ -57,6 +57,10 @@ +--- tests/modetest/modetest.c.orig 2013-09-16 22:56:20.000000000 +0200 ++++ tests/modetest/modetest.c 2013-11-07 11:32:10.534114644 +0100 +@@ -59,6 +59,10 @@ #include "buffers.h" @@ -8,6 +8,6 @@ +char *strchrnul(const char *, int); +#endif + - drmModeRes *resources; - int fd, modes; - + struct crtc { + drmModeCrtc *crtc; + drmModeObjectProperties *props; Index: graphics/libdrm/pkg-plist =================================================================== --- graphics/libdrm/pkg-plist (revision 336156) +++ graphics/libdrm/pkg-plist (working copy) @@ -70,6 +70,15 @@ %%NOUVEAU%%libdata/pkgconfig/libdrm_nouveau.pc %%NEW%%%%RADEON_DRIVERS%%libdata/pkgconfig/libdrm_radeon.pc %%NEW%%%%KMS%%libdata/pkgconfig/libkms.pc +%%NEW%%%%MAN%%man/man3/drmAvailable.3.gz +%%NEW%%%%MAN%%man/man3/drmHandleEvent.3.gz +%%NEW%%%%MAN%%man/man3/drmModeGetResources.3.gz +%%NEW%%%%MAN%%man/man7/drm-gem.7.gz +%%NEW%%%%MAN%%man/man7/drm-kms.7.gz +%%NEW%%%%MAN%%man/man7/drm-memory.7.gz +%%NEW%%%%MAN%%man/man7/drm-mm.7.gz +%%NEW%%%%MAN%%man/man7/drm-ttm.7.gz +%%NEW%%%%MAN%%man/man7/drm.7.gz %%OLD%%@dirrm include/nouveau %%NEW%%%%KMS%%@dirrm include/libkms %%NEW%%@dirrm include/libdrm Index: graphics/libreatlas/Makefile =================================================================== --- graphics/libreatlas/Makefile (revision 336156) +++ graphics/libreatlas/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= libreatlas PORTVERSION= 1.0.0a -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics geography MASTER_SITES= http://www.gaia-gis.it/gaia-sins/ Index: graphics/mesa-demos/Makefile =================================================================== --- graphics/mesa-demos/Makefile (revision 336156) +++ graphics/mesa-demos/Makefile (working copy) @@ -23,7 +23,6 @@ OPTIONS_DEFINE= NVIDIA NVIDIA_DESC= Use NVIDIA's libraries -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|-ffast-math|${FAST_MATH}|' -e 's|x86_64|amd64|' \ ${WRKSRC}/configure Index: multimedia/freetuxtv/Makefile =================================================================== --- multimedia/freetuxtv/Makefile (revision 336156) +++ multimedia/freetuxtv/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= freetuxtv PORTVERSION= 0.6.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= multimedia MASTER_SITES= GOOGLE_CODE Index: net/cvsup/Makefile =================================================================== --- net/cvsup/Makefile (revision 336156) +++ net/cvsup/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= cvsup PORTVERSION= 16.1h -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net devel MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG} MASTER_SITE_SUBDIR=development/CVSup/snapshots Index: net/tigervnc/Makefile =================================================================== --- net/tigervnc/Makefile (revision 336156) +++ net/tigervnc/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= tigervnc PORTVERSION= 1.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net x11-servers MASTER_SITES= SF:tigervnc MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTVERSION}/:tigervnc Index: print/photoprint/Makefile =================================================================== --- print/photoprint/Makefile (revision 336156) +++ print/photoprint/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= photoprint DISTVERSION= 0.4.2-pre2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print graphics MASTER_SITES= http://www.blackfiveimaging.co.uk/photoprint/ Index: sysutils/gtk-imonc/Makefile =================================================================== --- sysutils/gtk-imonc/Makefile (revision 336156) +++ sysutils/gtk-imonc/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= gtk-imonc PORTVERSION= 0.6.4.1 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= sysutils MASTER_SITES= http://stefan-strigler.de/download/ Index: sysutils/nitrogen/Makefile =================================================================== --- sysutils/nitrogen/Makefile (revision 336156) +++ sysutils/nitrogen/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= nitrogen PORTVERSION= 1.5.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://projects.l3ib.org/nitrogen/files/ Index: textproc/xorg-sgml-doctools/Makefile =================================================================== --- textproc/xorg-sgml-doctools/Makefile (revision 336156) +++ textproc/xorg-sgml-doctools/Makefile (working copy) @@ -13,5 +13,4 @@ USE_GMAKE= yes USES= pathfix -NO_STAGE= yes .include Index: x11/Makefile =================================================================== --- x11/Makefile (revision 336156) +++ x11/Makefile (working copy) @@ -42,6 +42,7 @@ SUBDIR += dmxproto SUBDIR += docker SUBDIR += dri2proto + SUBDIR += dri3proto SUBDIR += dxpc SUBDIR += dynamag SUBDIR += dzen2 @@ -185,6 +186,7 @@ SUBDIR += libxkbfile SUBDIR += libxkbui SUBDIR += libxklavier + SUBDIR += libxshmfence SUBDIR += linux-f10-xorg-libs SUBDIR += listres SUBDIR += lsw @@ -232,6 +234,7 @@ SUBDIR += pixman SUBDIR += plasma-scriptengine-python SUBDIR += plasma-scriptengine-ruby + SUBDIR += presentproto SUBDIR += printproto SUBDIR += printscreen SUBDIR += props Index: x11/beforelight/Makefile =================================================================== --- x11/beforelight/Makefile (revision 336156) +++ x11/beforelight/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= x11 xscrnsaver xt xaw7 xt -MAN1= beforelight.1 - -NO_STAGE= yes .include Index: x11/beforelight/pkg-plist =================================================================== --- x11/beforelight/pkg-plist (revision 336156) +++ x11/beforelight/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/beforelight +man/man1/beforelight.1.gz share/X11/app-defaults/Beforelight @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/bitmap/Makefile =================================================================== --- x11/bitmap/Makefile (revision 336156) +++ x11/bitmap/Makefile (working copy) @@ -9,7 +9,5 @@ XORG_CAT= app USE_XORG= x11 xaw xbitmaps xmu xproto -MAN1= atobm.1 bitmap.1 bmtoa.1 -NO_STAGE= yes .include Index: x11/bitmap/pkg-plist =================================================================== --- x11/bitmap/pkg-plist (revision 336156) +++ x11/bitmap/pkg-plist (working copy) @@ -14,6 +14,9 @@ include/X11/bitmaps/Stipple include/X11/bitmaps/Term include/X11/bitmaps/Up +man/man1/atobm.1.gz +man/man1/bitmap.1.gz +man/man1/bmtoa.1.gz share/X11/app-defaults/Bitmap share/X11/app-defaults/Bitmap-color share/X11/app-defaults/Bitmap-nocase Index: x11/dri3proto/Makefile =================================================================== --- x11/dri3proto/Makefile (revision 0) +++ x11/dri3proto/Makefile (working copy) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PORTNAME= dri3proto +PORTVERSION= 1.0 +CATEGORIES= x11 + +MAINTAINER= x11@FreeBSD.org +COMMENT= DRI3 prototype headers + +XORG_CAT= proto + +.include Property changes on: x11/dri3proto/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/dri3proto/distinfo =================================================================== --- x11/dri3proto/distinfo (revision 0) +++ x11/dri3proto/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (xorg/proto/dri3proto-1.0.tar.bz2) = 01be49d70200518b9a6b297131f6cc71f4ea2de17436896af153226a774fc074 +SIZE (xorg/proto/dri3proto-1.0.tar.bz2) = 105366 Property changes on: x11/dri3proto/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/dri3proto/pkg-descr =================================================================== --- x11/dri3proto/pkg-descr (revision 0) +++ x11/dri3proto/pkg-descr (working copy) @@ -0,0 +1,3 @@ +This package contains X.Org DRI3 prototype headers. + +WWW: http://www.freedesktop.org/wiki/Software/xlibs Property changes on: x11/dri3proto/pkg-descr ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/dri3proto/pkg-plist =================================================================== --- x11/dri3proto/pkg-plist (revision 0) +++ x11/dri3proto/pkg-plist (working copy) @@ -0,0 +1,5 @@ +include/X11/extensions/dri3proto.h +libdata/pkgconfig/dri3proto.pc +share/doc/dri3proto/dri3proto.txt +@dirrm share/doc/dri3proto +@dirrmtry include/X11/extensions Property changes on: x11/dri3proto/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/editres/Makefile =================================================================== --- x11/editres/Makefile (revision 336156) +++ x11/editres/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= x11 xt xmu xaw -MAN1= editres.1 - -NO_STAGE= yes .include Index: x11/editres/pkg-plist =================================================================== --- x11/editres/pkg-plist (revision 336156) +++ x11/editres/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/editres +man/man1/editres.1.gz share/X11/app-defaults/Editres share/X11/app-defaults/Editres-color @dirrmtry share/X11/app-defaults Index: x11/fstobdf/Makefile =================================================================== --- x11/fstobdf/Makefile (revision 336156) +++ x11/fstobdf/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 libfs -PLIST_FILES= bin/fstobdf +PLIST_FILES= bin/fstobdf man/man1/fstobdf.1.gz -MAN1= fstobdf.1 - -NO_STAGE= yes .include Index: x11/glproto/Makefile =================================================================== --- x11/glproto/Makefile (revision 336156) +++ x11/glproto/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= glproto -PORTVERSION= 1.4.16 +PORTVERSION= 1.4.17 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Index: x11/glproto/distinfo =================================================================== --- x11/glproto/distinfo (revision 336156) +++ x11/glproto/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/proto/glproto-1.4.16.tar.bz2) = 54dd663a7f5ed702f2ff035b79edf770c2f850867ac0d55742f696bfc8b2598d -SIZE (xorg/proto/glproto-1.4.16.tar.bz2) = 119584 +SHA256 (xorg/proto/glproto-1.4.17.tar.bz2) = adaa94bded310a2bfcbb9deb4d751d965fcfe6fb3a2f6d242e2df2d6589dbe40 +SIZE (xorg/proto/glproto-1.4.17.tar.bz2) = 126969 Index: x11/iceauth/Makefile =================================================================== --- x11/iceauth/Makefile (revision 336156) +++ x11/iceauth/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= xproto ice -PLIST_FILES= bin/iceauth +PLIST_FILES= bin/iceauth man/man1/iceauth.1.gz -MAN1= iceauth.1 - -NO_STAGE= yes .include Index: x11/ico/Makefile =================================================================== --- x11/ico/Makefile (revision 336156) +++ x11/ico/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/ico +PLIST_FILES= bin/ico man/man1/ico.1.gz -MAN1= ico.1 - -NO_STAGE= yes .include Index: x11/libXScrnSaver/Makefile =================================================================== --- x11/libXScrnSaver/Makefile (revision 336156) +++ x11/libXScrnSaver/Makefile (working copy) @@ -10,18 +10,4 @@ XORG_CAT= lib USE_XORG= x11 xext xextproto scrnsaverproto:both -MAN3= Xss.3 \ - XScreenSaverAllocInfo.3 \ - XScreenSaverGetRegistered.3 \ - XScreenSaverQueryExtension.3 \ - XScreenSaverQueryInfo.3 \ - XScreenSaverQueryVersion.3 \ - XScreenSaverRegister.3 \ - XScreenSaverSelectInput.3 \ - XScreenSaverSetAttributes.3 \ - XScreenSaverSuspend.3 \ - XScreenSaverUnregister.3 \ - XScreenSaverUnsetAttributes.3 - -NO_STAGE= yes .include Index: x11/libXScrnSaver/pkg-plist =================================================================== --- x11/libXScrnSaver/pkg-plist (revision 336156) +++ x11/libXScrnSaver/pkg-plist (working copy) @@ -4,4 +4,16 @@ lib/libXss.la lib/libXss.a libdata/pkgconfig/xscrnsaver.pc +man/man3/Xss.3.gz +man/man3/XScreenSaverAllocInfo.3.gz +man/man3/XScreenSaverGetRegistered.3.gz +man/man3/XScreenSaverQueryExtension.3.gz +man/man3/XScreenSaverQueryInfo.3.gz +man/man3/XScreenSaverQueryVersion.3.gz +man/man3/XScreenSaverRegister.3.gz +man/man3/XScreenSaverSelectInput.3.gz +man/man3/XScreenSaverSetAttributes.3.gz +man/man3/XScreenSaverSuspend.3.gz +man/man3/XScreenSaverUnregister.3.gz +man/man3/XScreenSaverUnsetAttributes.3.gz @dirrmtry include/X11/extensions Index: x11/libXTrap/Makefile =================================================================== --- x11/libXTrap/Makefile (revision 336156) +++ x11/libXTrap/Makefile (working copy) @@ -10,4 +10,5 @@ XORG_CAT= lib USE_XORG= trapproto:both x11 xext xextproto xt USE_AUTOTOOLS= libtool + .include Index: x11/libXau/Makefile =================================================================== --- x11/libXau/Makefile (revision 336156) +++ x11/libXau/Makefile (working copy) @@ -11,12 +11,7 @@ XORG_CAT= lib USE_XORG= xproto:both -MAN3= Xau.3 XauDisposeAuth.3 XauFileName.3 XauGetAuthByAddr.3 \ - XauGetBestAuthByAddr.3 XauLockAuth.3 XauReadAuth.3 \ - XauUnlockAuth.3 XauWriteAuth.3 - -NO_STAGE= yes post-install: - ${LN} -sf ${PREFIX}/lib/libXau.so.6 ${PREFIX}/lib/libXau.so.0 + ${LN} -sf ${PREFIX}/lib/libXau.so.6 ${STAGEDIR}${PREFIX}/lib/libXau.so.0 .include Index: x11/libXau/pkg-plist =================================================================== --- x11/libXau/pkg-plist (revision 336156) +++ x11/libXau/pkg-plist (working copy) @@ -5,3 +5,12 @@ lib/libXau.so.0 lib/libXau.so.6 libdata/pkgconfig/xau.pc +man/man3/Xau.3.gz +man/man3/XauDisposeAuth.3.gz +man/man3/XauFileName.3.gz +man/man3/XauGetAuthByAddr.3.gz +man/man3/XauGetBestAuthByAddr.3.gz +man/man3/XauLockAuth.3.gz +man/man3/XauReadAuth.3.gz +man/man3/XauUnlockAuth.3.gz +man/man3/XauWriteAuth.3.gz Index: x11/libXcomposite/Makefile =================================================================== --- x11/libXcomposite/Makefile (revision 336156) +++ x11/libXcomposite/Makefile (working copy) @@ -11,18 +11,5 @@ XORG_CAT= lib USE_XORG= compositeproto:both x11 xfixes xext fixesproto xproto:both -MAN3= Xcomposite.3 \ - XCompositeQueryExtension.3 \ - XCompositeQueryVersion.3 \ - XCompositeVersion.3 \ - XCompositeRedirectWindow.3 \ - XCompositeRedirectSubwindows.3 \ - XCompositeUnredirectWindow.3 \ - XCompositeUnredirectSubwindows.3 \ - XCompositeCreateRegionFromBorderClip.3 \ - XCompositeNameWindowPixmap.3 \ - XCompositeGetOverlayWindow.3 \ - XCompositeReleaseOverlayWindow.3 -NO_STAGE= yes .include Index: x11/libXcomposite/pkg-plist =================================================================== --- x11/libXcomposite/pkg-plist (revision 336156) +++ x11/libXcomposite/pkg-plist (working copy) @@ -4,4 +4,16 @@ lib/libXcomposite.so lib/libXcomposite.so.1 libdata/pkgconfig/xcomposite.pc +man/man3/Xcomposite.3.gz +man/man3/XCompositeQueryExtension.3.gz +man/man3/XCompositeQueryVersion.3.gz +man/man3/XCompositeVersion.3.gz +man/man3/XCompositeRedirectWindow.3.gz +man/man3/XCompositeRedirectSubwindows.3.gz +man/man3/XCompositeUnredirectWindow.3.gz +man/man3/XCompositeUnredirectSubwindows.3.gz +man/man3/XCompositeCreateRegionFromBorderClip.3.gz +man/man3/XCompositeNameWindowPixmap.3.gz +man/man3/XCompositeGetOverlayWindow.3.gz +man/man3/XCompositeReleaseOverlayWindow.3.gz @dirrmtry include/X11/extensions Index: x11/libXcursor/Makefile =================================================================== --- x11/libXcursor/Makefile (revision 336156) +++ x11/libXcursor/Makefile (working copy) @@ -16,38 +16,4 @@ CONFIGURE_ARGS= --with-icondir=${PREFIX}/lib/X11/icons -MAN3= Xcursor.3 \ - XcursorImageCreate.3 \ - XcursorImageDestroy.3 \ - XcursorImagesCreate.3 \ - XcursorImagesDestroy.3 \ - XcursorCursorsCreate.3 \ - XcursorCursorsDestroy.3 \ - XcursorXcFileLoadImage.3 \ - XcursorXcFileLoadImages.3 \ - XcursorXcFileLoadAllImages.3 \ - XcursorXcFileLoad.3 \ - XcursorXcFileSave.3 \ - XcursorFilenameLoadImage.3 \ - XcursorFilenameLoadImages.3 \ - XcursorFilenameLoadAllImages.3 \ - XcursorFilenameLoad.3 \ - XcursorFilenameSaveImages.3 \ - XcursorFilenameSave.3 \ - XcursorLibraryLoadImage.3 \ - XcursorLibraryLoadImages.3 \ - XcursorFilenameLoadCursor.3 \ - XcursorLibraryLoadCursor.3 \ - XcursorLibraryLoadCursors.3 \ - XcursorShapeLoadImage.3 \ - XcursorShapeLoadImages.3 \ - XcursorShapeLoadCursor.3 \ - XcursorShapeLoadCursors.3 \ - XcursorSupportsARGB.3 \ - XcursorSetDefaultSize.3 \ - XcursorGetDefaultSize.3 \ - XcursorSetTheme.3 \ - XcursorGetTheme.3 - -NO_STAGE= yes .include Index: x11/libXcursor/pkg-plist =================================================================== --- x11/libXcursor/pkg-plist (revision 336156) +++ x11/libXcursor/pkg-plist (working copy) @@ -4,4 +4,36 @@ lib/libXcursor.so lib/libXcursor.so.1 libdata/pkgconfig/xcursor.pc +man/man3/Xcursor.3.gz +man/man3/XcursorImageCreate.3.gz +man/man3/XcursorImageDestroy.3.gz +man/man3/XcursorImagesCreate.3.gz +man/man3/XcursorImagesDestroy.3.gz +man/man3/XcursorCursorsCreate.3.gz +man/man3/XcursorCursorsDestroy.3.gz +man/man3/XcursorXcFileLoadImage.3.gz +man/man3/XcursorXcFileLoadImages.3.gz +man/man3/XcursorXcFileLoadAllImages.3.gz +man/man3/XcursorXcFileLoad.3.gz +man/man3/XcursorXcFileSave.3.gz +man/man3/XcursorFilenameLoadImage.3.gz +man/man3/XcursorFilenameLoadImages.3.gz +man/man3/XcursorFilenameLoadAllImages.3.gz +man/man3/XcursorFilenameLoad.3.gz +man/man3/XcursorFilenameSaveImages.3.gz +man/man3/XcursorFilenameSave.3.gz +man/man3/XcursorLibraryLoadImage.3.gz +man/man3/XcursorLibraryLoadImages.3.gz +man/man3/XcursorFilenameLoadCursor.3.gz +man/man3/XcursorLibraryLoadCursor.3.gz +man/man3/XcursorLibraryLoadCursors.3.gz +man/man3/XcursorShapeLoadImage.3.gz +man/man3/XcursorShapeLoadImages.3.gz +man/man3/XcursorShapeLoadCursor.3.gz +man/man3/XcursorShapeLoadCursors.3.gz +man/man3/XcursorSupportsARGB.3.gz +man/man3/XcursorSetDefaultSize.3.gz +man/man3/XcursorGetDefaultSize.3.gz +man/man3/XcursorSetTheme.3.gz +man/man3/XcursorGetTheme.3.gz @dirrm include/X11/Xcursor Index: x11/libXdamage/Makefile =================================================================== --- x11/libXdamage/Makefile (revision 336156) +++ x11/libXdamage/Makefile (working copy) @@ -10,4 +10,5 @@ XORG_CAT= lib USE_XORG= x11 damageproto:both xfixes fixesproto xextproto xproto:both + .include Index: x11/libXevie/Makefile =================================================================== --- x11/libXevie/Makefile (revision 336156) +++ x11/libXevie/Makefile (working copy) @@ -12,12 +12,4 @@ XORG_CAT= lib USE_XORG= evieproto x11 xext xextproto xproto:both -MAN3= Xevie.3 \ - XevieEnd.3 \ - XevieQueryVersion.3 \ - XevieSelectInput.3 \ - XevieSendEvent.3 \ - XevieStart.3 - -NO_STAGE= yes .include Index: x11/libXevie/pkg-plist =================================================================== --- x11/libXevie/pkg-plist (revision 336156) +++ x11/libXevie/pkg-plist (working copy) @@ -4,3 +4,9 @@ lib/libXevie.la lib/libXevie.a libdata/pkgconfig/xevie.pc +man/man3/Xevie.3.gz +man/man3/XevieEnd.3.gz +man/man3/XevieQueryVersion.3.gz +man/man3/XevieSelectInput.3.gz +man/man3/XevieSendEvent.3.gz +man/man3/XevieStart.3.gz Index: x11/libXext/Makefile =================================================================== --- x11/libXext/Makefile (revision 336156) +++ x11/libXext/Makefile (working copy) @@ -15,67 +15,4 @@ USE_XORG= xproto x11 xextproto:both xau CONFIGURE_ARGS+=--disable-specs --without-xmlto -MAN3= DBE.3 \ - DPMSCapable.3 \ - DPMSDisable.3 \ - DPMSEnable.3 \ - DPMSForceLevel.3 \ - DPMSGetTimeouts.3 \ - DPMSGetVersion.3 \ - DPMSInfo.3 \ - DPMSQueryExtension.3 \ - DPMSSetTimeouts.3 \ - XShape.3 \ - XShapeCombineMask.3 \ - XShapeCombineRectangles.3 \ - XShapeCombineRegion.3 \ - XShapeCombineShape.3 \ - XShapeGetRectangles.3 \ - XShapeInputSelected.3 \ - XShapeOffsetShape.3 \ - XShapeQueryExtension.3 \ - XShapeQueryExtents.3 \ - XShapeQueryVersion.3 \ - XShapeSelectInput.3 \ - XcupGetReservedColormapEntries.3 \ - XcupQueryVersion.3 \ - XcupStoreColors.3 \ - XdbeAllocateBackBufferName.3 \ - XdbeBeginIdiom.3 \ - XdbeDeallocateBackBufferName.3 \ - XdbeEndIdiom.3 \ - XdbeFreeVisualInfo.3 \ - XdbeGetBackBufferAttributes.3 \ - XdbeGetVisualInfo.3 \ - XdbeQueryExtension.3 \ - XdbeSwapBuffers.3 \ - Xevi.3 \ - XeviGetVisualInfo.3 \ - XeviQueryExtension.3 \ - XeviQueryVersion.3 \ - Xmbuf.3 \ - XmbufChangeBufferAttributes.3 \ - XmbufChangeWindowAttributes.3 \ - XmbufCreateBuffers.3 \ - XmbufCreateStereoWindow.3 \ - XmbufDestroyBuffers.3 \ - XmbufDisplayBuffers.3 \ - XmbufGetBufferAttributes.3 \ - XmbufGetScreenInfo.3 \ - XmbufGetVersion.3 \ - XmbufGetWindowAttributes.3 \ - XmbufQueryExtension.3 \ - XShm.3 \ - XShmAttach.3 \ - XShmCreateImage.3 \ - XShmCreatePixmap.3 \ - XShmDetach.3 \ - XShmGetEventBase.3 \ - XShmGetImage.3 \ - XShmPixmapFormat.3 \ - XShmPutImage.3 \ - XShmQueryExtension.3 \ - XShmQueryVersion.3 - -NO_STAGE= yes .include Index: x11/libXext/pkg-plist =================================================================== --- x11/libXext/pkg-plist (revision 336156) +++ x11/libXext/pkg-plist (working copy) @@ -19,4 +19,65 @@ include/X11/extensions/sync.h include/X11/extensions/xtestext1.h libdata/pkgconfig/xext.pc +man/man3/DBE.3.gz +man/man3/DPMSCapable.3.gz +man/man3/DPMSDisable.3.gz +man/man3/DPMSEnable.3.gz +man/man3/DPMSForceLevel.3.gz +man/man3/DPMSGetTimeouts.3.gz +man/man3/DPMSGetVersion.3.gz +man/man3/DPMSInfo.3.gz +man/man3/DPMSQueryExtension.3.gz +man/man3/DPMSSetTimeouts.3.gz +man/man3/XShape.3.gz +man/man3/XShapeCombineMask.3.gz +man/man3/XShapeCombineRectangles.3.gz +man/man3/XShapeCombineRegion.3.gz +man/man3/XShapeCombineShape.3.gz +man/man3/XShapeGetRectangles.3.gz +man/man3/XShapeInputSelected.3.gz +man/man3/XShapeOffsetShape.3.gz +man/man3/XShapeQueryExtension.3.gz +man/man3/XShapeQueryExtents.3.gz +man/man3/XShapeQueryVersion.3.gz +man/man3/XShapeSelectInput.3.gz +man/man3/XcupGetReservedColormapEntries.3.gz +man/man3/XcupQueryVersion.3.gz +man/man3/XcupStoreColors.3.gz +man/man3/XdbeAllocateBackBufferName.3.gz +man/man3/XdbeBeginIdiom.3.gz +man/man3/XdbeDeallocateBackBufferName.3.gz +man/man3/XdbeEndIdiom.3.gz +man/man3/XdbeFreeVisualInfo.3.gz +man/man3/XdbeGetBackBufferAttributes.3.gz +man/man3/XdbeGetVisualInfo.3.gz +man/man3/XdbeQueryExtension.3.gz +man/man3/XdbeSwapBuffers.3.gz +man/man3/Xevi.3.gz +man/man3/XeviGetVisualInfo.3.gz +man/man3/XeviQueryExtension.3.gz +man/man3/XeviQueryVersion.3.gz +man/man3/Xmbuf.3.gz +man/man3/XmbufChangeBufferAttributes.3.gz +man/man3/XmbufChangeWindowAttributes.3.gz +man/man3/XmbufCreateBuffers.3.gz +man/man3/XmbufCreateStereoWindow.3.gz +man/man3/XmbufDestroyBuffers.3.gz +man/man3/XmbufDisplayBuffers.3.gz +man/man3/XmbufGetBufferAttributes.3.gz +man/man3/XmbufGetScreenInfo.3.gz +man/man3/XmbufGetVersion.3.gz +man/man3/XmbufGetWindowAttributes.3.gz +man/man3/XmbufQueryExtension.3.gz +man/man3/XShm.3.gz +man/man3/XShmAttach.3.gz +man/man3/XShmCreateImage.3.gz +man/man3/XShmCreatePixmap.3.gz +man/man3/XShmDetach.3.gz +man/man3/XShmGetEventBase.3.gz +man/man3/XShmGetImage.3.gz +man/man3/XShmPixmapFormat.3.gz +man/man3/XShmPutImage.3.gz +man/man3/XShmQueryExtension.3.gz +man/man3/XShmQueryVersion.3.gz @dirrmtry include/X11/extensions Index: x11/libXfixes/Makefile =================================================================== --- x11/libXfixes/Makefile (revision 336156) +++ x11/libXfixes/Makefile (working copy) @@ -13,7 +13,4 @@ XORG_CAT= lib USE_XORG= x11 fixesproto:both xproto:both xextproto -MAN3= Xfixes.3 - -NO_STAGE= yes .include Index: x11/libXfixes/pkg-plist =================================================================== --- x11/libXfixes/pkg-plist (revision 336156) +++ x11/libXfixes/pkg-plist (working copy) @@ -4,3 +4,4 @@ lib/libXfixes.so lib/libXfixes.so.3 libdata/pkgconfig/xfixes.pc +man/man3/Xfixes.3.gz Index: x11/libXi/Makefile =================================================================== --- x11/libXi/Makefile (revision 336156) +++ x11/libXi/Makefile (working copy) @@ -21,79 +21,4 @@ --without-asciidoc \ --without-xsltproc -MAN3= XAllowDeviceEvents.3 \ - XChangeDeviceControl.3 \ - XChangeDeviceDontPropagateList.3 \ - XChangeDeviceKeyMapping.3 \ - XChangeDeviceProperty.3 \ - XChangeFeedbackControl.3 \ - XChangeKeyboardDevice.3\ - XChangePointerDevice.3\ - XCloseDevice.3\ - XDeleteDeviceProperty.3\ - XDeviceBell.3\ - XDeviceTimeCoord.3\ - XFreeDeviceList.3\ - XGetDeviceButtonMapping.3\ - XGetDeviceControl.3\ - XGetDeviceDontPropagateList.3\ - XGetDeviceFocus.3\ - XGetDeviceKeyMapping.3 \ - XGetDeviceModifierMapping.3\ - XGetDeviceMotionEvents.3\ - XGetDeviceProperty.3\ - XGetExtensionVersion.3\ - XGetFeedbackControl.3\ - XGetSelectedExtensionEvents.3\ - XGrabDevice.3\ - XGrabDeviceButton.3\ - XGrabDeviceKey.3\ - XIBarrierReleasePointer.3\ - XIBarrierReleasePointers.3\ - XIChangeHierarchy.3\ - XIChangeProperty.3\ - XIDefineCursor.3\ - XIDeleteProperty.3\ - XIFreeDeviceInfo.3\ - XIGetClientPointer.3\ - XIGetFocus.3\ - XIGetProperty.3\ - XIGetSelectedEvents.3\ - XIGrabButton.3 \ - XIGrabDevice.3\ - XIGrabEnter.3\ - XIGrabFocusIn.3\ - XIGrabKeycode.3\ - XIGrabTouchBegin.3 \ - XIListProperties.3\ - XIQueryDevice.3\ - XIQueryPointer.3\ - XIQueryVersion.3\ - XISelectEvents.3\ - XISetClientPointer.3\ - XISetFocus.3\ - XIUndefineCursor.3\ - XIUngrabButton.3\ - XIUngrabDevice.3 \ - XIUngrabEnter.3 \ - XIUngrabFocusIn.3 \ - XIUngrabKeycode.3 \ - XIUngrabTouchBegin.3 \ - XIWarpPointer.3 \ - XListDeviceProperties.3 \ - XListInputDevices.3 \ - XOpenDevice.3 \ - XQueryDeviceState.3 \ - XSelectExtensionEvent.3\ - XSendExtensionEvent.3\ - XSetDeviceButtonMapping.3\ - XSetDeviceFocus.3\ - XSetDeviceMode.3\ - XSetDeviceModifierMapping.3 \ - XSetDeviceValuators.3 \ - XUngrabDevice.3 \ - XUngrabDeviceButton.3 \ - XUngrabDeviceKey.3 - -NO_STAGE= yes .include Index: x11/libXi/pkg-plist =================================================================== --- x11/libXi/pkg-plist (revision 336156) +++ x11/libXi/pkg-plist (working copy) @@ -5,4 +5,77 @@ lib/libXi.so lib/libXi.so.6 libdata/pkgconfig/xi.pc +man/man3/XAllowDeviceEvents.3.gz +man/man3/XChangeDeviceControl.3.gz +man/man3/XChangeDeviceDontPropagateList.3.gz +man/man3/XChangeDeviceKeyMapping.3.gz +man/man3/XChangeDeviceProperty.3.gz +man/man3/XChangeFeedbackControl.3.gz +man/man3/XChangeKeyboardDevice.3.gz +man/man3/XChangePointerDevice.3.gz +man/man3/XCloseDevice.3.gz +man/man3/XDeleteDeviceProperty.3.gz +man/man3/XDeviceBell.3.gz +man/man3/XDeviceTimeCoord.3.gz +man/man3/XFreeDeviceList.3.gz +man/man3/XGetDeviceButtonMapping.3.gz +man/man3/XGetDeviceControl.3.gz +man/man3/XGetDeviceDontPropagateList.3.gz +man/man3/XGetDeviceFocus.3.gz +man/man3/XGetDeviceKeyMapping.3.gz +man/man3/XGetDeviceModifierMapping.3.gz +man/man3/XGetDeviceMotionEvents.3.gz +man/man3/XGetDeviceProperty.3.gz +man/man3/XGetExtensionVersion.3.gz +man/man3/XGetFeedbackControl.3.gz +man/man3/XGetSelectedExtensionEvents.3.gz +man/man3/XGrabDevice.3.gz +man/man3/XGrabDeviceButton.3.gz +man/man3/XGrabDeviceKey.3.gz +man/man3/XIBarrierReleasePointer.3.gz +man/man3/XIBarrierReleasePointers.3.gz +man/man3/XIChangeHierarchy.3.gz +man/man3/XIChangeProperty.3.gz +man/man3/XIDefineCursor.3.gz +man/man3/XIDeleteProperty.3.gz +man/man3/XIFreeDeviceInfo.3.gz +man/man3/XIGetClientPointer.3.gz +man/man3/XIGetFocus.3.gz +man/man3/XIGetProperty.3.gz +man/man3/XIGetSelectedEvents.3.gz +man/man3/XIGrabButton.3.gz +man/man3/XIGrabDevice.3.gz +man/man3/XIGrabEnter.3.gz +man/man3/XIGrabFocusIn.3.gz +man/man3/XIGrabKeycode.3.gz +man/man3/XIGrabTouchBegin.3.gz +man/man3/XIListProperties.3.gz +man/man3/XIQueryDevice.3.gz +man/man3/XIQueryPointer.3.gz +man/man3/XIQueryVersion.3.gz +man/man3/XISelectEvents.3.gz +man/man3/XISetClientPointer.3.gz +man/man3/XISetFocus.3.gz +man/man3/XIUndefineCursor.3.gz +man/man3/XIUngrabButton.3.gz +man/man3/XIUngrabDevice.3.gz +man/man3/XIUngrabEnter.3.gz +man/man3/XIUngrabFocusIn.3.gz +man/man3/XIUngrabKeycode.3.gz +man/man3/XIUngrabTouchBegin.3.gz +man/man3/XIWarpPointer.3.gz +man/man3/XListDeviceProperties.3.gz +man/man3/XListInputDevices.3.gz +man/man3/XOpenDevice.3.gz +man/man3/XQueryDeviceState.3.gz +man/man3/XSelectExtensionEvent.3.gz +man/man3/XSendExtensionEvent.3.gz +man/man3/XSetDeviceButtonMapping.3.gz +man/man3/XSetDeviceFocus.3.gz +man/man3/XSetDeviceMode.3.gz +man/man3/XSetDeviceModifierMapping.3.gz +man/man3/XSetDeviceValuators.3.gz +man/man3/XUngrabDevice.3.gz +man/man3/XUngrabDeviceButton.3.gz +man/man3/XUngrabDeviceKey.3.gz @dirrmtry include/X11/extensions Index: x11/libXinerama/Makefile =================================================================== --- x11/libXinerama/Makefile (revision 336156) +++ x11/libXinerama/Makefile (working copy) @@ -15,11 +15,4 @@ USE_XORG= x11 xext xextproto xineramaproto:both USE_AUTOTOOLS= libtool -MAN3= Xinerama.3 \ - XineramaQueryExtension.3 \ - XineramaQueryVersion.3 \ - XineramaIsActive.3 \ - XineramaQueryScreens.3 - -NO_STAGE= yes .include Index: x11/libXinerama/pkg-plist =================================================================== --- x11/libXinerama/pkg-plist (revision 336156) +++ x11/libXinerama/pkg-plist (working copy) @@ -5,4 +5,9 @@ lib/libXinerama.so lib/libXinerama.so.1 libdata/pkgconfig/xinerama.pc +man/man3/Xinerama.3.gz +man/man3/XineramaQueryExtension.3.gz +man/man3/XineramaQueryVersion.3.gz +man/man3/XineramaIsActive.3.gz +man/man3/XineramaQueryScreens.3.gz @dirrmtry include/X11/extensions Index: x11/libXp/Makefile =================================================================== --- x11/libXp/Makefile (revision 336156) +++ x11/libXp/Makefile (working copy) @@ -15,40 +15,4 @@ USE_XORG= x11 xext xextproto xau printproto:both USE_AUTOTOOLS= libtool -MAN3= XpCancelDoc.3 \ - XpCancelJob.3 \ - XpCancelPage.3 \ - XpCreateContext.3 \ - XpDestroyContext.3 \ - XpEndDoc.3 \ - XpEndJob.3 \ - XpEndPage.3 \ - XpFreePrinterList.3 \ - XpGetAttributes.3 \ - XpGetContext.3 \ - XpGetDocumentData.3 \ - XpGetImageResolution.3 \ - XpGetLocaleHinter.3 \ - XpGetOneAttribute.3 \ - XpGetPageDimensions.3 \ - XpGetPdmStartParams.3 \ - XpGetPrinterList.3 \ - XpGetScreenOfContext.3 \ - XpInputSelected.3 \ - XpPutDocumentData.3 \ - XpQueryExtension.3 \ - XpQueryScreens.3 \ - XpQueryVersion.3 \ - XpRehashPrinterList.3 \ - XpSelectInput.3 \ - XpSetAttributes.3 \ - XpSetContext.3 \ - XpSetImageResolution.3 \ - XpSetLocaleHinter.3 \ - XpStartDoc.3 \ - XpStartJob.3 \ - XpStartPage.3 \ - libXp.3 - -NO_STAGE= yes .include Index: x11/libXp/pkg-plist =================================================================== --- x11/libXp/pkg-plist (revision 336156) +++ x11/libXp/pkg-plist (working copy) @@ -3,3 +3,37 @@ lib/libXp.so lib/libXp.so.6 libdata/pkgconfig/xp.pc +man/man3/XpCancelDoc.3.gz +man/man3/XpCancelJob.3.gz +man/man3/XpCancelPage.3.gz +man/man3/XpCreateContext.3.gz +man/man3/XpDestroyContext.3.gz +man/man3/XpEndDoc.3.gz +man/man3/XpEndJob.3.gz +man/man3/XpEndPage.3.gz +man/man3/XpFreePrinterList.3.gz +man/man3/XpGetAttributes.3.gz +man/man3/XpGetContext.3.gz +man/man3/XpGetDocumentData.3.gz +man/man3/XpGetImageResolution.3.gz +man/man3/XpGetLocaleHinter.3.gz +man/man3/XpGetOneAttribute.3.gz +man/man3/XpGetPageDimensions.3.gz +man/man3/XpGetPdmStartParams.3.gz +man/man3/XpGetPrinterList.3.gz +man/man3/XpGetScreenOfContext.3.gz +man/man3/XpInputSelected.3.gz +man/man3/XpPutDocumentData.3.gz +man/man3/XpQueryExtension.3.gz +man/man3/XpQueryScreens.3.gz +man/man3/XpQueryVersion.3.gz +man/man3/XpRehashPrinterList.3.gz +man/man3/XpSelectInput.3.gz +man/man3/XpSetAttributes.3.gz +man/man3/XpSetContext.3.gz +man/man3/XpSetImageResolution.3.gz +man/man3/XpSetLocaleHinter.3.gz +man/man3/XpStartDoc.3.gz +man/man3/XpStartJob.3.gz +man/man3/XpStartPage.3.gz +man/man3/libXp.3.gz Index: x11/libXpm/Makefile =================================================================== --- x11/libXpm/Makefile (revision 336156) +++ x11/libXpm/Makefile (working copy) @@ -13,7 +13,4 @@ XORG_CAT= lib USE_XORG= xproto x11 xext xextproto xt -MAN1= cxpm.1 sxpm.1 - -NO_STAGE= yes .include Index: x11/libXpm/pkg-plist =================================================================== --- x11/libXpm/pkg-plist (revision 336156) +++ x11/libXpm/pkg-plist (working copy) @@ -6,3 +6,5 @@ lib/libXpm.so lib/libXpm.so.4 libdata/pkgconfig/xpm.pc +man/man1/cxpm.1.gz +man/man1/sxpm.1.gz Index: x11/libXrandr/Makefile =================================================================== --- x11/libXrandr/Makefile (revision 336156) +++ x11/libXrandr/Makefile (working copy) @@ -13,21 +13,4 @@ XORG_CAT= lib USE_XORG= x11 randrproto:both xext xextproto xrender renderproto xproto:both -MAN3= Xrandr.3 \ - XRRConfigCurrentConfiguration.3 \ - XRRConfigCurrentRate.3 \ - XRRConfigRates.3 \ - XRRConfigRotations.3 \ - XRRConfigSizes.3 \ - XRRConfigTimes.3 \ - XRRFreeScreenConfigInfo.3 \ - XRRGetScreenInfo.3 \ - XRRQueryExtension.3 \ - XRRQueryVersion.3 \ - XRRRootToScreen.3 \ - XRRSelectInput.3 \ - XRRSetScreenConfig.3 \ - XRRSetScreenConfigAndRate.3 - -NO_STAGE= yes .include Index: x11/libXrandr/pkg-plist =================================================================== --- x11/libXrandr/pkg-plist (revision 336156) +++ x11/libXrandr/pkg-plist (working copy) @@ -4,3 +4,18 @@ lib/libXrandr.so lib/libXrandr.so.2 libdata/pkgconfig/xrandr.pc +man/man3/Xrandr.3.gz +man/man3/XRRConfigCurrentConfiguration.3.gz +man/man3/XRRConfigCurrentRate.3.gz +man/man3/XRRConfigRates.3.gz +man/man3/XRRConfigRotations.3.gz +man/man3/XRRConfigSizes.3.gz +man/man3/XRRConfigTimes.3.gz +man/man3/XRRFreeScreenConfigInfo.3.gz +man/man3/XRRGetScreenInfo.3.gz +man/man3/XRRQueryExtension.3.gz +man/man3/XRRQueryVersion.3.gz +man/man3/XRRRootToScreen.3.gz +man/man3/XRRSelectInput.3.gz +man/man3/XRRSetScreenConfig.3.gz +man/man3/XRRSetScreenConfigAndRate.3.gz Index: x11/libXrender/Makefile =================================================================== --- x11/libXrender/Makefile (revision 336156) +++ x11/libXrender/Makefile (working copy) @@ -12,4 +12,5 @@ XORG_CAT= lib USE_XORG= x11 renderproto:both xproto:both + .include Index: x11/libXres/Makefile =================================================================== --- x11/libXres/Makefile (revision 336156) +++ x11/libXres/Makefile (working copy) @@ -13,12 +13,4 @@ XORG_CAT= lib USE_XORG= x11 xext xextproto resourceproto xproto:both -MAN3= XRes.3 \ - XResQueryClients.3 \ - XResQueryClientPixmapBytes.3 \ - XResQueryClientResources.3 \ - XResQueryExtension.3 \ - XResQueryVersion.3 - -NO_STAGE= yes .include Index: x11/libXres/pkg-plist =================================================================== --- x11/libXres/pkg-plist (revision 336156) +++ x11/libXres/pkg-plist (working copy) @@ -4,3 +4,9 @@ lib/libXRes.so lib/libXRes.so.1 libdata/pkgconfig/xres.pc +man/man3/XRes.3.gz +man/man3/XResQueryClients.3.gz +man/man3/XResQueryClientPixmapBytes.3.gz +man/man3/XResQueryClientResources.3.gz +man/man3/XResQueryExtension.3.gz +man/man3/XResQueryVersion.3.gz Index: x11/libXtst/Makefile =================================================================== --- x11/libXtst/Makefile (revision 336156) +++ x11/libXtst/Makefile (working copy) @@ -17,19 +17,6 @@ CONFIGURE_ARGS+=--disable-specs --without-xmlto -MAN3= XTestCompareCurrentCursorWithWindow.3 \ - XTestCompareCursorWithWindow.3 \ - XTestDiscard.3 \ - XTestFakeButtonEvent.3 \ - XTestFakeKeyEvent.3 \ - XTestFakeMotionEvent.3 \ - XTestFakeRelativeMotionEvent.3 \ - XTestGrabControl.3 \ - XTestQueryExtension.3 \ - XTestSetGContextOfGC.3 \ - XTestSetVisualIDOfVisual.3 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} '/^SUBDIRS/,/^$$/ \ s/specs//' ${WRKSRC}/Makefile.in Index: x11/libXtst/pkg-plist =================================================================== --- x11/libXtst/pkg-plist (revision 336156) +++ x11/libXtst/pkg-plist (working copy) @@ -5,4 +5,15 @@ lib/libXtst.so lib/libXtst.so.6 libdata/pkgconfig/xtst.pc +man/man3/XTestCompareCurrentCursorWithWindow.3.gz +man/man3/XTestCompareCursorWithWindow.3.gz +man/man3/XTestDiscard.3.gz +man/man3/XTestFakeButtonEvent.3.gz +man/man3/XTestFakeKeyEvent.3.gz +man/man3/XTestFakeMotionEvent.3.gz +man/man3/XTestFakeRelativeMotionEvent.3.gz +man/man3/XTestGrabControl.3.gz +man/man3/XTestQueryExtension.3.gz +man/man3/XTestSetGContextOfGC.3.gz +man/man3/XTestSetVisualIDOfVisual.3.gz @dirrmtry include/X11/extensions Index: x11/libXv/Makefile =================================================================== --- x11/libXv/Makefile (revision 336156) +++ x11/libXv/Makefile (working copy) @@ -14,32 +14,4 @@ XORG_CAT= lib USE_XORG= x11 xext xextproto videoproto:both xproto:both -MAN3= Xv.3 \ - XvFreeAdaptorInfo.3 \ - XvFreeEncodingInfo.3 \ - XvCreateImage.3 \ - XvGetPortAttribute.3 \ - XvGetStill.3 \ - XvGetVideo.3 \ - XvGrabPort.3 \ - XvListImageFormats.3 \ - XvPutImage.3 \ - XvPortNotify.3 \ - XvPutStill.3 \ - XvPutVideo.3 \ - XvQueryAdaptors.3 \ - XvQueryBestSize.3 \ - XvQueryEncodings.3 \ - XvQueryExtension.3 \ - XvQueryPortAttributes.3 \ - XvSelectPortNotify.3 \ - XvSelectVideoNotify.3 \ - XvSetPortAttribute.3 \ - XvShmCreateImage.3 \ - XvShmPutImage.3 \ - XvStopVideo.3 \ - XvUngrabPort.3 \ - XvVideoNotify.3 - -NO_STAGE= yes .include Index: x11/libXv/pkg-plist =================================================================== --- x11/libXv/pkg-plist (revision 336156) +++ x11/libXv/pkg-plist (working copy) @@ -4,4 +4,30 @@ lib/libXv.so lib/libXv.so.1 libdata/pkgconfig/xv.pc +man/man3/Xv.3.gz +man/man3/XvFreeAdaptorInfo.3.gz +man/man3/XvFreeEncodingInfo.3.gz +man/man3/XvCreateImage.3.gz +man/man3/XvGetPortAttribute.3.gz +man/man3/XvGetStill.3.gz +man/man3/XvGetVideo.3.gz +man/man3/XvGrabPort.3.gz +man/man3/XvListImageFormats.3.gz +man/man3/XvPutImage.3.gz +man/man3/XvPortNotify.3.gz +man/man3/XvPutStill.3.gz +man/man3/XvPutVideo.3.gz +man/man3/XvQueryAdaptors.3.gz +man/man3/XvQueryBestSize.3.gz +man/man3/XvQueryEncodings.3.gz +man/man3/XvQueryExtension.3.gz +man/man3/XvQueryPortAttributes.3.gz +man/man3/XvSelectPortNotify.3.gz +man/man3/XvSelectVideoNotify.3.gz +man/man3/XvSetPortAttribute.3.gz +man/man3/XvShmCreateImage.3.gz +man/man3/XvShmPutImage.3.gz +man/man3/XvStopVideo.3.gz +man/man3/XvUngrabPort.3.gz +man/man3/XvVideoNotify.3.gz @dirrmtry include/X11/extensions Index: x11/libXvMC/Makefile =================================================================== --- x11/libXvMC/Makefile (revision 336156) +++ x11/libXvMC/Makefile (working copy) @@ -10,4 +10,5 @@ XORG_CAT= lib USE_XORG= x11 xext xv xextproto videoproto:both xproto:both + .include Index: x11/libXxf86dga/Makefile =================================================================== --- x11/libXxf86dga/Makefile (revision 336156) +++ x11/libXxf86dga/Makefile (working copy) @@ -13,27 +13,4 @@ XORG_CAT= lib USE_XORG= xproto x11 xextproto xext xf86dgaproto:both -MAN3= XDGA.3 \ - XDGAOpenFramebuffer.3 \ - XDGAChangePixmapMode.3 \ - XDGAQueryExtension.3 \ - XDGACloseFramebuffer.3 \ - XDGAQueryModes.3 \ - XDGACopyArea.3 \ - XDGAQueryVersion.3 \ - XDGACopyTransparentArea.3 \ - XDGASelectInput.3 \ - XDGACreateColormap.3 \ - XDGASetClientVersion.3 \ - XDGAFillRectangle.3 \ - XDGASetMode.3 \ - XDGAGetViewportStatus.3 \ - XDGASetViewport.3 \ - XDGAInstallColormap.3 \ - XDGASync.3 \ - XDGAKeyEventToXKeyEvent.3 \ - XF86DGA.3 \ - XFree86-DGA.3 - -NO_STAGE= yes .include Index: x11/libXxf86dga/pkg-plist =================================================================== --- x11/libXxf86dga/pkg-plist (revision 336156) +++ x11/libXxf86dga/pkg-plist (working copy) @@ -5,4 +5,25 @@ lib/libXxf86dga.so lib/libXxf86dga.so.1 libdata/pkgconfig/xxf86dga.pc +man/man3/XDGA.3.gz +man/man3/XDGAOpenFramebuffer.3.gz +man/man3/XDGAChangePixmapMode.3.gz +man/man3/XDGAQueryExtension.3.gz +man/man3/XDGACloseFramebuffer.3.gz +man/man3/XDGAQueryModes.3.gz +man/man3/XDGACopyArea.3.gz +man/man3/XDGAQueryVersion.3.gz +man/man3/XDGACopyTransparentArea.3.gz +man/man3/XDGASelectInput.3.gz +man/man3/XDGACreateColormap.3.gz +man/man3/XDGASetClientVersion.3.gz +man/man3/XDGAFillRectangle.3.gz +man/man3/XDGASetMode.3.gz +man/man3/XDGAGetViewportStatus.3.gz +man/man3/XDGASetViewport.3.gz +man/man3/XDGAInstallColormap.3.gz +man/man3/XDGASync.3.gz +man/man3/XDGAKeyEventToXKeyEvent.3.gz +man/man3/XF86DGA.3.gz +man/man3/XFree86-DGA.3.gz @dirrmtry include/X11/extensions Index: x11/libXxf86misc/Makefile =================================================================== --- x11/libXxf86misc/Makefile (revision 336156) +++ x11/libXxf86misc/Makefile (working copy) @@ -13,15 +13,4 @@ XORG_CAT= lib USE_XORG= xproto x11 xextproto xext xf86miscproto:both -MAN3= XF86Misc.3 \ - XF86MiscGetKbdSettings.3 \ - XF86MiscGetMouseSettings.3 \ - XF86MiscGetSaver.3 \ - XF86MiscQueryExtension.3 \ - XF86MiscQueryVersion.3 \ - XF86MiscSetKbdSettings.3 \ - XF86MiscSetMouseSettings.3 \ - XF86MiscSetSaver.3 - -NO_STAGE= yes .include Index: x11/libXxf86misc/pkg-plist =================================================================== --- x11/libXxf86misc/pkg-plist (revision 336156) +++ x11/libXxf86misc/pkg-plist (working copy) @@ -3,4 +3,13 @@ lib/libXxf86misc.so lib/libXxf86misc.so.1 libdata/pkgconfig/xxf86misc.pc +man/man3/XF86Misc.3.gz +man/man3/XF86MiscGetKbdSettings.3.gz +man/man3/XF86MiscGetMouseSettings.3.gz +man/man3/XF86MiscGetSaver.3.gz +man/man3/XF86MiscQueryExtension.3.gz +man/man3/XF86MiscQueryVersion.3.gz +man/man3/XF86MiscSetKbdSettings.3.gz +man/man3/XF86MiscSetMouseSettings.3.gz +man/man3/XF86MiscSetSaver.3.gz @dirrmtry include/X11/extensions Index: x11/libXxf86vm/Makefile =================================================================== --- x11/libXxf86vm/Makefile (revision 336156) +++ x11/libXxf86vm/Makefile (working copy) @@ -13,28 +13,4 @@ XORG_CAT= lib USE_XORG= xproto x11 xextproto xext xf86vidmodeproto:both -MAN3= XF86VM.3 \ - XF86VidModeLockModeSwitch.3 \ - XF86VidModeDeleteModeLine.3 \ - XF86VidModeModModeLine.3 \ - XF86VidModeGetAllModeLines.3 \ - XF86VidModeQueryExtension.3 \ - XF86VidModeGetDotClocks.3 \ - XF86VidModeQueryVersion.3 \ - XF86VidModeGetGamma.3 \ - XF86VidModeSetClientVersion.3 \ - XF86VidModeGetGammaRamp.3 \ - XF86VidModeSetGamma.3 \ - XF86VidModeGetGammaRampSize.3 \ - XF86VidModeSetGammaRamp.3 \ - XF86VidModeGetModeLine.3 \ - XF86VidModeSetViewPort.3 \ - XF86VidModeGetMonitor.3 \ - XF86VidModeSwitchMode.3 \ - XF86VidModeGetPermissions.3 \ - XF86VidModeSwitchToMode.3 \ - XF86VidModeGetViewPort.3 \ - XF86VidModeValidateModeLine.3 - -NO_STAGE= yes .include Index: x11/libXxf86vm/pkg-plist =================================================================== --- x11/libXxf86vm/pkg-plist (revision 336156) +++ x11/libXxf86vm/pkg-plist (working copy) @@ -4,4 +4,26 @@ lib/libXxf86vm.so lib/libXxf86vm.so.1 libdata/pkgconfig/xxf86vm.pc +man/man3/XF86VM.3.gz +man/man3/XF86VidModeLockModeSwitch.3.gz +man/man3/XF86VidModeDeleteModeLine.3.gz +man/man3/XF86VidModeModModeLine.3.gz +man/man3/XF86VidModeGetAllModeLines.3.gz +man/man3/XF86VidModeQueryExtension.3.gz +man/man3/XF86VidModeGetDotClocks.3.gz +man/man3/XF86VidModeQueryVersion.3.gz +man/man3/XF86VidModeGetGamma.3.gz +man/man3/XF86VidModeSetClientVersion.3.gz +man/man3/XF86VidModeGetGammaRamp.3.gz +man/man3/XF86VidModeSetGamma.3.gz +man/man3/XF86VidModeGetGammaRampSize.3.gz +man/man3/XF86VidModeSetGammaRamp.3.gz +man/man3/XF86VidModeGetModeLine.3.gz +man/man3/XF86VidModeSetViewPort.3.gz +man/man3/XF86VidModeGetMonitor.3.gz +man/man3/XF86VidModeSwitchMode.3.gz +man/man3/XF86VidModeGetPermissions.3.gz +man/man3/XF86VidModeSwitchToMode.3.gz +man/man3/XF86VidModeGetViewPort.3.gz +man/man3/XF86VidModeValidateModeLine.3.gz @dirrmtry include/X11/extensions Index: x11/libdmx/Makefile =================================================================== --- x11/libdmx/Makefile (revision 336156) +++ x11/libdmx/Makefile (working copy) @@ -11,23 +11,4 @@ XORG_CAT= lib USE_XORG= x11 xext xextproto dmxproto:both -MAN3= DMX.3 \ - DMXAddInput.3 \ - DMXAddScreen.3 \ - DMXChangeDesktopAttributes.3 \ - DMXChangeScreensAttributes.3 \ - DMXForceWindowCreation.3 \ - DMXGetDesktopAttributes.3 \ - DMXGetInputAttributes.3 \ - DMXGetInputCount.3 \ - DMXGetScreenAttributes.3 \ - DMXGetScreenCount.3 \ - DMXGetWindowAttributes.3 \ - DMXQueryExtension.3 \ - DMXQueryVersion.3 \ - DMXRemoveInput.3 \ - DMXRemoveScreen.3 \ - DMXSync.3 - -NO_STAGE= yes .include Index: x11/libdmx/pkg-plist =================================================================== --- x11/libdmx/pkg-plist (revision 336156) +++ x11/libdmx/pkg-plist (working copy) @@ -4,4 +4,21 @@ lib/libdmx.so lib/libdmx.so.1 libdata/pkgconfig/dmx.pc +man/man3/DMX.3.gz +man/man3/DMXAddInput.3.gz +man/man3/DMXAddScreen.3.gz +man/man3/DMXChangeDesktopAttributes.3.gz +man/man3/DMXChangeScreensAttributes.3.gz +man/man3/DMXForceWindowCreation.3.gz +man/man3/DMXGetDesktopAttributes.3.gz +man/man3/DMXGetInputAttributes.3.gz +man/man3/DMXGetInputCount.3.gz +man/man3/DMXGetScreenAttributes.3.gz +man/man3/DMXGetScreenCount.3.gz +man/man3/DMXGetWindowAttributes.3.gz +man/man3/DMXQueryExtension.3.gz +man/man3/DMXQueryVersion.3.gz +man/man3/DMXRemoveInput.3.gz +man/man3/DMXRemoveScreen.3.gz +man/man3/DMXSync.3.gz @dirrmtry include/X11/extensions Index: x11/libxcb/Makefile =================================================================== --- x11/libxcb/Makefile (revision 336156) +++ x11/libxcb/Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libxcb -PORTVERSION= 1.9.1 -PORTREVISION= 1 +PORTVERSION= 1.9.3 CATEGORIES= x11 python MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -14,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck \ - xcb-proto>=1.7:${PORTSDIR}/x11/xcb-proto \ + xcb-proto>=1.9:${PORTSDIR}/x11/xcb-proto \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs @@ -46,9 +45,6 @@ .include post-install: -.if ${PORT_OPTIONS:MDOCS} - ${SETENV} DESTDIR=${STAGEDIR} ${MAKE} -C ${WRKSRC}/doc ${INSTALL_TARGET} -.endif @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxcb*.so.* .include Index: x11/libxcb/distinfo =================================================================== --- x11/libxcb/distinfo (revision 336156) +++ x11/libxcb/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (libxcb-1.9.1.tar.bz2) = d44a5ff4eb0b9569e6f7183b51fdaf6f58da90e7d6bfc36b612d7263f83e362f -SIZE (libxcb-1.9.1.tar.bz2) = 373312 +SHA256 (libxcb-1.9.3.tar.bz2) = aad09d223fcb5bd345ce4d1737f178a557b6f2e201128e1ee3c83af46028018b +SIZE (libxcb-1.9.3.tar.bz2) = 400283 Index: x11/libxcb/files/patch-Makefile.in =================================================================== --- x11/libxcb/files/patch-Makefile.in (revision 336156) +++ x11/libxcb/files/patch-Makefile.in (working copy) @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun Jun 17 17:33:00 2007 -+++ Makefile.in Sun Jun 17 17:34:18 2007 -@@ -220,7 +220,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - xcbincludedir = @xcbincludedir@ --SUBDIRS = src tests doc -+SUBDIRS = src tests - pkgconfigdir = $(prefix)/libdata/pkgconfig - pkgconfig_DATA = \ - xcb.pc \ Index: x11/libxcb/files/patch-src__c_client.py =================================================================== --- x11/libxcb/files/patch-src__c_client.py (revision 0) +++ x11/libxcb/files/patch-src__c_client.py (working copy) @@ -0,0 +1,34 @@ +--- src/c_client.py.orig 2013-11-11 14:30:55.471622828 +0100 ++++ src/c_client.py 2013-11-11 14:32:05.334624142 +0100 +@@ -1133,11 +1133,11 @@ + _c(' %s *xcb_out = *_buffer;', self.c_type) + _c(' unsigned int xcb_out_pad = -sizeof(%s) & 3;', self.c_type) + _c(' unsigned int xcb_buffer_len = sizeof(%s) + xcb_out_pad;', self.c_type) +- _c(' unsigned int xcb_align_to;') ++ _c(' unsigned int xcb_align_to = 0;') + else: + _c(' char *xcb_out = *_buffer;') + _c(' unsigned int xcb_buffer_len = 0;') +- _c(' unsigned int xcb_align_to;') ++ _c(' unsigned int xcb_align_to = 0;') + prefix = [('_aux', '->', self)] + aux_ptr = 'xcb_out' + +@@ -1160,7 +1160,7 @@ + _c(' unsigned int xcb_buffer_len = 0;') + _c(' unsigned int xcb_block_len = 0;') + _c(' unsigned int xcb_pad = 0;') +- _c(' unsigned int xcb_align_to;') ++ _c(' unsigned int xcb_align_to = 0;') + + elif 'sizeof' == context: + param_names = [p[2] for p in params] +@@ -1205,7 +1205,7 @@ + _c(' unsigned int xcb_buffer_len = 0;') + _c(' unsigned int xcb_block_len = 0;') + _c(' unsigned int xcb_pad = 0;') +- _c(' unsigned int xcb_align_to;') ++ _c(' unsigned int xcb_align_to = 0;') + + _c('') + for t in temp_vars: Property changes on: x11/libxcb/files/patch-src__c_client.py ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/libxcb/pkg-plist =================================================================== --- x11/libxcb/pkg-plist (revision 336156) +++ x11/libxcb/pkg-plist (working copy) @@ -3,7 +3,9 @@ include/xcb/damage.h include/xcb/dpms.h include/xcb/dri2.h +include/xcb/dri3.h include/xcb/glx.h +include/xcb/present.h include/xcb/randr.h include/xcb/record.h include/xcb/render.h @@ -43,10 +45,18 @@ lib/libxcb-dri2.la lib/libxcb-dri2.so lib/libxcb-dri2.so.0 +lib/libxcb-dri3.a +lib/libxcb-dri3.la +lib/libxcb-dri3.so +lib/libxcb-dri3.so.0 lib/libxcb-glx.a lib/libxcb-glx.la lib/libxcb-glx.so lib/libxcb-glx.so.0 +lib/libxcb-present.a +lib/libxcb-present.la +lib/libxcb-present.so +lib/libxcb-present.so.0 lib/libxcb-randr.a lib/libxcb-randr.la lib/libxcb-randr.so @@ -127,7 +137,9 @@ libdata/pkgconfig/xcb-damage.pc libdata/pkgconfig/xcb-dpms.pc libdata/pkgconfig/xcb-dri2.pc +libdata/pkgconfig/xcb-dri3.pc libdata/pkgconfig/xcb-glx.pc +libdata/pkgconfig/xcb-present.pc libdata/pkgconfig/xcb-randr.pc libdata/pkgconfig/xcb-record.pc libdata/pkgconfig/xcb-render.pc @@ -349,6 +361,22 @@ man/man3/xcb_dri2_wait_sbc.3.gz man/man3/xcb_dri2_wait_sbc_reply.3.gz man/man3/xcb_dri2_wait_sbc_unchecked.3.gz +man/man3/xcb_dri3_buffer_from_pixmap.3.gz +man/man3/xcb_dri3_buffer_from_pixmap_reply.3.gz +man/man3/xcb_dri3_buffer_from_pixmap_unchecked.3.gz +man/man3/xcb_dri3_fd_from_fence.3.gz +man/man3/xcb_dri3_fd_from_fence_reply.3.gz +man/man3/xcb_dri3_fd_from_fence_unchecked.3.gz +man/man3/xcb_dri3_fence_from_fd.3.gz +man/man3/xcb_dri3_fence_from_fd_checked.3.gz +man/man3/xcb_dri3_open.3.gz +man/man3/xcb_dri3_open_reply.3.gz +man/man3/xcb_dri3_open_unchecked.3.gz +man/man3/xcb_dri3_pixmap_from_buffer.3.gz +man/man3/xcb_dri3_pixmap_from_buffer_checked.3.gz +man/man3/xcb_dri3_query_version.3.gz +man/man3/xcb_dri3_query_version_reply.3.gz +man/man3/xcb_dri3_query_version_unchecked.3.gz man/man3/xcb_enter_notify_event_t.3.gz man/man3/xcb_expose_event_t.3.gz man/man3/xcb_fill_poly.3.gz @@ -367,6 +395,7 @@ man/man3/xcb_free_gc_checked.3.gz man/man3/xcb_free_pixmap.3.gz man/man3/xcb_free_pixmap_checked.3.gz +man/man3/xcb_ge_event_t.3.gz man/man3/xcb_get_atom_name.3.gz man/man3/xcb_get_atom_name_name.3.gz man/man3/xcb_get_atom_name_name_end.3.gz @@ -441,6 +470,7 @@ man/man3/xcb_glx_are_textures_resident_data_length.3.gz man/man3/xcb_glx_are_textures_resident_reply.3.gz man/man3/xcb_glx_are_textures_resident_unchecked.3.gz +man/man3/xcb_glx_buffer_swap_complete_event_t.3.gz man/man3/xcb_glx_change_drawable_attributes.3.gz man/man3/xcb_glx_change_drawable_attributes_checked.3.gz man/man3/xcb_glx_client_info.3.gz @@ -887,11 +917,22 @@ man/man3/xcb_image_text_8_checked.3.gz man/man3/xcb_input_allow_device_events.3.gz man/man3/xcb_input_allow_device_events_checked.3.gz +man/man3/xcb_input_barrier_hit_event_t.3.gz +man/man3/xcb_input_barrier_leave_event_t.3.gz +man/man3/xcb_input_button_press_event_t.3.gz +man/man3/xcb_input_button_release_event_t.3.gz +man/man3/xcb_input_change_device_control.3.gz +man/man3/xcb_input_change_device_control_reply.3.gz +man/man3/xcb_input_change_device_control_unchecked.3.gz man/man3/xcb_input_change_device_dont_propagate_list.3.gz man/man3/xcb_input_change_device_dont_propagate_list_checked.3.gz man/man3/xcb_input_change_device_key_mapping.3.gz man/man3/xcb_input_change_device_key_mapping_checked.3.gz man/man3/xcb_input_change_device_notify_event_t.3.gz +man/man3/xcb_input_change_device_property.3.gz +man/man3/xcb_input_change_device_property_checked.3.gz +man/man3/xcb_input_change_feedback_control.3.gz +man/man3/xcb_input_change_feedback_control_checked.3.gz man/man3/xcb_input_change_keyboard_device.3.gz man/man3/xcb_input_change_keyboard_device_reply.3.gz man/man3/xcb_input_change_keyboard_device_unchecked.3.gz @@ -900,11 +941,16 @@ man/man3/xcb_input_change_pointer_device_unchecked.3.gz man/man3/xcb_input_close_device.3.gz man/man3/xcb_input_close_device_checked.3.gz +man/man3/xcb_input_delete_device_property.3.gz +man/man3/xcb_input_delete_device_property_checked.3.gz man/man3/xcb_input_device_bell.3.gz man/man3/xcb_input_device_bell_checked.3.gz man/man3/xcb_input_device_button_press_event_t.3.gz man/man3/xcb_input_device_button_release_event_t.3.gz man/man3/xcb_input_device_button_state_notify_event_t.3.gz +man/man3/xcb_input_device_changed_event_t.3.gz +man/man3/xcb_input_device_focus_in_event_t.3.gz +man/man3/xcb_input_device_focus_out_event_t.3.gz man/man3/xcb_input_device_key_press_event_t.3.gz man/man3/xcb_input_device_key_release_event_t.3.gz man/man3/xcb_input_device_key_state_notify_event_t.3.gz @@ -911,8 +957,10 @@ man/man3/xcb_input_device_mapping_notify_event_t.3.gz man/man3/xcb_input_device_motion_notify_event_t.3.gz man/man3/xcb_input_device_presence_notify_event_t.3.gz +man/man3/xcb_input_device_property_notify_event_t.3.gz man/man3/xcb_input_device_state_notify_event_t.3.gz man/man3/xcb_input_device_valuator_event_t.3.gz +man/man3/xcb_input_enter_event_t.3.gz man/man3/xcb_input_focus_in_event_t.3.gz man/man3/xcb_input_focus_out_event_t.3.gz man/man3/xcb_input_get_device_button_mapping.3.gz @@ -922,6 +970,7 @@ man/man3/xcb_input_get_device_button_mapping_reply.3.gz man/man3/xcb_input_get_device_button_mapping_unchecked.3.gz man/man3/xcb_input_get_device_control.3.gz +man/man3/xcb_input_get_device_control_control.3.gz man/man3/xcb_input_get_device_control_reply.3.gz man/man3/xcb_input_get_device_control_unchecked.3.gz man/man3/xcb_input_get_device_dont_propagate_list.3.gz @@ -948,10 +997,16 @@ man/man3/xcb_input_get_device_motion_events.3.gz man/man3/xcb_input_get_device_motion_events_reply.3.gz man/man3/xcb_input_get_device_motion_events_unchecked.3.gz +man/man3/xcb_input_get_device_property.3.gz +man/man3/xcb_input_get_device_property_items.3.gz +man/man3/xcb_input_get_device_property_reply.3.gz +man/man3/xcb_input_get_device_property_unchecked.3.gz man/man3/xcb_input_get_extension_version.3.gz man/man3/xcb_input_get_extension_version_reply.3.gz man/man3/xcb_input_get_extension_version_unchecked.3.gz man/man3/xcb_input_get_feedback_control.3.gz +man/man3/xcb_input_get_feedback_control_feedbacks_iterator.3.gz +man/man3/xcb_input_get_feedback_control_feedbacks_length.3.gz man/man3/xcb_input_get_feedback_control_reply.3.gz man/man3/xcb_input_get_feedback_control_unchecked.3.gz man/man3/xcb_input_get_selected_extension_events.3.gz @@ -970,6 +1025,16 @@ man/man3/xcb_input_grab_device_key_checked.3.gz man/man3/xcb_input_grab_device_reply.3.gz man/man3/xcb_input_grab_device_unchecked.3.gz +man/man3/xcb_input_hierarchy_event_t.3.gz +man/man3/xcb_input_key_press_event_t.3.gz +man/man3/xcb_input_key_release_event_t.3.gz +man/man3/xcb_input_leave_event_t.3.gz +man/man3/xcb_input_list_device_properties.3.gz +man/man3/xcb_input_list_device_properties_atoms.3.gz +man/man3/xcb_input_list_device_properties_atoms_end.3.gz +man/man3/xcb_input_list_device_properties_atoms_length.3.gz +man/man3/xcb_input_list_device_properties_reply.3.gz +man/man3/xcb_input_list_device_properties_unchecked.3.gz man/man3/xcb_input_list_input_devices.3.gz man/man3/xcb_input_list_input_devices_devices.3.gz man/man3/xcb_input_list_input_devices_devices_iterator.3.gz @@ -976,6 +1041,7 @@ man/man3/xcb_input_list_input_devices_devices_length.3.gz man/man3/xcb_input_list_input_devices_reply.3.gz man/man3/xcb_input_list_input_devices_unchecked.3.gz +man/man3/xcb_input_motion_event_t.3.gz man/man3/xcb_input_open_device.3.gz man/man3/xcb_input_open_device_class_info.3.gz man/man3/xcb_input_open_device_class_info_iterator.3.gz @@ -982,11 +1048,22 @@ man/man3/xcb_input_open_device_class_info_length.3.gz man/man3/xcb_input_open_device_reply.3.gz man/man3/xcb_input_open_device_unchecked.3.gz +man/man3/xcb_input_property_event_t.3.gz man/man3/xcb_input_proximity_in_event_t.3.gz man/man3/xcb_input_proximity_out_event_t.3.gz man/man3/xcb_input_query_device_state.3.gz +man/man3/xcb_input_query_device_state_classes_iterator.3.gz +man/man3/xcb_input_query_device_state_classes_length.3.gz man/man3/xcb_input_query_device_state_reply.3.gz man/man3/xcb_input_query_device_state_unchecked.3.gz +man/man3/xcb_input_raw_button_press_event_t.3.gz +man/man3/xcb_input_raw_button_release_event_t.3.gz +man/man3/xcb_input_raw_key_press_event_t.3.gz +man/man3/xcb_input_raw_key_release_event_t.3.gz +man/man3/xcb_input_raw_motion_event_t.3.gz +man/man3/xcb_input_raw_touch_begin_event_t.3.gz +man/man3/xcb_input_raw_touch_end_event_t.3.gz +man/man3/xcb_input_raw_touch_update_event_t.3.gz man/man3/xcb_input_select_extension_event.3.gz man/man3/xcb_input_select_extension_event_checked.3.gz man/man3/xcb_input_send_extension_event.3.gz @@ -1005,6 +1082,10 @@ man/man3/xcb_input_set_device_valuators.3.gz man/man3/xcb_input_set_device_valuators_reply.3.gz man/man3/xcb_input_set_device_valuators_unchecked.3.gz +man/man3/xcb_input_touch_begin_event_t.3.gz +man/man3/xcb_input_touch_end_event_t.3.gz +man/man3/xcb_input_touch_ownership_event_t.3.gz +man/man3/xcb_input_touch_update_event_t.3.gz man/man3/xcb_input_ungrab_device.3.gz man/man3/xcb_input_ungrab_device_button.3.gz man/man3/xcb_input_ungrab_device_button_checked.3.gz @@ -1011,6 +1092,74 @@ man/man3/xcb_input_ungrab_device_checked.3.gz man/man3/xcb_input_ungrab_device_key.3.gz man/man3/xcb_input_ungrab_device_key_checked.3.gz +man/man3/xcb_input_xi_allow_events.3.gz +man/man3/xcb_input_xi_allow_events_checked.3.gz +man/man3/xcb_input_xi_barrier_release_pointer.3.gz +man/man3/xcb_input_xi_barrier_release_pointer_checked.3.gz +man/man3/xcb_input_xi_change_cursor.3.gz +man/man3/xcb_input_xi_change_cursor_checked.3.gz +man/man3/xcb_input_xi_change_hierarchy.3.gz +man/man3/xcb_input_xi_change_hierarchy_checked.3.gz +man/man3/xcb_input_xi_change_property.3.gz +man/man3/xcb_input_xi_change_property_checked.3.gz +man/man3/xcb_input_xi_delete_property.3.gz +man/man3/xcb_input_xi_delete_property_checked.3.gz +man/man3/xcb_input_xi_get_client_pointer.3.gz +man/man3/xcb_input_xi_get_client_pointer_reply.3.gz +man/man3/xcb_input_xi_get_client_pointer_unchecked.3.gz +man/man3/xcb_input_xi_get_focus.3.gz +man/man3/xcb_input_xi_get_focus_reply.3.gz +man/man3/xcb_input_xi_get_focus_unchecked.3.gz +man/man3/xcb_input_xi_get_property.3.gz +man/man3/xcb_input_xi_get_property_items.3.gz +man/man3/xcb_input_xi_get_property_reply.3.gz +man/man3/xcb_input_xi_get_property_unchecked.3.gz +man/man3/xcb_input_xi_get_selected_events.3.gz +man/man3/xcb_input_xi_get_selected_events_masks_iterator.3.gz +man/man3/xcb_input_xi_get_selected_events_masks_length.3.gz +man/man3/xcb_input_xi_get_selected_events_reply.3.gz +man/man3/xcb_input_xi_get_selected_events_unchecked.3.gz +man/man3/xcb_input_xi_grab_device.3.gz +man/man3/xcb_input_xi_grab_device_reply.3.gz +man/man3/xcb_input_xi_grab_device_unchecked.3.gz +man/man3/xcb_input_xi_list_properties.3.gz +man/man3/xcb_input_xi_list_properties_properties.3.gz +man/man3/xcb_input_xi_list_properties_properties_end.3.gz +man/man3/xcb_input_xi_list_properties_properties_length.3.gz +man/man3/xcb_input_xi_list_properties_reply.3.gz +man/man3/xcb_input_xi_list_properties_unchecked.3.gz +man/man3/xcb_input_xi_passive_grab_device.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers_iterator.3.gz +man/man3/xcb_input_xi_passive_grab_device_modifiers_length.3.gz +man/man3/xcb_input_xi_passive_grab_device_reply.3.gz +man/man3/xcb_input_xi_passive_grab_device_unchecked.3.gz +man/man3/xcb_input_xi_passive_ungrab_device.3.gz +man/man3/xcb_input_xi_passive_ungrab_device_checked.3.gz +man/man3/xcb_input_xi_query_device.3.gz +man/man3/xcb_input_xi_query_device_infos_iterator.3.gz +man/man3/xcb_input_xi_query_device_infos_length.3.gz +man/man3/xcb_input_xi_query_device_reply.3.gz +man/man3/xcb_input_xi_query_device_unchecked.3.gz +man/man3/xcb_input_xi_query_pointer.3.gz +man/man3/xcb_input_xi_query_pointer_buttons.3.gz +man/man3/xcb_input_xi_query_pointer_buttons_end.3.gz +man/man3/xcb_input_xi_query_pointer_buttons_length.3.gz +man/man3/xcb_input_xi_query_pointer_reply.3.gz +man/man3/xcb_input_xi_query_pointer_unchecked.3.gz +man/man3/xcb_input_xi_query_version.3.gz +man/man3/xcb_input_xi_query_version_reply.3.gz +man/man3/xcb_input_xi_query_version_unchecked.3.gz +man/man3/xcb_input_xi_select_events.3.gz +man/man3/xcb_input_xi_select_events_checked.3.gz +man/man3/xcb_input_xi_set_client_pointer.3.gz +man/man3/xcb_input_xi_set_client_pointer_checked.3.gz +man/man3/xcb_input_xi_set_focus.3.gz +man/man3/xcb_input_xi_set_focus_checked.3.gz +man/man3/xcb_input_xi_ungrab_device.3.gz +man/man3/xcb_input_xi_ungrab_device_checked.3.gz +man/man3/xcb_input_xi_warp_pointer.3.gz +man/man3/xcb_input_xi_warp_pointer_checked.3.gz man/man3/xcb_install_colormap.3.gz man/man3/xcb_install_colormap_checked.3.gz man/man3/xcb_intern_atom.3.gz @@ -1092,6 +1241,23 @@ man/man3/xcb_poly_text_16_checked.3.gz man/man3/xcb_poly_text_8.3.gz man/man3/xcb_poly_text_8_checked.3.gz +man/man3/xcb_present_complete_notify_event_t.3.gz +man/man3/xcb_present_configure_notify_event_t.3.gz +man/man3/xcb_present_generic_event_t.3.gz +man/man3/xcb_present_idle_notify_event_t.3.gz +man/man3/xcb_present_notify_msc.3.gz +man/man3/xcb_present_notify_msc_checked.3.gz +man/man3/xcb_present_pixmap.3.gz +man/man3/xcb_present_pixmap_checked.3.gz +man/man3/xcb_present_query_capabilities.3.gz +man/man3/xcb_present_query_capabilities_reply.3.gz +man/man3/xcb_present_query_capabilities_unchecked.3.gz +man/man3/xcb_present_query_version.3.gz +man/man3/xcb_present_query_version_reply.3.gz +man/man3/xcb_present_query_version_unchecked.3.gz +man/man3/xcb_present_redirect_notify_event_t.3.gz +man/man3/xcb_present_select_input.3.gz +man/man3/xcb_present_select_input_checked.3.gz man/man3/xcb_property_notify_event_t.3.gz man/man3/xcb_put_image.3.gz man/man3/xcb_put_image_checked.3.gz @@ -1135,8 +1301,12 @@ man/man3/xcb_randr_add_output_mode_checked.3.gz man/man3/xcb_randr_change_output_property.3.gz man/man3/xcb_randr_change_output_property_checked.3.gz +man/man3/xcb_randr_change_provider_property.3.gz +man/man3/xcb_randr_change_provider_property_checked.3.gz man/man3/xcb_randr_configure_output_property.3.gz man/man3/xcb_randr_configure_output_property_checked.3.gz +man/man3/xcb_randr_configure_provider_property.3.gz +man/man3/xcb_randr_configure_provider_property_checked.3.gz man/man3/xcb_randr_create_mode.3.gz man/man3/xcb_randr_create_mode_reply.3.gz man/man3/xcb_randr_create_mode_unchecked.3.gz @@ -1144,6 +1314,8 @@ man/man3/xcb_randr_delete_output_mode_checked.3.gz man/man3/xcb_randr_delete_output_property.3.gz man/man3/xcb_randr_delete_output_property_checked.3.gz +man/man3/xcb_randr_delete_provider_property.3.gz +man/man3/xcb_randr_delete_provider_property_checked.3.gz man/man3/xcb_randr_destroy_mode.3.gz man/man3/xcb_randr_destroy_mode_checked.3.gz man/man3/xcb_randr_get_crtc_gamma.3.gz @@ -1212,6 +1384,36 @@ man/man3/xcb_randr_get_panning.3.gz man/man3/xcb_randr_get_panning_reply.3.gz man/man3/xcb_randr_get_panning_unchecked.3.gz +man/man3/xcb_randr_get_provider_info.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability_end.3.gz +man/man3/xcb_randr_get_provider_info_associated_capability_length.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers_end.3.gz +man/man3/xcb_randr_get_provider_info_associated_providers_length.3.gz +man/man3/xcb_randr_get_provider_info_crtcs.3.gz +man/man3/xcb_randr_get_provider_info_crtcs_end.3.gz +man/man3/xcb_randr_get_provider_info_crtcs_length.3.gz +man/man3/xcb_randr_get_provider_info_name.3.gz +man/man3/xcb_randr_get_provider_info_name_end.3.gz +man/man3/xcb_randr_get_provider_info_name_length.3.gz +man/man3/xcb_randr_get_provider_info_outputs.3.gz +man/man3/xcb_randr_get_provider_info_outputs_end.3.gz +man/man3/xcb_randr_get_provider_info_outputs_length.3.gz +man/man3/xcb_randr_get_provider_info_reply.3.gz +man/man3/xcb_randr_get_provider_info_unchecked.3.gz +man/man3/xcb_randr_get_provider_property.3.gz +man/man3/xcb_randr_get_provider_property_data.3.gz +man/man3/xcb_randr_get_provider_property_data_end.3.gz +man/man3/xcb_randr_get_provider_property_data_length.3.gz +man/man3/xcb_randr_get_provider_property_reply.3.gz +man/man3/xcb_randr_get_provider_property_unchecked.3.gz +man/man3/xcb_randr_get_providers.3.gz +man/man3/xcb_randr_get_providers_providers.3.gz +man/man3/xcb_randr_get_providers_providers_end.3.gz +man/man3/xcb_randr_get_providers_providers_length.3.gz +man/man3/xcb_randr_get_providers_reply.3.gz +man/man3/xcb_randr_get_providers_unchecked.3.gz man/man3/xcb_randr_get_screen_info.3.gz man/man3/xcb_randr_get_screen_info_rates_iterator.3.gz man/man3/xcb_randr_get_screen_info_rates_length.3.gz @@ -1259,6 +1461,12 @@ man/man3/xcb_randr_list_output_properties_atoms_length.3.gz man/man3/xcb_randr_list_output_properties_reply.3.gz man/man3/xcb_randr_list_output_properties_unchecked.3.gz +man/man3/xcb_randr_list_provider_properties.3.gz +man/man3/xcb_randr_list_provider_properties_atoms.3.gz +man/man3/xcb_randr_list_provider_properties_atoms_end.3.gz +man/man3/xcb_randr_list_provider_properties_atoms_length.3.gz +man/man3/xcb_randr_list_provider_properties_reply.3.gz +man/man3/xcb_randr_list_provider_properties_unchecked.3.gz man/man3/xcb_randr_notify_event_t.3.gz man/man3/xcb_randr_query_output_property.3.gz man/man3/xcb_randr_query_output_property_reply.3.gz @@ -1266,6 +1474,12 @@ man/man3/xcb_randr_query_output_property_valid_values.3.gz man/man3/xcb_randr_query_output_property_valid_values_end.3.gz man/man3/xcb_randr_query_output_property_valid_values_length.3.gz +man/man3/xcb_randr_query_provider_property.3.gz +man/man3/xcb_randr_query_provider_property_reply.3.gz +man/man3/xcb_randr_query_provider_property_unchecked.3.gz +man/man3/xcb_randr_query_provider_property_valid_values.3.gz +man/man3/xcb_randr_query_provider_property_valid_values_end.3.gz +man/man3/xcb_randr_query_provider_property_valid_values_length.3.gz man/man3/xcb_randr_query_version.3.gz man/man3/xcb_randr_query_version_reply.3.gz man/man3/xcb_randr_query_version_unchecked.3.gz @@ -1284,6 +1498,10 @@ man/man3/xcb_randr_set_panning.3.gz man/man3/xcb_randr_set_panning_reply.3.gz man/man3/xcb_randr_set_panning_unchecked.3.gz +man/man3/xcb_randr_set_provider_offload_sink.3.gz +man/man3/xcb_randr_set_provider_offload_sink_checked.3.gz +man/man3/xcb_randr_set_provider_output_source.3.gz +man/man3/xcb_randr_set_provider_output_source_checked.3.gz man/man3/xcb_randr_set_screen_config.3.gz man/man3/xcb_randr_set_screen_config_reply.3.gz man/man3/xcb_randr_set_screen_config_unchecked.3.gz @@ -1400,6 +1618,11 @@ man/man3/xcb_reparent_notify_event_t.3.gz man/man3/xcb_reparent_window.3.gz man/man3/xcb_reparent_window_checked.3.gz +man/man3/xcb_res_query_client_ids.3.gz +man/man3/xcb_res_query_client_ids_ids_iterator.3.gz +man/man3/xcb_res_query_client_ids_ids_length.3.gz +man/man3/xcb_res_query_client_ids_reply.3.gz +man/man3/xcb_res_query_client_ids_unchecked.3.gz man/man3/xcb_res_query_client_pixmap_bytes.3.gz man/man3/xcb_res_query_client_pixmap_bytes_reply.3.gz man/man3/xcb_res_query_client_pixmap_bytes_unchecked.3.gz @@ -1415,6 +1638,11 @@ man/man3/xcb_res_query_clients_clients_length.3.gz man/man3/xcb_res_query_clients_reply.3.gz man/man3/xcb_res_query_clients_unchecked.3.gz +man/man3/xcb_res_query_resource_bytes.3.gz +man/man3/xcb_res_query_resource_bytes_reply.3.gz +man/man3/xcb_res_query_resource_bytes_sizes_iterator.3.gz +man/man3/xcb_res_query_resource_bytes_sizes_length.3.gz +man/man3/xcb_res_query_resource_bytes_unchecked.3.gz man/man3/xcb_res_query_version.3.gz man/man3/xcb_res_query_version_reply.3.gz man/man3/xcb_res_query_version_unchecked.3.gz @@ -1596,9 +1824,14 @@ man/man3/xcb_shape_select_input_checked.3.gz man/man3/xcb_shm_attach.3.gz man/man3/xcb_shm_attach_checked.3.gz +man/man3/xcb_shm_attach_fd.3.gz +man/man3/xcb_shm_attach_fd_checked.3.gz man/man3/xcb_shm_completion_event_t.3.gz man/man3/xcb_shm_create_pixmap.3.gz man/man3/xcb_shm_create_pixmap_checked.3.gz +man/man3/xcb_shm_create_segment.3.gz +man/man3/xcb_shm_create_segment_reply.3.gz +man/man3/xcb_shm_create_segment_unchecked.3.gz man/man3/xcb_shm_detach.3.gz man/man3/xcb_shm_detach_checked.3.gz man/man3/xcb_shm_get_image.3.gz @@ -1860,6 +2093,8 @@ man/man3/xcb_xfixes_change_save_set_checked.3.gz man/man3/xcb_xfixes_copy_region.3.gz man/man3/xcb_xfixes_copy_region_checked.3.gz +man/man3/xcb_xfixes_create_pointer_barrier.3.gz +man/man3/xcb_xfixes_create_pointer_barrier_checked.3.gz man/man3/xcb_xfixes_create_region.3.gz man/man3/xcb_xfixes_create_region_checked.3.gz man/man3/xcb_xfixes_create_region_from_bitmap.3.gz @@ -1871,6 +2106,8 @@ man/man3/xcb_xfixes_create_region_from_window.3.gz man/man3/xcb_xfixes_create_region_from_window_checked.3.gz man/man3/xcb_xfixes_cursor_notify_event_t.3.gz +man/man3/xcb_xfixes_delete_pointer_barrier.3.gz +man/man3/xcb_xfixes_delete_pointer_barrier_checked.3.gz man/man3/xcb_xfixes_destroy_region.3.gz man/man3/xcb_xfixes_destroy_region_checked.3.gz man/man3/xcb_xfixes_expand_region.3.gz @@ -1971,7 +2208,7 @@ man/man3/xcb_xkb_get_compat_map_group_rtrn_length.3.gz man/man3/xcb_xkb_get_compat_map_reply.3.gz man/man3/xcb_xkb_get_compat_map_si_rtrn.3.gz -man/man3/xcb_xkb_get_compat_map_si_rtrn_end.3.gz +man/man3/xcb_xkb_get_compat_map_si_rtrn_iterator.3.gz man/man3/xcb_xkb_get_compat_map_si_rtrn_length.3.gz man/man3/xcb_xkb_get_compat_map_unchecked.3.gz man/man3/xcb_xkb_get_controls.3.gz Index: x11/libxkbfile/Makefile =================================================================== --- x11/libxkbfile/Makefile (revision 336156) +++ x11/libxkbfile/Makefile (working copy) @@ -12,4 +12,5 @@ XORG_CAT= lib USE_XORG= x11 kbproto:both + .include Index: x11/libxshmfence/Makefile =================================================================== --- x11/libxshmfence/Makefile (revision 0) +++ x11/libxshmfence/Makefile (working copy) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= libxshmfence +PORTVERSION= 1.1 +CATEGORIES= x11 + +MAINTAINER= x11@FreeBSD.org +COMMENT= Shared memory 'SyncFence' synchronization primitive + +LICENSE= MIT + +USE_XORG= xproto +XORG_CAT= lib + +test: build + @cd ${WRKSRC} && ${MAKE} check + +.include Property changes on: x11/libxshmfence/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: x11/libxshmfence/distinfo =================================================================== --- x11/libxshmfence/distinfo (revision 0) +++ x11/libxshmfence/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (xorg/lib/libxshmfence-1.1.tar.bz2) = dbc2db2925ca9f216fd1e9c63d0974db9f4d49aaf5877ffb606d2d8d7e58cebe +SIZE (xorg/lib/libxshmfence-1.1.tar.bz2) = 291347 Property changes on: x11/libxshmfence/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/libxshmfence/files/patch-config.h.in =================================================================== --- x11/libxshmfence/files/patch-config.h.in (revision 0) +++ x11/libxshmfence/files/patch-config.h.in (working copy) @@ -0,0 +1,22 @@ +--- config.h.in 2013-11-27 00:54:40.000000000 -0500 ++++ config.h.in 2013-12-09 16:56:20.000000000 -0500 +@@ -12,6 +12,9 @@ + /* Define to 1 if you have the header file. */ + #undef HAVE_MEMORY_H + ++/* Use mkostemp(3) */ ++#undef HAVE_MKOSTEMP ++ + /* Use pthread primitives */ + #undef HAVE_PTHREAD + +@@ -33,6 +36,9 @@ + /* Define to 1 if you have the header file. */ + #undef HAVE_SYS_TYPES_H + ++/* Use umtx */ ++#undef HAVE_UMTX ++ + /* Define to 1 if you have the header file. */ + #undef HAVE_UNISTD_H + Property changes on: x11/libxshmfence/files/patch-config.h.in ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/libxshmfence/files/patch-configure =================================================================== --- x11/libxshmfence/files/patch-configure (revision 0) +++ x11/libxshmfence/files/patch-configure (working copy) @@ -0,0 +1,45 @@ +--- configure 2013-11-27 00:54:35.000000000 -0500 ++++ configure 2013-12-09 15:03:55.000000000 -0500 +@@ -17633,11 +17633,27 @@ + ac_fn_c_check_header_mongrel "$LINENO" "linux/futex.h" "ac_cv_header_linux_futex_h" "$ac_includes_default" + if test "x$ac_cv_header_linux_futex_h" = xyes; then : + FUTEX=yes ++fi ++ ++ ++fi ++ ++if test "x$FUTEX" = "xauto"; then ++ ac_fn_c_check_header_compile "$LINENO" "sys/umtx.h" "ac_cv_header_sys_umtx_h" "#include ++ #include ++" ++if test "x$ac_cv_header_sys_umtx_h" = xyes; then : ++ FUTEX=yes + else + FUTEX=no + fi + + ++ if test "x$FUTEX" = "xyes"; then ++ ++$as_echo "#define HAVE_UMTX 1" >>confdefs.h ++ ++ fi + fi + + if test "x$FUTEX" = "xyes"; then +@@ -17717,6 +17733,14 @@ + fi + + ++ac_fn_c_check_func "$LINENO" "mkostemp" "ac_cv_func_mkostemp" ++if test "x$ac_cv_func_mkostemp" = xyes; then : ++ ++$as_echo "#define HAVE_MKOSTEMP 1" >>confdefs.h ++ ++fi ++ ++ + + pkg_failed=no + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XPROTO" >&5 Property changes on: x11/libxshmfence/files/patch-configure ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/libxshmfence/files/patch-src__xshmfence_alloc.c =================================================================== --- x11/libxshmfence/files/patch-src__xshmfence_alloc.c (revision 0) +++ x11/libxshmfence/files/patch-src__xshmfence_alloc.c (working copy) @@ -0,0 +1,20 @@ +--- src/xshmfence_alloc.c 2013-11-20 17:13:08.000000000 -0500 ++++ src/xshmfence_alloc.c 2013-12-09 16:06:17.000000000 -0500 +@@ -41,11 +41,15 @@ + char template[] = SHMDIR "/shmfd-XXXXXX"; + int fd; + +-#ifdef O_TMPFILE ++#if defined(O_CLOEXEC) ++#if defined(HAVE_MKOSTEMP) ++ fd = mkostemp(template, O_CLOEXEC); ++#elif defined(O_TMPFILE) + fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666); +- if (fd < 0) + #endif ++ if (fd < 0) + { ++#endif + fd = mkstemp(template); + if (fd < 0) + return fd; Property changes on: x11/libxshmfence/files/patch-src__xshmfence_alloc.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/libxshmfence/files/patch-src__xshmfence_futex.h =================================================================== --- x11/libxshmfence/files/patch-src__xshmfence_futex.h (revision 0) +++ x11/libxshmfence/files/patch-src__xshmfence_futex.h (working copy) @@ -0,0 +1,46 @@ +--- src/xshmfence_futex.h 2013-11-20 17:13:08.000000000 -0500 ++++ src/xshmfence_futex.h 2013-12-09 15:52:29.000000000 -0500 +@@ -1,5 +1,6 @@ + /* + * Copyright © 2013 Keith Packard ++ * Copyright © 2013 Jung-uk Kim + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that +@@ -24,6 +25,27 @@ + #define _XSHMFENCE_FUTEX_H_ + + #include ++ ++#ifdef HAVE_UMTX ++ ++#include ++#include ++ ++static inline int sys_futex(void *addr, int op, int32_t val) ++{ ++ return _umtx_op(addr, op, (uint32_t)val, NULL, NULL) == -1 ? errno : 0; ++} ++ ++static inline int futex_wake(int32_t *addr) { ++ return sys_futex(addr, UMTX_OP_WAKE, INT_MAX); ++} ++ ++static inline int futex_wait(int32_t *addr, int32_t value) { ++ return sys_futex(addr, UMTX_OP_WAIT_UINT, value); ++} ++ ++#else ++ + #include + #include + #include +@@ -43,6 +65,8 @@ + return sys_futex(addr, FUTEX_WAIT, value, NULL, NULL, 0); + } + ++#endif ++ + #define barrier() __asm__ __volatile__("": : :"memory") + + static inline void atomic_store(int32_t *f, int32_t v) Property changes on: x11/libxshmfence/files/patch-src__xshmfence_futex.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/libxshmfence/files/patch-src__xshmfenceint.h =================================================================== --- x11/libxshmfence/files/patch-src__xshmfenceint.h (revision 0) +++ x11/libxshmfence/files/patch-src__xshmfenceint.h (working copy) @@ -0,0 +1,10 @@ +--- src/xshmfenceint.h 2013-11-20 17:14:05.000000000 -0500 ++++ src/xshmfenceint.h 2013-12-09 15:14:36.000000000 -0500 +@@ -23,6 +23,7 @@ + #ifndef _XSHMFENCEINT_H_ + #define _XSHMFENCEINT_H_ + ++#include + #include + #include + #include Property changes on: x11/libxshmfence/files/patch-src__xshmfenceint.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/libxshmfence/pkg-descr =================================================================== --- x11/libxshmfence/pkg-descr (revision 0) +++ x11/libxshmfence/pkg-descr (working copy) @@ -0,0 +1,5 @@ +This library offers a CPU-based synchronization primitive compatible +with the X SyncFence objects that can be shared between processes +using file descriptor passing. + +WWW: http://www.freedesktop.org/Software/xlibs Property changes on: x11/libxshmfence/pkg-descr ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/libxshmfence/pkg-plist =================================================================== --- x11/libxshmfence/pkg-plist (revision 0) +++ x11/libxshmfence/pkg-plist (working copy) @@ -0,0 +1,6 @@ +include/X11/xshmfence.h +lib/libxshmfence.a +lib/libxshmfence.la +lib/libxshmfence.so +lib/libxshmfence.so.1 +libdata/pkgconfig/xshmfence.pc Property changes on: x11/libxshmfence/pkg-plist ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/listres/Makefile =================================================================== --- x11/listres/Makefile (revision 336156) +++ x11/listres/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xproto xt xmu xaw -PLIST_FILES= bin/listres +PLIST_FILES= bin/listres man/man1/listres.1.gz -MAN1= listres.1 - -NO_STAGE= yes .include Index: x11/luit/Makefile =================================================================== --- x11/luit/Makefile (revision 336156) +++ x11/luit/Makefile (working copy) @@ -12,9 +12,6 @@ CONFIGURE_ARGS= --datadir=${LOCALBASE}/lib -PLIST_FILES= bin/luit +PLIST_FILES= bin/luit man/man1/luit.1.gz -MAN1= luit.1 - -NO_STAGE= yes .include Index: x11/mkcomposecache/Makefile =================================================================== --- x11/mkcomposecache/Makefile (revision 336156) +++ x11/mkcomposecache/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= sbin/mkcomposecache +PLIST_FILES= sbin/mkcomposecache man/man8/mkcomposecache.8.gz -MAN8= mkcomposecache.8 - -NO_STAGE= yes .include Index: x11/pixman/Makefile =================================================================== --- x11/pixman/Makefile (revision 336156) +++ x11/pixman/Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pixman -PORTVERSION= 0.30.2 +PORTVERSION= 0.32.4 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Index: x11/pixman/distinfo =================================================================== --- x11/pixman/distinfo (revision 336156) +++ x11/pixman/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/lib/pixman-0.30.2.tar.bz2) = 4fbb51788fe7cbd8abb5f80aed95ec878704e57a06328f7bebe0306e3822c96c -SIZE (xorg/lib/pixman-0.30.2.tar.bz2) = 666281 +SHA256 (xorg/lib/pixman-0.32.4.tar.bz2) = ae2bd664057e330d41b40336ed296d3512318ce7f2401cc42601f2613d371e4c +SIZE (xorg/lib/pixman-0.32.4.tar.bz2) = 701414 Index: x11/pixman/pkg-plist =================================================================== --- x11/pixman/pkg-plist (revision 336156) +++ x11/pixman/pkg-plist (working copy) @@ -3,6 +3,6 @@ lib/libpixman-1.a lib/libpixman-1.la lib/libpixman-1.so -lib/libpixman-1.so.30 +lib/libpixman-1.so.32 libdata/pkgconfig/pixman-1.pc @dirrm include/pixman-1 Index: x11/presentproto/Makefile =================================================================== --- x11/presentproto/Makefile (revision 0) +++ x11/presentproto/Makefile (working copy) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PORTNAME= presentproto +PORTVERSION= 1.0 +CATEGORIES= x11 + +MAINTAINER= x11@FreeBSD.org +COMMENT= Present protocol specification + +XORG_CAT= proto + +.include Property changes on: x11/presentproto/Makefile ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/presentproto/distinfo =================================================================== --- x11/presentproto/distinfo (revision 0) +++ x11/presentproto/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (xorg/proto/presentproto-1.0.tar.bz2) = 812c7d48721f909a0f7a2cb1e91f6eead76159a36c4712f4579ca587552839ce +SIZE (xorg/proto/presentproto-1.0.tar.bz2) = 107998 Property changes on: x11/presentproto/distinfo ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/presentproto/pkg-descr =================================================================== --- x11/presentproto/pkg-descr (revision 0) +++ x11/presentproto/pkg-descr (working copy) @@ -0,0 +1 @@ +This package contains X.Org Present protocol specification. Property changes on: x11/presentproto/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11/presentproto/pkg-plist =================================================================== --- x11/presentproto/pkg-plist (revision 0) +++ x11/presentproto/pkg-plist (working copy) @@ -0,0 +1,6 @@ +include/X11/extensions/presentproto.h +include/X11/extensions/presenttokens.h +libdata/pkgconfig/presentproto.pc +share/doc/presentproto/presentproto.txt +@dirrm share/doc/presentproto +@dirrmtry include/X11/extensions Property changes on: x11/presentproto/pkg-plist ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/printproto/Makefile =================================================================== --- x11/printproto/Makefile (revision 336156) +++ x11/printproto/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= proto -MAN7= Xprint.7 - -NO_STAGE= yes .include Index: x11/printproto/pkg-plist =================================================================== --- x11/printproto/pkg-plist (revision 336156) +++ x11/printproto/pkg-plist (working copy) @@ -1,4 +1,5 @@ include/X11/extensions/Print.h include/X11/extensions/Printstr.h libdata/pkgconfig/printproto.pc +man/man7/Xprint.7.gz @dirrmtry include/X11/extensions Index: x11/rstart/Makefile =================================================================== --- x11/rstart/Makefile (revision 336156) +++ x11/rstart/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= x11 -MAN1= rstart.1 rstartd.1 - -NO_STAGE= yes .include Index: x11/rstart/pkg-plist =================================================================== --- x11/rstart/pkg-plist (revision 336156) +++ x11/rstart/pkg-plist (working copy) @@ -15,6 +15,8 @@ lib/X11/rstart/contexts/x11 lib/X11/rstart/contexts/x11r6 lib/X11/rstart/rstartd.real +man/man1/rstart.1.gz +man/man1/rstartd.1.gz @dirrm lib/X11/rstart/contexts @dirrm lib/X11/rstart/commands/x11r6 @dirrm lib/X11/rstart/commands Index: x11/scripts/Makefile =================================================================== --- x11/scripts/Makefile (revision 336156) +++ x11/scripts/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= x11 -MAN1= xon.1 - -NO_STAGE= yes .include Index: x11/scripts/pkg-plist =================================================================== --- x11/scripts/pkg-plist (revision 336156) +++ x11/scripts/pkg-plist (working copy) @@ -2,3 +2,4 @@ bin/fontname.sh bin/fontprop.sh bin/xon +man/man1/xon.1.gz Index: x11/sessreg/Makefile =================================================================== --- x11/sessreg/Makefile (revision 336156) +++ x11/sessreg/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/sessreg +PLIST_FILES= bin/sessreg man/man1/sessreg.1.gz -MAN1= sessreg.1 - -NO_STAGE= yes .include Index: x11/setxkbmap/Makefile =================================================================== --- x11/setxkbmap/Makefile (revision 336156) +++ x11/setxkbmap/Makefile (working copy) @@ -12,9 +12,6 @@ CONFIGURE_ARGS= --with-xkb-config-root=${LOCALBASE}/share/X11/xkb -PLIST_FILES= bin/setxkbmap +PLIST_FILES= bin/setxkbmap man/man1/setxkbmap.1.gz -MAN1= setxkbmap.1 - -NO_STAGE= yes .include Index: x11/smproxy/Makefile =================================================================== --- x11/smproxy/Makefile (revision 336156) +++ x11/smproxy/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xt xmu -PLIST_FILES= bin/smproxy +PLIST_FILES= bin/smproxy man/man1/smproxy.1.gz -MAN1= smproxy.1 - -NO_STAGE= yes .include Index: x11/trapproto/Makefile =================================================================== --- x11/trapproto/Makefile (revision 336156) +++ x11/trapproto/Makefile (working copy) @@ -12,5 +12,4 @@ USE_XORG= xt:both -NO_STAGE= yes .include Index: x11/viewres/Makefile =================================================================== --- x11/viewres/Makefile (revision 336156) +++ x11/viewres/Makefile (working copy) @@ -10,13 +10,11 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= viewres.1 - PLIST_FILES+= bin/viewres \ + man/man1/viewres.1.gz \ share/X11/app-defaults/Viewres \ share/X11/app-defaults/Viewres-color PLIST_DIRS+= share/X11/app-defaults \ share/X11 -NO_STAGE= yes .include Index: x11/x11perf/Makefile =================================================================== --- x11/x11perf/Makefile (revision 336156) +++ x11/x11perf/Makefile (working copy) @@ -12,9 +12,4 @@ XORG_CAT= app USE_XORG= x11 xmuu xrender xft xext -MAN1= Xmark.1 \ - x11perf.1 \ - x11perfcomp.1 - -NO_STAGE= yes .include Index: x11/x11perf/pkg-plist =================================================================== --- x11/x11perf/pkg-plist (revision 336156) +++ x11/x11perf/pkg-plist (working copy) @@ -4,4 +4,7 @@ lib/X11/x11perfcomp/perfboth lib/X11/x11perfcomp/perfratio lib/X11/x11perfcomp/Xmark +man/man1/Xmark.1.gz +man/man1/x11perf.1.gz +man/man1/x11perfcomp.1.gz @dirrm lib/X11/x11perfcomp Index: x11/xcalc/Makefile =================================================================== --- x11/xcalc/Makefile (revision 336156) +++ x11/xcalc/Makefile (working copy) @@ -8,14 +8,11 @@ COMMENT= Scientific calculator for X RUN_DEPENDS= font-misc-misc>=1.1.2:${PORTSDIR}/x11-fonts/font-misc-misc \ - font-adobe-100dpi>=1.0.3:${PORTSDIR}/x11-fonts/font-adobe-100dpi \ - font-alias>=1.0.3:${PORTSDIR}/x11-fonts/font-alias \ - xbitmaps>=1.1.0:${PORTSDIR}/x11/xbitmaps + font-adobe-100dpi>=1.0.3:${PORTSDIR}/x11-fonts/font-adobe-100dpi \ + font-alias>=1.0.3:${PORTSDIR}/x11-fonts/font-alias \ + xbitmaps>=1.1.0:${PORTSDIR}/x11/xbitmaps XORG_CAT= app USE_XORG= xt xaw -MAN1= xcalc.1 - -NO_STAGE= yes .include Index: x11/xcalc/pkg-plist =================================================================== --- x11/xcalc/pkg-plist (revision 336156) +++ x11/xcalc/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xcalc +man/man1/xcalc.1.gz share/X11/app-defaults/XCalc share/X11/app-defaults/XCalc-color @dirrmtry share/X11/app-defaults Index: x11/xcb-proto/Makefile =================================================================== --- x11/xcb-proto/Makefile (revision 336156) +++ x11/xcb-proto/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xcb-proto -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES= x11 python MASTER_SITES= http://xcb.freedesktop.org/dist/ @@ -17,4 +17,5 @@ GNU_CONFIGURE= yes DATADIR= ${PREFIX}/share/xcb + .include Index: x11/xcb-proto/distinfo =================================================================== --- x11/xcb-proto/distinfo (revision 336156) +++ x11/xcb-proto/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xcb-proto-1.8.tar.bz2) = 233d16c7a019235b3092111e7c11429119357eb13754a607b75eea04453121b0 -SIZE (xcb-proto-1.8.tar.bz2) = 125072 +SHA256 (xcb-proto-1.9.tar.bz2) = 895afe21793e6e26c5ce999b1900c02a5984c201d96d55cc42c182d3c3bde43c +SIZE (xcb-proto-1.9.tar.bz2) = 136421 Index: x11/xcb-proto/pkg-plist =================================================================== --- x11/xcb-proto/pkg-plist (revision 336156) +++ x11/xcb-proto/pkg-plist (working copy) @@ -4,8 +4,10 @@ %%DATADIR%%/damage.xml %%DATADIR%%/dpms.xml %%DATADIR%%/dri2.xml +%%DATADIR%%/dri3.xml %%DATADIR%%/ge.xml %%DATADIR%%/glx.xml +%%DATADIR%%/present.xml %%DATADIR%%/randr.xml %%DATADIR%%/record.xml %%DATADIR%%/render.xml Index: x11/xclipboard/Makefile =================================================================== --- x11/xclipboard/Makefile (revision 336156) +++ x11/xclipboard/Makefile (working copy) @@ -13,7 +13,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xclipboard.1 xcutsel.1 - -NO_STAGE= yes .include Index: x11/xclipboard/pkg-plist =================================================================== --- x11/xclipboard/pkg-plist (revision 336156) +++ x11/xclipboard/pkg-plist (working copy) @@ -1,5 +1,7 @@ bin/xclipboard bin/xcutsel +man/man1/xclipboard.1.gz +man/man1/xcutsel.1.gz share/X11/app-defaults/XClipboard @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xcmsdb/Makefile =================================================================== --- x11/xcmsdb/Makefile (revision 336156) +++ x11/xcmsdb/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/xcmsdb +PLIST_FILES= bin/xcmsdb man/man1/xcmsdb.1 -MAN1= xcmsdb.1 - -NO_STAGE= yes .include Index: x11/xconsole/Makefile =================================================================== --- x11/xconsole/Makefile (revision 336156) +++ x11/xconsole/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xconsole.1 - -NO_STAGE= yes .include Index: x11/xconsole/pkg-plist =================================================================== --- x11/xconsole/pkg-plist (revision 336156) +++ x11/xconsole/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xconsole +man/man1/xconsole.1.gz share/X11/app-defaults/XConsole @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xdbedizzy/Makefile =================================================================== --- x11/xdbedizzy/Makefile (revision 336156) +++ x11/xdbedizzy/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= xp xext xprintutil xp xau xext -PLIST_FILES= bin/xdbedizzy +PLIST_FILES= bin/xdbedizzy man/man1/xdbedizzy.1.gz -MAN1= xdbedizzy.1 - -NO_STAGE= yes .include Index: x11/xditview/Makefile =================================================================== --- x11/xditview/Makefile (revision 336156) +++ x11/xditview/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xditview.1 - -NO_STAGE= yes .include Index: x11/xditview/pkg-plist =================================================================== --- x11/xditview/pkg-plist (revision 336156) +++ x11/xditview/pkg-plist (working copy) @@ -1,6 +1,7 @@ bin/xditview include/X11/bitmaps/ldblarrow include/X11/bitmaps/rdblarrow +man/man1/xditview.1.gz share/X11/app-defaults/Xditview share/X11/app-defaults/Xditview-chrtr @dirrmtry share/X11/app-defaults Index: x11/xdm/Makefile =================================================================== --- x11/xdm/Makefile (revision 336156) +++ x11/xdm/Makefile (working copy) @@ -14,8 +14,6 @@ CONFIGURE_ARGS+= --with-xdmconfigdir=${EXAMPLESDIR} \ --with-xdmscriptdir=${EXAMPLESDIR} -MAN1= xdm.1 - CFFILES= GiveConsole TakeConsole Xaccess Xreset Xresources \ Xservers Xsession Xsetup_0 Xstartup Xwilling xdm-config @@ -22,12 +20,10 @@ OPTIONS_DEFINE= XDMSHELL XDMSHELL_DESC= Install xdmshell -NO_STAGE= yes .include .if ${PORT_OPTIONS:MXDMSHELL} CONFIGURE_ARGS+=--enable-xdmshell -MAN1+= xdmshell.1 PLIST_SUB+= XDMSHELL="" .else CONFIGURE_ARGS+=--disable-xdmshell @@ -50,7 +46,7 @@ post-install: .for f in ${CFFILES} - ${CP} -n ${EXAMPLESDIR}/$f ${PREFIX}/lib/X11/xdm/$f || ${TRUE} + ${CP} -n ${EXAMPLESDIR}/$f ${EXAMPLESDIR}${PREFIX}/lib/X11/xdm/$f || ${TRUE} .endfor ${MKDIR} /var/lib/xdm/authdir ${LN} -sf /var/lib/xdm/authdir ${PREFIX}/lib/X11/xdm/authdir Index: x11/xdm/pkg-plist =================================================================== --- x11/xdm/pkg-plist (revision 336156) +++ x11/xdm/pkg-plist (working copy) @@ -6,6 +6,8 @@ lib/X11/xdm/libXdmGreet.so lib/X11/xdm/pixmaps/xorg-bw.xpm lib/X11/xdm/pixmaps/xorg.xpm +man/man1/xdm.1.gz +%%XMDSHELL%%man/man1/xmdshell.1.gz share/X11/app-defaults/Chooser @unexec if cmp -s %D/%%EXAMPLESDIR%%/GiveConsole %D/lib/X11/xdm/GiveConsole; then rm -f %D/lib/X11/xdm/GiveConsole; fi @unexec if cmp -s %D/%%EXAMPLESDIR%%/TakeConsole %D/lib/X11/xdm/TakeConsole; then rm -f %D/lib/X11/xdm/TakeConsole; fi Index: x11/xdpyinfo/Makefile =================================================================== --- x11/xdpyinfo/Makefile (revision 336156) +++ x11/xdpyinfo/Makefile (working copy) @@ -13,9 +13,6 @@ USE_XORG= dmx x11 xcb xcomposite xext xinerama xproto xrender \ xtst xxf86dga xxf86misc xxf86vm -PLIST_FILES= bin/xdpyinfo +PLIST_FILES= bin/xdpyinfo man/man1/xdpyinfo.1.gz -MAN1= xdpyinfo.1 - -NO_STAGE= yes .include Index: x11/xdriinfo/Makefile =================================================================== --- x11/xdriinfo/Makefile (revision 336156) +++ x11/xdriinfo/Makefile (working copy) @@ -11,8 +11,6 @@ XORG_CAT= app USE_XORG= x11 glproto -MAN1= xdriinfo.1 -PLIST_FILES= bin/xdriinfo +PLIST_FILES= bin/xdriinfo man/man1/xdriinfo.1.gz -NO_STAGE= yes .include Index: x11/xedit/Makefile =================================================================== --- x11/xedit/Makefile (revision 336156) +++ x11/xedit/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= xt xaw7 -MAN1= xedit.1 - -NO_STAGE= yes .include Index: x11/xedit/pkg-plist =================================================================== --- x11/xedit/pkg-plist (revision 336156) +++ x11/xedit/pkg-plist (working copy) @@ -19,6 +19,7 @@ lib/X11/xedit/lisp/xedit.lsp lib/X11/xedit/lisp/syntax.lsp lib/X11/xedit/lisp/indent.lsp +man/man1/xedit.1.gz share/X11/app-defaults/Xedit-color share/X11/app-defaults/Xedit @dirrmtry share/X11/app-defaults Index: x11/xev/Makefile =================================================================== --- x11/xev/Makefile (revision 336156) +++ x11/xev/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 xrandr -PLIST_FILES= bin/xev +PLIST_FILES= bin/xev man/man1/xev.1.gz -MAN1= xev.1 - -NO_STAGE= yes .include Index: x11/xeyes/Makefile =================================================================== --- x11/xeyes/Makefile (revision 336156) +++ x11/xeyes/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 xt xext xmu xrender -PLIST_FILES= bin/xeyes +PLIST_FILES= bin/xeyes man/man1/xeyes.1.gz -MAN1= xeyes.1 - -NO_STAGE= yes .include Index: x11/xf86dga/Makefile =================================================================== --- x11/xf86dga/Makefile (revision 336156) +++ x11/xf86dga/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 xxf86dga xt xaw7 xmu -PLIST_FILES= bin/dga +PLIST_FILES= bin/dga man/man1/dga.1.gz -MAN1= dga.1 - -NO_STAGE= yes .include Index: x11/xfindproxy/Makefile =================================================================== --- x11/xfindproxy/Makefile (revision 336156) +++ x11/xfindproxy/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 ice xt xproxymngproto -PLIST_FILES= bin/xfindproxy +PLIST_FILES= bin/xfindproxy man/man1/xfindproxy.1.gz -MAN1= xfindproxy.1 - -NO_STAGE= yes .include Index: x11/xfwp/Makefile =================================================================== --- x11/xfwp/Makefile (revision 336156) +++ x11/xfwp/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 ice xproxymngproto -PLIST_FILES= bin/xfwp +PLIST_FILES= bin/xfwp man/man1/xfwp.1.gz -MAN1= xfwp.1 - -NO_STAGE= yes .include Index: x11/xgamma/Makefile =================================================================== --- x11/xgamma/Makefile (revision 336156) +++ x11/xgamma/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 xxf86vm -PLIST_FILES= bin/xgamma +PLIST_FILES= bin/xgamma man/man1/xgamma.1.gz -MAN1= xgamma.1 - -NO_STAGE= yes .include Index: x11/xgc/Makefile =================================================================== --- x11/xgc/Makefile (revision 336156) +++ x11/xgc/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xgc.1 - -NO_STAGE= yes .include Index: x11/xgc/pkg-plist =================================================================== --- x11/xgc/pkg-plist (revision 336156) +++ x11/xgc/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xgc +man/man1/xgc.1.gz share/X11/app-defaults/Xgc share/X11/app-defaults/Xgc-color @dirrmtry share/X11/app-defaults Index: x11/xhost/Makefile =================================================================== --- x11/xhost/Makefile (revision 336156) +++ x11/xhost/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 xmuu xau -PLIST_FILES= bin/xhost +PLIST_FILES= bin/xhost man/man1/xhost.1.gz -MAN1= xhost.1 - -NO_STAGE= yes .include Index: x11/xinit/Makefile =================================================================== --- x11/xinit/Makefile (revision 336156) +++ x11/xinit/Makefile (working copy) @@ -13,9 +13,6 @@ XORG_CAT= app USE_XORG= x11 -MAN1= startx.1 xinit.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} 's/test.*-traditional.*;/true;/' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|hexdump|/usr/bin/hexdump|' ${WRKSRC}/startx.cpp Index: x11/xinit/pkg-plist =================================================================== --- x11/xinit/pkg-plist (revision 336156) +++ x11/xinit/pkg-plist (working copy) @@ -1,5 +1,7 @@ bin/startx bin/xinit +man/man1/startx.1.gz +man/man1/xinit.1.gz etc/X11/xinit/xinitrc @dirrm etc/X11/xinit @dirrmtry etc/X11 Index: x11/xinput/Makefile =================================================================== --- x11/xinput/Makefile (revision 336156) +++ x11/xinput/Makefile (working copy) @@ -11,9 +11,6 @@ XORG_CAT= app USE_XORG= inputproto x11 xi xext xrandr xinerama -PLIST_FILES= bin/xinput +PLIST_FILES= bin/xinput man/man1/xinput.1.gz -MAN1= xinput.1 - -NO_STAGE= yes .include Index: x11/xkbcomp/Makefile =================================================================== --- x11/xkbcomp/Makefile (revision 336156) +++ x11/xkbcomp/Makefile (working copy) @@ -14,9 +14,7 @@ USES= pathfix PLIST_FILES= bin/xkbcomp \ - libdata/pkgconfig/xkbcomp.pc + libdata/pkgconfig/xkbcomp.pc \ + man/man1/xkbcomp.1.gz -MAN1= xkbcomp.1 - -NO_STAGE= yes .include Index: x11/xkbevd/Makefile =================================================================== --- x11/xkbevd/Makefile (revision 336156) +++ x11/xkbevd/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= xkbfile x11 -PLIST_FILES= bin/xkbevd +PLIST_FILES= bin/xkbevd man/man1/xkbevd.1 -MAN1= xkbevd.1 - -NO_STAGE= yes .include Index: x11/xkbprint/Makefile =================================================================== --- x11/xkbprint/Makefile (revision 336156) +++ x11/xkbprint/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= xkbfile x11 -PLIST_FILES= bin/xkbprint +PLIST_FILES= bin/xkbprint man/man1/xkbprint.1.gz -MAN1= xkbprint.1 - -NO_STAGE= yes .include Index: x11/xkbutils/Makefile =================================================================== --- x11/xkbutils/Makefile (revision 336156) +++ x11/xkbutils/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xkbfile x11 xaw inputproto -MAN1= xkbbell.1 xkbvleds.1 xkbwatch.1 - -NO_STAGE= yes .include Index: x11/xkbutils/pkg-plist =================================================================== --- x11/xkbutils/pkg-plist (revision 336156) +++ x11/xkbutils/pkg-plist (working copy) @@ -1,3 +1,6 @@ bin/xkbvleds bin/xkbwatch bin/xkbbell +man/man1/xkbbell.1.gz +man/man1/xkbvleds.1.gz +man/man1/xkbwatch.1.gz Index: x11/xkeyboard-config/Makefile =================================================================== --- x11/xkeyboard-config/Makefile (revision 336156) +++ x11/xkeyboard-config/Makefile (working copy) @@ -1,13 +1,12 @@ # $FreeBSD$ PORTNAME= xkeyboard-config -PORTVERSION= 2.9 -PORTREVISION= 1 +PORTVERSION= 2.10.1 CATEGORIES= x11 -MASTER_SITE_SUBDIR= individual/${XORG_CAT}/${PORTNAME} MAINTAINER= x11@FreeBSD.org COMMENT= X Keyboard Configuration Database +MASTER_SITE_SUBDIR= individual/${XORG_CAT}/${PORTNAME} LICENSE= MIT @@ -19,7 +18,6 @@ USES= gmake pathfix perl5 USE_PERL5= build GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE=yes CONFIGURE_ARGS= --with-xkb-base=${PREFIX}/share/X11/xkb \ --with-xkb-rules-symlink=xorg @@ -26,15 +24,8 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN7= xkeyboard-config.7 +.include -OPTIONS_DEFINE= ETERSOFT -ETERSOFT_DESC= Add pre-1918 Russian letters to typographic layout -ETERSOFT_EXTRA_PATCHES= ${FILESDIR}/etersoft-patch-symbols-typo - -NO_STAGE= yes -#.include - # !nls case doesn't work correctly, comment it out. #.if ${PORT_OPTIONS:MNLS} USES+= gettext:build iconv @@ -49,7 +40,7 @@ ${WRKSRC}/rules/merge.sh post-install: - ${MKDIR} /var/lib/xkb - ${LN} -sf /var/lib/xkb ${PREFIX}/share/X11/xkb/compiled + ${MKDIR} ${STAGEDIR}/var/lib/xkb + ${LN} -sf /var/lib/xkb ${STAGEDIR}${PREFIX}/share/X11/xkb/compiled .include Index: x11/xkeyboard-config/distinfo =================================================================== --- x11/xkeyboard-config/distinfo (revision 336156) +++ x11/xkeyboard-config/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/data/xkeyboard-config-2.9.tar.bz2) = 5e89bc182a10d53c3e83efc6c3546de0fe5504d91c3dbc80d55cc64ddab5643a -SIZE (xorg/data/xkeyboard-config-2.9.tar.bz2) = 912379 +SHA256 (xorg/data/xkeyboard-config-2.10.1.tar.bz2) = 7d58064d86bb0155a3acc4ca35097dab4dfef334cdd0555fb5965ebca1fca18b +SIZE (xorg/data/xkeyboard-config-2.10.1.tar.bz2) = 908897 Index: x11/xkeyboard-config/files/etersoft-patch-symbols-typo =================================================================== --- x11/xkeyboard-config/files/etersoft-patch-symbols-typo (revision 336156) +++ x11/xkeyboard-config/files/etersoft-patch-symbols-typo (working copy) @@ -1,26 +0,0 @@ -Etersoft version of typographic keyboard layout. It removes Yen symbol `Â¥' -(can be easily inserted via "Compose Y =") and adds four letters of Russian -orthography that were removed during the reform of 1917-1918. - -Original upstream bugzilla request: - - http://bugs.etersoft.ru/show_bug.cgi?id=5466 - -Description (in Russian) and the picture of keyboard layout: - - http://kb.etersoft.ru/ТипографÑкаÑ_раÑкладка_Etersoft - ---- symbols/typo.orig -+++ symbols/typo -@@ -29,7 +29,10 @@ - key { [NoSymbol, NoSymbol, EuroSign] }; // "e" - key { [NoSymbol, NoSymbol, registered] }; // "r" - key { [NoSymbol, NoSymbol, trademark] }; // "t" -- key { [NoSymbol, NoSymbol, yen] }; // "y" -+ key { [NoSymbol, NoSymbol, U0463, U0462] }; -+ key { [NoSymbol, NoSymbol, U0475, U0474] }; -+ key { [NoSymbol, NoSymbol, U0456, U0406] }; -+ key { [NoSymbol, NoSymbol, U0473, U0472] }; - key { [NoSymbol, NoSymbol, acute, doubleacute] }; // "p" - key { [NoSymbol, NoSymbol, bracketleft, braceleft] }; // [ - key { [NoSymbol, NoSymbol, bracketright, braceright] }; // ] Index: x11/xkeyboard-config/pkg-plist =================================================================== --- x11/xkeyboard-config/pkg-plist (revision 336156) +++ x11/xkeyboard-config/pkg-plist (working copy) @@ -1,4 +1,5 @@ libdata/pkgconfig/xkeyboard-config.pc +man/man7/xkeyboard-config.7.gz share/X11/xkb/compat/README share/X11/xkb/compat/accessx share/X11/xkb/compat/basic Index: x11/xkill/Makefile =================================================================== --- x11/xkill/Makefile (revision 336156) +++ x11/xkill/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 xmuu -PLIST_FILES= bin/xkill +PLIST_FILES= bin/xkill man/man1/xkill.1.gz -MAN1= xkill.1 - -NO_STAGE= yes .include Index: x11/xload/Makefile =================================================================== --- x11/xload/Makefile (revision 336156) +++ x11/xload/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xload.1 - -NO_STAGE= yes .include Index: x11/xload/pkg-plist =================================================================== --- x11/xload/pkg-plist (revision 336156) +++ x11/xload/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xload +man/man1/xload.1.gz share/X11/app-defaults/XLoad @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xlogo/Makefile =================================================================== --- x11/xlogo/Makefile (revision 336156) +++ x11/xlogo/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xrender xft xext xt xaw xp xprintutil -MAN1= xlogo.1 - -NO_STAGE= yes .include Index: x11/xlogo/pkg-plist =================================================================== --- x11/xlogo/pkg-plist (revision 336156) +++ x11/xlogo/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xlogo +man/man1/xlogo.1.gz share/X11/app-defaults/XLogo share/X11/app-defaults/XLogo-color @dirrmtry share/X11/app-defaults Index: x11/xlsatoms/Makefile =================================================================== --- x11/xlsatoms/Makefile (revision 336156) +++ x11/xlsatoms/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 xmuu -PLIST_FILES= bin/xlsatoms +PLIST_FILES= bin/xlsatoms man/man1/xlsatoms.1.gz -MAN1= xlsatoms.1 - -NO_STAGE= yes .include Index: x11/xlsclients/Makefile =================================================================== --- x11/xlsclients/Makefile (revision 336156) +++ x11/xlsclients/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 xmuu -PLIST_FILES= bin/xlsclients +PLIST_FILES= bin/xlsclients man/man1/xlsclients.1.gz -MAN1= xlsclients.1 - -NO_STAGE= yes .include Index: x11/xmag/Makefile =================================================================== --- x11/xmag/Makefile (revision 336156) +++ x11/xmag/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xmag.1 - -NO_STAGE= yes .include Index: x11/xmag/pkg-plist =================================================================== --- x11/xmag/pkg-plist (revision 336156) +++ x11/xmag/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xmag +man/man1/xmag.1.gz share/X11/app-defaults/Xmag @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xman/Makefile =================================================================== --- x11/xman/Makefile (revision 336156) +++ x11/xman/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xt xaw xp xprintutil -MAN1= xman.1 - -NO_STAGE= yes .include Index: x11/xman/pkg-plist =================================================================== --- x11/xman/pkg-plist (revision 336156) +++ x11/xman/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xman +man/man1/xman.1.gz share/X11/app-defaults/Xman share/X11/xman.help @dirrmtry share/X11/app-defaults Index: x11/xmessage/Makefile =================================================================== --- x11/xmessage/Makefile (revision 336156) +++ x11/xmessage/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xmessage.1 - -NO_STAGE= yes .include Index: x11/xmessage/pkg-plist =================================================================== --- x11/xmessage/pkg-plist (revision 336156) +++ x11/xmessage/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xmessage +man/man1/xmessage.1.gz share/X11/app-defaults/Xmessage share/X11/app-defaults/Xmessage-color @dirrmtry share/X11/app-defaults Index: x11/xmh/Makefile =================================================================== --- x11/xmh/Makefile (revision 336156) +++ x11/xmh/Makefile (working copy) @@ -12,7 +12,4 @@ XORG_CAT= app USE_XORG= xaw xmu xt xbitmaps -MAN1= xmh.1 - -NO_STAGE= yes .include Index: x11/xmh/pkg-plist =================================================================== --- x11/xmh/pkg-plist (revision 336156) +++ x11/xmh/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xmh +man/man1/xmh.1.gz share/X11/app-defaults/Xmh @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xmodmap/Makefile =================================================================== --- x11/xmodmap/Makefile (revision 336156) +++ x11/xmodmap/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/xmodmap +PLIST_FILES= bin/xmodmap man/man1/xmodmap.1.gz -MAN1= xmodmap.1 - -NO_STAGE= yes .include Index: x11/xmore/Makefile =================================================================== --- x11/xmore/Makefile (revision 336156) +++ x11/xmore/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= xt xaw xp xprintutil -MAN1= xmore.1 - -NO_STAGE= yes .include Index: x11/xmore/pkg-plist =================================================================== --- x11/xmore/pkg-plist (revision 336156) +++ x11/xmore/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xmore +man/man1/xmore.1.gz share/X11/app-defaults/XMore @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11/xorg/Makefile =================================================================== --- x11/xorg/Makefile (revision 336156) +++ x11/xorg/Makefile (working copy) @@ -12,6 +12,7 @@ COMMENT= X.Org complete distribution metaport NO_BUILD= yes +NO_MTREE= yes RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dri.pc:${PORTSDIR}/graphics/dri @@ -19,7 +20,6 @@ RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xbitmaps.pc:${PORTSDIR}/x11/xbitmaps \ ${LOCALBASE}/lib/X11/icons/handhelds/cursors/X_cursor:${PORTSDIR}/x11-themes/xcursor-themes -NO_STAGE= yes .include # doc Index: x11/xorg-apps/Makefile =================================================================== --- x11/xorg-apps/Makefile (revision 336156) +++ x11/xorg-apps/Makefile (working copy) @@ -27,7 +27,6 @@ NO_BUILD= yes -NO_STAGE= yes do-install: ${MKDIR} ${PREFIX}/libdata/xorg ${TOUCH} ${PREFIX}/libdata/xorg/apps Index: x11/xorg-docs/Makefile =================================================================== --- x11/xorg-docs/Makefile (revision 336156) +++ x11/xorg-docs/Makefile (working copy) @@ -8,11 +8,8 @@ MAINTAINER= x11@FreeBSD.org COMMENT= X.org documentation files -MAN7= X.7 Standards.7 XProjectTeam.7 Consortium.7 Xsecurity.7 XOrgFoundation.7 - CONFIGURE_ARGS+= --without-xmlto --without-fop --disable-specs XORG_CAT= doc -NO_STAGE= yes .include Index: x11/xorg-docs/pkg-plist =================================================================== --- x11/xorg-docs/pkg-plist (revision 336156) +++ x11/xorg-docs/pkg-plist (working copy) @@ -1,3 +1,9 @@ +man/man7/X.7.gz +man/man7/Standards.7.gz +man/man7/XProjectTeam.7.gz +man/man7/Consortium.7.gz +man/man7/Xsecurity.7.gz +man/man7/XOrgFoundation.7.gz %%DOCSDIR%%/fonts/fonts.xml %%DOCSDIR%%/input/XKB-Config.xml %%DOCSDIR%%/input/XKB-Enhancing.xml Index: x11/xorg-libraries/Makefile =================================================================== --- x11/xorg-libraries/Makefile (revision 336156) +++ x11/xorg-libraries/Makefile (working copy) @@ -3,7 +3,6 @@ PORTNAME= xorg-libraries PORTVERSION= 7.7 -PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= # none DISTFILES= # none @@ -40,7 +39,6 @@ ${LOCALBASE}/libdata/pkgconfig/xkbfile.pc:${PORTSDIR}/x11/libxkbfile \ ${LOCALBASE}/libdata/pkgconfig/xkbui.pc:${PORTSDIR}/x11/libxkbui \ ${LOCALBASE}/libdata/pkgconfig/xmu.pc:${PORTSDIR}/x11-toolkits/libXmu \ - ${LOCALBASE}/libdata/pkgconfig/xp.pc:${PORTSDIR}/x11/libXp \ ${LOCALBASE}/libdata/pkgconfig/xpm.pc:${PORTSDIR}/x11/libXpm \ ${LOCALBASE}/libdata/pkgconfig/xrandr.pc:${PORTSDIR}/x11/libXrandr \ ${LOCALBASE}/libdata/pkgconfig/xrender.pc:${PORTSDIR}/x11/libXrender \ @@ -56,7 +54,6 @@ ${LOCALBASE}/libdata/pkgconfig/xxf86misc.pc:${PORTSDIR}/x11/libXxf86misc \ ${LOCALBASE}/libdata/pkgconfig/xxf86vm.pc:${PORTSDIR}/x11/libXxf86vm -NO_STAGE= yes do-install: ${MKDIR} ${PREFIX}/libdata/xorg ${TOUCH} ${PREFIX}/libdata/xorg/libraries Index: x11/xplsprinters/Makefile =================================================================== --- x11/xplsprinters/Makefile (revision 336156) +++ x11/xplsprinters/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xp xprintutil x11 -PLIST_FILES= bin/xplsprinters +PLIST_FILES= bin/xplsprinters man/man1/xplsprinters.1.gz -MAN1= xplsprinters.1 - -NO_STAGE= yes .include Index: x11/xprehashprinterlist/Makefile =================================================================== --- x11/xprehashprinterlist/Makefile (revision 336156) +++ x11/xprehashprinterlist/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xp x11 -PLIST_FILES= bin/xprehashprinterlist +PLIST_FILES= bin/xprehashprinterlist man/man1/xprehashprinterlist.1.gz -MAN1= xprehashprinterlist.1 - -NO_STAGE= yes .include Index: x11/xprop/Makefile =================================================================== --- x11/xprop/Makefile (revision 336156) +++ x11/xprop/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xmuu x11 -PLIST_FILES= bin/xprop +PLIST_FILES= bin/xprop man/man1/xprop.1.gz -MAN1= xprop.1 - -NO_STAGE= yes .include Index: x11/xproto/Makefile =================================================================== --- x11/xproto/Makefile (revision 336156) +++ x11/xproto/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xproto -PORTVERSION= 7.0.24 +PORTVERSION= 7.0.25 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Index: x11/xproto/distinfo =================================================================== --- x11/xproto/distinfo (revision 336156) +++ x11/xproto/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/proto/xproto-7.0.24.tar.bz2) = 3698a1c7e3b734bc1139a7eb694ed8c66188658d6b4dea3d567066fe4e88b2fc -SIZE (xorg/proto/xproto-7.0.24.tar.bz2) = 292795 +SHA256 (xorg/proto/xproto-7.0.25.tar.bz2) = 92247485dc4ffc3611384ba84136591923da857212a7dc29f4ad7797e13909fe +SIZE (xorg/proto/xproto-7.0.25.tar.bz2) = 295948 Index: x11/xrandr/Makefile =================================================================== --- x11/xrandr/Makefile (revision 336156) +++ x11/xrandr/Makefile (working copy) @@ -11,9 +11,7 @@ USE_XORG= xrandr xrender x11 PLIST_FILES= bin/xrandr \ - bin/xkeystone + bin/xkeystone \ + man/man1/xrandr.1.gz -MAN1= xrandr.1 - -NO_STAGE= yes .include Index: x11/xrdb/Makefile =================================================================== --- x11/xrdb/Makefile (revision 336156) +++ x11/xrdb/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xmuu x11 -PLIST_FILES= bin/xrdb +PLIST_FILES= bin/xrdb man/man1/xrdb.1.gz -MAN1= xrdb.1 - -NO_STAGE= yes .include Index: x11/xrefresh/Makefile =================================================================== --- x11/xrefresh/Makefile (revision 336156) +++ x11/xrefresh/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/xrefresh +PLIST_FILES= bin/xrefresh man/man1/xrefresh.1.gz -MAN1= xrefresh.1 - -NO_STAGE= yes .include Index: x11/xrx/Makefile =================================================================== --- x11/xrx/Makefile (revision 336156) +++ x11/xrx/Makefile (working copy) @@ -12,9 +12,6 @@ USE_LDCONFIG= yes USE_AUTOTOOLS= libtool -MAN1= xrx.1 libxrx.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|mozilla-plugin|disabled-libxul-plugin|g' \ ${WRKSRC}/configure Index: x11/xrx/pkg-plist =================================================================== --- x11/xrx/pkg-plist (revision 336156) +++ x11/xrx/pkg-plist (working copy) @@ -5,4 +5,6 @@ lib/libxrxnest.a lib/libxrxnest.la lib/libxrxnest.so +man/man1/xrx.1.gz +man/man1/libxrx.1.gz @dirrmtry include/X11/extensions Index: x11/xsetmode/Makefile =================================================================== --- x11/xsetmode/Makefile (revision 336156) +++ x11/xsetmode/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xi x11 -PLIST_FILES= bin/xsetmode +PLIST_FILES= bin/xsetmode man/man1/xsetmode.1.gz -MAN1= xsetmode.1 - -NO_STAGE= yes .include Index: x11/xsetpointer/Makefile =================================================================== --- x11/xsetpointer/Makefile (revision 336156) +++ x11/xsetpointer/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= xi x11 -PLIST_FILES= bin/xsetpointer +PLIST_FILES= bin/xsetpointer man/man1/xsetpointer.1.gz -MAN1= xsetpointer.1 - -NO_STAGE= yes .include Index: x11/xtrans/Makefile =================================================================== --- x11/xtrans/Makefile (revision 336156) +++ x11/xtrans/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xtrans -PORTVERSION= 1.2.7 +PORTVERSION= 1.3.2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Index: x11/xtrans/distinfo =================================================================== --- x11/xtrans/distinfo (revision 336156) +++ x11/xtrans/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/lib/xtrans-1.2.7.tar.bz2) = 7f811191ba70a34a9994d165ea11a239e52c527f039b6e7f5011588f075fe1a6 -SIZE (xorg/lib/xtrans-1.2.7.tar.bz2) = 173025 +SHA256 (xorg/lib/xtrans-1.3.2.tar.bz2) = 94177c89b74f594bcddc6a12825e9b464e17ab1977de671d25f67a4ea922cb87 +SIZE (xorg/lib/xtrans-1.3.2.tar.bz2) = 177812 Index: x11/xtrans/files/patch-Xtransint.h =================================================================== --- x11/xtrans/files/patch-Xtransint.h (revision 0) +++ x11/xtrans/files/patch-Xtransint.h (working copy) @@ -0,0 +1,11 @@ +--- Xtransint.h.orig 2013-11-08 10:46:59.086340096 +0100 ++++ Xtransint.h 2013-11-08 11:02:02.275278727 +0100 +@@ -72,7 +72,7 @@ + # define XTRANSDEBUG 1 + #endif + +-#if XTRANS_SEND_FDS && !(defined(linux) || defined(__sun)) ++#if XTRANS_SEND_FDS && !(defined(linux) || defined(__sun) || defined(__FreeBSD__)) + #error "FD passing support only on Linux & Solaris" + #endif + Property changes on: x11/xtrans/files/patch-Xtransint.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11/xtrans/pkg-plist =================================================================== --- x11/xtrans/pkg-plist (revision 336156) +++ x11/xtrans/pkg-plist (working copy) @@ -3,7 +3,6 @@ include/X11/Xtrans/Xtransint.h include/X11/Xtrans/Xtranslcl.c include/X11/Xtrans/Xtranssock.c -include/X11/Xtrans/Xtranstli.c include/X11/Xtrans/Xtransutil.c include/X11/Xtrans/transport.c libdata/pkgconfig/xtrans.pc Index: x11/xvidtune/Makefile =================================================================== --- x11/xvidtune/Makefile (revision 336156) +++ x11/xvidtune/Makefile (working copy) @@ -9,4 +9,5 @@ XORG_CAT= app USE_XORG= xxf86vm xt xaw + .include Index: x11/xvmcinfo/Makefile =================================================================== --- x11/xvmcinfo/Makefile (revision 336156) +++ x11/xvmcinfo/Makefile (working copy) @@ -16,9 +16,6 @@ PLIST_FILES= bin/xvmcinfo -NO_MAN= defined - -NO_STAGE= yes do-build: ${CC} ${CFLAGS} ${CPPFLAGS} \ -I${LOCALBASE}/include -L${LOCALBASE}/lib \ @@ -25,6 +22,6 @@ -o ${WRKSRC}/xvmcinfo ${FILESDIR}/xvmcinfo.c ${LDFLAGS} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xvmcinfo ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/xvmcinfo ${STAGEDIR}${PREFIX}/bin .include Index: x11-clocks/oclock/Makefile =================================================================== --- x11-clocks/oclock/Makefile (revision 336156) +++ x11-clocks/oclock/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= x11 xmu xext xt xkbfile -MAN1= oclock.1 - -NO_STAGE= yes .include Index: x11-clocks/oclock/pkg-plist =================================================================== --- x11-clocks/oclock/pkg-plist (revision 336156) +++ x11-clocks/oclock/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/oclock +man/man1/oclock.1.gz share/X11/app-defaults/Clock-color @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11-clocks/xclock/Makefile =================================================================== --- x11-clocks/xclock/Makefile (revision 336156) +++ x11-clocks/xclock/Makefile (working copy) @@ -12,7 +12,4 @@ USE_XORG= xrender xft xkbfile xt xaw USES= iconv -MAN1= xclock.1 - -NO_STAGE= yes .include Index: x11-clocks/xclock/pkg-plist =================================================================== --- x11-clocks/xclock/pkg-plist (revision 336156) +++ x11-clocks/xclock/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xclock +man/man1/xclock.1.gz share/X11/app-defaults/XClock-color share/X11/app-defaults/XClock @dirrmtry share/X11/app-defaults Index: x11-drivers/input-wacom/Makefile =================================================================== --- x11-drivers/input-wacom/Makefile (revision 336156) +++ x11-drivers/input-wacom/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= input-wacom PORTVERSION= ${KLD_VERSION}.${WACOM_VERSION:C/-/./g} -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= x11-drivers kld MASTER_SITES= http://www.chillt.de/bsdwacom/:bsdwacom \ SF/linuxwacom/xf86-input-wacom/:linuxwacom Index: x11-drivers/xf86-input-acecad/Makefile =================================================================== --- x11-drivers/xf86-input-acecad/Makefile (revision 336156) +++ x11-drivers/xf86-input-acecad/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-input-acecad PORTVERSION= 1.5.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org acecad input driver XORG_CAT= driver -MAN4= acecad.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-input-acecad/pkg-plist =================================================================== --- x11-drivers/xf86-input-acecad/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-acecad/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/acecad_drv.la lib/xorg/modules/input/acecad_drv.so +man/man4/acecad.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-elographics/Makefile =================================================================== --- x11-drivers/xf86-input-elographics/Makefile (revision 336156) +++ x11-drivers/xf86-input-elographics/Makefile (working copy) @@ -9,8 +9,9 @@ COMMENT= X.Org elographics input driver XORG_CAT= driver -MAN4= elographics.4x +.include + .if defined(WITH_NEW_XORG) ELO_VERSION= 1.4.1 ELO_REVISION= 0 @@ -19,5 +20,4 @@ ELO_REVISION= 0 .endif -NO_STAGE= yes .include Index: x11-drivers/xf86-input-elographics/pkg-plist =================================================================== --- x11-drivers/xf86-input-elographics/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-elographics/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/elographics_drv.la lib/xorg/modules/input/elographics_drv.so +man/man4/elographics.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-fpit/Makefile =================================================================== --- x11-drivers/xf86-input-fpit/Makefile (revision 336156) +++ x11-drivers/xf86-input-fpit/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-input-fpit PORTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,6 +11,8 @@ XORG_CAT= driver USE_XORG= xrandr +.include + .if !defined(WITH_NEW_XORG) IGNORE= does not build with X server 1.7.7 .endif Index: x11-drivers/xf86-input-hyperpen/Makefile =================================================================== --- x11-drivers/xf86-input-hyperpen/Makefile (revision 336156) +++ x11-drivers/xf86-input-hyperpen/Makefile (working copy) @@ -10,6 +10,8 @@ XORG_CAT= driver +.include + .if defined(WITH_NEW_XORG) HYPERVER= 1.4.1 HYPERREVISION= 0 @@ -19,5 +21,4 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_xf86HyperPen.c .endif -NO_STAGE= yes .include Index: x11-drivers/xf86-input-joystick/Makefile =================================================================== --- x11-drivers/xf86-input-joystick/Makefile (revision 336156) +++ x11-drivers/xf86-input-joystick/Makefile (working copy) @@ -9,8 +9,9 @@ COMMENT= X.Org joystick input driver XORG_CAT= driver -MAN4= joystick.4x +.include + .if defined(WITH_NEW_XORG) JOYVER= 1.6.2 JOYREVISION= 0 @@ -19,7 +20,6 @@ JOYREVISION= 1 .endif -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \ ${WRKSRC}/Makefile.in Index: x11-drivers/xf86-input-joystick/pkg-plist =================================================================== --- x11-drivers/xf86-input-joystick/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-joystick/pkg-plist (working copy) @@ -2,6 +2,7 @@ lib/xorg/modules/input/joystick_drv.la lib/xorg/modules/input/joystick_drv.so libdata/pkgconfig/xorg-joystick.pc +man/man4/joystick.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-keyboard/Makefile =================================================================== --- x11-drivers/xf86-input-keyboard/Makefile (revision 336156) +++ x11-drivers/xf86-input-keyboard/Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xf86-input-keyboard -PORTVERSION= 1.7.0 +PORTVERSION= 1.8.0 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +9,5 @@ XORG_CAT= driver USE_XORG= kbproto -MAN4= kbd.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-input-keyboard/distinfo =================================================================== --- x11-drivers/xf86-input-keyboard/distinfo (revision 336156) +++ x11-drivers/xf86-input-keyboard/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xorg/driver/xf86-input-keyboard-1.7.0.tar.bz2) = 0cd5e2845149c7f0e19ec830c6914b7f3d154bff134ce84519e39f16ce65523c -SIZE (xorg/driver/xf86-input-keyboard-1.7.0.tar.bz2) = 319043 +SHA256 (xorg/driver/xf86-input-keyboard-1.8.0.tar.bz2) = 41c51c4e0a87aad6a1c4973c68a8de23b61162d0223f4ab36c627c307830cb5b +SIZE (xorg/driver/xf86-input-keyboard-1.8.0.tar.bz2) = 323838 Index: x11-drivers/xf86-input-keyboard/files/patch-src__bsd_kbd.c =================================================================== --- x11-drivers/xf86-input-keyboard/files/patch-src__bsd_kbd.c (revision 0) +++ x11-drivers/xf86-input-keyboard/files/patch-src__bsd_kbd.c (working copy) @@ -0,0 +1,14 @@ +Index: src/bsd_kbd.c +@@ -205,6 +205,12 @@ + #endif + } + } ++/* ++ * Switch keyboards which are not attached to console in RAW mode ++ */ ++#if defined (SYSCONS_SUPPORT) || defined (PCVT_SUPPORT) ++ ioctl(pInfo->fd, KDSKBMODE, K_RAW); ++#endif + return Success; + } + Property changes on: x11-drivers/xf86-input-keyboard/files/patch-src__bsd_kbd.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: x11-drivers/xf86-input-keyboard/files/patch-src__kbd.c =================================================================== --- x11-drivers/xf86-input-keyboard/files/patch-src__kbd.c (revision 0) +++ x11-drivers/xf86-input-keyboard/files/patch-src__kbd.c (working copy) @@ -0,0 +1,24 @@ +Index: src/kbd.c +@@ -25,6 +25,7 @@ + + #include "xf86.h" + #include "atKeynames.h" ++#include "xf86Priv.h" + #include "xf86Privstr.h" + + #include +@@ -392,6 +393,14 @@ + RemoveEnabledDevice(pInfo->fd); + pKbd->KbdOff(pInfo, what); + device->public.on = FALSE; ++ /* ++ * Close device file for keyboards which are not attached ++ * to console, otherwise they can't be opened again after ++ * relogin when using session manager like xdm. ++ * X server will take care about console attached keyboards. ++ */ ++ if (pInfo->fd != xf86Info.consoleFd) ++ close(pInfo->fd); + break; + + default: Property changes on: x11-drivers/xf86-input-keyboard/files/patch-src__kbd.c ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: x11-drivers/xf86-input-keyboard/pkg-plist =================================================================== --- x11-drivers/xf86-input-keyboard/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-keyboard/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/kbd_drv.la lib/xorg/modules/input/kbd_drv.so +man/man4/kbd.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-magictouch/Makefile =================================================================== --- x11-drivers/xf86-input-magictouch/Makefile (revision 336156) +++ x11-drivers/xf86-input-magictouch/Makefile (working copy) @@ -8,11 +8,13 @@ MAINTAINER= x11@FreeBSD.org COMMENT= X.Org magictouch input driver +.include + +.if defined(WITH_NEW_XORG) IGNORE= needs xf86_ansic.h which doesn't exist with recent xserver +.endif XORG_CAT= driver -MAN4= magictouch.4x USE_AUTOTOOLS= libtool -NO_STAGE= yes .include Index: x11-drivers/xf86-input-magictouch/pkg-plist =================================================================== --- x11-drivers/xf86-input-magictouch/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-magictouch/pkg-plist (working copy) @@ -1,6 +1,7 @@ lib/xorg/modules/input/magictouch_drv.a lib/xorg/modules/input/magictouch_drv.la lib/xorg/modules/input/magictouch_drv.so +man/man4/magictouch.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-mouse/Makefile =================================================================== --- x11-drivers/xf86-input-mouse/Makefile (revision 336156) +++ x11-drivers/xf86-input-mouse/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-input-mouse PORTVERSION= 1.9.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +10,5 @@ XORG_CAT= driver USES= pathfix -MAN4= mousedrv.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-input-mouse/pkg-plist =================================================================== --- x11-drivers/xf86-input-mouse/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-mouse/pkg-plist (working copy) @@ -2,6 +2,7 @@ lib/xorg/modules/input/mouse_drv.la lib/xorg/modules/input/mouse_drv.so libdata/pkgconfig/xorg-mouse.pc +man/man4/mousedrv.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-mutouch/Makefile =================================================================== --- x11-drivers/xf86-input-mutouch/Makefile (revision 336156) +++ x11-drivers/xf86-input-mutouch/Makefile (working copy) @@ -8,13 +8,11 @@ COMMENT= X.Org mutouch input driver XORG_CAT= driver -MAN4= mutouch.4x +.include + .if !defined(WITH_NEW_XORG) IGNORE= does not build with xorg-server 1.7.7 -.else - .endif -NO_STAGE= yes .include Index: x11-drivers/xf86-input-mutouch/pkg-plist =================================================================== --- x11-drivers/xf86-input-mutouch/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-mutouch/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/mutouch_drv.la lib/xorg/modules/input/mutouch_drv.so +man/man4/mutouch.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-penmount/Makefile =================================================================== --- x11-drivers/xf86-input-penmount/Makefile (revision 336156) +++ x11-drivers/xf86-input-penmount/Makefile (working copy) @@ -9,8 +9,9 @@ COMMENT= X.Org penmount input driver XORG_CAT= driver -MAN4= penmount.4x +.include + .if defined(WITH_NEW_XORG) PEN_VERSION= 1.5.0 PEN_REVISION= 0 @@ -19,5 +20,4 @@ PEN_REVISION= 1 .endif -NO_STAGE= yes .include Index: x11-drivers/xf86-input-penmount/pkg-plist =================================================================== --- x11-drivers/xf86-input-penmount/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-penmount/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/penmount_drv.la lib/xorg/modules/input/penmount_drv.so +man/man4/penmount.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-input-synaptics/Makefile =================================================================== --- x11-drivers/xf86-input-synaptics/Makefile (revision 336156) +++ x11-drivers/xf86-input-synaptics/Makefile (working copy) @@ -10,29 +10,12 @@ CONFLICTS= synaptics-[0-9]* -OPTIONS_DEFINE= HAL -OPTIONS_DEFAULT=HAL - -NO_STAGE= yes -.include - USES= pathfix USE_XORG= x11 xtst XORG_CAT= driver -.if ${PORT_OPTIONS:MHAL} -PLIST_SUB+= HAL="" -LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal -.else -PLIST_SUB+= HAL="@comment " -.endif - -MAN1= syndaemon.1 \ - synclient.1 -MAN4= synaptics.4x - .if defined(WITH_NEW_XORG) -SYNAPTICS_VERSION= 1.7.1 +SYNAPTICS_VERSION= 1.7.2 SYNAPTICS_REVISION= 0 PLIST_SUB+= NEW="" OLD="@comment " .else @@ -42,16 +25,4 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-Makefile.in .endif -post-install: -.if ${PORT_OPTIONS:MHAL} - ${MKDIR} ${PREFIX}/share/hal/fdi/policy/10osvendor - ${INSTALL_DATA} ${WRKSRC}/conf/11-x11-synaptics.fdi \ - ${PREFIX}/share/hal/fdi/policy/10osvendor/ -.if !defined(WITH_NEW_XORG) - ${MKDIR} ${PREFIX}/share/hal/fdi/policy/20thirdparty - ${INSTALL_DATA} ${WRKSRC}/conf/11-x11-synaptics.fdi \ - ${PREFIX}/share/hal/fdi/policy/20thirdparty/ -.endif -.endif - .include Index: x11-drivers/xf86-input-synaptics/distinfo =================================================================== --- x11-drivers/xf86-input-synaptics/distinfo (revision 336156) +++ x11-drivers/xf86-input-synaptics/distinfo (working copy) @@ -1,4 +1,4 @@ SHA256 (xorg/driver/xf86-input-synaptics-1.6.4.tar.bz2) = fe15b1afc61b40800f74a0dcf976c15b299ca0680ae5e537baef543455a732ee SIZE (xorg/driver/xf86-input-synaptics-1.6.4.tar.bz2) = 447004 -SHA256 (xorg/driver/xf86-input-synaptics-1.7.1.tar.bz2) = db5825660e1fb23190697f609bf75d4450fe707344a14298e1c9b47039bbb58e -SIZE (xorg/driver/xf86-input-synaptics-1.7.1.tar.bz2) = 441407 +SHA256 (xorg/driver/xf86-input-synaptics-1.7.2.tar.bz2) = 63957fa55f0d8662ef8c57f6325155c9884a854554d33921f0738e097f2a7dcd +SIZE (xorg/driver/xf86-input-synaptics-1.7.2.tar.bz2) = 448170 Index: x11-drivers/xf86-input-synaptics/pkg-plist =================================================================== --- x11-drivers/xf86-input-synaptics/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-synaptics/pkg-plist (working copy) @@ -5,14 +5,12 @@ lib/xorg/modules/input/synaptics_drv.la lib/xorg/modules/input/synaptics_drv.so libdata/pkgconfig/xorg-synaptics.pc +man/man1/synclient.1.gz +man/man1/syndaemon.1.gz +man/man4/synaptics.4x.gz %%NEW%%share/X11/xorg.conf.d/50-synaptics.conf -%%HAL%%share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi -%%HAL%%%%OLD%%share/hal/fdi/policy/20thirdparty/11-x11-synaptics.fdi +%%NEW%%@dirrmtry share/X11/xorg.conf.d @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg @dirrmtry include/xorg -%%HAL%%@dirrmtry share/hal/fdi/policy/10osvendor -%%HAL%%@dirrmtry share/hal/fdi/policy -%%HAL%%@dirrmtry share/hal/fdi -%%HAL%%@dirrmtry share/hal Index: x11-drivers/xf86-input-vmmouse/Makefile =================================================================== --- x11-drivers/xf86-input-vmmouse/Makefile (revision 336156) +++ x11-drivers/xf86-input-vmmouse/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= xf86-input-vmmouse PORTVERSION= 13.0.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -14,12 +15,11 @@ CONFIGURE_ARGS= --with-hal-callouts-dir=${PREFIX}/libexec/hal/scripts USE_GMAKE= yes -MAN1= vmmouse_detect.1 -MAN4= vmmouse.4x - ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= The vmmouse protocol is only supported on x86-compatible architectures. +.include + .if defined(WITH_NEW_XORG) PLIST_SUB+= NEW="" .else @@ -26,5 +26,4 @@ PLIST_SUB+= NEW="@comment " .endif -NO_STAGE= yes .include Index: x11-drivers/xf86-input-vmmouse/pkg-plist =================================================================== --- x11-drivers/xf86-input-vmmouse/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-vmmouse/pkg-plist (working copy) @@ -2,6 +2,8 @@ libexec/hal/scripts/hal-probe-vmmouse lib/xorg/modules/input/vmmouse_drv.la lib/xorg/modules/input/vmmouse_drv.so +man/man1/vmmouse_detect.1.gz +man/man4/vmmouse.4x.gz %%NEW%%share/X11/xorg.conf.d/50-vmmouse.conf share/hal/fdi/policy/20thirdparty/11-x11-vmmouse.fdi @dirrmtry lib/xorg/modules/input Index: x11-drivers/xf86-input-void/Makefile =================================================================== --- x11-drivers/xf86-input-void/Makefile (revision 336156) +++ x11-drivers/xf86-input-void/Makefile (working copy) @@ -9,8 +9,9 @@ COMMENT= X.Org void input driver XORG_CAT= driver -MAN4= void.4x +.include + .if defined(WITH_NEW_XORG) VOID_VERSION= 1.4.0 VOID_REVISION= 0 @@ -19,6 +20,4 @@ VOID_REVISION= 0 .endif - -NO_STAGE= yes .include Index: x11-drivers/xf86-input-void/pkg-plist =================================================================== --- x11-drivers/xf86-input-void/pkg-plist (revision 336156) +++ x11-drivers/xf86-input-void/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/input/void_drv.la lib/xorg/modules/input/void_drv.so +man/man4/void.4x.gz @dirrmtry lib/xorg/modules/input @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-apm/Makefile =================================================================== --- x11-drivers/xf86-video-apm/Makefile (revision 336156) +++ x11-drivers/xf86-video-apm/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-apm PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org apm display driver XORG_CAT= driver -MAN4= apm.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-apm/pkg-plist =================================================================== --- x11-drivers/xf86-video-apm/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-apm/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/apm_drv.la lib/xorg/modules/drivers/apm_drv.so +man/man4/apm.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-ark/Makefile =================================================================== --- x11-drivers/xf86-video-ark/Makefile (revision 336156) +++ x11-drivers/xf86-video-ark/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-ark PORTVERSION= 0.7.5 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,5 +10,4 @@ XORG_CAT= driver -NO_STAGE= yes .include Index: x11-drivers/xf86-video-ati/Makefile =================================================================== --- x11-drivers/xf86-video-ati/Makefile (revision 336156) +++ x11-drivers/xf86-video-ati/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-ati PORTVERSION= ${ATI_VERSION} +PORTREVISION= ${ATI_REVISION} CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,17 +11,17 @@ USE_GL= gl XORG_CAT= driver USE_XORG= xf86driproto xineramaproto xf86miscproto glproto -MAN4= ati.4x radeon.4x -NO_STAGE= yes .include .if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG) ATI_VERSION= 6.14.6 +ATI_REVISION= 1 CONFIGURE_ARGS+=--disable-kms PLIST_SUB+= OLD="" .else ATI_VERSION= 7.2.0 +ATI_REVISION= 1 CONFIGURE_ARGS+=--disable-udev EXTRA_PATCHES+= ${FILESDIR}/extra-src__radeon_kms.c PLIST_SUB+= OLD="@comment " Index: x11-drivers/xf86-video-ati/pkg-plist =================================================================== --- x11-drivers/xf86-video-ati/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-ati/pkg-plist (working copy) @@ -8,6 +8,8 @@ %%OLD%%lib/xorg/modules/multimedia/theatre_detect_drv.so %%OLD%%lib/xorg/modules/multimedia/theatre_drv.la %%OLD%%lib/xorg/modules/multimedia/theatre_drv.so +man/man4/ati.4x.gz +man/man4/radeon.4x.gz @dirrmtry lib/xorg/modules/drivers %%OLD%%@dirrmtry lib/xorg/modules/multimedia @dirrmtry lib/xorg/modules Index: x11-drivers/xf86-video-chips/Makefile =================================================================== --- x11-drivers/xf86-video-chips/Makefile (revision 336156) +++ x11-drivers/xf86-video-chips/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-chips PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org chips display driver XORG_CAT= driver -MAN4= chips.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-chips/pkg-plist =================================================================== --- x11-drivers/xf86-video-chips/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-chips/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/chips_drv.la lib/xorg/modules/drivers/chips_drv.so +man/man4/chips.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-cirrus/Makefile =================================================================== --- x11-drivers/xf86-video-cirrus/Makefile (revision 336156) +++ x11-drivers/xf86-video-cirrus/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-cirrus PORTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org cirrus display driver XORG_CAT= driver -MAN4= cirrus.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-cirrus/pkg-plist =================================================================== --- x11-drivers/xf86-video-cirrus/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-cirrus/pkg-plist (working copy) @@ -4,6 +4,7 @@ lib/xorg/modules/drivers/cirrus_drv.so lib/xorg/modules/drivers/cirrus_laguna.la lib/xorg/modules/drivers/cirrus_laguna.so +man/man4/cirrus.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-cyrix/Makefile =================================================================== --- x11-drivers/xf86-video-cyrix/Makefile (revision 336156) +++ x11-drivers/xf86-video-cyrix/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-cyrix PORTVERSION= 1.1.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -12,7 +12,5 @@ XORG_CAT= driver USE_XORG= xextproto xf86dgaproto -MAN4= cyrix.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-cyrix/pkg-plist =================================================================== --- x11-drivers/xf86-video-cyrix/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-cyrix/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/cyrix_drv.la lib/xorg/modules/drivers/cyrix_drv.so +man/man4/cyrix.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-dummy/Makefile =================================================================== --- x11-drivers/xf86-video-dummy/Makefile (revision 336156) +++ x11-drivers/xf86-video-dummy/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-dummy PORTVERSION= 0.3.7 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,5 +11,4 @@ XORG_CAT= driver USE_XORG= xf86dgaproto -NO_STAGE= yes .include Index: x11-drivers/xf86-video-fbdev/Makefile =================================================================== --- x11-drivers/xf86-video-fbdev/Makefile (revision 336156) +++ x11-drivers/xf86-video-fbdev/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-fbdev PORTVERSION= 0.4.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +9,5 @@ COMMENT= X.Org fbdev display driver XORG_CAT= driver -MAN4= fbdev.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-fbdev/pkg-plist =================================================================== --- x11-drivers/xf86-video-fbdev/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-fbdev/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/fbdev_drv.la lib/xorg/modules/drivers/fbdev_drv.so +man/man4/fbdev.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-glint/Makefile =================================================================== --- x11-drivers/xf86-video-glint/Makefile (revision 336156) +++ x11-drivers/xf86-video-glint/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-glint PORTVERSION= 1.2.8 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -11,7 +12,5 @@ XORG_CAT= driver USE_XORG= xf86driproto xf86dgaproto glproto -MAN4= glint.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-glint/pkg-plist =================================================================== --- x11-drivers/xf86-video-glint/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-glint/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/glint_drv.la lib/xorg/modules/drivers/glint_drv.so +man/man4/glint.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-i128/Makefile =================================================================== --- x11-drivers/xf86-video-i128/Makefile (revision 336156) +++ x11-drivers/xf86-video-i128/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-i128 PORTVERSION= 1.3.6 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org i128 display driver XORG_CAT= driver -MAN4= i128.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-i128/pkg-plist =================================================================== --- x11-drivers/xf86-video-i128/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-i128/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/i128_drv.la lib/xorg/modules/drivers/i128_drv.so +man/man4/i128.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-i740/Makefile =================================================================== --- x11-drivers/xf86-video-i740/Makefile (revision 336156) +++ x11-drivers/xf86-video-i740/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-i740 PORTVERSION= 1.3.4 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org i740 display driver XORG_CAT= driver -MAN4= i740.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-i740/pkg-plist =================================================================== --- x11-drivers/xf86-video-i740/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-i740/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/i740_drv.la lib/xorg/modules/drivers/i740_drv.so +man/man4/i740.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-imstt/Makefile =================================================================== --- x11-drivers/xf86-video-imstt/Makefile (revision 336156) +++ x11-drivers/xf86-video-imstt/Makefile (working copy) @@ -2,16 +2,15 @@ PORTNAME= xf86-video-imstt PORTVERSION= 1.1.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org COMMENT= X.Org imstt display driver -IGNORE= requires pciVideoPtr typedef +DEPRECATED= requires pciVideoPtr typedef +EXPIRATION_DATE=2014-01-31 XORG_CAT= driver -MAN4= imstt.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-imstt/pkg-plist =================================================================== --- x11-drivers/xf86-video-imstt/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-imstt/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/imstt_drv.la lib/xorg/modules/drivers/imstt_drv.so +man/man4/imstt.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-intel/Makefile =================================================================== --- x11-drivers/xf86-video-intel/Makefile (revision 336156) +++ x11-drivers/xf86-video-intel/Makefile (working copy) @@ -23,14 +23,11 @@ xrender \ xvmc -MAN4= intel.4x - -NO_STAGE= yes .include .if defined(WITH_NEW_XORG) INTEL_VERSION= 2.21.15 -INTEL_REVISION= 0 +INTEL_REVISION= 1 CONFIGURE_ENV+= xorg_cv_cc_flag__Wno_maybe_uninitialized=no CONFIGURE_ARGS+= --enable-sna MAKE_JOBS_UNSAFE=yes @@ -39,10 +36,10 @@ ${PATCHDIR}/extra-src_sna_kgem.c \ ${PATCHDIR}/extra-clang \ ${PATCHDIR}/extra-i915kms -LIB_DEPENDS+= xcb-util:${PORTSDIR}/x11/xcb-util +LIB_DEPENDS+= libxcb-util.so:${PORTSDIR}/x11/xcb-util .else INTEL_VERSION= 2.7.1 -INTEL_REVISION= 5 +INTEL_REVISION= 6 PLIST_SUB+= OLD="" EXTRA_PATCHES+= ${PATCHDIR}/extra-src_ch7017_ch7017.c \ @@ -65,14 +62,9 @@ ${PATCHDIR}/extra-uxa_uxa-priv.h .endif -.include +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libIntelXvMC.so.1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libI810XvMC.so.1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/xorg/modules/drivers/intel_drv.so -.if defined(WITH_NEW_XORG) -pre-configure: -.if !exists(${LOCALBASE}/lib/libkms.so) - @${ECHO} "${PKGNAME}: Rebuild graphics/libdrm with the WITH_KMS option." - @${FALSE} -.endif -.endif - -.include +.include Index: x11-drivers/xf86-video-intel/pkg-plist =================================================================== --- x11-drivers/xf86-video-intel/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-intel/pkg-plist (working copy) @@ -16,6 +16,7 @@ %%OLD%%lib/xorg/modules/drivers/sil164.so %%OLD%%lib/xorg/modules/drivers/tfp410.la %%OLD%%lib/xorg/modules/drivers/tfp410.so +man/man4/intel.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-mach64/Makefile =================================================================== --- x11-drivers/xf86-video-mach64/Makefile (revision 336156) +++ x11-drivers/xf86-video-mach64/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-mach64 PORTVERSION= 6.9.4 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -12,5 +13,4 @@ XORG_CAT= driver USE_XORG= glproto xf86driproto xf86miscproto -NO_STAGE= yes .include Index: x11-drivers/xf86-video-mga/Makefile =================================================================== --- x11-drivers/xf86-video-mga/Makefile (revision 336156) +++ x11-drivers/xf86-video-mga/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-mga PORTVERSION= 1.6.3 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= x11-drivers Index: x11-drivers/xf86-video-neomagic/Makefile =================================================================== --- x11-drivers/xf86-video-neomagic/Makefile (revision 336156) +++ x11-drivers/xf86-video-neomagic/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-neomagic PORTVERSION= 1.2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org Index: x11-drivers/xf86-video-newport/Makefile =================================================================== --- x11-drivers/xf86-video-newport/Makefile (revision 336156) +++ x11-drivers/xf86-video-newport/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-newport PORTVERSION= 0.2.4 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,9 +9,7 @@ COMMENT= X.Org newport display driver XORG_CAT= driver -MAN4= newport.4x -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's|values.h|sys/limits.h|' \ -e 's|MAXSHORT|SHRT_MAX|g' \ Index: x11-drivers/xf86-video-newport/pkg-plist =================================================================== --- x11-drivers/xf86-video-newport/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-newport/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/newport_drv.la lib/xorg/modules/drivers/newport_drv.so +man/man4/newport.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-nouveau/Makefile =================================================================== --- x11-drivers/xf86-video-nouveau/Makefile (revision 336156) +++ x11-drivers/xf86-video-nouveau/Makefile (working copy) @@ -4,7 +4,7 @@ PORTNAME= xf86-video-nouveau PORTVERSION= 0.0.10.${SNAPDATE} DISTVERSIONSUFFIX=.${SNAPREV} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-drivers MASTER_SITES= ftp://ftp.lissyara.su/users/Guest/distfiles/ @@ -13,13 +13,11 @@ XORG_CAT= driver USE_XORG= xf86driproto glproto -MAN4= nouveau.4x - # also doesn't work with mesa (libGL) version higher then 7.4.x -IGNORE= Not supported, missing kernel support. use the nvidia driver. +DEPRECATED= Not supported, missing kernel support. use the nvidia driver. +EXPIRATION_DATE=2014-01-31 -NO_STAGE= yes post-configure: ${REINPLACE_CMD} '/NV_DRIVER_DATE/s/".*"/"${SNAPDATE}.${SNAPREV}"/' ${WRKSRC}/config.h Index: x11-drivers/xf86-video-nouveau/pkg-plist =================================================================== --- x11-drivers/xf86-video-nouveau/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-nouveau/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/nouveau_drv.la lib/xorg/modules/drivers/nouveau_drv.so +man/man4/nouveau.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-nv/Makefile =================================================================== --- x11-drivers/xf86-video-nv/Makefile (revision 336156) +++ x11-drivers/xf86-video-nv/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-nv PORTVERSION= 2.1.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +9,5 @@ COMMENT= X.Org nv display driver XORG_CAT= driver -MAN4= nv.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-nv/pkg-plist =================================================================== --- x11-drivers/xf86-video-nv/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-nv/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/nv_drv.la lib/xorg/modules/drivers/nv_drv.so +man/man4/nv.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-openchrome/Makefile =================================================================== --- x11-drivers/xf86-video-openchrome/Makefile (revision 336156) +++ x11-drivers/xf86-video-openchrome/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-openchrome PORTVERSION= 0.3.3 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -11,11 +12,9 @@ XORG_CAT= driver USE_XORG= xf86driproto xvmc glproto -MAN4= openchrome.4x MAKE_ARGS+= drivermandir=${LOCALBASE}/man/man4 ONLY_FOR_ARCHS= amd64 i386 ia64 -NO_STAGE= yes .include Index: x11-drivers/xf86-video-openchrome/pkg-plist =================================================================== --- x11-drivers/xf86-video-openchrome/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-openchrome/pkg-plist (working copy) @@ -6,6 +6,7 @@ lib/libchromeXvMCPro.so.1 lib/xorg/modules/drivers/openchrome_drv.la lib/xorg/modules/drivers/openchrome_drv.so +man/man4/openchrome.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-r128/Makefile =================================================================== --- x11-drivers/xf86-video-r128/Makefile (revision 336156) +++ x11-drivers/xf86-video-r128/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-r128 PORTVERSION= 6.9.2 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org Index: x11-drivers/xf86-video-radeonhd/Makefile =================================================================== --- x11-drivers/xf86-video-radeonhd/Makefile (revision 336156) +++ x11-drivers/xf86-video-radeonhd/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= xf86-video-radeonhd PORTVERSION= 1.3.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -17,9 +17,6 @@ CONFIGURE_ARGS= --enable-exa CONFLICTS= xf86-video-radeonhd-devel-[0-9]* -MAN4= radeonhd.4x - -NO_STAGE= yes .include .if ${PORT_OPTIONS:MUTILS} Index: x11-drivers/xf86-video-radeonhd/pkg-plist =================================================================== --- x11-drivers/xf86-video-radeonhd/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-radeonhd/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/radeonhd_drv.la lib/xorg/modules/drivers/radeonhd_drv.so +man/man4/radeonhd.4x.gz %%UTILS%%sbin/rhd_conntest %%UTILS%%sbin/rhd_dump @dirrmtry lib/xorg/modules/drivers Index: x11-drivers/xf86-video-rdc/Makefile =================================================================== --- x11-drivers/xf86-video-rdc/Makefile (revision 336156) +++ x11-drivers/xf86-video-rdc/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= xf86-video-rdc PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= x11-drivers MASTER_SITES= http://www.SpringDaemons.com/stas/ @@ -13,6 +14,8 @@ XORG_CAT= driver USE_XORG= xvmc xf86driproto xextproto x11 glproto +.include + .if defined(WITH_NEW_XORG) IGNORE= does not build with X server 1.12 .endif Index: x11-drivers/xf86-video-rendition/Makefile =================================================================== --- x11-drivers/xf86-video-rendition/Makefile (revision 336156) +++ x11-drivers/xf86-video-rendition/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-rendition PORTVERSION= 4.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +9,5 @@ COMMENT= X.Org rendition display driver XORG_CAT= driver -MAN4= rendition.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-rendition/pkg-plist =================================================================== --- x11-drivers/xf86-video-rendition/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-rendition/pkg-plist (working copy) @@ -2,6 +2,7 @@ lib/xorg/modules/drivers/rendition_drv.so lib/xorg/modules/v10002d.uc lib/xorg/modules/v20002d.uc +man/man4/rendition.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-s3/Makefile =================================================================== --- x11-drivers/xf86-video-s3/Makefile (revision 336156) +++ x11-drivers/xf86-video-s3/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-s3 PORTVERSION= 0.6.5 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org s3 display driver XORG_CAT= driver -MAN4= s3.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-s3/pkg-plist =================================================================== --- x11-drivers/xf86-video-s3/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-s3/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/s3_drv.la lib/xorg/modules/drivers/s3_drv.so +man/man4/s3.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-s3virge/Makefile =================================================================== --- x11-drivers/xf86-video-s3virge/Makefile (revision 336156) +++ x11-drivers/xf86-video-s3virge/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-s3virge PORTVERSION= 1.10.6 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org s3virge display driver XORG_CAT= driver -MAN4= s3virge.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-s3virge/pkg-plist =================================================================== --- x11-drivers/xf86-video-s3virge/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-s3virge/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/s3virge_drv.la lib/xorg/modules/drivers/s3virge_drv.so +man/man4/s3virge.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-savage/Makefile =================================================================== --- x11-drivers/xf86-video-savage/Makefile (revision 336156) +++ x11-drivers/xf86-video-savage/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-savage PORTVERSION= 2.3.7 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org Index: x11-drivers/xf86-video-siliconmotion/Makefile =================================================================== --- x11-drivers/xf86-video-siliconmotion/Makefile (revision 336156) +++ x11-drivers/xf86-video-siliconmotion/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-siliconmotion PORTVERSION= 1.7.7 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org siliconmotion display driver XORG_CAT= driver -MAN4= siliconmotion.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-siliconmotion/pkg-plist =================================================================== --- x11-drivers/xf86-video-siliconmotion/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-siliconmotion/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/siliconmotion_drv.la lib/xorg/modules/drivers/siliconmotion_drv.so +man/man4/siliconmotion.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-sis/Makefile =================================================================== --- x11-drivers/xf86-video-sis/Makefile (revision 336156) +++ x11-drivers/xf86-video-sis/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-sis PORTVERSION= 0.10.7 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -13,7 +14,5 @@ XORG_CAT= driver USE_XORG= xf86dgaproto xf86driproto xineramaproto xf86miscproto glproto -MAN4= sis.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-sis/pkg-plist =================================================================== --- x11-drivers/xf86-video-sis/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-sis/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/sis_drv.la lib/xorg/modules/drivers/sis_drv.so +man/man4/sis.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-sis-intel/Makefile =================================================================== --- x11-drivers/xf86-video-sis-intel/Makefile (revision 336156) +++ x11-drivers/xf86-video-sis-intel/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= xf86-video-sis-intel PORTVERSION= 300407 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-drivers MASTER_SITES= http://downloadmirror.intel.com/15443/eng/ DISTNAME= sis_drv_src_300407 Index: x11-drivers/xf86-video-sunffb/Makefile =================================================================== --- x11-drivers/xf86-video-sunffb/Makefile (revision 336156) +++ x11-drivers/xf86-video-sunffb/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-sunffb PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org Index: x11-drivers/xf86-video-tdfx/Makefile =================================================================== --- x11-drivers/xf86-video-tdfx/Makefile (revision 336156) +++ x11-drivers/xf86-video-tdfx/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-tdfx PORTVERSION= 1.4.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -12,7 +12,5 @@ XORG_CAT= driver USE_XORG= xf86driproto glproto -MAN4= tdfx.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-tdfx/pkg-plist =================================================================== --- x11-drivers/xf86-video-tdfx/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-tdfx/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/tdfx_drv.la lib/xorg/modules/drivers/tdfx_drv.so +man/man4/tdfx.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-tga/Makefile =================================================================== --- x11-drivers/xf86-video-tga/Makefile (revision 336156) +++ x11-drivers/xf86-video-tga/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= driver USE_XORG= xf86dgaproto -NO_STAGE= yes .include Index: x11-drivers/xf86-video-trident/Makefile =================================================================== --- x11-drivers/xf86-video-trident/Makefile (revision 336156) +++ x11-drivers/xf86-video-trident/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-trident PORTVERSION= 1.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,7 +10,5 @@ XORG_CAT= driver USE_XORG= xf86dgaproto -MAN4= trident.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-trident/pkg-plist =================================================================== --- x11-drivers/xf86-video-trident/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-trident/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/trident_drv.la lib/xorg/modules/drivers/trident_drv.so +man/man4/trident.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-tseng/Makefile =================================================================== --- x11-drivers/xf86-video-tseng/Makefile (revision 336156) +++ x11-drivers/xf86-video-tseng/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-tseng PORTVERSION= 1.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -9,7 +9,5 @@ COMMENT= X.Org tseng display driver XORG_CAT= driver -MAN4= tseng.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-tseng/pkg-plist =================================================================== --- x11-drivers/xf86-video-tseng/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-tseng/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/tseng_drv.la lib/xorg/modules/drivers/tseng_drv.so +man/man4/tseng.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-vesa/Makefile =================================================================== --- x11-drivers/xf86-video-vesa/Makefile (revision 336156) +++ x11-drivers/xf86-video-vesa/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-vesa PORTVERSION= 2.3.3 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -8,7 +9,5 @@ COMMENT= X.Org vesa display driver XORG_CAT= driver -MAN4= vesa.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-vesa/pkg-plist =================================================================== --- x11-drivers/xf86-video-vesa/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-vesa/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/vesa_drv.la lib/xorg/modules/drivers/vesa_drv.so +man/man4/vesa.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-via/Makefile =================================================================== --- x11-drivers/xf86-video-via/Makefile (revision 336156) +++ x11-drivers/xf86-video-via/Makefile (working copy) @@ -2,21 +2,19 @@ PORTNAME= xf86-video-via PORTVERSION= 0.2.2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org COMMENT= X.Org via display driver -IGNORE= requires pciVideoPtr typedef +DEPRECATED= requires pciVideoPtr typedef +EXPIRATION_DATE=2014-01-31 USE_GL= gl XORG_CAT= driver USE_XORG= xvmc xf86driproto xextproto x11 glproto -MAN4= via.4x - -NO_STAGE= yes .include .if ${ARCH} == "sparc64" Index: x11-drivers/xf86-video-via/pkg-plist =================================================================== --- x11-drivers/xf86-video-via/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-via/pkg-plist (working copy) @@ -6,6 +6,7 @@ lib/libviaXvMCPro.so.1 lib/xorg/modules/drivers/via_drv.la lib/xorg/modules/drivers/via_drv.so +man/man4/via.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-vmware/Makefile =================================================================== --- x11-drivers/xf86-video-vmware/Makefile (revision 336156) +++ x11-drivers/xf86-video-vmware/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= xf86-video-vmware PORTVERSION= 13.0.1 +PORTREVISION= 1 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,7 +11,4 @@ XORG_CAT= driver USE_XORG= xextproto xineramaproto videoproto -MAN4= vmware.4x - -NO_STAGE= yes .include Index: x11-drivers/xf86-video-vmware/pkg-plist =================================================================== --- x11-drivers/xf86-video-vmware/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-vmware/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/vmware_drv.la lib/xorg/modules/drivers/vmware_drv.so +man/man4/vmware.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xf86-video-voodoo/Makefile =================================================================== --- x11-drivers/xf86-video-voodoo/Makefile (revision 336156) +++ x11-drivers/xf86-video-voodoo/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= xf86-video-voodoo PORTVERSION= 1.2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -10,7 +10,5 @@ XORG_CAT= driver USE_XORG= xf86dgaproto -MAN4= voodoo.4x -NO_STAGE= yes .include Index: x11-drivers/xf86-video-voodoo/pkg-plist =================================================================== --- x11-drivers/xf86-video-voodoo/pkg-plist (revision 336156) +++ x11-drivers/xf86-video-voodoo/pkg-plist (working copy) @@ -1,5 +1,6 @@ lib/xorg/modules/drivers/voodoo_drv.la lib/xorg/modules/drivers/voodoo_drv.so +man/man4/voodoo.4x.gz @dirrmtry lib/xorg/modules/drivers @dirrmtry lib/xorg/modules @dirrmtry lib/xorg Index: x11-drivers/xorg-drivers/Makefile =================================================================== --- x11-drivers/xorg-drivers/Makefile (revision 336156) +++ x11-drivers/xorg-drivers/Makefile (working copy) @@ -97,7 +97,6 @@ # these drivers have a different module name compared to the plugin they install QUIRKS= keyboard:kbd -NO_STAGE= yes .include # Manual add arch specific drivers so they be added to depend lines. Index: x11-fonts/bdftopcf/Makefile =================================================================== --- x11-fonts/bdftopcf/Makefile (revision 336156) +++ x11-fonts/bdftopcf/Makefile (working copy) @@ -11,8 +11,6 @@ XORG_CAT= app USE_XORG= xfont -PLIST_FILES= bin/bdftopcf -MAN1= bdftopcf.1 +PLIST_FILES= bin/bdftopcf man/man1/bdftopcf.1.gz -NO_STAGE= yes .include Index: x11-fonts/encodings/Makefile =================================================================== --- x11-fonts/encodings/Makefile (revision 336156) +++ x11-fonts/encodings/Makefile (working copy) @@ -12,5 +12,4 @@ USE_XORG= fontutil FONTDIR= encodings/large encodings -NO_STAGE= yes .include Index: x11-fonts/font-adobe-100dpi/Makefile =================================================================== --- x11-fonts/font-adobe-100dpi/Makefile (revision 336156) +++ x11-fonts/font-adobe-100dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-adobe-75dpi/Makefile =================================================================== --- x11-fonts/font-adobe-75dpi/Makefile (revision 336156) +++ x11-fonts/font-adobe-75dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-adobe-utopia-100dpi/Makefile =================================================================== --- x11-fonts/font-adobe-utopia-100dpi/Makefile (revision 336156) +++ x11-fonts/font-adobe-utopia-100dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-adobe-utopia-75dpi/Makefile =================================================================== --- x11-fonts/font-adobe-utopia-75dpi/Makefile (revision 336156) +++ x11-fonts/font-adobe-utopia-75dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-adobe-utopia-type1/Makefile =================================================================== --- x11-fonts/font-adobe-utopia-type1/Makefile (revision 336156) +++ x11-fonts/font-adobe-utopia-type1/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-alias/Makefile =================================================================== --- x11-fonts/font-alias/Makefile (revision 336156) +++ x11-fonts/font-alias/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font FONTDIR= 100dpi 75dpi misc cyrillic -NO_STAGE= yes .include Index: x11-fonts/font-arabic-misc/Makefile =================================================================== --- x11-fonts/font-arabic-misc/Makefile (revision 336156) +++ x11-fonts/font-arabic-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bh-100dpi/Makefile =================================================================== --- x11-fonts/font-bh-100dpi/Makefile (revision 336156) +++ x11-fonts/font-bh-100dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-bh-75dpi/Makefile =================================================================== --- x11-fonts/font-bh-75dpi/Makefile (revision 336156) +++ x11-fonts/font-bh-75dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile =================================================================== --- x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile (revision 336156) +++ x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile =================================================================== --- x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile (revision 336156) +++ x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-bh-ttf/Makefile =================================================================== --- x11-fonts/font-bh-ttf/Makefile (revision 336156) +++ x11-fonts/font-bh-ttf/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bh-type1/Makefile =================================================================== --- x11-fonts/font-bh-type1/Makefile (revision 336156) +++ x11-fonts/font-bh-type1/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bitstream-100dpi/Makefile =================================================================== --- x11-fonts/font-bitstream-100dpi/Makefile (revision 336156) +++ x11-fonts/font-bitstream-100dpi/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bitstream-75dpi/Makefile =================================================================== --- x11-fonts/font-bitstream-75dpi/Makefile (revision 336156) +++ x11-fonts/font-bitstream-75dpi/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bitstream-speedo/Makefile =================================================================== --- x11-fonts/font-bitstream-speedo/Makefile (revision 336156) +++ x11-fonts/font-bitstream-speedo/Makefile (working copy) @@ -9,5 +9,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-bitstream-type1/Makefile =================================================================== --- x11-fonts/font-bitstream-type1/Makefile (revision 336156) +++ x11-fonts/font-bitstream-type1/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-cronyx-cyrillic/Makefile =================================================================== --- x11-fonts/font-cronyx-cyrillic/Makefile (revision 336156) +++ x11-fonts/font-cronyx-cyrillic/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-cursor-misc/Makefile =================================================================== --- x11-fonts/font-cursor-misc/Makefile (revision 336156) +++ x11-fonts/font-cursor-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-daewoo-misc/Makefile =================================================================== --- x11-fonts/font-daewoo-misc/Makefile (revision 336156) +++ x11-fonts/font-daewoo-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-dec-misc/Makefile =================================================================== --- x11-fonts/font-dec-misc/Makefile (revision 336156) +++ x11-fonts/font-dec-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-ibm-type1/Makefile =================================================================== --- x11-fonts/font-ibm-type1/Makefile (revision 336156) +++ x11-fonts/font-ibm-type1/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-isas-misc/Makefile =================================================================== --- x11-fonts/font-isas-misc/Makefile (revision 336156) +++ x11-fonts/font-isas-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-jis-misc/Makefile =================================================================== --- x11-fonts/font-jis-misc/Makefile (revision 336156) +++ x11-fonts/font-jis-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-micro-misc/Makefile =================================================================== --- x11-fonts/font-micro-misc/Makefile (revision 336156) +++ x11-fonts/font-micro-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-misc-cyrillic/Makefile =================================================================== --- x11-fonts/font-misc-cyrillic/Makefile (revision 336156) +++ x11-fonts/font-misc-cyrillic/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-misc-ethiopic/Makefile =================================================================== --- x11-fonts/font-misc-ethiopic/Makefile (revision 336156) +++ x11-fonts/font-misc-ethiopic/Makefile (working copy) @@ -11,5 +11,4 @@ INSTALLS_TTF= yes FONTDIR= TTF OTF -NO_STAGE= yes .include Index: x11-fonts/font-misc-meltho/Makefile =================================================================== --- x11-fonts/font-misc-meltho/Makefile (revision 336156) +++ x11-fonts/font-misc-meltho/Makefile (working copy) @@ -11,5 +11,4 @@ INSTALLS_TTF= yes FONTDIR= OTF -NO_STAGE= yes .include Index: x11-fonts/font-misc-misc/Makefile =================================================================== --- x11-fonts/font-misc-misc/Makefile (revision 336156) +++ x11-fonts/font-misc-misc/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-mutt-misc/Makefile =================================================================== --- x11-fonts/font-mutt-misc/Makefile (revision 336156) +++ x11-fonts/font-mutt-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-schumacher-misc/Makefile =================================================================== --- x11-fonts/font-schumacher-misc/Makefile (revision 336156) +++ x11-fonts/font-schumacher-misc/Makefile (working copy) @@ -11,5 +11,4 @@ XORG_CAT= font USE_XORG= fontutil -NO_STAGE= yes .include Index: x11-fonts/font-screen-cyrillic/Makefile =================================================================== --- x11-fonts/font-screen-cyrillic/Makefile (revision 336156) +++ x11-fonts/font-screen-cyrillic/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-sony-misc/Makefile =================================================================== --- x11-fonts/font-sony-misc/Makefile (revision 336156) +++ x11-fonts/font-sony-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-sun-misc/Makefile =================================================================== --- x11-fonts/font-sun-misc/Makefile (revision 336156) +++ x11-fonts/font-sun-misc/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-util/Makefile =================================================================== --- x11-fonts/font-util/Makefile (revision 336156) +++ x11-fonts/font-util/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= font -MAN1= bdftruncate.1 ucs2any.1 - -NO_STAGE= yes .include Index: x11-fonts/font-util/pkg-plist =================================================================== --- x11-fonts/font-util/pkg-plist (revision 336156) +++ x11-fonts/font-util/pkg-plist (working copy) @@ -18,4 +18,6 @@ lib/X11/fonts/util/map-JISX0201.1976-0 lib/X11/fonts/util/map-KOI8-R libdata/pkgconfig/fontutil.pc +man/man1/bdftruncate.1.gz +man/man1/ucs2any.1.gz share/aclocal/fontutil.m4 Index: x11-fonts/font-winitzki-cyrillic/Makefile =================================================================== --- x11-fonts/font-winitzki-cyrillic/Makefile (revision 336156) +++ x11-fonts/font-winitzki-cyrillic/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/font-xfree86-type1/Makefile =================================================================== --- x11-fonts/font-xfree86-type1/Makefile (revision 336156) +++ x11-fonts/font-xfree86-type1/Makefile (working copy) @@ -10,5 +10,4 @@ XORG_CAT= font -NO_STAGE= yes .include Index: x11-fonts/fonttosfnt/Makefile =================================================================== --- x11-fonts/fonttosfnt/Makefile (revision 336156) +++ x11-fonts/fonttosfnt/Makefile (working copy) @@ -12,9 +12,6 @@ XORG_CAT= app USE_XORG= xproto fontenc -PLIST_FILES= bin/fonttosfnt +PLIST_FILES= bin/fonttosfnt fonttosfnt.1.gz -MAN1= fonttosfnt.1 - -NO_STAGE= yes .include Index: x11-fonts/fslsfonts/Makefile =================================================================== --- x11-fonts/fslsfonts/Makefile (revision 336156) +++ x11-fonts/fslsfonts/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 libfs -PLIST_FILES= bin/fslsfonts +PLIST_FILES= bin/fslsfonts man/man1/fslfonts.1.gz -MAN1= fslsfonts.1 - -NO_STAGE= yes .include Index: x11-fonts/libXfont/Makefile =================================================================== --- x11-fonts/libXfont/Makefile (revision 336156) +++ x11-fonts/libXfont/Makefile (working copy) @@ -16,5 +16,4 @@ CONFIGURE_ARGS=--without-xmlto --disable-devel-docs -NO_STAGE= yes .include Index: x11-fonts/libXfontcache/Makefile =================================================================== --- x11-fonts/libXfontcache/Makefile (revision 336156) +++ x11-fonts/libXfontcache/Makefile (working copy) @@ -10,12 +10,4 @@ XORG_CAT= lib USE_XORG= fontcacheproto:both x11 xext xextproto -MAN3= FontCacheChangeCacheSettings.3 \ - FontCacheQueryExtension.3 \ - FontCacheQueryVersion.3 \ - FontCacheGetCacheSettings.3 \ - FontCacheGetCacheStatistics.3 \ - Xfontcache.3 - -NO_STAGE= yes .include Index: x11-fonts/libXfontcache/pkg-plist =================================================================== --- x11-fonts/libXfontcache/pkg-plist (revision 336156) +++ x11-fonts/libXfontcache/pkg-plist (working copy) @@ -3,3 +3,9 @@ lib/libXfontcache.so lib/libXfontcache.so.1 libdata/pkgconfig/xfontcache.pc +man/man3/FontCacheChangeCacheSettings.3.gz +man/man3/FontCacheQueryExtension.3.gz +man/man3/FontCacheQueryVersion.3.gz +man/man3/FontCacheGetCacheSettings.3.gz +man/man3/FontCacheGetCacheStatistics.3.gz +man/man3/Xfontcache.3.gz Index: x11-fonts/mkfontdir/Makefile =================================================================== --- x11-fonts/mkfontdir/Makefile (revision 336156) +++ x11-fonts/mkfontdir/Makefile (working copy) @@ -12,8 +12,6 @@ XORG_CAT= app -PLIST_FILES= bin/mkfontdir -MAN1= mkfontdir.1 +PLIST_FILES= bin/mkfontdir man/man1/mkfontdir.1.gz -NO_STAGE= yes .include Index: x11-fonts/mkfontscale/Makefile =================================================================== --- x11-fonts/mkfontscale/Makefile (revision 336156) +++ x11-fonts/mkfontscale/Makefile (working copy) @@ -15,8 +15,6 @@ CONFIGURE_ARGS+=--disable-maintainer-mode -PLIST_FILES= bin/mkfontscale -MAN1= mkfontscale.1 +PLIST_FILES= bin/mkfontscale man/man1/mkfontscale.1.gz -NO_STAGE= yes .include Index: x11-fonts/showfont/Makefile =================================================================== --- x11-fonts/showfont/Makefile (revision 336156) +++ x11-fonts/showfont/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= libfs -PLIST_FILES= bin/showfont +PLIST_FILES= bin/showfont man/man1/showfont.1.gz -MAN1= showfont.1 - -NO_STAGE= yes .include Index: x11-fonts/xfontsel/Makefile =================================================================== --- x11-fonts/xfontsel/Makefile (revision 336156) +++ x11-fonts/xfontsel/Makefile (working copy) @@ -10,7 +10,4 @@ XORG_CAT= app USE_XORG= xt xaw -MAN1= xfontsel.1 - -NO_STAGE= yes .include Index: x11-fonts/xfontsel/pkg-plist =================================================================== --- x11-fonts/xfontsel/pkg-plist (revision 336156) +++ x11-fonts/xfontsel/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xfontsel +man/man1/xfontsel.1.gz share/X11/app-defaults/XFontSel @dirrmtry share/X11/app-defaults @dirrmtry share/X11 Index: x11-fonts/xfs/Makefile =================================================================== --- x11-fonts/xfs/Makefile (revision 336156) +++ x11-fonts/xfs/Makefile (working copy) @@ -14,9 +14,6 @@ USE_RC_SUBR= xfs CONFIGURE_ARGS= --without-xmlto --without-fop -MAN1= xfs.1 - -NO_STAGE= yes post-patch: ${REINPLACE_CMD} '/^config_DATA/d' ${WRKSRC}/config/Makefile.in .if defined(WITHOUT_XFS_CACHE) @@ -27,9 +24,7 @@ @cd ${WRKSRC}/config/ && ${GMAKE} config post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/config/config ${PREFIX}/etc/X11/fs/config.default - @if [ ! -f ${PREFIX}/etc/X11/fs/config ]; then \ - ${INSTALL_SCRIPT} ${WRKSRC}/config/config ${PREFIX}/etc/X11/fs/config; \ - fi + ${INSTALL_SCRIPT} ${WRKSRC}/config/config ${STAGEDIR}${PREFIX}/etc/X11/fs/config.default + ${INSTALL_SCRIPT} ${WRKSRC}/config/config ${STAGEDIR}${PREFIX}/etc/X11/fs/config; \ .include Index: x11-fonts/xfs/pkg-plist =================================================================== --- x11-fonts/xfs/pkg-plist (revision 336156) +++ x11-fonts/xfs/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/xfs +man/man1/xfs.1.gz @unexec if cmp -s %D/etc/X11/fs/config.default %D/etc/X11/fs/config; then rm -f %D/etc/X11/fs/config; fi etc/X11/fs/config.default @exec if [ ! -f %D/etc/X11/fs/config ] ; then cp -p %D/%F %B/config; fi Index: x11-fonts/xfsinfo/Makefile =================================================================== --- x11-fonts/xfsinfo/Makefile (revision 336156) +++ x11-fonts/xfsinfo/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 libfs -PLIST_FILES= bin/xfsinfo +PLIST_FILES= bin/xfsinfo man/man1/xfsinfo.1.gz -MAN1= xfsinfo.1 - -NO_STAGE= yes .include Index: x11-fonts/xlsfonts/Makefile =================================================================== --- x11-fonts/xlsfonts/Makefile (revision 336156) +++ x11-fonts/xlsfonts/Makefile (working copy) @@ -10,9 +10,6 @@ XORG_CAT= app USE_XORG= x11 -PLIST_FILES= bin/xlsfonts +PLIST_FILES= bin/xlsfonts man/man1/xlsfonts.1.gz -MAN1= xlsfonts.1 - -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts/Makefile =================================================================== --- x11-fonts/xorg-fonts/Makefile (revision 336156) +++ x11-fonts/xorg-fonts/Makefile (working copy) @@ -23,7 +23,6 @@ NO_BUILD= yes -NO_STAGE= yes do-install: ${MKDIR} ${PREFIX}/libdata/xorg ${TOUCH} ${PREFIX}/libdata/xorg/fonts Index: x11-fonts/xorg-fonts-100dpi/Makefile =================================================================== --- x11-fonts/xorg-fonts-100dpi/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-100dpi/Makefile (working copy) @@ -21,9 +21,9 @@ CONFLICTS= XFree86-font100dpi-* NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts do-install: # empty -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts-75dpi/Makefile =================================================================== --- x11-fonts/xorg-fonts-75dpi/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-75dpi/Makefile (working copy) @@ -21,9 +21,9 @@ CONFLICTS= XFree86-font75dpi-* NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts do-install: # empty -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts-cyrillic/Makefile =================================================================== --- x11-fonts/xorg-fonts-cyrillic/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-cyrillic/Makefile (working copy) @@ -20,9 +20,9 @@ CONFLICTS= XFree86-fontCyrillic-* NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts do-install: # empty -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts-miscbitmaps/Makefile =================================================================== --- x11-fonts/xorg-fonts-miscbitmaps/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-miscbitmaps/Makefile (working copy) @@ -27,9 +27,9 @@ CONFLICTS= XFree86-fontDefaultBitmaps-* NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts do-install: # empty -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts-truetype/Makefile =================================================================== --- x11-fonts/xorg-fonts-truetype/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-truetype/Makefile (working copy) @@ -21,7 +21,7 @@ do-install: # empty NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts -NO_STAGE= yes .include Index: x11-fonts/xorg-fonts-type1/Makefile =================================================================== --- x11-fonts/xorg-fonts-type1/Makefile (revision 336156) +++ x11-fonts/xorg-fonts-type1/Makefile (working copy) @@ -23,7 +23,7 @@ do-install: # empty NO_BUILD= # none +NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts -NO_STAGE= yes .include Index: x11-servers/mga_hal/Makefile =================================================================== --- x11-servers/mga_hal/Makefile (revision 336156) +++ x11-servers/mga_hal/Makefile (working copy) @@ -16,7 +16,6 @@ ONLY_FOR_ARCHS= i386 amd64 -NO_STAGE= yes .include .if ${ARCH} == "i386" @@ -31,13 +30,13 @@ do-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/readme.txt ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/readme.txt ${STAGEDIR}${DOCSDIR} .endif - ${MKDIR} ${PREFIX}/lib/modules/drivers + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/modules/drivers ${INSTALL_DATA} ${WRKSRC}/xserver/${XORG_VERSION}/mga_hal_drv.so \ - ${PREFIX}/lib/modules/drivers/ + ${STAGEDIR}${PREFIX}/lib/modules/drivers/ ${INSTALL_DATA} ${WRKSRC}/xserver/${XORG_VERSION}/mga_drv.so \ - ${PREFIX}/lib/modules/drivers/ + ${STAGEDIR}${PREFIX}/lib/modules/drivers/ .include Index: x11-servers/xephyr/Makefile =================================================================== --- x11-servers/xephyr/Makefile (revision 336156) +++ x11-servers/xephyr/Makefile (working copy) @@ -21,8 +21,8 @@ SLAVE_PORT= yes PLIST_FILES= bin/Xephyr -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/hw/kdrive/ephyr/man/Xephyr.1 ${STAGEDIR}${PREFIX}/man/man1/ .include "${MASTERDIR}/Makefile" Index: x11-servers/xorg-dmx/Makefile =================================================================== --- x11-servers/xorg-dmx/Makefile (revision 336156) +++ x11-servers/xorg-dmx/Makefile (working copy) @@ -20,11 +20,8 @@ --without-xmlto --disable-docs --disable-devel-docs \ --enable-dmx --localstatedir=/var --without-dtrace -MAN1= Xdmx.1 dmxtodmx.1 vdltodmx.1 xdmxconfig.1 - SLAVE_PORT= yes -NO_STAGE= yes do-install: cd ${WRKSRC}/hw/dmx; ${MAKE} install Index: x11-servers/xorg-dmx/pkg-plist =================================================================== --- x11-servers/xorg-dmx/pkg-plist (revision 336156) +++ x11-servers/xorg-dmx/pkg-plist (working copy) @@ -11,3 +11,8 @@ bin/dmxwininfo bin/vdltodmx bin/xdmxconfig +man/man1/Xdmx.1.gz +man/man1/dmxtodmx.1.gz +man/man1/vdltodmx.1.gz +man/man1/xdmxconfig.1.gz + Index: x11-servers/xorg-nestserver/Makefile =================================================================== --- x11-servers/xorg-nestserver/Makefile (revision 336156) +++ x11-servers/xorg-nestserver/Makefile (working copy) @@ -20,18 +20,16 @@ --localstatedir=/var --without-dtrace SLAVE_PORT= yes -PLIST_FILES= bin/Xnest -MAN1= Xnest.1 +PLIST_FILES= bin/Xnest man/man1/Xnest.1.gz -NO_STAGE= yes .include do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${STAGEDIR}${PREFIX}/bin/ .if defined(WITH_NEW_XORG) - ${INSTALL_MAN} ${WRKSRC}/hw/xnest/man/Xnest.1 ${PREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/hw/xnest/man/Xnest.1 ${STAGEDIR}${PREFIX}/man/man1/ .else - ${INSTALL_MAN} ${WRKSRC}/hw/xnest/Xnest.1 ${PREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/hw/xnest/Xnest.1 ${STAGEDIR}${PREFIX}/man/man1/ .endif .include "${MASTERDIR}/Makefile" Index: x11-servers/xorg-server/Makefile =================================================================== --- x11-servers/xorg-server/Makefile (revision 336156) +++ x11-servers/xorg-server/Makefile (working copy) @@ -74,24 +74,8 @@ .if ${SLAVE_PORT} == "no" SUB_FILES= pkg-install pkg-deinstall -MAN1= Xorg.1 \ - Xserver.1 \ - cvt.1 \ - gtf.1 -MAN4= exa.4 \ - fbdevhw.4 -MAN5= xorg.conf.5 - -.if defined(WITH_NEW_XORG) -MAN5+= xorg.conf.d.5 .endif -.else -# for slave ports we need to overwrite PLIST, so it doesn't overwrite -# PLIST_FILES, with the masterport plist. -PLIST= ${.CURDIR}/pkg-plist -.endif -NO_STAGE= yes .include .if defined(WITH_OPENSSL_BASE) Index: x11-servers/xorg-server/pkg-plist =================================================================== --- x11-servers/xorg-server/pkg-plist (revision 336156) +++ x11-servers/xorg-server/pkg-plist (working copy) @@ -226,6 +226,14 @@ lib/xorg/modules/multimedia/uda1380_drv.so lib/xorg/protocol.txt libdata/pkgconfig/xorg-server.pc +man/man1/Xorg.1.gz +man/man1/Xserver.1.gz +man/man1/cvt.1.gz +man/man1/gtf.1.gz +man/man4/exa.4.gz +man/man4/fbdevhw.4.gz +man/man5/xorg.conf.5.gz +%%NEW%%man/man5/xorg.conf.d.5.gz share/aclocal/xorg-server.m4 %%NEW%%@exec /bin/mkdir -p %D/share/X11/xorg.conf.d @comment %%NEW%%@dirrm share/doc/xorg-server Index: x11-servers/xorg-vfbserver/Makefile =================================================================== --- x11-servers/xorg-vfbserver/Makefile (revision 336156) +++ x11-servers/xorg-vfbserver/Makefile (working copy) @@ -20,10 +20,8 @@ --localstatedir=/var --without-dtrace SLAVE_PORT= yes -PLIST_FILES= bin/Xvfb -MAN1= Xvfb.1 +PLIST_FILES= bin/Xvfb man/man1/Xvfb.1.gz -NO_STAGE= yes do-install: cd ${WRKSRC}/hw/vfb; ${MAKE} install Index: x11-themes/gtk-murrine-engine/Makefile =================================================================== --- x11-themes/gtk-murrine-engine/Makefile (revision 336156) +++ x11-themes/gtk-murrine-engine/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= murrine PORTVERSION= 0.98.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-themes MASTER_SITES= GNOME PKGNAMEPREFIX= gtk- Index: x11-themes/xcursor-themes/Makefile =================================================================== --- x11-themes/xcursor-themes/Makefile (revision 336156) +++ x11-themes/xcursor-themes/Makefile (working copy) @@ -16,5 +16,4 @@ XORG_CAT= data -NO_STAGE= yes .include Index: x11-toolkits/gtkglext/Makefile =================================================================== --- x11-toolkits/gtkglext/Makefile (revision 336156) +++ x11-toolkits/gtkglext/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= gtkglext PORTVERSION= 1.2.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= x11-toolkits MASTER_SITES= SF DIST_SUBDIR= gnome2 Index: x11-toolkits/libXaw/Makefile =================================================================== --- x11-toolkits/libXaw/Makefile (revision 336156) +++ x11-toolkits/libXaw/Makefile (working copy) @@ -14,7 +14,4 @@ USES= gmake CONFIGURE_ARGS+=--without-xmlto -MAN3= Xaw.3 - -NO_STAGE= yes .include Index: x11-toolkits/libXaw/pkg-plist =================================================================== --- x11-toolkits/libXaw/pkg-plist (revision 336156) +++ x11-toolkits/libXaw/pkg-plist (working copy) @@ -82,6 +82,7 @@ lib/libXaw7.so.7 libdata/pkgconfig/xaw6.pc libdata/pkgconfig/xaw7.pc +man/man3/xaw.3.gz %%DOCSDIR%%/AsciiSink.xml %%DOCSDIR%%/AsciiSource.xml %%DOCSDIR%%/AsciiText.xml Index: x11-toolkits/libXmu/Makefile =================================================================== --- x11-toolkits/libXmu/Makefile (revision 336156) +++ x11-toolkits/libXmu/Makefile (working copy) @@ -12,5 +12,4 @@ XORG_CAT= lib USE_XORG= xproto:both x11 xt xext -NO_STAGE= yes .include Index: x11-toolkits/libXt/Makefile =================================================================== --- x11-toolkits/libXt/Makefile (revision 336156) +++ x11-toolkits/libXt/Makefile (working copy) @@ -13,276 +13,6 @@ USE_XORG= x11 sm xproto:both kbproto CONFIGURE_ARGS= --disable-specs -MAN3= MenuPopdown.3 \ - MenuPopup.3 \ - XtAddActions.3 \ - XtAddCallback.3 \ - XtAddCallbacks.3 \ - XtAddConverter.3 \ - XtAddEventHandler.3 \ - XtAddExposureToRegion.3 \ - XtAddGrab.3 \ - XtAddInput.3 \ - XtAddRawEventHandler.3 \ - XtAddTimeOut.3 \ - XtAddWorkProc.3 \ - XtAllocateGC.3 \ - XtAppAddActionHook.3 \ - XtAppAddActions.3 \ - XtAppAddBlockHook.3 \ - XtAppAddConverter.3 \ - XtAppAddInput.3 \ - XtAppAddSignal.3 \ - XtAppAddTimeOut.3 \ - XtAppAddWorkProc.3 \ - XtAppCreateShell.3 \ - XtAppError.3 \ - XtAppErrorMsg.3 \ - XtAppGetErrorDatabase.3 \ - XtAppGetErrorDatabaseText.3 \ - XtAppGetExitFlag.3 \ - XtAppGetSelectionTimeout.3 \ - XtAppInitialize.3 \ - XtAppLock.3 \ - XtAppMainLoop.3 \ - XtAppNextEvent.3 \ - XtAppPeekEvent.3 \ - XtAppPending.3 \ - XtAppProcessEvent.3 \ - XtAppReleaseCacheRefs.3 \ - XtAppSetErrorHandler.3 \ - XtAppSetErrorMsgHandler.3 \ - XtAppSetExitFlag.3 \ - XtAppSetFallbackResources.3 \ - XtAppSetSelectionTimeout.3 \ - XtAppSetTypeConverter.3 \ - XtAppSetWarningHandler.3 \ - XtAppSetWarningMsgHandler.3 \ - XtAppUnlock.3 \ - XtAppWarning.3 \ - XtAppWarningMsg.3 \ - XtAsprintf.3 \ - XtAugmentTranslations.3 \ - XtBuildEventMask.3 \ - XtCallAcceptFocus.3\ - XtCallActionProc.3 \ - XtCallCallbackList.3 \ - XtCallCallbacks.3 \ - XtCallConverter.3 \ - XtCallbackExclusive.3 \ - XtCallbackNone.3 \ - XtCallbackNonexclusive.3 \ - XtCallbackPopdown.3 \ - XtCalloc.3 \ - XtCancelSelectionRequest.3 \ - XtChangeManagedSet.3 \ - XtCheckSubclass.3 \ - XtClass.3\ - XtCloseDisplay.3\ - XtConfigureWidget.3\ - XtConvert.3\ - XtConvertAndStore.3\ - XtConvertCase.3\ - XtCreateApplicationContext.3\ - XtCreateApplicationShell.3\ - XtCreateManagedWidget.3\ - XtCreatePopupShell.3\ - XtCreateSelectionRequest.3\ - XtCreateWidget.3\ - XtCreateWindow.3\ - XtDatabase.3\ - XtDestroyApplicationContext.3\ - XtDestroyWidget.3\ - XtDirectConvert.3\ - XtDisownSelection.3 \ - XtDispatchEvent.3 \ - XtDispatchEventToWidget.3\ - XtDisplay.3\ - XtDisplayInitialize.3\ - XtDisplayOfObject.3\ - XtDisplayStringConversionWarning.3\ - XtDisplayToApplicationContext.3\ - XtError.3\ - XtErrorMsg.3\ - XtFindFile.3\ - XtFree.3\ - XtGetActionKeysym.3\ - XtGetActionList.3\ - XtGetApplicationNameAndClass.3\ - XtGetApplicationResources.3\ - XtGetClassExtension.3\ - XtGetConstraintResourceList.3\ - XtGetDisplays.3\ - XtGetErrorDatabase.3\ - XtGetErrorDatabaseText.3\ - XtGetGC.3\ - XtGetKeyboardFocusWidget.3\ - XtGetKeysymTable.3\ - XtGetMultiClickTime.3 \ - XtGetResourceList.3\ - XtGetSelectionParameters.3\ - XtGetSelectionRequest.3\ - XtGetSelectionTimeout.3\ - XtGetSelectionValue.3\ - XtGetSelectionValueIncremental.3 \ - XtGetSelectionValues.3\ - XtGetSelectionValuesIncremental.3 \ - XtGetSubresources.3 \ - XtGetSubvalues.3 \ - XtGetValues.3 \ - XtGrabButton.3 \ - XtGrabKey.3 \ - XtGrabKeyboard.3 \ - XtGrabPointer.3 \ - XtHasCallbacks.3 \ - XtHooksOfDisplay.3 \ - XtInitialize.3 \ - XtInitializeWidgetClass.3 \ - XtInsertEventHandler.3 \ - XtInsertEventTypeHandler.3 \ - XtInsertRawEventHandler.3 \ - XtInstallAccelerators.3\ - XtInstallAllAccelerators.3\ - XtIsApplicationShell.3\ - XtIsComposite.3\ - XtIsConstraint.3\ - XtIsManaged.3\ - XtIsObject.3\ - XtIsOverrideShell.3\ - XtIsRealized.3\ - XtIsRectObj.3\ - XtIsSensitive.3\ - XtIsSessionShell.3\ - XtIsShell.3\ - XtIsSubclass.3\ - XtIsTopLevelShell.3\ - XtIsTransientShell.3\ - XtIsVendorShell.3\ - XtIsWMShell.3\ - XtIsWidget.3\ - XtKeysymToKeycodeList.3\ - XtLastEventProcessed.3\ - XtLastTimestampProcessed.3 \ - XtMainLoop.3 \ - XtMakeGeometryRequest.3 \ - XtMakeResizeRequest.3 \ - XtMalloc.3 \ - XtManageChild.3 \ - XtManageChildren.3 \ - XtMapWidget.3 \ - XtMergeArgLists.3 \ - XtMoveWidget.3 \ - XtName.3 \ - XtNameToWidget.3 \ - XtNew.3 \ - XtNewString.3 \ - XtNextEvent.3 \ - XtNoticeSignal.3 \ - XtNumber.3 \ - XtOffset.3 \ - XtOffsetOf.3 \ - XtOpenApplication.3 \ - XtOpenDisplay.3 \ - XtOverrideTranslations.3 \ - XtOwnSelection.3 \ - XtOwnSelectionIncremental.3 \ - XtParent.3 \ - XtParseAcceleratorTable.3 \ - XtParseTranslationTable.3 \ - XtPeekEvent.3 \ - XtPending.3 \ - XtPopdown.3 \ - XtPopup.3 \ - XtPopupSpringLoaded.3 \ - XtProcessEvent.3 \ - XtProcessLock.3 \ - XtProcessUnlock.3 \ - XtQueryGeometry.3 \ - XtRealizeWidget.3 \ - XtRealloc.3 \ - XtRegisterCaseConverter.3 \ - XtRegisterDrawable.3 \ - XtRegisterExtensionSelector.3 \ - XtRegisterGrabAction.3 \ - XtReleaseGC.3 \ - XtReleasePropertyAtom.3 \ - XtRemoveActionHook.3 \ - XtRemoveAllCallbacks.3 \ - XtRemoveBlockHook.3 \ - XtRemoveCallback.3 \ - XtRemoveCallbacks.3 \ - XtRemoveEventHandler.3\ - XtRemoveEventTypeHandler.3\ - XtRemoveGrab.3\ - XtRemoveInput.3\ - XtRemoveRawEventHandler.3\ - XtRemoveSignal.3\ - XtRemoveTimeOut.3\ - XtRemoveWorkProc.3\ - XtReservePropertyAtom.3\ - XtResizeWidget.3\ - XtResolvePathname.3\ - XtScreen.3\ - XtScreenDatabase.3\ - XtScreenOfObject.3\ - XtSendSelectionRequest.3\ - XtSessionGetToken.3\ - XtSessionReturnToken.3\ - XtSetArg.3\ - XtSetErrorHandler.3\ - XtSetErrorMsgHandler.3\ - XtSetEventDispatcher.3\ - XtSetKeyTranslator.3\ - XtSetKeyboardFocus.3\ - XtSetLanguageProc.3 \ - XtSetMappedWhenManaged.3 \ - XtSetMultiClickTime.3 \ - XtSetSelectionParameters.3 \ - XtSetSelectionTimeout.3 \ - XtSetSensitive.3 \ - XtSetSubvalues.3 \ - XtSetTypeConverter.3 \ - XtSetValues.3 \ - XtSetWMColormapWindows.3 \ - XtSetWarningHandler.3 \ - XtSetWarningMsgHandler.3\ - XtStringConversionWarning.3\ - XtSuperclass.3\ - XtToolkitInitialize.3\ - XtToolkitThreadInitialize.3\ - XtTranslateCoords.3 \ - XtTranslateKeycode.3\ - XtUngrabButton.3\ - XtUngrabKey.3\ - XtUngrabKeyboard.3\ - XtUngrabPointer.3\ - XtUninstallTranslations.3\ - XtUnmanageChild.3\ - XtUnmanageChildren.3\ - XtUnmapWidget.3\ - XtUnrealizeWidget.3\ - XtUnregisterDrawable.3\ - XtVaAppCreateShell.3\ - XtVaAppInitialize.3\ - XtVaCreateArgsList.3\ - XtVaCreateManagedWidget.3\ - XtVaCreatePopupShell.3\ - XtVaCreateWidget.3\ - XtVaGetApplicationResources.3\ - XtVaGetSubresources.3\ - XtVaGetSubvalues.3 \ - XtVaGetValues.3 \ - XtVaOpenApplication.3\ - XtVaSetSubvalues.3\ - XtVaSetValues.3\ - XtWarning.3 \ - XtWarningMsg.3\ - XtWidgetToApplicationContext.3\ - XtWindow.3 \ - XtWindowOfObject.3 \ - XtWindowToWidget.3 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} 's/test.*-traditional.*;/true;/' \ ${WRKSRC}/configure Index: x11-toolkits/libXt/pkg-plist =================================================================== --- x11-toolkits/libXt/pkg-plist (revision 336156) +++ x11-toolkits/libXt/pkg-plist (working copy) @@ -36,3 +36,271 @@ lib/libXt.so lib/libXt.so.6 libdata/pkgconfig/xt.pc +man/man3/MenuPopdown.3.gz +man/man3/MenuPopup.3.gz +man/man3/XtAddActions.3.gz +man/man3/XtAddCallback.3.gz +man/man3/XtAddCallbacks.3.gz +man/man3/XtAddConverter.3.gz +man/man3/XtAddEventHandler.3.gz +man/man3/XtAddExposureToRegion.3.gz +man/man3/XtAddGrab.3.gz +man/man3/XtAddInput.3.gz +man/man3/XtAddRawEventHandler.3.gz +man/man3/XtAddTimeOut.3.gz +man/man3/XtAddWorkProc.3.gz +man/man3/XtAllocateGC.3.gz +man/man3/XtAppAddActionHook.3.gz +man/man3/XtAppAddActions.3.gz +man/man3/XtAppAddBlockHook.3.gz +man/man3/XtAppAddConverter.3.gz +man/man3/XtAppAddInput.3.gz +man/man3/XtAppAddSignal.3.gz +man/man3/XtAppAddTimeOut.3.gz +man/man3/XtAppAddWorkProc.3.gz +man/man3/XtAppCreateShell.3.gz +man/man3/XtAppError.3.gz +man/man3/XtAppErrorMsg.3.gz +man/man3/XtAppGetErrorDatabase.3.gz +man/man3/XtAppGetErrorDatabaseText.3.gz +man/man3/XtAppGetExitFlag.3.gz +man/man3/XtAppGetSelectionTimeout.3.gz +man/man3/XtAppInitialize.3.gz +man/man3/XtAppLock.3.gz +man/man3/XtAppMainLoop.3.gz +man/man3/XtAppNextEvent.3.gz +man/man3/XtAppPeekEvent.3.gz +man/man3/XtAppPending.3.gz +man/man3/XtAppProcessEvent.3.gz +man/man3/XtAppReleaseCacheRefs.3.gz +man/man3/XtAppSetErrorHandler.3.gz +man/man3/XtAppSetErrorMsgHandler.3.gz +man/man3/XtAppSetExitFlag.3.gz +man/man3/XtAppSetFallbackResources.3.gz +man/man3/XtAppSetSelectionTimeout.3.gz +man/man3/XtAppSetTypeConverter.3.gz +man/man3/XtAppSetWarningHandler.3.gz +man/man3/XtAppSetWarningMsgHandler.3.gz +man/man3/XtAppUnlock.3.gz +man/man3/XtAppWarning.3.gz +man/man3/XtAppWarningMsg.3.gz +man/man3/XtAsprintf.3.gz +man/man3/XtAugmentTranslations.3.gz +man/man3/XtBuildEventMask.3.gz +man/man3/XtCallAcceptFocus.3.gz +man/man3/XtCallActionProc.3.gz +man/man3/XtCallCallbackList.3.gz +man/man3/XtCallCallbacks.3.gz +man/man3/XtCallConverter.3.gz +man/man3/XtCallbackExclusive.3.gz +man/man3/XtCallbackNone.3.gz +man/man3/XtCallbackNonexclusive.3.gz +man/man3/XtCallbackPopdown.3.gz +man/man3/XtCalloc.3.gz +man/man3/XtCancelSelectionRequest.3.gz +man/man3/XtChangeManagedSet.3.gz +man/man3/XtCheckSubclass.3.gz +man/man3/XtClass.3.gz +man/man3/XtCloseDisplay.3.gz +man/man3/XtConfigureWidget.3.gz +man/man3/XtConvert.3.gz +man/man3/XtConvertAndStore.3.gz +man/man3/XtConvertCase.3.gz +man/man3/XtCreateApplicationContext.3.gz +man/man3/XtCreateApplicationShell.3.gz +man/man3/XtCreateManagedWidget.3.gz +man/man3/XtCreatePopupShell.3.gz +man/man3/XtCreateSelectionRequest.3.gz +man/man3/XtCreateWidget.3.gz +man/man3/XtCreateWindow.3.gz +man/man3/XtDatabase.3.gz +man/man3/XtDestroyApplicationContext.3.gz +man/man3/XtDestroyWidget.3.gz +man/man3/XtDirectConvert.3.gz +man/man3/XtDisownSelection.3.gz +man/man3/XtDispatchEvent.3 .gz +man/man3/XtDispatchEventToWidget.3.gz +man/man3/XtDisplay.3.gz +man/man3/XtDisplayInitialize.3.gz +man/man3/XtDisplayOfObject.3.gz +man/man3/XtDisplayStringConversionWarning.3.gz +man/man3/XtDisplayToApplicationContext.3.gz +man/man3/XtError.3.gz +man/man3/XtErrorMsg.3.gz +man/man3/XtFindFile.3.gz +man/man3/XtFree.3.gz +man/man3/XtGetActionKeysym.3.gz +man/man3/XtGetActionList.3.gz +man/man3/XtGetApplicationNameAndClass.3.gz +man/man3/XtGetApplicationResources.3.gz +man/man3/XtGetClassExtension.3.gz +man/man3/XtGetConstraintResourceList.3.gz +man/man3/XtGetDisplays.3.gz +man/man3/XtGetErrorDatabase.3.gz +man/man3/XtGetErrorDatabaseText.3.gz +man/man3/XtGetGC.3.gz +man/man3/XtGetKeyboardFocusWidget.3.gz +man/man3/XtGetKeysymTable.3.gz +man/man3/XtGetMultiClickTime.3.gz +man/man3/XtGetResourceList.3.gz +man/man3/XtGetSelectionParameters.3.gz +man/man3/XtGetSelectionRequest.3.gz +man/man3/XtGetSelectionTimeout.3.gz +man/man3/XtGetSelectionValue.3.gz +man/man3/XtGetSelectionValueIncremental.3.gz +man/man3/XtGetSelectionValues.3.gz +man/man3/XtGetSelectionValuesIncremental.3.gz +man/man3/XtGetSubresources.3.gz +man/man3/XtGetSubvalues.3.gz +man/man3/XtGetValues.3.gz +man/man3/XtGrabButton.3.gz +man/man3/XtGrabKey.3.gz +man/man3/XtGrabKeyboard.3.gz +man/man3/XtGrabPointer.3.gz +man/man3/XtHasCallbacks.3.gz +man/man3/XtHooksOfDisplay.3.gz +man/man3/XtInitialize.3.gz +man/man3/XtInitializeWidgetClass.3.gz +man/man3/XtInsertEventHandler.3.gz +man/man3/XtInsertEventTypeHandler.3.gz +man/man3/XtInsertRawEventHandler.3.gz +man/man3/XtInstallAccelerators.3.gz +man/man3/XtInstallAllAccelerators.3.gz +man/man3/XtIsApplicationShell.3.gz +man/man3/XtIsComposite.3.gz +man/man3/XtIsConstraint.3.gz +man/man3/XtIsManaged.3.gz +man/man3/XtIsObject.3.gz +man/man3/XtIsOverrideShell.3.gz +man/man3/XtIsRealized.3.gz +man/man3/XtIsRectObj.3.gz +man/man3/XtIsSensitive.3.gz +man/man3/XtIsSessionShell.3.gz +man/man3/XtIsShell.3.gz +man/man3/XtIsSubclass.3.gz +man/man3/XtIsTopLevelShell.3.gz +man/man3/XtIsTransientShell.3.gz +man/man3/XtIsVendorShell.3.gz +man/man3/XtIsWMShell.3.gz +man/man3/XtIsWidget.3.gz +man/man3/XtKeysymToKeycodeList.3.gz +man/man3/XtLastEventProcessed.3.gz +man/man3/XtLastTimestampProcessed.3.gz +man/man3/XtMainLoop.3.gz +man/man3/XtMakeGeometryRequest.3.gz +man/man3/XtMakeResizeRequest.3.gz +man/man3/XtMalloc.3.gz +man/man3/XtManageChild.3.gz +man/man3/XtManageChildren.3.gz +man/man3/XtMapWidget.3.gz +man/man3/XtMergeArgLists.3.gz +man/man3/XtMoveWidget.3.gz +man/man3/XtName.3.gz +man/man3/XtNameToWidget.3.gz +man/man3/XtNew.3.gz +man/man3/XtNewString.3.gz +man/man3/XtNextEvent.3.gz +man/man3/XtNoticeSignal.3.gz +man/man3/XtNumber.3.gz +man/man3/XtOffset.3.gz +man/man3/XtOffsetOf.3.gz +man/man3/XtOpenApplication.3.gz +man/man3/XtOpenDisplay.3.gz +man/man3/XtOverrideTranslations.3.gz +man/man3/XtOwnSelection.3.gz +man/man3/XtOwnSelectionIncremental.3.gz +man/man3/XtParent.3.gz +man/man3/XtParseAcceleratorTable.3.gz +man/man3/XtParseTranslationTable.3.gz +man/man3/XtPeekEvent.3.gz +man/man3/XtPending.3.gz +man/man3/XtPopdown.3.gz +man/man3/XtPopup.3.gz +man/man3/XtPopupSpringLoaded.3.gz +man/man3/XtProcessEvent.3.gz +man/man3/XtProcessLock.3.gz +man/man3/XtProcessUnlock.3.gz +man/man3/XtQueryGeometry.3.gz +man/man3/XtRealizeWidget.3.gz +man/man3/XtRealloc.3.gz +man/man3/XtRegisterCaseConverter.3.gz +man/man3/XtRegisterDrawable.3.gz +man/man3/XtRegisterExtensionSelector.3.gz +man/man3/XtRegisterGrabAction.3.gz +man/man3/XtReleaseGC.3.gz +man/man3/XtReleasePropertyAtom.3.gz +man/man3/XtRemoveActionHook.3.gz +man/man3/XtRemoveAllCallbacks.3.gz +man/man3/XtRemoveBlockHook.3.gz +man/man3/XtRemoveCallback.3.gz +man/man3/XtRemoveCallbacks.3.gz +man/man3/XtRemoveEventHandler.3.gz +man/man3/XtRemoveEventTypeHandler.3.gz +man/man3/XtRemoveGrab.3.gz +man/man3/XtRemoveInput.3.gz +man/man3/XtRemoveRawEventHandler.3.gz +man/man3/XtRemoveSignal.3.gz +man/man3/XtRemoveTimeOut.3.gz +man/man3/XtRemoveWorkProc.3.gz +man/man3/XtReservePropertyAtom.3.gz +man/man3/XtResizeWidget.3.gz +man/man3/XtResolvePathname.3.gz +man/man3/XtScreen.3.gz +man/man3/XtScreenDatabase.3.gz +man/man3/XtScreenOfObject.3.gz +man/man3/XtSendSelectionRequest.3.gz +man/man3/XtSessionGetToken.3.gz +man/man3/XtSessionReturnToken.3.gz +man/man3/XtSetArg.3.gz +man/man3/XtSetErrorHandler.3.gz +man/man3/XtSetErrorMsgHandler.3.gz +man/man3/XtSetEventDispatcher.3.gz +man/man3/XtSetKeyTranslator.3.gz +man/man3/XtSetKeyboardFocus.3.gz +man/man3/XtSetLanguageProc.3.gz +man/man3/XtSetMappedWhenManaged.3.gz +man/man3/XtSetMultiClickTime.3.gz +man/man3/XtSetSelectionParameters.3.gz +man/man3/XtSetSelectionTimeout.3.gz +man/man3/XtSetSensitive.3.gz +man/man3/XtSetSubvalues.3.gz +man/man3/XtSetTypeConverter.3.gz +man/man3/XtSetValues.3.gz +man/man3/XtSetWMColormapWindows.3.gz +man/man3/XtSetWarningHandler.3.gz +man/man3/XtSetWarningMsgHandler.3.gz +man/man3/XtStringConversionWarning.3.gz +man/man3/XtSuperclass.3.gz +man/man3/XtToolkitInitialize.3.gz +man/man3/XtToolkitThreadInitialize.3.gz +man/man3/XtTranslateCoords.3.gz +man/man3/XtTranslateKeycode.3.gz +man/man3/XtUngrabButton.3.gz +man/man3/XtUngrabKey.3.gz +man/man3/XtUngrabKeyboard.3.gz +man/man3/XtUngrabPointer.3.gz +man/man3/XtUninstallTranslations.3.gz +man/man3/XtUnmanageChild.3.gz +man/man3/XtUnmanageChildren.3.gz +man/man3/XtUnmapWidget.3.gz +man/man3/XtUnrealizeWidget.3.gz +man/man3/XtUnregisterDrawable.3.gz +man/man3/XtVaAppCreateShell.3.gz +man/man3/XtVaAppInitialize.3.gz +man/man3/XtVaCreateArgsList.3.gz +man/man3/XtVaCreateManagedWidget.3.gz +man/man3/XtVaCreatePopupShell.3.gz +man/man3/XtVaCreateWidget.3.gz +man/man3/XtVaGetApplicationResources.3.gz +man/man3/XtVaGetSubresources.3.gz +man/man3/XtVaGetSubvalues.3.gz +man/man3/XtVaGetValues.3.gz +man/man3/XtVaOpenApplication.3.gz +man/man3/XtVaSetSubvalues.3.gz +man/man3/XtVaSetValues.3.gz +man/man3/XtWarning.3.gz +man/man3/XtWarningMsg.3.gz +man/man3/XtWidgetToApplicationContext.3.gz +man/man3/XtWindow.3.gz +man/man3/XtWindowOfObject.3.gz +man/man3/XtWindowToWidget.3.gz Index: x11-toolkits/termit/Makefile =================================================================== --- x11-toolkits/termit/Makefile (revision 336156) +++ x11-toolkits/termit/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= termit PORTVERSION= 2.9.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits gnome MASTER_SITES= http://cloud.github.com/downloads/nonstop/termit/ Index: x11-wm/awesome/Makefile =================================================================== --- x11-wm/awesome/Makefile (revision 336156) +++ x11-wm/awesome/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= awesome PORTVERSION= 3.5.2 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11-wm MASTER_SITES= http://awesome.naquadah.org/download/ Index: x11-wm/transset/Makefile =================================================================== --- x11-wm/transset/Makefile (revision 336156) +++ x11-wm/transset/Makefile (working copy) @@ -13,8 +13,6 @@ XORG_CAT= app USE_XORG= x11 xproto -MAN1= transset.1 -PLIST_FILES= bin/transset +PLIST_FILES= bin/transset man/man1/transset.1.gz -NO_STAGE= yes .include Index: x11-wm/xcompmgr/Makefile =================================================================== --- x11-wm/xcompmgr/Makefile (revision 336156) +++ x11-wm/xcompmgr/Makefile (working copy) @@ -11,9 +11,6 @@ XORG_CAT= app USE_XORG= x11 xcomposite xfixes xdamage xrender -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -MAN1= xcompmgr.1 - -NO_STAGE= yes .include --- xorg-switch.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:24:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0483A3E; Wed, 11 Dec 2013 12:24:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94C0D1282; Wed, 11 Dec 2013 12:24:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCOOCI078003; Wed, 11 Dec 2013 12:24:24 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCOOXT078002; Wed, 11 Dec 2013 06:24:24 -0600 (CST) (envelope-from bdrewery) Date: Wed, 11 Dec 2013 06:24:24 -0600 (CST) Message-Id: <201312111224.rBBCOOXT078002@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/184684: [EXP-RUN] switch CURRENT to new xorg X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:24:24 -0000 Synopsis: [EXP-RUN] switch CURRENT to new xorg Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Dec 11 06:24:24 CST 2013 Responsible-Changed-Why: take for exp-run http://www.freebsd.org/cgi/query-pr.cgi?pr=184684 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 12:24:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4495A77; Wed, 11 Dec 2013 12:24:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7FF8128C; Wed, 11 Dec 2013 12:24:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBCOtfv078050; Wed, 11 Dec 2013 12:24:55 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBCOtoG078049; Wed, 11 Dec 2013 12:24:55 GMT (envelope-from gavin) Date: Wed, 11 Dec 2013 12:24:55 GMT Message-Id: <201312111224.rBBCOtoG078049@freefall.freebsd.org> To: me@rdb.name, rddeblois@gmail.com, gavin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gavin@FreeBSD.org Subject: Re: ports/184683: [MAINTAINER] graphics/squish: fix compile error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 12:24:55 -0000 Synopsis: [MAINTAINER] graphics/squish: fix compile error State-Changed-From-To: feedback->open State-Changed-By: gavin State-Changed-When: Wed Dec 11 12:23:29 UTC 2013 State-Changed-Why: Submitter is maintainer. Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: gavin Class-Changed-When: Wed Dec 11 12:23:29 UTC 2013 Class-Changed-Why: Submitter is maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=184683 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 14:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DBA0D02 for ; Wed, 11 Dec 2013 14:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3D741EB2 for ; Wed, 11 Dec 2013 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBEA06F098536 for ; Wed, 11 Dec 2013 14:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBEA0aW098524; Wed, 11 Dec 2013 14:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 14:10:00 GMT Resent-Message-Id: <201312111410.rBBEA0aW098524@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Miles V. Aronnax" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76A629DB for ; Wed, 11 Dec 2013 14:01:14 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 637F21E21 for ; Wed, 11 Dec 2013 14:01:14 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBE1DQc063465 for ; Wed, 11 Dec 2013 14:01:13 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBE1DTU063455; Wed, 11 Dec 2013 14:01:13 GMT (envelope-from nobody) Message-Id: <201312111401.rBBE1DTU063455@oldred.freebsd.org> Date: Wed, 11 Dec 2013 14:01:13 GMT From: "Miles V. Aronnax" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184686: Added LEGAL variable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 14:10:01 -0000 >Number: 184686 >Category: ports >Synopsis: Added LEGAL variable >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 14:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Miles V. Aronnax >Release: 9.2 >Organization: >Environment: FreeBSD ravalox.lan.aronnax.net 9.2-STABLE FreeBSD 9.2-STABLE #0 r256021: Thu Oct 3 11:20:51 CDT 2013 root@ravalox.lan.aronnax.net:/usr/obj/usr/src/sys/RAVALOX amd64 >Description: I received a notice to verify ports/LEGAL for games/rftg, and if correct, set the variable LEGAL in the Makefile. It was correct, and this patch sets said flag. >How-To-Repeat: make -VLEGAL returns blank. >Fix: Apply Makefile.diff (attached) to /usr/ports/games/rftg/Makefile. Patch attached with submission follows: --- Makefile.orig 2013-12-11 07:51:38.000000000 -0600 +++ Makefile 2013-12-11 07:44:01.000000000 -0600 @@ -10,6 +10,7 @@ COMMENT= Race for the Galaxy AI, a computer version of the Rio Grande card game RESTRICTED= Contains licensed graphics that must be fetched manually +LEGAL= Redistribution not authorized GNU_CONFIGURE= yes USE_GNOME= gtk20 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 15:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3279E82 for ; Wed, 11 Dec 2013 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CEFE812E5 for ; Wed, 11 Dec 2013 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBF00Qt008867 for ; Wed, 11 Dec 2013 15:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBF00mw008865; Wed, 11 Dec 2013 15:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 15:00:00 GMT Resent-Message-Id: <201312111500.rBBF00mw008865@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sébastien Santoro Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C9CBAF2 for ; Wed, 11 Dec 2013 14:53:53 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 10BF11274 for ; Wed, 11 Dec 2013 14:53:53 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBErqK6058017 for ; Wed, 11 Dec 2013 14:53:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBErqnU058014; Wed, 11 Dec 2013 14:53:52 GMT (envelope-from nobody) Message-Id: <201312111453.rBBErqnU058014@oldred.freebsd.org> Date: Wed, 11 Dec 2013 14:53:52 GMT From: Sébastien Santoro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184688: [legal] /usr/ports/LEGAL update for print/lgrind port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 15:00:01 -0000 >Number: 184688 >Category: ports >Synopsis: [legal] /usr/ports/LEGAL update for print/lgrind port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 15:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sébastien Santoro >Release: >Organization: >Environment: >Description: lgrind/* entry in /usr/ports/LEGAL should be RESTRICTED >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 15:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B387A816 for ; Wed, 11 Dec 2013 15:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E44215BD for ; Wed, 11 Dec 2013 15:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBFU0bA015780 for ; Wed, 11 Dec 2013 15:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBFU06F015777; Wed, 11 Dec 2013 15:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 15:30:00 GMT Resent-Message-Id: <201312111530.rBBFU06F015777@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BCAC7D8 for ; Wed, 11 Dec 2013 15:27:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E05B915A3 for ; Wed, 11 Dec 2013 15:27:30 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBFRUbC071321 for ; Wed, 11 Dec 2013 15:27:30 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBFRU5U071320; Wed, 11 Dec 2013 15:27:30 GMT (envelope-from nobody) Message-Id: <201312111527.rBBFRU5U071320@oldred.freebsd.org> Date: Wed, 11 Dec 2013 15:27:30 GMT From: Boris Samorodov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184689: [patch] print/foo2zjs: take maintainership, update to current version and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 15:30:00 -0000 >Number: 184689 >Category: ports >Synopsis: [patch] print/foo2zjs: take maintainership, update to current version and more >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 15:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 10.0-BETA4 amd64 >Organization: BSDprint >Environment: FreeBSD bsam.int.wart.ru 10.0-BETA4 FreeBSD 10.0-BETA4 #57 r258870: Wed Dec 4 01:12:38 SAMT 2013 bsam@bsam.int.wart.ru:/usr/obj/usr/src/sys/BB64X amd64 >Description: >How-To-Repeat: >Fix: . take maintainership; . update to version 20131118; . use new LIB_DEPENDS syntax; . USE_GMAKE -> USES=gmake; . USES=shebabgfiles for msexpand; . allow staging. Patch attached with submission follows: Index: foo2zjs/Makefile =================================================================== --- foo2zjs/Makefile (revision 336157) +++ foo2zjs/Makefile (working copy) @@ -2,132 +2,37 @@ # $FreeBSD$ PORTNAME= foo2zjs -PORTVERSION= 20110609 -PORTREVISION= 2 +PORTVERSION= 20131118 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ ${MASTER_SITE_LOCAL:S,$,acm/${PORTNAME}/,} -MAINTAINER= acm@FreeBSD.org +MAINTAINER= bsam@FreeBSD.org COMMENT= Driver for printers that use the ZjStream wire protocol -LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-base +LIB_DEPENDS= libcups.so:${PORTSDIR}/print/cups-base RUN_DEPENDS= ${LOCALBASE}/share/foomatic/db/oldprinterids:${PORTSDIR}/print/foomatic-db \ foomatic-rip:${PORTSDIR}/print/foomatic-filters PROJECTHOST= bsdistfiles USE_GHOSTSCRIPT=yes -USE_GMAKE= yes +USES= gmake shebangfix +SHEBANG_FILES= msexpand SUB_FILES= pkg-message - -MAN1= arm2hpdl.1 \ - foo2hiperc-wrapper.1 \ - foo2hiperc.1 \ - foo2hp.1 \ - foo2hp2600-wrapper.1 \ - foo2lava-wrapper.1 \ - foo2lava.1 \ - foo2oak-wrapper.1 \ - foo2oak.1 \ - foo2qpdl-wrapper.1 \ - foo2qpdl.1 \ - foo2slx-wrapper.1 \ - foo2slx.1 \ - foo2xqx-wrapper.1 \ - foo2xqx.1 \ - foo2zjs-pstops.1 \ - foo2zjs-wrapper.1 \ - foo2zjs.1 \ - hipercdecode.1 \ - lavadecode.1 \ - oakdecode.1 \ - opldecode.1 \ - printer-profile.1 \ - qpdldecode.1 \ - slxdecode.1 \ - usb_printerid.1 \ - xqxdecode.1 \ - zjsdecode.1 \ - EXTRAFILES= msexpand getweb -XML_FILES= driver/foo2hiperc.xml \ - driver/foo2hp.xml \ - driver/foo2lava.xml \ - driver/foo2oak.xml \ - driver/foo2oak-z1.xml \ - driver/foo2qpdl.xml \ - driver/foo2slx.xml \ - driver/foo2xqx.xml \ - driver/foo2zjs.xml \ - printer/Generic-OAKT_Printer.xml \ - printer/Generic-ZjStream_Printer.xml \ - printer/HP-Color_LaserJet_1500.xml \ - printer/HP-Color_LaserJet_1600.xml \ - printer/HP-Color_LaserJet_2600n.xml \ - printer/HP-Color_LaserJet_CP1215.xml \ - printer/HP-LaserJet_1000.xml \ - printer/HP-LaserJet_1005.xml \ - printer/HP-LaserJet_1018.xml \ - printer/HP-LaserJet_1020.xml \ - printer/HP-LaserJet_1022.xml \ - printer/HP-LaserJet_M1005_MFP.xml \ - printer/HP-LaserJet_M1120_MFP.xml \ - printer/HP-LaserJet_P1005.xml \ - printer/HP-LaserJet_P1006.xml \ - printer/HP-LaserJet_P1007.xml \ - printer/HP-LaserJet_P1008.xml \ - printer/HP-LaserJet_P1505.xml \ - printer/HP-LaserJet_P2014.xml \ - printer/KONICA_MINOLTA-magicolor_2480_MF.xml \ - printer/KONICA_MINOLTA-magicolor_2490_MF.xml \ - printer/KONICA_MINOLTA-magicolor_2530_DL.xml \ - printer/Kyocera-KM-1635.xml \ - printer/Kyocera-KM-2035.xml \ - printer/Lexmark-C500.xml \ - printer/Minolta-Color_PageWorks_Pro_L.xml \ - printer/Minolta-magicolor_2200_DL.xml \ - printer/Minolta-magicolor_2300_DL.xml \ - printer/Minolta-magicolor_2430_DL.xml \ - printer/Oki-C3100.xml \ - printer/Oki-C3200.xml \ - printer/Oki-C3300.xml \ - printer/Oki-C3400.xml \ - printer/Oki-C3530_MFP.xml \ - printer/Oki-C5100.xml \ - printer/Oki-C5200.xml \ - printer/Oki-C5500.xml \ - printer/Oki-C5600.xml \ - printer/Oki-C5800.xml \ - printer/Samsung-CLP-300.xml \ - printer/Samsung-CLP-315.xml \ - printer/Samsung-CLP-600.xml \ - printer/Samsung-CLP-610.xml \ - printer/Samsung-CLX-2160.xml \ - printer/Samsung-CLX-3160.xml \ - printer/Samsung-CLX-3175.xml \ - printer/Xerox-Phaser_6110.xml \ - printer/Xerox-Phaser_6115MFP.xml -.for FILES in ${XML_FILES} -EXTRACT_AFTER_ARGS+= --exclude '${FILES}' -.endfor +OPTIONS_DEFINE= DOCS -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|g' -e 's|^PREFIX|PREFIX?|g' ${WRKSRC}/icc2ps/Makefile post-install: @cd ${WRKSRC} && \ - ${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1/ && \ - ${INSTALL_SCRIPT} ${EXTRAFILES} ${PREFIX}/bin/ - -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + ${INSTALL_SCRIPT} ${EXTRAFILES} ${STAGEDIR}${PREFIX}/bin + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/foo2zjs-icc2ps + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for FILE in ChangeLog README manual.pdf - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} .endfor -.endif - @${CAT} ${PKGMESSAGE} - .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 15:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90932848; Wed, 11 Dec 2013 15:30:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 63CF91603; Wed, 11 Dec 2013 15:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBFU9hw015918; Wed, 11 Dec 2013 15:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBFU9fP015917; Wed, 11 Dec 2013 15:30:09 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 15:30:09 GMT Message-Id: <201312111530.rBBFU9fP015917@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184689: [patch] print/foo2zjs: take maintainership, update to current version and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 15:30:09 -0000 Synopsis: [patch] print/foo2zjs: take maintainership, update to current version and more Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 15:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184689 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 15:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2CF3EEF for ; Wed, 11 Dec 2013 15:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A175B1796 for ; Wed, 11 Dec 2013 15:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBFo0Ei019548 for ; Wed, 11 Dec 2013 15:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBFo0DO019546; Wed, 11 Dec 2013 15:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 15:50:00 GMT Resent-Message-Id: <201312111550.rBBFo0DO019546@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A327ABC for ; Wed, 11 Dec 2013 15:40:01 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56C01168F for ; Wed, 11 Dec 2013 15:40:01 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBFe16u040851 for ; Wed, 11 Dec 2013 15:40:01 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBFe1aP040827; Wed, 11 Dec 2013 15:40:01 GMT (envelope-from nobody) Message-Id: <201312111540.rBBFe1aP040827@oldred.freebsd.org> Date: Wed, 11 Dec 2013 15:40:01 GMT From: Boris Samorodov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184690: [patch] print/foomatic-db, print/foomatic/db-engines, print/foomatic-filters: take maintainership, update to current versions and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 15:50:01 -0000 >Number: 184690 >Category: ports >Synopsis: [patch] print/foomatic-db, print/foomatic/db-engines, print/foomatic-filters: take maintainership, update to current versions and more >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 15:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 10.0-BETA4 amd64 >Organization: BSDprint >Environment: FreeBSD bsam.int.wart.ru 10.0-BETA4 FreeBSD 10.0-BETA4 #57 r258870: Wed Dec 4 01:12:38 SAMT 2013 bsam@bsam.int.wart.ru:/usr/obj/usr/src/sys/BB64X amd64 >Description: The patch is big, so here is the link: ftp://ftp.wart.ru/pub/misc/print_foomatic.stage.diff.txt >How-To-Repeat: >Fix: . take maintainership; . update to version 20131207; . change MASTER_SITES; . use new LIB_DEPENDS syntax; . incorporate USES=gmake; . allow staging >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 15:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 928B8F24; Wed, 11 Dec 2013 15:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6748B17EE; Wed, 11 Dec 2013 15:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBFo9Ba019681; Wed, 11 Dec 2013 15:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBFo9ct019680; Wed, 11 Dec 2013 15:50:09 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 15:50:09 GMT Message-Id: <201312111550.rBBFo9ct019680@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184690: [patch] print/foomatic-db, print/foomatic/db-engines, print/foomatic-filters: take maintainership, update to current versions and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 15:50:09 -0000 Synopsis: [patch] print/foomatic-db, print/foomatic/db-engines, print/foomatic-filters: take maintainership, update to current versions and more Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 15:50:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184690 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:06:45 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3CA5638; Wed, 11 Dec 2013 17:06:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 887561FE8; Wed, 11 Dec 2013 17:06:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBH6jwP037112; Wed, 11 Dec 2013 17:06:45 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBH6ja9037111; Wed, 11 Dec 2013 17:06:45 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 17:06:45 GMT Message-Id: <201312111706.rBBH6ja9037111@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184660: [patch] update www/xpi-flagfox from 4.2.11 to 4.2.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:06:45 -0000 Synopsis: [patch] update www/xpi-flagfox from 4.2.11 to 4.2.15 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Dec 11 17:06:45 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184660 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:09:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0C50780; Wed, 11 Dec 2013 17:09:41 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94B771030; Wed, 11 Dec 2013 17:09:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBH9ftU037269; Wed, 11 Dec 2013 17:09:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBH9e9t037268; Wed, 11 Dec 2013 17:09:40 GMT (envelope-from linimon) Date: Wed, 11 Dec 2013 17:09:40 GMT Message-Id: <201312111709.rBBH9e9t037268@freefall.freebsd.org> To: adams-ports@ateamsystems.com, ports@c0decafe.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184647: [PATCH] databases/couchdb: update to 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:09:41 -0000 Synopsis: [PATCH] databases/couchdb: update to 1.5.0 State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Wed Dec 11 17:09:18 UTC 2013 State-Changed-Why: Duplicate of ports/184463. http://www.freebsd.org/cgi/query-pr.cgi?pr=184647 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:10:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FB707BA for ; Wed, 11 Dec 2013 17:10:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32064103A for ; Wed, 11 Dec 2013 17:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBHA3dO037411 for ; Wed, 11 Dec 2013 17:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBHA3SE037410; Wed, 11 Dec 2013 17:10:03 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 17:10:03 GMT Resent-Message-Id: <201312111710.rBBHA3SE037410@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3033F4CC for ; Wed, 11 Dec 2013 17:04:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 024781FC0 for ; Wed, 11 Dec 2013 17:04:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBH4T1e037618 for ; Wed, 11 Dec 2013 17:04:29 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBH4TCt037617; Wed, 11 Dec 2013 17:04:29 GMT (envelope-from nobody) Message-Id: <201312111704.rBBH4TCt037617@oldred.freebsd.org> Date: Wed, 11 Dec 2013 17:04:29 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184693: science/chemtool-devel: Fix to unbreak on F10, head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:10:04 -0000 >Number: 184693 >Category: ports >Synopsis: science/chemtool-devel: Fix to unbreak on F10, head >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 17:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: chemtool-devel is broken on F10 and head because MAKE is defined as "make" by default. This causes the port to use bmake instead of the specified gmake. Fix below. >How-To-Repeat: >Fix: Add "MAKE_ARGS+= MAKE=${GMAKE}" to unbreak >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:10:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAD29836; Wed, 11 Dec 2013 17:10:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9113C1040; Wed, 11 Dec 2013 17:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBHAEwk037500; Wed, 11 Dec 2013 17:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBHAEOc037499; Wed, 11 Dec 2013 17:10:14 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 17:10:14 GMT Message-Id: <201312111710.rBBHAEOc037499@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, maho@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184693: science/chemtool-devel: Fix to unbreak on F10, head X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:10:14 -0000 Synopsis: science/chemtool-devel: Fix to unbreak on F10, head Responsible-Changed-From-To: freebsd-ports-bugs->maho Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 17:10:14 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184693 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:14:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 922119DD; Wed, 11 Dec 2013 17:14:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 639C710DC; Wed, 11 Dec 2013 17:14:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBHEOWF040135; Wed, 11 Dec 2013 17:14:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBHEOV3040134; Wed, 11 Dec 2013 17:14:24 GMT (envelope-from linimon) Date: Wed, 11 Dec 2013 17:14:24 GMT Message-Id: <201312111714.rBBHEOV3040134@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184673: [bsd.port.mk] abort when a dependency's ports directory doesn't exist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:14:24 -0000 Old Synopsis: abort when a dependency's ports directory doesn't exist New Synopsis: [bsd.port.mk] abort when a dependency's ports directory doesn't exist Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 11 17:14:07 UTC 2013 Responsible-Changed-Why: reclassify and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=184673 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 17:27:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4A73216 for ; Wed, 11 Dec 2013 17:27:43 +0000 (UTC) Received: from mail-ve0-x22a.google.com (mail-ve0-x22a.google.com [IPv6:2607:f8b0:400c:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7026A1305 for ; Wed, 11 Dec 2013 17:27:43 +0000 (UTC) Received: by mail-ve0-f170.google.com with SMTP id oy12so6316499veb.1 for ; Wed, 11 Dec 2013 09:27:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=WbmPS8uwUemvQbjaX3dByl8QYir+qKFuIloaClYSLjU=; b=o5GEdfdbC0KgrXKzrlIj3CCJNkWpI4TEXX/PTm95yNV95m13lbwT2TLZbrF2AyOJHp DLZp4Bs8Hx2G1D9eRDBPeOSzeuXgjy4vMyZna274zr+AUUSwNTqFFh7GVP0bXWyG3/5y NftOHIC1YbmJMKxzNkhz0MWe7kzA+X3MVI/mPt/VacL7dEHUpQIWeEcMYJkgCF+P61gV ppDu81DczUuSqDhUr1Rp3qFKQeNMmyjot5TgX4uTAKPGyHTYUNxr/MwM/UIMeZ1+Ivd7 Pc/stSRcR9zGtALFXEx2rY+Uj+KvAgyUe1pn4H39dlIk/3C0UYcPsOi8H929yiIV/xMR 2Wag== X-Received: by 10.58.189.165 with SMTP id gj5mr198894vec.71.1386782862308; Wed, 11 Dec 2013 09:27:42 -0800 (PST) Received: from lpnix002.local ([209.222.7.234]) by mx.google.com with ESMTPSA id b3sm23890191vek.0.2013.12.11.09.27.41 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 11 Dec 2013 09:27:41 -0800 (PST) Message-ID: <52A8A08B.2040103@gmail.com> Date: Wed, 11 Dec 2013 12:27:39 -0500 From: tzoi516 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: freebsd-ports-bugs@freebsd.org Subject: KornShells X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 17:27:43 -0000 # OS: FreeBSD-10.0-RC1-amd64 # Port 1: ksh93 # Port 2: pdksh # Error when trying to install ksh93 ===> License EPL accepted by the user ===> Found saved configuration for ksh93-20120801_1 ===> ksh93-20120801_1 depends on file: /usr/local/sbin/pkg - found => INIT.2013-05-24.tgz doesn't seem to exist in /usr/ports/distfiles/ksh93. => Attempting to fetch http://www.research.att.com/~gsf/download/tgz/INIT.2013-05-24.tgz fetch: http://www.research.att.com/~gsf/download/tgz/INIT.2013-05-24.tgz: Not Found => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ksh93/INIT.2013-05-24.tgz fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ksh93/INIT.2013-05-24.tgz: Can't open data connection => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ksh93 and try again. # Error when trying to install pdksh ===> pdksh-5.2.14p2_4 is marked as broken: hangs on 10.0: http://www.freebsd.org/cgi/query-pr.cgi?pr=181438. *** Error code 1 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 040725BD for ; Wed, 11 Dec 2013 18:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B930B19D5 for ; Wed, 11 Dec 2013 18:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIU01H059634 for ; Wed, 11 Dec 2013 18:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIU0lR059633; Wed, 11 Dec 2013 18:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 18:30:00 GMT Resent-Message-Id: <201312111830.rBBIU0lR059633@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9FB7376 for ; Wed, 11 Dec 2013 18:24:19 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D3E61934 for ; Wed, 11 Dec 2013 18:24:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBIOIue067255 for ; Wed, 11 Dec 2013 18:24:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBIOI8g067249; Wed, 11 Dec 2013 18:24:18 GMT (envelope-from nobody) Message-Id: <201312111824.rBBIOI8g067249@oldred.freebsd.org> Date: Wed, 11 Dec 2013 18:24:18 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184695: mail/milter-regex: Broken everywhere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:30:01 -0000 >Number: 184695 >Category: ports >Synopsis: mail/milter-regex: Broken everywhere >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 18:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: As evidenced by portsmon, mail/milter-regex is broken on every platform: pkg-static: lstat(/wrkdirs/usr/ports/mail/milter-regex/work/stage/var/run/milter-regex/): No such file or directory It was reported several times, many weeks ago. It's been broken too long, it should be either be fixed or reverted. This PLIST error doesn't look that difficult though. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DF305BF for ; Wed, 11 Dec 2013 18:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0952619D7 for ; Wed, 11 Dec 2013 18:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIU0O4059667 for ; Wed, 11 Dec 2013 18:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIU0aw059655; Wed, 11 Dec 2013 18:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 18:30:00 GMT Resent-Message-Id: <201312111830.rBBIU0aw059655@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christer Edwards Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AAB85B0 for ; Wed, 11 Dec 2013 18:29:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 670D919CD for ; Wed, 11 Dec 2013 18:29:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBITVFj084029 for ; Wed, 11 Dec 2013 18:29:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBITVaU084028; Wed, 11 Dec 2013 18:29:31 GMT (envelope-from nobody) Message-Id: <201312111829.rBBITVaU084028@oldred.freebsd.org> Date: Wed, 11 Dec 2013 18:29:31 GMT From: Christer Edwards To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184696: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:30:01 -0000 >Number: 184696 >Category: ports >Synopsis: maintainer update : sysutils/py-salt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 18:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Christer Edwards >Release: 9.2-RELEASE >Organization: Salt Stack >Environment: FreeBSD jupiter 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: maintainer update : sysutils/py-salt >How-To-Repeat: maintainer update : sysutils/py-salt >Fix: maintainer update : sysutils/py-salt Patch attached with submission follows: diff -ruN sysutils/py-salt/Makefile sysutils/py-salt-0.17.4/Makefile --- sysutils/py-salt/Makefile 2013-12-09 12:31:16.000000000 -0700 +++ sysutils/py-salt-0.17.4/Makefile 2013-12-09 20:30:24.000000000 -0700 @@ -2,7 +2,7 @@ # $FreeBSD: sysutils/py-salt/Makefile 336025 2013-12-09 19:31:16Z sunpoet $ PORTNAME= salt -PORTVERSION= 0.17.3 +PORTVERSION= 0.17.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN sysutils/py-salt/distinfo sysutils/py-salt-0.17.4/distinfo --- sysutils/py-salt/distinfo 2013-12-09 12:31:16.000000000 -0700 +++ sysutils/py-salt-0.17.4/distinfo 2013-12-11 10:41:17.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (salt-0.17.3.tar.gz) = 2a66a0b92862d33477e7e817cb51ccb4e648481d4bc31732bfbb6f43a3e2e1fc -SIZE (salt-0.17.3.tar.gz) = 1869944 +SHA256 (salt-0.17.4.tar.gz) = 5a7b3f4d5c22aa4b8e7c03d60dc429b0428c575fb8f0c285616239c0fe5a0ddd +SIZE (salt-0.17.4.tar.gz) = 1871032 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6643E5F1; Wed, 11 Dec 2013 18:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CDEF19DA; Wed, 11 Dec 2013 18:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIU8W8059781; Wed, 11 Dec 2013 18:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIU8a8059780; Wed, 11 Dec 2013 18:30:08 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 18:30:08 GMT Message-Id: <201312111830.rBBIU8a8059780@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184695: mail/milter-regex: Broken everywhere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:30:08 -0000 Synopsis: mail/milter-regex: Broken everywhere Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 18:30:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184695 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:30:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9552E622; Wed, 11 Dec 2013 18:30:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B0A819DC; Wed, 11 Dec 2013 18:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIUDp8059863; Wed, 11 Dec 2013 18:30:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIUDBN059862; Wed, 11 Dec 2013 18:30:13 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 18:30:13 GMT Message-Id: <201312111830.rBBIUDBN059862@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184696: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:30:13 -0000 Synopsis: maintainer update : sysutils/py-salt Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 18:30:13 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184696 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD68FA59 for ; Wed, 11 Dec 2013 18:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 987F71ABF for ; Wed, 11 Dec 2013 18:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIe0x8061897 for ; Wed, 11 Dec 2013 18:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIe0pA061896; Wed, 11 Dec 2013 18:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 18:40:00 GMT Resent-Message-Id: <201312111840.rBBIe0pA061896@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, lbartoletti Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 304BC800 for ; Wed, 11 Dec 2013 18:37:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C7A41A8F for ; Wed, 11 Dec 2013 18:37:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBIbUOP036876 for ; Wed, 11 Dec 2013 18:37:30 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBIbUF3036875; Wed, 11 Dec 2013 18:37:30 GMT (envelope-from nobody) Message-Id: <201312111837.rBBIbUF3036875@oldred.freebsd.org> Date: Wed, 11 Dec 2013 18:37:30 GMT From: lbartoletti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184697: [NEW PORT] archivers/minizip X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:40:00 -0000 >Number: 184697 >Category: ports >Synopsis: [NEW PORT] archivers/minizip >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 18:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: lbartoletti >Release: >Organization: >Environment: >Description: Add minizip (zlib's contrib) used by osgearth Build's log : https://redports.org/buildarchive/20131211180454-03646/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # minizip # minizip/Makefile # minizip/distinfo # minizip/files # minizip/files/patch-contrib-minizip-Makefile # minizip/pkg-descr # minizip/pkg-plist # echo c - minizip mkdir -p minizip > /dev/null 2>&1 echo x - minizip/Makefile sed 's/^X//' >minizip/Makefile << '480e9524a9c2a7bb6c2d87ddab11bc1f' X# Created by: lbartoletti X# $FreeBSD$ X XPORTNAME= minizip XPORTVERSION= 1.2.8 XCATEGORIES= archivers XMASTER_SITES= https://github.com/madler/zlib/archive/ XDISTNAME= v${PORTVERSION} X XMAINTAINER= coder@tuxfamily.org XCOMMENT= Zip and unzip programs from Zlib X XWRKSRC= ${WRKDIR}/zlib-${PORTVERSION}/contrib/minizip X XUSE_ZIP= yes X XFETCH_ARGS= -Fpr X XMAN1= minizip.1 miniunzip.1 X XNO_STAGE= yes X Xdo-install: X ${MKDIR} ${PREFIX}/include/minizip X ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/minizip/ X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/miniunz ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/*.1 ${PREFIX}/man/man1 X X.include 480e9524a9c2a7bb6c2d87ddab11bc1f echo x - minizip/distinfo sed 's/^X//' >minizip/distinfo << '3e7909a7a04ea417186b352e3514bbd7' XSHA256 (v1.2.8.zip) = da78eabfef55cbab21776d4cca207cf7e0dde483b4dd3590e525421667bfb6a7 XSIZE (v1.2.8.zip) = 724598 3e7909a7a04ea417186b352e3514bbd7 echo c - minizip/files mkdir -p minizip/files > /dev/null 2>&1 echo x - minizip/files/patch-contrib-minizip-Makefile sed 's/^X//' >minizip/files/patch-contrib-minizip-Makefile << '58877022fac6d88f4817ebdb1daebe3b' X--- Makefile.orig 2013-04-29 02:23:49.000000000 +0200 X+++ Makefile 2013-12-10 10:06:34.000000000 +0100 X@@ -1,8 +1,9 @@ X CC=cc X-CFLAGS=-O -I../.. X+CFLAGS=-O -I/usr/local X+LDFLAGS=-L/usr/lib -lz X X-UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a X-ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a X+UNZ_OBJS = miniunz.o unzip.o ioapi.o X+ZIP_OBJS = minizip.o zip.o ioapi.o X X .c.o: X $(CC) -c $(CFLAGS) $*.c X@@ -10,10 +11,10 @@ X all: miniunz minizip X X miniunz: $(UNZ_OBJS) X- $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS) X+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(UNZ_OBJS) X X minizip: $(ZIP_OBJS) X- $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS) X+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ZIP_OBJS) X X test: miniunz minizip X ./minizip test readme.txt 58877022fac6d88f4817ebdb1daebe3b echo x - minizip/pkg-descr sed 's/^X//' >minizip/pkg-descr << 'ee929a2fc47e36b1727112886cf6b6b7' XThe Zlib library allows to deflate compressed files and to create gzip (.gz) Xfiles. Zlib is free software and small. X XAn archive in ZIP format can contain several files compressed with this method, Xwhile a .gz archive can containt only one file. It is a very popular format, Xthat is why I have written a package for reading files compressed within a Zip Xarchive. X XWWW: http://www.winimage.com/zLibDll/minizip.html ee929a2fc47e36b1727112886cf6b6b7 echo x - minizip/pkg-plist sed 's/^X//' >minizip/pkg-plist << '9c8201bfb9d9918145a509974d10fc90' Xbin/minizip Xbin/miniunz Xinclude/minizip/crypt.h Xinclude/minizip/ioapi.h Xinclude/minizip/iowin32.h Xinclude/minizip/mztools.h Xinclude/minizip/unzip.h Xinclude/minizip/zip.h X@dirrm include/minizip 9c8201bfb9d9918145a509974d10fc90 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 18:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD85B3E9 for ; Wed, 11 Dec 2013 18:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8707A1CA4 for ; Wed, 11 Dec 2013 18:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBIo0rk063948 for ; Wed, 11 Dec 2013 18:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBIo0mW063946; Wed, 11 Dec 2013 18:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 18:50:00 GMT Resent-Message-Id: <201312111850.rBBIo0mW063946@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Paul Schmehl Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09FA3B91 for ; Wed, 11 Dec 2013 18:41:23 +0000 (UTC) Received: from ip-relay-021.utdallas.edu (ip-relay-021.utdallas.edu [129.110.100.201]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C5B821B08 for ; Wed, 11 Dec 2013 18:41:22 +0000 (UTC) Received: from unknown (HELO mx31.utdallas.edu) ([10.110.20.31]) by ip-relay-021.utdallas.edu with ESMTP; 11 Dec 2013 12:40:07 -0600 Received: from buttercup4.utdallas.edu (buttercup4.utdallas.edu [10.110.4.132]) by mx31.utdallas.edu (Postfix) with ESMTP id 2B5B04219B for ; Wed, 11 Dec 2013 12:40:05 -0600 (CST) Received: by buttercup4.utdallas.edu (Postfix, from userid 0) id 0863F10376D34; Wed, 11 Dec 2013 18:40:00 +0000 (UTC) Message-Id: <20131211184000.0863F10376D34@buttercup4.utdallas.edu> Date: Wed, 11 Dec 2013 18:40:00 +0000 (UTC) From: Paul Schmehl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184698: devel/liblognorm, port update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Paul Schmehl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 18:50:00 -0000 >Number: 184698 >Category: ports >Synopsis: devel/liblognorm, port update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 18:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Paul Schmehl >Release: FreeBSD 9.1-RELEASE amd64 >Organization: The University of Texas at Dallas >Environment: System: FreeBSD hostname.utdallas.edu 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: devel/liblognorm, update port to new version >How-To-Repeat: >Fix: --- liblognorm.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 336190) +++ Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= liblognorm -PORTVERSION= 0.3.7 +PORTVERSION= 1.0.0 CATEGORIES= devel net security MASTER_SITES= http://www.liblognorm.com/download/files/download/ @@ -10,7 +10,7 @@ LICENSE= GPLv2 -LIB_DEPENDS= libee.so:${PORTSDIR}/devel/libee \ +LIB_DEPENDS= libjson.so:${PORTSDIR}/devel/json-c \ libestr.so:${PORTSDIR}/devel/libestr USES= pathfix pkgconfig @@ -17,6 +17,8 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes +SUB_FILES= pkg-message + # Try to fix parallel (-jX) builds post-patch: @${REINPLACE_CMD} -e \ Index: distinfo =================================================================== --- distinfo (revision 336190) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (liblognorm-0.3.7.tar.gz) = b000ab7aab9ed3d7a2c23303463b5bcceb7bb6538714bd41248d02913a82e223 -SIZE (liblognorm-0.3.7.tar.gz) = 346903 +SHA256 (liblognorm-1.0.0.tar.gz) = 01f73c735fd7291c2f1041518f4d005a8100e6be33f07eab00d4f27d1c1934de +SIZE (liblognorm-1.0.0.tar.gz) = 356929 Index: files/pkg-message.in =================================================================== --- files/pkg-message.in (revision 0) +++ files/pkg-message.in (working copy) @@ -0,0 +1,19 @@ +*********************************************************************** + +WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING + +The previous version of liblognorm (0.3.7) used the libee CEE support +library in its API. + +In 2013, Pavel Levshin converted liblognorm to native JSON, which helped +improve performance and simplicity for many client applications. +Unfortunately, this change broke interface compatibility (and there was +no way to avoid that, obviously...). + +The current library is the result of that effort. Application developers +are encouraged to switch to this version, as it provides the benefit of +a simpler API. PREVIOUS VERSIONS ARE INCOMPATIBLE WITH THIS ONE + +WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING + +*********************************************************************** Property changes on: files/pkg-message.in ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: pkg-plist =================================================================== --- pkg-plist (revision 336190) +++ pkg-plist (working copy) @@ -1,11 +1,13 @@ bin/lognormalizer include/annot.h +include/enc.h include/liblognorm.h include/lognorm.h +include/parser.h include/ptree.h include/samp.h lib/liblognorm.a lib/liblognorm.la lib/liblognorm.so -lib/liblognorm.so.0 +lib/liblognorm.so.1 libdata/pkgconfig/lognorm.pc --- liblognorm.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A737CD5F for ; Wed, 11 Dec 2013 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E9131EEE for ; Wed, 11 Dec 2013 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJK0ft071645 for ; Wed, 11 Dec 2013 19:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJK0VA071644; Wed, 11 Dec 2013 19:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:20:00 GMT Resent-Message-Id: <201312111920.rBBJK0VA071644@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94455B6B for ; Wed, 11 Dec 2013 19:14:05 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F6A31E7C for ; Wed, 11 Dec 2013 19:14:05 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBJE5nc030623 for ; Wed, 11 Dec 2013 19:14:05 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBJE5rQ030616; Wed, 11 Dec 2013 19:14:05 GMT (envelope-from nobody) Message-Id: <201312111914.rBBJE5rQ030616@oldred.freebsd.org> Date: Wed, 11 Dec 2013 19:14:05 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184699: [exp-run] Convert bsd.cran.mk to Uses/cran.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:20:00 -0000 >Number: 184699 >Category: ports >Synopsis: [exp-run] Convert bsd.cran.mk to Uses/cran.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: >Organization: >Environment: >Description: Convert bsd.cran.mk to Uses/cran.mk >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/Mk/Uses/cran.mk b/Mk/Uses/cran.mk new file mode 100644 index 0000000..23ee36c --- /dev/null +++ b/Mk/Uses/cran.mk @@ -0,0 +1,95 @@ +# $FreeBSD: head/Mk/bsd.cran.mk 335044 2013-11-27 18:56:43Z dbn $ +# +# Use the Comprehensive R Archive Network +# +# MAINTAINER= wen@FreeBSD.org +# +# Feature: cran +# Usage: USES=cran or USES=cran:ARGS +# Valid ARGS: auto-plist +# +# auto-plist The pkg-plist can be automatically compiled + +.if !defined(_INCLUDE_USES_CRAN_MK) +_INCLUDE_USES_CRAN_MK= yes + +VALID_ARGS= auto-plist + +MASTER_SITE_CRAN+= http://ftp.ctex.org/mirrors/CRAN/src/contrib/ \ + http://cran.rakanu.com/src/contrib/ \ + http://cran.ms.unimelb.edu.au/src/contrib/ \ + http://mirror.its.dal.ca/cran/src/contrib/ \ + http://mirrors.dotsrc.org/cran/src/contrib/ \ + http://cran.univ-lyon1.fr/src/contrib/ \ + http://ftp5.gwdg.de/pub/misc/cran/src/contrib/ \ + http://cran.stat.unipd.it/src/contrib/ \ + http://cran.md.tsukuba.ac.jp/src/contrib/ \ + http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/contrib/ \ + http://cran.cnr.berkeley.edu/src/contrib/ +MASTER_SITE_CRAN_ARCHIVE+= ${MASTER_SITE_CRAN:S,$,Archive/${PORTNAME}/,} + +MASTER_SITES?= ${MASTER_SITE_CRAN} ${MASTER_SITE_CRAN_ARCHIVE} + +USE_FORTRAN= yes +BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R +RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R + +PKGNAMEPREFIX?= R-cran- + +R_LIB_DIR= lib/R/library +R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME} +PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR} +WRKSRC?= ${WRKDIR}/${PORTNAME} + +NO_BUILD= yes +R_COMMAND= ${LOCALBASE}/bin/R + +.if !target(regression-test) +R_POSTCMD_CHECK_OPTIONS?= --timings + +.if !exists(${LOCALBASE}/bin/pdflatex) +R_POSTCMD_CHECK_OPTIONS+= --no-manual --no-rebuild-vignettes +.endif + +.if defined(NO_STAGE) +check-makevars:: + @${ECHO_MSG} "Makefile error: USE_R_MOD cannot be used with NO_STAGE" + @${FALSE} +.endif + +regression-test: build + @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} _R_CHECK_FORCE_SUGGESTS_=FALSE \ + ${R_COMMAND} ${R_PRECMD_CHECK_OPTIONS} CMD check \ + ${R_POSTCMD_CHECK_OPTIONS} ${PORTNAME} +.endif + +.if !target(do-install) +R_POSTCMD_INSTALL_OPTIONS+= -l ${STAGEDIR}${PREFIX}/${R_LIB_DIR} +.if defined(NOPORTDATA) +R_POSTCMD_INSTALL_OPTIONS+= --no-data --no-demo +.else +R_POSTCMD_INSTALL_OPTIONS+= --install-tests +.endif + +.if defined(NOPORTDOCS) +R_POSTCMD_INSTALL_OPTIONS+= --no-docs --no-html +.endif + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${R_LIB_DIR} + @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} ${R_COMMAND} \ + ${R_PRECMD_INSTALL_OPTIONS} CMD INSTALL \ + ${R_POSTCMD_INSTALL_OPTIONS} ${PORTNAME} +.endif + +.if ${cran_ARGS:Mauto-plist} +.if !target(post-install-script) +post-install-script: + @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} \( -type f -or -type l \) -print | \ + ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} + @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} -type d -print | ${SED} -E -e \ + 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} +.endif +.endif + +.endif #_INCLUDE_USES_CRAN_MK diff --git a/Mk/bsd.cran.mk b/Mk/bsd.cran.mk deleted file mode 100644 index 5353449..0000000 --- a/Mk/bsd.cran.mk +++ /dev/null @@ -1,85 +0,0 @@ -# Date created: 2009-01-25 -# Whom: Wen Heping -# -# $FreeBSD$ -# - -CRAN_Include_MAINTAINER= wen@FreeBSD.org - -MASTER_SITE_CRAN+= http://ftp.ctex.org/mirrors/CRAN/src/contrib/ \ - http://cran.rakanu.com/src/contrib/ \ - http://cran.ms.unimelb.edu.au/src/contrib/ \ - http://mirror.its.dal.ca/cran/src/contrib/ \ - http://mirrors.dotsrc.org/cran/src/contrib/ \ - http://cran.univ-lyon1.fr/src/contrib/ \ - http://ftp5.gwdg.de/pub/misc/cran/src/contrib/ \ - http://cran.stat.unipd.it/src/contrib/ \ - http://cran.md.tsukuba.ac.jp/src/contrib/ \ - http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/contrib/ \ - http://cran.cnr.berkeley.edu/src/contrib/ -MASTER_SITE_CRAN_ARCHIVE+= ${MASTER_SITE_CRAN:S,$,Archive/${PORTNAME}/,} - -MASTER_SITES?= ${MASTER_SITE_CRAN} ${MASTER_SITE_CRAN_ARCHIVE} - -USE_FORTRAN= yes -BUILD_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R -RUN_DEPENDS+= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R - -PKGNAMEPREFIX?= R-cran- - -R_LIB_DIR= lib/R/library -R_MOD_DIR?= ${R_LIB_DIR}/${PORTNAME} -PLIST_SUB+= R_MOD_DIR=${R_MOD_DIR} -WRKSRC?= ${WRKDIR}/${PORTNAME} - -NO_BUILD= yes -R_COMMAND= ${LOCALBASE}/bin/R - -.if !target(regression-test) -R_POSTCMD_CHECK_OPTIONS?= --timings - -.if !exists(${LOCALBASE}/bin/pdflatex) -R_POSTCMD_CHECK_OPTIONS+= --no-manual --no-rebuild-vignettes -.endif - -.if defined(NO_STAGE) -check-makevars:: - @${ECHO_MSG} "Makefile error: USE_R_MOD cannot be used with NO_STAGE" - @${FALSE} -.endif - -regression-test: build - @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} _R_CHECK_FORCE_SUGGESTS_=FALSE \ - ${R_COMMAND} ${R_PRECMD_CHECK_OPTIONS} CMD check \ - ${R_POSTCMD_CHECK_OPTIONS} ${PORTNAME} -.endif - -.if !target(do-install) -R_POSTCMD_INSTALL_OPTIONS+= -l ${STAGEDIR}${PREFIX}/${R_LIB_DIR} -.if defined(NOPORTDATA) -R_POSTCMD_INSTALL_OPTIONS+= --no-data --no-demo -.else -R_POSTCMD_INSTALL_OPTIONS+= --install-tests -.endif - -.if defined(NOPORTDOCS) -R_POSTCMD_INSTALL_OPTIONS+= --no-docs --no-html -.endif - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${R_LIB_DIR} - @cd ${WRKDIR} ; ${SETENV} ${MAKE_ENV} ${R_COMMAND} \ - ${R_PRECMD_INSTALL_OPTIONS} CMD INSTALL \ - ${R_POSTCMD_INSTALL_OPTIONS} ${PORTNAME} -.endif - -.if defined(R_MOD_AUTOPLIST) -.if !target(post-install-script) -post-install-script: - @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} \( -type f -or -type l \) -print | \ - ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} - @${FIND} -ds ${STAGEDIR}${PREFIX}/${R_MOD_DIR} -type d -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} -.endif -.endif - diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 15564d7..652cd50 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -421,8 +421,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # Implies inclusion of bsd.python.mk. (Also see # that file for more information on USE_PYTHON_* # and USE_PYDISTUTILS). -# USE_R_MOD - If set, this port uses the Comprehensive R Archive Network. -# See bsd.cran.mk for more details. # USE_RUBY - If set, this port relies on the Ruby language. # Implies inclusion of bsd.ruby.mk. (Also see # that file for more information on USE_RUBY_*). @@ -1427,10 +1425,6 @@ PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg .include "${PORTSDIR}/Mk/bsd.java.mk" .endif -.if defined(USE_R_MOD) -.include "${PORTSDIR}/Mk/bsd.cran.mk" -.endif - .if defined(USE_RUBY) || defined(USE_LIBRUBY) .include "${PORTSDIR}/Mk/bsd.ruby.mk" .endif diff --git a/astro/R-cran-maptools/Makefile b/astro/R-cran-maptools/Makefile index 86565cf..5241949 100644 --- a/astro/R-cran-maptools/Makefile +++ b/astro/R-cran-maptools/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-sp>=1.0.11:${PORTSDIR}/math/R-cran-sp -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/converters/R-cran-RJSONIO/Makefile b/converters/R-cran-RJSONIO/Makefile index bf24bf0..42f632f 100644 --- a/converters/R-cran-RJSONIO/Makefile +++ b/converters/R-cran-RJSONIO/Makefile @@ -12,7 +12,6 @@ COMMENT= Serialize R objects to JSON, JavaScript Object Notation LICENSE= BSD -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/converters/R-cran-rjson/Makefile b/converters/R-cran-rjson/Makefile index 4203d52..dd94374 100644 --- a/converters/R-cran-rjson/Makefile +++ b/converters/R-cran-rjson/Makefile @@ -12,7 +12,6 @@ COMMENT= JSON for R LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/databases/R-cran-DBI/Makefile b/databases/R-cran-DBI/Makefile index e944177..2e58f4b 100644 --- a/databases/R-cran-DBI/Makefile +++ b/databases/R-cran-DBI/Makefile @@ -13,7 +13,6 @@ COMMENT= R Database Interface LICENSE= LGPL20 LGPL21 LGPL3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/databases/R-cran-RMySQL/Makefile b/databases/R-cran-RMySQL/Makefile index 6677d68..f38d6d1 100644 --- a/databases/R-cran-RMySQL/Makefile +++ b/databases/R-cran-RMySQL/Makefile @@ -15,7 +15,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-DBI>=0.2.2:${PORTSDIR}/databases/R-cran-DBI USE_MYSQL= yes -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/databases/R-cran-RSQLite.extfuns/Makefile b/databases/R-cran-RSQLite.extfuns/Makefile index 833a915..bc1377b 100644 --- a/databases/R-cran-RSQLite.extfuns/Makefile +++ b/databases/R-cran-RSQLite.extfuns/Makefile @@ -15,7 +15,6 @@ LICENSE= AL2 BUILD_DEPENDS= R-cran-RSQLite>=0.11.1:${PORTSDIR}/databases/R-cran-RSQLite RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/databases/R-cran-RSQLite/Makefile b/databases/R-cran-RSQLite/Makefile index a675cee..42e32e8 100644 --- a/databases/R-cran-RSQLite/Makefile +++ b/databases/R-cran-RSQLite/Makefile @@ -15,7 +15,6 @@ LICENSE= LGPL20 BUILD_DEPENDS= R-cran-DBI>=0.2.5:${PORTSDIR}/databases/R-cran-DBI RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/databases/R-cran-sqldf/Makefile b/databases/R-cran-sqldf/Makefile index 2b275b9..dc3f1fd 100644 --- a/databases/R-cran-sqldf/Makefile +++ b/databases/R-cran-sqldf/Makefile @@ -20,7 +20,6 @@ BUILD_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto \ R-cran-RSQLite.extfuns>=0.0.1:${PORTSDIR}/databases/R-cran-RSQLite.extfuns RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-Defaults/Makefile b/devel/R-cran-Defaults/Makefile index 201de79..127c272 100644 --- a/devel/R-cran-Defaults/Makefile +++ b/devel/R-cran-Defaults/Makefile @@ -13,7 +13,6 @@ COMMENT= Create Global Function Defaults LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-Hmisc/Makefile b/devel/R-cran-Hmisc/Makefile index c4b34d7..7635f76 100644 --- a/devel/R-cran-Hmisc/Makefile +++ b/devel/R-cran-Hmisc/Makefile @@ -11,7 +11,6 @@ COMMENT= Harrell Miscellaneous functions useful for data analysis LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-RUnit/Makefile b/devel/R-cran-RUnit/Makefile index 3ec69b2..fdbea8f 100644 --- a/devel/R-cran-RUnit/Makefile +++ b/devel/R-cran-RUnit/Makefile @@ -12,7 +12,6 @@ COMMENT= R functions implementing a Unit Testing framework LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-Rcpp/Makefile b/devel/R-cran-Rcpp/Makefile index 2573fbc..ae64a07 100644 --- a/devel/R-cran-Rcpp/Makefile +++ b/devel/R-cran-Rcpp/Makefile @@ -12,7 +12,6 @@ COMMENT= Seamless R and C++ Integration LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-bitops/Makefile b/devel/R-cran-bitops/Makefile index 1c667e2..0c150fc 100644 --- a/devel/R-cran-bitops/Makefile +++ b/devel/R-cran-bitops/Makefile @@ -13,7 +13,6 @@ COMMENT= Functions for Bitwise operations LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-caTools/Makefile b/devel/R-cran-caTools/Makefile index 8f71689..0a4a626 100644 --- a/devel/R-cran-caTools/Makefile +++ b/devel/R-cran-caTools/Makefile @@ -13,7 +13,6 @@ LICENSE= GPLv3 RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-caret/Makefile b/devel/R-cran-caret/Makefile index 395007c..78ba75a 100644 --- a/devel/R-cran-caret/Makefile +++ b/devel/R-cran-caret/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-reshape2>0:${PORTSDIR}/devel/R-cran-reshape2 \ R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr \ R-cran-foreach>0:${PORTSDIR}/devel/R-cran-foreach -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-chron/Makefile b/devel/R-cran-chron/Makefile index bbc4d08..9345c31 100644 --- a/devel/R-cran-chron/Makefile +++ b/devel/R-cran-chron/Makefile @@ -12,7 +12,6 @@ COMMENT= R package for creating objects which can handle dates and times LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-foreach/Makefile b/devel/R-cran-foreach/Makefile index 343f81b..ff0dc33 100644 --- a/devel/R-cran-foreach/Makefile +++ b/devel/R-cran-foreach/Makefile @@ -14,7 +14,6 @@ LICENSE= AL2 RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-gbm/Makefile b/devel/R-cran-gbm/Makefile index 2c975bf..2fd8d7f 100644 --- a/devel/R-cran-gbm/Makefile +++ b/devel/R-cran-gbm/Makefile @@ -11,7 +11,6 @@ COMMENT= Extensions to AdaBoost algorithm LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-gdata/Makefile b/devel/R-cran-gdata/Makefile index 073eba3..96d7781 100644 --- a/devel/R-cran-gdata/Makefile +++ b/devel/R-cran-gdata/Makefile @@ -14,9 +14,7 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-gtools>0:${PORTSDIR}/devel/R-cran-gtools -USES= perl5 +USES= cran:auto-plist perl5 USE_PERL5= run -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes .include diff --git a/devel/R-cran-glmnet/Makefile b/devel/R-cran-glmnet/Makefile index 7d4ebd2..8683147 100644 --- a/devel/R-cran-glmnet/Makefile +++ b/devel/R-cran-glmnet/Makefile @@ -11,7 +11,6 @@ COMMENT= Lasso and elastic-net regularized generalized linear models LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-gsubfn/Makefile b/devel/R-cran-gsubfn/Makefile index 404305d..c9b01d0 100644 --- a/devel/R-cran-gsubfn/Makefile +++ b/devel/R-cran-gsubfn/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-gtools/Makefile b/devel/R-cran-gtools/Makefile index 81632e60..64c6269 100644 --- a/devel/R-cran-gtools/Makefile +++ b/devel/R-cran-gtools/Makefile @@ -11,7 +11,6 @@ COMMENT= Various R programming tools LICENSE= LGPL21 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-iterators/Makefile b/devel/R-cran-iterators/Makefile index 516764a..6d1db9b 100644 --- a/devel/R-cran-iterators/Makefile +++ b/devel/R-cran-iterators/Makefile @@ -12,7 +12,6 @@ COMMENT= Iterator construct for R LICENSE= AL2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-itertools/Makefile b/devel/R-cran-itertools/Makefile index 592a624..233b08d 100644 --- a/devel/R-cran-itertools/Makefile +++ b/devel/R-cran-itertools/Makefile @@ -12,7 +12,6 @@ COMMENT= Iterator Tools for R RUN_DEPENDS= R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-memoise/Makefile b/devel/R-cran-memoise/Makefile index 1fbdae5..3f40c58 100644 --- a/devel/R-cran-memoise/Makefile +++ b/devel/R-cran-memoise/Makefile @@ -12,7 +12,6 @@ COMMENT= Memoise functions for R RUN_DEPENDS= R-cran-digest>=0:${PORTSDIR}/security/R-cran-digest -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-plyr/Makefile b/devel/R-cran-plyr/Makefile index 8682b47..1704963 100644 --- a/devel/R-cran-plyr/Makefile +++ b/devel/R-cran-plyr/Makefile @@ -13,7 +13,6 @@ COMMENT= Tools for splitting, applying, and combining data RUN_DEPENDS= R-cran-itertools>0:${PORTSDIR}/devel/R-cran-itertools \ R-cran-iterators>0:${PORTSDIR}/devel/R-cran-iterators -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-proto/Makefile b/devel/R-cran-proto/Makefile index d213015..8ef06d0 100644 --- a/devel/R-cran-proto/Makefile +++ b/devel/R-cran-proto/Makefile @@ -12,7 +12,6 @@ COMMENT= Prototype object-based programming LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-randomForest/Makefile b/devel/R-cran-randomForest/Makefile index dc73bf0..6a11da0 100644 --- a/devel/R-cran-randomForest/Makefile +++ b/devel/R-cran-randomForest/Makefile @@ -11,7 +11,6 @@ COMMENT= Classification based on a forest of trees using random inputs RUN_DEPENDS= R-cran-RColorBrewer>=1.0.5_6:${PORTSDIR}/graphics/R-cran-RColorBrewer -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-reshape/Makefile b/devel/R-cran-reshape/Makefile index 419cc54..eb30f9b 100644 --- a/devel/R-cran-reshape/Makefile +++ b/devel/R-cran-reshape/Makefile @@ -14,7 +14,6 @@ LICENSE= MIT RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/devel/R-cran-reshape2/Makefile b/devel/R-cran-reshape2/Makefile index d9da765..95c9b2c 100644 --- a/devel/R-cran-reshape2/Makefile +++ b/devel/R-cran-reshape2/Makefile @@ -15,7 +15,6 @@ LICENSE= MIT RUN_DEPENDS= R-cran-plyr>=1.5:${PORTSDIR}/devel/R-cran-plyr \ R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-PerformanceAnalytics/Makefile b/finance/R-cran-PerformanceAnalytics/Makefile index ac8ea48..35e29d2 100644 --- a/finance/R-cran-PerformanceAnalytics/Makefile +++ b/finance/R-cran-PerformanceAnalytics/Makefile @@ -15,7 +15,6 @@ LICENSE= GPLv1 RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ R-cran-xts>=0.8.9:${PORTSDIR}/math/R-cran-xts -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-RFinanceYJ/Makefile b/finance/R-cran-RFinanceYJ/Makefile index 9f6044b..193024b 100644 --- a/finance/R-cran-RFinanceYJ/Makefile +++ b/finance/R-cran-RFinanceYJ/Makefile @@ -15,7 +15,6 @@ LICENSE= BSD RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ R-cran-xts>0:${PORTSDIR}/math/R-cran-xts -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-TTR/Makefile b/finance/R-cran-TTR/Makefile index f485e9a..bf84cbc 100644 --- a/finance/R-cran-TTR/Makefile +++ b/finance/R-cran-TTR/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-xts>=0.9.3:${PORTSDIR}/math/R-cran-xts -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-ccgarch/Makefile b/finance/R-cran-ccgarch/Makefile index bfd63a6..70726c3 100644 --- a/finance/R-cran-ccgarch/Makefile +++ b/finance/R-cran-ccgarch/Makefile @@ -13,7 +13,6 @@ COMMENT= Conditional Correlation GARCH models LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-fBasics/Makefile b/finance/R-cran-fBasics/Makefile index c0c0a43..7cb020a 100644 --- a/finance/R-cran-fBasics/Makefile +++ b/finance/R-cran-fBasics/Makefile @@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \ R-cran-stabledist>0:${PORTSDIR}/math/R-cran-stabledist \ R-cran-gss>0:${PORTSDIR}/math/R-cran-gss -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-fGarch/Makefile b/finance/R-cran-fGarch/Makefile index aa2575d..c7113c1 100644 --- a/finance/R-cran-fGarch/Makefile +++ b/finance/R-cran-fGarch/Makefile @@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate \ R-cran-timeSeries>0:${PORTSDIR}/finance/R-cran-timeSeries \ R-cran-fBasics>=2100.78:${PORTSDIR}/finance/R-cran-fBasics -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-gmm/Makefile b/finance/R-cran-gmm/Makefile index 1b6e5ca..92324ad 100644 --- a/finance/R-cran-gmm/Makefile +++ b/finance/R-cran-gmm/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-lmtest/Makefile b/finance/R-cran-lmtest/Makefile index 46e248a..7f1301f 100644 --- a/finance/R-cran-lmtest/Makefile +++ b/finance/R-cran-lmtest/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-zoo>=0:${PORTSDIR}/math/R-cran-zoo \ R-cran-strucchange>0:${PORTSDIR}/finance/R-cran-strucchange \ R-cran-sandwich>=2.2.4:${PORTSDIR}/math/R-cran-sandwich -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-plm/Makefile b/finance/R-cran-plm/Makefile index de23ece..3242ad3 100644 --- a/finance/R-cran-plm/Makefile +++ b/finance/R-cran-plm/Makefile @@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-bdsmatrix>0:${PORTSDIR}/math/R-cran-bdsmatrix \ R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich \ R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-quantmod/Makefile b/finance/R-cran-quantmod/Makefile index a5ce01a..21e1c17 100644 --- a/finance/R-cran-quantmod/Makefile +++ b/finance/R-cran-quantmod/Makefile @@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-Defaults>0:${PORTSDIR}/devel/R-cran-Defaults \ R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ R-cran-TTR>=0.2:${PORTSDIR}/finance/R-cran-TTR -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-strucchange/Makefile b/finance/R-cran-strucchange/Makefile index 0e5df1e..b7e11b9 100644 --- a/finance/R-cran-strucchange/Makefile +++ b/finance/R-cran-strucchange/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ R-cran-sandwich>0:${PORTSDIR}/math/R-cran-sandwich -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-timeDate/Makefile b/finance/R-cran-timeDate/Makefile index fc7de25..5eb5bbf 100644 --- a/finance/R-cran-timeDate/Makefile +++ b/finance/R-cran-timeDate/Makefile @@ -13,7 +13,6 @@ COMMENT= Chronological and Calendar Objects LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-timeSeries/Makefile b/finance/R-cran-timeSeries/Makefile index 4ac3b23..4107222 100644 --- a/finance/R-cran-timeSeries/Makefile +++ b/finance/R-cran-timeSeries/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-timeDate>=2150.95:${PORTSDIR}/finance/R-cran-timeDate -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-tseries/Makefile b/finance/R-cran-tseries/Makefile index 7f51fb3..3eed204 100644 --- a/finance/R-cran-tseries/Makefile +++ b/finance/R-cran-tseries/Makefile @@ -18,7 +18,6 @@ BUILD_DEPENDS= R-cran-quadprog>0:${PORTSDIR}/math/R-cran-quadprog \ RUN_DEPENDS= R-cran-quadprog>0:${PORTSDIR}/math/R-cran-quadprog \ R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-urca/Makefile b/finance/R-cran-urca/Makefile index 4059a9a..059dc67 100644 --- a/finance/R-cran-urca/Makefile +++ b/finance/R-cran-urca/Makefile @@ -13,7 +13,6 @@ COMMENT= Unit root and cointegration tests for time series data LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/finance/R-cran-vars/Makefile b/finance/R-cran-vars/Makefile index 53e64af..f4ee525 100644 --- a/finance/R-cran-vars/Makefile +++ b/finance/R-cran-vars/Makefile @@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-strucchange>0:${PORTSDIR}/finance/R-cran-strucchange \ R-cran-lmtest>=0.9.26:${PORTSDIR}/finance/R-cran-lmtest \ R-cran-sandwich>=2.2.4:${PORTSDIR}/math/R-cran-sandwich -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/ftp/R-cran-RCurl/Makefile b/ftp/R-cran-RCurl/Makefile index 9fbaa41..bcd1315 100644 --- a/ftp/R-cran-RCurl/Makefile +++ b/ftp/R-cran-RCurl/Makefile @@ -16,7 +16,6 @@ BUILD_DEPENDS= curl-config:${PORTSDIR}/ftp/curl RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-GDD/Makefile b/graphics/R-cran-GDD/Makefile index e7ce8fc..70a3caa 100644 --- a/graphics/R-cran-GDD/Makefile +++ b/graphics/R-cran-GDD/Makefile @@ -17,7 +17,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/${PORTNAME} -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-RColorBrewer/Makefile b/graphics/R-cran-RColorBrewer/Makefile index 71ed9c0..0b4cca1 100644 --- a/graphics/R-cran-RColorBrewer/Makefile +++ b/graphics/R-cran-RColorBrewer/Makefile @@ -12,7 +12,6 @@ COMMENT= ColorBrewer palettes LICENSE= AL2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-colorspace/Makefile b/graphics/R-cran-colorspace/Makefile index 400b1ee..9b1c01b 100644 --- a/graphics/R-cran-colorspace/Makefile +++ b/graphics/R-cran-colorspace/Makefile @@ -12,7 +12,6 @@ COMMENT= Color Space Manipulation LICENSE= BSD -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-diagram/Makefile b/graphics/R-cran-diagram/Makefile index 67344d3..267fe7a 100644 --- a/graphics/R-cran-diagram/Makefile +++ b/graphics/R-cran-diagram/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-shape>0:${PORTSDIR}/graphics/R-cran-shape -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-dichromat/Makefile b/graphics/R-cran-dichromat/Makefile index d8536a8..2f7fa0b 100644 --- a/graphics/R-cran-dichromat/Makefile +++ b/graphics/R-cran-dichromat/Makefile @@ -12,7 +12,6 @@ COMMENT= Color schemes for dichromats LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-ggplot2/Makefile b/graphics/R-cran-ggplot2/Makefile index 5bebcf9..72ad1e3 100644 --- a/graphics/R-cran-ggplot2/Makefile +++ b/graphics/R-cran-ggplot2/Makefile @@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-plyr>=1.7.1:${PORTSDIR}/devel/R-cran-plyr \ R-cran-scales>=0.2.3:${PORTSDIR}/graphics/R-cran-scales \ R-cran-proto>=0:${PORTSDIR}/devel/R-cran-proto -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-munsell/Makefile b/graphics/R-cran-munsell/Makefile index 49e08da..72a9958 100644 --- a/graphics/R-cran-munsell/Makefile +++ b/graphics/R-cran-munsell/Makefile @@ -18,7 +18,6 @@ LICENSE_PERMS_CW= auto-accept RUN_DEPENDS= R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-pixmap/Makefile b/graphics/R-cran-pixmap/Makefile index 69f993e..62c48ca 100644 --- a/graphics/R-cran-pixmap/Makefile +++ b/graphics/R-cran-pixmap/Makefile @@ -12,7 +12,6 @@ COMMENT= Bitmap Images ("Pixel Maps") LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-png/Makefile b/graphics/R-cran-png/Makefile index 3b95c5c..f197fee 100644 --- a/graphics/R-cran-png/Makefile +++ b/graphics/R-cran-png/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual LIB_DEPENDS= png15:${PORTSDIR}/graphics/png -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-rgdal/Makefile b/graphics/R-cran-rgdal/Makefile index 2966563..28b6f61 100644 --- a/graphics/R-cran-rgdal/Makefile +++ b/graphics/R-cran-rgdal/Makefile @@ -16,8 +16,7 @@ LIB_DEPENDS= gdal:${PORTSDIR}/graphics/gdal \ proj:${PORTSDIR}/graphics/proj RUN_DEPENDS= R-cran-sp>=1.0.9:${PORTSDIR}/math/R-cran-sp -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist R_POSTCMD_INSTALL_OPTIONS+= --configure-args="--with-proj-lib=${LOCALBASE}/lib" diff --git a/graphics/R-cran-rtiff/Makefile b/graphics/R-cran-rtiff/Makefile index fd6f280..77d5a674 100644 --- a/graphics/R-cran-rtiff/Makefile +++ b/graphics/R-cran-rtiff/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= R-cran-pixmap>0:${PORTSDIR}/graphics/R-cran-pixmap LICENSE_FILE= ${WRKSRC}/LICENSE -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-scales/Makefile b/graphics/R-cran-scales/Makefile index b98c942..14cc7bc 100644 --- a/graphics/R-cran-scales/Makefile +++ b/graphics/R-cran-scales/Makefile @@ -18,7 +18,6 @@ RUN_DEPENDS= R-cran-RColorBrewer>=0:${PORTSDIR}/graphics/R-cran-RColorBrewer \ R-cran-plyr>=1.2:${PORTSDIR}/devel/R-cran-plyr \ R-cran-labeling>=0:${PORTSDIR}/math/R-cran-labeling -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/graphics/R-cran-shape/Makefile b/graphics/R-cran-shape/Makefile index 5d11f1b..3c5ef1e 100644 --- a/graphics/R-cran-shape/Makefile +++ b/graphics/R-cran-shape/Makefile @@ -12,7 +12,6 @@ COMMENT= Functions for plotting graphical shapes, colors LICENSE= GPLv3 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-ChangeAnomalyDetection/Makefile b/math/R-cran-ChangeAnomalyDetection/Makefile index c7f3564..e438429 100644 --- a/math/R-cran-ChangeAnomalyDetection/Makefile +++ b/math/R-cran-ChangeAnomalyDetection/Makefile @@ -15,7 +15,6 @@ LICENSE= BSD RUN_DEPENDS= R-cran-TTR>0:${PORTSDIR}/finance/R-cran-TTR \ R-cran-forecast>0:${PORTSDIR}/math/R-cran-forecast -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-Formula/Makefile b/math/R-cran-Formula/Makefile index e144fbd..833da87 100644 --- a/math/R-cran-Formula/Makefile +++ b/math/R-cran-Formula/Makefile @@ -12,7 +12,6 @@ COMMENT= Extended Model Formulas LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-KFAS/Makefile b/math/R-cran-KFAS/Makefile index 79c2680..925d0aa 100644 --- a/math/R-cran-KFAS/Makefile +++ b/math/R-cran-KFAS/Makefile @@ -13,7 +13,6 @@ COMMENT= Kalman filter and smoothers for exponential family state space models LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-LearnBayes/Makefile b/math/R-cran-LearnBayes/Makefile index 8969803..62699cd 100644 --- a/math/R-cran-LearnBayes/Makefile +++ b/math/R-cran-LearnBayes/Makefile @@ -13,7 +13,6 @@ COMMENT= Functions for Learning Bayesian Inference LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-MCMCpack/Makefile b/math/R-cran-MCMCpack/Makefile index 9cb3104..76b5bac 100644 --- a/math/R-cran-MCMCpack/Makefile +++ b/math/R-cran-MCMCpack/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-coda>0.11.3:${PORTSDIR}/math/R-cran-coda # Actually required 4.0 or later, but at least 4.2 in the FreeBSD ports tree USE_GCC= 4.2+ -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-RHmm/Makefile b/math/R-cran-RHmm/Makefile index 20cd9af..6355673 100644 --- a/math/R-cran-RHmm/Makefile +++ b/math/R-cran-RHmm/Makefile @@ -13,7 +13,6 @@ COMMENT= Hidden Markov Models simulations and estimations LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-RSvgDevice/Makefile b/math/R-cran-RSvgDevice/Makefile index 1fc4e90..3b9e901 100644 --- a/math/R-cran-RSvgDevice/Makefile +++ b/math/R-cran-RSvgDevice/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= dbn@FreeBSD.org COMMENT= A R SVG graphics device -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-RcppArmadillo/Makefile b/math/R-cran-RcppArmadillo/Makefile index 467f85d..c0075cb 100644 --- a/math/R-cran-RcppArmadillo/Makefile +++ b/math/R-cran-RcppArmadillo/Makefile @@ -14,7 +14,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-Rcpp>=0.10.5:${PORTSDIR}/devel/R-cran-Rcpp -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-SuppDists/Makefile b/math/R-cran-SuppDists/Makefile index 7b182ec..da3cf5d 100644 --- a/math/R-cran-SuppDists/Makefile +++ b/math/R-cran-SuppDists/Makefile @@ -17,8 +17,7 @@ COMMENT= Supplementary distributions and RNG for R LICENSE= GPLv2 BENCHMARK_SCRIPT= R-benchmark-25.R -R_MOD_AUTOPLIST= yes -USE_R_MOD= yes +USES= cran:auto-plist WRKSRC = ${WRKDIR}/${PORTNAME} .if defined(MAINTAINER_MODE) diff --git a/math/R-cran-Zelig/Makefile b/math/R-cran-Zelig/Makefile index c318119..5064003 100644 --- a/math/R-cran-Zelig/Makefile +++ b/math/R-cran-Zelig/Makefile @@ -13,7 +13,6 @@ COMMENT= Everyone's Statistical Software BUILD_DEPENDS= R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich RUN_DEPENDS= R-cran-sandwich>=0:${PORTSDIR}/math/R-cran-sandwich -USE_R_MOD= yes -R_MOD_AUTOPLIST=yes +USES= cran:auto-plist .include diff --git a/math/R-cran-bdsmatrix/Makefile b/math/R-cran-bdsmatrix/Makefile index 23972b1..fb5b1c8 100644 --- a/math/R-cran-bdsmatrix/Makefile +++ b/math/R-cran-bdsmatrix/Makefile @@ -12,7 +12,6 @@ COMMENT= Routines for Block Diagonal Symmetric matrices LICENSE= LGPL20 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-car/Makefile b/math/R-cran-car/Makefile index 410f25f..49524e3 100644 --- a/math/R-cran-car/Makefile +++ b/math/R-cran-car/Makefile @@ -12,7 +12,6 @@ COMMENT= Companion to Applied Regression for R LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-coda/Makefile b/math/R-cran-coda/Makefile index 7ba985e..d4fec0a 100644 --- a/math/R-cran-coda/Makefile +++ b/math/R-cran-coda/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Output analysis and diagnostics for MCMC -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-deldir/Makefile b/math/R-cran-deldir/Makefile index 28ac1db..a93b807 100644 --- a/math/R-cran-deldir/Makefile +++ b/math/R-cran-deldir/Makefile @@ -13,7 +13,6 @@ COMMENT= Delaunay Triangulation and Dirichlet (Voronoi) Tessellation LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-dlmodeler/Makefile b/math/R-cran-dlmodeler/Makefile index 1976515..5c32faa 100644 --- a/math/R-cran-dlmodeler/Makefile +++ b/math/R-cran-dlmodeler/Makefile @@ -13,7 +13,6 @@ COMMENT= Generalized Dynamic Linear Modeler LICENSE= GPLv2 GPLv3 BSD LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-forecast/Makefile b/math/R-cran-forecast/Makefile index d4291d7..40569cd 100644 --- a/math/R-cran-forecast/Makefile +++ b/math/R-cran-forecast/Makefile @@ -20,7 +20,6 @@ RUN_DEPENDS= R-cran-tseries>0:${PORTSDIR}/finance/R-cran-tseries \ R-cran-RcppArmadillo>=0.2.35:${PORTSDIR}/math/R-cran-RcppArmadillo \ R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-fracdiff/Makefile b/math/R-cran-fracdiff/Makefile index 4c4fd08..cdf2ac3 100644 --- a/math/R-cran-fracdiff/Makefile +++ b/math/R-cran-fracdiff/Makefile @@ -13,7 +13,6 @@ COMMENT= Fractionally differenced ARIMA aka ARFIMA(p,d,q) models LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-gpclib/Makefile b/math/R-cran-gpclib/Makefile index cac0051..f0ee9dc 100644 --- a/math/R-cran-gpclib/Makefile +++ b/math/R-cran-gpclib/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= General Polygon Clipping Library for R -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-gss/Makefile b/math/R-cran-gss/Makefile index 3e58feb..b3a1620 100644 --- a/math/R-cran-gss/Makefile +++ b/math/R-cran-gss/Makefile @@ -12,7 +12,6 @@ COMMENT= General Smoothing Splines LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-gtable/Makefile b/math/R-cran-gtable/Makefile index c8c5146..ae9e4d0 100644 --- a/math/R-cran-gtable/Makefile +++ b/math/R-cran-gtable/Makefile @@ -11,7 +11,6 @@ COMMENT= Arrange grobs in tables LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-igraph/Makefile b/math/R-cran-igraph/Makefile index 0cea417..b7a6032 100644 --- a/math/R-cran-igraph/Makefile +++ b/math/R-cran-igraph/Makefile @@ -12,8 +12,7 @@ COMMENT= R extension package for igraph LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-inline/Makefile b/math/R-cran-inline/Makefile index f440e6c..ed2bc87 100644 --- a/math/R-cran-inline/Makefile +++ b/math/R-cran-inline/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Inline C, C++, Fortran function calls from R -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-labeling/Makefile b/math/R-cran-labeling/Makefile index c8fd02f..e55e3cc 100644 --- a/math/R-cran-labeling/Makefile +++ b/math/R-cran-labeling/Makefile @@ -12,7 +12,6 @@ COMMENT= Provides a range of axis labeling algorithms LICENSE= MIT -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-memisc/Makefile b/math/R-cran-memisc/Makefile index 05d840b..de55bb7 100644 --- a/math/R-cran-memisc/Makefile +++ b/math/R-cran-memisc/Makefile @@ -12,7 +12,6 @@ COMMENT= Provides an infrastructure for the management of survey data LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-mvtnorm/Makefile b/math/R-cran-mvtnorm/Makefile index 2255af6..5577b76 100644 --- a/math/R-cran-mvtnorm/Makefile +++ b/math/R-cran-mvtnorm/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/\./1} MAINTAINER= wen@FreeBSD.org COMMENT= Multivariate Normal and t Distributions -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-nnls/Makefile b/math/R-cran-nnls/Makefile index 10585c1..95107f1 100644 --- a/math/R-cran-nnls/Makefile +++ b/math/R-cran-nnls/Makefile @@ -12,7 +12,6 @@ COMMENT= R implementation of an algorithm for non-negative least squares LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-outliers/Makefile b/math/R-cran-outliers/Makefile index d297435..071f5b7 100644 --- a/math/R-cran-outliers/Makefile +++ b/math/R-cran-outliers/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Collection of some tests commonly used for identifying outliers -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-psych/Makefile b/math/R-cran-psych/Makefile index 55e6ec6..f397fd2 100644 --- a/math/R-cran-psych/Makefile +++ b/math/R-cran-psych/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= drue@therub.org COMMENT= Psych package for the R project -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-quadprog/Makefile b/math/R-cran-quadprog/Makefile index 310e236..1357495 100644 --- a/math/R-cran-quadprog/Makefile +++ b/math/R-cran-quadprog/Makefile @@ -13,7 +13,6 @@ COMMENT= Functions to solve Quadratic Programming Problems LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-sandwich/Makefile b/math/R-cran-sandwich/Makefile index a475b49..ab6cc84 100644 --- a/math/R-cran-sandwich/Makefile +++ b/math/R-cran-sandwich/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-sm/Makefile b/math/R-cran-sm/Makefile index ad104f1..8cd6827 100644 --- a/math/R-cran-sm/Makefile +++ b/math/R-cran-sm/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Smoothing methods for nonparametric regression and density estimation -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-sp/Makefile b/math/R-cran-sp/Makefile index 1dea766..c2159f3 100644 --- a/math/R-cran-sp/Makefile +++ b/math/R-cran-sp/Makefile @@ -13,7 +13,6 @@ COMMENT= R Classes and Methods for Spatial Data LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-spdep/Makefile b/math/R-cran-spdep/Makefile index f0f8203..e5a8d2b 100644 --- a/math/R-cran-spdep/Makefile +++ b/math/R-cran-spdep/Makefile @@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-sp>=0.9:${PORTSDIR}/math/R-cran-sp \ R-cran-coda>0:${PORTSDIR}/math/R-cran-coda \ R-cran-LearnBayes>0:${PORTSDIR}/math/R-cran-LearnBayes -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-sspir/Makefile b/math/R-cran-sspir/Makefile index 05d252e..42c6663 100644 --- a/math/R-cran-sspir/Makefile +++ b/math/R-cran-sspir/Makefile @@ -13,8 +13,7 @@ COMMENT= A glm-like formula to define dynamic generalized linear models RUN_DEPENDS= R-cran-mvtnorm>=0.9.96_11:${PORTSDIR}/math/R-cran-mvtnorm \ R-cran-KFAS>=0.9.11_3:${PORTSDIR}/math/R-cran-KFAS -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-stabledist/Makefile b/math/R-cran-stabledist/Makefile index 0a42f01..23d1a7b 100644 --- a/math/R-cran-stabledist/Makefile +++ b/math/R-cran-stabledist/Makefile @@ -13,7 +13,6 @@ COMMENT= Stable Distribution Functions LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-xts/Makefile b/math/R-cran-xts/Makefile index 91ff877..2be21d6 100644 --- a/math/R-cran-xts/Makefile +++ b/math/R-cran-xts/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-zoo>=1.7.10:${PORTSDIR}/math/R-cran-zoo -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/math/R-cran-zoo/Makefile b/math/R-cran-zoo/Makefile index 0ca1192..30f3308 100644 --- a/math/R-cran-zoo/Makefile +++ b/math/R-cran-zoo/Makefile @@ -12,7 +12,6 @@ COMMENT= S3 Infrastructure for Regular and Irregular Time Series LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/net/R-cran-twitteR/Makefile b/net/R-cran-twitteR/Makefile index d0e4f4e..0430ff6 100644 --- a/net/R-cran-twitteR/Makefile +++ b/net/R-cran-twitteR/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= R-cran-RCurl>0:${PORTSDIR}/ftp/R-cran-RCurl \ R-cran-rjson>=0.2.12:${PORTSDIR}/converters/R-cran-rjson \ R-cran-ROAuth>=0.9.3:${PORTSDIR}/security/R-cran-ROAuth -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-AMORE/Makefile b/science/R-cran-AMORE/Makefile index c659fe1..0315055 100644 --- a/science/R-cran-AMORE/Makefile +++ b/science/R-cran-AMORE/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/\./1} MAINTAINER= wen@FreeBSD.org COMMENT= A MORE flexible neural network package -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-DCluster/Makefile b/science/R-cran-DCluster/Makefile index 864d8f9..f019af4 100644 --- a/science/R-cran-DCluster/Makefile +++ b/science/R-cran-DCluster/Makefile @@ -15,7 +15,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-spdep>0:${PORTSDIR}/math/R-cran-spdep -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-Epi/Makefile b/science/R-cran-Epi/Makefile index 9cba92d..dce4ccf 100644 --- a/science/R-cran-Epi/Makefile +++ b/science/R-cran-Epi/Makefile @@ -12,7 +12,6 @@ COMMENT= Package for statistical analysis in epidemiology LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-bayesm/Makefile b/science/R-cran-bayesm/Makefile index c97b11c..170da29 100644 --- a/science/R-cran-bayesm/Makefile +++ b/science/R-cran-bayesm/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/\./1} MAINTAINER= wen@FreeBSD.org COMMENT= Bayesian Inference for Marketing/Micro-econometrics -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-e1071/Makefile b/science/R-cran-e1071/Makefile index ce539f9..c1f281e 100644 --- a/science/R-cran-e1071/Makefile +++ b/science/R-cran-e1071/Makefile @@ -12,7 +12,6 @@ COMMENT= Misc Functions of the Department of Statistics (e1071), TU Wien LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-eco/Makefile b/science/R-cran-eco/Makefile index 8ff0f31..a334d2c 100644 --- a/science/R-cran-eco/Makefile +++ b/science/R-cran-eco/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/\./1} MAINTAINER= wen@FreeBSD.org COMMENT= R Package for Ecological Inference in 2x2 Tables -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-epicalc/Makefile b/science/R-cran-epicalc/Makefile index 5149729..e6183c5 100644 --- a/science/R-cran-epicalc/Makefile +++ b/science/R-cran-epicalc/Makefile @@ -10,7 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Epidemiological calculator -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-snow/Makefile b/science/R-cran-snow/Makefile index bf6769f..d3c9835 100644 --- a/science/R-cran-snow/Makefile +++ b/science/R-cran-snow/Makefile @@ -13,7 +13,6 @@ COMMENT= Support for simple parallel computing in R LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/science/R-cran-som/Makefile b/science/R-cran-som/Makefile index 8bbc2b9..1e08a3b 100644 --- a/science/R-cran-som/Makefile +++ b/science/R-cran-som/Makefile @@ -12,7 +12,6 @@ COMMENT= Self-Organizing Map LICENSE= GPLv3 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/security/R-cran-ROAuth/Makefile b/security/R-cran-ROAuth/Makefile index c5e195f..54c086a 100644 --- a/security/R-cran-ROAuth/Makefile +++ b/security/R-cran-ROAuth/Makefile @@ -15,7 +15,6 @@ LICENSE= ART20 RUN_DEPENDS= R-cran-RCurl>=1.6.4:${PORTSDIR}/ftp/R-cran-RCurl \ R-cran-digest>0:${PORTSDIR}/security/R-cran-digest -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/security/R-cran-digest/Makefile b/security/R-cran-digest/Makefile index b22401b..4b5d221 100644 --- a/security/R-cran-digest/Makefile +++ b/security/R-cran-digest/Makefile @@ -12,7 +12,6 @@ COMMENT= Create cryptographic hash digests of R objects LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/textproc/R-cran-R2HTML/Makefile b/textproc/R-cran-R2HTML/Makefile index 94f8ea5..1974823 100644 --- a/textproc/R-cran-R2HTML/Makefile +++ b/textproc/R-cran-R2HTML/Makefile @@ -12,7 +12,6 @@ COMMENT= HTML exportation for R objects LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/textproc/R-cran-XML/Makefile b/textproc/R-cran-XML/Makefile index 3b78928..8218f71 100644 --- a/textproc/R-cran-XML/Makefile +++ b/textproc/R-cran-XML/Makefile @@ -12,8 +12,7 @@ COMMENT= Tools for parsing and generating XML LICENSE= BSD -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist USE_GNOME= libxml2 .include diff --git a/textproc/R-cran-stringr/Makefile b/textproc/R-cran-stringr/Makefile index a2afaf1..8ae55d4 100644 --- a/textproc/R-cran-stringr/Makefile +++ b/textproc/R-cran-stringr/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/textproc/R-cran-xtable/Makefile b/textproc/R-cran-xtable/Makefile index 2815c2e..bc650f6 100644 --- a/textproc/R-cran-xtable/Makefile +++ b/textproc/R-cran-xtable/Makefile @@ -13,7 +13,6 @@ COMMENT= Export tables to LaTeX or HTML LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/www/R-cran-RgoogleMaps/Makefile b/www/R-cran-RgoogleMaps/Makefile index eaafa76..772c569 100644 --- a/www/R-cran-RgoogleMaps/Makefile +++ b/www/R-cran-RgoogleMaps/Makefile @@ -16,7 +16,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-png>0:${PORTSDIR}/graphics/R-cran-png \ R-cran-RJSONIO>0:${PORTSDIR}/converters/R-cran-RJSONIO -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/www/R-cran-Rpad/Makefile b/www/R-cran-Rpad/Makefile index d2e9dd3..6d9191b 100644 --- a/www/R-cran-Rpad/Makefile +++ b/www/R-cran-Rpad/Makefile @@ -12,7 +12,6 @@ COMMENT= Workbook-style, web-based interface to R LICENSE= GPLv2 -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/www/R-cran-httpuv/Makefile b/www/R-cran-httpuv/Makefile index b96ac97..554091f 100644 --- a/www/R-cran-httpuv/Makefile +++ b/www/R-cran-httpuv/Makefile @@ -18,8 +18,6 @@ LICENSE_PERMS_NODE= auto-accept RUN_DEPENDS= R-cran-Rcpp>=0.10.2:${PORTSDIR}/devel/R-cran-Rcpp USE_GMAKE= yes -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes MAKE_ENV= MAKE=${GMAKE} diff --git a/www/R-cran-scrapeR/Makefile b/www/R-cran-scrapeR/Makefile index 2d26042..224d67b 100644 --- a/www/R-cran-scrapeR/Makefile +++ b/www/R-cran-scrapeR/Makefile @@ -13,7 +13,6 @@ COMMENT= Tools for Scraping Data from HTML and XML Documents RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ R-cran-RCurl>0:${PORTSDIR}/ftp/R-cran-RCurl -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include diff --git a/www/R-cran-shiny/Makefile b/www/R-cran-shiny/Makefile index 3d9ede2..7fc91cc 100644 --- a/www/R-cran-shiny/Makefile +++ b/www/R-cran-shiny/Makefile @@ -17,7 +17,6 @@ RUN_DEPENDS= R-cran-httpuv>=1.2.0:${PORTSDIR}/www/R-cran-httpuv \ R-cran-xtable>0:${PORTSDIR}/textproc/R-cran-xtable \ R-cran-digest>0:${PORTSDIR}/security/R-cran-digest -USE_R_MOD= yes -R_MOD_AUTOPLIST= yes +USES= cran:auto-plist .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F791EC9 for ; Wed, 11 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F34C4114D for ; Wed, 11 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo0rn078126 for ; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo0DO078125; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312111950.rBBJo0DO078125@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3683CDB5; Wed, 11 Dec 2013 19:45:44 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C652B112E; Wed, 11 Dec 2013 19:45:43 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 1D3CA4575; Thu, 12 Dec 2013 03:46:01 +0800 (CST) Message-Id: <20131211194602.1D3CA4575@sunpoet.net> Date: Thu, 12 Dec 2013 03:46:01 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184702: [PATCH] x11-toolkits/p5-Pango: update to 1.224 Cc: swills@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:01 -0000 >Number: 184702 >Category: ports >Synopsis: [PATCH] x11-toolkits/p5-Pango: update to 1.224 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA4 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258837: Mon Dec 2 20:50:41 >Description: - Update to 1.224 - Add LICENSE - Support STAGEDIR Changes: http://search.cpan.org/dist/Pango/NEWS Port maintainer (swills@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Pango-1.224.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336212) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Pango -PORTVERSION= 1.223 -PORTREVISION= 1 +PORTVERSION= 1.224 CATEGORIES= x11-toolkits lang perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:XAOC @@ -12,6 +11,8 @@ MAINTAINER= swills@FreeBSD.org COMMENT= Perl module for layout and render i18n text +LICENSE= LGPL21 + BUILD_DEPENDS= p5-ExtUtils-Depends>=0.300:${PORTSDIR}/devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=1.03:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig \ p5-Cairo>=1:${PORTSDIR}/graphics/p5-Cairo \ @@ -21,11 +22,6 @@ USE_GNOME= pango USES= perl5 USE_PERL5= configure -MAKE_JOBS_UNSAFE=yes +MAKE_JOBS_UNSAFE= yes -NO_STAGE= yes -post-install: - @cd ${WRKSRC}/blib/man3 && ${FIND} * -name "*.3" | ${SED} \ - 's,^,${MAN3PREFIX:S,^${PREFIX}/,,}/man/man3/,' >> ${TMPPLIST} - .include Index: distinfo =================================================================== --- distinfo (revision 336212) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Pango-1.223.tar.gz) = cd827df3814296c60afbd34da993d289a625c17289aaea46db0efadd73befc00 -SIZE (Pango-1.223.tar.gz) = 44952 +SHA256 (Pango-1.224.tar.gz) = 39d7b506729f81ecbfb986b2b50020d6a6b9a118df4a140de92dbfd9ca8dae72 +SIZE (Pango-1.224.tar.gz) = 46017 Index: pkg-plist =================================================================== --- pkg-plist (revision 336212) +++ pkg-plist (working copy) @@ -61,7 +61,60 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pango/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pango/Pango.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pango/Pango.so +%%PERL5_MAN3%%/Pango.3.gz +%%PERL5_MAN3%%/Pango::AttrBackground.3.gz +%%PERL5_MAN3%%/Pango::AttrColor.3.gz +%%PERL5_MAN3%%/Pango::AttrFallback.3.gz +%%PERL5_MAN3%%/Pango::AttrFamily.3.gz +%%PERL5_MAN3%%/Pango::AttrFontDesc.3.gz +%%PERL5_MAN3%%/Pango::AttrForeground.3.gz +%%PERL5_MAN3%%/Pango::AttrGravity.3.gz +%%PERL5_MAN3%%/Pango::AttrGravityHint.3.gz +%%PERL5_MAN3%%/Pango::AttrInt.3.gz +%%PERL5_MAN3%%/Pango::AttrIterator.3.gz +%%PERL5_MAN3%%/Pango::AttrLanguage.3.gz +%%PERL5_MAN3%%/Pango::AttrLetterSpacing.3.gz +%%PERL5_MAN3%%/Pango::AttrList.3.gz +%%PERL5_MAN3%%/Pango::AttrRise.3.gz +%%PERL5_MAN3%%/Pango::AttrScale.3.gz +%%PERL5_MAN3%%/Pango::AttrShape.3.gz +%%PERL5_MAN3%%/Pango::AttrSize.3.gz +%%PERL5_MAN3%%/Pango::AttrStretch.3.gz +%%PERL5_MAN3%%/Pango::AttrStrikethrough.3.gz +%%PERL5_MAN3%%/Pango::AttrStrikethroughColor.3.gz +%%PERL5_MAN3%%/Pango::AttrString.3.gz +%%PERL5_MAN3%%/Pango::AttrStyle.3.gz +%%PERL5_MAN3%%/Pango::AttrUnderline.3.gz +%%PERL5_MAN3%%/Pango::AttrUnderlineColor.3.gz +%%PERL5_MAN3%%/Pango::AttrVariant.3.gz +%%PERL5_MAN3%%/Pango::AttrWeight.3.gz +%%PERL5_MAN3%%/Pango::Attribute.3.gz +%%PERL5_MAN3%%/Pango::Cairo.3.gz +%%PERL5_MAN3%%/Pango::Cairo::Context.3.gz +%%PERL5_MAN3%%/Pango::Cairo::Font.3.gz +%%PERL5_MAN3%%/Pango::Cairo::FontMap.3.gz +%%PERL5_MAN3%%/Pango::Color.3.gz +%%PERL5_MAN3%%/Pango::Context.3.gz +%%PERL5_MAN3%%/Pango::Font.3.gz +%%PERL5_MAN3%%/Pango::FontDescription.3.gz +%%PERL5_MAN3%%/Pango::FontFace.3.gz +%%PERL5_MAN3%%/Pango::FontFamily.3.gz +%%PERL5_MAN3%%/Pango::FontMap.3.gz +%%PERL5_MAN3%%/Pango::FontMetrics.3.gz +%%PERL5_MAN3%%/Pango::Fontset.3.gz +%%PERL5_MAN3%%/Pango::Gravity.3.gz +%%PERL5_MAN3%%/Pango::Language.3.gz +%%PERL5_MAN3%%/Pango::Layout.3.gz +%%PERL5_MAN3%%/Pango::LayoutIter.3.gz +%%PERL5_MAN3%%/Pango::LayoutLine.3.gz +%%PERL5_MAN3%%/Pango::Matrix.3.gz +%%PERL5_MAN3%%/Pango::Renderer.3.gz +%%PERL5_MAN3%%/Pango::Script.3.gz +%%PERL5_MAN3%%/Pango::ScriptIter.3.gz +%%PERL5_MAN3%%/Pango::TabArray.3.gz +%%PERL5_MAN3%%/Pango::index.3.gz +%%PERL5_MAN3%%/Pango::version.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pango +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Pango/Install @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Pango/Cairo -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Pango/Install @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Pango --- p5-Pango-1.224.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6269EECC for ; Wed, 11 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 430D5114F for ; Wed, 11 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo15J078190 for ; Wed, 11 Dec 2013 19:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo1q8078189; Wed, 11 Dec 2013 19:50:01 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:50:01 GMT Resent-Message-Id: <201312111950.rBBJo1q8078189@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5AB3D82; Wed, 11 Dec 2013 19:44:23 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A5C9C1119; Wed, 11 Dec 2013 19:44:23 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 925C5456D; Thu, 12 Dec 2013 03:44:34 +0800 (CST) Message-Id: <20131211194434.925C5456D@sunpoet.net> Date: Thu, 12 Dec 2013 03:44:34 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184703: [PATCH] graphics/p5-Cairo: update to 1.104 Cc: swills@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:01 -0000 >Number: 184703 >Category: ports >Synopsis: [PATCH] graphics/p5-Cairo: update to 1.104 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA4 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258837: Mon Dec 2 20:50:41 >Description: - Update to 1.104 - Update MASTER_SITES - Convert to new LIB_DEPENDS format - Support STAGEDIR Changes: http://search.cpan.org/dist/Cairo/NEWS Port maintainer (swills@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Cairo-1.104.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336212) +++ Makefile (working copy) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= Cairo -PORTVERSION= 1.103 +PORTVERSION= 1.104 CATEGORIES= graphics perl5 MASTER_SITES= CPAN \ - SF/gtk2-perl/${PORTNAME}/${PORTVERSION}%20%28unstable%29 + SF/gtk2-perl/${PORTNAME}/${PORTVERSION} MASTER_SITE_SUBDIR= CPAN:XAOC PKGNAMEPREFIX= p5- @@ -16,7 +16,7 @@ BUILD_DEPENDS= p5-ExtUtils-Depends>=0.200:${PORTSDIR}/devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=1:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig -LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo +LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo TEST_DEPENDS= p5-Font-FreeType>=0:${PORTSDIR}/print/p5-Font-FreeType \ p5-Test-Number-Delta>=1:${PORTSDIR}/devel/p5-Test-Number-Delta @@ -23,7 +23,4 @@ USES= perl5 USE_PERL5= configure -MAN3= Cairo.3 - -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 336212) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Cairo-1.103.tar.gz) = eaebd9c3b9d66b4c41533ec7c736a2a4b73e0bf6ad207132a970d83a85827872 -SIZE (Cairo-1.103.tar.gz) = 108254 +SHA256 (Cairo-1.104.tar.gz) = bb0a966ff08c1c5a3d78e6699316f188842d6d029e9ac5fc9364bba3cd4e2762 +SIZE (Cairo-1.104.tar.gz) = 108438 Index: pkg-plist =================================================================== --- pkg-plist (revision 336212) +++ pkg-plist (working copy) @@ -8,6 +8,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/Cairo.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo/Cairo.so +%%PERL5_MAN3%%/Cairo.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cairo @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Cairo/Install @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Cairo --- p5-Cairo-1.104.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8865AEB3 for ; Wed, 11 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64F1B1149 for ; Wed, 11 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo0ih078103 for ; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo0ir078102; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312111950.rBBJo0ir078102@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44E43DA0; Wed, 11 Dec 2013 19:45:23 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF6121129; Wed, 11 Dec 2013 19:45:22 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3E8D94573; Thu, 12 Dec 2013 03:45:41 +0800 (CST) Message-Id: <20131211194541.3E8D94573@sunpoet.net> Date: Thu, 12 Dec 2013 03:45:41 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184700: [PATCH] x11-toolkits/p5-Gtk2: update to 1.249 Cc: swills@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:00 -0000 >Number: 184700 >Category: ports >Synopsis: [PATCH] x11-toolkits/p5-Gtk2: update to 1.249 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA4 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258837: Mon Dec 2 20:50:41 >Description: - Update to 1.249 - Add LICENSE - Update and sort *_DEPENDS - Use USES=gmake - Sort make knobs - Support STAGEDIR Changes: http://search.cpan.org/dist/Gtk2/NEWS Port maintainer (swills@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Gtk2-1.249.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336212) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Gtk2 -PORTVERSION= 1.243 +PORTVERSION= 1.249 CATEGORIES= x11-toolkits lang perl5 MASTER_SITES= CPAN SF/${PORTNAME:L}-perl/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= p5- @@ -10,25 +10,21 @@ MAINTAINER= swills@FreeBSD.org COMMENT= Perl module for Gtk+ 2.x graphical user interface library -BUILD_DEPENDS= p5-ExtUtils-Depends>=0:${PORTSDIR}/devel/p5-ExtUtils-Depends \ - p5-ExtUtils-PkgConfig>=0:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig \ - p5-Cairo>=0:${PORTSDIR}/graphics/p5-Cairo \ - p5-Pango>=0:${PORTSDIR}/x11-toolkits/p5-Pango \ - p5-Glib2>=0:${PORTSDIR}/devel/p5-Glib2 -RUN_DEPENDS= p5-Pango>=0:${PORTSDIR}/x11-toolkits/p5-Pango \ - p5-Cairo>=0:${PORTSDIR}/graphics/p5-Cairo \ - p5-Glib2>=0:${PORTSDIR}/devel/p5-Glib2 +LICENSE= LGPL21 +BUILD_DEPENDS= p5-Cairo>=1:${PORTSDIR}/graphics/p5-Cairo \ + p5-ExtUtils-Depends>=0.300:${PORTSDIR}/devel/p5-ExtUtils-Depends \ + p5-ExtUtils-PkgConfig>=1.03:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig \ + p5-Glib2>=1.280:${PORTSDIR}/devel/p5-Glib2 \ + p5-Pango>=1.220:${PORTSDIR}/x11-toolkits/p5-Pango +RUN_DEPENDS= p5-Cairo>=1:${PORTSDIR}/graphics/p5-Cairo \ + p5-Glib2>=1.280:${PORTSDIR}/devel/p5-Glib2 \ + p5-Pango>=1.220:${PORTSDIR}/x11-toolkits/p5-Pango + +CONFIGURE_ENV= FORCE_GMAKE=yes +MAKE_ENV= LANG=C +USES= gmake perl5 +USE_PERL5= configure USE_GNOME= gtk20 pango -USES= perl5 -USE_PERL5= configure -USE_GMAKE= yes -CONFIGURE_ENV+= FORCE_GMAKE=yes -MAKE_ENV+= LANG=C -NO_STAGE= yes -post-install: - @cd ${WRKSRC}/blib/man3 && ${FIND} * -name "*.3" | ${SED} \ - 's,^,${MAN3PREFIX:S,^${PREFIX}/,,}/man/man3/,' >> ${TMPPLIST} - .include Index: distinfo =================================================================== --- distinfo (revision 336212) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Gtk2-1.243.tar.gz) = 039bd521eab4133a5af0485efa64b7c52ec7539855d3057e27a551d562a03a8f -SIZE (Gtk2-1.243.tar.gz) = 740472 +SHA256 (Gtk2-1.249.tar.gz) = e46e069eb74a1fd93f547195575a69d44dbe6ee30cb9bae27c514d59ffe9873a +SIZE (Gtk2-1.249.tar.gz) = 742086 Index: pkg-plist =================================================================== --- pkg-plist (revision 336212) +++ pkg-plist (working copy) @@ -335,6 +335,331 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gtk2/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gtk2/Gtk2.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gtk2/Gtk2.so +%%PERL5_MAN3%%/Gtk2.3.gz +%%PERL5_MAN3%%/Gtk2::AboutDialog.3.gz +%%PERL5_MAN3%%/Gtk2::AccelGroup.3.gz +%%PERL5_MAN3%%/Gtk2::AccelLabel.3.gz +%%PERL5_MAN3%%/Gtk2::AccelMap.3.gz +%%PERL5_MAN3%%/Gtk2::Accelerator.3.gz +%%PERL5_MAN3%%/Gtk2::Action.3.gz +%%PERL5_MAN3%%/Gtk2::ActionGroup.3.gz +%%PERL5_MAN3%%/Gtk2::Activatable.3.gz +%%PERL5_MAN3%%/Gtk2::Adjustment.3.gz +%%PERL5_MAN3%%/Gtk2::Alignment.3.gz +%%PERL5_MAN3%%/Gtk2::Arrow.3.gz +%%PERL5_MAN3%%/Gtk2::AspectFrame.3.gz +%%PERL5_MAN3%%/Gtk2::Assistant.3.gz +%%PERL5_MAN3%%/Gtk2::Bin.3.gz +%%PERL5_MAN3%%/Gtk2::BindingSet.3.gz +%%PERL5_MAN3%%/Gtk2::Box.3.gz +%%PERL5_MAN3%%/Gtk2::Buildable.3.gz +%%PERL5_MAN3%%/Gtk2::Buildable::ParseContext.3.gz +%%PERL5_MAN3%%/Gtk2::Builder.3.gz +%%PERL5_MAN3%%/Gtk2::Button.3.gz +%%PERL5_MAN3%%/Gtk2::ButtonBox.3.gz +%%PERL5_MAN3%%/Gtk2::Calendar.3.gz +%%PERL5_MAN3%%/Gtk2::CellEditable.3.gz +%%PERL5_MAN3%%/Gtk2::CellLayout.3.gz +%%PERL5_MAN3%%/Gtk2::CellRenderer.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererAccel.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererCombo.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererPixbuf.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererProgress.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererSpin.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererSpinner.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererText.3.gz +%%PERL5_MAN3%%/Gtk2::CellRendererToggle.3.gz +%%PERL5_MAN3%%/Gtk2::CellView.3.gz +%%PERL5_MAN3%%/Gtk2::CheckButton.3.gz +%%PERL5_MAN3%%/Gtk2::CheckMenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::Clipboard.3.gz +%%PERL5_MAN3%%/Gtk2::CodeGen.3.gz +%%PERL5_MAN3%%/Gtk2::ColorButton.3.gz +%%PERL5_MAN3%%/Gtk2::ColorSelection.3.gz +%%PERL5_MAN3%%/Gtk2::ColorSelectionDialog.3.gz +%%PERL5_MAN3%%/Gtk2::Combo.3.gz +%%PERL5_MAN3%%/Gtk2::ComboBox.3.gz +%%PERL5_MAN3%%/Gtk2::ComboBoxEntry.3.gz +%%PERL5_MAN3%%/Gtk2::Container.3.gz +%%PERL5_MAN3%%/Gtk2::Curve.3.gz +%%PERL5_MAN3%%/Gtk2::Dialog.3.gz +%%PERL5_MAN3%%/Gtk2::Drag.3.gz +%%PERL5_MAN3%%/Gtk2::DrawingArea.3.gz +%%PERL5_MAN3%%/Gtk2::Editable.3.gz +%%PERL5_MAN3%%/Gtk2::Entry.3.gz +%%PERL5_MAN3%%/Gtk2::EntryBuffer.3.gz +%%PERL5_MAN3%%/Gtk2::EntryCompletion.3.gz +%%PERL5_MAN3%%/Gtk2::EventBox.3.gz +%%PERL5_MAN3%%/Gtk2::Expander.3.gz +%%PERL5_MAN3%%/Gtk2::FileChooser.3.gz +%%PERL5_MAN3%%/Gtk2::FileChooserButton.3.gz +%%PERL5_MAN3%%/Gtk2::FileChooserDialog.3.gz +%%PERL5_MAN3%%/Gtk2::FileChooserWidget.3.gz +%%PERL5_MAN3%%/Gtk2::FileFilter.3.gz +%%PERL5_MAN3%%/Gtk2::FileSelection.3.gz +%%PERL5_MAN3%%/Gtk2::Fixed.3.gz +%%PERL5_MAN3%%/Gtk2::FontButton.3.gz +%%PERL5_MAN3%%/Gtk2::FontSelection.3.gz +%%PERL5_MAN3%%/Gtk2::FontSelectionDialog.3.gz +%%PERL5_MAN3%%/Gtk2::Frame.3.gz +%%PERL5_MAN3%%/Gtk2::GC.3.gz +%%PERL5_MAN3%%/Gtk2::GammaCurve.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Atom.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Bitmap.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Cairo::Context.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Color.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Colormap.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Cursor.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Device.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Display.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::DisplayManager.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::DragContext.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Drawable.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Button.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Client.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Configure.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Crossing.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::DND.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Expose.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Focus.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::GrabBroken.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Key.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Motion.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::NoExpose.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::OwnerChange.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Property.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Proximity.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Scroll.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Selection.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Setting.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::Visibility.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Event::WindowState.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::GC.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Geometry.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Image.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Input.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Keymap.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Keysyms.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Pango::AttrEmbossColor.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Pango::AttrEmbossed.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Pango::AttrStipple.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PangoRenderer.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Pixbuf.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PixbufAnimation.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PixbufAnimationIter.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PixbufFormat.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PixbufLoader.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::PixbufSimpleAnim.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Pixmap.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Rectangle.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Region.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Rgb.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Screen.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Selection.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Threads.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Visual.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::Window.3.gz +%%PERL5_MAN3%%/Gtk2::Gdk::X11.3.gz +%%PERL5_MAN3%%/Gtk2::HBox.3.gz +%%PERL5_MAN3%%/Gtk2::HButtonBox.3.gz +%%PERL5_MAN3%%/Gtk2::HPaned.3.gz +%%PERL5_MAN3%%/Gtk2::HRuler.3.gz +%%PERL5_MAN3%%/Gtk2::HSV.3.gz +%%PERL5_MAN3%%/Gtk2::HScale.3.gz +%%PERL5_MAN3%%/Gtk2::HScrollbar.3.gz +%%PERL5_MAN3%%/Gtk2::HSeparator.3.gz +%%PERL5_MAN3%%/Gtk2::HandleBox.3.gz +%%PERL5_MAN3%%/Gtk2::Helper.3.gz +%%PERL5_MAN3%%/Gtk2::IMContext.3.gz +%%PERL5_MAN3%%/Gtk2::IMContextSimple.3.gz +%%PERL5_MAN3%%/Gtk2::IMMulticontext.3.gz +%%PERL5_MAN3%%/Gtk2::IconFactory.3.gz +%%PERL5_MAN3%%/Gtk2::IconInfo.3.gz +%%PERL5_MAN3%%/Gtk2::IconSet.3.gz +%%PERL5_MAN3%%/Gtk2::IconSize.3.gz +%%PERL5_MAN3%%/Gtk2::IconSource.3.gz +%%PERL5_MAN3%%/Gtk2::IconTheme.3.gz +%%PERL5_MAN3%%/Gtk2::IconView.3.gz +%%PERL5_MAN3%%/Gtk2::Image.3.gz +%%PERL5_MAN3%%/Gtk2::ImageMenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::InfoBar.3.gz +%%PERL5_MAN3%%/Gtk2::InputDialog.3.gz +%%PERL5_MAN3%%/Gtk2::Invisible.3.gz +%%PERL5_MAN3%%/Gtk2::Item.3.gz +%%PERL5_MAN3%%/Gtk2::ItemFactory.3.gz +%%PERL5_MAN3%%/Gtk2::Label.3.gz +%%PERL5_MAN3%%/Gtk2::Layout.3.gz +%%PERL5_MAN3%%/Gtk2::LinkButton.3.gz +%%PERL5_MAN3%%/Gtk2::List.3.gz +%%PERL5_MAN3%%/Gtk2::ListItem.3.gz +%%PERL5_MAN3%%/Gtk2::ListStore.3.gz +%%PERL5_MAN3%%/Gtk2::Menu.3.gz +%%PERL5_MAN3%%/Gtk2::MenuBar.3.gz +%%PERL5_MAN3%%/Gtk2::MenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::MenuShell.3.gz +%%PERL5_MAN3%%/Gtk2::MenuToolButton.3.gz +%%PERL5_MAN3%%/Gtk2::MessageDialog.3.gz +%%PERL5_MAN3%%/Gtk2::Misc.3.gz +%%PERL5_MAN3%%/Gtk2::Notebook.3.gz +%%PERL5_MAN3%%/Gtk2::Object.3.gz +%%PERL5_MAN3%%/Gtk2::OffscreenWindow.3.gz +%%PERL5_MAN3%%/Gtk2::OptionMenu.3.gz +%%PERL5_MAN3%%/Gtk2::Orientable.3.gz +%%PERL5_MAN3%%/Gtk2::PageSetup.3.gz +%%PERL5_MAN3%%/Gtk2::Paned.3.gz +%%PERL5_MAN3%%/Gtk2::Pango.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrBackground.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrColor.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrFallback.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrFamily.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrFontDesc.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrForeground.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrGravity.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrGravityHint.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrInt.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrIterator.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrLanguage.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrLetterSpacing.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrList.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrRise.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrScale.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrShape.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrSize.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrStretch.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrStrikethrough.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrStrikethroughColor.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrString.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrStyle.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrUnderline.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrUnderlineColor.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrVariant.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::AttrWeight.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Attribute.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Cairo.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Cairo::Context.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Cairo::Font.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Cairo::FontMap.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Color.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Context.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Font.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::FontDescription.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::FontFace.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::FontFamily.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::FontMap.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::FontMetrics.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Fontset.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Gravity.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Language.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Layout.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::LayoutIter.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::LayoutLine.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Matrix.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Renderer.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::Script.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::ScriptIter.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::TabArray.3.gz +%%PERL5_MAN3%%/Gtk2::Pango::version.3.gz +%%PERL5_MAN3%%/Gtk2::PaperSize.3.gz +%%PERL5_MAN3%%/Gtk2::Plug.3.gz +%%PERL5_MAN3%%/Gtk2::Print.3.gz +%%PERL5_MAN3%%/Gtk2::PrintContext.3.gz +%%PERL5_MAN3%%/Gtk2::PrintOperation.3.gz +%%PERL5_MAN3%%/Gtk2::PrintOperationPreview.3.gz +%%PERL5_MAN3%%/Gtk2::PrintSettings.3.gz +%%PERL5_MAN3%%/Gtk2::ProgressBar.3.gz +%%PERL5_MAN3%%/Gtk2::RadioAction.3.gz +%%PERL5_MAN3%%/Gtk2::RadioButton.3.gz +%%PERL5_MAN3%%/Gtk2::RadioMenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::RadioToolButton.3.gz +%%PERL5_MAN3%%/Gtk2::Range.3.gz +%%PERL5_MAN3%%/Gtk2::Rc.3.gz +%%PERL5_MAN3%%/Gtk2::RcStyle.3.gz +%%PERL5_MAN3%%/Gtk2::RecentAction.3.gz +%%PERL5_MAN3%%/Gtk2::RecentChooser.3.gz +%%PERL5_MAN3%%/Gtk2::RecentChooserDialog.3.gz +%%PERL5_MAN3%%/Gtk2::RecentChooserMenu.3.gz +%%PERL5_MAN3%%/Gtk2::RecentChooserWidget.3.gz +%%PERL5_MAN3%%/Gtk2::RecentFilter.3.gz +%%PERL5_MAN3%%/Gtk2::RecentInfo.3.gz +%%PERL5_MAN3%%/Gtk2::RecentManager.3.gz +%%PERL5_MAN3%%/Gtk2::Requisition.3.gz +%%PERL5_MAN3%%/Gtk2::Ruler.3.gz +%%PERL5_MAN3%%/Gtk2::Scale.3.gz +%%PERL5_MAN3%%/Gtk2::ScaleButton.3.gz +%%PERL5_MAN3%%/Gtk2::Scrollbar.3.gz +%%PERL5_MAN3%%/Gtk2::ScrolledWindow.3.gz +%%PERL5_MAN3%%/Gtk2::Selection.3.gz +%%PERL5_MAN3%%/Gtk2::SelectionData.3.gz +%%PERL5_MAN3%%/Gtk2::Separator.3.gz +%%PERL5_MAN3%%/Gtk2::SeparatorMenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::SeparatorToolItem.3.gz +%%PERL5_MAN3%%/Gtk2::SimpleList.3.gz +%%PERL5_MAN3%%/Gtk2::SimpleMenu.3.gz +%%PERL5_MAN3%%/Gtk2::SizeGroup.3.gz +%%PERL5_MAN3%%/Gtk2::Socket.3.gz +%%PERL5_MAN3%%/Gtk2::SpinButton.3.gz +%%PERL5_MAN3%%/Gtk2::Spinner.3.gz +%%PERL5_MAN3%%/Gtk2::StatusIcon.3.gz +%%PERL5_MAN3%%/Gtk2::Statusbar.3.gz +%%PERL5_MAN3%%/Gtk2::Stock.3.gz +%%PERL5_MAN3%%/Gtk2::Style.3.gz +%%PERL5_MAN3%%/Gtk2::Table.3.gz +%%PERL5_MAN3%%/Gtk2::TargetEntry.3.gz +%%PERL5_MAN3%%/Gtk2::TargetList.3.gz +%%PERL5_MAN3%%/Gtk2::TearoffMenuItem.3.gz +%%PERL5_MAN3%%/Gtk2::TextAttributes.3.gz +%%PERL5_MAN3%%/Gtk2::TextBuffer.3.gz +%%PERL5_MAN3%%/Gtk2::TextChildAnchor.3.gz +%%PERL5_MAN3%%/Gtk2::TextIter.3.gz +%%PERL5_MAN3%%/Gtk2::TextMark.3.gz +%%PERL5_MAN3%%/Gtk2::TextTag.3.gz +%%PERL5_MAN3%%/Gtk2::TextTagTable.3.gz +%%PERL5_MAN3%%/Gtk2::TextView.3.gz +%%PERL5_MAN3%%/Gtk2::ToggleAction.3.gz +%%PERL5_MAN3%%/Gtk2::ToggleButton.3.gz +%%PERL5_MAN3%%/Gtk2::ToggleToolButton.3.gz +%%PERL5_MAN3%%/Gtk2::ToolButton.3.gz +%%PERL5_MAN3%%/Gtk2::ToolItem.3.gz +%%PERL5_MAN3%%/Gtk2::ToolItemGroup.3.gz +%%PERL5_MAN3%%/Gtk2::ToolPalette.3.gz +%%PERL5_MAN3%%/Gtk2::ToolShell.3.gz +%%PERL5_MAN3%%/Gtk2::Toolbar.3.gz +%%PERL5_MAN3%%/Gtk2::Tooltip.3.gz +%%PERL5_MAN3%%/Gtk2::Tooltips.3.gz +%%PERL5_MAN3%%/Gtk2::TreeDragDest.3.gz +%%PERL5_MAN3%%/Gtk2::TreeDragSource.3.gz +%%PERL5_MAN3%%/Gtk2::TreeIter.3.gz +%%PERL5_MAN3%%/Gtk2::TreeModel.3.gz +%%PERL5_MAN3%%/Gtk2::TreeModelFilter.3.gz +%%PERL5_MAN3%%/Gtk2::TreeModelSort.3.gz +%%PERL5_MAN3%%/Gtk2::TreePath.3.gz +%%PERL5_MAN3%%/Gtk2::TreeRowReference.3.gz +%%PERL5_MAN3%%/Gtk2::TreeSelection.3.gz +%%PERL5_MAN3%%/Gtk2::TreeSortable.3.gz +%%PERL5_MAN3%%/Gtk2::TreeStore.3.gz +%%PERL5_MAN3%%/Gtk2::TreeView.3.gz +%%PERL5_MAN3%%/Gtk2::TreeViewColumn.3.gz +%%PERL5_MAN3%%/Gtk2::UIManager.3.gz +%%PERL5_MAN3%%/Gtk2::VBox.3.gz +%%PERL5_MAN3%%/Gtk2::VButtonBox.3.gz +%%PERL5_MAN3%%/Gtk2::VPaned.3.gz +%%PERL5_MAN3%%/Gtk2::VRuler.3.gz +%%PERL5_MAN3%%/Gtk2::VScale.3.gz +%%PERL5_MAN3%%/Gtk2::VScrollbar.3.gz +%%PERL5_MAN3%%/Gtk2::VSeparator.3.gz +%%PERL5_MAN3%%/Gtk2::Viewport.3.gz +%%PERL5_MAN3%%/Gtk2::VolumeButton.3.gz +%%PERL5_MAN3%%/Gtk2::Widget.3.gz +%%PERL5_MAN3%%/Gtk2::Window.3.gz +%%PERL5_MAN3%%/Gtk2::WindowGroup.3.gz +%%PERL5_MAN3%%/Gtk2::api.3.gz +%%PERL5_MAN3%%/Gtk2::devel.3.gz +%%PERL5_MAN3%%/Gtk2::enums.3.gz +%%PERL5_MAN3%%/Gtk2::index.3.gz +%%PERL5_MAN3%%/Gtk2::main.3.gz +%%PERL5_MAN3%%/Gtk2::version.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Gtk2 @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Gtk2/Pango/Cairo @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Gtk2/Pango --- p5-Gtk2-1.249.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE1D7F7D; Wed, 11 Dec 2013 19:50:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 943DD115C; Wed, 11 Dec 2013 19:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJoLO8078450; Wed, 11 Dec 2013 19:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJoLl2078449; Wed, 11 Dec 2013 19:50:21 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 19:50:21 GMT Message-Id: <201312111950.rBBJoLl2078449@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184703: [PATCH] graphics/p5-Cairo: update to 1.104 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:21 -0000 Synopsis: [PATCH] graphics/p5-Cairo: update to 1.104 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 19:50:21 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184703 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9484FF1D; Wed, 11 Dec 2013 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6934E1157; Wed, 11 Dec 2013 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo9Sa078284; Wed, 11 Dec 2013 19:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo9gW078283; Wed, 11 Dec 2013 19:50:09 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 19:50:09 GMT Message-Id: <201312111950.rBBJo9gW078283@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184700: [PATCH] x11-toolkits/p5-Gtk2: update to 1.249 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:09 -0000 Synopsis: [PATCH] x11-toolkits/p5-Gtk2: update to 1.249 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 19:50:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184700 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 571AAF4D; Wed, 11 Dec 2013 19:50:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C7CA1159; Wed, 11 Dec 2013 19:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJoFOt078367; Wed, 11 Dec 2013 19:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJoE71078366; Wed, 11 Dec 2013 19:50:14 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 19:50:14 GMT Message-Id: <201312111950.rBBJoE71078366@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184702: [PATCH] x11-toolkits/p5-Pango: update to 1.224 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:15 -0000 Synopsis: [PATCH] x11-toolkits/p5-Pango: update to 1.224 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 19:50:14 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184702 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:45 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 05D68D5; Wed, 11 Dec 2013 19:50:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF308116B; Wed, 11 Dec 2013 19:50:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJoi1S080219; Wed, 11 Dec 2013 19:50:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJoi4P080218; Wed, 11 Dec 2013 19:50:44 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 19:50:44 GMT Message-Id: <201312111950.rBBJoi4P080218@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184704: [PATCH] devel/p5-Glib2: update to 1.303 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:45 -0000 Synopsis: [PATCH] devel/p5-Glib2: update to 1.303 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 19:50:44 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184704 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC801EC4 for ; Wed, 11 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD084114B for ; Wed, 11 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo0ml078115 for ; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo0u6078114; Wed, 11 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312111950.rBBJo0u6078114@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2FADFD86; Wed, 11 Dec 2013 19:44:40 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3A47111B; Wed, 11 Dec 2013 19:44:39 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 4280F456F; Thu, 12 Dec 2013 03:44:58 +0800 (CST) Message-Id: <20131211194458.4280F456F@sunpoet.net> Date: Thu, 12 Dec 2013 03:44:58 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184701: [PATCH] devel/p5-ExtUtils-Depends: update to 0.306 Cc: culot@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:01 -0000 >Number: 184701 >Category: ports >Synopsis: [PATCH] devel/p5-ExtUtils-Depends: update to 0.306 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA4 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258837: Mon Dec 2 20:50:41 >Description: - Update to 0.306 - Add LICENSE - Support STAGEDIR Changes: http://search.cpan.org/dist/ExtUtils-Depends/Changes Port maintainer (culot@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-ExtUtils-Depends-0.306.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336212) +++ Makefile (working copy) @@ -2,19 +2,19 @@ # $FreeBSD$ PORTNAME= ExtUtils-Depends -PORTVERSION= 0.304 +PORTVERSION= 0.306 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:FLORA +MASTER_SITE_SUBDIR= CPAN:XAOC PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Easily build XS extensions that depend on XS extensions +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= ExtUtils::Depends.3 - -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 336212) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ExtUtils-Depends-0.304.tar.gz) = 0307651e1ac2059f0b244466add694f7529c4e7b9287c821144086183e9b543a -SIZE (ExtUtils-Depends-0.304.tar.gz) = 11445 +SHA256 (ExtUtils-Depends-0.306.tar.gz) = 45258bcb83cd130e90a5f8ff19c1b69063f894634b01140f69d550d92b2c2369 +SIZE (ExtUtils-Depends-0.306.tar.gz) = 13180 Index: pkg-plist =================================================================== --- pkg-plist (revision 336212) +++ pkg-plist (working copy) @@ -1,5 +1,6 @@ +%%SITE_PERL%%/ExtUtils/Depends.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/Depends/.packlist -%%SITE_PERL%%/ExtUtils/Depends.pm +%%PERL5_MAN3%%/ExtUtils::Depends.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/Depends +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils @dirrmtry %%SITE_PERL%%/ExtUtils -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils --- p5-ExtUtils-Depends-0.306.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC1ABECF for ; Wed, 11 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C52B1151 for ; Wed, 11 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJo1KV078204 for ; Wed, 11 Dec 2013 19:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJo1KD078203; Wed, 11 Dec 2013 19:50:01 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 19:50:01 GMT Resent-Message-Id: <201312111950.rBBJo1KD078203@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6ECB6D8A; Wed, 11 Dec 2013 19:45:00 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D6651125; Wed, 11 Dec 2013 19:45:00 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 5F7F14571; Thu, 12 Dec 2013 03:45:18 +0800 (CST) Message-Id: <20131211194518.5F7F14571@sunpoet.net> Date: Thu, 12 Dec 2013 03:45:18 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184704: [PATCH] devel/p5-Glib2: update to 1.303 Cc: swills@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:01 -0000 >Number: 184704 >Category: ports >Synopsis: [PATCH] devel/p5-Glib2: update to 1.303 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 19:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA4 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258837: Mon Dec 2 20:50:41 >Description: - Update to 1.303 - Respect upstream naming: - Update PORTNAME - Use PKGNAMESUFFIX - Remove unnecessary DISTNAME - Support STAGEDIR Changes: http://search.cpan.org/dist/Glib/NEWS Port maintainer (swills@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Glib2-1.303.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 336212) +++ Makefile (working copy) @@ -1,12 +1,12 @@ # Created by: clsung@dragon2.net # $FreeBSD$ -PORTNAME= Glib2 -PORTVERSION= 1.280 +PORTNAME= Glib +PORTVERSION= 1.303 CATEGORIES= devel perl5 -MASTER_SITES= CPAN/Glib SF/gtk2-perl/Glib/${PORTVERSION} +MASTER_SITES= CPAN/${PORTNAME} SF/gtk2-perl/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= p5- -DISTNAME= Glib-${PORTVERSION} +PKGNAMESUFFIX= 2 MAINTAINER= swills@FreeBSD.org COMMENT= This module provides access to Glib and GObject libraries @@ -15,24 +15,13 @@ BUILD_DEPENDS= p5-ExtUtils-Depends>=0.300:${PORTSDIR}/devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=1:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_GNOME= glib20 USES= perl5 USE_PERL5= configure MAKE_JOBS_UNSAFE= yes -WRKSRC= ${WRKDIR}/${PORTNAME:S/2//}-${PORTVERSION} -MAN3= Glib.3 Glib::BookmarkFile.3 Glib::Boxed.3 Glib::CodeGen.3 \ - Glib::Error.3 Glib::Flags.3 Glib::GenPod.3 Glib::KeyFile.3 \ - Glib::Log.3 Glib::MainLoop.3 Glib::MakeHelper.3 Glib::Markup.3 \ - Glib::Object.3 Glib::Object::Subclass.3 Glib::OptionContext.3 \ - Glib::OptionGroup.3 Glib::Param::Double.3 Glib::Param::Enum.3 \ - Glib::Param::Flags.3 Glib::Param::GType.3 Glib::Param::Int.3 \ - Glib::Param::Int64.3 Glib::Param::UInt.3 Glib::Param::UInt64.3 \ - Glib::ParamSpec.3 Glib::ParseXSDoc.3 Glib::Signal.3 Glib::Type.3 \ - Glib::Utils.3 Glib::devel.3 Glib::index.3 Glib::version.3 Glib::xsapi.3 - -NO_STAGE= yes pre-everything:: @${ECHO_MSG} "--------------------------------------------------------" @${ECHO_MSG} "Some functions of this module require a threaded perl." Index: distinfo =================================================================== --- distinfo (revision 336212) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Glib-1.280.tar.gz) = 392cf0c1442dc7e2d6e75ad4788e955f939cdbdd2c3441a760c4d650e44df1b9 -SIZE (Glib-1.280.tar.gz) = 285478 +SHA256 (Glib-1.303.tar.gz) = 67af87877db49bb8c3dc84b3db8fc6b7dd8450957aee4f3daae9e466467e0aa4 +SIZE (Glib-1.303.tar.gz) = 285968 Index: pkg-plist =================================================================== --- pkg-plist (revision 336212) +++ pkg-plist (working copy) @@ -39,6 +39,39 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Glib/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Glib/Glib.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Glib/Glib.so +%%PERL5_MAN3%%/Glib.3.gz +%%PERL5_MAN3%%/Glib::BookmarkFile.3.gz +%%PERL5_MAN3%%/Glib::Boxed.3.gz +%%PERL5_MAN3%%/Glib::CodeGen.3.gz +%%PERL5_MAN3%%/Glib::Error.3.gz +%%PERL5_MAN3%%/Glib::Flags.3.gz +%%PERL5_MAN3%%/Glib::GenPod.3.gz +%%PERL5_MAN3%%/Glib::KeyFile.3.gz +%%PERL5_MAN3%%/Glib::Log.3.gz +%%PERL5_MAN3%%/Glib::MainLoop.3.gz +%%PERL5_MAN3%%/Glib::MakeHelper.3.gz +%%PERL5_MAN3%%/Glib::Markup.3.gz +%%PERL5_MAN3%%/Glib::Object.3.gz +%%PERL5_MAN3%%/Glib::Object::Subclass.3.gz +%%PERL5_MAN3%%/Glib::OptionContext.3.gz +%%PERL5_MAN3%%/Glib::OptionGroup.3.gz +%%PERL5_MAN3%%/Glib::Param::Double.3.gz +%%PERL5_MAN3%%/Glib::Param::Enum.3.gz +%%PERL5_MAN3%%/Glib::Param::Flags.3.gz +%%PERL5_MAN3%%/Glib::Param::GType.3.gz +%%PERL5_MAN3%%/Glib::Param::Int.3.gz +%%PERL5_MAN3%%/Glib::Param::Int64.3.gz +%%PERL5_MAN3%%/Glib::Param::UInt.3.gz +%%PERL5_MAN3%%/Glib::Param::UInt64.3.gz +%%PERL5_MAN3%%/Glib::ParamSpec.3.gz +%%PERL5_MAN3%%/Glib::ParseXSDoc.3.gz +%%PERL5_MAN3%%/Glib::Signal.3.gz +%%PERL5_MAN3%%/Glib::Type.3.gz +%%PERL5_MAN3%%/Glib::Utils.3.gz +%%PERL5_MAN3%%/Glib::devel.3.gz +%%PERL5_MAN3%%/Glib::index.3.gz +%%PERL5_MAN3%%/Glib::version.3.gz +%%PERL5_MAN3%%/Glib::xsapi.3.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Glib/Param @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Glib/Object @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Glib/Install --- p5-Glib2-1.303.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 19:50:28 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4D7AFB3; Wed, 11 Dec 2013 19:50:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79ABE1161; Wed, 11 Dec 2013 19:50:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJoSbw078535; Wed, 11 Dec 2013 19:50:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBJoSfj078534; Wed, 11 Dec 2013 19:50:28 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 19:50:28 GMT Message-Id: <201312111950.rBBJoSfj078534@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184701: [PATCH] devel/p5-ExtUtils-Depends: update to 0.306 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 19:50:28 -0000 Synopsis: [PATCH] devel/p5-ExtUtils-Depends: update to 0.306 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 19:50:28 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184701 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 20:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBC1F553 for ; Wed, 11 Dec 2013 20:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B74621648 for ; Wed, 11 Dec 2013 20:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBKo0EL092181 for ; Wed, 11 Dec 2013 20:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBKo0jI092180; Wed, 11 Dec 2013 20:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 20:50:00 GMT Resent-Message-Id: <201312112050.rBBKo0jI092180@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, rk Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3AED3C4 for ; Wed, 11 Dec 2013 20:45:24 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B6D0B1613 for ; Wed, 11 Dec 2013 20:45:24 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBKjOjK014299 for ; Wed, 11 Dec 2013 20:45:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBKjO59014289; Wed, 11 Dec 2013 20:45:24 GMT (envelope-from nobody) Message-Id: <201312112045.rBBKjO59014289@oldred.freebsd.org> Date: Wed, 11 Dec 2013 20:45:24 GMT From: rk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184705: x11-fonts/dejavu install fails on 10 with LINKS=on X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 20:50:00 -0000 >Number: 184705 >Category: ports >Synopsis: x11-fonts/dejavu install fails on 10 with LINKS=on >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 20:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: rk >Release: 10.0RC1 >Organization: >Environment: >Description: if you have configured LINKS=on then on pkgng packaging system (freebsd 10 default) installation fails during stage phase. you need to mkdir -p conf.d directory before use during install >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 20:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B437556 for ; Wed, 11 Dec 2013 20:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8E3B164A for ; Wed, 11 Dec 2013 20:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBKo0CU092192 for ; Wed, 11 Dec 2013 20:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBKo0Ji092191; Wed, 11 Dec 2013 20:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 20:50:00 GMT Resent-Message-Id: <201312112050.rBBKo0Ji092191@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, lbartoletti Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CAD91D7 for ; Wed, 11 Dec 2013 20:40:44 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2948F15D6 for ; Wed, 11 Dec 2013 20:40:44 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBKeh1p046661 for ; Wed, 11 Dec 2013 20:40:43 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBKehuQ046616; Wed, 11 Dec 2013 20:40:43 GMT (envelope-from nobody) Message-Id: <201312112040.rBBKehuQ046616@oldred.freebsd.org> Date: Wed, 11 Dec 2013 20:40:43 GMT From: lbartoletti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184706: [NEW PORT] graphics/osgearth X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 20:50:01 -0000 >Number: 184706 >Category: ports >Synopsis: [NEW PORT] graphics/osgearth >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 20:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: lbartoletti >Release: >Organization: >Environment: >Description: Add graphics/osgearth Logs : https://redports.org/buildarchive/20131211193948-40985/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # osgearth # osgearth/distinfo # osgearth/pkg-descr # osgearth/Makefile # osgearth/pkg-plist # osgearth/files # osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp # echo c - osgearth mkdir -p osgearth > /dev/null 2>&1 echo x - osgearth/distinfo sed 's/^X//' >osgearth/distinfo << 'aa283bbb0c61f6e6c89d0c8a924822e0' XSHA256 (osgearth-2.5.zip) = 07745925344bc74dec9e2c441ccaca746c34a67895b93e14326ab2856354b0aa XSIZE (osgearth-2.5.zip) = 50693211 aa283bbb0c61f6e6c89d0c8a924822e0 echo x - osgearth/pkg-descr sed 's/^X//' >osgearth/pkg-descr << 'f29dbb187d524e0ef727ac55719d19d9' XosgEarth is a C++ terrain rendering SDK. Just create a simple XML file, point Xit at your imagery, elevation, and vector data, load it into your favorite XOpenSceneGraph application, and go! osgEarth supports all kinds of data and Xcomes with lots of examples to help you get up and running quickly and easily. X XWWW: http://osgearth.org/ f29dbb187d524e0ef727ac55719d19d9 echo x - osgearth/Makefile sed 's/^X//' >osgearth/Makefile << '61fc99ba7274d7e15387ad58a76f1d9f' X# Created by: lbartoletti X# $FreeBSD$ X XPORTNAME= osgearth XPORTVERSION= 2.5 XCATEGORIES= graphics geography XMASTER_SITES= https://github.com/gwaldron/${PORTNAME}/archive/ X XMAINTAINER= coder@tuxfamily.org XCOMMENT= osgEarth is a C++ terrain rendering toolkit for OpenSceneGraph X XLICENSE= LGPL3 X XBUILD_DEPENDS= ${LOCALBASE}/include/minizip/unzip.h:${PORTSDIR}/archivers/minizip XLIB_DEPENDS= libosg.so:${PORTSDIR}/graphics/osg-devel \ X libgdal.so:${PORTSDIR}/graphics/gdal \ X libcurl.so:${PORTSDIR}/ftp/curl X XWRKSRC= ${WRKDIR}/${PORTNAME}-${DISTNAME} X XUSE_ZIP= YES XUSES= cmake XUSE_GMAKE= YES X XUSE_LDCONFIG= YES X XFETCH_ARGS= -Fpr X XCMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include -DMINIZIP_INCLUDE_DIR=${LOCALBASE}/include/minizip -DCMAKE_LIBRARY_PATH:PATH=${LOCALBASE}/lib -DLIB_POSTFIX:STRING="" -DOSGEARTH_USE_QT:BOOL=FALSE X X.include X.include 61fc99ba7274d7e15387ad58a76f1d9f echo x - osgearth/pkg-plist sed 's/^X//' >osgearth/pkg-plist << '78fed10e0db325486c31cdafd16fe263' Xbin/osgearth_annotation Xbin/osgearth_backfill Xbin/osgearth_boundarygen Xbin/osgearth_cache Xbin/osgearth_city Xbin/osgearth_clamp Xbin/osgearth_colorfilter Xbin/osgearth_controls Xbin/osgearth_elevation Xbin/osgearth_featureeditor Xbin/osgearth_featurefilter Xbin/osgearth_featureinfo Xbin/osgearth_featuremanip Xbin/osgearth_featurequery Xbin/osgearth_features Xbin/osgearth_graticule Xbin/osgearth_imageoverlay Xbin/osgearth_los Xbin/osgearth_manip Xbin/osgearth_map Xbin/osgearth_measure Xbin/osgearth_minimap Xbin/osgearth_occlusionculling Xbin/osgearth_overlayviewer Xbin/osgearth_package Xbin/osgearth_sequencecontrol Xbin/osgearth_shadercomp Xbin/osgearth_shadow Xbin/osgearth_sharedlayer Xbin/osgearth_terraineffects Xbin/osgearth_terrainprofile Xbin/osgearth_tfs Xbin/osgearth_tileindex Xbin/osgearth_tilesource Xbin/osgearth_toc Xbin/osgearth_tracks Xbin/osgearth_version Xbin/osgearth_viewer Xinclude/osgEarth/AlphaEffect Xinclude/osgEarth/AutoScale Xinclude/osgEarth/Bounds Xinclude/osgEarth/Cache Xinclude/osgEarth/CacheBin Xinclude/osgEarth/CacheEstimator Xinclude/osgEarth/CachePolicy Xinclude/osgEarth/CacheSeed Xinclude/osgEarth/Capabilities Xinclude/osgEarth/ClampableNode Xinclude/osgEarth/ClampingTechnique Xinclude/osgEarth/ColorFilter Xinclude/osgEarth/Common Xinclude/osgEarth/CompositeTileSource Xinclude/osgEarth/Config Xinclude/osgEarth/Containers Xinclude/osgEarth/Cube Xinclude/osgEarth/CullingUtils Xinclude/osgEarth/DPLineSegmentIntersector Xinclude/osgEarth/DateTime Xinclude/osgEarth/Decluttering Xinclude/osgEarth/DepthOffset Xinclude/osgEarth/Draggers Xinclude/osgEarth/DrapeableNode Xinclude/osgEarth/DrapingTechnique Xinclude/osgEarth/DrawInstanced Xinclude/osgEarth/ECEF Xinclude/osgEarth/ElevationLOD Xinclude/osgEarth/ElevationLayer Xinclude/osgEarth/ElevationQuery Xinclude/osgEarth/Export Xinclude/osgEarth/FadeEffect Xinclude/osgEarth/FileUtils Xinclude/osgEarth/GeoCommon Xinclude/osgEarth/GeoData Xinclude/osgEarth/GeoMath Xinclude/osgEarth/Geoid Xinclude/osgEarth/HTTPClient Xinclude/osgEarth/HeightFieldUtils Xinclude/osgEarth/IOTypes Xinclude/osgEarth/ImageLayer Xinclude/osgEarth/ImageMosaic Xinclude/osgEarth/ImageToHeightFieldConverter Xinclude/osgEarth/ImageUtils Xinclude/osgEarth/JsonUtils Xinclude/osgEarth/Layer Xinclude/osgEarth/LineFunctor Xinclude/osgEarth/LocalTangentPlane Xinclude/osgEarth/Locators Xinclude/osgEarth/Map Xinclude/osgEarth/MapCallback Xinclude/osgEarth/MapFrame Xinclude/osgEarth/MapInfo Xinclude/osgEarth/MapModelChange Xinclude/osgEarth/MapNode Xinclude/osgEarth/MapNodeObserver Xinclude/osgEarth/MapNodeOptions Xinclude/osgEarth/MapOptions Xinclude/osgEarth/MaskLayer Xinclude/osgEarth/MaskNode Xinclude/osgEarth/MaskSource Xinclude/osgEarth/MemCache Xinclude/osgEarth/ModelLayer Xinclude/osgEarth/ModelSource Xinclude/osgEarth/NodeUtils Xinclude/osgEarth/Notify Xinclude/osgEarth/OverlayDecorator Xinclude/osgEarth/OverlayNode Xinclude/osgEarth/Pickers Xinclude/osgEarth/PrimitiveIntersector Xinclude/osgEarth/Profile Xinclude/osgEarth/Progress Xinclude/osgEarth/Random Xinclude/osgEarth/Registry Xinclude/osgEarth/Revisioning Xinclude/osgEarth/ShaderFactory Xinclude/osgEarth/ShaderGenerator Xinclude/osgEarth/ShaderUtils Xinclude/osgEarth/SparseTexture2DArray Xinclude/osgEarth/SpatialReference Xinclude/osgEarth/StateSetCache Xinclude/osgEarth/StringUtils Xinclude/osgEarth/TaskService Xinclude/osgEarth/Terrain Xinclude/osgEarth/TerrainEffect Xinclude/osgEarth/TerrainEngineNode Xinclude/osgEarth/TerrainLayer Xinclude/osgEarth/TerrainOptions Xinclude/osgEarth/TextureCompositor Xinclude/osgEarth/TextureCompositorMulti Xinclude/osgEarth/TextureCompositorTexArray Xinclude/osgEarth/ThreadingUtils Xinclude/osgEarth/TileKey Xinclude/osgEarth/TileSource Xinclude/osgEarth/TimeControl Xinclude/osgEarth/TraversalData Xinclude/osgEarth/URI Xinclude/osgEarth/Units Xinclude/osgEarth/Utils Xinclude/osgEarth/Version Xinclude/osgEarth/VerticalDatum Xinclude/osgEarth/Viewpoint Xinclude/osgEarth/VirtualProgram Xinclude/osgEarth/XmlUtils Xinclude/osgEarth/optional Xinclude/osgEarth/tinystr.h Xinclude/osgEarth/tinyxml.h Xinclude/osgEarthAnnotation/AnnotationData Xinclude/osgEarthAnnotation/AnnotationEditing Xinclude/osgEarthAnnotation/AnnotationNode Xinclude/osgEarthAnnotation/AnnotationRegistry Xinclude/osgEarthAnnotation/AnnotationSettings Xinclude/osgEarthAnnotation/AnnotationUtils Xinclude/osgEarthAnnotation/CircleNode Xinclude/osgEarthAnnotation/Common Xinclude/osgEarthAnnotation/Decoration Xinclude/osgEarthAnnotation/EllipseNode Xinclude/osgEarthAnnotation/Export Xinclude/osgEarthAnnotation/FeatureEditing Xinclude/osgEarthAnnotation/FeatureNode Xinclude/osgEarthAnnotation/HighlightDecoration Xinclude/osgEarthAnnotation/ImageOverlay Xinclude/osgEarthAnnotation/ImageOverlayEditor Xinclude/osgEarthAnnotation/LabelNode Xinclude/osgEarthAnnotation/LocalGeometryNode Xinclude/osgEarthAnnotation/LocalizedNode Xinclude/osgEarthAnnotation/ModelNode Xinclude/osgEarthAnnotation/OrthoNode Xinclude/osgEarthAnnotation/PlaceNode Xinclude/osgEarthAnnotation/RectangleNode Xinclude/osgEarthAnnotation/ScaleDecoration Xinclude/osgEarthAnnotation/TrackNode Xinclude/osgEarthDrivers/agglite/AGGLiteOptions Xinclude/osgEarthDrivers/arcgis/ArcGISOptions Xinclude/osgEarthDrivers/bing/BingOptions Xinclude/osgEarthDrivers/cache_filesystem/FileSystemCache Xinclude/osgEarthDrivers/debug/DebugOptions Xinclude/osgEarthDrivers/engine_byo/BYOTerrainEngineNode Xinclude/osgEarthDrivers/engine_byo/BYOTerrainEngineOptions Xinclude/osgEarthDrivers/engine_byo/Common Xinclude/osgEarthDrivers/engine_mp/Common Xinclude/osgEarthDrivers/engine_mp/DynamicLODScaleCallback Xinclude/osgEarthDrivers/engine_mp/FileLocationCallback Xinclude/osgEarthDrivers/engine_mp/KeyNodeFactory Xinclude/osgEarthDrivers/engine_mp/MPGeometry Xinclude/osgEarthDrivers/engine_mp/MPTerrainEngineNode Xinclude/osgEarthDrivers/engine_mp/MPTerrainEngineOptions Xinclude/osgEarthDrivers/engine_mp/QuickReleaseGLObjects Xinclude/osgEarthDrivers/engine_mp/SingleKeyNodeFactory Xinclude/osgEarthDrivers/engine_mp/TerrainNode Xinclude/osgEarthDrivers/engine_mp/TileGroup Xinclude/osgEarthDrivers/engine_mp/TileModel Xinclude/osgEarthDrivers/engine_mp/TileModelCompiler Xinclude/osgEarthDrivers/engine_mp/TileModelFactory Xinclude/osgEarthDrivers/engine_mp/TileNode Xinclude/osgEarthDrivers/engine_mp/TileNodeRegistry Xinclude/osgEarthDrivers/engine_mp/TilePagedLOD Xinclude/osgEarthDrivers/engine_osgterrain/Common Xinclude/osgEarthDrivers/engine_osgterrain/CustomTerrainTechnique Xinclude/osgEarthDrivers/engine_osgterrain/DynamicLODScaleCallback Xinclude/osgEarthDrivers/engine_osgterrain/FileLocationCallback Xinclude/osgEarthDrivers/engine_osgterrain/KeyNodeFactory Xinclude/osgEarthDrivers/engine_osgterrain/LODFactorCallback Xinclude/osgEarthDrivers/engine_osgterrain/MultiPassTerrainTechnique Xinclude/osgEarthDrivers/engine_osgterrain/OSGTerrainEngineNode Xinclude/osgEarthDrivers/engine_osgterrain/OSGTerrainOptions Xinclude/osgEarthDrivers/engine_osgterrain/OSGTileFactory Xinclude/osgEarthDrivers/engine_osgterrain/ParallelKeyNodeFactory Xinclude/osgEarthDrivers/engine_osgterrain/SerialKeyNodeFactory Xinclude/osgEarthDrivers/engine_osgterrain/SinglePassTerrainTechnique Xinclude/osgEarthDrivers/engine_osgterrain/StreamingTerrainNode Xinclude/osgEarthDrivers/engine_osgterrain/StreamingTile Xinclude/osgEarthDrivers/engine_osgterrain/TerrainNode Xinclude/osgEarthDrivers/engine_osgterrain/Tile Xinclude/osgEarthDrivers/engine_osgterrain/TileBuilder Xinclude/osgEarthDrivers/engine_osgterrain/TransparentLayer Xinclude/osgEarthDrivers/engine_quadtree/Common Xinclude/osgEarthDrivers/engine_quadtree/CustomPagedLOD Xinclude/osgEarthDrivers/engine_quadtree/DynamicLODScaleCallback Xinclude/osgEarthDrivers/engine_quadtree/FileLocationCallback Xinclude/osgEarthDrivers/engine_quadtree/KeyNodeFactory Xinclude/osgEarthDrivers/engine_quadtree/LODFactorCallback Xinclude/osgEarthDrivers/engine_quadtree/QuadTreeTerrainEngineNode Xinclude/osgEarthDrivers/engine_quadtree/QuadTreeTerrainEngineOptions Xinclude/osgEarthDrivers/engine_quadtree/QuickReleaseGLObjects Xinclude/osgEarthDrivers/engine_quadtree/SerialKeyNodeFactory Xinclude/osgEarthDrivers/engine_quadtree/TerrainNode Xinclude/osgEarthDrivers/engine_quadtree/TileModel Xinclude/osgEarthDrivers/engine_quadtree/TileModelCompiler Xinclude/osgEarthDrivers/engine_quadtree/TileModelFactory Xinclude/osgEarthDrivers/engine_quadtree/TileNode Xinclude/osgEarthDrivers/engine_quadtree/TileNodeRegistry Xinclude/osgEarthDrivers/feature_ogr/FeatureCursorOGR Xinclude/osgEarthDrivers/feature_ogr/OGRFeatureOptions Xinclude/osgEarthDrivers/feature_tfs/TFSFeatureOptions Xinclude/osgEarthDrivers/feature_wfs/WFSFeatureOptions Xinclude/osgEarthDrivers/gdal/GDALOptions Xinclude/osgEarthDrivers/kml/KML Xinclude/osgEarthDrivers/kml/KMLOptions Xinclude/osgEarthDrivers/mask_feature/FeatureMaskOptions Xinclude/osgEarthDrivers/model_feature_geom/FeatureGeomModelOptions Xinclude/osgEarthDrivers/model_feature_stencil/FeatureStencilModelOptions Xinclude/osgEarthDrivers/model_simple/SimpleModelOptions Xinclude/osgEarthDrivers/ocean_surface/OceanSurface Xinclude/osgEarthDrivers/osg/OSGOptions Xinclude/osgEarthDrivers/refresh/RefreshOptions Xinclude/osgEarthDrivers/tilecache/TileCacheOptions Xinclude/osgEarthDrivers/tileindex/TileIndexOptions Xinclude/osgEarthDrivers/tileservice/TileServiceOptions Xinclude/osgEarthDrivers/tms/TMSOptions Xinclude/osgEarthDrivers/vpb/VPBOptions Xinclude/osgEarthDrivers/wcs/WCSOptions Xinclude/osgEarthDrivers/wms/TileService Xinclude/osgEarthDrivers/wms/WMSOptions Xinclude/osgEarthDrivers/xyz/XYZOptions Xinclude/osgEarthDrivers/yahoo/YahooOptions Xinclude/osgEarthFeatures/AltitudeFilter Xinclude/osgEarthFeatures/BufferFilter Xinclude/osgEarthFeatures/BuildGeometryFilter Xinclude/osgEarthFeatures/BuildTextFilter Xinclude/osgEarthFeatures/BuildTextOperator Xinclude/osgEarthFeatures/CentroidFilter Xinclude/osgEarthFeatures/Common Xinclude/osgEarthFeatures/ConvertTypeFilter Xinclude/osgEarthFeatures/CropFilter Xinclude/osgEarthFeatures/ExtrudeGeometryFilter Xinclude/osgEarthFeatures/Feature Xinclude/osgEarthFeatures/FeatureCursor Xinclude/osgEarthFeatures/FeatureDisplayLayout Xinclude/osgEarthFeatures/FeatureDrawSet Xinclude/osgEarthFeatures/FeatureListSource Xinclude/osgEarthFeatures/FeatureModelGraph Xinclude/osgEarthFeatures/FeatureModelSource Xinclude/osgEarthFeatures/FeatureSource Xinclude/osgEarthFeatures/FeatureSourceIndexNode Xinclude/osgEarthFeatures/FeatureTileSource Xinclude/osgEarthFeatures/Filter Xinclude/osgEarthFeatures/FilterContext Xinclude/osgEarthFeatures/GeometryCompiler Xinclude/osgEarthFeatures/GeometryUtils Xinclude/osgEarthFeatures/LabelSource Xinclude/osgEarthFeatures/MeshClamper Xinclude/osgEarthFeatures/OgrUtils Xinclude/osgEarthFeatures/OptimizerHints Xinclude/osgEarthFeatures/PolygonizeLines Xinclude/osgEarthFeatures/ResampleFilter Xinclude/osgEarthFeatures/ScaleFilter Xinclude/osgEarthFeatures/ScatterFilter Xinclude/osgEarthFeatures/Script Xinclude/osgEarthFeatures/ScriptEngine Xinclude/osgEarthFeatures/Session Xinclude/osgEarthFeatures/SubstituteModelFilter Xinclude/osgEarthFeatures/TessellateOperator Xinclude/osgEarthFeatures/TextSymbolizer Xinclude/osgEarthFeatures/TransformFilter Xinclude/osgEarthFeatures/VirtualFeatureSource Xinclude/osgEarthSymbology/AGG.h Xinclude/osgEarthSymbology/AltitudeSymbol Xinclude/osgEarthSymbology/Color Xinclude/osgEarthSymbology/Common Xinclude/osgEarthSymbology/CssUtils Xinclude/osgEarthSymbology/Expression Xinclude/osgEarthSymbology/ExtrusionSymbol Xinclude/osgEarthSymbology/Fill Xinclude/osgEarthSymbology/GEOS Xinclude/osgEarthSymbology/Geometry Xinclude/osgEarthSymbology/GeometryFactory Xinclude/osgEarthSymbology/GeometryRasterizer Xinclude/osgEarthSymbology/IconResource Xinclude/osgEarthSymbology/IconSymbol Xinclude/osgEarthSymbology/InstanceResource Xinclude/osgEarthSymbology/InstanceSymbol Xinclude/osgEarthSymbology/LineSymbol Xinclude/osgEarthSymbology/MarkerResource Xinclude/osgEarthSymbology/MarkerSymbol Xinclude/osgEarthSymbology/MeshConsolidator Xinclude/osgEarthSymbology/MeshSubdivider Xinclude/osgEarthSymbology/ModelResource Xinclude/osgEarthSymbology/ModelSymbol Xinclude/osgEarthSymbology/PointSymbol Xinclude/osgEarthSymbology/PolygonSymbol Xinclude/osgEarthSymbology/Query Xinclude/osgEarthSymbology/RenderSymbol Xinclude/osgEarthSymbology/Resource Xinclude/osgEarthSymbology/ResourceCache Xinclude/osgEarthSymbology/ResourceLibrary Xinclude/osgEarthSymbology/Skins Xinclude/osgEarthSymbology/StencilVolumeNode Xinclude/osgEarthSymbology/Stroke Xinclude/osgEarthSymbology/Style Xinclude/osgEarthSymbology/StyleSelector Xinclude/osgEarthSymbology/StyleSheet Xinclude/osgEarthSymbology/Symbol Xinclude/osgEarthSymbology/Tags Xinclude/osgEarthSymbology/TextSymbol Xinclude/osgEarthUtil/AnnotationEvents Xinclude/osgEarthUtil/ArcGIS Xinclude/osgEarthUtil/AutoClipPlaneHandler Xinclude/osgEarthUtil/BrightnessContrastColorFilter Xinclude/osgEarthUtil/CMYKColorFilter Xinclude/osgEarthUtil/ChromaKeyColorFilter Xinclude/osgEarthUtil/ClampCallback Xinclude/osgEarthUtil/Common Xinclude/osgEarthUtil/ContourMap Xinclude/osgEarthUtil/Controls Xinclude/osgEarthUtil/DataScanner Xinclude/osgEarthUtil/DateTime Xinclude/osgEarthUtil/DetailTexture Xinclude/osgEarthUtil/EarthManipulator Xinclude/osgEarthUtil/ExampleResources Xinclude/osgEarthUtil/Export Xinclude/osgEarthUtil/FeatureManipTool Xinclude/osgEarthUtil/FeatureQueryTool Xinclude/osgEarthUtil/Formatter Xinclude/osgEarthUtil/GLSLColorFilter Xinclude/osgEarthUtil/GammaColorFilter Xinclude/osgEarthUtil/GeodeticGraticule Xinclude/osgEarthUtil/HSLColorFilter Xinclude/osgEarthUtil/HTM Xinclude/osgEarthUtil/LODBlending Xinclude/osgEarthUtil/LatLongFormatter Xinclude/osgEarthUtil/LineOfSight Xinclude/osgEarthUtil/LinearLineOfSight Xinclude/osgEarthUtil/MGRSFormatter Xinclude/osgEarthUtil/MGRSGraticule Xinclude/osgEarthUtil/MeasureTool Xinclude/osgEarthUtil/MouseCoordsTool Xinclude/osgEarthUtil/NormalMap Xinclude/osgEarthUtil/ObjectLocator Xinclude/osgEarthUtil/PolyhedralLineOfSight Xinclude/osgEarthUtil/RGBColorFilter Xinclude/osgEarthUtil/RadialLineOfSight Xinclude/osgEarthUtil/ShadowUtils Xinclude/osgEarthUtil/SkyNode Xinclude/osgEarthUtil/SpatialData Xinclude/osgEarthUtil/StarData Xinclude/osgEarthUtil/TFS Xinclude/osgEarthUtil/TFSPackager Xinclude/osgEarthUtil/TMS Xinclude/osgEarthUtil/TMSBackFiller Xinclude/osgEarthUtil/TMSPackager Xinclude/osgEarthUtil/TerrainProfile Xinclude/osgEarthUtil/TileIndex Xinclude/osgEarthUtil/TileIndexBuilder Xinclude/osgEarthUtil/UTMGraticule Xinclude/osgEarthUtil/VerticalScale Xinclude/osgEarthUtil/WFS Xinclude/osgEarthUtil/WMS Xlib/libosgEarth.so Xlib/libosgEarth.so.0 Xlib/libosgEarth.so.2.5.0 Xlib/libosgEarthAnnotation.so Xlib/libosgEarthAnnotation.so.0 Xlib/libosgEarthAnnotation.so.2.5.0 Xlib/libosgEarthFeatures.so Xlib/libosgEarthFeatures.so.0 Xlib/libosgEarthFeatures.so.2.5.0 Xlib/libosgEarthSymbology.so Xlib/libosgEarthSymbology.so.0 Xlib/libosgEarthSymbology.so.2.5.0 Xlib/libosgEarthUtil.so Xlib/libosgEarthUtil.so.0 Xlib/libosgEarthUtil.so.2.5.0 Xlib/osgPlugins-3.1.3/osgdb_earth.so Xlib/osgPlugins-3.1.3/osgdb_kml.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_agglite.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_arcgis.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_arcgis_map_cache.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_bing.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_cache_filesystem.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_debug.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_engine_byo.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_engine_mp.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_engine_osgterrain.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_engine_quadtree.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_feature_ogr.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_feature_tfs.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_feature_wfs.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_gdal.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_label_annotation.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_label_overlay.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_mask_feature.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_model_feature_geom.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_model_feature_stencil.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_model_simple.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_ocean_surface.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_osg.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_refresh.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_tilecache.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_tileindex.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_tileservice.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_tms.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm2008.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm84.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm96.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_vpb.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_wcs.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_wms.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_xyz.so Xlib/osgPlugins-3.1.3/osgdb_osgearth_yahoo.so X@dirrmtry lib/osgPlugins-3.1.3 X@dirrmtry include/osgEarthUtil X@dirrmtry include/osgEarthSymbology X@dirrmtry include/osgEarthFeatures X@dirrmtry include/osgEarthDrivers/yahoo X@dirrmtry include/osgEarthDrivers/xyz X@dirrmtry include/osgEarthDrivers/wms X@dirrmtry include/osgEarthDrivers/wcs X@dirrmtry include/osgEarthDrivers/vpb X@dirrmtry include/osgEarthDrivers/tms X@dirrmtry include/osgEarthDrivers/tileservice X@dirrmtry include/osgEarthDrivers/tileindex X@dirrmtry include/osgEarthDrivers/tilecache X@dirrmtry include/osgEarthDrivers/refresh X@dirrmtry include/osgEarthDrivers/osg X@dirrmtry include/osgEarthDrivers/ocean_surface X@dirrmtry include/osgEarthDrivers/model_simple X@dirrmtry include/osgEarthDrivers/model_feature_stencil X@dirrmtry include/osgEarthDrivers/model_feature_geom X@dirrmtry include/osgEarthDrivers/mask_feature X@dirrmtry include/osgEarthDrivers/kml X@dirrmtry include/osgEarthDrivers/gdal X@dirrmtry include/osgEarthDrivers/feature_wfs X@dirrmtry include/osgEarthDrivers/feature_tfs X@dirrmtry include/osgEarthDrivers/feature_ogr X@dirrmtry include/osgEarthDrivers/engine_quadtree X@dirrmtry include/osgEarthDrivers/engine_osgterrain X@dirrmtry include/osgEarthDrivers/engine_mp X@dirrmtry include/osgEarthDrivers/engine_byo X@dirrmtry include/osgEarthDrivers/debug X@dirrmtry include/osgEarthDrivers/cache_filesystem X@dirrmtry include/osgEarthDrivers/bing X@dirrmtry include/osgEarthDrivers/arcgis X@dirrmtry include/osgEarthDrivers/agglite X@dirrmtry include/osgEarthDrivers X@dirrmtry include/osgEarthAnnotation X@dirrmtry include/osgEarth 78fed10e0db325486c31cdafd16fe263 echo c - osgearth/files mkdir -p osgearth/files > /dev/null 2>&1 echo x - osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp sed 's/^X//' >osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp << '44668297458c0add72aebcc320f2192b' X--- src/osgEarth/ThreadingUtils.cpp.orig 2013-05-16 20:29:30.000000000 +0200 X+++ src/osgEarth/ThreadingUtils.cpp 2013-05-16 20:28:01.000000000 +0200 X@@ -23,6 +23,7 @@ X #else X # include X # include X+# include X #endif X X using namespace osgEarth::Threading; X@@ -38,6 +39,10 @@ X return (unsigned)::GetCurrentThreadId(); X #elif __APPLE__ X return ::syscall(SYS_thread_selfid); X+#elif __FreeBSD__ X+ long lwpid; X+ thr_self(&lwpid); X+ return lwpid; X #else X return (unsigned)::syscall(SYS_gettid); X #endif 44668297458c0add72aebcc320f2192b exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 20:50:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B82165AF; Wed, 11 Dec 2013 20:50:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C73D164B; Wed, 11 Dec 2013 20:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBKoFVF093919; Wed, 11 Dec 2013 20:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBKoFAK093918; Wed, 11 Dec 2013 20:50:15 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 20:50:15 GMT Message-Id: <201312112050.rBBKoFAK093918@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184705: x11-fonts/dejavu install fails on 10 with LINKS=on X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 20:50:15 -0000 Synopsis: x11-fonts/dejavu install fails on 10 with LINKS=on Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 20:50:15 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184705 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 21:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B02A66F0 for ; Wed, 11 Dec 2013 21:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 720AB19D5 for ; Wed, 11 Dec 2013 21:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBLU0Wp001585 for ; Wed, 11 Dec 2013 21:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBLU0x1001584; Wed, 11 Dec 2013 21:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 21:30:00 GMT Resent-Message-Id: <201312112130.rBBLU0x1001584@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Mikhail T." Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1577660 for ; Wed, 11 Dec 2013 21:23:00 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CDC401957 for ; Wed, 11 Dec 2013 21:23:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBLN0ZI056560 for ; Wed, 11 Dec 2013 21:23:00 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBLN04R056551; Wed, 11 Dec 2013 21:23:00 GMT (envelope-from nobody) Message-Id: <201312112123.rBBLN04R056551@oldred.freebsd.org> Date: Wed, 11 Dec 2013 21:23:00 GMT From: "Mikhail T." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184707: [maintainer] [patch] devel/otrs: update to 3.2.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 21:30:00 -0000 >Number: 184707 >Category: ports >Synopsis: [maintainer] [patch] devel/otrs: update to 3.2.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mikhail T. >Release: >Organization: >Environment: >Description: - Update to 3.2.13 Build log: https://redports.org/~mtsatsenko/20131211203746-63887-163625/otrs-3.2.13.log >How-To-Repeat: >Fix: Patch attached with submission follows: Index: otrs/distinfo =================================================================== --- otrs/distinfo (revision 18173) +++ otrs/distinfo (revision 20499) @@ -1,2 +1,2 @@ -SHA256 (otrs-3.2.11.tar.bz2) = 40c541aec80f4ce7de656c9b7a4f7492dc6bcdbf7716cb9dd58ea913531ff543 -SIZE (otrs-3.2.11.tar.bz2) = 18777884 +SHA256 (otrs-3.2.13.tar.bz2) = ee21c82314b541f1fb31acf5517f69fb97c5cebd6a3ec53c774d56877ddaea66 +SIZE (otrs-3.2.13.tar.bz2) = 18865308 Index: otrs/Makefile =================================================================== --- otrs/Makefile (revision 18173) +++ otrs/Makefile (revision 20499) @@ -2,7 +2,7 @@ # $FreeBSD: devel/otrs/Makefile 328146 2013-09-24 15:18:08Z swills $ PORTNAME= otrs -PORTVERSION= 3.2.11 +PORTVERSION= 3.2.13 CATEGORIES= devel MASTER_SITES= http://ftp.otrs.org/pub/otrs/ \ ftp://ftp.samurai.com/pub/otrs/ \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 21:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6D6D726; Wed, 11 Dec 2013 21:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9CADF19DA; Wed, 11 Dec 2013 21:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBLU8VD001728; Wed, 11 Dec 2013 21:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBLU8BS001727; Wed, 11 Dec 2013 21:30:08 GMT (envelope-from edwin) Date: Wed, 11 Dec 2013 21:30:08 GMT Message-Id: <201312112130.rBBLU8BS001727@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184707: [maintainer] [patch] devel/otrs: update to 3.2.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 21:30:08 -0000 Synopsis: [maintainer] [patch] devel/otrs: update to 3.2.13 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 11 21:30:08 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184707 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 22:59:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B21E8E0; Wed, 11 Dec 2013 22:59:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D2C81159; Wed, 11 Dec 2013 22:59:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBMxqGB020278; Wed, 11 Dec 2013 22:59:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBMxqL5020277; Wed, 11 Dec 2013 22:59:52 GMT (envelope-from linimon) Date: Wed, 11 Dec 2013 22:59:52 GMT Message-Id: <201312112259.rBBMxqL5020277@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184699: [exp-run] Convert bsd.cran.mk to Uses/cran.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 22:59:53 -0000 Synopsis: [exp-run] Convert bsd.cran.mk to Uses/cran.mk Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 11 22:59:45 UTC 2013 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=184699 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 23:00:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE94D921 for ; Wed, 11 Dec 2013 23:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97402115F for ; Wed, 11 Dec 2013 23:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBN01eT020441 for ; Wed, 11 Dec 2013 23:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBN015T020440; Wed, 11 Dec 2013 23:00:01 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 23:00:01 GMT Resent-Message-Id: <201312112300.rBBN015T020440@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83E7D811 for ; Wed, 11 Dec 2013 22:53:09 +0000 (UTC) Received: from z29.zvq.me (6z29.zvq.me [IPv6:2a02:2018:10:0:225:90ff:fe23:2c74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EA5B1111E for ; Wed, 11 Dec 2013 22:52:58 +0000 (UTC) Received: from z29.zvq.me (localhost [127.0.0.1]) by z29.zvq.me (8.14.7/8.14.7) with ESMTP id rBBMqaar015816 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 12 Dec 2013 02:52:36 +0400 (MSK) (envelope-from sevan@z29.zvq.me) Received: (from root@localhost) by z29.zvq.me (8.14.7/8.14.7/Submit) id rBBMqZkD015815; Thu, 12 Dec 2013 02:52:35 +0400 (MSK) (envelope-from sevan) Message-Id: <201312112252.rBBMqZkD015815@z29.zvq.me> Date: Thu, 12 Dec 2013 02:52:35 +0400 (MSK) From: Sevan Janiyan To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184708: [PATCH] www/apache-jmeter: Add missing files to packing list Cc: mi@aldan.algebra.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 23:00:02 -0000 >Number: 184708 >Category: ports >Synopsis: [PATCH] www/apache-jmeter: Add missing files to packing list >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 23:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Dream Industries >Environment: System: FreeBSD 11.0-CURRENT FreeBSD 11.0-CURRENT #20 r258803: Mon Dec 2 00:58:59 >Description: use WWW: with a single space in pkg-descr Port maintainer (mi@aldan.algebra.com) is cc'd. Generated with FreeBSD Port Tools 0.99_10 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- apache-jmeter-2.9.patch begins here --- Index: pkg-descr =================================================================== --- pkg-descr (revision 336233) +++ pkg-descr (working copy) @@ -15,4 +15,4 @@ In addition to load-testing, the tool can also be used to verify correctness of your web-applications. -WWW: http://jmeter.apache.org/ +WWW: http://jmeter.apache.org/ Index: pkg-plist =================================================================== --- pkg-plist (revision 336233) +++ pkg-plist (working copy) @@ -7,6 +7,8 @@ %%DATADIR%%/bin/examples/CSVSample.jmx %%DATADIR%%/bin/examples/CSVSample_actions.csv %%DATADIR%%/bin/examples/CSVSample_user.csv +%%DATADIR%%/bin/examples/PerformanceTestPlanMemoryThread.jmx +%%DATADIR%%/bin/examples/jsp/memory.jsp %%DATADIR%%/bin/hc.parameters %%DATADIR%%/bin/httpclient.parameters %%DATADIR%%/bin/heapdump.sh @@ -79,15 +81,22 @@ %%DATADIR%%/lib/htmllexer-2.1.jar %%DATADIR%%/lib/htmlparser-2.1.jar %%DATADIR%%/lib/jcharts-0.7.5.jar +%%DATADIR%%/lib/jodd-core-3.4.1.jar +%%DATADIR%%/lib/jodd-lagarto-3.4.1.jar %%DATADIR%%/lib/jorphan.jar +%%DATADIR%%/lib/jsoup-1.7.1.jar %%DATADIR%%/lib/jtidy-r938.jar %%DATADIR%%/lib/junit/test.jar %%DATADIR%%/lib/logkit-2.0.jar %%DATADIR%%/lib/soap-2.3.1.jar +%%DATADIR%%/lib/slf4j-api-1.7.2.jar +%%DATADIR%%/lib/tika-core-1.3.jar +%%DATADIR%%/lib/tika-parsers-1.3.jar %%DATADIR%%/lib/xmlpull-1.1.3.1.jar %%DATADIR%%/lib/xpp3_min-1.1.4c.jar %%DATADIR%%/lib/xstream.jar bin/jmeter +@dirrm %%DATADIR%%/bin/examples/jsp @dirrm %%DATADIR%%/bin/examples @dirrm %%DATADIR%%/bin @dirrm %%DATADIR%%/extras --- apache-jmeter-2.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 23:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D5AA91F for ; Wed, 11 Dec 2013 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49F75115D for ; Wed, 11 Dec 2013 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBN009m020430 for ; Wed, 11 Dec 2013 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBN00kx020425; Wed, 11 Dec 2013 23:00:00 GMT (envelope-from gnats) Date: Wed, 11 Dec 2013 23:00:00 GMT Message-Id: <201312112300.rBBN00kx020425@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "O. Hartmann" Subject: Re: ports/184567: devel/freeocl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "O. Hartmann" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 23:00:01 -0000 The following reply was made to PR ports/184567; it has been noted by GNATS. From: "O. Hartmann" To: bug-followup@FreeBSD.org, cmt@burggraben.net Cc: Subject: Re: ports/184567: devel/freeocl Date: Wed, 11 Dec 2013 23:55:37 +0100 --Sig_/db=/i/Ecs.HQMDbj2fDg01Q Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Feel free to commit the patch.=20 Sorry for the delay on the answer, I'm busy at the moment. It seems that the port doen't compile properly when the patch is absent AND the (choosen system-) compiler is gcc > 4.6. Oliver=20 --Sig_/db=/i/Ecs.HQMDbj2fDg01Q Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQEcBAEBAgAGBQJSqO1vAAoJEOgBcD7A/5N8o4sIAM+8OaZ+w4BhDmEehQE5FrKo IXVtd8rc7sKhcetdClSNcl8u8ZinkDaVQPDYrNXKmxQFa2/MzkQr2uwViw7G2ojs w8NHo762s7mWNLbxyWtye4vqtkUBg7WmXiOJOvctWsbGNzM+VMh/+VeFbunqn5ND NYfi+jUP1dO4ViMQZUmIbD9DhNXjYCg1I5lSBrgP8PodoV1EfpKNu9Z29sbQmlTC eIaDVKbghcIuWXQAOqtOj+S+uIDkhbtNqohbxM2LpXS994MXziuABDWthOQ9cl8k cOVChCDhExzRcduVJvEqu05zX92DfTmHEGJiFMHgEM9ayzgmgQa2r7CKldAAVqc= =CCkS -----END PGP SIGNATURE----- --Sig_/db=/i/Ecs.HQMDbj2fDg01Q-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 11 23:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C10F6EEA for ; Wed, 11 Dec 2013 23:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AB4C150D for ; Wed, 11 Dec 2013 23:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBNo0og031292 for ; Wed, 11 Dec 2013 23:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBBNo0Tc031291; Wed, 11 Dec 2013 23:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 11 Dec 2013 23:50:00 GMT Resent-Message-Id: <201312112350.rBBNo0Tc031291@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jakub Lach Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC885E96 for ; Wed, 11 Dec 2013 23:46:19 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D78BF14F0 for ; Wed, 11 Dec 2013 23:46:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBBNkJsd038076 for ; Wed, 11 Dec 2013 23:46:19 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBBNkJNl038060; Wed, 11 Dec 2013 23:46:19 GMT (envelope-from nobody) Message-Id: <201312112346.rBBNkJNl038060@oldred.freebsd.org> Date: Wed, 11 Dec 2013 23:46:19 GMT From: Jakub Lach To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184710: [maintainer-update] games/chocolate-doom 1.7.0 to 2.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 23:50:00 -0000 >Number: 184710 >Category: ports >Synopsis: [maintainer-update] games/chocolate-doom 1.7.0 to 2.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 11 23:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jakub Lach >Release: FreeBSD 9.2-STABLE #0 r259130 amd64 >Organization: - >Environment: - >Description: On the 20th anniversary of Doom, Simon Howard (Fraggle) brings milestone chocolate-doom release cut from fresh v2 branch sporting numerous improvements i.a. Heretic, Hexen and Strife support. * Please check this submission diligently, as I'm still unsure of staging :) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruPN /usr/ports/games/chocolate-doom.orig/Makefile /usr/ports/games/chocolate-doom/Makefile --- /usr/ports/games/chocolate-doom.orig/Makefile 2013-12-11 22:00:01.000000000 +0100 +++ /usr/ports/games/chocolate-doom/Makefile 2013-12-12 00:35:10.000000000 +0100 @@ -1,12 +1,12 @@ # $FreeBSD: games/chocolate-doom/Makefile 327730 2013-09-20 17:36:33Z bapt $ PORTNAME= chocolate-doom -PORTVERSION= 1.7.0 +PORTVERSION= 2.0.0 CATEGORIES= games -MASTER_SITES= SF +MASTER_SITES= http://www.chocolate-doom.org/downloads/2.0.0/ MAINTAINER= jakub_lach@mailplus.pl -COMMENT= Doom port that aims to be compatible with the original exe +COMMENT= Doom/Heretic/Hexen/Strife engine port compatible with the original exes LICENSE= GPLv2 @@ -15,21 +15,12 @@ USE_PYTHON= 2.5+ GNU_CONFIGURE= yes -MAN5= chocolate-doom.cfg.5 default.cfg.5 -MAN6= chocolate-doom.6 chocolate-server.6 chocolate-setup.6 -PORTDOCS= CMDLINE ChangeLog HACKING INSTALL NEWS NOT-BUGS README README.OPL - -NO_STAGE= yes .include "${.CURDIR}/../doom-data/Makefile.include" .include post-patch-script: ${REINPLACE_CMD} -e 's|gamesdir = $$(prefix)/games|gamesdir = $$(prefix)/bin|' \ - ${WRKSRC}/src/Makefile.in ${WRKSRC}/setup/Makefile.in - -post-install: - ${INSTALL_DATA} ${WRKSRC}/HACKING ${DOCSDIR} - @${CAT} ${PKGMESSAGE} + ${WRKSRC}/src/Makefile.in ${WRKSRC}/src/setup/Makefile.in .include diff -ruPN /usr/ports/games/chocolate-doom.orig/distinfo /usr/ports/games/chocolate-doom/distinfo --- /usr/ports/games/chocolate-doom.orig/distinfo 2013-12-11 14:42:06.000000000 +0100 +++ /usr/ports/games/chocolate-doom/distinfo 2013-12-11 14:45:13.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (chocolate-doom-1.7.0.tar.gz) = c1cffb602e3cc3a82941b4675b9dc816a6e419076faf8f54db46df397f86bfc0 -SIZE (chocolate-doom-1.7.0.tar.gz) = 1091798 +SHA256 (chocolate-doom-2.0.0.tar.gz) = 85c58b77dad933013253b453ef01907492b4719acd56cf8cb6c76f4a361ab60c +SIZE (chocolate-doom-2.0.0.tar.gz) = 2092519 diff -ruPN /usr/ports/games/chocolate-doom.orig/pkg-descr /usr/ports/games/chocolate-doom/pkg-descr --- /usr/ports/games/chocolate-doom.orig/pkg-descr 2013-12-11 14:42:06.000000000 +0100 +++ /usr/ports/games/chocolate-doom/pkg-descr 2013-12-11 17:59:05.000000000 +0100 @@ -3,6 +3,7 @@ executable as possible. This includes emulating all the different versions, playing demos perfectly accurately, playing "vanilla-only" PWADS, and netcode that works on newer operating systems while still behaving the same as -"vanilla" Doom. +"vanilla" Doom. Additionally, Heretic, Hexen as well as Strife are also +supported. WWW: http://chocolate-doom.org diff -ruPN /usr/ports/games/chocolate-doom.orig/pkg-message /usr/ports/games/chocolate-doom/pkg-message --- /usr/ports/games/chocolate-doom.orig/pkg-message 2013-12-11 14:42:06.000000000 +0100 +++ /usr/ports/games/chocolate-doom/pkg-message 2013-12-11 18:52:11.000000000 +0100 @@ -1,6 +1,10 @@ -************************************************************** +****************************************************** -To enable OPL MIDI emulation you need to run chocolate-setup, -default Native MIDI is very similar to Roland SC-55. +To switch on OPL (Adlib/SB) or GUS emulation you need +to run chocolate-doom-setup, default Native MIDI is +very similar to Roland SC-55. -************************************************************** +GUS emulation needs setting "gus_patch_path" in *.cfg +to GUS patch set (dgguspat.zip). + +****************************************************** diff -ruPN /usr/ports/games/chocolate-doom.orig/pkg-plist /usr/ports/games/chocolate-doom/pkg-plist --- /usr/ports/games/chocolate-doom.orig/pkg-plist 2013-12-11 14:42:06.000000000 +0100 +++ /usr/ports/games/chocolate-doom/pkg-plist 2013-12-12 00:29:47.000000000 +0100 @@ -1,10 +1,60 @@ -share/icons/chocolate-doom.png -share/icons/chocolate-setup.png -share/applications/chocolate-doom.desktop -share/applications/screensavers/chocolate-doom-screensaver.desktop -share/applications/chocolate-setup.desktop bin/chocolate-doom +bin/chocolate-doom-setup +bin/chocolate-heretic +bin/chocolate-heretic-setup +bin/chocolate-hexen +bin/chocolate-hexen-setup bin/chocolate-server -bin/chocolate-setup +bin/chocolate-strife +bin/chocolate-strife-setup +man/man5/chocolate-doom.cfg.5.gz +man/man5/chocolate-heretic.cfg.5.gz +man/man5/chocolate-hexen.cfg.5.gz +man/man5/chocolate-strife.cfg.5.gz +man/man5/default.cfg.5.gz +man/man5/heretic.cfg.5.gz +man/man5/hexen.cfg.5.gz +man/man5/strife.cfg.5.gz +man/man6/chocolate-doom.6.gz +man/man6/chocolate-heretic.6.gz +man/man6/chocolate-hexen.6.gz +man/man6/chocolate-server.6.gz +man/man6/chocolate-setup.6.gz +man/man6/chocolate-strife.6.gz +share/applications/chocolate-doom.desktop +share/applications/chocolate-setup.desktop +share/applications/screensavers/chocolate-doom-screensaver.desktop +%%PORTDOCS%%%%DOCSDIR%%/CMDLINE.doom +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.doom +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/NOT-BUGS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.OPL +share/doc/chocolate-heretic/CMDLINE.heretic +share/doc/chocolate-heretic/ChangeLog +share/doc/chocolate-heretic/INSTALL.heretic +share/doc/chocolate-heretic/NEWS +share/doc/chocolate-heretic/README +share/doc/chocolate-heretic/README.OPL +share/doc/chocolate-hexen/CMDLINE.hexen +share/doc/chocolate-hexen/ChangeLog +share/doc/chocolate-hexen/INSTALL.hexen +share/doc/chocolate-hexen/NEWS +share/doc/chocolate-hexen/README +share/doc/chocolate-hexen/README.OPL +share/doc/chocolate-strife/CMDLINE.strife +share/doc/chocolate-strife/ChangeLog +share/doc/chocolate-strife/INSTALL.strife +share/doc/chocolate-strife/NEWS +share/doc/chocolate-strife/README +share/doc/chocolate-strife/README.OPL +share/doc/chocolate-strife/README.Strife +share/icons/chocolate-doom.png +share/icons/chocolate-setup.png @dirrmtry share/icons +@dirrmtry share/doc/chocolate-strife +@dirrmtry share/doc/chocolate-hexen +@dirrmtry share/doc/chocolate-heretic +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrmtry share/applications/screensavers >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 02:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B813B551 for ; Thu, 12 Dec 2013 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79D3C11BA for ; Thu, 12 Dec 2013 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC2o02u082045 for ; Thu, 12 Dec 2013 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC2o0Xh082044; Thu, 12 Dec 2013 02:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 02:50:00 GMT Resent-Message-Id: <201312120250.rBC2o0Xh082044@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dirk Jagdmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD5E84B2 for ; Thu, 12 Dec 2013 02:49:16 +0000 (UTC) Received: from smtp1.riverbed.com (eng.riverbed.com [208.70.196.45]) by mx1.freebsd.org (Postfix) with ESMTP id 97FA811AE for ; Thu, 12 Dec 2013 02:49:16 +0000 (UTC) Received: from unknown (HELO 365EXCH-HUB-P3.nbttech.com) ([10.16.4.1]) by smtp1.riverbed.com with ESMTP; 11 Dec 2013 18:48:09 -0800 Received: from freebsd9 (10.1.8.107) by 365EXCH-HUB-P3.nbttech.com (10.16.205.58) with Microsoft SMTP Server id 14.2.328.9; Wed, 11 Dec 2013 18:48:08 -0800 Received: by freebsd9 (sSMTP sendmail emulation); Wed, 11 Dec 2013 19:48:08 -0800 Message-Id: Date: Wed, 11 Dec 2013 19:48:08 -0800 From: Dirk Jagdmann To: X-Send-Pr-Version: 3.114 Subject: ports/184712: update of devel/quilt port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dirk Jagdmann List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 02:50:00 -0000 >Number: 184712 >Category: ports >Synopsis: update of devel/quilt port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 02:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dirk Jagdmann >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD freebsd9 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: update the devel/quilt port to version 0.61 >How-To-Repeat: >Fix: apply the following diff diff -ru quilt.orig/Makefile quilt/Makefile --- quilt.orig/Makefile 2013-12-11 19:03:57.000000000 -0800 +++ quilt/Makefile 2013-12-11 19:02:44.000000000 -0800 @@ -2,7 +2,7 @@ # $FreeBSD: branches/RELENG_9_2_0/devel/quilt/Makefile 316850 2013-04-29 22:27:05Z bapt $ PORTNAME= quilt -PORTVERSION= 0.60 +PORTVERSION= 0.61 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= quilt diff -ru quilt.orig/distinfo quilt/distinfo --- quilt.orig/distinfo 2013-12-11 19:03:57.000000000 -0800 +++ quilt/distinfo 2013-12-11 19:04:22.000000000 -0800 @@ -1,2 +1,2 @@ -SHA256 (quilt-0.60.tar.gz) = 3d72a292e432beb9a73f9d0acfe3a77c9b4d7e42209919bb244e9958c7cfe64b -SIZE (quilt-0.60.tar.gz) = 442369 +SHA256 (quilt-0.61.tar.gz) = 1eec0a270ac4d41eea0fd5823603c9d2a35ab6b8ab73a90dd92ce1291b2a9fc3 +SIZE (quilt-0.61.tar.gz) = 450552 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 04:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 018801C8 for ; Thu, 12 Dec 2013 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7A07177A for ; Thu, 12 Dec 2013 04:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC4K0QT001701 for ; Thu, 12 Dec 2013 04:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC4K0Or001700; Thu, 12 Dec 2013 04:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 04:20:00 GMT Resent-Message-Id: <201312120420.rBC4K0Or001700@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mike Harding Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90948171 for ; Thu, 12 Dec 2013 04:13:48 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D05E175A for ; Thu, 12 Dec 2013 04:13:48 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBC4Dmm9008017 for ; Thu, 12 Dec 2013 04:13:48 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBC4DmDB008014; Thu, 12 Dec 2013 04:13:48 GMT (envelope-from nobody) Message-Id: <201312120413.rBC4DmDB008014@oldred.freebsd.org> Date: Thu, 12 Dec 2013 04:13:48 GMT From: Mike Harding To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184713: py-twisted isn't working -quite- right (failed imports) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 04:20:01 -0000 >Number: 184713 >Category: ports >Synopsis: py-twisted isn't working -quite- right (failed imports) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 04:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 9.2 >Organization: >Environment: FreeBSD bsd.mvh 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258794M,,, >Description: If I install py-twisted, with python 2.7, the following line does not work (from the twisted examples) .. >How-To-Repeat: Install Python 2.7 install devel/py-twisted try the above import >Fix: >Release-Note: >Audit-Trail: >Unformatted: >>> from twisted.internet.endpoints import TCP4ClientEndpoint, connectProtocol Traceback (most recent call last): File "", line 1, in ImportError: cannot import name connectProtocol Now, if I look in the library files, I do see 'def connectProtocol' and I see 'connectProtocol' in __all__ for the module. If I use a virtualenv to install twisted, the import works properly. It's a strange one! From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 04:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BBC82A0 for ; Thu, 12 Dec 2013 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D446181E for ; Thu, 12 Dec 2013 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC4U1hZ003638 for ; Thu, 12 Dec 2013 04:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC4U1kd003637; Thu, 12 Dec 2013 04:30:01 GMT (envelope-from gnats) Date: Thu, 12 Dec 2013 04:30:01 GMT Message-Id: <201312120430.rBC4U1kd003637@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Michael Harding Subject: Re: ports/184713: py-twisted isn' t working -quite- right (failed imports) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Michael Harding List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 04:30:01 -0000 The following reply was made to PR ports/184713; it has been noted by GNATS. From: Michael Harding To: , Cc: Subject: Re: ports/184713: py-twisted isn't working -quite- right (failed imports) Date: Wed, 11 Dec 2013 20:29:18 -0800 You can close this, I debugged the import with 'python -v' and there was a leftover local install of twisted in ~/.local/lib. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 06:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5BF9801 for ; Thu, 12 Dec 2013 06:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8786D1E7D for ; Thu, 12 Dec 2013 06:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC600iQ021592 for ; Thu, 12 Dec 2013 06:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC600TW021591; Thu, 12 Dec 2013 06:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 06:00:00 GMT Resent-Message-Id: <201312120600.rBC600TW021591@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Phil Stone Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FCCA68F for ; Thu, 12 Dec 2013 05:50:54 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5CACA1E48 for ; Thu, 12 Dec 2013 05:50:54 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBC5orX9079913 for ; Thu, 12 Dec 2013 05:50:53 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBC5orFc079896; Thu, 12 Dec 2013 05:50:53 GMT (envelope-from nobody) Message-Id: <201312120550.rBC5orFc079896@oldred.freebsd.org> Date: Thu, 12 Dec 2013 05:50:53 GMT From: Phil Stone To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184715: pkg audit -F segfault X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 06:00:00 -0000 >Number: 184715 >Category: ports >Synopsis: pkg audit -F segfault >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 06:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Phil Stone >Release: FreeBSD 8.4-RELEASE-p6 >Organization: >Environment: FreeBSD phildek.dev 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Mon Sep 9 23:16:13 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi, I've just installed pkg-1.2.3 on FreeBSD 8.4-RELEASE-p6. Running the command "pkg audit -F" causes a segfault: # pkg audit -F Vulnxml file up-to-date. Segmentation fault (core dumped) # >How-To-Repeat: 100% repeatable: just type 'pkg audit -F' on the command prompt >Fix: Implementing the following patch solves the issue: --- audit_orig.c 2013-12-11 03:36:21.390625000 +0100 +++ audit.c 2013-12-11 03:36:59.796875000 +0100 @@ -206,9 +206,10 @@ cleanup: unlink(tmp); - if (a != NULL) + if (a != NULL) { archive_read_close(a); archive_read_free(a); + } if (fd >= 0) close(fd); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 08:23:45 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6588E61B; Thu, 12 Dec 2013 08:23:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37CC017F0; Thu, 12 Dec 2013 08:23:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC8Njni077371; Thu, 12 Dec 2013 08:23:45 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC8Ni2c077370; Thu, 12 Dec 2013 08:23:44 GMT (envelope-from koobs) Date: Thu, 12 Dec 2013 08:23:44 GMT Message-Id: <201312120823.rBC8Ni2c077370@freefall.freebsd.org> To: mvharding@gmail.com, koobs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/184713: py-twisted isn't working -quite- right (failed imports) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 08:23:45 -0000 Synopsis: py-twisted isn't working -quite- right (failed imports) State-Changed-From-To: open->closed State-Changed-By: koobs State-Changed-When: Thu Dec 12 08:23:44 UTC 2013 State-Changed-Why: Closed at submitters request, thanks Michael http://www.freebsd.org/cgi/query-pr.cgi?pr=184713 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 09:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14B0FEC for ; Thu, 12 Dec 2013 09:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C99E31A53 for ; Thu, 12 Dec 2013 09:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC9000F083361 for ; Thu, 12 Dec 2013 09:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC900DD083360; Thu, 12 Dec 2013 09:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 09:00:00 GMT Resent-Message-Id: <201312120900.rBC900DD083360@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Marino Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F625E3 for ; Thu, 12 Dec 2013 08:59:51 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B53E1A4D for ; Thu, 12 Dec 2013 08:59:51 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBC8xoRX080443 for ; Thu, 12 Dec 2013 08:59:50 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBC8xoZ8080442; Thu, 12 Dec 2013 08:59:50 GMT (envelope-from nobody) Message-Id: <201312120859.rBC8xoZ8080442@oldred.freebsd.org> Date: Thu, 12 Dec 2013 08:59:50 GMT From: John Marino To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184716: games/freera: Typo cause invalid manifest; port can't be packaged X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 09:00:01 -0000 >Number: 184716 >Category: ports >Synopsis: games/freera: Typo cause invalid manifest; port can't be packaged >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 09:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: There is an unfortunately typo in games/freera/Makefile on line 23: PLIST_FILES= bin/${PORTNMAE} This causes an empty manifest, and thus an invalid package: Generating repository catalog in /packages: -pkg-static: /packages/All/freera-080203_3.txz is not a valid package: no manifest found >How-To-Repeat: >Fix: Spell "PORTNAME" correctly on line 23 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 09:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0D1D11D; Thu, 12 Dec 2013 09:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9516C1A56; Thu, 12 Dec 2013 09:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC9086f083495; Thu, 12 Dec 2013 09:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC908Hd083494; Thu, 12 Dec 2013 09:00:08 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 09:00:08 GMT Message-Id: <201312120900.rBC908Hd083494@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184716: games/freera: Typo cause invalid manifest; port can't be packaged X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 09:00:08 -0000 Synopsis: games/freera: Typo cause invalid manifest; port can't be packaged Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 09:00:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184716 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 09:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E267A782 for ; Thu, 12 Dec 2013 09:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3B7A1DE9 for ; Thu, 12 Dec 2013 09:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBC9e0cA092072 for ; Thu, 12 Dec 2013 09:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBC9e0Td092071; Thu, 12 Dec 2013 09:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 09:40:00 GMT Resent-Message-Id: <201312120940.rBC9e0Td092071@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tomasz Walaszek Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4901C639 for ; Thu, 12 Dec 2013 09:32:53 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 361901DBB for ; Thu, 12 Dec 2013 09:32:53 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBC9WriP036108 for ; Thu, 12 Dec 2013 09:32:53 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBC9Wr0h036107; Thu, 12 Dec 2013 09:32:53 GMT (envelope-from nobody) Message-Id: <201312120932.rBC9Wr0h036107@oldred.freebsd.org> Date: Thu, 12 Dec 2013 09:32:53 GMT From: Tomasz Walaszek To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184717: ptools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 09:40:00 -0000 >Number: 184717 >Category: ports >Synopsis: ptools >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 09:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tomasz Walaszek >Release: >Organization: >Environment: >Description: * -C option. * Fix bug in ptree. Ptree shows wrong results when pid of the parent was higher than the child pid. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ptools-0.2/Makefile ptools-0.3/Makefile --- ptools-0.2/Makefile 2013-12-12 09:21:17.000000000 +0100 +++ ptools-0.3/Makefile 2013-12-12 10:12:27.000000000 +0100 @@ -2,9 +2,9 @@ # $FreeBSD: sysutils/ptools/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= ptools -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= sysutils -MASTER_SITES= http://shewolf.com.pl/ptools/ +MASTER_SITES= http://10.6.6.6/ptools/ MAINTAINER= tmwalaszek@gmail.com COMMENT= Toolset based on Solaris ptools functionality diff -ruN ptools-0.2/distinfo ptools-0.3/distinfo --- ptools-0.2/distinfo 2013-12-12 09:21:17.000000000 +0100 +++ ptools-0.3/distinfo 2013-12-12 10:13:01.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (ptools-0.2.tar.gz) = ed408301814dd03018b02d76e917ec9c92bb93907fe3ec272fd7009fd11b5c77 -SIZE (ptools-0.2.tar.gz) = 3613 +SHA256 (ptools-0.3.tar.gz) = 7fcf2177a277f40d320a44548809ce2e22bdacab1eacc95955f33046348101c8 +SIZE (ptools-0.3.tar.gz) = 3769 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 11:04:54 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EF7FDAA; Thu, 12 Dec 2013 11:04:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D0E01462; Thu, 12 Dec 2013 11:04:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCB4sIg010469; Thu, 12 Dec 2013 11:04:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCB4sQc010468; Thu, 12 Dec 2013 11:04:54 GMT (envelope-from linimon) Date: Thu, 12 Dec 2013 11:04:54 GMT Message-Id: <201312121104.rBCB4sQc010468@freefall.freebsd.org> To: mvharding@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184714: from twisted.internet.endpoints import TCP4ClientEndpoint, X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 11:04:54 -0000 Old Synopsis: >>> from twisted.internet.endpoints import TCP4ClientEndpoint, New Synopsis: from twisted.internet.endpoints import TCP4ClientEndpoint, State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Dec 12 11:02:09 UTC 2013 State-Changed-Why: Misfiled followup to ports/184713, already committed. Note to submitter: please do not sumbit Syopses beggining with leading '>' characters. This confuses our bugtracking system. Thanks. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 12 11:02:09 UTC 2013 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=184714 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 11:08:23 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DD12D8; Thu, 12 Dec 2013 11:08:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D7273149C; Thu, 12 Dec 2013 11:08:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCB8MuL010965; Thu, 12 Dec 2013 11:08:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCB8MUG010964; Thu, 12 Dec 2013 11:08:22 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 11:08:22 GMT Message-Id: <201312121108.rBCB8MUG010964@freefall.freebsd.org> To: hsn@sendmail.cz, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184709: graphics/gpicview does not build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 11:08:23 -0000 Synopsis: graphics/gpicview does not build with clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Dec 12 11:08:22 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184709 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 11:08:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA720D2; Thu, 12 Dec 2013 11:08:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC93F1498; Thu, 12 Dec 2013 11:08:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCB8HC5010869; Thu, 12 Dec 2013 11:08:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCB8HXw010868; Thu, 12 Dec 2013 11:08:17 GMT (envelope-from linimon) Date: Thu, 12 Dec 2013 11:08:17 GMT Message-Id: <201312121108.rBCB8HXw010868@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184709: graphics/gpicview does not build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 11:08:17 -0000 Synopsis: graphics/gpicview does not build with clang Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 12 11:08:04 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=184709 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 11:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A0BF294 for ; Thu, 12 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 66DD214C1 for ; Thu, 12 Dec 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCBA1Vx011143 for ; Thu, 12 Dec 2013 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCBA1Ll011142; Thu, 12 Dec 2013 11:10:01 GMT (envelope-from gnats) Date: Thu, 12 Dec 2013 11:10:01 GMT Message-Id: <201312121110.rBCBA1Ll011142@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184709: graphics/gpicview does not build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 11:10:01 -0000 The following reply was made to PR ports/184709; it has been noted by GNATS. From: Edwin Groothuis To: jmohacsi@bsd.hu Cc: bug-followup@FreeBSD.org Subject: Re: ports/184709: graphics/gpicview does not build with clang Date: Thu, 12 Dec 2013 11:08:21 UT Maintainer of graphics/gpicview, Please note that PR ports/184709 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184709 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 12:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8F602A4 for ; Thu, 12 Dec 2013 12:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C1C01ABF for ; Thu, 12 Dec 2013 12:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCCK053030021 for ; Thu, 12 Dec 2013 12:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCCK0in030020; Thu, 12 Dec 2013 12:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 12:20:00 GMT Resent-Message-Id: <201312121220.rBCCK0in030020@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Mikhail T." Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B892B5 for ; Thu, 12 Dec 2013 12:14:37 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77B321A81 for ; Thu, 12 Dec 2013 12:14:37 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCCEbsD002448 for ; Thu, 12 Dec 2013 12:14:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCCEb7F002422; Thu, 12 Dec 2013 12:14:37 GMT (envelope-from nobody) Message-Id: <201312121214.rBCCEb7F002422@oldred.freebsd.org> Date: Thu, 12 Dec 2013 12:14:37 GMT From: "Mikhail T." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184721: [pkgng] www/nginx: purges /var/tmp/nginx on pkg upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 12:20:00 -0000 >Number: 184721 >Category: ports >Synopsis: [pkgng] www/nginx: purges /var/tmp/nginx on pkg upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 12:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mikhail T. >Release: 9.2 >Organization: >Environment: >Description: While updating www/nginx from binary packages its tmp directory being deleted, resulting requests errors 2013/12/12 15:12:58 [crit] 34584#0: *118412 open() "/var/tmp/nginx/client_body_temp/0000013299" failed (2: No such file or directory) After that it is required to manually create /var/tmp/nginx or restart nginx (rc.d script takes care of it). Looks like pkgng does not set UPGRADE_PORT variable and plist knows nothing about upgrade. >How-To-Repeat: >Fix: Perhaps add an plist entry to create tmp directory on pkg installation or just remove following line: @unexec if [ -z ${UPGRADE_PORT} ] ; then rm -fr %%NGINX_TMPDIR%%; fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 12:20:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23A3F2D4; Thu, 12 Dec 2013 12:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE2701B03; Thu, 12 Dec 2013 12:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCCK8C0030156; Thu, 12 Dec 2013 12:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCCK8eP030155; Thu, 12 Dec 2013 12:20:08 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 12:20:08 GMT Message-Id: <201312121220.rBCCK8eP030155@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, osa@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184721: [pkgng] www/nginx: purges /var/tmp/nginx on pkg upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 12:20:09 -0000 Synopsis: [pkgng] www/nginx: purges /var/tmp/nginx on pkg upgrade Responsible-Changed-From-To: freebsd-ports-bugs->osa Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 12:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184721 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2D6B4ED for ; Thu, 12 Dec 2013 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD9D81FF9 for ; Thu, 12 Dec 2013 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDA0Kq040463 for ; Thu, 12 Dec 2013 13:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDA0bu040458; Thu, 12 Dec 2013 13:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 13:10:00 GMT Resent-Message-Id: <201312121310.rBCDA0bu040458@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bartek Rutkowski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F153F311 for ; Thu, 12 Dec 2013 13:01:33 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3FCC1F95 for ; Thu, 12 Dec 2013 13:01:33 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCD1XEL094808 for ; Thu, 12 Dec 2013 13:01:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCD1Xno094798; Thu, 12 Dec 2013 13:01:33 GMT (envelope-from nobody) Message-Id: <201312121301.rBCD1Xno094798@oldred.freebsd.org> Date: Thu, 12 Dec 2013 13:01:33 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184722: New port: devel/rubygem-deep_merge Ruby Gem for recursively merging hashes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:10:01 -0000 >Number: 184722 >Category: ports >Synopsis: New port: devel/rubygem-deep_merge Ruby Gem for recursively merging hashes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 13:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.2-R >Organization: Pixeware LTD >Environment: FreeBSD barabasz 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/BARABASZ amd64 >Description: This is a new port of a very simple Ruby Gem that's being user by Puppet's Hiera. >How-To-Repeat: Unpack the port from shar file, test it, commit it. >Fix: Shar file attached. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubygem-deep_merge # rubygem-deep_merge/Makefile # rubygem-deep_merge/distinfo # rubygem-deep_merge/pkg-descr # echo c - rubygem-deep_merge mkdir -p rubygem-deep_merge > /dev/null 2>&1 echo x - rubygem-deep_merge/Makefile sed 's/^X//' >rubygem-deep_merge/Makefile << '4b66faa294bf0a29c88c2a0d6ef8557d' X# $FreeBSD: $ X XPORTNAME= deep_merge XPORTVERSION= 1.0.0 XCATEGORIES= devel rubygems XMASTER_SITES= RG X XMAINTAINER= ports@robakdesign.com XCOMMENT= Recursive hash merger X X#PLIST_FILES+= bin/uuid X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X XNO_STAGE= yes X.include 4b66faa294bf0a29c88c2a0d6ef8557d echo x - rubygem-deep_merge/distinfo sed 's/^X//' >rubygem-deep_merge/distinfo << '771d53f4c7b1e81b4d9aca26d1bc26ac' XSHA256 (rubygem/deep_merge-1.0.0.gem) = b32a0ad0b4d458509f39d38222e342f8c91a1cbaf5ff6baa56fb16d15d5f6264 XSIZE (rubygem/deep_merge-1.0.0.gem) = 11776 771d53f4c7b1e81b4d9aca26d1bc26ac echo x - rubygem-deep_merge/pkg-descr sed 's/^X//' >rubygem-deep_merge/pkg-descr << '022ff920bf3d168d2b0280c79393b064' XThis is a deep_merge Ruby Gem that is used to Xrecursively merge hashes, working with Ruby 1.9 Xand ActiveSupport. X XWWW: http://rubygems.org/gems/deep_merge 022ff920bf3d168d2b0280c79393b064 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F14751D; Thu, 12 Dec 2013 13:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 757BC1047; Thu, 12 Dec 2013 13:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDA91c040545; Thu, 12 Dec 2013 13:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDA9QA040544; Thu, 12 Dec 2013 13:10:09 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 13:10:09 GMT Message-Id: <201312121310.rBCDA9QA040544@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184722: New port: devel/rubygem-deep_merge Ruby Gem for recursively merging hashes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:10:09 -0000 Synopsis: New port: devel/rubygem-deep_merge Ruby Gem for recursively merging hashes Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 13:10:09 UTC 2013 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184722 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF56999A for ; Thu, 12 Dec 2013 13:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A8511194 for ; Thu, 12 Dec 2013 13:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDU11q045457 for ; Thu, 12 Dec 2013 13:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDU1kK045456; Thu, 12 Dec 2013 13:30:01 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 13:30:01 GMT Resent-Message-Id: <201312121330.rBCDU1kK045456@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Reed Loefgren Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C02D16CF for ; Thu, 12 Dec 2013 13:20:21 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 93F9C1108 for ; Thu, 12 Dec 2013 13:20:21 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCDKLCh022820 for ; Thu, 12 Dec 2013 13:20:21 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCDKLQJ022807; Thu, 12 Dec 2013 13:20:21 GMT (envelope-from nobody) Message-Id: <201312121320.rBCDKLQJ022807@oldred.freebsd.org> Date: Thu, 12 Dec 2013 13:20:21 GMT From: Reed Loefgren To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184723: Issue with libscrypt port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:30:01 -0000 >Number: 184723 >Category: ports >Synopsis: Issue with libscrypt port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 13:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Reed Loefgren >Release: 9.2 in a jail >Organization: >Environment: FreeBSD auden.jmla.com 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255937M: Sun Sep 29 12:13:37 MDT 2013 x@blah.blaher.com:/usr/obj/u1/src/sys/GENERIC amd6 >Description: Probably nothing but last night when doing a make clean on the ports directory it failed with this error: .. ===> Cleaning for libp11-0.2.8 ===> security/libprelude ===> Cleaning for libprelude-1.0.1_3 ===> security/libpreludedb ===> Cleaning for libpreludedb-1.0.1p1_2 ===> security/libpwstor ===> Cleaning for libpwstor-0.1 ===> security/libscrypt Unknown modifier 't' "Makefile", line 37: Malformed conditional (!empty(CCVERSION:tl:M*gcc*)) "Makefile", line 40: if-less endif make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /usr/ports/security. *** Error code 1 Stop in /usr/ports. So I went there: orange [128] [12:22am] [/usr/ports]$ mv security/libscrypt /tmp/libscrypt orange [129] [6:04am] [/usr/ports]$ less /tmp/libscrypt/Makefile # Created by: Horia Racoviceanu # $FreeBSD: head/security/libscrypt/Makefile 333338 2013-11-09 21:30:28Z jpaetzel $ PORTNAME= libscrypt PORTVERSION= 1.14 CATEGORIES= security MAINTAINER= horia@racoviceanu.com COMMENT= C library for the scrypt key derivation function LICENSE= BSD NO_STAGE= yes USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= technion GH_COMMIT= 8e6966e GH_TAGNAME= ${GH_COMMIT} PLIST_FILES= include/libscrypt.h \ lib/libscrypt.a \ lib/libscrypt.so \ lib/libscrypt.so.0 .include post-patch: @${REINPLACE_CMD} -e '/^CC=gcc/d' -e '/CFLAGS=/s,$$, ${CFLAGS},' \ ..skipping... .if !empty(CCVERSION:tl:M*gcc*) CFLAGS+= -fno-stack-protector .endif -e 's,$$(LDFLAGS),,' ${WRKSRC}/Makefile regression-test: build (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check) .if ${ARCH} == i386 CCVERSION!= ${CC} --version .if !empty(CCVERSION:tl:M*gcc*) CFLAGS+= -fno-stack-protector .endif .endif .include ~ ~ Probably just a corrupt svn update. I'd done several, trying to get owncloud to cut it out with the blank screen (FWIW, known, and to be fixed in the next update). I'm programming ignorant but think I see the problem. Something so obvious in a Makefile? Kindest regards, Reed >How-To-Repeat: Don't know. Move port, re-svn and compare Makefiles. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 826F9E33 for ; Thu, 12 Dec 2013 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6ED15131C for ; Thu, 12 Dec 2013 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDo1L0049419 for ; Thu, 12 Dec 2013 13:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDo1Ti049418; Thu, 12 Dec 2013 13:50:01 GMT (envelope-from gnats) Date: Thu, 12 Dec 2013 13:50:01 GMT Message-Id: <201312121350.rBCDo1Ti049418@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184723: Issue with security/libscrypt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:50:01 -0000 The following reply was made to PR ports/184723; it has been noted by GNATS. From: Edwin Groothuis To: horia@racoviceanu.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184723: Issue with security/libscrypt Date: Thu, 12 Dec 2013 13:49:52 UT Maintainer of security/libscrypt, Please note that PR ports/184723 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184723 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:49:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB629E2F; Thu, 12 Dec 2013 13:49:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E5DD1319; Thu, 12 Dec 2013 13:49:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDnrce049296; Thu, 12 Dec 2013 13:49:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDnr7h049295; Thu, 12 Dec 2013 13:49:53 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 13:49:53 GMT Message-Id: <201312121349.rBCDnr7h049295@freefall.freebsd.org> To: rloefgren@forethought.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184723: Issue with security/libscrypt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:49:53 -0000 Synopsis: Issue with security/libscrypt State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Dec 12 13:49:53 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184723 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:51:19 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51D04EBA; Thu, 12 Dec 2013 13:51:19 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 25B721372; Thu, 12 Dec 2013 13:51:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDpJO2051102; Thu, 12 Dec 2013 13:51:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDpIHv051101; Thu, 12 Dec 2013 13:51:18 GMT (envelope-from linimon) Date: Thu, 12 Dec 2013 13:51:18 GMT Message-Id: <201312121351.rBCDpIHv051101@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184645: ports-mgmt/pkg: "pkgng" corrupts package system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:51:19 -0000 Old Synopsis: "pkgng" corrupts package system New Synopsis: ports-mgmt/pkg: "pkgng" corrupts package system Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Dec 12 13:50:23 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=184645 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 13:51:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46439EBE; Thu, 12 Dec 2013 13:51:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1A6831374; Thu, 12 Dec 2013 13:51:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCDpNjI051207; Thu, 12 Dec 2013 13:51:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCDpNsb051206; Thu, 12 Dec 2013 13:51:23 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 13:51:23 GMT Message-Id: <201312121351.rBCDpNsb051206@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184645: ports-mgmt/pkg: "pkgng" corrupts package system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 13:51:24 -0000 Synopsis: ports-mgmt/pkg: "pkgng" corrupts package system Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 13:51:23 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184645 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 15:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD6BE625 for ; Thu, 12 Dec 2013 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8109118AE for ; Thu, 12 Dec 2013 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCF00fM063844 for ; Thu, 12 Dec 2013 15:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCF00sx063843; Thu, 12 Dec 2013 15:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 15:00:00 GMT Resent-Message-Id: <201312121500.rBCF00sx063843@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mathieu Arnold Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 849B83B1 for ; Thu, 12 Dec 2013 14:50:48 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45A141842 for ; Thu, 12 Dec 2013 14:50:44 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 3B57FBDC24 for ; Thu, 12 Dec 2013 15:50:43 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 0C854BDC1D for ; Thu, 12 Dec 2013 15:50:43 +0100 (CET) Received: from aragorn.in.absolight.net (aragorn.in.absolight.net [79.143.241.225]) by gw.in.absolight.net (Postfix) with ESMTP id 602AB60E8 for ; Thu, 12 Dec 2013 15:50:42 +0100 (CET) Received: by aragorn.in.absolight.net (Postfix, from userid 1000) id B81EE14269C; Thu, 12 Dec 2013 15:50:41 +0100 (CET) Message-Id: <20131212145041.B81EE14269C@aragorn.in.absolight.net> Date: Thu, 12 Dec 2013 15:50:41 +0100 (CET) From: Mathieu Arnold To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184724: [PATCH] graphics/libecwj2: Fix build on 10. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 15:00:00 -0000 >Number: 184724 >Category: ports >Synopsis: [PATCH] graphics/libecwj2: Fix build on 10. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 15:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 9.2-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn.in.absolight.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC >Description: Fix build on 10. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- libecwj2-3.3_1.patch begins here --- Index: files/patch-Source-C-NCSnet-NCScnet3-NCSProxy.cpp =================================================================== --- files/patch-Source-C-NCSnet-NCScnet3-NCSProxy.cpp (revision 336264) +++ files/patch-Source-C-NCSnet-NCScnet3-NCSProxy.cpp (working copy) @@ -1,6 +1,17 @@ --- Source/C/NCSnet/NCScnet3/NCSProxy.cpp.orig 2009-04-05 21:38:54.000000000 +0400 -+++ Source/C/NCSnet/NCScnet3/NCSProxy.cpp 2009-04-05 21:39:11.000000000 +0400 -@@ -639,7 +639,7 @@ ++++ Source/C/NCSnet/NCScnet3/NCSProxy.cpp 2013-12-12 15:30:11.000000000 +0100 +@@ -43,6 +43,10 @@ + #include // for cuserid + #endif + ++#ifdef FREEBSD ++#include ++#endif ++ + /** Dialog to prompt for Username and Password. + */ + bool NCSGetPasswordDlg( const char *pszSite, const char *pszRealm, string &sUsername, string &sPassword, bool &bRememberAuth ); +@@ -639,7 +643,7 @@ return(NCSStrDup(szNameBuf)); } #elif defined(POSIX) --- libecwj2-3.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 15:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 307ED654; Thu, 12 Dec 2013 15:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 05ADF18B0; Thu, 12 Dec 2013 15:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCF07P4063983; Thu, 12 Dec 2013 15:00:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCF072I063982; Thu, 12 Dec 2013 15:00:07 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 15:00:07 GMT Message-Id: <201312121500.rBCF072I063982@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glebius@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184724: [PATCH] graphics/libecwj2: Fix build on 10. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 15:00:08 -0000 Synopsis: [PATCH] graphics/libecwj2: Fix build on 10. Responsible-Changed-From-To: freebsd-ports-bugs->glebius Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 15:00:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184724 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 16:39:38 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 554D73BF; Thu, 12 Dec 2013 16:39:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 292D4121C; Thu, 12 Dec 2013 16:39:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCGdbbl086241; Thu, 12 Dec 2013 16:39:37 GMT (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCGdbYA086240; Thu, 12 Dec 2013 16:39:37 GMT (envelope-from gerald) Date: Thu, 12 Dec 2013 16:39:37 GMT Message-Id: <201312121639.rBCGdbYA086240@freefall.freebsd.org> To: gerald@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stephen@FreeBSD.org From: gerald@FreeBSD.org Subject: Re: ports/184569: math/octave-forge-parallel : fix build with gcc47 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 16:39:38 -0000 Old Synopsis: math/octave-forge-paralles : fix build with gcc47 New Synopsis: math/octave-forge-parallel : fix build with gcc47 Responsible-Changed-From-To: freebsd-ports-bugs->stephen Responsible-Changed-By: gerald Responsible-Changed-When: Thu Dec 12 16:38:52 UTC 2013 Responsible-Changed-Why: Fix port name and assign to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=184569 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 16:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7EED3FE for ; Thu, 12 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 793631223 for ; Thu, 12 Dec 2013 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCGe0GR086304 for ; Thu, 12 Dec 2013 16:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCGe0iH086303; Thu, 12 Dec 2013 16:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 16:40:00 GMT Resent-Message-Id: <201312121640.rBCGe0iH086303@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, chris scott Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD5F3185 for ; Thu, 12 Dec 2013 16:32:37 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 991A211B9 for ; Thu, 12 Dec 2013 16:32:37 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCGWbIV075865 for ; Thu, 12 Dec 2013 16:32:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCGWb6E075864; Thu, 12 Dec 2013 16:32:37 GMT (envelope-from nobody) Message-Id: <201312121632.rBCGWb6E075864@oldred.freebsd.org> Date: Thu, 12 Dec 2013 16:32:37 GMT From: chris scott To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184726: Makefile error in miniupnpd port for PF patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 16:40:00 -0000 >Number: 184726 >Category: ports >Synopsis: Makefile error in miniupnpd port for PF patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 16:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: chris scott >Release: 9.2, 10 >Organization: >Environment: FreeBSD XXX 9.2-STABLE FreeBSD 9.2-STABLE #59 r259128: Tue Dec 10 11:48:29 GMT 2013 root@XXX:/usr/obj/usr/src/sys/me amd64 >Description: pf filter patch not applying due to an error in the port makefile >How-To-Repeat: build the port see it doesnt insert pf rules at the anchor. rdr rules are ok but the pfctl -sr -a miniupnpd rules dont get added >Fix: apply this patch to the Makefile and the ports pf patch actually gets applied # diff Makefile Makefile.new 31c31 < .if ${PORT_OPTIONS:MWITH_PF_ENABLE_FILTER_RULES} --- > .if ${PORT_OPTIONS:MPF_ENABLE_FILTER_RULES} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 16:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A3956F1 for ; Thu, 12 Dec 2013 16:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 34C1B12D0 for ; Thu, 12 Dec 2013 16:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCGo1D0088343 for ; Thu, 12 Dec 2013 16:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCGo1Ej088342; Thu, 12 Dec 2013 16:50:01 GMT (envelope-from gnats) Date: Thu, 12 Dec 2013 16:50:01 GMT Message-Id: <201312121650.rBCGo1Ej088342@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184567: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 16:50:01 -0000 The following reply was made to PR ports/184567; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184567: commit references a PR Date: Thu, 12 Dec 2013 16:49:03 +0000 (UTC) Author: gerald Date: Thu Dec 12 16:48:56 2013 New Revision: 336278 URL: http://svnweb.freebsd.org/changeset/ports/336278 Log: Add #include needed by newer compilers such as GCC 4.7. PR: 184567, 182136 Submitted by: Christoph Moench-Tegeder Approved by: maintainer (O. Hartmann ) Added: head/devel/freeocl/files/patch-src_freeocl.h (contents, props changed) Added: head/devel/freeocl/files/patch-src_freeocl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/freeocl/files/patch-src_freeocl.h Thu Dec 12 16:48:56 2013 (r336278) @@ -0,0 +1,10 @@ +--- src/freeocl.h.orig 2013-11-15 21:18:17.000000000 +0100 ++++ src/freeocl.h 2013-11-15 21:24:32.000000000 +0100 +@@ -26,6 +26,7 @@ + #include "dispatch.h" + #include + #include ++#include + + #ifdef DEBUG_UTILS + #define MSG(X) std::cout << #X << std::endl _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 16:51:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E3737DA; Thu, 12 Dec 2013 16:51:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 329D9132D; Thu, 12 Dec 2013 16:51:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCGpMCb090021; Thu, 12 Dec 2013 16:51:22 GMT (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCGpL0f090020; Thu, 12 Dec 2013 16:51:21 GMT (envelope-from gerald) Date: Thu, 12 Dec 2013 16:51:21 GMT Message-Id: <201312121651.rBCGpL0f090020@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, cmt@burggraben.net, gerald@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gerald@FreeBSD.org Subject: Re: ports/184567: devel/freeocl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 16:51:22 -0000 Synopsis: devel/freeocl State-Changed-From-To: feedback->closed State-Changed-By: gerald State-Changed-When: Thu Dec 12 16:50:57 UTC 2013 State-Changed-Why: Committed, thanks for the submission and the review/approval! http://www.freebsd.org/cgi/query-pr.cgi?pr=184567 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 18:00:56 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA15D688 for ; Thu, 12 Dec 2013 18:00:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD3331835 for ; Thu, 12 Dec 2013 18:00:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCI0jKi005229 for ; Thu, 12 Dec 2013 18:00:45 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCI0jb4005228; Thu, 12 Dec 2013 18:00:45 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 18:00:45 GMT Resent-Message-Id: <201312121800.rBCI0jb4005228@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, RK Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D89E13F7 for ; Thu, 12 Dec 2013 17:51:30 +0000 (UTC) Received: from ponto.amerinoc.com (ponto.amerinoc.com [64.6.108.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BF6417B2 for ; Thu, 12 Dec 2013 17:51:29 +0000 (UTC) Received: from fbsd9.localdomain (205.83.broadband7.iol.cz [88.102.83.205]) (authenticated bits=128) by ponto.amerinoc.com (8.14.7/8.14.7) with ESMTP id rBCHV178070346 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 12 Dec 2013 18:31:10 +0100 (CET) (envelope-from hsn@sendmail.cz) Received: from acer.localdomain ([10.0.0.2]) by fbsd9.localdomain (8.14.7/8.14.7) with ESMTP id rBCHUW2D041452; Thu, 12 Dec 2013 18:30:55 +0100 (CET) (envelope-from hsn@sendmail.cz) Received: from acer.localdomain (localhost [127.0.0.1]) by acer.localdomain (8.14.7/8.14.7) with ESMTP id rBCHUuTA033903 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 12 Dec 2013 18:30:56 +0100 (CET) (envelope-from hsn@acer.localdomain) Received: (from hsn@localhost) by acer.localdomain (8.14.7/8.14.7/Submit) id rBCHUuEW033902; Thu, 12 Dec 2013 18:30:56 +0100 (CET) (envelope-from hsn) Message-Id: <201312121730.rBCHUuEW033902@acer.localdomain> Date: Thu, 12 Dec 2013 18:30:56 +0100 (CET) From: RK To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184727: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] Cc: jmohacsi@bsd.hu X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 18:00:57 -0000 >Number: 184727 >Category: ports >Synopsis: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 18:00:23 UTC 2013 >Closed-Date: >Last-Modified: >Originator: RK >Release: FreeBSD 10.0-RC1 i386 >Organization: >Environment: System: FreeBSD acer.localdomain 10.0-RC1 FreeBSD 10.0-RC1 #0 r259068: Sat Dec 7 21:12:15 >Description: remove error with clang fixes ports/184709 Port maintainer (jmohacsi@bsd.hu) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- gpicview-0.2.4_1.patch begins here --- diff -ruN /usr/ports/graphics/gpicview/Makefile ./Makefile --- /usr/ports/graphics/gpicview/Makefile 2013-12-02 17:39:13.000000000 +0100 +++ ./Makefile 2013-12-12 18:28:03.000000000 +0100 @@ -3,6 +3,7 @@ PORTNAME= gpicview PORTVERSION= 0.2.4 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/lxde/GPicView%20%28image%20Viewer%29/GpicView%20${PORTVERSION}/ diff -ruN /usr/ports/graphics/gpicview/files/patch-main-win.c ./files/patch-main-win.c --- /usr/ports/graphics/gpicview/files/patch-main-win.c 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-main-win.c 2013-12-12 18:27:17.000000000 +0100 @@ -0,0 +1,11 @@ +--- src/main-win.c.orig 2013-10-23 10:42:02.000000000 +0200 ++++ src/main-win.c 2013-12-12 18:26:14.000000000 +0100 +@@ -378,7 +378,7 @@ + image_list_sort_by_name( mw->img_list, GTK_SORT_DESCENDING ); + if (image_list_get_first(mw->img_list)) + main_win_open(mw, image_list_get_current_file_path(mw->img_list), zoom); +- return; ++ return TRUE; + } + + --- gpicview-0.2.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 18:01:14 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB61F798; Thu, 12 Dec 2013 18:01:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C24C51888; Thu, 12 Dec 2013 18:01:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCI19BL005309; Thu, 12 Dec 2013 18:01:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCI14bw005302; Thu, 12 Dec 2013 18:01:04 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 18:01:04 GMT Message-Id: <201312121801.rBCI14bw005302@freefall.freebsd.org> To: hsn@sendmail.cz, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184727: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 18:01:15 -0000 Synopsis: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Dec 12 18:01:04 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184727 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 18:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30E44B78 for ; Thu, 12 Dec 2013 18:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B80C1910 for ; Thu, 12 Dec 2013 18:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCIA0We005973 for ; Thu, 12 Dec 2013 18:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCIA0Og005972; Thu, 12 Dec 2013 18:10:00 GMT (envelope-from gnats) Date: Thu, 12 Dec 2013 18:10:00 GMT Message-Id: <201312121810.rBCIA0Og005972@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184727: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 18:10:01 -0000 The following reply was made to PR ports/184727; it has been noted by GNATS. From: Edwin Groothuis To: jmohacsi@bsd.hu Cc: bug-followup@FreeBSD.org Subject: Re: ports/184727: [PATCH] graphics/gpicview: [SUMMARIZE CHANGES] Date: Thu, 12 Dec 2013 18:01:03 UT Maintainer of graphics/gpicview, Please note that PR ports/184727 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184727 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4604F456 for ; Thu, 12 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23FD81EB3 for ; Thu, 12 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJA0BI022364 for ; Thu, 12 Dec 2013 19:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJA0ao022363; Thu, 12 Dec 2013 19:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:10:00 GMT Resent-Message-Id: <201312121910.rBCJA0ao022363@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hung-Yi Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7075F5B for ; Thu, 12 Dec 2013 19:02:29 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id B65C21E52 for ; Thu, 12 Dec 2013 19:02:29 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id 459F1187B2F9 for ; Fri, 13 Dec 2013 02:56:23 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.5/8.14.5/Submit) id rBCIuNEN059880; Fri, 13 Dec 2013 02:56:23 +0800 (CST) (envelope-from gaod) Message-Id: <201312121856.rBCIuNEN059880@cse.tw> Date: Fri, 13 Dec 2013 02:56:23 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184728: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:10:01 -0000 >Number: 184728 >Category: ports >Synopsis: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.1-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 >Description: - Fix compatibility for FreeBSD 10. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libmicrohttpd-0.9.31.patch begins here --- diff -ruN /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.am ./files/patch-src_examples_Makefile.am --- /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.am 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src_examples_Makefile.am 2013-12-13 02:46:10.000000000 +0800 @@ -0,0 +1,29 @@ +--- src/examples/Makefile.am.orig 2013-12-12 18:44:38.000000000 +0000 ++++ src/examples/Makefile.am 2013-12-12 18:45:00.000000000 +0000 +@@ -160,8 +160,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_fileserver_SOURCES = \ + spdy_fileserver.c +@@ -169,8 +168,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_response_with_callback_SOURCES = \ + spdy_response_with_callback.c +@@ -178,5 +176,4 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz diff -ruN /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.in ./files/patch-src_examples_Makefile.in --- /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.in 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src_examples_Makefile.in 2013-12-13 02:45:51.000000000 +0800 @@ -0,0 +1,32 @@ +--- src/examples/Makefile.in.orig 2013-12-12 18:44:45.000000000 +0000 ++++ src/examples/Makefile.in 2013-12-12 18:45:11.000000000 +0000 +@@ -601,8 +601,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_fileserver_SOURCES = \ + spdy_fileserver.c +@@ -611,8 +610,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_response_with_callback_SOURCES = \ + spdy_response_with_callback.c +@@ -621,8 +619,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + all: all-recursive + --- libmicrohttpd-0.9.31.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5327E488; Thu, 12 Dec 2013 19:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 281571EB5; Thu, 12 Dec 2013 19:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJA93V022448; Thu, 12 Dec 2013 19:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJA8fg022447; Thu, 12 Dec 2013 19:10:08 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 19:10:08 GMT Message-Id: <201312121910.rBCJA8fg022447@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184728: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:10:09 -0000 Synopsis: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 19:10:08 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184728 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0EE4962 for ; Thu, 12 Dec 2013 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E3421F85 for ; Thu, 12 Dec 2013 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJK0qb025277 for ; Thu, 12 Dec 2013 19:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJK0Mq025276; Thu, 12 Dec 2013 19:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:20:00 GMT Resent-Message-Id: <201312121920.rBCJK0Mq025276@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC2A64BA for ; Thu, 12 Dec 2013 19:10:22 +0000 (UTC) Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A9B541EBC for ; Thu, 12 Dec 2013 19:10:22 +0000 (UTC) Received: from fwd12.aul.t-online.de (fwd12.aul.t-online.de ) by mailout01.t-online.de with smtp id 1VrBeL-0007ZG-LC; Thu, 12 Dec 2013 20:10:17 +0100 Received: from mailout.charlieroot.de (r3Y8BsZJ8hdzVS-8CfzFecHGdfYHq8YQSV6Pj7cpcPNojmXT63W2mkVWWujGf2PQ3s@[79.197.69.146]) by fwd12.aul.t-online.de with esmtp id 1VrBeB-3vhBGS0; Thu, 12 Dec 2013 20:10:07 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id 7CFBC61FC7 for ; Thu, 12 Dec 2013 20:10:07 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 5DF8218284; Thu, 12 Dec 2013 20:10:07 +0100 (CET) Message-Id: <20131212191007.5DF8218284@BSDHelmut964.charlieroot.de> Date: Thu, 12 Dec 2013 20:10:07 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184729: [MAINTAINER] www/typo345: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:20:00 -0000 >Number: 184729 >Category: ports >Synopsis: [MAINTAINER] www/typo345: make portscout happy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - make portscout happy Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo345-4.5.32.patch begins here --- diff -ruN ../typo345.org/Makefile ./Makefile --- ../typo345.org/Makefile 2013-12-12 09:23:18.000000000 +0100 +++ ./Makefile 2013-12-12 20:04:28.000000000 +0100 @@ -12,6 +12,8 @@ LICENSE= GPLv2 +PORTSCOUT= limit:^4\.5\. + NO_BUILD= yes USE_PHP= ctype filter json mysql pcre session xml WANT_PHP_WEB= yes --- typo345-4.5.32.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:20:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23FF4991; Thu, 12 Dec 2013 19:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E75DF1F88; Thu, 12 Dec 2013 19:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJK8R0027002; Thu, 12 Dec 2013 19:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJK8FQ027001; Thu, 12 Dec 2013 19:20:08 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 19:20:08 GMT Message-Id: <201312121920.rBCJK8FQ027001@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184729: [MAINTAINER] www/typo345: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:20:09 -0000 Synopsis: [MAINTAINER] www/typo345: make portscout happy Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 19:20:08 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184729 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE862C47 for ; Thu, 12 Dec 2013 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BE381039 for ; Thu, 12 Dec 2013 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJU0vT027350 for ; Thu, 12 Dec 2013 19:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJU0cV027349; Thu, 12 Dec 2013 19:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:30:00 GMT Resent-Message-Id: <201312121930.rBCJU0cV027349@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 229A3AE7 for ; Thu, 12 Dec 2013 19:22:53 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D3D6E1FEC for ; Thu, 12 Dec 2013 19:22:52 +0000 (UTC) Received: from fwd30.aul.t-online.de (fwd30.aul.t-online.de ) by mailout03.t-online.de with smtp id 1VrBqN-0002OA-0S; Thu, 12 Dec 2013 20:22:43 +0100 Received: from mailout.charlieroot.de (EIvKgGZBZh4HeYEaYlp09KbpuoTRkn2SZEsOE4HeTJ+SOOq5XzJ5qu8Gnw5v3xhZNT@[79.197.69.146]) by fwd30.aul.t-online.de with esmtp id 1VrBqM-0GiPKa0; Thu, 12 Dec 2013 20:22:42 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id 6AA9461FC7 for ; Thu, 12 Dec 2013 20:22:42 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 652E618284; Thu, 12 Dec 2013 20:22:42 +0100 (CET) Message-Id: <20131212192242.652E618284@BSDHelmut964.charlieroot.de> Date: Thu, 12 Dec 2013 20:22:42 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184730: [MAINTAINER] www/typo347: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:30:00 -0000 >Number: 184730 >Category: ports >Synopsis: [MAINTAINER] www/typo347: make portscout happy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - make portscout happy Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo347-4.7.17.patch begins here --- diff -ruN ../typo347.org/Makefile ./Makefile --- ../typo347.org/Makefile 2013-12-12 09:23:18.000000000 +0100 +++ ./Makefile 2013-12-12 20:10:41.000000000 +0100 @@ -12,6 +12,8 @@ LICENSE= GPLv2 +PORTSCOUT= limit:^4\.7\. + NO_BUILD= yes USE_PHP= ctype filter json mysql pcre session xml WANT_PHP_WEB= yes --- typo347-4.7.17.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10A16C49 for ; Thu, 12 Dec 2013 19:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C20C4103B for ; Thu, 12 Dec 2013 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJU012027392 for ; Thu, 12 Dec 2013 19:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJU033027380; Thu, 12 Dec 2013 19:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:30:00 GMT Resent-Message-Id: <201312121930.rBCJU033027380@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Helmut Ritter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0760A68 for ; Thu, 12 Dec 2013 19:20:18 +0000 (UTC) Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADDC01F8F for ; Thu, 12 Dec 2013 19:20:18 +0000 (UTC) Received: from fwd02.aul.t-online.de (fwd02.aul.t-online.de ) by mailout02.t-online.de with smtp id 1VrBYN-0002Ai-Pa; Thu, 12 Dec 2013 20:04:07 +0100 Received: from mailout.charlieroot.de (rSKRusZvoh6n0c-eg8hEYaz-6YxaBzbwkKFbAFM-d0msv9459VJEgR-eNYtI2EOw3g@[79.197.69.146]) by fwd02.aul.t-online.de with esmtp id 1VrBYM-2eSLU80; Thu, 12 Dec 2013 20:04:06 +0100 Received: from BSDHelmut964.charlieroot.de (bsdhelmut964.charlieroot.de [192.168.124.202]) by mailout.charlieroot.de (Postfix) with ESMTP id A7DCC61FC7 for ; Thu, 12 Dec 2013 20:04:05 +0100 (CET) Received: by BSDHelmut964.charlieroot.de (Postfix, from userid 1001) id 76AF818284; Thu, 12 Dec 2013 20:04:05 +0100 (CET) Message-Id: <20131212190405.76AF818284@BSDHelmut964.charlieroot.de> Date: Thu, 12 Dec 2013 20:04:05 +0100 (CET) From: Helmut Ritter To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184731: [MAINTAINER] www/typo3: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:30:01 -0000 >Number: 184731 >Category: ports >Synopsis: [MAINTAINER] www/typo3: make portscout happy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Helmut Ritter >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD BSDHelmut964.charlieroot.de 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r258760: Sun Dec 8 15:50:49 >Description: - make portscout happy Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- typo3-6.1.7.patch begins here --- diff -ruN ../typo3.org/Makefile ./Makefile --- ../typo3.org/Makefile 2013-12-12 19:54:15.000000000 +0100 +++ ./Makefile 2013-12-12 19:55:08.000000000 +0100 @@ -11,6 +11,8 @@ LICENSE= GPLv2 +PORTSCOUT= limit:^6\.1\. + NO_BUILD= yes USE_PHP= ctype filter json mysqli pcre session xml WANT_PHP_WEB= yes --- typo3-6.1.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 455D7C79; Thu, 12 Dec 2013 19:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1AA19103E; Thu, 12 Dec 2013 19:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJU7MK027503; Thu, 12 Dec 2013 19:30:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJU7oO027502; Thu, 12 Dec 2013 19:30:07 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 19:30:07 GMT Message-Id: <201312121930.rBCJU7oO027502@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184730: [MAINTAINER] www/typo347: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:30:08 -0000 Synopsis: [MAINTAINER] www/typo347: make portscout happy Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 19:30:07 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184730 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:30:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A336CF0; Thu, 12 Dec 2013 19:30:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51550108A; Thu, 12 Dec 2013 19:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJUL3X029182; Thu, 12 Dec 2013 19:30:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJULSl029181; Thu, 12 Dec 2013 19:30:21 GMT (envelope-from edwin) Date: Thu, 12 Dec 2013 19:30:21 GMT Message-Id: <201312121930.rBCJULSl029181@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184731: [MAINTAINER] www/typo3: make portscout happy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:30:21 -0000 Synopsis: [MAINTAINER] www/typo3: make portscout happy Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 12 19:30:21 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184731 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CCC034A for ; Thu, 12 Dec 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C292B11B7 for ; Thu, 12 Dec 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJo0Zd031574 for ; Thu, 12 Dec 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJo0g6031562; Thu, 12 Dec 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:50:00 GMT Resent-Message-Id: <201312121950.rBCJo0g6031562@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrew Wright Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B0272A5 for ; Thu, 12 Dec 2013 19:40:40 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58C2F1166 for ; Thu, 12 Dec 2013 19:40:40 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCJedxa020023 for ; Thu, 12 Dec 2013 19:40:39 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCJedIH020002; Thu, 12 Dec 2013 19:40:39 GMT (envelope-from nobody) Message-Id: <201312121940.rBCJedIH020002@oldred.freebsd.org> Date: Thu, 12 Dec 2013 19:40:39 GMT From: Andrew Wright To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184732: pkg audit -F dumps core X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:50:01 -0000 >Number: 184732 >Category: ports >Synopsis: pkg audit -F dumps core >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Andrew Wright >Release: 9.2-RELEASE >Organization: Mount Allison University >Environment: FreeBSD qemg.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: As of yesterday (after I updated ports using portsnap), when running "pkg audit -F", I receive the output "Vulnxml file up-to-date." and then "Segmentation fault (core dumped)". The installed pkg executable is stripped. Stack appears to be 8 calls deep when the core is examined by gdb: (gdb) where #0 0x0000000800dd6130 in ?? () #1 0x00000000004083a2 in ?? () #2 0x00000008028ab85d in ?? () #3 0x0000000800000002 in ?? () #4 0x0009ceb400000068 in ?? () #5 0x0000000000018124 in ?? () #6 0x00153a7800000000 in ?? () #7 0x000000005294ec05 in ?? () #8 0x0000000000000000 in ?? () pkg -v reports "1.2.3" Adding "-d" as in "pkg -d audit -F" does not change the output. Running "pkg audit" by itself simply reports "0 problem(s) in the installed packages found." >How-To-Repeat: pkg audit -F >Fix: n/a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 23:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AACC45FC for ; Thu, 12 Dec 2013 23:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8567313B6 for ; Thu, 12 Dec 2013 23:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCNU0LG080060 for ; Thu, 12 Dec 2013 23:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCNU0MG080059; Thu, 12 Dec 2013 23:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 23:30:00 GMT Resent-Message-Id: <201312122330.rBCNU0MG080059@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hon-Yu Lawrence Cheung Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59D99435 for ; Thu, 12 Dec 2013 23:23:58 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 455F51370 for ; Thu, 12 Dec 2013 23:23:58 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBCNNwVq022486 for ; Thu, 12 Dec 2013 23:23:58 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBCNNwBm022479; Thu, 12 Dec 2013 23:23:58 GMT (envelope-from nobody) Message-Id: <201312122323.rBCNNwBm022479@oldred.freebsd.org> Date: Thu, 12 Dec 2013 23:23:58 GMT From: Hon-Yu Lawrence Cheung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184734: [MAINTAINER] deskutils/rednotebook: update to 1.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 23:30:00 -0000 >Number: 184734 >Category: ports >Synopsis: [MAINTAINER] deskutils/rednotebook: update to 1.8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 23:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hon-Yu Lawrence Cheung >Release: FreeBSD 9.2-RELEASE-p1 >Organization: >Environment: FreeBSD a5552.honyucheung.net 9.2-RELEASE-p1 FreeBSD 9.2-RELEASE-p1 #4 r257236: Mon Oct 28 17:38:47 HKT 2013 root@a5552.honyucheung.net:/usr/obj/usr/src/sys/A5552 amd64 >Description: update to 1.8.0 >How-To-Repeat: >Fix: apply the patch.txt Patch attached with submission follows: --- Makefile.original 2013-12-13 07:07:01.000000000 +0800 +++ Makefile 2013-12-13 07:16:47.000000000 +0800 @@ -1,10 +1,10 @@ # Created by: Hon-Yu Lawrence Cheung (cheunghonyu@gmail.com) # $FreeBSD: deskutils/rednotebook/Makefile 333845 2013-11-15 10:43:17Z sunpoet $ PORTNAME= rednotebook -PORTVERSION= 1.7.3 +PORTVERSION= 1.8.0 CATEGORIES= deskutils python MASTER_SITES= SF MASTER_SITE_SUBDIR= rednotebook PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} --- distinfo.original 2013-12-13 07:22:31.000000000 +0800 +++ distinfo 2013-12-13 07:17:52.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (rednotebook-1.7.3.tar.gz) = c16d2759e5de6696e31071b8cc3969209c7f1324c5a39670bf241c0f2c52beb7 -SIZE (rednotebook-1.7.3.tar.gz) = 481002 +SHA256 (rednotebook-1.8.0.tar.gz) = 63beacfdc738a9640bcc7b35ae28c18c7310d9f6fc9e9a6afafcc4d37f628213 +SIZE (rednotebook-1.8.0.tar.gz) = 500452 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 00:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 015EED32 for ; Fri, 13 Dec 2013 00:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD2C61871 for ; Fri, 13 Dec 2013 00:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD0e0iw005424 for ; Fri, 13 Dec 2013 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD0e0ue005423; Fri, 13 Dec 2013 00:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 00:40:00 GMT Resent-Message-Id: <201312130040.rBD0e0ue005423@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Garrett Wollman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A05DC09 for ; Fri, 13 Dec 2013 00:34:29 +0000 (UTC) Received: from khavrinen.csail.mit.edu (khavrinen.csail.mit.edu [IPv6:2001:470:8b2d:1e1c:21b:21ff:feb8:d7b0]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C4E01840 for ; Fri, 13 Dec 2013 00:34:29 +0000 (UTC) Received: from xyz.csail.mit.edu (xyz.csail.mit.edu [128.31.0.28]) by khavrinen.csail.mit.edu (8.14.5/8.14.5) with ESMTP id rBD0YQHP010492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO CN= issuer=) for ; Thu, 12 Dec 2013 19:34:26 -0500 (EST) (envelope-from wollman@xyz.csail.mit.edu) Received: (from root@localhost) by xyz.csail.mit.edu (8.14.7/8.14.5/Submit) id rBD0YQjm007557; Thu, 12 Dec 2013 19:34:26 -0500 (EST) (envelope-from wollman) Message-Id: <201312130034.rBD0YQjm007557@xyz.csail.mit.edu> Date: Thu, 12 Dec 2013 19:34:26 -0500 (EST) From: Garrett Wollman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184736: net-mgmt/nagios-plugins has hidden dependency on ssh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Garrett Wollman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 00:40:01 -0000 >Number: 184736 >Category: ports >Synopsis: net-mgmt/nagios-plugins has hidden dependency on ssh >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 00:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: MIT Computer Science & Artificial Intelligence Laboratory >Environment: System: FreeBSD xyz.csail.mit.edu 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #1 r259144:259145M: Wed Dec 11 14:50:53 EST 2013 wollman@xyz.csail.mit.edu:/usr/obj/usr/src/sys/CSAIL amd64 World is build with WITHOUT_OPENSSH=yes in /etc/src.conf. >Description: The check_by_ssh plugin is unconditionally included in the packing list even when there is no ssh executable, but the configure script disables the installation of check_by_ssh if it can't find an ssh executable. This causes packaging to fail on systems where there is no /usr/bin/ssh. >How-To-Repeat: 1) build a poudriere jail with no /usr/bin/ssh 2) poudriere testport -o net-mgmt/nagios-plugins 3) watch it fail >Fix: As a workaround, I just added an unconditional dependency on security/openssh-portable (warning, cut and paste): Index: Makefile =================================================================== --- Makefile (revision 336291) +++ Makefile (working copy) @@ -147,6 +147,13 @@ PLIST_SUB+= SUB_DBI="@comment " .endif +# If we don't have /usr/bin/ssh then we must be on a system that uses +# packages for ssh, so depend on one. This should be an OPTION. +.if !exists(/usr/bin/ssh) +BUILD_DEPENDS+= ssh:${PORTSDIR}/security/openssh-portable +RUN_DEPENDS+= ssh:${PORTSDIR}/security/openssh-portable +.endif + post-patch: .for file in check_by_ssh.c check_disk.c check_http.c check_mrtgtraf.c \ check_nagios.c check_ntp.c check_ntp_peer.c check_ntp_time.c \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 00:40:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0269ED6A; Fri, 13 Dec 2013 00:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC23C187A; Fri, 13 Dec 2013 00:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD0e8XE005508; Fri, 13 Dec 2013 00:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD0e8U3005507; Fri, 13 Dec 2013 00:40:08 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 00:40:08 GMT Message-Id: <201312130040.rBD0e8U3005507@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184736: net-mgmt/nagios-plugins has hidden dependency on ssh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 00:40:09 -0000 Synopsis: net-mgmt/nagios-plugins has hidden dependency on ssh Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 00:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184736 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 04:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1032189 for ; Fri, 13 Dec 2013 04:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 872161DE3 for ; Fri, 13 Dec 2013 04:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD4o0ZM061184 for ; Fri, 13 Dec 2013 04:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD4o0Ya061183; Fri, 13 Dec 2013 04:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 04:50:00 GMT Resent-Message-Id: <201312130450.rBD4o0Ya061183@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21661169 for ; Fri, 13 Dec 2013 04:47:29 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E5D761DCF for ; Fri, 13 Dec 2013 04:47:28 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD4lSLh044093 for ; Fri, 13 Dec 2013 04:47:28 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD4lS2H044071; Fri, 13 Dec 2013 04:47:28 GMT (envelope-from nobody) Message-Id: <201312130447.rBD4lS2H044071@oldred.freebsd.org> Date: Fri, 13 Dec 2013 04:47:28 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184738: maintainer update: sysutils/condor X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 04:50:00 -0000 >Number: 184738 >Category: ports >Synopsis: maintainer update: sysutils/condor >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 04:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 10.0-BETA3 >Organization: Acadix Consulting, LLC >Environment: FreeBSD oyster.jbacon.dyndns.org 10.0-BETA4 FreeBSD 10.0-BETA4 #0 r258774: Sun Dec 1 00:51:31 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Upgrade to 8.0.3, eliminate NO_STAGE and update Makefile and plist with latest ports features. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/Makefile /usr/wip/sysutils/condor/Makefile --- /usr/ports/sysutils/condor/Makefile 2013-09-20 18:05:58.000000000 -0500 +++ /usr/wip/sysutils/condor/Makefile 2013-12-12 21:05:44.000000000 -0600 @@ -2,20 +2,20 @@ # $FreeBSD: sysutils/condor/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= condor -PORTVERSION= 7.8.7 -PORTREVISION= 1 +PORTVERSION= 8.0.3 CATEGORIES= sysutils net -MASTER_SITES= # empty +MASTER_SITES= http://www.acadix.biz/Ports/distfiles/ DISTNAME= condor_src-${PORTVERSION}-all-all MAINTAINER= jwbacon@tds.net -COMMENT= High-throughput distributed batch system +COMMENT= High-throughput computing on distributively owned resources -LIB_DEPENDS+= krb5support:${PORTSDIR}/security/krb5 \ - pcre:${PORTSDIR}/devel/pcre \ - curl:${PORTSDIR}/ftp/curl +LICENSE= AL2 + +LIB_DEPENDS+= libkrb5support.so:${PORTSDIR}/security/krb5 \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libcurl.so:${PORTSDIR}/ftp/curl -RESTRICTED= Requires manual distfile fetch WRKSRC= ${WRKDIR}/condor-${PORTVERSION} USE_LDCONFIG= yes USES= cmake gmake perl5 @@ -35,77 +35,10 @@ PORTEXAMPLES= * PORTDOCS= * -MANCOMPRESSED= yes - -MAN1= \ - cleanup_release.1 \ - condor_advertise.1 \ - condor_check_userlogs.1 \ - condor_checkpoint.1 \ - condor_chirp.1 \ - condor_cod.1 \ - condor_cold_start.1 \ - condor_cold_stop.1 \ - condor_compile.1 \ - condor_config_bind.1 \ - condor_config_val.1 \ - condor_configure.1 \ - condor_continue.1 \ - condor_dagman.1 \ - condor_fetchlog.1 \ - condor_findhost.1 \ - condor_gather_info.1 \ - condor_glidein.1 \ - condor_history.1 \ - condor_hold.1 \ - condor_load_history.1 \ - condor_master.1 \ - condor_off.1 \ - condor_on.1 \ - condor_power.1 \ - condor_preen.1 \ - condor_prio.1 \ - condor_procd.1 \ - condor_q.1 \ - condor_qedit.1 \ - condor_reconfig.1 \ - condor_release.1 \ - condor_reschedule.1 \ - condor_restart.1 \ - condor_rm.1 \ - condor_router_history.1 \ - condor_router_q.1 \ - condor_router_rm.1 \ - condor_run.1 \ - condor_set_shutdown.1 \ - condor_ssh_to_job.1 \ - condor_stats.1 \ - condor_status.1 \ - condor_store_cred.1 \ - condor_submit.1 \ - condor_submit_dag.1 \ - condor_suspend.1 \ - condor_transfer_data.1 \ - condor_updates_stats.1 \ - condor_userlog.1 \ - condor_userprio.1 \ - condor_vacate.1 \ - condor_vacate_job.1 \ - condor_version.1 \ - condor_wait.1 \ - filelock_midwife.1 \ - filelock_undertaker.1 \ - gidd_alloc.1 \ - install_release.1 \ - procd_ctl.1 \ - uniq_pid_midwife.1 \ - uniq_pid_undertaker.1 - -NO_STAGE= yes .include -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE= requires that you go to http://research.cs.wisc.edu/condor/ to register and manually download the source distribution ${DISTNAME}${EXTRACT_SUFX}, place it in ${DISTDIR}, and then run make again +.if ${OSVERSION} > 1000000 +USE_GCC= yes .endif pre-everything:: @@ -116,11 +49,16 @@ @${REINPLACE_CMD} \ -e 's,\(set( C_SHARE_EXAMPLES \)share/condor,\1${EXAMPLESDIR_REL},' \ ${WRKSRC}/build/cmake/CondorPackageConfig.cmake + @${REINPLACE_CMD} \ + -e '/create_symlink/d' ${WRKSRC}/src/condor_scripts/CMakeLists.txt post-install: - ${INSTALL_DATA} ${WRKDIR}/condor_config ${ETCDIR} - ${INSTALL_DATA} ${WRKDIR}/condor_config.local ${ETCDIR} + ${INSTALL_DATA} ${WRKDIR}/condor_config ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKDIR}/condor_config.local ${STAGEDIR}${ETCDIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL +.if defined(NOPORTEXAMPLES) + ${RM} -rf ${STAGEDIR}${EXAMPLESDIR} +.endif @${CAT} ${PKGMESSAGE} .include diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/distinfo /usr/wip/sysutils/condor/distinfo --- /usr/ports/sysutils/condor/distinfo 2013-01-10 13:01:39.000000000 -0600 +++ /usr/wip/sysutils/condor/distinfo 2013-11-10 08:29:22.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (condor_src-7.8.7-all-all.tar.gz) = 876dbb3c1135ba4a31c4c25d5db2b072e0de4be1927245cd37a23252bf853d78 -SIZE (condor_src-7.8.7-all-all.tar.gz) = 17325973 +SHA256 (condor_src-8.0.3-all-all.tar.gz) = 8220ae05b50e189a7b9e8018c88a6ebe6316f0affb3f99d3301788f514bd9b1e +SIZE (condor_src-8.0.3-all-all.tar.gz) = 18678759 diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/files/patch-build-cmake-CondorPackageConfig.cmake /usr/wip/sysutils/condor/files/patch-build-cmake-CondorPackageConfig.cmake --- /usr/ports/sysutils/condor/files/patch-build-cmake-CondorPackageConfig.cmake 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/sysutils/condor/files/patch-build-cmake-CondorPackageConfig.cmake 2013-11-10 08:29:22.000000000 -0600 @@ -1,11 +1,11 @@ ---- build/cmake/CondorPackageConfig.cmake.orig 2012-01-17 10:53:14.000000000 -0600 -+++ build/cmake/CondorPackageConfig.cmake 2012-04-07 14:37:17.000000000 -0500 +--- build/cmake/CondorPackageConfig.cmake.orig 2013-09-19 15:12:10.000000000 -0500 ++++ build/cmake/CondorPackageConfig.cmake 2013-10-20 12:04:52.000000000 -0500 @@ -1,3 +1,4 @@ + ############################################################### # # Copyright 2011 Red Hat, Inc. -@@ -144,6 +145,23 @@ +@@ -170,6 +171,23 @@ # enable if we desire native packaging. # set ( CPACK_GENERATOR "${CPACK_GENERATOR};PackageMaker" ) ; # set (CPACK_OSX_PACKAGE_VERSION) diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake /usr/wip/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake --- /usr/ports/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake 2013-11-10 08:29:22.000000000 -0600 @@ -1,6 +1,6 @@ ---- build/cmake/macros/SystemSpecificInformations.cmake.orig 2012-01-17 16:53:14.000000000 +0000 -+++ build/cmake/macros/SystemSpecificInformations.cmake 2012-05-06 17:29:25.053492551 +0100 -@@ -230,7 +230,8 @@ +--- build/cmake/macros/SystemSpecificInformations.cmake.orig 2013-09-19 15:12:10.000000000 -0500 ++++ build/cmake/macros/SystemSpecificInformations.cmake 2013-10-20 12:04:52.000000000 -0500 +@@ -241,7 +241,8 @@ endif(EXISTS "/etc/issue") elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD") @@ -10,7 +10,7 @@ set( FREEBSD_RELEASE "${CMAKE_MATCH_1}" ) set( FREEBSD_MAJOR "${CMAKE_MATCH_2}" ) set( FREEBSD_MINOR "${CMAKE_MATCH_3}" ) -@@ -248,6 +249,11 @@ +@@ -259,6 +260,11 @@ set( CONDOR_FREEBSD7 ON ) elseif(FREEBSD_MAJOR MATCHES "8" ) set( CONDOR_FREEBSD8 ON ) diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/files/patch-src-condor_includes-config.h.cmake /usr/wip/sysutils/condor/files/patch-src-condor_includes-config.h.cmake --- /usr/ports/sysutils/condor/files/patch-src-condor_includes-config.h.cmake 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/sysutils/condor/files/patch-src-condor_includes-config.h.cmake 2013-11-10 08:29:22.000000000 -0600 @@ -1,5 +1,5 @@ ---- src/condor_includes/config.h.cmake.orig 2012-01-17 10:53:14.000000000 -0600 -+++ src/condor_includes/config.h.cmake 2012-04-07 14:37:17.000000000 -0500 +--- src/condor_includes/config.h.cmake.orig 2013-09-19 15:12:10.000000000 -0500 ++++ src/condor_includes/config.h.cmake 2013-10-20 12:04:52.000000000 -0500 @@ -47,6 +47,8 @@ #cmakedefine CONDOR_FREEBSD7 ///* Define if on FreeBSD 8 */ diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/files/patch-src-condor_scripts-CMakeLists.txt /usr/wip/sysutils/condor/files/patch-src-condor_scripts-CMakeLists.txt --- /usr/ports/sysutils/condor/files/patch-src-condor_scripts-CMakeLists.txt 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/sysutils/condor/files/patch-src-condor_scripts-CMakeLists.txt 1969-12-31 18:00:00.000000000 -0600 @@ -1,11 +0,0 @@ ---- src/condor_scripts/CMakeLists.txt.orig 2012-01-17 10:53:14.000000000 -0600 -+++ src/condor_scripts/CMakeLists.txt 2012-04-07 14:37:17.000000000 -0500 -@@ -30,8 +30,6 @@ - if (WANT_FULL_DEPLOYMENT) - install ( FILES condor_configure DESTINATION ${C_SBIN} PERMISSIONS ${CONDOR_SCRIPT_PERMS} ) - install ( FILES condor_configure DESTINATION ${C_SBIN} RENAME condor_install PERMISSIONS ${CONDOR_SCRIPT_PERMS} ) -- install ( CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink ./sbin/condor_install \${CMAKE_INSTALL_PREFIX}/condor_install)" ) -- install ( CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink ./sbin/condor_configure \${CMAKE_INSTALL_PREFIX}/condor_configure)" ) - endif(WANT_FULL_DEPLOYMENT) - - install ( FILES condor_ssh sshd.sh DESTINATION ${C_LIBEXEC} PERMISSIONS ${CONDOR_SCRIPT_PERMS} ) diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/pkg-descr /usr/wip/sysutils/condor/pkg-descr --- /usr/ports/sysutils/condor/pkg-descr 2012-07-14 09:29:18.000000000 -0500 +++ /usr/wip/sysutils/condor/pkg-descr 2013-12-12 21:07:09.000000000 -0600 @@ -1,6 +1,6 @@ Condor is a open-source, specialized workload management system for compute-intensive jobs. Like other full-featured batch systems, Condor -provides a job queueing mechanism, scheduling policy, priority scheme, +provides a job queuing mechanism, scheduling policy, priority scheme, resource monitoring, and resource management. Users submit their serial or parallel jobs to Condor, Condor places them into a queue, chooses when and where to run the jobs based upon a policy, carefully monitors diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/pkg-install /usr/wip/sysutils/condor/pkg-install --- /usr/ports/sysutils/condor/pkg-install 2013-01-10 13:01:39.000000000 -0600 +++ /usr/wip/sysutils/condor/pkg-install 2013-12-12 22:39:56.000000000 -0600 @@ -25,6 +25,8 @@ homedir=/home/condor case $2 in +PRE-INSTALL) + ;; POST-INSTALL) for dir in log spool config execute; do mkdir -p $homedir/$dir diff -ruN --exclude=CVS --exclude=.svn /usr/ports/sysutils/condor/pkg-plist /usr/wip/sysutils/condor/pkg-plist --- /usr/ports/sysutils/condor/pkg-plist 2013-01-10 13:01:39.000000000 -0600 +++ /usr/wip/sysutils/condor/pkg-plist 2013-12-12 21:55:39.000000000 -0600 @@ -1,3 +1,4 @@ +@comment Generated by sysutils/genplist bin/classad_functional_tester bin/classad_version bin/condor_check_userlogs @@ -10,10 +11,12 @@ bin/condor_gather_info bin/condor_history bin/condor_hold +bin/condor_ping bin/condor_power bin/condor_prio bin/condor_q bin/condor_qedit +bin/condor_qsub bin/condor_release bin/condor_reschedule bin/condor_rm @@ -27,6 +30,7 @@ bin/condor_submit bin/condor_submit_dag bin/condor_suspend +bin/condor_tail bin/condor_test_match bin/condor_transfer_data bin/condor_userlog @@ -36,6 +40,7 @@ bin/condor_vacate_job bin/condor_version bin/condor_wait +bin/condor_who %%ETCDIR%%/condor %%ETCDIR%%/condor_config %%ETCDIR%%/condor_config.local @@ -65,6 +70,7 @@ include/classad/attrrefs.h include/classad/cclassad.h include/classad/classad.h +include/classad/classadCache.h include/classad/classadErrno.h include/classad/classadItor.h include/classad/classad_distribution.h @@ -108,12 +114,8 @@ include/user_log.c++.h include/write_user_log.h lib/Chirp.jar -lib/Condor.pm lib/CondorJavaInfo.class lib/CondorJavaWrapper.class -lib/CondorPersonal.pm -lib/CondorTest.pm -lib/CondorUtils.pm lib/condor_ssh_to_job_sshd_config_template lib/libchirp_client.a lib/libclassad.a @@ -136,8 +138,77 @@ libexec/condor_transferer libexec/curl_plugin libexec/data_plugin +libexec/interactive.sub libexec/libvirt_simple_script.awk libexec/sshd.sh +man/man1/bosco_cluster.1.gz +man/man1/bosco_findplatform.1.gz +man/man1/bosco_install.1.gz +man/man1/bosco_ssh_start.1.gz +man/man1/bosco_start.1.gz +man/man1/bosco_stop.1.gz +man/man1/bosco_uninstall.1.gz +man/man1/condor_advertise.1.gz +man/man1/condor_check_userlogs.1.gz +man/man1/condor_checkpoint.1.gz +man/man1/condor_chirp.1.gz +man/man1/condor_cod.1.gz +man/man1/condor_compile.1.gz +man/man1/condor_config_val.1.gz +man/man1/condor_configure.1.gz +man/man1/condor_continue.1.gz +man/man1/condor_dagman.1.gz +man/man1/condor_drain.1.gz +man/man1/condor_fetchlog.1.gz +man/man1/condor_findhost.1.gz +man/man1/condor_gather_info.1.gz +man/man1/condor_glidein.1.gz +man/man1/condor_history.1.gz +man/man1/condor_hold.1.gz +man/man1/condor_install.1.gz +man/man1/condor_load_history.1.gz +man/man1/condor_master.1.gz +man/man1/condor_off.1.gz +man/man1/condor_on.1.gz +man/man1/condor_ping.1.gz +man/man1/condor_power.1.gz +man/man1/condor_preen.1.gz +man/man1/condor_prio.1.gz +man/man1/condor_procd.1.gz +man/man1/condor_q.1.gz +man/man1/condor_qedit.1.gz +man/man1/condor_qsub.1.gz +man/man1/condor_reconfig.1.gz +man/man1/condor_release.1.gz +man/man1/condor_reschedule.1.gz +man/man1/condor_restart.1.gz +man/man1/condor_rm.1.gz +man/man1/condor_rmdir.1.gz +man/man1/condor_router_history.1.gz +man/man1/condor_router_q.1.gz +man/man1/condor_router_rm.1.gz +man/man1/condor_run.1.gz +man/man1/condor_set_shutdown.1.gz +man/man1/condor_ssh_to_job.1.gz +man/man1/condor_stats.1.gz +man/man1/condor_status.1.gz +man/man1/condor_store_cred.1.gz +man/man1/condor_submit.1.gz +man/man1/condor_submit_dag.1.gz +man/man1/condor_suspend.1.gz +man/man1/condor_tail.1.gz +man/man1/condor_transfer_data.1.gz +man/man1/condor_updates_stats.1.gz +man/man1/condor_userlog.1.gz +man/man1/condor_userprio.1.gz +man/man1/condor_vacate.1.gz +man/man1/condor_vacate_job.1.gz +man/man1/condor_version.1.gz +man/man1/condor_wait.1.gz +man/man1/condor_who.1.gz +man/man1/gidd_alloc.1.gz +man/man1/procd_ctl.1.gz +sbin/bosco_install sbin/condor_advertise sbin/condor_c-gahp sbin/condor_c-gahp_worker_thread @@ -145,6 +216,7 @@ sbin/condor_configure sbin/condor_credd sbin/condor_fetchlog +sbin/condor_ft-gahp sbin/condor_gridmanager sbin/condor_had sbin/condor_init @@ -178,10 +250,3 @@ @dirrm %%ETCDIR%%/sysconfig @dirrm %%ETCDIR%%/examples @dirrm %%ETCDIR%% -@cwd / -@dirrmtry home/condor/config -@dirrmtry home/condor/execute -@dirrmtry home/condor/log -@dirrmtry home/condor/spool -@dirrmtry home/condor -@dirrmtry home >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B50BC22B for ; Fri, 13 Dec 2013 05:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F12D1E68 for ; Fri, 13 Dec 2013 05:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD500lF063147 for ; Fri, 13 Dec 2013 05:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD500UY063146; Fri, 13 Dec 2013 05:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 05:00:00 GMT Resent-Message-Id: <201312130500.rBD500UY063146@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Erick Turnquist Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7337E1EA for ; Fri, 13 Dec 2013 04:55:34 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC191E46 for ; Fri, 13 Dec 2013 04:55:34 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD4tXnI078831 for ; Fri, 13 Dec 2013 04:55:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD4tXmZ078825; Fri, 13 Dec 2013 04:55:33 GMT (envelope-from nobody) Message-Id: <201312130455.rBD4tXmZ078825@oldred.freebsd.org> Date: Fri, 13 Dec 2013 04:55:33 GMT From: Erick Turnquist To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:00:00 -0000 >Number: 184739 >Category: ports >Synopsis: dns/validns fails to build with non-default LOCALBASE/PREFIX >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 05:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Erick Turnquist >Release: The weird upstream Makefile in this package requires two make variables to be set in order to find headers and libraries in non-obvious places (INCPATH for headers and EXTRALPATH for libraries). The port fails to build, unable to find Judy.h (f >Organization: >Environment: The weird upstream Makefile in this package requires two make variables to be set in order to find headers and libraries in non-obvious places (INCPATH for headers and EXTRALPATH for libraries). The port fails to build, unable to find Judy.h (from devel/judy), when the LOCALBASE is not /usr/local. The attached patch sets these make arguments. >Description: The weird upstream Makefile in this package requires two make variables to be set in order to find headers and libraries in non-obvious places (INCPATH for headers and EXTRALPATH for libraries). The port fails to build, unable to find Judy.h (from devel/judy), when the LOCALBASE is not /usr/local. The attached patch sets these make arguments. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-12 23:38:52.403058851 -0500 +++ Makefile.patched 2013-12-12 23:44:20.681104716 -0500 @@ -21,6 +21,9 @@ PORTDOCS= Changes README installation.mdwn notes.mdwn \ technical-notes.mdwn todo.mdwn usage.mdwn +MAKE_ARGS+= INCPATH=-I${LOCALBASE}/include +MAKE_ARGS+= EXTRALPATH=-L${LOCALBASE}/lib + NO_STAGE= yes .include do-install: >Release-Note: >Audit-Trail: >Unformatted: rom devel/judy), when the LOCALBASE is not /usr/local. The attached patch sets these make arguments. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F7A822D for ; Fri, 13 Dec 2013 05:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD54B1E6A for ; Fri, 13 Dec 2013 05:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD500jr063212 for ; Fri, 13 Dec 2013 05:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD500cn063211; Fri, 13 Dec 2013 05:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 05:00:00 GMT Resent-Message-Id: <201312130500.rBD500cn063211@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B0DB1DD for ; Fri, 13 Dec 2013 04:54:27 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A1A81E3D for ; Fri, 13 Dec 2013 04:54:27 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD4sOpw064389 for ; Fri, 13 Dec 2013 04:54:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD4sO0l064378; Fri, 13 Dec 2013 04:54:24 GMT (envelope-from nobody) Message-Id: <201312130454.rBD4sO0l064378@oldred.freebsd.org> Date: Fri, 13 Dec 2013 04:54:24 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184740: update pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:00:01 -0000 >Number: 184740 >Category: ports >Synopsis: update pithos from 0.3.17 to 0.3.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 05:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 11.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #17 r259022M: Fri Dec 6 12:03:57 PST 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/audio/pithos/Makefile pithos/Makefile --- /usr/ports/audio/pithos/Makefile 2013-09-20 07:36:35.000000000 -0700 +++ pithos/Makefile 2013-12-12 20:49:09.759193447 -0800 @@ -2,10 +2,10 @@ # $FreeBSD: audio/pithos/Makefile 327706 2013-09-20 14:36:35Z bapt $ PORTNAME= pithos -PORTVERSION= 0.3.17 +PORTVERSION= 0.3.18 CATEGORIES= audio -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig +MASTER_SITES= https://github.com/pithos/pithos/archive/ +DISTNAME= ${PORTVERSION} MAINTAINER= john@pcbsd.org COMMENT= Pandora client for the GNOME desktop @@ -17,23 +17,25 @@ ${LOCALBASE}/libdata/pkgconfig/notify-python.pc:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +FETCH_ARGS= -Fpr USE_PYTHON= 2.6+ NO_STAGE= yes USE_GNOME= pygtk2 USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_GSTREAMER= good bad python PYDISTUTILS_PKGNAME= ${PORTNAME} +PYEASYINSTALL_EGG= pithos-0.3-py2.7.egg post-patch: ${REINPLACE_CMD} -e "s,../data/,${DATADIR}/," ${WRKSRC}/pithos/pithosconfig.py - ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/pithos.desktop + ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/data/pithos.desktop post-install: - @${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \ - ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/${PORTNAME} @${MKDIR} ${DATADIR} @(cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) + @(cd ${WRKSRC}/pithos/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) .include diff -urN /usr/ports/audio/pithos/distinfo pithos/distinfo --- /usr/ports/audio/pithos/distinfo 2012-07-14 05:56:14.000000000 -0700 +++ pithos/distinfo 2013-12-12 09:07:09.540064363 -0800 @@ -1,2 +1,2 @@ -SHA256 (pithos_0.3.17.orig.tar.gz) = ef6ee1545fa60b065b0043d79fe89fd1c1b70fe4ae944055d2c7b9d890cf1bde -SIZE (pithos_0.3.17.orig.tar.gz) = 141332 +SHA256 (0.3.18.tar.gz) = dc184785258fba2bd33890ebb164666b402ff1001b827021a181f6af0ddb8511 +SIZE (0.3.18.tar.gz) = 115195 diff -urN /usr/ports/audio/pithos/files/patch-setup.py pithos/files/patch-setup.py --- /usr/ports/audio/pithos/files/patch-setup.py 2012-07-14 05:56:14.000000000 -0700 +++ pithos/files/patch-setup.py 1969-12-31 16:00:00.000000000 -0800 @@ -1,85 +0,0 @@ ---- setup.py 2012-05-03 13:47:11.000000000 -0700 -+++ setup.py 2012-06-01 11:40:31.000000000 -0700 -@@ -17,74 +17,19 @@ - - ###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### - --try: -- import DistUtilsExtra.auto --except ImportError: -- import sys -- print >> sys.stderr, 'To build pithos you need https://launchpad.net/python-distutils-extra' -- sys.exit(1) -- --assert DistUtilsExtra.auto.__version__ >= '2.10', 'needs DistUtilsExtra.auto >= 2.10' -+import sys - import os -+from distutils.core import setup - -- --def update_data_path(prefix, oldvalue=None): -- -- try: -- fin = file('pithos/pithosconfig.py', 'r') -- fout = file(fin.name + '.new', 'w') -- -- for line in fin: -- fields = line.split(' = ') # Separate variable from value -- if fields[0] == '__pithos_data_directory__': -- # update to prefix, store oldvalue -- if not oldvalue: -- oldvalue = fields[1] -- line = "%s = '%s'\n" % (fields[0], prefix) -- else: # restore oldvalue -- line = "%s = %s" % (fields[0], oldvalue) -- fout.write(line) -- -- fout.flush() -- fout.close() -- fin.close() -- os.rename(fout.name, fin.name) -- except (OSError, IOError), e: -- print ("ERROR: Can't find pithos/pithosconfig.py") -- sys.exit(1) -- return oldvalue -- -- --class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): -- def run(self): -- if self.root or self.home: -- print "WARNING: You don't use a standard --prefix installation, take care that you eventually " \ -- "need to update quickly/quicklyconfig.py file to adjust __quickly_data_directory__. You can " \ -- "ignore this warning if you are packaging and uses --prefix." -- previous_value = update_data_path(self.prefix + '/share/pithos/') -- DistUtilsExtra.auto.install_auto.run(self) -- update_data_path(self.prefix, previous_value) -- --from distutils.cmd import Command --class OverrideI18NCommand(Command): -- def initialize_options(self): pass -- def finalize_options(self): pass -- def run(self): -- self.distribution.data_files.append(('share/applications', ['pithos.desktop'])) -- --from DistUtilsExtra.command.build_extra import build_extra --from DistUtilsExtra.command.build_icons import build_icons -- --DistUtilsExtra.auto.setup( -+required = [] -+setup( - name='pithos', -- version='0.3', -- ext_modules=[], -+ version='0.3.17', - license='GPL-3', - author='Kevin Mehall', - author_email='km@kevinmehall.net', - description='Pandora.com client for the GNOME desktop', -- #long_description='Here a longer description', - url='https://launchpad.net/pithos', -- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra, 'build_i18n':OverrideI18NCommand} -- ) -- -+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], -+ package_dir = {'pithos':'pithos'} -+) diff -urN /usr/ports/audio/pithos/pkg-plist pithos/pkg-plist --- /usr/ports/audio/pithos/pkg-plist 2012-07-14 05:56:14.000000000 -0700 +++ pithos/pkg-plist 1969-12-31 16:00:00.000000000 -0800 @@ -1,94 +0,0 @@ -bin/pithos -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.py -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.py -%%PYTHON_SITELIBDIR%%/pithos/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.py -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.py -%%PYTHON_SITELIBDIR%%/pithos/plugin.py -%%PYTHON_SITELIBDIR%%/pithos/pylast.py -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.py -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyc -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyc -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyc -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyc -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyc -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyo -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyo -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyo -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyo -%%DATADIR%%/icons/scalable/apps/pithos-mono.svg -%%DATADIR%%/icons/scalable/apps/pithos.svg -%%DATADIR%%/media/album_default.png -%%DATADIR%%/media/album_default.svg -%%DATADIR%%/media/icon.png -%%DATADIR%%/media/pithos-mono.png -%%DATADIR%%/media/rate_bg.png -%%DATADIR%%/media/rate_bg.svg -%%DATADIR%%/ui/AboutPithosDialog.ui -%%DATADIR%%/ui/PithosWindow.ui -%%DATADIR%%/ui/PreferencesPithosDialog.ui -%%DATADIR%%/ui/SearchDialog.ui -%%DATADIR%%/ui/StationsDialog.ui -%%DATADIR%%/ui/about_pithos_dialog.xml -%%DATADIR%%/ui/pithos_window.xml -%%DATADIR%%/ui/preferences_pithos_dialog.xml -%%DATADIR%%/ui/search_dialog.xml -%%DATADIR%%/ui/stations_dialog.xml -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/media -@dirrm %%DATADIR%%/icons/scalable/apps -@dirrm %%DATADIR%%/icons/scalable -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/pithos/plugins -@dirrm %%PYTHON_SITELIBDIR%%/pithos/pandora -@dirrm %%PYTHON_SITELIBDIR%%/pithos >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 056AF25E; Fri, 13 Dec 2013 05:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFBA41E6C; Fri, 13 Dec 2013 05:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD508mA064876; Fri, 13 Dec 2013 05:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD5089P064875; Fri, 13 Dec 2013 05:00:08 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 05:00:08 GMT Message-Id: <201312130500.rBD5089P064875@freefall.freebsd.org> To: jhujhiti@adjectivism.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:00:09 -0000 Synopsis: dns/validns fails to build with non-default LOCALBASE/PREFIX State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Dec 13 05:00:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184739 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 840A771A for ; Fri, 13 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7085E1FD2 for ; Fri, 13 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD5A1rj065566 for ; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD5A15T065565; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats) Date: Fri, 13 Dec 2013 05:10:01 GMT Message-Id: <201312130510.rBD5A15T065565@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:10:01 -0000 The following reply was made to PR ports/184739; it has been noted by GNATS. From: Edwin Groothuis To: umq@ueo.co.jp Cc: bug-followup@FreeBSD.org Subject: Re: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX Date: Fri, 13 Dec 2013 05:00:07 UT Maintainer of dns/validns, Please note that PR ports/184739 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184739 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CDCE71E for ; Fri, 13 Dec 2013 05:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 16AD41FD6 for ; Fri, 13 Dec 2013 05:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD5A1cn065588 for ; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD5A1Hm065587; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 05:10:01 GMT Resent-Message-Id: <201312130510.rBD5A1Hm065587@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7085A715 for ; Fri, 13 Dec 2013 05:08:49 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 504331FCD for ; Fri, 13 Dec 2013 05:08:49 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD58nge077288 for ; Fri, 13 Dec 2013 05:08:49 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD58n6W077287; Fri, 13 Dec 2013 05:08:49 GMT (envelope-from nobody) Message-Id: <201312130508.rBD58n6W077287@oldred.freebsd.org> Date: Fri, 13 Dec 2013 05:08:49 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184742: update pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:10:02 -0000 >Number: 184742 >Category: ports >Synopsis: update pithos from 0.3.17 to 0.3.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 05:10:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 11.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #17 r259022M: Fri Dec 6 12:03:57 PST 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/audio/pithos/Makefile pithos/Makefile --- audio/pithos/Makefile 2013-09-20 07:36:35.000000000 -0700 +++ audio/pithos/Makefile 2013-12-12 20:49:09.759193447 -0800 @@ -2,10 +2,10 @@ # $FreeBSD: audio/pithos/Makefile 327706 2013-09-20 14:36:35Z bapt $ PORTNAME= pithos -PORTVERSION= 0.3.17 +PORTVERSION= 0.3.18 CATEGORIES= audio -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig +MASTER_SITES= https://github.com/pithos/pithos/archive/ +DISTNAME= ${PORTVERSION} MAINTAINER= john@pcbsd.org COMMENT= Pandora client for the GNOME desktop @@ -17,23 +17,25 @@ ${LOCALBASE}/libdata/pkgconfig/notify-python.pc:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +FETCH_ARGS= -Fpr USE_PYTHON= 2.6+ NO_STAGE= yes USE_GNOME= pygtk2 USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_GSTREAMER= good bad python PYDISTUTILS_PKGNAME= ${PORTNAME} +PYEASYINSTALL_EGG= pithos-0.3-py2.7.egg post-patch: ${REINPLACE_CMD} -e "s,../data/,${DATADIR}/," ${WRKSRC}/pithos/pithosconfig.py - ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/pithos.desktop + ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/data/pithos.desktop post-install: - @${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \ - ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/${PORTNAME} @${MKDIR} ${DATADIR} @(cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) + @(cd ${WRKSRC}/pithos/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) .include diff -urN /usr/ports/audio/pithos/distinfo pithos/distinfo --- audio/pithos/distinfo 2012-07-14 05:56:14.000000000 -0700 +++ audio/pithos/distinfo 2013-12-12 09:07:09.540064363 -0800 @@ -1,2 +1,2 @@ -SHA256 (pithos_0.3.17.orig.tar.gz) = ef6ee1545fa60b065b0043d79fe89fd1c1b70fe4ae944055d2c7b9d890cf1bde -SIZE (pithos_0.3.17.orig.tar.gz) = 141332 +SHA256 (0.3.18.tar.gz) = dc184785258fba2bd33890ebb164666b402ff1001b827021a181f6af0ddb8511 +SIZE (0.3.18.tar.gz) = 115195 diff -urN /usr/ports/audio/pithos/files/patch-setup.py pithos/files/patch-setup.py --- audio/pithos/files/patch-setup.py 2012-07-14 05:56:14.000000000 -0700 +++ audio/pithos/files/patch-setup.py 1969-12-31 16:00:00.000000000 -0800 @@ -1,85 +0,0 @@ ---- setup.py 2012-05-03 13:47:11.000000000 -0700 -+++ setup.py 2012-06-01 11:40:31.000000000 -0700 -@@ -17,74 +17,19 @@ - - ###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### - --try: -- import DistUtilsExtra.auto --except ImportError: -- import sys -- print >> sys.stderr, 'To build pithos you need https://launchpad.net/python-distutils-extra' -- sys.exit(1) -- --assert DistUtilsExtra.auto.__version__ >= '2.10', 'needs DistUtilsExtra.auto >= 2.10' -+import sys - import os -+from distutils.core import setup - -- --def update_data_path(prefix, oldvalue=None): -- -- try: -- fin = file('pithos/pithosconfig.py', 'r') -- fout = file(fin.name + '.new', 'w') -- -- for line in fin: -- fields = line.split(' = ') # Separate variable from value -- if fields[0] == '__pithos_data_directory__': -- # update to prefix, store oldvalue -- if not oldvalue: -- oldvalue = fields[1] -- line = "%s = '%s'\n" % (fields[0], prefix) -- else: # restore oldvalue -- line = "%s = %s" % (fields[0], oldvalue) -- fout.write(line) -- -- fout.flush() -- fout.close() -- fin.close() -- os.rename(fout.name, fin.name) -- except (OSError, IOError), e: -- print ("ERROR: Can't find pithos/pithosconfig.py") -- sys.exit(1) -- return oldvalue -- -- --class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): -- def run(self): -- if self.root or self.home: -- print "WARNING: You don't use a standard --prefix installation, take care that you eventually " \ -- "need to update quickly/quicklyconfig.py file to adjust __quickly_data_directory__. You can " \ -- "ignore this warning if you are packaging and uses --prefix." -- previous_value = update_data_path(self.prefix + '/share/pithos/') -- DistUtilsExtra.auto.install_auto.run(self) -- update_data_path(self.prefix, previous_value) -- --from distutils.cmd import Command --class OverrideI18NCommand(Command): -- def initialize_options(self): pass -- def finalize_options(self): pass -- def run(self): -- self.distribution.data_files.append(('share/applications', ['pithos.desktop'])) -- --from DistUtilsExtra.command.build_extra import build_extra --from DistUtilsExtra.command.build_icons import build_icons -- --DistUtilsExtra.auto.setup( -+required = [] -+setup( - name='pithos', -- version='0.3', -- ext_modules=[], -+ version='0.3.17', - license='GPL-3', - author='Kevin Mehall', - author_email='km@kevinmehall.net', - description='Pandora.com client for the GNOME desktop', -- #long_description='Here a longer description', - url='https://launchpad.net/pithos', -- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra, 'build_i18n':OverrideI18NCommand} -- ) -- -+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], -+ package_dir = {'pithos':'pithos'} -+) diff -urN /usr/ports/audio/pithos/pkg-plist pithos/pkg-plist --- audio/pithos/pkg-plist 2012-07-14 05:56:14.000000000 -0700 +++ audio/pithos/pkg-plist 1969-12-31 16:00:00.000000000 -0800 @@ -1,94 +0,0 @@ -bin/pithos -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.py -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.py -%%PYTHON_SITELIBDIR%%/pithos/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.py -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.py -%%PYTHON_SITELIBDIR%%/pithos/plugin.py -%%PYTHON_SITELIBDIR%%/pithos/pylast.py -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.py -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyc -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyc -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyc -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyc -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyc -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyo -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyo -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyo -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyo -%%DATADIR%%/icons/scalable/apps/pithos-mono.svg -%%DATADIR%%/icons/scalable/apps/pithos.svg -%%DATADIR%%/media/album_default.png -%%DATADIR%%/media/album_default.svg -%%DATADIR%%/media/icon.png -%%DATADIR%%/media/pithos-mono.png -%%DATADIR%%/media/rate_bg.png -%%DATADIR%%/media/rate_bg.svg -%%DATADIR%%/ui/AboutPithosDialog.ui -%%DATADIR%%/ui/PithosWindow.ui -%%DATADIR%%/ui/PreferencesPithosDialog.ui -%%DATADIR%%/ui/SearchDialog.ui -%%DATADIR%%/ui/StationsDialog.ui -%%DATADIR%%/ui/about_pithos_dialog.xml -%%DATADIR%%/ui/pithos_window.xml -%%DATADIR%%/ui/preferences_pithos_dialog.xml -%%DATADIR%%/ui/search_dialog.xml -%%DATADIR%%/ui/stations_dialog.xml -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/media -@dirrm %%DATADIR%%/icons/scalable/apps -@dirrm %%DATADIR%%/icons/scalable -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/pithos/plugins -@dirrm %%PYTHON_SITELIBDIR%%/pithos/pandora -@dirrm %%PYTHON_SITELIBDIR%%/pithos >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:10:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4178E71F for ; Fri, 13 Dec 2013 05:10:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D44E1FD7 for ; Fri, 13 Dec 2013 05:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD5A2de065596 for ; Fri, 13 Dec 2013 05:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD5A2Jr065595; Fri, 13 Dec 2013 05:10:02 GMT (envelope-from gnats) Date: Fri, 13 Dec 2013 05:10:02 GMT Message-Id: <201312130510.rBD5A2Jr065595@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Erick Turnquist Subject: Re: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Erick Turnquist List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:10:03 -0000 The following reply was made to PR ports/184739; it has been noted by GNATS. From: Erick Turnquist To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184739: dns/validns fails to build with non-default LOCALBASE/PREFIX Date: Fri, 13 Dec 2013 00:04:16 -0500 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Apologies - apparently I did not double-check my copy/paste job into the web PR form before submitting. Not that it matters much, but I'm on 9.1-RELEASE and the environment field should read: FreeBSD rhea 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #4: Sat Sep 14 03:52:41 UTC 2013 root@rhea:/usr/obj/usr/src/sys/CUSTOM amd64 --tThc/1wpZn/ma/RB Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJSqpVNAAoJEPVscZllOOSh06YQAIqXhpt+JcsTpoyrJtAZFyYv jD1XXjF4pu65Jfr7ANXBSToRDAof5o2Xp8cAbfejbWsWSPhDautC95clVxcLDBXK 3IsFKds7Ngty4gNEVUoKDojsavhGI8OYqQVajvhPNdBIX86HgmWzMFnFSlgec06l k/PcgzajXJ3cKotFxWshXZHPQ4tvaqZbh7/JXQL+2G5j3mzSkefiPfZzg8SyIPxY T1itB9halkB+X0hrKdPey8fepTrLUvXLWwlI8Jr5O4exesWXmA+p5JGLBr2cVfKE KAdgpO6Xu4AC8vtDC5Wzx2Pp2kGvS8gk+1nXMiLa5tZLufcT826E1UF7UjO+u/E/ QQAxACpW2VkImUFNW1kV2xT6yRuuRuKPWx7mxltkflq1wzVOLKO8IFrsmIILtVTh 4B3QIifIS/p4gS2ZaHoP6gmpPVg1Gy+eYASskt5cpOIdGu6o3s2Izq5UxHK+Cwkk hKzT3iAk1buuALnfR1cHJGcAFqUghgsDIb5j/waXQ0h6Jg9rN3hz1lOnNZveY6hT Zfzs6R7wJ0r5+OXVXZiVKM4tmDvZdxMZSBdoVEW/ifRC+2rGmlSh2gXylOoWdHbx AGAHdRL8A8VeDxqvdxlsnv2UEra/ZBlZJGsMemf3MvRyp+mDn8SbsqPkJGfHASw9 tRiQeRhCU7q15qRzWIzX =+gaF -----END PGP SIGNATURE----- --tThc/1wpZn/ma/RB-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 05:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB6FB71C for ; Fri, 13 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B68201FD4 for ; Fri, 13 Dec 2013 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD5A1Rd065577 for ; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD5A1o9065576; Fri, 13 Dec 2013 05:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 05:10:01 GMT Resent-Message-Id: <201312130510.rBD5A1o9065576@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3337D616 for ; Fri, 13 Dec 2013 05:05:36 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1EE391F5E for ; Fri, 13 Dec 2013 05:05:36 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD55ZEV075112 for ; Fri, 13 Dec 2013 05:05:35 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD55Z0s075111; Fri, 13 Dec 2013 05:05:35 GMT (envelope-from nobody) Message-Id: <201312130505.rBD55Z0s075111@oldred.freebsd.org> Date: Fri, 13 Dec 2013 05:05:35 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184741: update py-djangotoolbox from 0.9.2 to 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 05:10:02 -0000 >Number: 184741 >Category: ports >Synopsis: update py-djangotoolbox from 0.9.2 to 1.6.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 05:10:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 11.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #17 r259022M: Fri Dec 6 12:03:57 PST 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/www/py-djangotoolbox/Makefile py-djangotoolbox/Makefile --- py-djangotoolbox/Makefile 2013-09-20 16:36:50.000000000 -0700 +++ py-djangotoolbox/Makefile 2013-12-12 21:02:47.261606538 -0800 @@ -2,10 +2,10 @@ # $FreeBSD: www/py-djangotoolbox/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= djangotoolbox -PORTVERSION= 0.9.2 +PORTVERSION= 1.6.1 PORTREVISION= 1 CATEGORIES= www python -MASTER_SITES= CHEESESHOP +MASTER_SITES= https://pypi.python.org/packages/source/d/djangotoolbox/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= john@ixsystems.com diff -urN /usr/ports/www/py-djangotoolbox/distinfo py-djangotoolbox/distinfo --- py-djangotoolbox/distinfo 2013-06-11 05:27:28.000000000 -0700 +++ py-djangotoolbox/distinfo 2013-12-12 21:02:16.329106067 -0800 @@ -1,2 +1,2 @@ -SHA256 (djangotoolbox-0.9.2.tar.gz) = 0b48f2abef1fb4e1d8ea8d3339fe5a6cea1c69197e277570534545a30ff48036 -SIZE (djangotoolbox-0.9.2.tar.gz) = 17762 +SHA256 (djangotoolbox-1.6.1.tar.gz) = a4750a67654a2db464c5fb621d472b49822211cc86fde9033dd34ee496e7863e +SIZE (djangotoolbox-1.6.1.tar.gz) = 33871 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 07:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC28A1B7 for ; Fri, 13 Dec 2013 07:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 967DF1B1B for ; Fri, 13 Dec 2013 07:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD7K09u001993 for ; Fri, 13 Dec 2013 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD7K0MA001992; Fri, 13 Dec 2013 07:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 07:20:00 GMT Resent-Message-Id: <201312130720.rBD7K0MA001992@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Vladimir Chukharev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7A78F70 for ; Fri, 13 Dec 2013 07:12:59 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B42E91AD2 for ; Fri, 13 Dec 2013 07:12:59 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBD7CxBB058764 for ; Fri, 13 Dec 2013 07:12:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBD7CxJ9058752; Fri, 13 Dec 2013 07:12:59 GMT (envelope-from nobody) Message-Id: <201312130712.rBD7CxJ9058752@oldred.freebsd.org> Date: Fri, 13 Dec 2013 07:12:59 GMT From: Vladimir Chukharev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184744: [Maintainer Update] devel/py-robotframework-ride 1.2.2 -> 1.2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 07:20:00 -0000 >Number: 184744 >Category: ports >Synopsis: [Maintainer Update] devel/py-robotframework-ride 1.2.2 -> 1.2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 07:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Vladimir Chukharev >Release: 9.2-STABLE >Organization: >Environment: FreeBSD vovaasus 9.2-STABLE FreeBSD 9.2-STABLE #7 r259028: Sun Dec 8 14:46:24 EET 2013 root@vovaasus:/usr/obj/usr/src/sys/VOVA amd64 >Description: Update devel/py-robotframework-ride version 1.2.2 to a new version 1.2.3. Fixed in this release: Issue 1290 Defect Medium RIDE runs not selected (with checkboxes) tests Issue 1306 Defect Medium [RIDE 1.2.2 running on Python 2.7.5.] - Unable to insert cell in RIDE, if the TC contains FOR loop. Issue 1307 Enhancement Medium Possibility to create new folder with right click >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 336221) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework-ride -PORTVERSION= 1.2.2 +PORTVERSION= 1.2.3 CATEGORIES= devel www python MASTER_SITES= GOOGLE_CODE PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: distinfo =================================================================== --- distinfo (revision 336221) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (robotframework-ride-1.2.2.tar.gz) = c3211575afcc347f28b976af4bb68f7eccdedb1071b8c1419a7c4ad920a0dbf9 -SIZE (robotframework-ride-1.2.2.tar.gz) = 867256 +SHA256 (robotframework-ride-1.2.3.tar.gz) = b2f4a28400b206358c9b48c3378388f1ffc8ba16a1cfba064aed38803a71c5d1 +SIZE (robotframework-ride-1.2.3.tar.gz) = 866289 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 07:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E82141E8; Fri, 13 Dec 2013 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD15A1B1E; Fri, 13 Dec 2013 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD7K8mH003715; Fri, 13 Dec 2013 07:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD7K8dt003714; Fri, 13 Dec 2013 07:20:08 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 07:20:08 GMT Message-Id: <201312130720.rBD7K8dt003714@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184744: [Maintainer Update] devel/py-robotframework-ride 1.2.2 -> 1.2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 07:20:09 -0000 Synopsis: [Maintainer Update] devel/py-robotframework-ride 1.2.2 -> 1.2.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 07:20:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184744 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 09:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 307EE35F for ; Fri, 13 Dec 2013 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C5FD169B for ; Fri, 13 Dec 2013 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD9e0ru041664 for ; Fri, 13 Dec 2013 09:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD9e0nJ041663; Fri, 13 Dec 2013 09:40:00 GMT (envelope-from gnats) Date: Fri, 13 Dec 2013 09:40:00 GMT Message-Id: <201312130940.rBD9e0nJ041663@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184566: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 09:40:01 -0000 The following reply was made to PR ports/184566; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184566: commit references a PR Date: Fri, 13 Dec 2013 09:34:47 +0000 (UTC) Author: gerald Date: Fri Dec 13 09:34:40 2013 New Revision: 336328 URL: http://svnweb.freebsd.org/changeset/ports/336328 Log: Fix the build with more standards-compliant compilers such as GCC 4.7. [1] On the way replace USE_GMAKE by USES=gmake. PR: 184566 [1], 182136 Submitted by: Christoph Moench-Tegeder [1] Approved by: maintainer (Jason Bacon ) [1] Added: head/biology/plink/files/patch-elf.cpp (contents, props changed) head/biology/plink/files/patch-idhelp.cpp (contents, props changed) head/biology/plink/files/patch-sets.cpp (contents, props changed) Modified: head/biology/plink/Makefile Modified: head/biology/plink/Makefile ============================================================================== --- head/biology/plink/Makefile Fri Dec 13 09:03:57 2013 (r336327) +++ head/biology/plink/Makefile Fri Dec 13 09:34:40 2013 (r336328) @@ -15,8 +15,8 @@ LICENSE= GPLv2 LIB_DEPENDS= liblapack.so:${PORTSDIR}/math/lapack +USES= gmake USE_ZIP= yes -USE_GMAKE= yes USE_FORTRAN= yes # Make it use the same compiler as lapack PLIST_FILES= bin/plink Added: head/biology/plink/files/patch-elf.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/plink/files/patch-elf.cpp Fri Dec 13 09:34:40 2013 (r336328) @@ -0,0 +1,25 @@ +--- elf.cpp.orig 2013-11-16 17:09:56.000000000 +0100 ++++ elf.cpp 2013-11-16 17:10:24.000000000 +0100 +@@ -1175,10 +1175,10 @@ + << setw(8) << gcnt << " " + << setw(8) << (double)cnt / (double)gcnt << "\n"; + +- map::iterator i = chr_cnt.begin(); +- while ( i != chr_cnt.end() ) ++ map::iterator ichr = chr_cnt.begin(); ++ while ( ichr != chr_cnt.end() ) + { +- int c = i->first; ++ int c = ichr->first; + int x = chr_cnt.find( c )->second; + int y = chr_gcnt.find( c )->second; + +@@ -1189,7 +1189,7 @@ + << setw(8) << y << " " + << setw(8) << (double)x / (double)y << "\n"; + +- ++i; ++ ++ichr; + } + + } Added: head/biology/plink/files/patch-idhelp.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/plink/files/patch-idhelp.cpp Fri Dec 13 09:34:40 2013 (r336328) @@ -0,0 +1,19 @@ +--- idhelp.cpp.orig 2013-11-16 17:11:42.000000000 +0100 ++++ idhelp.cpp 2013-11-16 17:12:53.000000000 +0100 +@@ -772,12 +772,12 @@ + for (int j = 0 ; j < jointField.size(); j++ ) + { + set & jf = jointField[j]; +- set::iterator j = jf.begin(); ++ set::iterator jfit = jf.begin(); + PP->printLOG(" { "); +- while ( j != jf.end() ) ++ while ( jfit != jf.end() ) + { +- PP->printLOG( (*j)->name + " " ); +- ++j; ++ PP->printLOG( (*jfit)->name + " " ); ++ ++jfit; + } + PP->printLOG(" }"); + } Added: head/biology/plink/files/patch-sets.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/plink/files/patch-sets.cpp Fri Dec 13 09:34:40 2013 (r336328) @@ -0,0 +1,18 @@ +--- sets.cpp.orig 2013-11-16 17:06:29.000000000 +0100 ++++ sets.cpp 2013-11-16 17:07:12.000000000 +0100 +@@ -768,11 +768,11 @@ + ////////////////////////////////////////////// + // Reset original missing status + +- vector::iterator i = PP->sample.begin(); +- while ( i != PP->sample.end() ) ++ vector::iterator ipp = PP->sample.begin(); ++ while ( ipp != PP->sample.end() ) + { +- (*i)->missing = (*i)->flag; +- ++i; ++ (*ipp)->missing = (*ipp)->flag; ++ ++ipp; + } + + //////////////////////////////////////////////// _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 09:41:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 437DA397; Fri, 13 Dec 2013 09:41:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 15FAD16E9; Fri, 13 Dec 2013 09:41:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD9fgmf043344; Fri, 13 Dec 2013 09:41:42 GMT (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBD9fgCT043343; Fri, 13 Dec 2013 09:41:42 GMT (envelope-from gerald) Date: Fri, 13 Dec 2013 09:41:42 GMT Message-Id: <201312130941.rBD9fgCT043343@freefall.freebsd.org> To: jwbacon@tds.net, cmt@burggraben.net, gerald@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gerald@FreeBSD.org Subject: Re: ports/184566: biology/plink : fix build with gcc47 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 09:41:43 -0000 Synopsis: biology/plink : fix build with gcc47 State-Changed-From-To: feedback->closed State-Changed-By: gerald State-Changed-When: Fri Dec 13 09:40:58 UTC 2013 State-Changed-Why: Thanks for the patch and report, Christoph! And thanks for the quick review/approval, Jason! I have committed the patch and am closeing the report. http://www.freebsd.org/cgi/query-pr.cgi?pr=184566 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 10:32:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE985D23; Fri, 13 Dec 2013 10:32:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 847021A37; Fri, 13 Dec 2013 10:32:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDAWZuO054305; Fri, 13 Dec 2013 10:32:35 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDAWZKN054304; Fri, 13 Dec 2013 10:32:35 GMT (envelope-from nemysis) Date: Fri, 13 Dec 2013 10:32:35 GMT Message-Id: <201312131032.rBDAWZKN054304@freefall.freebsd.org> To: horia@racoviceanu.com, nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nemysis@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/184723: Issue with security/libscrypt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 10:32:35 -0000 Synopsis: Issue with security/libscrypt Responsible-Changed-From-To: freebsd-ports-bugs->nemysis Responsible-Changed-By: nemysis Responsible-Changed-When: Fri Dec 13 10:32:34 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184723 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 13:03:36 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6CC2412; Fri, 13 Dec 2013 13:03:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AE8B15EA; Fri, 13 Dec 2013 13:03:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDD3a9w088468; Fri, 13 Dec 2013 13:03:36 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDD3axZ088467; Fri, 13 Dec 2013 13:03:36 GMT (envelope-from culot) Date: Fri, 13 Dec 2013 13:03:36 GMT Message-Id: <201312131303.rBDD3axZ088467@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/184734: [MAINTAINER] deskutils/rednotebook: update to 1.8.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 13:03:36 -0000 Synopsis: [MAINTAINER] deskutils/rednotebook: update to 1.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Fri Dec 13 13:03:36 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184734 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 13:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47C60802 for ; Fri, 13 Dec 2013 13:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21A251702 for ; Fri, 13 Dec 2013 13:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDDK10t091753 for ; Fri, 13 Dec 2013 13:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDDK1nE091752; Fri, 13 Dec 2013 13:20:01 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 13:20:01 GMT Resent-Message-Id: <201312131320.rBDDK1nE091752@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Anes Mukhametov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF93E5D6 for ; Fri, 13 Dec 2013 13:14:44 +0000 (UTC) Received: from be.static.corbina.ru (amuhametov.park.rambler.ru [81.19.64.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4585E16BB for ; Fri, 13 Dec 2013 13:14:43 +0000 (UTC) Received: from be.static.corbina.ru (freebsd10a5 [127.0.0.1]) by be.static.corbina.ru (8.14.7/8.14.7) with ESMTP id rBCLMBER003543 for ; Thu, 12 Dec 2013 21:22:11 GMT (envelope-from amuhametov@be.static.corbina.ru) Received: (from root@localhost) by be.static.corbina.ru (8.14.7/8.14.7/Submit) id rBCLMBxG003542; Thu, 12 Dec 2013 21:22:11 GMT (envelope-from amuhametov) Message-Id: <201312122122.rBCLMBxG003542@be.static.corbina.ru> Date: Thu, 12 Dec 2013 21:22:11 GMT From: Anes Mukhametov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184745: [MAINTAINER] Fixed plist for devel/p5-Devel-Leak-Cb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Anes Mukhametov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 13:20:02 -0000 >Number: 184745 >Category: ports >Synopsis: [MAINTAINER] Fixed plist for devel/p5-Devel-Leak-Cb >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 13:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Anes Mukhametov >Release: FreeBSD 10.0-ALPHA5 amd64 >Organization: >Environment: >Description: Fixed plist for devel/p5-Devel-Leak-Cb >How-To-Repeat: >Fix: --- p5-Devel-Leak-Cb.0.04_1.patch begins here --- diff -ruN devel/p5-Devel-Leak-Cb.orig/Makefile devel/p5-Devel-Leak-Cb/Makefile --- devel/p5-Devel-Leak-Cb.orig/Makefile 2013-11-15 16:52:58.000000000 +0000 +++ devel/p5-Devel-Leak-Cb/Makefile 2013-12-12 14:57:16.000000000 +0000 @@ -3,6 +3,7 @@ PORTNAME= Devel-Leak-Cb PORTVERSION= 0.04 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN devel/p5-Devel-Leak-Cb.orig/pkg-plist devel/p5-Devel-Leak-Cb/pkg-plist --- devel/p5-Devel-Leak-Cb.orig/pkg-plist 2013-11-15 16:52:58.000000000 +0000 +++ devel/p5-Devel-Leak-Cb/pkg-plist 2013-12-12 14:53:14.000000000 +0000 @@ -4,6 +4,5 @@ @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Leak/Cb @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Leak @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Devel @dirrmtry %%SITE_PERL%%/Devel/Leak @dirrmtry %%SITE_PERL%%/Devel --- p5-Devel-Leak-Cb.0.04_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 13:20:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1647583F; Fri, 13 Dec 2013 13:20:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFC841706; Fri, 13 Dec 2013 13:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDDKAnZ093423; Fri, 13 Dec 2013 13:20:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDDKAAu093422; Fri, 13 Dec 2013 13:20:10 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 13:20:10 GMT Message-Id: <201312131320.rBDDKAAu093422@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184745: [MAINTAINER] Fixed plist for devel/p5-Devel-Leak-Cb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 13:20:11 -0000 Synopsis: [MAINTAINER] Fixed plist for devel/p5-Devel-Leak-Cb Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 13:20:10 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184745 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 13:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6DD0A63 for ; Fri, 13 Dec 2013 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A1B6917D2 for ; Fri, 13 Dec 2013 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDDU0XD093680 for ; Fri, 13 Dec 2013 13:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDDU0NE093679; Fri, 13 Dec 2013 13:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 13:30:00 GMT Resent-Message-Id: <201312131330.rBDDU0NE093679@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Johannes Jost Meixner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 946DB8A1 for ; Fri, 13 Dec 2013 13:21:00 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57F8C1761 for ; Fri, 13 Dec 2013 13:20:59 +0000 (UTC) Received: from mx12.chaot.net (82.131.84.56.cable.starman.ee [82.131.84.56]) by dd16522.kasserver.com (Postfix) with ESMTPSA id 1CA73456292 for ; Fri, 13 Dec 2013 14:20:52 +0100 (CET) Received: from localhost (1003@localhost [local]); by mx12.chaot.net (OpenSMTPD) with ESMTPA id b33eee0f; for ; Fri, 13 Dec 2013 15:20:50 +0200 (EET) Message-Id: <1914839106.enqueue@mx12.chaot.net> Date: Fri, 13 Dec 2013 15:20:50 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184746: [MAINTAINER-UPDATE] science/py-h5py: update to 2.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 13:30:00 -0000 >Number: 184746 >Category: ports >Synopsis: [MAINTAINER-UPDATE] science/py-h5py: update to 2.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 13:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Goldener Grund OUe >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #4: Wed Dec 11 13:21:24 EET 2013 >Description: - Update to 2.2.1 - Add EXAMPLES option Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-h5py-2.2.1.patch begins here --- diff -ruN /usr/ports/science/py-h5py/Makefile ./Makefile --- /usr/ports/science/py-h5py/Makefile 2013-11-13 23:28:29.000000000 +0200 +++ ./Makefile 2013-12-13 14:43:05.436458878 +0200 @@ -1,8 +1,8 @@ # Created by: TAOKA Fumiyoshi -# $FreeBSD: science/py-h5py/Makefile 333728 2013-11-13 21:28:29Z wg $ +# $FreeBSD: head/science/py-h5py/Makefile 333728 2013-11-13 21:28:29Z wg $ PORTNAME= h5py -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.1 CATEGORIES= science python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,8 +22,10 @@ PYDISTUTILS_AUTOPLIST= yes PORTDOCS= README.rst +PORTEXAMPLES= multiprocessing_example.py \ + threading_example.py -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS EXAMPLES post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ @@ -32,6 +34,8 @@ post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} ${STAGEDIR}${EXAMPLESDIR} regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test diff -ruN /usr/ports/science/py-h5py/distinfo ./distinfo --- /usr/ports/science/py-h5py/distinfo 2013-11-13 23:28:29.000000000 +0200 +++ ./distinfo 2013-12-13 14:35:57.036123928 +0200 @@ -1,2 +1,2 @@ -SHA256 (h5py-2.2.0.tar.gz) = 021c63a57a5ae231e3d60333634d1ae0fd4adaede2f918d6a699d38246dbd8a2 -SIZE (h5py-2.2.0.tar.gz) = 975911 +SHA256 (h5py-2.2.1.tar.gz) = b4510cb74aef332847dc88e3df6910d7af68c709b3556fc960a687c56ba6a4cb +SIZE (h5py-2.2.1.tar.gz) = 978796 --- py27-h5py-2.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 13:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2434A97; Fri, 13 Dec 2013 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76BBF1831; Fri, 13 Dec 2013 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDDU97k093817; Fri, 13 Dec 2013 13:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDDU9bo093816; Fri, 13 Dec 2013 13:30:09 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 13:30:09 GMT Message-Id: <201312131330.rBDDU9bo093816@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184746: [MAINTAINER-UPDATE] science/py-h5py: update to 2.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 13:30:09 -0000 Synopsis: [MAINTAINER-UPDATE] science/py-h5py: update to 2.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 13:30:09 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184746 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 14:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 970392D9 for ; Fri, 13 Dec 2013 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 70C2E1AF3 for ; Fri, 13 Dec 2013 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDEA0iG001740 for ; Fri, 13 Dec 2013 14:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDEA01Q001739; Fri, 13 Dec 2013 14:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 14:10:00 GMT Resent-Message-Id: <201312131410.rBDEA01Q001739@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Paul Mather Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CFB3258 for ; Fri, 13 Dec 2013 14:05:23 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0C3C1AB4 for ; Fri, 13 Dec 2013 14:05:22 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBDE5M1G087587 for ; Fri, 13 Dec 2013 14:05:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBDE5Mek087586; Fri, 13 Dec 2013 14:05:22 GMT (envelope-from nobody) Message-Id: <201312131405.rBDE5Mek087586@oldred.freebsd.org> Date: Fri, 13 Dec 2013 14:05:22 GMT From: Paul Mather To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184748: Upgrade of devel/rubygem-sprockets to 2.10.1 breaks www/rubygem-rails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 14:10:00 -0000 >Number: 184748 >Category: ports >Synopsis: Upgrade of devel/rubygem-sprockets to 2.10.1 breaks www/rubygem-rails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 14:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Paul Mather >Release: 9.2-STABLE >Organization: Virginia Tech >Environment: FreeBSD gromit.dlib.vt.edu 9.2-STABLE FreeBSD 9.2-STABLE #0 r258978: Thu Dec 5 09:22:36 EST 2013 pmather@gromit.dlib.vt.edu:/usr/obj/usr/src/sys/GROMIT amd64 >Description: I upgraded my packages on RELENG_9 via poudriere recently and discovered that www/rubygem-rails is now broken. It appears the cause of the breakage is the upgrade of devel/rubygem-sprockets to 2.10.1. The latter upgrade breaks www/rubygem-actionpack, whose gemspec depends upon V2.2.X of sprockets. The current version of sprockets fails to satisfy this dependency, causing Rails to fail to start: root@gromit:/home/pmather # rails /usr/local/lib/ruby/site_ruby/1.9/rubygems/dependency.rb:247:in `to_specs': Could not find sprockets (~> 2.2.1) amongst [abstract-1.0.0, actionmailer-3.2.16, actionpack-3.2.16, activemodel-3.2.16, activerecord-3.2.16, activeresource-3.2.16, activesupport-3.2.16, ansi-1.4.3, arel-3.0.2, atomic-1.1.14, builder-3.0.4, bundler-1.3.5, classifier-1.3.3, coffee-rails-3.2.2, coffee-script-2.2.0, coffee-script-source-1.6.3, colorator-0.1, colored-1.2, commander-4.1.4, cri-2.3.0, daemon_controller-1.1.7, directory_watcher-1.4.1, erubis-2.7.0, execjs-1.4.0, fast-stemmer-1.0.2, fastthread-1.0.7, highline-1.6.20, hike-1.2.3, i18n-0.6.9, jekyll-1.0.3, journey-1.0.4, jquery-rails-3.0.1, json-1.8.0, json_pure-1.8.1, kramdown-1.0.2, liquid-2.5.0, mail-2.5.4, maruku-0.6.1, mime-types-1.23, minitest-5.0.6, minitest-4.7.5, multi_json-1.8.2, nanoc-3.6.5, passenger-4.0.27, pg-0.15.1, polyglot-0.3.3, posix-spawn-0.3.6, pygments.rb-0.5.2, rack-1.4.5, rack-1.2.3, rack-cache-1.2, rack-ssl-1.3.3, rack-test-0.6 .2, rails-3.2.16, railties-3.2.16, rake-10.1.0, rake-10.0.4, rake-compiler-0.8.3, safe_yaml-0.9.4, sass-3.2.12, sass-rails-3.2.6, sequel-4.5.0, sprockets-2.10.1, sqlite3-1.3.8, syntax-1.0.0, thor-0.18.1, tilt-2.0.0, treetop-1.4.14, turn-0.9.6, tzinfo-0.3.38, uglifier-2.3.2, yajl-ruby-1.1.0] (Gem::LoadError) from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:778:in `block in activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `each' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:751:in `activate' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:781:in `block in activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `each' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:751:in `activate' from /usr/local/lib/ruby/site_ruby/1.9/rubygems.rb:1232:in `gem' from /usr/local/bin/rails:22:in `
' root@gromit:/home/pmather # pkg info -d rubygem-actionpack rubygem-actionpack-3.2.16: rubygem-rack-test-0.6.2 rubygem-rack-cache-1.2 rubygem-rack-1.4.5,3 rubygem-journey-1.0.4 rubygem-erubis-2.7.0 libyaml-0.1.4_2 ruby-1.9.3.484,1 rubygem-tilt-2.0.0 rubygem-sprockets-2.10.1 rubygem-multi_json-1.8.2 rubygem-json_pure-1.8.1 rubygem-i18n-0.6.9,2 rubygem-hike-1.2.3 rubygem-builder-3.0.4 rubygem-activesupport-3.2.16 rubygem-abstract-1.0.0_1 ruby19-gems-1.8.29 libffi-3.0.13 libexecinfo-1.1_3 rubygem-activemodel-3.2.16 ruby19-iconv-1.9.3.484,1 libiconv-1.14_1 root@gromit:/home/pmather # gem dependency actionpack Gem actionpack-3.2.16 activemodel (= 3.2.16) activesupport (= 3.2.16) builder (~> 3.0.0) erubis (~> 2.7.0) journey (~> 1.0.4) rack (~> 1.4.5) rack-cache (~> 1.2) rack-test (~> 0.6.1) sprockets (~> 2.2.1) tzinfo (~> 0.3.29, development) Note that the gem spec dependency of "~> 2.2.1" is not the same semantics as the ports Makefile dependency of "rubygem-sprockets>=2.2.1:${PORTSDIR}/devel/rubygem-sprockets". The latter will be satisfied by rubygem-sprockets-2.10.1 whereas the former will not. Note that because Rails 3.2.15 is flagged by pkg audit as vulnerable, many people will upgrade to 3.2.16 and have their Rails install break if they also upgrade ruby gem-sprockets, so a fix for this would be nice. >How-To-Repeat: On a machine without Rails installed, do the following: cd /usr/ports/www/rubygem-rails make install clean rails >Fix: If ruby gem-actionpack is compatible with version 2.10.1 of sprockets you could update /usr/local/lib/ruby/gems/1.9/specifications/actionpack-3.2.16.gemspec so that the sprockets gem dependencies are changed from "~> 2.2.1" to "~> 2.10.1". I don't know whether version 2.10.1 of the sprockets gem is compatible with action pack 3.2.16, though. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 14:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42405308; Fri, 13 Dec 2013 14:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 186FD1AF5; Fri, 13 Dec 2013 14:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDEA8SJ001886; Fri, 13 Dec 2013 14:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDEA8is001885; Fri, 13 Dec 2013 14:10:08 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 14:10:08 GMT Message-Id: <201312131410.rBDEA8is001885@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184748: Upgrade of devel/rubygem-sprockets to 2.10.1 breaks www/rubygem-rails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 14:10:09 -0000 Synopsis: Upgrade of devel/rubygem-sprockets to 2.10.1 breaks www/rubygem-rails Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 14:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184748 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 14:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 960B88D5 for ; Fri, 13 Dec 2013 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 714121DAF for ; Fri, 13 Dec 2013 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDEU094007831 for ; Fri, 13 Dec 2013 14:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDEU0MB007830; Fri, 13 Dec 2013 14:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 14:30:00 GMT Resent-Message-Id: <201312131430.rBDEU0MB007830@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Glen Barber Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDFF57E2 for ; Fri, 13 Dec 2013 14:25:56 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CAAE51D79 for ; Fri, 13 Dec 2013 14:25:56 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBDEPu0n086794 for ; Fri, 13 Dec 2013 14:25:56 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBDEPuHl086783; Fri, 13 Dec 2013 14:25:56 GMT (envelope-from nobody) Message-Id: <201312131425.rBDEPuHl086783@oldred.freebsd.org> Date: Fri, 13 Dec 2013 14:25:56 GMT From: Glen Barber To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184749: [patch] net-mgmt/nagios-plugins: Fix check_dns plugin on OSVERSION >= 1000000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 14:30:00 -0000 >Number: 184749 >Category: ports >Synopsis: [patch] net-mgmt/nagios-plugins: Fix check_dns plugin on OSVERSION >= 1000000 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 14:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Glen Barber >Release: FreeBSD 11.0-CURRENT r258761 >Organization: The FreeBSD Foundation >Environment: FreeBSD nucleus 11.0-CURRENT FreeBSD 11.0-CURRENT #194 r258761: Wed Dec 4 09:23:20 EST 2013 root@nucleus:/usr/obj/usr/src/sys/NUCLEUS amd64 >Description: check_dns.c hard-codes the path to nslookup(1) to /usr/bin/nslookup, which does not exist by default on head/, stable/10/, or releng/10.0/. This causes the check_dns plugin to fail, outputting the following: "DNS CRITICAL - '/usr/bin/nslookup -sil' msg parsing exited with no address" >How-To-Repeat: >Fix: Attached patch resolves the issue. Patch attached with submission follows: Index: net-mgmt/nagios-plugins/Makefile =================================================================== --- net-mgmt/nagios-plugins/Makefile (revision 336347) +++ net-mgmt/nagios-plugins/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= nagios-plugins PORTVERSION= 1.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net-mgmt MASTER_SITES= https://www.nagios-plugins.org/download/ @@ -56,6 +57,10 @@ --sysconfdir=${PREFIX}/etc/nagios \ --localstatedir=${NAGIOSDIR} \ --prefix=${PREFIX} +.if(${OSVERSION} >= 1000000) +CONFIGURE_ARGS+=--with-nslookup-command=${PREFIX}/bin/nslookup +BUILD_DEPENDS+= nslookup:${PORTSDIR}/dns/bind-tools +.endif CONFIGURE_ENV= PERL=${PERL} CPPFLAGS+= -I${LOCALBASE}/include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 14:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C238906; Fri, 13 Dec 2013 14:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51D4E1DB2; Fri, 13 Dec 2013 14:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDEU8l2009569; Fri, 13 Dec 2013 14:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDEU8X4009567; Fri, 13 Dec 2013 14:30:08 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 14:30:08 GMT Message-Id: <201312131430.rBDEU8X4009567@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184749: [patch] net-mgmt/nagios-plugins: Fix check_dns plugin on OSVERSION >= 1000000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 14:30:08 -0000 Synopsis: [patch] net-mgmt/nagios-plugins: Fix check_dns plugin on OSVERSION >= 1000000 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Fri Dec 13 14:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184749 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 14:53:06 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B20D22D8; Fri, 13 Dec 2013 14:53:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 853741FA8; Fri, 13 Dec 2013 14:53:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDEr6Q2015134; Fri, 13 Dec 2013 14:53:06 GMT (envelope-from tijl@freefall.freebsd.org) Received: (from tijl@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDEr5K2015131; Fri, 13 Dec 2013 15:53:05 +0100 (CET) (envelope-from tijl) Date: Fri, 13 Dec 2013 15:53:05 +0100 (CET) Message-Id: <201312131453.rBDEr5K2015131@freefall.freebsd.org> To: slaven@rezic.de, tijl@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tijl@FreeBSD.org From: tijl@FreeBSD.org Subject: Re: ports/184385: graphics/proj: bad permissions in package X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 14:53:06 -0000 Synopsis: graphics/proj: bad permissions in package State-Changed-From-To: open->feedback State-Changed-By: tijl State-Changed-When: Fri Dec 13 15:51:34 CET 2013 State-Changed-Why: Take. Responsible-Changed-From-To: freebsd-ports-bugs->tijl Responsible-Changed-By: tijl Responsible-Changed-When: Fri Dec 13 15:51:34 CET 2013 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=184385 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 15:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC554462 for ; Fri, 13 Dec 2013 15:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B6FE51240 for ; Fri, 13 Dec 2013 15:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDFU01h024773 for ; Fri, 13 Dec 2013 15:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDFU0BO024772; Fri, 13 Dec 2013 15:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 15:30:00 GMT Resent-Message-Id: <201312131530.rBDFU0BO024772@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Kammerhofer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AC3F346 for ; Fri, 13 Dec 2013 15:26:11 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C6B6121A for ; Fri, 13 Dec 2013 15:26:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBDFQB0H067631 for ; Fri, 13 Dec 2013 15:26:11 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBDFQBxi067626; Fri, 13 Dec 2013 15:26:11 GMT (envelope-from nobody) Message-Id: <201312131526.rBDFQBxi067626@oldred.freebsd.org> Date: Fri, 13 Dec 2013 15:26:11 GMT From: Martin Kammerhofer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184751: devel/libreadline-java: build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 15:30:00 -0000 >Number: 184751 >Category: ports >Synopsis: devel/libreadline-java: build with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 15:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: 10.0-RC1 >Organization: TUG >Environment: >Description: fix hardcoded CC=gcc in a sub-Makefile >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/devel/libreadline-java/Makefile ./Makefile --- /usr/ports/devel/libreadline-java/Makefile 2013-09-20 19:13:42.000000000 +0200 +++ ./Makefile 2013-12-13 16:16:11.000000000 +0100 @@ -4,7 +4,7 @@ PORTNAME= libreadline-java PORTVERSION= 0.8.0 DISTVERSIONSUFFIX= -src -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel java MASTER_SITES= SF/java-readline/java-readline/${PORTVERSION} diff -ruN /usr/ports/devel/libreadline-java/files/jython.sh ./files/jython.sh --- /usr/ports/devel/libreadline-java/files/jython.sh 2012-07-14 15:54:48.000000000 +0200 +++ ./files/jython.sh 2013-12-13 08:32:23.000000000 +0100 @@ -5,7 +5,7 @@ # The path names below are for Jython 2.2 on FreeBSD. # -CP="/usr/local/lib/jython22/jython.jar" +CP="/usr/local/lib/jython/jython.jar" defs= wrapper= diff -ruN /usr/ports/devel/libreadline-java/files/patch-src-native-Makefile ./files/patch-src-native-Makefile --- /usr/ports/devel/libreadline-java/files/patch-src-native-Makefile 2012-07-14 15:54:48.000000000 +0200 +++ ./files/patch-src-native-Makefile 2013-12-13 08:34:38.000000000 +0100 @@ -1,6 +1,13 @@ ---- src/native/Makefile.orig 2003-01-07 07:14:35.000000000 -0300 -+++ src/native/Makefile 2008-02-16 18:53:37.000000000 -0300 -@@ -44,10 +44,12 @@ +--- src/native/Makefile.orig 2003-01-07 11:14:35.000000000 +0100 ++++ src/native/Makefile 2013-12-13 08:29:23.000000000 +0100 +@@ -38,25 +38,28 @@ + INCLUDES = -I "c:/Programme/DevStudio/VC/include" \ + -I $(JAVAINCLUDE) -I $(JAVANATINC) + LIB = "c:/Programme/DevStudio/VC/lib" +-CC = cl ++#CC = gcc + OBJ_EXT := obj + LIB_PRE := LIB_EXT := dll CFLAGS=-DWIN32=$(WIN32) -D__IBMC__ else @@ -16,7 +23,8 @@ ifeq (cygwin,$(WIN32)) JavaGetline_LIBS = -lcygwin endif -@@ -55,8 +57,9 @@ +-CC = gcc ++CC = cc OBJ_EXT := o LIB_PRE := lib LIB_EXT := so diff -ruN /usr/ports/devel/libreadline-java/files/patch-src-native-org_gnu_readline_Readline.c ./files/patch-src-native-org_gnu_readline_Readline.c --- /usr/ports/devel/libreadline-java/files/patch-src-native-org_gnu_readline_Readline.c 2012-07-14 15:54:48.000000000 +0200 +++ ./files/patch-src-native-org_gnu_readline_Readline.c 2013-12-13 08:36:57.000000000 +0100 @@ -1,5 +1,14 @@ --- src/native/org_gnu_readline_Readline.c.orig 2003-01-07 11:14:35.000000000 +0100 -+++ src/native/org_gnu_readline_Readline.c 2007-09-27 09:21:14.000000000 +0200 ++++ src/native/org_gnu_readline_Readline.c 2013-12-12 20:40:36.000000000 +0100 +@@ -430,7 +430,7 @@ + jtext = (*jniEnv)->NewStringUTF(jniEnv,text); + + if (jniMethodId == 0) { +- return; ++ return 0; + } + + completion = (*jniEnv)->CallObjectMethod(jniEnv, jniObject, @@ -560,6 +560,21 @@ #endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 16:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BBA5DF1C for ; Fri, 13 Dec 2013 16:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 965331844 for ; Fri, 13 Dec 2013 16:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDGo05W042912 for ; Fri, 13 Dec 2013 16:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDGo0Fc042910; Fri, 13 Dec 2013 16:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 16:50:00 GMT Resent-Message-Id: <201312131650.rBDGo0Fc042910@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Fernando Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E08FF0D for ; Fri, 13 Dec 2013 16:48:52 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79F651839 for ; Fri, 13 Dec 2013 16:48:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBDGmqWS035199 for ; Fri, 13 Dec 2013 16:48:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBDGmqd2035191; Fri, 13 Dec 2013 16:48:52 GMT (envelope-from nobody) Message-Id: <201312131648.rBDGmqd2035191@oldred.freebsd.org> Date: Fri, 13 Dec 2013 16:48:52 GMT From: Fernando To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184752: [maintainer update] update cad/openvsp to 2.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 16:50:00 -0000 >Number: 184752 >Category: ports >Synopsis: [maintainer update] update cad/openvsp to 2.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 16:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Fernando >Release: 9.1-RELEASE >Organization: Open Sistemas >Environment: FreeBSD beastie 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Tue Jun 11 18:21:20 CEST 2013 root@beastie:/usr/obj/usr/src/sys/APEKERNEL-9.1 amd64 >Description: Update cad/openvsp to 2.3.0 >How-To-Repeat: >Fix: Apply the attached patch. Port tested in redports for i386[1] and amd64[2] using 9.2 [1]https://redports.org/~fernape/20131213163100-5621-163828/openvsp-2.3.0.log [2]https://redports.org/~fernape/20131213163100-5621-163827/openvsp-2.3.0.log Patch attached with submission follows: diff -ruN /usr/ports/cad/openvsp/Makefile cad/openvsp/Makefile --- /usr/ports/cad/openvsp/Makefile 2013-10-14 21:53:58.000000000 +0200 +++ cad/openvsp/Makefile 2013-12-13 17:13:46.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: cad/openvsp/Makefile 330349 2013-10-14 19:53:58Z antoine $ PORTNAME= openvsp -PORTVERSION= 2.2.5 +PORTVERSION= 2.3.0 CATEGORIES= cad MASTER_SITES= GH @@ -28,7 +28,7 @@ GH_PROJECT= OpenVSP GH_ACCOUNT= ${GH_PROJECT} GH_TAGNAME= ${GH_PROJECT}_${PORTVERSION} -GH_COMMIT= 4c359c8 +GH_COMMIT= 568c424 CMAKE_SOURCE_PATH= ${WRKSRC}/src USES= cmake:outsource iconv diff -ruN /usr/ports/cad/openvsp/distinfo cad/openvsp/distinfo --- /usr/ports/cad/openvsp/distinfo 2013-10-14 21:53:58.000000000 +0200 +++ cad/openvsp/distinfo 2013-12-13 17:13:14.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (openvsp-2.2.5.tar.gz) = 8bfa9cd89798315e7e4b314f5bdaa0fe7408ae594be2a19c5f01be0e73573736 -SIZE (openvsp-2.2.5.tar.gz) = 2934729 +SHA256 (openvsp-2.3.0.tar.gz) = 32f7e5d562e07bec6ece279e42244963fbc1c2a61e8d0fc1c10fe8b6ab8587d6 +SIZE (openvsp-2.3.0.tar.gz) = 2940850 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 17:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DD14204 for ; Fri, 13 Dec 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0577718E6 for ; Fri, 13 Dec 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDH00IH044881 for ; Fri, 13 Dec 2013 17:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDH00A1044874; Fri, 13 Dec 2013 17:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 13 Dec 2013 17:00:00 GMT Resent-Message-Id: <201312131700.rBDH00A1044874@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, RK Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F071F8D for ; Fri, 13 Dec 2013 16:52:51 +0000 (UTC) Received: from ponto.amerinoc.com (ponto.amerinoc.com [64.6.108.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3AB2D18AD for ; Fri, 13 Dec 2013 16:52:51 +0000 (UTC) Received: from fbsd9.localdomain (205.83.broadband7.iol.cz [88.102.83.205]) (authenticated bits=128) by ponto.amerinoc.com (8.14.7/8.14.7) with ESMTP id rBDGqaxr021654 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 13 Dec 2013 17:52:50 +0100 (CET) (envelope-from hsn@sendmail.cz) Received: from acer.localdomain ([10.0.0.2]) by fbsd9.localdomain (8.14.7/8.14.7) with ESMTP id rBDGqMlR058062; Fri, 13 Dec 2013 17:52:29 +0100 (CET) (envelope-from hsn@sendmail.cz) Received: from acer.localdomain (localhost [127.0.0.1]) by acer.localdomain (8.14.7/8.14.7) with ESMTP id rBDGqksO048139 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 13 Dec 2013 17:52:46 +0100 (CET) (envelope-from hsn@acer.localdomain) Received: (from hsn@localhost) by acer.localdomain (8.14.7/8.14.7/Submit) id rBDGqj0B048138; Fri, 13 Dec 2013 17:52:45 +0100 (CET) (envelope-from hsn) Message-Id: <201312131652.rBDGqj0B048138@acer.localdomain> Date: Fri, 13 Dec 2013 17:52:45 +0100 (CET) From: RK To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184753: [PATCH] audio/libmikmod: update to 3.1.15 Cc: neuroworker@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 17:00:01 -0000 >Number: 184753 >Category: ports >Synopsis: [PATCH] audio/libmikmod: update to 3.1.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 13 17:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: RK >Release: FreeBSD 10.0-RC1 i386 >Organization: >Environment: System: FreeBSD acer.localdomain 10.0-RC1 FreeBSD 10.0-RC1 #0 r259068: Sat Dec 7 21:12:15 >Description: - Update to 3.1.15 - all local patches are now merged upstream Port maintainer (neuroworker@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- libmikmod-3.1.15.patch begins here --- diff -ruN /usr/ports/audio/libmikmod/Makefile ./Makefile --- /usr/ports/audio/libmikmod/Makefile 2013-10-04 10:52:32.000000000 +0200 +++ ./Makefile 2013-12-13 17:50:37.000000000 +0100 @@ -2,13 +2,15 @@ # $FreeBSD: audio/libmikmod/Makefile 329271 2013-10-04 08:52:32Z bapt $ PORTNAME= libmikmod -PORTVERSION= 3.1.12 +PORTVERSION= 3.1.15 CATEGORIES= audio -MASTER_SITES= SF/mikmod/libmikmod%20%28source%29/${PORTVERSION}/ +MASTER_SITES= SF/mikmod/${PORTNAME}/${PORTVERSION}/ MAINTAINER= neuroworker@gmail.com COMMENT= MikMod Sound Library +LICENSE= LGPL21 + USE_AUTOTOOLS= libtool NO_STAGE= yes WANT_GNOME= yes diff -ruN /usr/ports/audio/libmikmod/distinfo ./distinfo --- /usr/ports/audio/libmikmod/distinfo 2012-07-14 14:56:14.000000000 +0200 +++ ./distinfo 2013-12-13 11:58:48.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (libmikmod-3.1.12.tar.gz) = 891a2b780306e6ef86e381f459e71a085d4e7f56c970a879d3bf341c01bdfc32 -SIZE (libmikmod-3.1.12.tar.gz) = 618011 +SHA256 (libmikmod-3.1.15.tar.gz) = c4ddd7fef14afe2c38fe8bb647eec415912b8cc150e992031c86b968deabdb63 +SIZE (libmikmod-3.1.15.tar.gz) = 1008296 diff -ruN /usr/ports/audio/libmikmod/files/patch-64bit-fix ./files/patch-64bit-fix --- /usr/ports/audio/libmikmod/files/patch-64bit-fix 2012-07-14 14:56:14.000000000 +0200 +++ ./files/patch-64bit-fix 1970-01-01 01:00:00.000000000 +0100 @@ -1,24 +0,0 @@ -diff -ru include/mikmod.h.in libmikmod-3.1.12/include/mikmod.h.in ---- include/mikmod.h.in 2007-12-15 01:24:19.000000000 -0800 -+++ include/mikmod.h.in 2009-10-05 00:18:56.000000000 -0700 -@@ -85,7 +85,7 @@ - - @DOES_NOT_HAVE_SIGNED@ - --#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) -+#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(_LP64) - /* 64 bit architectures */ - - typedef signed char SBYTE; /* 1 byte, signed */ -diff -ru include/mikmod_internals.h libmikmod-3.1.12/include/mikmod_internals.h ---- include/mikmod_internals.h 2007-12-15 04:24:51.000000000 -0800 -+++ include/mikmod_internals.h 2009-10-05 00:19:15.000000000 -0700 -@@ -50,7 +50,7 @@ - /*========== More type definitions */ - - /* SLONGLONG: 64bit, signed */ --#if defined (__arch64__) || defined(__alpha) -+#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(_LP64) - typedef long SLONGLONG; - #define NATIVE_64BIT_INT - #elif defined(__WATCOMC__) diff -ruN /usr/ports/audio/libmikmod/files/patch-CVE-2009-0179 ./files/patch-CVE-2009-0179 --- /usr/ports/audio/libmikmod/files/patch-CVE-2009-0179 2012-07-14 14:56:14.000000000 +0200 +++ ./files/patch-CVE-2009-0179 1970-01-01 01:00:00.000000000 +0100 @@ -1,33 +0,0 @@ -diff -ur loaders/load_xm.c libmikmod-3.1.11/loaders/load_xm.c ---- loaders/load_xm.c 2004-01-21 18:43:53.000000000 +0100 -+++ loaders/load_xm.c 2008-04-16 04:30:45.000000000 +0200 -@@ -622,7 +622,8 @@ - /* read the remainder of the header */ - for(u=headend-_mm_ftell(modreader);u;u--) _mm_read_UBYTE(modreader); - -- if(_mm_eof(modreader)) { -+ /* last instrument is at the end of file in version 0x0104 */ -+ if(_mm_eof(modreader) && (mh->version<0x0104 || tInit || l->Init()) { - _mm_rewind(modreader); - ok = l->Load(curious); -- /* propagate inflags=flags for in-module samples */ -- for (t = 0; t < of.numsmp; t++) -- if (of.samples[t].inflags == 0) -- of.samples[t].inflags = of.samples[t].flags; -+ if (ok) { -+ /* propagate inflags=flags for in-module samples */ -+ for (t = 0; t < of.numsmp; t++) -+ if (of.samples[t].inflags == 0) -+ of.samples[t].inflags = of.samples[t].flags; -+ } - } else - ok = 0; - diff -ruN /usr/ports/audio/libmikmod/files/patch-exitcrash ./files/patch-exitcrash --- /usr/ports/audio/libmikmod/files/patch-exitcrash 2012-07-14 14:56:14.000000000 +0200 +++ ./files/patch-exitcrash 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -diff -ru playercode/virtch_common.c libmikmod-3.1.12/playercode/virtch_common.c ---- playercode/virtch_common.c 2007-12-15 01:26:53.000000000 -0800 -+++ playercode/virtch_common.c 2009-10-05 00:37:12.000000000 -0700 -@@ -347,7 +347,7 @@ - - void VC1_SampleUnload(SWORD handle) - { -- if (handlenumvoices ? md_sngchn : (mod)->numvoices) -+ - #define HIGH_OCTAVE 2 /* number of above-range octaves */ - - static UWORD oldperiods[OCTAVE*2]={ -@@ -248,14 +250,14 @@ - MP_VOICE *a; - ULONG t,k,tvol,pp; - -- for (t=0;tvoice[t].main.kick==KICK_ABSENT)|| - (mod->voice[t].main.kick==KICK_ENV))&& - Voice_Stopped_internal(t)) - return t; - - tvol=0xffffffUL;t=-1;a=mod->voice; -- for (k=0;kmain.s) - return k; -@@ -2249,12 +2251,12 @@ - - switch (dat) { - case 0x0: /* past note cut */ -- for (t=0;tvoice[t].master==a) - mod->voice[t].main.fadevol=0; - break; - case 0x1: /* past note off */ -- for (t=0;tvoice[t].master==a) { - mod->voice[t].main.keyoff|=KEY_OFF; - if ((!(mod->voice[t].venv.flg & EF_ON))|| -@@ -2263,7 +2265,7 @@ - } - break; - case 0x2: /* past note fade */ -- for (t=0;tvoice[t].master==a) - mod->voice[t].main.keyoff|=KEY_FADE; - break; -@@ -2318,7 +2320,7 @@ - SAMPLE *s; - - mod->totalchn=mod->realchn=0; -- for (channel=0;channelvoice[channel]; - i=aout->main.i; - s=aout->main.s; -@@ -2736,7 +2738,7 @@ - if (a->dct!=DCT_OFF) { - int t; - -- for (t=0;tvoice[t].masterchn==channel)&& - (a->main.sample==mod->voice[t].main.sample)) { -@@ -2978,6 +2980,11 @@ - if (!(mod->voice=(MP_VOICE*)_mm_calloc(md_sngchn,sizeof(MP_VOICE)))) - return 1; - -+ /* mod->numvoices was used during loading to clamp md_sngchn. -+ After loading it's used to remember how big mod->voice is. -+ */ -+ mod->numvoices = md_sngchn; -+ - Player_Init_internal(mod); - return 0; - } -@@ -3086,7 +3093,7 @@ - pf->patbrk=0; - pf->vbtick=pf->sngspd; - -- for (t=0;tvoice[t].main.i=NULL; - pf->voice[t].main.s=NULL; -@@ -3111,7 +3118,7 @@ - pf->patbrk=0; - pf->vbtick=pf->sngspd; - -- for (t=0;tvoice[t].main.i=NULL; - pf->voice[t].main.s=NULL; -@@ -3138,7 +3145,7 @@ - pf->sngpos=pos; - pf->vbtick=pf->sngspd; - -- for (t=0;tvoice[t].main.i=NULL; - pf->voice[t].main.s=NULL; diff -ruN /usr/ports/audio/libmikmod/files/patch-ngvolume ./files/patch-ngvolume --- /usr/ports/audio/libmikmod/files/patch-ngvolume 2012-07-14 14:56:14.000000000 +0200 +++ ./files/patch-ngvolume 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -diff -ru playercode/mplayer.c libmikmod-3.1.12/playercode/mplayer.c ---- playercode/mplayer.c 2009-10-05 00:19:59.000000000 -0700 -+++ playercode/mplayer.c 2009-10-05 00:44:35.000000000 -0700 -@@ -3019,7 +3019,7 @@ - { - MUTEX_LOCK(vars); - if (pf) -- pf->volume=(volume<0)?0:(volume>128)?128:volume; -+ pf->volume=pf->initvolume=(volume<0)?0:(volume>128)?128:volume; - MUTEX_UNLOCK(vars); - } - --- libmikmod-3.1.15.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 17:00:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36FF6237; Fri, 13 Dec 2013 17:00:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0E35818E9; Fri, 13 Dec 2013 17:00:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDH09Mb044955; Fri, 13 Dec 2013 17:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDH09u5044954; Fri, 13 Dec 2013 17:00:09 GMT (envelope-from edwin) Date: Fri, 13 Dec 2013 17:00:09 GMT Message-Id: <201312131700.rBDH09u5044954@freefall.freebsd.org> To: hsn@sendmail.cz, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184753: [PATCH] audio/libmikmod: update to 3.1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 17:00:10 -0000 Synopsis: [PATCH] audio/libmikmod: update to 3.1.15 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Dec 13 17:00:09 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184753 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 17:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DE1D9E3 for ; Fri, 13 Dec 2013 17:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2845A19DD for ; Fri, 13 Dec 2013 17:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDHA0Vw047117 for ; Fri, 13 Dec 2013 17:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDHA03E047116; Fri, 13 Dec 2013 17:10:00 GMT (envelope-from gnats) Date: Fri, 13 Dec 2013 17:10:00 GMT Message-Id: <201312131710.rBDHA03E047116@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184753: [PATCH] audio/libmikmod: update to 3.1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 17:10:01 -0000 The following reply was made to PR ports/184753; it has been noted by GNATS. From: Edwin Groothuis To: neuroworker@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184753: [PATCH] audio/libmikmod: update to 3.1.15 Date: Fri, 13 Dec 2013 17:00:08 UT Maintainer of audio/libmikmod, Please note that PR ports/184753 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184753 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 17:35:40 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F8B328D; Fri, 13 Dec 2013 17:35:40 +0000 (UTC) Received: from mail-vb0-x22d.google.com (mail-vb0-x22d.google.com [IPv6:2607:f8b0:400c:c02::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF1BD1CD3; Fri, 13 Dec 2013 17:35:39 +0000 (UTC) Received: by mail-vb0-f45.google.com with SMTP id i12so1494675vbh.4 for ; Fri, 13 Dec 2013 09:35:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=6HrJ2dcS88h2zKNw7WoPbhN9ISsSZ3MtqPOFKi1akzc=; b=IDHNNRrrhEj4grvl8+FNS2HS/2zx52EygYdEEnxaCUrIKRJa2LCvH9UI90DZuZO0c4 WgUFUN6c0zERAsxMIJLvylduIQ7G+hy2Xq0UDzz+cPlYFmpD2tQ91W/aGl4mEEbULJpk 3trae4BFY/i5to5UPWxEpY+M4OtfRVRCHNC3vMDWuVae9CKhUtUgj8NxaLUJgN6aLeV/ /xXwTq64NMfaJhmdoGusM2mKPAMfSBUqyNDdTW23F1RUUIWaSx1L/Ny806w2bdFS6MT4 h9XIlznnX5cd7bT8snSSVT8W4JUdhfdx/O71DL91Zt03pJ2VTLS6CTtI7N/mH47X1QXA GNpg== MIME-Version: 1.0 X-Received: by 10.58.181.230 with SMTP id dz6mr1710450vec.35.1386956138997; Fri, 13 Dec 2013 09:35:38 -0800 (PST) Received: by 10.220.139.212 with HTTP; Fri, 13 Dec 2013 09:35:38 -0800 (PST) In-Reply-To: <201312010930.rB19U0t4074304@freefall.freebsd.org> References: <201312010927.rB19RGQ6026118@oldred.freebsd.org> <201312010930.rB19U0t4074304@freefall.freebsd.org> Date: Fri, 13 Dec 2013 18:35:38 +0100 Message-ID: Subject: Re: ports/184407: Update for multimedia/mplayer and mencoder to a new snapshot From: Thomas Zander To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 17:35:40 -0000 Any technical reason why this can't be committed? From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 13 17:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78C16305 for ; Fri, 13 Dec 2013 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A8CD1CF0 for ; Fri, 13 Dec 2013 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBDHe1M7053596 for ; Fri, 13 Dec 2013 17:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBDHe1rQ053595; Fri, 13 Dec 2013 17:40:01 GMT (envelope-from gnats) Date: Fri, 13 Dec 2013 17:40:01 GMT Message-Id: <201312131740.rBDHe1rQ053595@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Thomas Zander Subject: Re: ports/184407: Update for multimedia/mplayer and mencoder to a new snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Thomas Zander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Dec 2013 17:40:01 -0000 The following reply was made to PR ports/184407; it has been noted by GNATS. From: Thomas Zander To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Cc: Subject: Re: ports/184407: Update for multimedia/mplayer and mencoder to a new snapshot Date: Fri, 13 Dec 2013 18:35:38 +0100 Any technical reason why this can't be committed? From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 02:20:48 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62D1DB55; Sat, 14 Dec 2013 02:20:48 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 397C31653; Sat, 14 Dec 2013 02:20:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBE2Kmfh016583; Sat, 14 Dec 2013 02:20:48 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBE2Kl6o016527; Sat, 14 Dec 2013 02:20:47 GMT (envelope-from koobs) Date: Sat, 14 Dec 2013 02:20:47 GMT Message-Id: <201312140220.rBE2Kl6o016527@freefall.freebsd.org> To: umq@ueo.co.jp, koobs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/183066: security/libgcrypt builds on powerpc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 02:20:48 -0000 Synopsis: security/libgcrypt builds on powerpc Responsible-Changed-From-To: freebsd-ports-bugs->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Sat Dec 14 02:20:47 UTC 2013 Responsible-Changed-Why: I'll take it (maintainer timeout, 1 month) http://www.freebsd.org/cgi/query-pr.cgi?pr=183066 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 06:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A40407AC for ; Sat, 14 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F90D1A88 for ; Sat, 14 Dec 2013 06:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBE6K0qk064503 for ; Sat, 14 Dec 2013 06:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBE6K0Ff064502; Sat, 14 Dec 2013 06:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 06:20:00 GMT Resent-Message-Id: <201312140620.rBE6K0Ff064502@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel Timofeev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 800B4731 for ; Sat, 14 Dec 2013 06:12:56 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53D941A5F for ; Sat, 14 Dec 2013 06:12:56 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBE6CuCr034744 for ; Sat, 14 Dec 2013 06:12:56 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBE6CupM034734; Sat, 14 Dec 2013 06:12:56 GMT (envelope-from nobody) Message-Id: <201312140612.rBE6CupM034734@oldred.freebsd.org> Date: Sat, 14 Dec 2013 06:12:56 GMT From: Pavel Timofeev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184759: Can't install net-mgmt/nagios-plugins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 06:20:00 -0000 >Number: 184759 >Category: ports >Synopsis: Can't install net-mgmt/nagios-plugins >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 06:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Pavel Timofeev >Release: FreeBSD-10.0 RC1 amd64 >Organization: >Environment: >Description: nagios-plugins can't be installed after upgrade to 1.5,1. Here is output: ........... /bin/mkdir -p /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share installing fr.gmo as /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share/locale/fr/LC_MESSAGES/nagios-plugins.mo installing de.gmo as /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share/locale/de/LC_MESSAGES/nagios-plugins.mo if test "nagios-plugins" = "gettext-tools"; then \ /bin/mkdir -p /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share/gettext/po; \ for file in Makefile.in.in remove-potcdate.sin Makevars.template; do \ install -o root -g wheel -m 444 ./$file \ /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share/gettext/po/$file; \ done; \ for file in Makevars; do \ rm -f /usr/ports/net-mgmt/nagios-plugins/work/stage/usr/local/share/gettext/po/$file; \ done; \ else \ : ; \ fi gmake[1]: Leaving directory `/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5/po' gmake[1]: Entering directory `/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5' gmake[2]: Entering directory `/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5' gmake[1]: Leaving directory `/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5' ====> Compressing man pages (compress-man) ===> Building package for nagios-plugins-1.5,1 Creating package /usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5,1.tbz Registering depends: gettext-0.18.3.1 libiconv-1.14_1 perl5-5.16.3_4 openldap-sasl-client-2.4.38 radiusclient-0.5.6_1 cyrus-sasl-2.1.26_3. Creating bzip'd tar ball in '/usr/ports/net-mgmt/nagios-plugins/work/nagios-plugins-1.5,1.tbz' tar: libexec/nagios/check_radius: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 *** [do-package] Error code 1 Stop in /usr/ports/net-mgmt/nagios-plugins. *** [/usr/ports/net-mgmt/nagios-plugins/work/.package_done.nagios-plugins._usr_local] Error code 1 Stop in /usr/ports/net-mgmt/nagios-plugins. *** [install] Error code 1 Stop in /usr/ports/net-mgmt/nagios-plugins. ===>>> Installation of nagios-plugins-1.5,1 (net-mgmt/nagios-plugins) failed ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> You can restart from the point of failure with this command line: portmaster net-mgmt/nagios-plugins ===>>> Exiting >How-To-Repeat: try to install net-mgmt/nagios-plugins >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 06:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B1C67DB; Sat, 14 Dec 2013 06:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E4DFE1A8A; Sat, 14 Dec 2013 06:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBE6K70l064640; Sat, 14 Dec 2013 06:20:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBE6K7N2064639; Sat, 14 Dec 2013 06:20:07 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 06:20:07 GMT Message-Id: <201312140620.rBE6K7N2064639@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184759: Can't install net-mgmt/nagios-plugins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 06:20:08 -0000 Synopsis: Can't install net-mgmt/nagios-plugins Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 06:20:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184759 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 11:15:49 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7785C15; Sat, 14 Dec 2013 11:15:49 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BD591A73; Sat, 14 Dec 2013 11:15:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEBFnTJ041583; Sat, 14 Dec 2013 11:15:49 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEBFnkw041582; Sat, 14 Dec 2013 11:15:49 GMT (envelope-from pawel) Date: Sat, 14 Dec 2013 11:15:49 GMT Message-Id: <201312141115.rBEBFnkw041582@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184752: [maintainer update] update cad/openvsp to 2.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 11:15:49 -0000 Synopsis: [maintainer update] update cad/openvsp to 2.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Dec 14 11:15:49 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184752 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 11:54:50 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C028370; Sat, 14 Dec 2013 11:54:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 30D2F1D64; Sat, 14 Dec 2013 11:54:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEBsorU049133; Sat, 14 Dec 2013 11:54:50 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEBsoKj049132; Sat, 14 Dec 2013 11:54:50 GMT (envelope-from pawel) Date: Sat, 14 Dec 2013 11:54:50 GMT Message-Id: <201312141154.rBEBsoKj049132@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184742: update pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 11:54:50 -0000 Synopsis: update pithos from 0.3.17 to 0.3.18 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Dec 14 11:54:49 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184742 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 12:15:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 691124AE; Sat, 14 Dec 2013 12:15:41 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3D7AA1E69; Sat, 14 Dec 2013 12:15:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBECFfh6056231; Sat, 14 Dec 2013 12:15:41 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBECFejq056230; Sat, 14 Dec 2013 12:15:40 GMT (envelope-from pawel) Date: Sat, 14 Dec 2013 12:15:40 GMT Message-Id: <201312141215.rBECFejq056230@freefall.freebsd.org> To: john@pcbsd.org, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/184740: update pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 12:15:41 -0000 Synopsis: update pithos from 0.3.17 to 0.3.18 State-Changed-From-To: open->closed State-Changed-By: pawel State-Changed-When: Sat Dec 14 12:15:40 UTC 2013 State-Changed-Why: Same as ports/184742 http://www.freebsd.org/cgi/query-pr.cgi?pr=184740 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B716653C for ; Sat, 14 Dec 2013 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91BD0126A for ; Sat, 14 Dec 2013 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDU0l3072142 for ; Sat, 14 Dec 2013 13:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDU0TN072141; Sat, 14 Dec 2013 13:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 13:30:00 GMT Resent-Message-Id: <201312141330.rBEDU0TN072141@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mamoru Sakaue Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7DE843E for ; Sat, 14 Dec 2013 13:27:35 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D354E1255 for ; Sat, 14 Dec 2013 13:27:35 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBEDRZfW053859 for ; Sat, 14 Dec 2013 13:27:35 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBEDRZtM053858; Sat, 14 Dec 2013 13:27:35 GMT (envelope-from nobody) Message-Id: <201312141327.rBEDRZtM053858@oldred.freebsd.org> Date: Sat, 14 Dec 2013 13:27:35 GMT From: Mamoru Sakaue To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184763: Update of ports-mgmt/portsreinstall to version 3.0.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:30:00 -0000 >Number: 184763 >Category: ports >Synopsis: Update of ports-mgmt/portsreinstall to version 3.0.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 13:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mamoru Sakaue >Release: 8.4-RELEASE >Organization: MwGhennndo >Environment: FreeBSD Grubstake.EmpireNmw 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Mon Sep 9 23:00:58 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: The software version is updated to 3.0.4. This version includes some minor improvements and bug fixes. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/ports-mgmt/portsreinstall/Makefile.orig /usr/ports/ports-mgmt/portsreinstall/Makefile --- /usr/ports/ports-mgmt/portsreinstall/Makefile.orig 2013-11-22 19:05:28.000000000 +0900 +++ /usr/ports/ports-mgmt/portsreinstall/Makefile 2013-12-14 22:02:30.000000000 +0900 @@ -1,10 +1,10 @@ # Created by: Mamoru Sakaue / MwGhennndo -# $FreeBSD: ports-mgmt/portsreinstall/Makefile 334567 2013-11-22 10:05:28Z jadawin $ +# $FreeBSD: ports-mgmt/portsreinstall/Makefile 327762 2013-09-20 22:36:49Z bapt $ PORTNAME= portsreinstall -PORTVERSION= 3.0.4 +PORTVERSION= 3.0.5 CATEGORIES= ports-mgmt -MASTER_SITES= SFJP/${PORTNAME}/59894/ \ +MASTER_SITES= SFJP/${PORTNAME}/60071/ \ http://www.mwghennndo.com/software/${PORTNAME}/ MAINTAINER= sakaue.mamoru@samurai.mwghennn.net diff -ruN /usr/ports/ports-mgmt/portsreinstall/distinfo.orig /usr/ports/ports-mgmt/portsreinstall/distinfo --- /usr/ports/ports-mgmt/portsreinstall/distinfo.orig 2013-11-22 19:05:28.000000000 +0900 +++ /usr/ports/ports-mgmt/portsreinstall/distinfo 2013-12-14 22:22:21.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (portsreinstall-3.0.4.tar.gz) = fa68b6b3a5486152ae62e7fe25af885feea67f4b69629ac8c4b3ff650033f889 -SIZE (portsreinstall-3.0.4.tar.gz) = 79745 +SHA256 (portsreinstall-3.0.5.tar.gz) = 28fd99c253304dd05880137f8ecb6d28b091b8607f692c43e423203bd50087f1 +SIZE (portsreinstall-3.0.5.tar.gz) = 80972 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C707F946 for ; Sat, 14 Dec 2013 13:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 854981302 for ; Sat, 14 Dec 2013 13:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDe0TQ073983 for ; Sat, 14 Dec 2013 13:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDe063073982; Sat, 14 Dec 2013 13:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 13:40:00 GMT Resent-Message-Id: <201312141340.rBEDe063073982@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zsolt Udvari Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 256DE85A for ; Sat, 14 Dec 2013 13:38:51 +0000 (UTC) Received: from mail-ee0-x231.google.com (mail-ee0-x231.google.com [IPv6:2a00:1450:4013:c00::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B0C4112F2 for ; Sat, 14 Dec 2013 13:38:50 +0000 (UTC) Received: by mail-ee0-f49.google.com with SMTP id c41so1345854eek.36 for ; Sat, 14 Dec 2013 05:38:49 -0800 (PST) Received: from bsd-zsolt (91.82.169.145.pool.invitel.hu. [91.82.169.145]) by mx.google.com with ESMTPSA id b41sm18624569eef.16.2013.12.14.05.38.45 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 14 Dec 2013 05:38:47 -0800 (PST) Received: by bsd-zsolt (sSMTP sendmail emulation); Sat, 14 Dec 2013 14:38:35 +0100 Message-Id: <52ac5f67.41590e0a.0251.3e2d@mx.google.com> Date: Sat, 14 Dec 2013 14:38:35 +0100 From: Zsolt Udvari To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184764: audio/qmpdclient build fails with disable NLS Cc: Zsolt Udvari X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Zsolt Udvari List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:40:00 -0000 >Number: 184764 >Category: ports >Synopsis: audio/qmpdclient build fails with disable NLS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 13:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Zsolt Udvari >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD bsd-zsolt 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Build audio/qmpdclient disabling NLS: pkg-static: lstat(/memdisk/build/home/freebsd/ports/audio/qmpdclient/work/stage/usr/local/share/QMPDClient/translations/): No such file or directory pkg-static: lstat(/memdisk/build/home/freebsd/ports/audio/qmpdclient/work/stage/usr/local/share/QMPDClient/): No such file or directory >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:40:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8BFC975; Sat, 14 Dec 2013 13:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8FE991303; Sat, 14 Dec 2013 13:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDe8Tf074113; Sat, 14 Dec 2013 13:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDe83u074112; Sat, 14 Dec 2013 13:40:08 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 13:40:08 GMT Message-Id: <201312141340.rBEDe83u074112@freefall.freebsd.org> To: udvzsolt@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184764: audio/qmpdclient build fails with disable NLS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:40:08 -0000 Synopsis: audio/qmpdclient build fails with disable NLS State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Dec 14 13:40:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184764 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B26E0C7F for ; Sat, 14 Dec 2013 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B87E138A for ; Sat, 14 Dec 2013 13:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDo1jG076018 for ; Sat, 14 Dec 2013 13:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDo1ua076016; Sat, 14 Dec 2013 13:50:01 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 13:50:01 GMT Message-Id: <201312141350.rBEDo1ua076016@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/183861: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:50:01 -0000 The following reply was made to PR ports/183861; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/183861: commit references a PR Date: Sat, 14 Dec 2013 13:42:21 +0000 (UTC) Author: flo Date: Sat Dec 14 13:42:06 2013 New Revision: 336446 URL: http://svnweb.freebsd.org/changeset/ports/336446 Log: Update to nspr 4.10.2 Update to nss 3.15.3.1 Update firefox-esr and thunderbird to 24.2.0 Update firefox to 26.0 Update seamonkey to 2.23 - catch up with directory renames since USES=webplugins was introduced; fixes plugins not being automatically enabled after install - linux-firefox and linux-seamonkey can play HTML5 audio [2][3] and measure about:memory usage, again - dom.ipc.plugins.enabled->true no longer crash linux-firefox which makes some flash sites work again; as there's no nspluginwrapper in-between the infamous "youtube issue" never occurs - install DEBUG with symbols [3] and describe the option better [4] - enable dumping about:memory upon kill -65, kill -66 and GC/CC log upon kill -67 to a file under /tmp directory; linux-firefox uses kill -34, kill -35 and kill -36 respectively PR: ports/183861 [1] PR: ports/184006 [2] PR: ports/169896 [3] PR: ports/184285 [3] PR: ports/184286 [4] Security: dd116b19-64b3-11e3-868f-0025905a4771 In collaboration with: Jan Beich Added: head/mail/thunderbird/files/patch-bug885538 (contents, props changed) head/mail/thunderbird/files/patch-bug945046 (contents, props changed) head/mail/thunderbird/files/patch-bug946560 (contents, props changed) head/www/firefox-esr/files/patch-bug945046 (contents, props changed) head/www/firefox-esr/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug945046 (contents, props changed) head/www/firefox/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug947862 (contents, props changed) head/www/libxul/files/patch-bug945046 (contents, props changed) head/www/libxul/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug945046 (contents, props changed) head/www/seamonkey/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug947862 (contents, props changed) Deleted: head/mail/thunderbird/files/extra-bug780531 head/www/firefox-esr/files/extra-bug780531 head/www/firefox/Makefile.webplugins head/www/firefox/files/extra-bug780531 head/www/firefox/files/patch-bug807492 head/www/firefox/files/patch-bug851992 head/www/firefox/files/patch-bug853301 head/www/firefox/files/patch-bug876156 head/www/firefox/files/patch-bug886181 head/www/firefox/files/patch-bug910875 head/www/firefox/files/patch-bug916216 head/www/firefox/files/patch-bug918177 head/www/libxul/files/extra-bug780531 head/www/seamonkey/files/extra-bug780531 head/www/seamonkey/files/patch-bug807492 head/www/seamonkey/files/patch-bug851992 head/www/seamonkey/files/patch-bug876156 head/www/seamonkey/files/patch-bug886181 head/www/seamonkey/files/patch-bug910875 head/www/seamonkey/files/patch-bug916216 head/www/seamonkey/files/patch-bug918177 Modified: head/Mk/bsd.gecko.mk head/devel/nspr/Makefile head/devel/nspr/distinfo head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in (contents, props changed) head/mail/linux-thunderbird/pkg-plist 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-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp (contents, props changed) head/mail/thunderbird/files/thunderbird.desktop.in (contents, props changed) head/security/ca_root_nss/Makefile head/security/ca_root_nss/distinfo head/security/nss/Makefile head/security/nss/distinfo head/security/vuxml/vuln.xml head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/Makefile.lang head/www/firefox-esr-i18n/Makefile.option head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo head/www/firefox-esr/files/firefox.desktop.in (contents, props changed) head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp head/www/firefox-i18n/Makefile head/www/firefox-i18n/Makefile.lang head/www/firefox-i18n/Makefile.option head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo head/www/firefox/files/firefox.desktop.in (contents, props changed) head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp (contents, props changed) head/www/firefox/files/patch-config-baseconfig.mk head/www/libxul/Makefile head/www/libxul/distinfo head/www/libxul/files/patch-build_unix_run-mozilla.sh (contents, props changed) head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp (contents, props changed) head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo head/www/linux-firefox/files/linux-firefox.desktop.in (contents, props changed) head/www/linux-firefox/pkg-plist head/www/linux-seamonkey/Makefile head/www/linux-seamonkey/Makefile.common head/www/linux-seamonkey/distinfo head/www/linux-seamonkey/files/linux-seamonkey.desktop.in (contents, props changed) head/www/linux-seamonkey/pkg-plist head/www/seamonkey-i18n/Makefile head/www/seamonkey-i18n/Makefile.lang head/www/seamonkey-i18n/Makefile.option head/www/seamonkey-i18n/distinfo head/www/seamonkey/Makefile head/www/seamonkey/distinfo head/www/seamonkey/files/patch-config-baseconfig.mk head/www/seamonkey/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp (contents, props changed) head/www/seamonkey/files/seamonkey.desktop.in (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sat Dec 14 13:38:47 2013 (r336445) +++ head/Mk/bsd.gecko.mk Sat Dec 14 13:42:06 2013 (r336446) @@ -176,7 +176,7 @@ Gecko_Pre_Include= bsd.gecko.mk # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. -# Available values: yes 24+ 25+ 24 25+ +# Available values: yes 24+ 26+ 24 26 # NOTE: # default value 24 is used in case of USE_FIREFOX=yes # @@ -187,9 +187,9 @@ Gecko_Pre_Include= bsd.gecko.mk # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. -# Available values: yes 22+ 22 +# Available values: yes 23+ 23 # NOTE: -# default value 22 is used in case of USE_SEAMONKEY=yes +# default value 23 is used in case of USE_SEAMONKEY=yes # # USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey. # Available values: see USE_SEAMONKEY @@ -218,11 +218,11 @@ _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 24 -_FIREFOX_VERSIONS= 24 25 -_FIREFOX_RANGE_VERSIONS= 24+ 25+ +_FIREFOX_VERSIONS= 24 26 +_FIREFOX_RANGE_VERSIONS= 24+ 26+ # For specifying [24, ..]+ -_FIREFOX_25P= 25 ${_FIREFOX_24P} +_FIREFOX_26P= 26 ${_FIREFOX_24P} _FIREFOX_24P= 24 # Set the default Firefox version and check if USE_FIREFOX=yes was given @@ -269,7 +269,7 @@ IGNORE= cannot install: unknown Firefo # Dependence lines for different Firefox versions 24_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -25_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +26_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox # Add dependencies .if defined(USE_FIREFOX) @@ -291,12 +291,12 @@ USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD _SEAMONKEY_BUILD_DEPENDS= yes .endif -_SEAMONKEY_DEFAULT_VERSION= 22 -_SEAMONKEY_VERSIONS= 22 -_SEAMONKEY_RANGE_VERSIONS= 22+ +_SEAMONKEY_DEFAULT_VERSION= 23 +_SEAMONKEY_VERSIONS= 23 +_SEAMONKEY_RANGE_VERSIONS= 23+ -# For specifying [22, ..]+ -_SEAMONKEY_22P= 22 +# For specifying [23, ..]+ +_SEAMONKEY_23P= 23 # Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given .if ${USE_SEAMONKEY} == "yes" @@ -338,7 +338,7 @@ IGNORE= cannot install: unknown SeaMon .endif # Dependence lines for different SeaMonkey versions -22_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey +23_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey # Add dependencies .if defined(USE_SEAMONKEY) @@ -540,7 +540,7 @@ MOZ_EXPORT+= ${CONFIGURE_ENV} \ MOZ_OPTIONS+= --prefix="${FAKEDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-z,origin -Wl,-rpath,\\\$$\$$ORIGIN +LDFLAGS+= -L${LOCALBASE}/lib -Wl,-R,${PREFIX}/lib/${MOZILLA} # prefer base clang, for lang/clang{,-devel} see ports/177224 .if ${CC} == "cc" && (exists(/usr/bin/clang) && ${OSVERSION} >= 900014) @@ -662,12 +662,8 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -.if ${MOZILLA_VER:R:R} < 25 && !exists(${FILESDIR}/patch-bug803480) -MOZ_OPTIONS+= --disable-necko-wifi -.else # XXX stolen from www/chromium MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 -.endif .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 @@ -758,9 +754,6 @@ ALL_TARGET= profiledbuild LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins MOZ_OPTIONS+= --enable-alsa -. if exists(${FILESDIR}/extra-bug780531) -EXTRA_PATCHES+= ${FILESDIR}/extra-bug780531 -. endif .endif .if ${PORT_OPTIONS:MPULSEAUDIO} @@ -959,8 +952,9 @@ gecko-post-patch: ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h - @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|mozilla/plugins|browser_plugins|g' \ + -e 's|share/mozilla/extensions|lib/xpi|g' \ ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ Modified: head/devel/nspr/Makefile ============================================================================== --- head/devel/nspr/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nspr -DISTVERSION= 4.10.1 +DISTVERSION= 4.10.2 CATEGORIES= devel MASTER_SITES= MOZILLA/${PORTNAME}/releases/v${PORTVERSION}/src Modified: head/devel/nspr/distinfo ============================================================================== --- head/devel/nspr/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nspr-4.10.1.tar.gz) = 0c2f8dc265f1e9b2600fd519430a1f960799888857bbb1538343a1b16ba41b20 -SIZE (nspr-4.10.1.tar.gz) = 1102858 +SHA256 (nspr-4.10.2.tar.gz) = 4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400 +SIZE (nspr-4.10.2.tar.gz) = 1103130 Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 24.0 -CATEGORIES= mail +DISTVERSION= 24.2.0 +CATEGORIES= mail news net-im ipv6 DISTNAME= ${PORTNAME}-${DISTVERSION} MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US @@ -11,10 +11,9 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above USE_BZIP2= yes -REPLACE_GRE= yes +WANT_GTK218= yes USE_LINUX_APPS= dbusglib dbuslibs alsalib alsa-plugins-oss -NO_STAGE= yes .include "${.CURDIR}/../../www/linux-seamonkey/Makefile.common" .include Modified: head/mail/linux-thunderbird/distinfo ============================================================================== --- head/mail/linux-thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,6 @@ -SHA256 (thunderbird-24.0.tar.bz2) = f642a6978cf0c5d1c54b97f86c11e79c8ae2d0a3ee38cff296320a9a5c8911a0 -SIZE (thunderbird-24.0.tar.bz2) = 28964786 +SHA256 (thunderbird-24.2.0.tar.bz2) = d3b1a1049cf39cfecdfa26ad043520b6cb180d517995c7261aebc50786d61335 +SIZE (thunderbird-24.2.0.tar.bz2) = 28959142 +SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 +SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 +SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b +SIZE (gtk2-2.18.3-19.fc12.i686.rpm) = 3198708 Modified: head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in ============================================================================== --- head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird (Linux) GenericName=Mail Client (Linux) Comment=Mail client and News Reader -Exec=linux-thunderbird %U +Exec=linux-thunderbird %u Icon=%%PREFIX%%/lib/%%APP_NAME%%/chrome/icons/default/default.xpm StartupNotify=false Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/mail/linux-thunderbird/pkg-plist ============================================================================== --- head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:42:06 2013 (r336446) @@ -34,6 +34,10 @@ lib/%%APP_NAME%%/isp/movemail.rdf lib/%%APP_NAME%%/isp/rss.rdf lib/%%APP_NAME%%/libfreebl3.chk lib/%%APP_NAME%%/libfreebl3.so +%%GTK218%%lib/%%APP_NAME%%/libgdk-x11-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgio-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libglib-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgtk-x11-2.0.so.0 lib/%%APP_NAME%%/libldap60.so lib/%%APP_NAME%%/libldif60.so lib/%%APP_NAME%%/libmozalloc.so @@ -56,6 +60,7 @@ lib/%%APP_NAME%%/mozilla-xremote-client lib/%%APP_NAME%%/omni.ja lib/%%APP_NAME%%/platform.ini lib/%%APP_NAME%%/plugin-container +lib/%%APP_NAME%%/plugins lib/%%APP_NAME%%/precomplete lib/%%APP_NAME%%/removed-files lib/%%APP_NAME%%/run-mozilla.sh @@ -71,9 +76,7 @@ lib/%%APP_NAME%%/thunderbird-bin lib/%%APP_NAME%%/update-settings.ini lib/%%APP_NAME%%/updater lib/%%APP_NAME%%/updater.ini -@exec /bin/cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/plugins/ 2>/dev/null || true @exec /bin/cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/extensions/ 2>/dev/null || true -@unexec /usr/bin/find %D/lib/%%APP_NAME%%/plugins/ -depth 1 -type l -delete 2>/dev/null || true @unexec /usr/bin/find %D/lib/%%APP_NAME%%/extensions/ -depth 1 -type l -delete 2>/dev/null || true @dirrm lib/%%APP_NAME%%/chrome/icons/default @dirrm lib/%%APP_NAME%%/chrome/icons @@ -87,6 +90,5 @@ lib/%%APP_NAME%%/updater.ini @dirrm lib/%%APP_NAME%%/extensions @dirrm lib/%%APP_NAME%%/icons @dirrm lib/%%APP_NAME%%/isp -@dirrm lib/%%APP_NAME%%/plugins @dirrm lib/%%APP_NAME%%/searchplugins @dirrm lib/%%APP_NAME%% Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 24.1.0 -CATEGORIES= mail +PORTVERSION= 24.2.0 +CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${THUNDERBIRD_I18N_:S/$/.xpi/} @@ -19,6 +19,7 @@ PLISTD?= ${WRKDIR}/plist_dirs PLISTF?= ${WRKDIR}/plist_files NO_BUILD= yes +NO_ARCH= yes USE_THUNDERBIRD= yes USE_XPI= thunderbird linux-thunderbird USE_SUBMAKE= yes @@ -76,7 +77,7 @@ post-patch: ${XARGS} -0L1 ${REINPLACE_CMD} -i '' '/=4.10:${PORTSDIR}/de LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l EM_VERSION= 1.6 -L_VERSION= 2.6.2 +L_VERSION= 2.6.4 SSP_UNSAFE= yes USE_AUTOTOOLS= autoconf213:env @@ -73,11 +72,6 @@ MOZSRC:= ${WRKSRC}/mozilla XPI_LIBDIR= ${PREFIX}/lib/xpi -# libprldap60.so: Undefined symbol "PR_GetCurrentThread" -.if ${ARCH} == i386 -USE_GCC?= yes -.endif - .if ${PORT_OPTIONS:MENIGMAIL} MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail DISTFILES+= ${EM_DISTFILE}:enigmail Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-24.1.0.source.tar.bz2) = 275a482f6ffd24cbea347caaaa593d0e9f4d82ae5b2c6fe7345340b0efc1cf4d -SIZE (thunderbird-24.1.0.source.tar.bz2) = 140336934 +SHA256 (thunderbird-24.2.0.source.tar.bz2) = 66474132bd6ebbb8a913c3f4acd4ecc9bec011e4c7ee49475f29558801a905cf +SIZE (thunderbird-24.2.0.source.tar.bz2) = 140363284 SHA256 (enigmail-1.6.tar.gz) = 10d5eb7ba364b9b6e6275aae8bba1d0e4321ed7d55a715337d566ccf2a56ea4d SIZE (enigmail-1.6.tar.gz) = 1231111 Added: head/mail/thunderbird/files/patch-bug885538 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug885538 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,31 @@ + +# HG changeset patch +# User aceman +# Date 1374257425 14400 +# Node ID 89bbcd5a2293ae0338d1248b71b49338bece2bdc +# Parent baddbdd06d16665bae94e98d1570602cbc6c88ad +Bug 885538 - Fix clang compile failure in nsMsgSearchTerm.cpp by using an empty string instead of null pointer. r=rkent, a=Standard8 + +diff --git a/mailnews/base/search/src/nsMsgSearchTerm.cpp b/mailnews/base/search/src/nsMsgSearchTerm.cpp +--- mailnews/base/search/src/nsMsgSearchTerm.cpp ++++ mailnews/base/search/src/nsMsgSearchTerm.cpp +@@ -192,17 +192,17 @@ nsresult NS_MsgGetStringForAttribute(int + if (attrib == SearchAttribEntryTable[idxAttrib].attrib) + { + found = true; + *string = SearchAttribEntryTable[idxAttrib].attribName; + break; + } + } + if (!found) +- *string = '\0'; // don't leave the string uninitialized ++ *string = ""; // don't leave the string uninitialized + + // we no longer return invalid attribute. If we cannot find the string in the table, + // then it is an arbitrary header. Return success regardless if found or not + return NS_OK; + } + + typedef struct + { + Added: head/mail/thunderbird/files/patch-bug945046 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug945046 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,130 @@ +diff --git config/system-headers config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/config/system-headers ++++ mozilla/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git js/src/config/system-headers js/src/config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/js/src/config/system-headers ++++ mozilla/js/src/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git toolkit/library/Makefile.in toolkit/library/Makefile.in +index 9975621..b4b037d 100644 +--- mozilla/toolkit/library/Makefile.in ++++ mozilla/toolkit/library/Makefile.in +@@ -289,6 +289,10 @@ OS_LIBS += $(call EXPAND_LIBNAME,kvm) + EXTRA_DSO_LDOPTS += -Wl,--warn-unresolved-symbols + endif + ++ifeq ($(OS_ARCH),FreeBSD) ++OS_LIBS += $(call EXPAND_LIBNAME,util) ++endif ++ + ifeq ($(OS_ARCH),WINNT) + OS_LIBS += $(call EXPAND_LIBNAME,shell32 ole32 version winspool comdlg32 imm32 msimg32 shlwapi psapi ws2_32 dbghelp rasapi32 rasdlg iphlpapi uxtheme setupapi secur32 sensorsapi portabledeviceguids windowscodecs wininet wbemuuid) + ifdef ACCESSIBILITY +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index b8147c8..0ffb34e 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -153,6 +153,43 @@ static nsresult GetResidentFast(int64_t + return GetResident(n); + } + ++#ifdef __FreeBSD__ ++#include ++ ++static nsresult ++GetKinfoVmentrySelf(int64_t* prss) ++{ ++ int cnt; ++ struct kinfo_vmentry *vmmap, *kve; ++ if ((vmmap = kinfo_getvmmap(getpid(), &cnt)) == NULL) ++ return NS_ERROR_FAILURE; ++ ++ if (prss) ++ *prss = 0; ++ ++ for (int i = 0; i < cnt; i++) { ++ kve = &vmmap[i]; ++ if (prss) ++ *prss += kve->kve_private_resident; ++ } ++ ++ free(vmmap); ++ return NS_OK; ++} ++ ++#define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ int64_t priv; ++ nsresult rv = GetKinfoVmentrySelf(&priv); ++ if (NS_SUCCEEDED(rv)) ++ *aN = priv * getpagesize(); ++ ++ return NS_OK; ++} ++#endif // FreeBSD ++ + #elif defined(SOLARIS) + + #include +@@ -327,6 +364,24 @@ static nsresult GetResidentFast(int64_t + } + + #define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ PROCESS_MEMORY_COUNTERS_EX pmcex; ++ pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); ++ ++ if (!GetProcessMemoryInfo( ++ GetCurrentProcess(), ++ (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { ++ return NS_ERROR_FAILURE; ++ } ++ ++ *aN = pmcex.PrivateUsage; ++ return NS_OK; ++} ++#endif // XP_ ++ ++#ifdef HAVE_PRIVATE_REPORTER + class PrivateReporter MOZ_FINAL : public MemoryReporterBase + { + public: +@@ -339,21 +394,10 @@ public: + + NS_IMETHOD GetAmount(int64_t *aAmount) + { +- PROCESS_MEMORY_COUNTERS_EX pmcex; +- pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); +- +- if (!GetProcessMemoryInfo( +- GetCurrentProcess(), +- (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { +- return NS_ERROR_FAILURE; +- } +- +- *aAmount = pmcex.PrivateUsage; +- return NS_OK; ++ return GetPrivate(aAmount); + } + }; +- +-#endif // XP_ ++#endif + + #ifdef HAVE_VSIZE_AND_RESIDENT_REPORTERS + class VsizeReporter MOZ_FINAL : public MemoryReporterBase Added: head/mail/thunderbird/files/patch-bug946560 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug946560 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,44 @@ +diff --git xpcom/base/nsMemoryInfoDumper.cpp xpcom/base/nsMemoryInfoDumper.cpp +index 0b2f78c..d857374 100644 +--- mozilla/xpcom/base/nsMemoryInfoDumper.cpp ++++ mozilla/xpcom/base/nsMemoryInfoDumper.cpp +@@ -30,7 +30,7 @@ + #include + #endif + +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + #include + #include + #include +@@ -109,7 +109,7 @@ private: + + } // anonymous namespace + +-#ifdef XP_LINUX // { ++#if defined(XP_LINUX) || defined(__FreeBSD__) // { + namespace { + + /* +@@ -548,7 +548,7 @@ nsMemoryInfoDumper::~nsMemoryInfoDumper( + /* static */ void + nsMemoryInfoDumper::Initialize() + { +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + SignalPipeWatcher::Create(); + FifoWatcher::MaybeCreate(); + #endif +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index 8c65665..8f6d0e9 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -824,7 +824,7 @@ nsMemoryReporterManager::Init() + RegisterReporter(new mozilla::dmd::DMDReporter); + #endif + +-#if defined(XP_LINUX) ++#if defined(XP_LINUX) || defined(__FreeBSD__) + nsMemoryInfoDumper::Initialize(); + #endif + Modified: head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in ============================================================================== --- head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ CUSTOM_LIBS=1 endif -+ifeq ($(OS_ARCH), FreeBSD) ++ifneq (,$(filter DragonFly FreeBSD,$(OS_ARCH))) +EXTRA_LIBS = -L$(dist_libdir) -l$(LBER_LIBNAME) -lpthread +EXTRA_LIBS+= $(filter -L% -l%,${NSPRLINK}) +CUSTOM_LIBS=1 Modified: head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp ============================================================================== --- head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ TriggerQuirks(); #endif -+ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/thunderbird", 0); ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); nsresult rv = mozilla::BinaryPath::Get(argv[0], exePath); if (NS_FAILED(rv)) { Output("Couldn't calculate the application directory.\n"); Modified: head/mail/thunderbird/files/thunderbird.desktop.in ============================================================================== --- head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird GenericName=Mail Client Comment=Mail client and News Reader -Exec=@MOZILLA@ %U +Exec=@MOZILLA@ %u Icon=@PORTNAME_ICON@ -StartupNotify=false +StartupNotify=true Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/security/ca_root_nss/Makefile ============================================================================== --- head/security/ca_root_nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,6 @@ PORTNAME= ca_root_nss PORTVERSION= ${VERSION_NSS} -PORTREVISION= 1 CATEGORIES= security MASTER_SITES= MOZILLA/security/nss/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src DISTNAME= nss-${VERSION_NSS}${NSS_SUFFIX} @@ -25,7 +24,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.15.2 +VERSION_NSS= 3.15.3.1 #NSS_SUFFIX= .with.ckbi.1.93 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: head/security/ca_root_nss/distinfo ============================================================================== --- head/security/ca_root_nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.15.2 +PORTVERSION= 3.15.3.1 #DISTVERSIONSUFFIX= .with.ckbi.1.93 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src @@ -11,7 +11,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Libraries to support development of security-enabled applications BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \ - nspr>=4.10:${PORTSDIR}/devel/nspr \ + nspr>=4.10.2:${PORTSDIR}/devel/nspr \ sqlite3>=3.7.15:${PORTSDIR}/databases/sqlite3 LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \ sqlite3.8:${PORTSDIR}/databases/sqlite3 Modified: head/security/nss/distinfo ============================================================================== --- head/security/nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/vuxml/vuln.xml Sat Dec 14 13:42:06 2013 (r336446) @@ -51,6 +51,101 @@ Note: Please add new entries to the beg --> + + mozilla -- multiple vulnerabilities + + + firefox + 25.0,126.0,1 + 24.2.0,1 + + + linux-firefox + 26.0,1 + + + linux-seamonkey + 2.23 + + + linux-thunderbird + 24.2.0 + + + seamonkey + 2.23 + + + thunderbird + 24.2.0 + + + + +

The Mozilla Project reports:

+
*** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:50:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDC7CC81 for ; Sat, 14 Dec 2013 13:50:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A98F3138C for ; Sat, 14 Dec 2013 13:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDo3Dw076033 for ; Sat, 14 Dec 2013 13:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDo3bK076032; Sat, 14 Dec 2013 13:50:03 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 13:50:03 GMT Message-Id: <201312141350.rBEDo3bK076032@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184286: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:50:03 -0000 The following reply was made to PR ports/184286; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184286: commit references a PR Date: Sat, 14 Dec 2013 13:42:22 +0000 (UTC) Author: flo Date: Sat Dec 14 13:42:06 2013 New Revision: 336446 URL: http://svnweb.freebsd.org/changeset/ports/336446 Log: Update to nspr 4.10.2 Update to nss 3.15.3.1 Update firefox-esr and thunderbird to 24.2.0 Update firefox to 26.0 Update seamonkey to 2.23 - catch up with directory renames since USES=webplugins was introduced; fixes plugins not being automatically enabled after install - linux-firefox and linux-seamonkey can play HTML5 audio [2][3] and measure about:memory usage, again - dom.ipc.plugins.enabled->true no longer crash linux-firefox which makes some flash sites work again; as there's no nspluginwrapper in-between the infamous "youtube issue" never occurs - install DEBUG with symbols [3] and describe the option better [4] - enable dumping about:memory upon kill -65, kill -66 and GC/CC log upon kill -67 to a file under /tmp directory; linux-firefox uses kill -34, kill -35 and kill -36 respectively PR: ports/183861 [1] PR: ports/184006 [2] PR: ports/169896 [3] PR: ports/184285 [3] PR: ports/184286 [4] Security: dd116b19-64b3-11e3-868f-0025905a4771 In collaboration with: Jan Beich Added: head/mail/thunderbird/files/patch-bug885538 (contents, props changed) head/mail/thunderbird/files/patch-bug945046 (contents, props changed) head/mail/thunderbird/files/patch-bug946560 (contents, props changed) head/www/firefox-esr/files/patch-bug945046 (contents, props changed) head/www/firefox-esr/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug945046 (contents, props changed) head/www/firefox/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug947862 (contents, props changed) head/www/libxul/files/patch-bug945046 (contents, props changed) head/www/libxul/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug945046 (contents, props changed) head/www/seamonkey/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug947862 (contents, props changed) Deleted: head/mail/thunderbird/files/extra-bug780531 head/www/firefox-esr/files/extra-bug780531 head/www/firefox/Makefile.webplugins head/www/firefox/files/extra-bug780531 head/www/firefox/files/patch-bug807492 head/www/firefox/files/patch-bug851992 head/www/firefox/files/patch-bug853301 head/www/firefox/files/patch-bug876156 head/www/firefox/files/patch-bug886181 head/www/firefox/files/patch-bug910875 head/www/firefox/files/patch-bug916216 head/www/firefox/files/patch-bug918177 head/www/libxul/files/extra-bug780531 head/www/seamonkey/files/extra-bug780531 head/www/seamonkey/files/patch-bug807492 head/www/seamonkey/files/patch-bug851992 head/www/seamonkey/files/patch-bug876156 head/www/seamonkey/files/patch-bug886181 head/www/seamonkey/files/patch-bug910875 head/www/seamonkey/files/patch-bug916216 head/www/seamonkey/files/patch-bug918177 Modified: head/Mk/bsd.gecko.mk head/devel/nspr/Makefile head/devel/nspr/distinfo head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in (contents, props changed) head/mail/linux-thunderbird/pkg-plist 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-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp (contents, props changed) head/mail/thunderbird/files/thunderbird.desktop.in (contents, props changed) head/security/ca_root_nss/Makefile head/security/ca_root_nss/distinfo head/security/nss/Makefile head/security/nss/distinfo head/security/vuxml/vuln.xml head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/Makefile.lang head/www/firefox-esr-i18n/Makefile.option head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo head/www/firefox-esr/files/firefox.desktop.in (contents, props changed) head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp head/www/firefox-i18n/Makefile head/www/firefox-i18n/Makefile.lang head/www/firefox-i18n/Makefile.option head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo head/www/firefox/files/firefox.desktop.in (contents, props changed) head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp (contents, props changed) head/www/firefox/files/patch-config-baseconfig.mk head/www/libxul/Makefile head/www/libxul/distinfo head/www/libxul/files/patch-build_unix_run-mozilla.sh (contents, props changed) head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp (contents, props changed) head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo head/www/linux-firefox/files/linux-firefox.desktop.in (contents, props changed) head/www/linux-firefox/pkg-plist head/www/linux-seamonkey/Makefile head/www/linux-seamonkey/Makefile.common head/www/linux-seamonkey/distinfo head/www/linux-seamonkey/files/linux-seamonkey.desktop.in (contents, props changed) head/www/linux-seamonkey/pkg-plist head/www/seamonkey-i18n/Makefile head/www/seamonkey-i18n/Makefile.lang head/www/seamonkey-i18n/Makefile.option head/www/seamonkey-i18n/distinfo head/www/seamonkey/Makefile head/www/seamonkey/distinfo head/www/seamonkey/files/patch-config-baseconfig.mk head/www/seamonkey/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp (contents, props changed) head/www/seamonkey/files/seamonkey.desktop.in (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sat Dec 14 13:38:47 2013 (r336445) +++ head/Mk/bsd.gecko.mk Sat Dec 14 13:42:06 2013 (r336446) @@ -176,7 +176,7 @@ Gecko_Pre_Include= bsd.gecko.mk # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. -# Available values: yes 24+ 25+ 24 25+ +# Available values: yes 24+ 26+ 24 26 # NOTE: # default value 24 is used in case of USE_FIREFOX=yes # @@ -187,9 +187,9 @@ Gecko_Pre_Include= bsd.gecko.mk # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. -# Available values: yes 22+ 22 +# Available values: yes 23+ 23 # NOTE: -# default value 22 is used in case of USE_SEAMONKEY=yes +# default value 23 is used in case of USE_SEAMONKEY=yes # # USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey. # Available values: see USE_SEAMONKEY @@ -218,11 +218,11 @@ _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 24 -_FIREFOX_VERSIONS= 24 25 -_FIREFOX_RANGE_VERSIONS= 24+ 25+ +_FIREFOX_VERSIONS= 24 26 +_FIREFOX_RANGE_VERSIONS= 24+ 26+ # For specifying [24, ..]+ -_FIREFOX_25P= 25 ${_FIREFOX_24P} +_FIREFOX_26P= 26 ${_FIREFOX_24P} _FIREFOX_24P= 24 # Set the default Firefox version and check if USE_FIREFOX=yes was given @@ -269,7 +269,7 @@ IGNORE= cannot install: unknown Firefo # Dependence lines for different Firefox versions 24_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -25_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +26_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox # Add dependencies .if defined(USE_FIREFOX) @@ -291,12 +291,12 @@ USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD _SEAMONKEY_BUILD_DEPENDS= yes .endif -_SEAMONKEY_DEFAULT_VERSION= 22 -_SEAMONKEY_VERSIONS= 22 -_SEAMONKEY_RANGE_VERSIONS= 22+ +_SEAMONKEY_DEFAULT_VERSION= 23 +_SEAMONKEY_VERSIONS= 23 +_SEAMONKEY_RANGE_VERSIONS= 23+ -# For specifying [22, ..]+ -_SEAMONKEY_22P= 22 +# For specifying [23, ..]+ +_SEAMONKEY_23P= 23 # Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given .if ${USE_SEAMONKEY} == "yes" @@ -338,7 +338,7 @@ IGNORE= cannot install: unknown SeaMon .endif # Dependence lines for different SeaMonkey versions -22_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey +23_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey # Add dependencies .if defined(USE_SEAMONKEY) @@ -540,7 +540,7 @@ MOZ_EXPORT+= ${CONFIGURE_ENV} \ MOZ_OPTIONS+= --prefix="${FAKEDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-z,origin -Wl,-rpath,\\\$$\$$ORIGIN +LDFLAGS+= -L${LOCALBASE}/lib -Wl,-R,${PREFIX}/lib/${MOZILLA} # prefer base clang, for lang/clang{,-devel} see ports/177224 .if ${CC} == "cc" && (exists(/usr/bin/clang) && ${OSVERSION} >= 900014) @@ -662,12 +662,8 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -.if ${MOZILLA_VER:R:R} < 25 && !exists(${FILESDIR}/patch-bug803480) -MOZ_OPTIONS+= --disable-necko-wifi -.else # XXX stolen from www/chromium MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 -.endif .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 @@ -758,9 +754,6 @@ ALL_TARGET= profiledbuild LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins MOZ_OPTIONS+= --enable-alsa -. if exists(${FILESDIR}/extra-bug780531) -EXTRA_PATCHES+= ${FILESDIR}/extra-bug780531 -. endif .endif .if ${PORT_OPTIONS:MPULSEAUDIO} @@ -959,8 +952,9 @@ gecko-post-patch: ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h - @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|mozilla/plugins|browser_plugins|g' \ + -e 's|share/mozilla/extensions|lib/xpi|g' \ ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ Modified: head/devel/nspr/Makefile ============================================================================== --- head/devel/nspr/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nspr -DISTVERSION= 4.10.1 +DISTVERSION= 4.10.2 CATEGORIES= devel MASTER_SITES= MOZILLA/${PORTNAME}/releases/v${PORTVERSION}/src Modified: head/devel/nspr/distinfo ============================================================================== --- head/devel/nspr/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nspr-4.10.1.tar.gz) = 0c2f8dc265f1e9b2600fd519430a1f960799888857bbb1538343a1b16ba41b20 -SIZE (nspr-4.10.1.tar.gz) = 1102858 +SHA256 (nspr-4.10.2.tar.gz) = 4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400 +SIZE (nspr-4.10.2.tar.gz) = 1103130 Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 24.0 -CATEGORIES= mail +DISTVERSION= 24.2.0 +CATEGORIES= mail news net-im ipv6 DISTNAME= ${PORTNAME}-${DISTVERSION} MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US @@ -11,10 +11,9 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above USE_BZIP2= yes -REPLACE_GRE= yes +WANT_GTK218= yes USE_LINUX_APPS= dbusglib dbuslibs alsalib alsa-plugins-oss -NO_STAGE= yes .include "${.CURDIR}/../../www/linux-seamonkey/Makefile.common" .include Modified: head/mail/linux-thunderbird/distinfo ============================================================================== --- head/mail/linux-thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,6 @@ -SHA256 (thunderbird-24.0.tar.bz2) = f642a6978cf0c5d1c54b97f86c11e79c8ae2d0a3ee38cff296320a9a5c8911a0 -SIZE (thunderbird-24.0.tar.bz2) = 28964786 +SHA256 (thunderbird-24.2.0.tar.bz2) = d3b1a1049cf39cfecdfa26ad043520b6cb180d517995c7261aebc50786d61335 +SIZE (thunderbird-24.2.0.tar.bz2) = 28959142 +SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 +SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 +SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b +SIZE (gtk2-2.18.3-19.fc12.i686.rpm) = 3198708 Modified: head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in ============================================================================== --- head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird (Linux) GenericName=Mail Client (Linux) Comment=Mail client and News Reader -Exec=linux-thunderbird %U +Exec=linux-thunderbird %u Icon=%%PREFIX%%/lib/%%APP_NAME%%/chrome/icons/default/default.xpm StartupNotify=false Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/mail/linux-thunderbird/pkg-plist ============================================================================== --- head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:42:06 2013 (r336446) @@ -34,6 +34,10 @@ lib/%%APP_NAME%%/isp/movemail.rdf lib/%%APP_NAME%%/isp/rss.rdf lib/%%APP_NAME%%/libfreebl3.chk lib/%%APP_NAME%%/libfreebl3.so +%%GTK218%%lib/%%APP_NAME%%/libgdk-x11-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgio-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libglib-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgtk-x11-2.0.so.0 lib/%%APP_NAME%%/libldap60.so lib/%%APP_NAME%%/libldif60.so lib/%%APP_NAME%%/libmozalloc.so @@ -56,6 +60,7 @@ lib/%%APP_NAME%%/mozilla-xremote-client lib/%%APP_NAME%%/omni.ja lib/%%APP_NAME%%/platform.ini lib/%%APP_NAME%%/plugin-container +lib/%%APP_NAME%%/plugins lib/%%APP_NAME%%/precomplete lib/%%APP_NAME%%/removed-files lib/%%APP_NAME%%/run-mozilla.sh @@ -71,9 +76,7 @@ lib/%%APP_NAME%%/thunderbird-bin lib/%%APP_NAME%%/update-settings.ini lib/%%APP_NAME%%/updater lib/%%APP_NAME%%/updater.ini -@exec /bin/cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/plugins/ 2>/dev/null || true @exec /bin/cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/extensions/ 2>/dev/null || true -@unexec /usr/bin/find %D/lib/%%APP_NAME%%/plugins/ -depth 1 -type l -delete 2>/dev/null || true @unexec /usr/bin/find %D/lib/%%APP_NAME%%/extensions/ -depth 1 -type l -delete 2>/dev/null || true @dirrm lib/%%APP_NAME%%/chrome/icons/default @dirrm lib/%%APP_NAME%%/chrome/icons @@ -87,6 +90,5 @@ lib/%%APP_NAME%%/updater.ini @dirrm lib/%%APP_NAME%%/extensions @dirrm lib/%%APP_NAME%%/icons @dirrm lib/%%APP_NAME%%/isp -@dirrm lib/%%APP_NAME%%/plugins @dirrm lib/%%APP_NAME%%/searchplugins @dirrm lib/%%APP_NAME%% Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 24.1.0 -CATEGORIES= mail +PORTVERSION= 24.2.0 +CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${THUNDERBIRD_I18N_:S/$/.xpi/} @@ -19,6 +19,7 @@ PLISTD?= ${WRKDIR}/plist_dirs PLISTF?= ${WRKDIR}/plist_files NO_BUILD= yes +NO_ARCH= yes USE_THUNDERBIRD= yes USE_XPI= thunderbird linux-thunderbird USE_SUBMAKE= yes @@ -76,7 +77,7 @@ post-patch: ${XARGS} -0L1 ${REINPLACE_CMD} -i '' '/=4.10:${PORTSDIR}/de LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l EM_VERSION= 1.6 -L_VERSION= 2.6.2 +L_VERSION= 2.6.4 SSP_UNSAFE= yes USE_AUTOTOOLS= autoconf213:env @@ -73,11 +72,6 @@ MOZSRC:= ${WRKSRC}/mozilla XPI_LIBDIR= ${PREFIX}/lib/xpi -# libprldap60.so: Undefined symbol "PR_GetCurrentThread" -.if ${ARCH} == i386 -USE_GCC?= yes -.endif - .if ${PORT_OPTIONS:MENIGMAIL} MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail DISTFILES+= ${EM_DISTFILE}:enigmail Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-24.1.0.source.tar.bz2) = 275a482f6ffd24cbea347caaaa593d0e9f4d82ae5b2c6fe7345340b0efc1cf4d -SIZE (thunderbird-24.1.0.source.tar.bz2) = 140336934 +SHA256 (thunderbird-24.2.0.source.tar.bz2) = 66474132bd6ebbb8a913c3f4acd4ecc9bec011e4c7ee49475f29558801a905cf +SIZE (thunderbird-24.2.0.source.tar.bz2) = 140363284 SHA256 (enigmail-1.6.tar.gz) = 10d5eb7ba364b9b6e6275aae8bba1d0e4321ed7d55a715337d566ccf2a56ea4d SIZE (enigmail-1.6.tar.gz) = 1231111 Added: head/mail/thunderbird/files/patch-bug885538 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug885538 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,31 @@ + +# HG changeset patch +# User aceman +# Date 1374257425 14400 +# Node ID 89bbcd5a2293ae0338d1248b71b49338bece2bdc +# Parent baddbdd06d16665bae94e98d1570602cbc6c88ad +Bug 885538 - Fix clang compile failure in nsMsgSearchTerm.cpp by using an empty string instead of null pointer. r=rkent, a=Standard8 + +diff --git a/mailnews/base/search/src/nsMsgSearchTerm.cpp b/mailnews/base/search/src/nsMsgSearchTerm.cpp +--- mailnews/base/search/src/nsMsgSearchTerm.cpp ++++ mailnews/base/search/src/nsMsgSearchTerm.cpp +@@ -192,17 +192,17 @@ nsresult NS_MsgGetStringForAttribute(int + if (attrib == SearchAttribEntryTable[idxAttrib].attrib) + { + found = true; + *string = SearchAttribEntryTable[idxAttrib].attribName; + break; + } + } + if (!found) +- *string = '\0'; // don't leave the string uninitialized ++ *string = ""; // don't leave the string uninitialized + + // we no longer return invalid attribute. If we cannot find the string in the table, + // then it is an arbitrary header. Return success regardless if found or not + return NS_OK; + } + + typedef struct + { + Added: head/mail/thunderbird/files/patch-bug945046 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug945046 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,130 @@ +diff --git config/system-headers config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/config/system-headers ++++ mozilla/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git js/src/config/system-headers js/src/config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/js/src/config/system-headers ++++ mozilla/js/src/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git toolkit/library/Makefile.in toolkit/library/Makefile.in +index 9975621..b4b037d 100644 +--- mozilla/toolkit/library/Makefile.in ++++ mozilla/toolkit/library/Makefile.in +@@ -289,6 +289,10 @@ OS_LIBS += $(call EXPAND_LIBNAME,kvm) + EXTRA_DSO_LDOPTS += -Wl,--warn-unresolved-symbols + endif + ++ifeq ($(OS_ARCH),FreeBSD) ++OS_LIBS += $(call EXPAND_LIBNAME,util) ++endif ++ + ifeq ($(OS_ARCH),WINNT) + OS_LIBS += $(call EXPAND_LIBNAME,shell32 ole32 version winspool comdlg32 imm32 msimg32 shlwapi psapi ws2_32 dbghelp rasapi32 rasdlg iphlpapi uxtheme setupapi secur32 sensorsapi portabledeviceguids windowscodecs wininet wbemuuid) + ifdef ACCESSIBILITY +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index b8147c8..0ffb34e 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -153,6 +153,43 @@ static nsresult GetResidentFast(int64_t + return GetResident(n); + } + ++#ifdef __FreeBSD__ ++#include ++ ++static nsresult ++GetKinfoVmentrySelf(int64_t* prss) ++{ ++ int cnt; ++ struct kinfo_vmentry *vmmap, *kve; ++ if ((vmmap = kinfo_getvmmap(getpid(), &cnt)) == NULL) ++ return NS_ERROR_FAILURE; ++ ++ if (prss) ++ *prss = 0; ++ ++ for (int i = 0; i < cnt; i++) { ++ kve = &vmmap[i]; ++ if (prss) ++ *prss += kve->kve_private_resident; ++ } ++ ++ free(vmmap); ++ return NS_OK; ++} ++ ++#define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ int64_t priv; ++ nsresult rv = GetKinfoVmentrySelf(&priv); ++ if (NS_SUCCEEDED(rv)) ++ *aN = priv * getpagesize(); ++ ++ return NS_OK; ++} ++#endif // FreeBSD ++ + #elif defined(SOLARIS) + + #include +@@ -327,6 +364,24 @@ static nsresult GetResidentFast(int64_t + } + + #define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ PROCESS_MEMORY_COUNTERS_EX pmcex; ++ pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); ++ ++ if (!GetProcessMemoryInfo( ++ GetCurrentProcess(), ++ (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { ++ return NS_ERROR_FAILURE; ++ } ++ ++ *aN = pmcex.PrivateUsage; ++ return NS_OK; ++} ++#endif // XP_ ++ ++#ifdef HAVE_PRIVATE_REPORTER + class PrivateReporter MOZ_FINAL : public MemoryReporterBase + { + public: +@@ -339,21 +394,10 @@ public: + + NS_IMETHOD GetAmount(int64_t *aAmount) + { +- PROCESS_MEMORY_COUNTERS_EX pmcex; +- pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); +- +- if (!GetProcessMemoryInfo( +- GetCurrentProcess(), +- (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { +- return NS_ERROR_FAILURE; +- } +- +- *aAmount = pmcex.PrivateUsage; +- return NS_OK; ++ return GetPrivate(aAmount); + } + }; +- +-#endif // XP_ ++#endif + + #ifdef HAVE_VSIZE_AND_RESIDENT_REPORTERS + class VsizeReporter MOZ_FINAL : public MemoryReporterBase Added: head/mail/thunderbird/files/patch-bug946560 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug946560 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,44 @@ +diff --git xpcom/base/nsMemoryInfoDumper.cpp xpcom/base/nsMemoryInfoDumper.cpp +index 0b2f78c..d857374 100644 +--- mozilla/xpcom/base/nsMemoryInfoDumper.cpp ++++ mozilla/xpcom/base/nsMemoryInfoDumper.cpp +@@ -30,7 +30,7 @@ + #include + #endif + +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + #include + #include + #include +@@ -109,7 +109,7 @@ private: + + } // anonymous namespace + +-#ifdef XP_LINUX // { ++#if defined(XP_LINUX) || defined(__FreeBSD__) // { + namespace { + + /* +@@ -548,7 +548,7 @@ nsMemoryInfoDumper::~nsMemoryInfoDumper( + /* static */ void + nsMemoryInfoDumper::Initialize() + { +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + SignalPipeWatcher::Create(); + FifoWatcher::MaybeCreate(); + #endif +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index 8c65665..8f6d0e9 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -824,7 +824,7 @@ nsMemoryReporterManager::Init() + RegisterReporter(new mozilla::dmd::DMDReporter); + #endif + +-#if defined(XP_LINUX) ++#if defined(XP_LINUX) || defined(__FreeBSD__) + nsMemoryInfoDumper::Initialize(); + #endif + Modified: head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in ============================================================================== --- head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ CUSTOM_LIBS=1 endif -+ifeq ($(OS_ARCH), FreeBSD) ++ifneq (,$(filter DragonFly FreeBSD,$(OS_ARCH))) +EXTRA_LIBS = -L$(dist_libdir) -l$(LBER_LIBNAME) -lpthread +EXTRA_LIBS+= $(filter -L% -l%,${NSPRLINK}) +CUSTOM_LIBS=1 Modified: head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp ============================================================================== --- head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ TriggerQuirks(); #endif -+ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/thunderbird", 0); ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); nsresult rv = mozilla::BinaryPath::Get(argv[0], exePath); if (NS_FAILED(rv)) { Output("Couldn't calculate the application directory.\n"); Modified: head/mail/thunderbird/files/thunderbird.desktop.in ============================================================================== --- head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird GenericName=Mail Client Comment=Mail client and News Reader -Exec=@MOZILLA@ %U +Exec=@MOZILLA@ %u Icon=@PORTNAME_ICON@ -StartupNotify=false +StartupNotify=true Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/security/ca_root_nss/Makefile ============================================================================== --- head/security/ca_root_nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,6 @@ PORTNAME= ca_root_nss PORTVERSION= ${VERSION_NSS} -PORTREVISION= 1 CATEGORIES= security MASTER_SITES= MOZILLA/security/nss/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src DISTNAME= nss-${VERSION_NSS}${NSS_SUFFIX} @@ -25,7 +24,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.15.2 +VERSION_NSS= 3.15.3.1 #NSS_SUFFIX= .with.ckbi.1.93 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: head/security/ca_root_nss/distinfo ============================================================================== --- head/security/ca_root_nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.15.2 +PORTVERSION= 3.15.3.1 #DISTVERSIONSUFFIX= .with.ckbi.1.93 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src @@ -11,7 +11,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Libraries to support development of security-enabled applications BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \ - nspr>=4.10:${PORTSDIR}/devel/nspr \ + nspr>=4.10.2:${PORTSDIR}/devel/nspr \ sqlite3>=3.7.15:${PORTSDIR}/databases/sqlite3 LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \ sqlite3.8:${PORTSDIR}/databases/sqlite3 Modified: head/security/nss/distinfo ============================================================================== --- head/security/nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/vuxml/vuln.xml Sat Dec 14 13:42:06 2013 (r336446) @@ -51,6 +51,101 @@ Note: Please add new entries to the beg --> + + mozilla -- multiple vulnerabilities + + + firefox + 25.0,126.0,1 + 24.2.0,1 + + + linux-firefox + 26.0,1 + + + linux-seamonkey + 2.23 + + + linux-thunderbird + 24.2.0 + + + seamonkey + 2.23 + + + thunderbird + 24.2.0 + + + + +

The Mozilla Project reports:

+
*** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:50:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A76B5C80 for ; Sat, 14 Dec 2013 13:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 945AB138B for ; Sat, 14 Dec 2013 13:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDo2Dv076024 for ; Sat, 14 Dec 2013 13:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDo2mn076023; Sat, 14 Dec 2013 13:50:02 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 13:50:02 GMT Message-Id: <201312141350.rBEDo2mn076023@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184764: audio/qmpdclient build fails with disable NLS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:50:02 -0000 The following reply was made to PR ports/184764; it has been noted by GNATS. From: Edwin Groothuis To: uyamba@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/184764: audio/qmpdclient build fails with disable NLS Date: Sat, 14 Dec 2013 13:40:07 UT Maintainer of audio/qmpdclient, Please note that PR ports/184764 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184764 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 13:50:06 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E95F2C8F for ; Sat, 14 Dec 2013 13:50:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5695138F for ; Sat, 14 Dec 2013 13:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEDo6NI076051 for ; Sat, 14 Dec 2013 13:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEDo6Jb076050; Sat, 14 Dec 2013 13:50:06 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 13:50:06 GMT Message-Id: <201312141350.rBEDo6Jb076050@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184006: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 13:50:07 -0000 The following reply was made to PR ports/184006; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184006: commit references a PR Date: Sat, 14 Dec 2013 13:42:21 +0000 (UTC) Author: flo Date: Sat Dec 14 13:42:06 2013 New Revision: 336446 URL: http://svnweb.freebsd.org/changeset/ports/336446 Log: Update to nspr 4.10.2 Update to nss 3.15.3.1 Update firefox-esr and thunderbird to 24.2.0 Update firefox to 26.0 Update seamonkey to 2.23 - catch up with directory renames since USES=webplugins was introduced; fixes plugins not being automatically enabled after install - linux-firefox and linux-seamonkey can play HTML5 audio [2][3] and measure about:memory usage, again - dom.ipc.plugins.enabled->true no longer crash linux-firefox which makes some flash sites work again; as there's no nspluginwrapper in-between the infamous "youtube issue" never occurs - install DEBUG with symbols [3] and describe the option better [4] - enable dumping about:memory upon kill -65, kill -66 and GC/CC log upon kill -67 to a file under /tmp directory; linux-firefox uses kill -34, kill -35 and kill -36 respectively PR: ports/183861 [1] PR: ports/184006 [2] PR: ports/169896 [3] PR: ports/184285 [3] PR: ports/184286 [4] Security: dd116b19-64b3-11e3-868f-0025905a4771 In collaboration with: Jan Beich Added: head/mail/thunderbird/files/patch-bug885538 (contents, props changed) head/mail/thunderbird/files/patch-bug945046 (contents, props changed) head/mail/thunderbird/files/patch-bug946560 (contents, props changed) head/www/firefox-esr/files/patch-bug945046 (contents, props changed) head/www/firefox-esr/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug945046 (contents, props changed) head/www/firefox/files/patch-bug946560 (contents, props changed) head/www/firefox/files/patch-bug947862 (contents, props changed) head/www/libxul/files/patch-bug945046 (contents, props changed) head/www/libxul/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug945046 (contents, props changed) head/www/seamonkey/files/patch-bug946560 (contents, props changed) head/www/seamonkey/files/patch-bug947862 (contents, props changed) Deleted: head/mail/thunderbird/files/extra-bug780531 head/www/firefox-esr/files/extra-bug780531 head/www/firefox/Makefile.webplugins head/www/firefox/files/extra-bug780531 head/www/firefox/files/patch-bug807492 head/www/firefox/files/patch-bug851992 head/www/firefox/files/patch-bug853301 head/www/firefox/files/patch-bug876156 head/www/firefox/files/patch-bug886181 head/www/firefox/files/patch-bug910875 head/www/firefox/files/patch-bug916216 head/www/firefox/files/patch-bug918177 head/www/libxul/files/extra-bug780531 head/www/seamonkey/files/extra-bug780531 head/www/seamonkey/files/patch-bug807492 head/www/seamonkey/files/patch-bug851992 head/www/seamonkey/files/patch-bug876156 head/www/seamonkey/files/patch-bug886181 head/www/seamonkey/files/patch-bug910875 head/www/seamonkey/files/patch-bug916216 head/www/seamonkey/files/patch-bug918177 Modified: head/Mk/bsd.gecko.mk head/devel/nspr/Makefile head/devel/nspr/distinfo head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in (contents, props changed) head/mail/linux-thunderbird/pkg-plist 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-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp (contents, props changed) head/mail/thunderbird/files/thunderbird.desktop.in (contents, props changed) head/security/ca_root_nss/Makefile head/security/ca_root_nss/distinfo head/security/nss/Makefile head/security/nss/distinfo head/security/vuxml/vuln.xml head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/Makefile.lang head/www/firefox-esr-i18n/Makefile.option head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo head/www/firefox-esr/files/firefox.desktop.in (contents, props changed) head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp head/www/firefox-i18n/Makefile head/www/firefox-i18n/Makefile.lang head/www/firefox-i18n/Makefile.option head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo head/www/firefox/files/firefox.desktop.in (contents, props changed) head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp (contents, props changed) head/www/firefox/files/patch-config-baseconfig.mk head/www/libxul/Makefile head/www/libxul/distinfo head/www/libxul/files/patch-build_unix_run-mozilla.sh (contents, props changed) head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp (contents, props changed) head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo head/www/linux-firefox/files/linux-firefox.desktop.in (contents, props changed) head/www/linux-firefox/pkg-plist head/www/linux-seamonkey/Makefile head/www/linux-seamonkey/Makefile.common head/www/linux-seamonkey/distinfo head/www/linux-seamonkey/files/linux-seamonkey.desktop.in (contents, props changed) head/www/linux-seamonkey/pkg-plist head/www/seamonkey-i18n/Makefile head/www/seamonkey-i18n/Makefile.lang head/www/seamonkey-i18n/Makefile.option head/www/seamonkey-i18n/distinfo head/www/seamonkey/Makefile head/www/seamonkey/distinfo head/www/seamonkey/files/patch-config-baseconfig.mk head/www/seamonkey/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp (contents, props changed) head/www/seamonkey/files/seamonkey.desktop.in (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sat Dec 14 13:38:47 2013 (r336445) +++ head/Mk/bsd.gecko.mk Sat Dec 14 13:42:06 2013 (r336446) @@ -176,7 +176,7 @@ Gecko_Pre_Include= bsd.gecko.mk # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. -# Available values: yes 24+ 25+ 24 25+ +# Available values: yes 24+ 26+ 24 26 # NOTE: # default value 24 is used in case of USE_FIREFOX=yes # @@ -187,9 +187,9 @@ Gecko_Pre_Include= bsd.gecko.mk # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. -# Available values: yes 22+ 22 +# Available values: yes 23+ 23 # NOTE: -# default value 22 is used in case of USE_SEAMONKEY=yes +# default value 23 is used in case of USE_SEAMONKEY=yes # # USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey. # Available values: see USE_SEAMONKEY @@ -218,11 +218,11 @@ _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 24 -_FIREFOX_VERSIONS= 24 25 -_FIREFOX_RANGE_VERSIONS= 24+ 25+ +_FIREFOX_VERSIONS= 24 26 +_FIREFOX_RANGE_VERSIONS= 24+ 26+ # For specifying [24, ..]+ -_FIREFOX_25P= 25 ${_FIREFOX_24P} +_FIREFOX_26P= 26 ${_FIREFOX_24P} _FIREFOX_24P= 24 # Set the default Firefox version and check if USE_FIREFOX=yes was given @@ -269,7 +269,7 @@ IGNORE= cannot install: unknown Firefo # Dependence lines for different Firefox versions 24_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -25_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +26_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox # Add dependencies .if defined(USE_FIREFOX) @@ -291,12 +291,12 @@ USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD _SEAMONKEY_BUILD_DEPENDS= yes .endif -_SEAMONKEY_DEFAULT_VERSION= 22 -_SEAMONKEY_VERSIONS= 22 -_SEAMONKEY_RANGE_VERSIONS= 22+ +_SEAMONKEY_DEFAULT_VERSION= 23 +_SEAMONKEY_VERSIONS= 23 +_SEAMONKEY_RANGE_VERSIONS= 23+ -# For specifying [22, ..]+ -_SEAMONKEY_22P= 22 +# For specifying [23, ..]+ +_SEAMONKEY_23P= 23 # Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given .if ${USE_SEAMONKEY} == "yes" @@ -338,7 +338,7 @@ IGNORE= cannot install: unknown SeaMon .endif # Dependence lines for different SeaMonkey versions -22_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey +23_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey # Add dependencies .if defined(USE_SEAMONKEY) @@ -540,7 +540,7 @@ MOZ_EXPORT+= ${CONFIGURE_ENV} \ MOZ_OPTIONS+= --prefix="${FAKEDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-z,origin -Wl,-rpath,\\\$$\$$ORIGIN +LDFLAGS+= -L${LOCALBASE}/lib -Wl,-R,${PREFIX}/lib/${MOZILLA} # prefer base clang, for lang/clang{,-devel} see ports/177224 .if ${CC} == "cc" && (exists(/usr/bin/clang) && ${OSVERSION} >= 900014) @@ -662,12 +662,8 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -.if ${MOZILLA_VER:R:R} < 25 && !exists(${FILESDIR}/patch-bug803480) -MOZ_OPTIONS+= --disable-necko-wifi -.else # XXX stolen from www/chromium MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 -.endif .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 @@ -758,9 +754,6 @@ ALL_TARGET= profiledbuild LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins MOZ_OPTIONS+= --enable-alsa -. if exists(${FILESDIR}/extra-bug780531) -EXTRA_PATCHES+= ${FILESDIR}/extra-bug780531 -. endif .endif .if ${PORT_OPTIONS:MPULSEAUDIO} @@ -959,8 +952,9 @@ gecko-post-patch: ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h - @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|mozilla/plugins|browser_plugins|g' \ + -e 's|share/mozilla/extensions|lib/xpi|g' \ ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ Modified: head/devel/nspr/Makefile ============================================================================== --- head/devel/nspr/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nspr -DISTVERSION= 4.10.1 +DISTVERSION= 4.10.2 CATEGORIES= devel MASTER_SITES= MOZILLA/${PORTNAME}/releases/v${PORTVERSION}/src Modified: head/devel/nspr/distinfo ============================================================================== --- head/devel/nspr/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/devel/nspr/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nspr-4.10.1.tar.gz) = 0c2f8dc265f1e9b2600fd519430a1f960799888857bbb1538343a1b16ba41b20 -SIZE (nspr-4.10.1.tar.gz) = 1102858 +SHA256 (nspr-4.10.2.tar.gz) = 4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400 +SIZE (nspr-4.10.2.tar.gz) = 1103130 Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 24.0 -CATEGORIES= mail +DISTVERSION= 24.2.0 +CATEGORIES= mail news net-im ipv6 DISTNAME= ${PORTNAME}-${DISTVERSION} MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US @@ -11,10 +11,9 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above USE_BZIP2= yes -REPLACE_GRE= yes +WANT_GTK218= yes USE_LINUX_APPS= dbusglib dbuslibs alsalib alsa-plugins-oss -NO_STAGE= yes .include "${.CURDIR}/../../www/linux-seamonkey/Makefile.common" .include Modified: head/mail/linux-thunderbird/distinfo ============================================================================== --- head/mail/linux-thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,6 @@ -SHA256 (thunderbird-24.0.tar.bz2) = f642a6978cf0c5d1c54b97f86c11e79c8ae2d0a3ee38cff296320a9a5c8911a0 -SIZE (thunderbird-24.0.tar.bz2) = 28964786 +SHA256 (thunderbird-24.2.0.tar.bz2) = d3b1a1049cf39cfecdfa26ad043520b6cb180d517995c7261aebc50786d61335 +SIZE (thunderbird-24.2.0.tar.bz2) = 28959142 +SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 +SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 +SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b +SIZE (gtk2-2.18.3-19.fc12.i686.rpm) = 3198708 Modified: head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in ============================================================================== --- head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/files/linux-thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird (Linux) GenericName=Mail Client (Linux) Comment=Mail client and News Reader -Exec=linux-thunderbird %U +Exec=linux-thunderbird %u Icon=%%PREFIX%%/lib/%%APP_NAME%%/chrome/icons/default/default.xpm StartupNotify=false Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/mail/linux-thunderbird/pkg-plist ============================================================================== --- head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/linux-thunderbird/pkg-plist Sat Dec 14 13:42:06 2013 (r336446) @@ -34,6 +34,10 @@ lib/%%APP_NAME%%/isp/movemail.rdf lib/%%APP_NAME%%/isp/rss.rdf lib/%%APP_NAME%%/libfreebl3.chk lib/%%APP_NAME%%/libfreebl3.so +%%GTK218%%lib/%%APP_NAME%%/libgdk-x11-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgio-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libglib-2.0.so.0 +%%GTK218%%lib/%%APP_NAME%%/libgtk-x11-2.0.so.0 lib/%%APP_NAME%%/libldap60.so lib/%%APP_NAME%%/libldif60.so lib/%%APP_NAME%%/libmozalloc.so @@ -56,6 +60,7 @@ lib/%%APP_NAME%%/mozilla-xremote-client lib/%%APP_NAME%%/omni.ja lib/%%APP_NAME%%/platform.ini lib/%%APP_NAME%%/plugin-container +lib/%%APP_NAME%%/plugins lib/%%APP_NAME%%/precomplete lib/%%APP_NAME%%/removed-files lib/%%APP_NAME%%/run-mozilla.sh @@ -71,9 +76,7 @@ lib/%%APP_NAME%%/thunderbird-bin lib/%%APP_NAME%%/update-settings.ini lib/%%APP_NAME%%/updater lib/%%APP_NAME%%/updater.ini -@exec /bin/cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/plugins/ 2>/dev/null || true @exec /bin/cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/extensions/ 2>/dev/null || true -@unexec /usr/bin/find %D/lib/%%APP_NAME%%/plugins/ -depth 1 -type l -delete 2>/dev/null || true @unexec /usr/bin/find %D/lib/%%APP_NAME%%/extensions/ -depth 1 -type l -delete 2>/dev/null || true @dirrm lib/%%APP_NAME%%/chrome/icons/default @dirrm lib/%%APP_NAME%%/chrome/icons @@ -87,6 +90,5 @@ lib/%%APP_NAME%%/updater.ini @dirrm lib/%%APP_NAME%%/extensions @dirrm lib/%%APP_NAME%%/icons @dirrm lib/%%APP_NAME%%/isp -@dirrm lib/%%APP_NAME%%/plugins @dirrm lib/%%APP_NAME%%/searchplugins @dirrm lib/%%APP_NAME%% Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird-i18n/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 24.1.0 -CATEGORIES= mail +PORTVERSION= 24.2.0 +CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${THUNDERBIRD_I18N_:S/$/.xpi/} @@ -19,6 +19,7 @@ PLISTD?= ${WRKDIR}/plist_dirs PLISTF?= ${WRKDIR}/plist_files NO_BUILD= yes +NO_ARCH= yes USE_THUNDERBIRD= yes USE_XPI= thunderbird linux-thunderbird USE_SUBMAKE= yes @@ -76,7 +77,7 @@ post-patch: ${XARGS} -0L1 ${REINPLACE_CMD} -i '' '/=4.10:${PORTSDIR}/de LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l EM_VERSION= 1.6 -L_VERSION= 2.6.2 +L_VERSION= 2.6.4 SSP_UNSAFE= yes USE_AUTOTOOLS= autoconf213:env @@ -73,11 +72,6 @@ MOZSRC:= ${WRKSRC}/mozilla XPI_LIBDIR= ${PREFIX}/lib/xpi -# libprldap60.so: Undefined symbol "PR_GetCurrentThread" -.if ${ARCH} == i386 -USE_GCC?= yes -.endif - .if ${PORT_OPTIONS:MENIGMAIL} MASTER_SITES+= https://www.enigmail.net/download/source/:enigmail DISTFILES+= ${EM_DISTFILE}:enigmail Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-24.1.0.source.tar.bz2) = 275a482f6ffd24cbea347caaaa593d0e9f4d82ae5b2c6fe7345340b0efc1cf4d -SIZE (thunderbird-24.1.0.source.tar.bz2) = 140336934 +SHA256 (thunderbird-24.2.0.source.tar.bz2) = 66474132bd6ebbb8a913c3f4acd4ecc9bec011e4c7ee49475f29558801a905cf +SIZE (thunderbird-24.2.0.source.tar.bz2) = 140363284 SHA256 (enigmail-1.6.tar.gz) = 10d5eb7ba364b9b6e6275aae8bba1d0e4321ed7d55a715337d566ccf2a56ea4d SIZE (enigmail-1.6.tar.gz) = 1231111 Added: head/mail/thunderbird/files/patch-bug885538 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug885538 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,31 @@ + +# HG changeset patch +# User aceman +# Date 1374257425 14400 +# Node ID 89bbcd5a2293ae0338d1248b71b49338bece2bdc +# Parent baddbdd06d16665bae94e98d1570602cbc6c88ad +Bug 885538 - Fix clang compile failure in nsMsgSearchTerm.cpp by using an empty string instead of null pointer. r=rkent, a=Standard8 + +diff --git a/mailnews/base/search/src/nsMsgSearchTerm.cpp b/mailnews/base/search/src/nsMsgSearchTerm.cpp +--- mailnews/base/search/src/nsMsgSearchTerm.cpp ++++ mailnews/base/search/src/nsMsgSearchTerm.cpp +@@ -192,17 +192,17 @@ nsresult NS_MsgGetStringForAttribute(int + if (attrib == SearchAttribEntryTable[idxAttrib].attrib) + { + found = true; + *string = SearchAttribEntryTable[idxAttrib].attribName; + break; + } + } + if (!found) +- *string = '\0'; // don't leave the string uninitialized ++ *string = ""; // don't leave the string uninitialized + + // we no longer return invalid attribute. If we cannot find the string in the table, + // then it is an arbitrary header. Return success regardless if found or not + return NS_OK; + } + + typedef struct + { + Added: head/mail/thunderbird/files/patch-bug945046 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug945046 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,130 @@ +diff --git config/system-headers config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/config/system-headers ++++ mozilla/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git js/src/config/system-headers js/src/config/system-headers +index 432cba6..18a9627 100644 +--- mozilla/js/src/config/system-headers ++++ mozilla/js/src/config/system-headers +@@ -1157,3 +1157,4 @@ unicode/uenum.h + unicode/unum.h + unicode/ustring.h + #endif ++libutil.h +diff --git toolkit/library/Makefile.in toolkit/library/Makefile.in +index 9975621..b4b037d 100644 +--- mozilla/toolkit/library/Makefile.in ++++ mozilla/toolkit/library/Makefile.in +@@ -289,6 +289,10 @@ OS_LIBS += $(call EXPAND_LIBNAME,kvm) + EXTRA_DSO_LDOPTS += -Wl,--warn-unresolved-symbols + endif + ++ifeq ($(OS_ARCH),FreeBSD) ++OS_LIBS += $(call EXPAND_LIBNAME,util) ++endif ++ + ifeq ($(OS_ARCH),WINNT) + OS_LIBS += $(call EXPAND_LIBNAME,shell32 ole32 version winspool comdlg32 imm32 msimg32 shlwapi psapi ws2_32 dbghelp rasapi32 rasdlg iphlpapi uxtheme setupapi secur32 sensorsapi portabledeviceguids windowscodecs wininet wbemuuid) + ifdef ACCESSIBILITY +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index b8147c8..0ffb34e 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -153,6 +153,43 @@ static nsresult GetResidentFast(int64_t + return GetResident(n); + } + ++#ifdef __FreeBSD__ ++#include ++ ++static nsresult ++GetKinfoVmentrySelf(int64_t* prss) ++{ ++ int cnt; ++ struct kinfo_vmentry *vmmap, *kve; ++ if ((vmmap = kinfo_getvmmap(getpid(), &cnt)) == NULL) ++ return NS_ERROR_FAILURE; ++ ++ if (prss) ++ *prss = 0; ++ ++ for (int i = 0; i < cnt; i++) { ++ kve = &vmmap[i]; ++ if (prss) ++ *prss += kve->kve_private_resident; ++ } ++ ++ free(vmmap); ++ return NS_OK; ++} ++ ++#define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ int64_t priv; ++ nsresult rv = GetKinfoVmentrySelf(&priv); ++ if (NS_SUCCEEDED(rv)) ++ *aN = priv * getpagesize(); ++ ++ return NS_OK; ++} ++#endif // FreeBSD ++ + #elif defined(SOLARIS) + + #include +@@ -327,6 +364,24 @@ static nsresult GetResidentFast(int64_t + } + + #define HAVE_PRIVATE_REPORTER ++static nsresult ++GetPrivate(int64_t* aN) ++{ ++ PROCESS_MEMORY_COUNTERS_EX pmcex; ++ pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); ++ ++ if (!GetProcessMemoryInfo( ++ GetCurrentProcess(), ++ (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { ++ return NS_ERROR_FAILURE; ++ } ++ ++ *aN = pmcex.PrivateUsage; ++ return NS_OK; ++} ++#endif // XP_ ++ ++#ifdef HAVE_PRIVATE_REPORTER + class PrivateReporter MOZ_FINAL : public MemoryReporterBase + { + public: +@@ -339,21 +394,10 @@ public: + + NS_IMETHOD GetAmount(int64_t *aAmount) + { +- PROCESS_MEMORY_COUNTERS_EX pmcex; +- pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX); +- +- if (!GetProcessMemoryInfo( +- GetCurrentProcess(), +- (PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex))) { +- return NS_ERROR_FAILURE; +- } +- +- *aAmount = pmcex.PrivateUsage; +- return NS_OK; ++ return GetPrivate(aAmount); + } + }; +- +-#endif // XP_ ++#endif + + #ifdef HAVE_VSIZE_AND_RESIDENT_REPORTERS + class VsizeReporter MOZ_FINAL : public MemoryReporterBase Added: head/mail/thunderbird/files/patch-bug946560 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug946560 Sat Dec 14 13:42:06 2013 (r336446) @@ -0,0 +1,44 @@ +diff --git xpcom/base/nsMemoryInfoDumper.cpp xpcom/base/nsMemoryInfoDumper.cpp +index 0b2f78c..d857374 100644 +--- mozilla/xpcom/base/nsMemoryInfoDumper.cpp ++++ mozilla/xpcom/base/nsMemoryInfoDumper.cpp +@@ -30,7 +30,7 @@ + #include + #endif + +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + #include + #include + #include +@@ -109,7 +109,7 @@ private: + + } // anonymous namespace + +-#ifdef XP_LINUX // { ++#if defined(XP_LINUX) || defined(__FreeBSD__) // { + namespace { + + /* +@@ -548,7 +548,7 @@ nsMemoryInfoDumper::~nsMemoryInfoDumper( + /* static */ void + nsMemoryInfoDumper::Initialize() + { +-#ifdef XP_LINUX ++#if defined(XP_LINUX) || defined(__FreeBSD__) + SignalPipeWatcher::Create(); + FifoWatcher::MaybeCreate(); + #endif +diff --git xpcom/base/nsMemoryReporterManager.cpp xpcom/base/nsMemoryReporterManager.cpp +index 8c65665..8f6d0e9 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -824,7 +824,7 @@ nsMemoryReporterManager::Init() + RegisterReporter(new mozilla::dmd::DMDReporter); + #endif + +-#if defined(XP_LINUX) ++#if defined(XP_LINUX) || defined(__FreeBSD__) + nsMemoryInfoDumper::Initialize(); + #endif + Modified: head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in ============================================================================== --- head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libprldap-Makefile.in Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ CUSTOM_LIBS=1 endif -+ifeq ($(OS_ARCH), FreeBSD) ++ifneq (,$(filter DragonFly FreeBSD,$(OS_ARCH))) +EXTRA_LIBS = -L$(dist_libdir) -l$(LBER_LIBNAME) -lpthread +EXTRA_LIBS+= $(filter -L% -l%,${NSPRLINK}) +CUSTOM_LIBS=1 Modified: head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp ============================================================================== --- head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Sat Dec 14 13:42:06 2013 (r336446) @@ -4,7 +4,7 @@ TriggerQuirks(); #endif -+ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/thunderbird", 0); ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); nsresult rv = mozilla::BinaryPath::Get(argv[0], exePath); if (NS_FAILED(rv)) { Output("Couldn't calculate the application directory.\n"); Modified: head/mail/thunderbird/files/thunderbird.desktop.in ============================================================================== --- head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:38:47 2013 (r336445) +++ head/mail/thunderbird/files/thunderbird.desktop.in Sat Dec 14 13:42:06 2013 (r336446) @@ -3,9 +3,9 @@ Encoding=UTF-8 Name=Thunderbird GenericName=Mail Client Comment=Mail client and News Reader -Exec=@MOZILLA@ %U +Exec=@MOZILLA@ %u Icon=@PORTNAME_ICON@ -StartupNotify=false +StartupNotify=true Terminal=false Type=Application -Categories=Application;Network; +Categories=Network;Email;News;InstantMessaging; Modified: head/security/ca_root_nss/Makefile ============================================================================== --- head/security/ca_root_nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,6 @@ PORTNAME= ca_root_nss PORTVERSION= ${VERSION_NSS} -PORTREVISION= 1 CATEGORIES= security MASTER_SITES= MOZILLA/security/nss/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src DISTNAME= nss-${VERSION_NSS}${NSS_SUFFIX} @@ -25,7 +24,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.15.2 +VERSION_NSS= 3.15.3.1 #NSS_SUFFIX= .with.ckbi.1.93 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: head/security/ca_root_nss/distinfo ============================================================================== --- head/security/ca_root_nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/ca_root_nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/Makefile Sat Dec 14 13:42:06 2013 (r336446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.15.2 +PORTVERSION= 3.15.3.1 #DISTVERSIONSUFFIX= .with.ckbi.1.93 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:U:C/[-.]/_/g}_RTM/src @@ -11,7 +11,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Libraries to support development of security-enabled applications BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \ - nspr>=4.10:${PORTSDIR}/devel/nspr \ + nspr>=4.10.2:${PORTSDIR}/devel/nspr \ sqlite3>=3.7.15:${PORTSDIR}/databases/sqlite3 LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \ sqlite3.8:${PORTSDIR}/databases/sqlite3 Modified: head/security/nss/distinfo ============================================================================== --- head/security/nss/distinfo Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/nss/distinfo Sat Dec 14 13:42:06 2013 (r336446) @@ -1,2 +1,2 @@ -SHA256 (nss-3.15.2.tar.gz) = 7b2c80d18c49581edbdb509cbf7afd61d8c53658f2a38ff20e224c1909faeddc -SIZE (nss-3.15.2.tar.gz) = 6288669 +SHA256 (nss-3.15.3.1.tar.gz) = 607a913882540df81f74152e8aa492e0dd09c5d3f2c7321f18c69ee501fc6ba5 +SIZE (nss-3.15.3.1.tar.gz) = 6289657 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Dec 14 13:38:47 2013 (r336445) +++ head/security/vuxml/vuln.xml Sat Dec 14 13:42:06 2013 (r336446) @@ -51,6 +51,101 @@ Note: Please add new entries to the beg --> + + mozilla -- multiple vulnerabilities + + + firefox + 25.0,126.0,1 + 24.2.0,1 + + + linux-firefox + 26.0,1 + + + linux-seamonkey + 2.23 + + + linux-thunderbird + 24.2.0 + + + seamonkey + 2.23 + + + thunderbird + 24.2.0 + + + + +

The Mozilla Project reports:

+
*** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:28:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E38348E; Sat, 14 Dec 2013 14:28:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E448B1615; Sat, 14 Dec 2013 14:28:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEES3NX084467; Sat, 14 Dec 2013 14:28:03 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEES3l4084466; Sat, 14 Dec 2013 14:28:03 GMT (envelope-from antoine) Date: Sat, 14 Dec 2013 14:28:03 GMT Message-Id: <201312141428.rBEES3l4084466@freefall.freebsd.org> To: tkato432@yahoo.com, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/181060: x11-toolkits/blt: Fix build with Tcl/Tk 8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:28:04 -0000 Synopsis: x11-toolkits/blt: Fix build with Tcl/Tk 8.6 State-Changed-From-To: open->closed State-Changed-By: antoine State-Changed-When: Sat Dec 14 14:26:59 UTC 2013 State-Changed-Why: Thanks for the submission, it looks like the problem has been fixed already. http://www.freebsd.org/cgi/query-pr.cgi?pr=181060 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:44:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF68D7EB; Sat, 14 Dec 2013 14:44:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81DFD16F5; Sat, 14 Dec 2013 14:44:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEEiZDp088196; Sat, 14 Dec 2013 14:44:35 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEEiXL8088195; Sat, 14 Dec 2013 14:44:33 GMT (envelope-from flo) Date: Sat, 14 Dec 2013 14:44:33 GMT Message-Id: <201312141444.rBEEiXL8088195@freefall.freebsd.org> To: aragon@phat.za.net, jbeich@tormail.org, flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/184006: [patch] audio/alsa-lib: convert FLOAT samples automatically X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:44:35 -0000 Synopsis: [patch] audio/alsa-lib: convert FLOAT samples automatically State-Changed-From-To: feedback->closed State-Changed-By: flo State-Changed-When: Sat Dec 14 14:44:33 UTC 2013 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184006 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:44:37 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E3857EC; Sat, 14 Dec 2013 14:44:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32D6C16F6; Sat, 14 Dec 2013 14:44:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEEib1x088260; Sat, 14 Dec 2013 14:44:37 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEEiaxn088259; Sat, 14 Dec 2013 14:44:36 GMT (envelope-from flo) Date: Sat, 14 Dec 2013 14:44:36 GMT Message-Id: <201312141444.rBEEiaxn088259@freefall.freebsd.org> To: aragon@phat.za.net, jbeich@tormail.org, flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/183861: [patch] audio/alsa-plugins: always use ARIFF_OSS by default, again X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:44:37 -0000 Synopsis: [patch] audio/alsa-plugins: always use ARIFF_OSS by default, again State-Changed-From-To: feedback->closed State-Changed-By: flo State-Changed-When: Sat Dec 14 14:44:36 UTC 2013 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=183861 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:50:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7ECEADF for ; Sat, 14 Dec 2013 14:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8A201727 for ; Sat, 14 Dec 2013 14:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEEo2Jr088607 for ; Sat, 14 Dec 2013 14:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEEo2TV088606; Sat, 14 Dec 2013 14:50:02 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 14:50:02 GMT Message-Id: <201312141450.rBEEo2TV088606@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/183861: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:50:03 -0000 The following reply was made to PR ports/183861; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/183861: commit references a PR Date: Sat, 14 Dec 2013 14:41:25 +0000 (UTC) Author: flo Date: Sat Dec 14 14:41:17 2013 New Revision: 336451 URL: http://svnweb.freebsd.org/changeset/ports/336451 Log: - ALSA now supports playing HTML5 audio with 32-bit sample format [1] after being converted from float as passed by firefox/libcubeb [2] - Restore behavior from r296140 while adding alignment options in case of issues. This should make things slightly less broken and add more sample formats. [1] - Some apps (e.g. linux-firefox with ports/169896) don't check with ALSA which sample formats are supported and just feed whatever they like, assuming the underlying device supports it. While here also fix mixer device for OSS plugin. It should be /dev/dsp according to 4Front OSS wiki. The only works with ARIFF_OSS enabled but the volume is reset on close(). audio/oss doesn't work either way: the new (OSSv4) way to control mixer is via SNDCTL_MIX_* ioctls. [2] PR: ports/183861 [1] PR: ports/184006 [2] Submitted by: Jan Beich Approved by: maintainer timeout Modified: head/audio/alsa-lib/Makefile head/audio/alsa-lib/files/asound.conf.sample (contents, props changed) head/audio/alsa-plugins/Makefile head/audio/alsa-plugins/files/alsa-plugins.patch (contents, props changed) head/audio/alsa-plugins/files/patch-oss-ctl_oss.c (contents, props changed) Modified: head/audio/alsa-lib/Makefile ============================================================================== --- head/audio/alsa-lib/Makefile Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-lib/Makefile Sat Dec 14 14:41:17 2013 (r336451) @@ -3,6 +3,7 @@ PORTNAME= alsa-lib PORTVERSION= 1.0.27.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ALSA/lib \ GENTOO/distfiles Modified: head/audio/alsa-lib/files/asound.conf.sample ============================================================================== --- head/audio/alsa-lib/files/asound.conf.sample Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-lib/files/asound.conf.sample Sat Dec 14 14:41:17 2013 (r336451) @@ -1,42 +1,65 @@ # # FreeBSD/OSS # +pcm_slave.oss { + pcm.type oss +} + pcm.!default { - type oss - device /dev/dsp + type plug + slave oss } ctl.!default { type oss - device /dev/mixer } # # Remap all possible surround stuffs. # +pcm.!front { + type plug + slave oss +} + +pcm.!rear { + type plug + slave oss +} + +pcm.!center_lfe { + type plug + slave oss +} + +pcm.!side { + type plug + slave oss +} + pcm.!surround40 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround41 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround50 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround51 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround71 { - type oss - device /dev/dsp + type plug + slave oss } # Modified: head/audio/alsa-plugins/Makefile ============================================================================== --- head/audio/alsa-plugins/Makefile Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/Makefile Sat Dec 14 14:41:17 2013 (r336451) @@ -3,7 +3,7 @@ PORTNAME= alsa-plugins PORTVERSION= 1.0.27 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ALSA/plugins \ GENTOO/distfiles @@ -17,15 +17,36 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USES= pkgconfig LDFLAGS+= -L${LOCALBASE}/lib +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch -OPTIONS_DEFINE= ARIFF_OSS JACK FFMPEG PULSEAUDIO SAMPLERATE SPEEX +OPTIONS_DEFAULT=BUFSZ_P2 IO_PTR +OPTIONS_DEFINE= JACK FFMPEG PULSEAUDIO SAMPLERATE SPEEX OPTIONS_SUB= ${OPTIONS_DEFINE} -ARIFF_OSS_DESC= FreeBSD-specific OSS plugin + +OPTIONS_GROUP= OSS +OPTIONS_GROUP_OSS=IO_PTR BLKCNT_P2 BUFSZ_P2 VERBOSE + +IO_PTR_DESC= Precise playback/recording pointer +BLKCNT_P2_DESC= Restrict number of fragments to ^2 aligned +BUFSZ_P2_DESC= Restrict buffer size to ^2 aligned (breaks aplay) +VERBOSE_DESC= Print debugging messages .include -.if ${PORT_OPTIONS:MARIFF_OSS} -EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch +.if ${PORT_OPTIONS:MIO_PTR} +CFLAGS+= -DFREEBSD_OSS_USE_IO_PTR +.endif + +.if ${PORT_OPTIONS:MBLKCNT_P2} +CFLAGS+= -DFREEBSD_OSS_BLKCNT_P2 +.endif + +.if ${PORT_OPTIONS:MBUFSZ_P2} +CFLAGS+= -DFREEBSD_OSS_BUFSZ_P2 +.endif + +.if ${PORT_OPTIONS:MVERBOSE} +CFLAGS+= -DFREEBSD_OSS_DEBUG_VERBOSE .endif .if ${PORT_OPTIONS:MJACK} Modified: head/audio/alsa-plugins/files/alsa-plugins.patch ============================================================================== --- head/audio/alsa-plugins/files/alsa-plugins.patch Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/files/alsa-plugins.patch Sat Dec 14 14:41:17 2013 (r336451) @@ -42,7 +42,7 @@ oss->ext.private_data = oss; --- oss/pcm_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 +++ oss/pcm_oss.c 2009-09-28 14:54:12.000000000 +0800 -@@ -22,17 +22,55 @@ +@@ -22,17 +22,48 @@ #include #include #include @@ -54,18 +54,11 @@ +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) + +#ifdef __FreeBSD__ -+/* #define FREEBSD_OSS_USE_IO_PTR 1 */ -+/* #define FREEBSD_OSS_BLKCNT_P2 1 */ -+/* #define FREEBSD_OSS_DEBUG_VERBOSE 1 */ -+#undef FREEBSD_OSS_USE_IO_PTR /* _IPTR is buggy ... Grr... */ -+#undef FREEBSD_OSS_BLKCNT_P2 -+#undef FREEBSD_OSS_DEBUG_VERBOSE -+ +#define FREEBSD_OSS_RATE_MIN 1 +#define FREEBSD_OSS_RATE_MAX 384000 + +#define FREEBSD_OSS_CHANNELS_MIN 1 -+#if __FreeBSD_version >= 800096 ++#ifndef __DragonFly__ +#define FREEBSD_OSS_CHANNELS_MAX 8 +#else +#define FREEBSD_OSS_CHANNELS_MAX 2 @@ -73,7 +66,7 @@ + +#define FREEBSD_OSS_BUFSZ_MAX 131072 +#define FREEBSD_OSS_BLKCNT_MIN 2 -+#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNEL_MAX * 4) */ ++#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNELS_MAX * 4) */ + +#define FREEBSD_OSS_BUFSZ_MIN (FREEBSD_OSS_BLKCNT_MIN * FREEBSD_OSS_BLKSZ_MIN) +#define FREEBSD_OSS_BLKCNT_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BUFSZ_MIN) @@ -461,7 +454,7 @@ if ((flags = fcntl(oss->fd, F_GETFL)) < 0) { err = -errno; -@@ -229,10 +530,128 @@ +@@ -229,10 +530,146 @@ return 0; } @@ -478,6 +471,9 @@ +#ifdef FREEBSD_OSS_BLKCNT_P2 + unsigned int period_list[30]; +#endif ++#ifdef FREEBSD_OSS_BUFSZ_P2 ++ unsigned int bufsz_list[30]; ++#endif + unsigned int nformats; + unsigned int format[ARRAY_SIZE(oss_formats_tab)]; +#if 0 @@ -580,6 +576,21 @@ + if (err < 0) + return err; + ++#ifdef FREEBSD_OSS_BUFSZ_P2 ++ tmp = 0; ++ for (i = 1; i < 31 && tmp < ARRAY_SIZE(bufsz_list); i++) { ++ if ((1 << i) > FREEBSD_OSS_BUFSZ_MAX) ++ break; ++ if ((1 << i) < FREEBSD_OSS_BUFSZ_MIN) ++ continue; ++ bufsz_list[tmp++] = 1 << i; ++ } ++ ++ if (tmp > 0) ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_BUFFER_BYTES, tmp, bufsz_list); ++ else ++#endif + /* buffer size , not strictly ^2 */ + err = snd_pcm_ioplug_set_param_minmax(io, + SND_PCM_IOPLUG_HW_BUFFER_BYTES, FREEBSD_OSS_BUFSZ_MIN, Modified: head/audio/alsa-plugins/files/patch-oss-ctl_oss.c ============================================================================== --- head/audio/alsa-plugins/files/patch-oss-ctl_oss.c Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/files/patch-oss-ctl_oss.c Sat Dec 14 14:41:17 2013 (r336451) @@ -12,3 +12,12 @@ typedef struct snd_ctl_oss { snd_ctl_ext_t ext; +@@ -52,7 +56,7 @@ static const char *const vol_devices[SOU + [SOUND_MIXER_CD] = "CD Playback Volume", + [SOUND_MIXER_IMIX] = "Monitor Mix Playback Volume", + [SOUND_MIXER_ALTPCM] = "Headphone Playback Volume", +- [SOUND_MIXER_RECLEV] = "Capture Volume", ++ [SOUND_MIXER_RECLEV] = "Master Capture Volume", + [SOUND_MIXER_IGAIN] = "Capture Volume", + [SOUND_MIXER_OGAIN] = "Playback Volume", + [SOUND_MIXER_LINE1] = "Aux Playback Volume", _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7ED1ADD for ; Sat, 14 Dec 2013 14:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8955E1725 for ; Sat, 14 Dec 2013 14:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEEo0ik088536 for ; Sat, 14 Dec 2013 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEEo0n1088534; Sat, 14 Dec 2013 14:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 14:50:00 GMT Resent-Message-Id: <201312141450.rBEEo0n1088534@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oleg Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E70A89E for ; Sat, 14 Dec 2013 14:45:12 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B68A16FE for ; Sat, 14 Dec 2013 14:45:12 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBEEjBfP066102 for ; Sat, 14 Dec 2013 14:45:11 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBEEjAUo065698; Sat, 14 Dec 2013 14:45:10 GMT (envelope-from nobody) Message-Id: <201312141445.rBEEjAUo065698@oldred.freebsd.org> Date: Sat, 14 Dec 2013 14:45:10 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184765: sysutils/cbsd to 10.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:50:00 -0000 >Number: 184765 >Category: ports >Synopsis: sysutils/cbsd to 10.0.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 14:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: FreeBSD 10.0-BETA4 >Organization: >Environment: >Description: update to 10.0.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN cbsd.bak/Makefile cbsd/Makefile --- cbsd.bak/Makefile 2013-12-01 07:31:12.000000000 +0400 +++ cbsd/Makefile 2013-12-14 15:08:30.000000000 +0400 @@ -1,7 +1,7 @@ # $FreeBSD: head/sysutils/cbsd/Makefile 333368 2013-11-10 09:57:29Z vg $ PORTNAME= cbsd -PORTVERSION= 9.2.5 +PORTVERSION= 10.0.0 CATEGORIES= sysutils MASTER_SITES= http://www.bsdstore.ru/downloads/ \ GH @@ -19,7 +19,7 @@ USE_GITHUB= yes GH_ACCOUNT= olevole GH_PROJECT= cbsd -GH_COMMIT= f39bd8f +GH_COMMIT= 1d65639 SUB_FILES= pkg-message diff -ruN cbsd.bak/distinfo cbsd/distinfo --- cbsd.bak/distinfo 2013-12-01 07:31:12.000000000 +0400 +++ cbsd/distinfo 2013-12-14 15:08:04.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (cbsd-9.2.5.tar.gz) = c647a138f067645e6c267e8ebbaaccac7a7017c96347aea8ffabaf5caca18ae7 -SIZE (cbsd-9.2.5.tar.gz) = 1725182 +SHA256 (cbsd-10.0.0.tar.gz) = ef527e2925a0be7fc59f43230caa9c9faf0e73043cec812d8b9bc966a2e1844d +SIZE (cbsd-10.0.0.tar.gz) = 1747707 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 14:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD327ADE for ; Sat, 14 Dec 2013 14:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8DF2E1726 for ; Sat, 14 Dec 2013 14:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEEo1kg088599 for ; Sat, 14 Dec 2013 14:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEEo1Q2088598; Sat, 14 Dec 2013 14:50:01 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 14:50:01 GMT Message-Id: <201312141450.rBEEo1Q2088598@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184006: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 14:50:01 -0000 The following reply was made to PR ports/184006; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184006: commit references a PR Date: Sat, 14 Dec 2013 14:41:25 +0000 (UTC) Author: flo Date: Sat Dec 14 14:41:17 2013 New Revision: 336451 URL: http://svnweb.freebsd.org/changeset/ports/336451 Log: - ALSA now supports playing HTML5 audio with 32-bit sample format [1] after being converted from float as passed by firefox/libcubeb [2] - Restore behavior from r296140 while adding alignment options in case of issues. This should make things slightly less broken and add more sample formats. [1] - Some apps (e.g. linux-firefox with ports/169896) don't check with ALSA which sample formats are supported and just feed whatever they like, assuming the underlying device supports it. While here also fix mixer device for OSS plugin. It should be /dev/dsp according to 4Front OSS wiki. The only works with ARIFF_OSS enabled but the volume is reset on close(). audio/oss doesn't work either way: the new (OSSv4) way to control mixer is via SNDCTL_MIX_* ioctls. [2] PR: ports/183861 [1] PR: ports/184006 [2] Submitted by: Jan Beich Approved by: maintainer timeout Modified: head/audio/alsa-lib/Makefile head/audio/alsa-lib/files/asound.conf.sample (contents, props changed) head/audio/alsa-plugins/Makefile head/audio/alsa-plugins/files/alsa-plugins.patch (contents, props changed) head/audio/alsa-plugins/files/patch-oss-ctl_oss.c (contents, props changed) Modified: head/audio/alsa-lib/Makefile ============================================================================== --- head/audio/alsa-lib/Makefile Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-lib/Makefile Sat Dec 14 14:41:17 2013 (r336451) @@ -3,6 +3,7 @@ PORTNAME= alsa-lib PORTVERSION= 1.0.27.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ALSA/lib \ GENTOO/distfiles Modified: head/audio/alsa-lib/files/asound.conf.sample ============================================================================== --- head/audio/alsa-lib/files/asound.conf.sample Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-lib/files/asound.conf.sample Sat Dec 14 14:41:17 2013 (r336451) @@ -1,42 +1,65 @@ # # FreeBSD/OSS # +pcm_slave.oss { + pcm.type oss +} + pcm.!default { - type oss - device /dev/dsp + type plug + slave oss } ctl.!default { type oss - device /dev/mixer } # # Remap all possible surround stuffs. # +pcm.!front { + type plug + slave oss +} + +pcm.!rear { + type plug + slave oss +} + +pcm.!center_lfe { + type plug + slave oss +} + +pcm.!side { + type plug + slave oss +} + pcm.!surround40 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround41 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround50 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround51 { - type oss - device /dev/dsp + type plug + slave oss } pcm.!surround71 { - type oss - device /dev/dsp + type plug + slave oss } # Modified: head/audio/alsa-plugins/Makefile ============================================================================== --- head/audio/alsa-plugins/Makefile Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/Makefile Sat Dec 14 14:41:17 2013 (r336451) @@ -3,7 +3,7 @@ PORTNAME= alsa-plugins PORTVERSION= 1.0.27 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ALSA/plugins \ GENTOO/distfiles @@ -17,15 +17,36 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USES= pkgconfig LDFLAGS+= -L${LOCALBASE}/lib +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch -OPTIONS_DEFINE= ARIFF_OSS JACK FFMPEG PULSEAUDIO SAMPLERATE SPEEX +OPTIONS_DEFAULT=BUFSZ_P2 IO_PTR +OPTIONS_DEFINE= JACK FFMPEG PULSEAUDIO SAMPLERATE SPEEX OPTIONS_SUB= ${OPTIONS_DEFINE} -ARIFF_OSS_DESC= FreeBSD-specific OSS plugin + +OPTIONS_GROUP= OSS +OPTIONS_GROUP_OSS=IO_PTR BLKCNT_P2 BUFSZ_P2 VERBOSE + +IO_PTR_DESC= Precise playback/recording pointer +BLKCNT_P2_DESC= Restrict number of fragments to ^2 aligned +BUFSZ_P2_DESC= Restrict buffer size to ^2 aligned (breaks aplay) +VERBOSE_DESC= Print debugging messages .include -.if ${PORT_OPTIONS:MARIFF_OSS} -EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch +.if ${PORT_OPTIONS:MIO_PTR} +CFLAGS+= -DFREEBSD_OSS_USE_IO_PTR +.endif + +.if ${PORT_OPTIONS:MBLKCNT_P2} +CFLAGS+= -DFREEBSD_OSS_BLKCNT_P2 +.endif + +.if ${PORT_OPTIONS:MBUFSZ_P2} +CFLAGS+= -DFREEBSD_OSS_BUFSZ_P2 +.endif + +.if ${PORT_OPTIONS:MVERBOSE} +CFLAGS+= -DFREEBSD_OSS_DEBUG_VERBOSE .endif .if ${PORT_OPTIONS:MJACK} Modified: head/audio/alsa-plugins/files/alsa-plugins.patch ============================================================================== --- head/audio/alsa-plugins/files/alsa-plugins.patch Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/files/alsa-plugins.patch Sat Dec 14 14:41:17 2013 (r336451) @@ -42,7 +42,7 @@ oss->ext.private_data = oss; --- oss/pcm_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 +++ oss/pcm_oss.c 2009-09-28 14:54:12.000000000 +0800 -@@ -22,17 +22,55 @@ +@@ -22,17 +22,48 @@ #include #include #include @@ -54,18 +54,11 @@ +#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) + +#ifdef __FreeBSD__ -+/* #define FREEBSD_OSS_USE_IO_PTR 1 */ -+/* #define FREEBSD_OSS_BLKCNT_P2 1 */ -+/* #define FREEBSD_OSS_DEBUG_VERBOSE 1 */ -+#undef FREEBSD_OSS_USE_IO_PTR /* _IPTR is buggy ... Grr... */ -+#undef FREEBSD_OSS_BLKCNT_P2 -+#undef FREEBSD_OSS_DEBUG_VERBOSE -+ +#define FREEBSD_OSS_RATE_MIN 1 +#define FREEBSD_OSS_RATE_MAX 384000 + +#define FREEBSD_OSS_CHANNELS_MIN 1 -+#if __FreeBSD_version >= 800096 ++#ifndef __DragonFly__ +#define FREEBSD_OSS_CHANNELS_MAX 8 +#else +#define FREEBSD_OSS_CHANNELS_MAX 2 @@ -73,7 +66,7 @@ + +#define FREEBSD_OSS_BUFSZ_MAX 131072 +#define FREEBSD_OSS_BLKCNT_MIN 2 -+#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNEL_MAX * 4) */ ++#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNELS_MAX * 4) */ + +#define FREEBSD_OSS_BUFSZ_MIN (FREEBSD_OSS_BLKCNT_MIN * FREEBSD_OSS_BLKSZ_MIN) +#define FREEBSD_OSS_BLKCNT_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BUFSZ_MIN) @@ -461,7 +454,7 @@ if ((flags = fcntl(oss->fd, F_GETFL)) < 0) { err = -errno; -@@ -229,10 +530,128 @@ +@@ -229,10 +530,146 @@ return 0; } @@ -478,6 +471,9 @@ +#ifdef FREEBSD_OSS_BLKCNT_P2 + unsigned int period_list[30]; +#endif ++#ifdef FREEBSD_OSS_BUFSZ_P2 ++ unsigned int bufsz_list[30]; ++#endif + unsigned int nformats; + unsigned int format[ARRAY_SIZE(oss_formats_tab)]; +#if 0 @@ -580,6 +576,21 @@ + if (err < 0) + return err; + ++#ifdef FREEBSD_OSS_BUFSZ_P2 ++ tmp = 0; ++ for (i = 1; i < 31 && tmp < ARRAY_SIZE(bufsz_list); i++) { ++ if ((1 << i) > FREEBSD_OSS_BUFSZ_MAX) ++ break; ++ if ((1 << i) < FREEBSD_OSS_BUFSZ_MIN) ++ continue; ++ bufsz_list[tmp++] = 1 << i; ++ } ++ ++ if (tmp > 0) ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_BUFFER_BYTES, tmp, bufsz_list); ++ else ++#endif + /* buffer size , not strictly ^2 */ + err = snd_pcm_ioplug_set_param_minmax(io, + SND_PCM_IOPLUG_HW_BUFFER_BYTES, FREEBSD_OSS_BUFSZ_MIN, Modified: head/audio/alsa-plugins/files/patch-oss-ctl_oss.c ============================================================================== --- head/audio/alsa-plugins/files/patch-oss-ctl_oss.c Sat Dec 14 14:35:11 2013 (r336450) +++ head/audio/alsa-plugins/files/patch-oss-ctl_oss.c Sat Dec 14 14:41:17 2013 (r336451) @@ -12,3 +12,12 @@ typedef struct snd_ctl_oss { snd_ctl_ext_t ext; +@@ -52,7 +56,7 @@ static const char *const vol_devices[SOU + [SOUND_MIXER_CD] = "CD Playback Volume", + [SOUND_MIXER_IMIX] = "Monitor Mix Playback Volume", + [SOUND_MIXER_ALTPCM] = "Headphone Playback Volume", +- [SOUND_MIXER_RECLEV] = "Capture Volume", ++ [SOUND_MIXER_RECLEV] = "Master Capture Volume", + [SOUND_MIXER_IGAIN] = "Capture Volume", + [SOUND_MIXER_OGAIN] = "Playback Volume", + [SOUND_MIXER_LINE1] = "Aux Playback Volume", _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:04:47 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F168CB1; Sat, 14 Dec 2013 17:04:47 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4439B1FCB; Sat, 14 Dec 2013 17:04:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEH4lj4017044; Sat, 14 Dec 2013 17:04:47 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEH4kDJ017043; Sat, 14 Dec 2013 17:04:46 GMT (envelope-from antoine) Date: Sat, 14 Dec 2013 17:04:46 GMT Message-Id: <201312141704.rBEH4kDJ017043@freefall.freebsd.org> To: loon@noncensored.com, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/184143: [patch] security/lynis incorrect permissions for data files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:04:47 -0000 Synopsis: [patch] security/lynis incorrect permissions for data files Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Dec 14 17:04:29 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=184143 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:18:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B39BECC; Sat, 14 Dec 2013 17:18:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D93F1070; Sat, 14 Dec 2013 17:18:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHI4sp020264; Sat, 14 Dec 2013 17:18:04 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHI4cQ020263; Sat, 14 Dec 2013 17:18:04 GMT (envelope-from antoine) Date: Sat, 14 Dec 2013 17:18:04 GMT Message-Id: <201312141718.rBEHI4cQ020263@freefall.freebsd.org> To: mwm@mired.org, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/182563: [patch] Update devel/pymacs to 0.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:18:05 -0000 Synopsis: [patch] Update devel/pymacs to 0.25 Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Dec 14 17:17:41 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182563 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:21:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25B767A; Sat, 14 Dec 2013 17:21:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDDD110DD; Sat, 14 Dec 2013 17:21:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHL4Px022191; Sat, 14 Dec 2013 17:21:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHL485022190; Sat, 14 Dec 2013 17:21:04 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 17:21:04 GMT Message-Id: <201312141721.rBEHL485022190@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184741: update www/py-djangotoolbox from 0.9.2 to 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:21:05 -0000 Synopsis: update www/py-djangotoolbox from 0.9.2 to 1.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 17:21:04 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184741 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:21:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6764F76; Sat, 14 Dec 2013 17:21:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39DF210DC; Sat, 14 Dec 2013 17:21:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHL2g2022110; Sat, 14 Dec 2013 17:21:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHL2sw022109; Sat, 14 Dec 2013 17:21:02 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 17:21:02 GMT Message-Id: <201312141721.rBEHL2sw022109@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184741: update www/py-djangotoolbox from 0.9.2 to 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:21:03 -0000 Synopsis: update www/py-djangotoolbox from 0.9.2 to 1.6.1 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sat Dec 14 17:21:02 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184741 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:21:36 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E49A117; Sat, 14 Dec 2013 17:21:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E57AA10E4; Sat, 14 Dec 2013 17:21:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHLZmH022244; Sat, 14 Dec 2013 17:21:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHLZRp022243; Sat, 14 Dec 2013 17:21:35 GMT (envelope-from linimon) Date: Sat, 14 Dec 2013 17:21:35 GMT Message-Id: <201312141721.rBEHLZRp022243@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/184743: Update audio/pianobar from 2013.05.19 to 2013.09.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:21:36 -0000 Old Synopsis: Update pianobar from 2013.05.19 to 2013.09.15 New Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Dec 14 17:21:10 UTC 2013 Responsible-Changed-Why: make this a ports PR and fix Synopsis. http://www.freebsd.org/cgi/query-pr.cgi?pr=184743 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:21:40 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 995C011C; Sat, 14 Dec 2013 17:21:40 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D74110E6; Sat, 14 Dec 2013 17:21:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHLeuc022341; Sat, 14 Dec 2013 17:21:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHLeQZ022340; Sat, 14 Dec 2013 17:21:40 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 17:21:40 GMT Message-Id: <201312141721.rBEHLeQZ022340@freefall.freebsd.org> To: john@ixsystems.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184743: Update audio/pianobar from 2013.05.19 to 2013.09.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:21:40 -0000 Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Dec 14 17:21:40 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184743 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:22:25 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D85C2AD; Sat, 14 Dec 2013 17:22:25 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5E4410FB; Sat, 14 Dec 2013 17:22:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHMOV3022566; Sat, 14 Dec 2013 17:22:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHMOZO022565; Sat, 14 Dec 2013 17:22:24 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 17:22:24 GMT Message-Id: <201312141722.rBEHMOZO022565@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184732: ports-mgmt/pkg: pkg audit -F dumps core X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:22:25 -0000 Synopsis: ports-mgmt/pkg: pkg audit -F dumps core Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 17:22:24 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184732 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:22:58 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4200B2F4; Sat, 14 Dec 2013 17:22:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 175DE1105; Sat, 14 Dec 2013 17:22:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHMvfg022710; Sat, 14 Dec 2013 17:22:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHMvtb022709; Sat, 14 Dec 2013 17:22:57 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 17:22:57 GMT Message-Id: <201312141722.rBEHMvtb022709@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184715: ports-mgmt/pkg: pkg audit -F segfault X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:22:58 -0000 Synopsis: ports-mgmt/pkg: pkg audit -F segfault Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 17:22:57 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184715 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 17:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B4D156E for ; Sat, 14 Dec 2013 17:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2728F1145 for ; Sat, 14 Dec 2013 17:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEHU10e023070 for ; Sat, 14 Dec 2013 17:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEHU0Cw023069; Sat, 14 Dec 2013 17:30:00 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 17:30:00 GMT Message-Id: <201312141730.rBEHU0Cw023069@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184743: Update audio/pianobar from 2013.05.19 to 2013.09.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 17:30:01 -0000 The following reply was made to PR ports/184743; it has been noted by GNATS. From: Edwin Groothuis To: john@pcbsd.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/184743: Update audio/pianobar from 2013.05.19 to 2013.09.15 Date: Sat, 14 Dec 2013 17:21:39 UT Maintainer of audio/pianobar, Please note that PR ports/184743 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184743 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 18:37:40 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA228554; Sat, 14 Dec 2013 18:37:40 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8A15151B; Sat, 14 Dec 2013 18:37:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEIbeFh040448; Sat, 14 Dec 2013 18:37:40 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEIbeX7040447; Sat, 14 Dec 2013 18:37:40 GMT (envelope-from danilo) Date: Sat, 14 Dec 2013 18:37:40 GMT Message-Id: <201312141837.rBEIbeX7040447@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/184763: Update of ports-mgmt/portsreinstall to version 3.0.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 18:37:41 -0000 Synopsis: Update of ports-mgmt/portsreinstall to version 3.0.5 Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Sat Dec 14 18:37:40 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184763 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 18:37:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E7DF585; Sat, 14 Dec 2013 18:37:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23A46151F; Sat, 14 Dec 2013 18:37:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEIbopv040536; Sat, 14 Dec 2013 18:37:50 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEIbosL040535; Sat, 14 Dec 2013 18:37:50 GMT (envelope-from danilo) Date: Sat, 14 Dec 2013 18:37:50 GMT Message-Id: <201312141837.rBEIbosL040535@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/184765: sysutils/cbsd to 10.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 18:37:51 -0000 Synopsis: sysutils/cbsd to 10.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Sat Dec 14 18:37:50 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184765 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2B268B7 for ; Sat, 14 Dec 2013 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ABB0C163D for ; Sat, 14 Dec 2013 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJ00aR044301 for ; Sat, 14 Dec 2013 19:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJ004S044300; Sat, 14 Dec 2013 19:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 19:00:00 GMT Resent-Message-Id: <201312141900.rBEJ004S044300@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Heino Tiedemann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7081E871 for ; Sat, 14 Dec 2013 18:53:13 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 50A5E1618 for ; Sat, 14 Dec 2013 18:53:13 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBEIrCBW082506 for ; Sat, 14 Dec 2013 18:53:12 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBEIrCVa082494; Sat, 14 Dec 2013 18:53:12 GMT (envelope-from nobody) Message-Id: <201312141853.rBEIrCVa082494@oldred.freebsd.org> Date: Sat, 14 Dec 2013 18:53:12 GMT From: Heino Tiedemann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184766: easyta (audio/easytag) doas not start X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:00:00 -0000 >Number: 184766 >Category: ports >Synopsis: easyta (audio/easytag) doas not start >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 19:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Heino Tiedemann >Release: 9.1-STABLE >Organization: >Environment: FreeBSD ahab.tihnet 9.1-STABLE FreeBSD 9.1-STABLE #0: Sun Feb 24 08:33:04 CET 2013 root@ahab.tihnet:/usr/obj/usr/src/sys/BEASTIE i386 a >Description: just start easytag (on i386): (easytag:18208): Gtk-WARNING **: Invalid input string (easytag:18208): Gtk-WARNING **: Invalid input string (easytag:18208): Gtk-WARNING **: Invalid input string (easytag:18208): Gtk-WARNING **: Invalid input string EasyTAG version 2.1.8: Abnormal exit (PID: 18208). Signal SIGSEGV (11) empfangen You have probably found a bug in EasyTAG. Please, file a bug report with a GDB backtrace ('gdb easytag core' then 'bt' and 'l') and information to reproduce it at: https://bugzilla.gnome.org/enter_bug.cgi?product=easytag Segmentation fault: 11 (Speicherabzug geschrieben) I cannot report any bug to https://bugzilla.gnome.org/enter_bug.cgi?product=easytag - I have no account there. So here is my 'gdb easytag easytag.core' then 'bt' and 'l': gdb easytag easytag.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"...(no debugging symbols found)... Core was generated by `easytag'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/local/lib/libgtk-x11-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgtk-x11-2.0.so.0 Reading symbols from /usr/local/lib/libgdk-x11-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgdk-x11-2.0.so.0 Reading symbols from /usr/local/lib/libpangocairo-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpangocairo-1.0.so.0 Reading symbols from /usr/local/lib/libXext.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXext.so.6 Reading symbols from /usr/local/lib/libXrender.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXrender.so.1 Reading symbols from /usr/local/lib/libXinerama.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXinerama.so.1 Reading symbols from /usr/local/lib/libXi.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXi.so.6 Reading symbols from /usr/local/lib/libXrandr.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXrandr.so.2 Reading symbols from /usr/local/lib/libXcursor.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXcursor.so.1 Reading symbols from /usr/local/lib/libXcomposite.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXcomposite.so.1 Reading symbols from /usr/local/lib/libXdamage.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXdamage.so.1 Reading symbols from /usr/local/lib/libXfixes.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXfixes.so.3 Reading symbols from /usr/local/lib/libX11.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libX11.so.6 Reading symbols from /usr/local/lib/libatk-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libatk-1.0.so.0 Reading symbols from /usr/local/lib/libcairo.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libcairo.so.2 Reading symbols from /usr/local/lib/libgdk_pixbuf-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgdk_pixbuf-2.0.so.0 Reading symbols from /usr/local/lib/libgio-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgio-2.0.so.0 Reading symbols from /usr/local/lib/libpangoft2-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpangoft2-1.0.so.0 Reading symbols from /usr/local/lib/libpango-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpango-1.0.so.0 Reading symbols from /usr/local/lib/libgobject-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgobject-2.0.so.0 Reading symbols from /usr/local/lib/libglib-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libglib-2.0.so.0 Reading symbols from /usr/local/lib/libintl.so.9...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libintl.so.9 Reading symbols from /usr/local/lib/libfontconfig.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libfontconfig.so.1 Reading symbols from /usr/local/lib/libfreetype.so.9...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libfreetype.so.9 Reading symbols from /usr/local/lib/libvorbisfile.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libvorbisfile.so.6 Reading symbols from /usr/local/lib/libvorbis.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libvorbis.so.4 Reading symbols from /usr/local/lib/libogg.so.8...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libogg.so.8 Reading symbols from /usr/local/lib/libspeex.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libspeex.so.1 Reading symbols from /usr/local/lib/libFLAC.so.11...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libFLAC.so.11 Reading symbols from /usr/local/lib/libid3tag.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libid3tag.so.0 Reading symbols from /lib/libz.so.6...(no debugging symbols found)...done. Loaded symbols for /lib/libz.so.6 Reading symbols from /usr/local/lib/libtag_c.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libtag_c.so.0 Reading symbols from /usr/local/lib/libtag.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libtag.so.1 Reading symbols from /usr/local/lib/libid3-3.8.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libid3-3.8.so.3 Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libstdc++.so.6 Reading symbols from /lib/libm.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libm.so.5 Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done. Loaded symbols for /lib/libgcc_s.so.1 Reading symbols from /lib/libthr.so.3...(no debugging symbols found)...done. Loaded symbols for /lib/libthr.so.3 Reading symbols from /lib/libc.so.7...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.7 Reading symbols from /usr/local/lib/libharfbuzz.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libharfbuzz.so.0 Reading symbols from /usr/local/lib/libgraphite2.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgraphite2.so.3 Reading symbols from /usr/local/lib/libpixman-1.so.30...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpixman-1.so.30 Reading symbols from /usr/local/lib/libxcb-shm.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libxcb-shm.so.0 Reading symbols from /usr/local/lib/libxcb-render.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libxcb-render.so.0 Reading symbols from /usr/local/lib/libxcb.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libxcb.so.2 Reading symbols from /usr/local/lib/libXau.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXau.so.6 Reading symbols from /usr/local/lib/libXdmcp.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXdmcp.so.6 Reading symbols from /usr/local/lib/libpthread-stubs.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpthread-stubs.so.0 Reading symbols from /usr/lib/librpcsvc.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/lib/librpcsvc.so.5 Reading symbols from /usr/local/lib/libpng15.so.15...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpng15.so.15 Reading symbols from /usr/local/lib/libgmodule-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgmodule-2.0.so.0 Reading symbols from /usr/local/lib/libgthread-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgthread-2.0.so.0 Reading symbols from /usr/local/lib/libffi.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libffi.so.6 Reading symbols from /usr/local/lib/libpcre.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpcre.so.3 Reading symbols from /usr/local/lib/libiconv.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libiconv.so.3 Reading symbols from /usr/local/lib/libexpat.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libexpat.so.6 Reading symbols from /usr/lib/libbz2.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libbz2.so.4 Reading symbols from /usr/lib/libsupc++.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libsupc++.so.1 Reading symbols from /usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so Reading symbols from /usr/local/lib/gtk-2.0/2.10.0/engines/libxfce.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gtk-2.0/2.10.0/engines/libxfce.so Reading symbols from /usr/local/lib/gio/modules/libgvfsdbus.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gio/modules/libgvfsdbus.so Reading symbols from /usr/local/lib/libgvfscommon.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgvfscommon.so.0 Reading symbols from /usr/local/lib/libdbus-1.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libdbus-1.so.3 Reading symbols from /lib/libutil.so.9...(no debugging symbols found)...done. Loaded symbols for /lib/libutil.so.9 Reading symbols from /usr/local/lib/pango/1.8.0/modules/pango-basic-fc.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/pango/1.8.0/modules/pango-basic-fc.so Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols found)...done. Loaded symbols for /libexec/ld-elf.so.1 #0 0x289d4777 in g_markup_escape_text () from /usr/local/lib/libglib-2.0.so.0 [New Thread 29404300 (LWP 100222/easytag)] (gdb) bt #0 0x289d4777 in g_markup_escape_text () from /usr/local/lib/libglib-2.0.so.0 #1 0x28377b3b in gtk_widget_freeze_child_notify () from /usr/local/lib/libgtk-x11-2.0.so.0 #2 0x28957405 in g_object_set_valist () from /usr/local/lib/libgobject-2.0.so.0 #3 0x28957709 in g_object_set () from /usr/local/lib/libgobject-2.0.so.0 #4 0x28369161 in gtk_widget_set_tooltip_text () from /usr/local/lib/libgtk-x11-2.0.so.0 #5 0x08086462 in ?? () #6 0x29732c10 in ?? () #7 0x2954a8b8 in ?? () #8 0x000000c8 in ?? () #9 0x00000044 in ?? () #10 0x00000000 in ?? () (gdb) l No symbol table is loaded. Use the "file" command. (gdb) >How-To-Repeat: start easytag on i386 / 9.1-STABLE >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:00:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A9498EB; Sat, 14 Dec 2013 19:00:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 312281641; Sat, 14 Dec 2013 19:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJ0B5r046028; Sat, 14 Dec 2013 19:00:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJ0AMw046027; Sat, 14 Dec 2013 19:00:10 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 19:00:10 GMT Message-Id: <201312141900.rBEJ0AMw046027@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, novel@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184766: easyta (audio/easytag) doas not start X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:00:11 -0000 Synopsis: easyta (audio/easytag) doas not start Responsible-Changed-From-To: freebsd-ports-bugs->novel Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 19:00:10 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184766 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B7F6428 for ; Sat, 14 Dec 2013 19:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57288180E for ; Sat, 14 Dec 2013 19:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJU1PA051260 for ; Sat, 14 Dec 2013 19:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJU11Z051259; Sat, 14 Dec 2013 19:30:01 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 19:30:01 GMT Message-Id: <201312141930.rBEJU11Z051259@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Hardy Schumacher" Subject: Re: ports/184111: [UPDATE] emulators/desmume to v0.9.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Hardy Schumacher List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:30:01 -0000 The following reply was made to PR ports/184111; it has been noted by GNATS. From: "Hardy Schumacher" To: "Alex Kozlov" Cc: bug-followup@FreeBSD.org Subject: Re: ports/184111: [UPDATE] emulators/desmume to v0.9.9 Date: Sat, 14 Dec 2013 20:29:20 +0100 (CET) --abmobg-2c227dbf-d875-4d3a-815f-d28aae6a5485 Content-Type: text/html; charset=UTF-8

I've prepared a patch for v0.9.10.
See attachment.
 
Best Regards,
Hardy
--abmobg-2c227dbf-d875-4d3a-815f-d28aae6a5485 Content-Type: text/plain Content-Disposition: attachment; filename=update_desmume-0.9.10.txt diff -ruN /usr/ports/emulators/desmume/Makefile ./desmume/Makefile --- /usr/ports/emulators/desmume/Makefile 2013-09-21 20:26:39.000000000 +0200 +++ ./desmume/Makefile 2013-12-13 21:48:02.000000000 +0100 @@ -2,9 +2,10 @@ # $FreeBSD: head/emulators/desmume/Makefile 327721 2013-09-20 16:43:52Z bapt $ PORTNAME= desmume -PORTVERSION= 0.9.8 +PORTVERSION= 0.9.10 CATEGORIES= emulators MASTER_SITES= SF +EXTRACT_SUFX= .tar.tar MAINTAINER= llc2w@virginia.edu COMMENT= Nintendo DS emulator @@ -12,7 +13,8 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext +LIB_DEPENDS= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext \ + libSoundTouch.so:${PORTSDIR}/audio/soundtouch USE_GL= gl USE_SDL= sdl diff -ruN /usr/ports/emulators/desmume/distinfo ./desmume/distinfo --- /usr/ports/emulators/desmume/distinfo 2012-12-26 19:23:18.000000000 +0100 +++ ./desmume/distinfo 2013-12-13 17:36:03.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (desmume-0.9.8.tar.gz) = 78363468a2d5efba95de57739a9c81a3757ecd76c2a183ec68336e30d47a5e01 -SIZE (desmume-0.9.8.tar.gz) = 3677290 +SHA256 (desmume-0.9.10.tar.tar) = 8900a7a1fc849fdd33b014748dd97a6cda4c32548b8d2e06511e6ed8d5ba7445 +SIZE (desmume-0.9.10.tar.tar) = 4141586 diff -ruN /usr/ports/emulators/desmume/files/patch-src_gtk_glx_3Demu.cpp ./desmume/files/patch-src_gtk_glx_3Demu.cpp --- /usr/ports/emulators/desmume/files/patch-src_gtk_glx_3Demu.cpp 1970-01-01 01:00:00.000000000 +0100 +++ ./desmume/files/patch-src_gtk_glx_3Demu.cpp 2013-12-14 20:09:12.000000000 +0100 @@ -0,0 +1,14 @@ +--- src/gtk/glx_3Demu.cpp.orig 2013-11-28 01:36:53.712615000 +0100 ++++ src/gtk/glx_3Demu.cpp 2013-12-14 20:08:01.000000000 +0100 +@@ -41,11 +41,7 @@ + glXDestroyContext(dpy, ctx); + + XCloseDisplay(dpy); +- +- return true; + } +- +- return false; + } + + int init_glx_3Demu(void) diff -ruN /usr/ports/emulators/desmume/files/patch-src_utils_task.cpp ./desmume/files/patch-src_utils_task.cpp --- /usr/ports/emulators/desmume/files/patch-src_utils_task.cpp 1970-01-01 01:00:00.000000000 +0100 +++ ./desmume/files/patch-src_utils_task.cpp 2013-12-14 19:49:46.000000000 +0100 @@ -0,0 +1,22 @@ +--- src/utils/task.cpp.orig 2013-11-28 01:37:27.373159000 +0100 ++++ src/utils/task.cpp 2013-12-14 19:49:02.000000000 +0100 +@@ -26,6 +26,7 @@ + #if defined HOST_LINUX || defined HOST_DARWIN + #include + #elif defined HOST_BSD ++#include + #include + #endif + #endif // HOST_WINDOWS +@@ -41,9 +42,8 @@ + return sysconf(_SC_NPROCESSORS_ONLN); + #elif defined HOST_BSD + int cores; +- const int mib[4] = { CTL_HW, HW_NCPU, 0, 0 }; +- const size_t len = sizeof(cores); +- sysctl(mib, 2, &cores, &len, NULL, 0); ++ size_t len = sizeof(cores); ++ sysctlbyname("hw.ncpu", &cores, &len, NULL, 0); + return (cores < 1) ? 1 : cores; + #else + return 1; --abmobg-2c227dbf-d875-4d3a-815f-d28aae6a5485-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDD4F4B7 for ; Sat, 14 Dec 2013 19:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B85AE188F for ; Sat, 14 Dec 2013 19:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJe1v9053099 for ; Sat, 14 Dec 2013 19:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJe1rt053098; Sat, 14 Dec 2013 19:40:01 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 19:40:01 GMT Message-Id: <201312141940.rBEJe1rt053098@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/181057: databases/grass: Update to version 6.4.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:40:01 -0000 The following reply was made to PR ports/181057; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181057: databases/grass: Update to version 6.4.3 Date: Sun, 15 Dec 2013 04:28:17 +0900 This is a multi-part message in MIME format. --Multipart=_Sun__15_Dec_2013_04_28_17_+0900_Wb.91DQa5vQ3cUWa Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Sun__15_Dec_2013_04_28_17_+0900_Wb.91DQa5vQ3cUWa Content-Type: text/x-diff; name="databases_grass.diff" Content-Disposition: attachment; filename="databases_grass.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/databases/grass/Makefile databases/grass/Makefile --- /usr/ports/databases/grass/Makefile 2013-12-12 07:58:13.000000000 +0900 +++ databases/grass/Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -2,18 +2,20 @@ # $FreeBSD: head/databases/grass/Makefile 336187 2013-12-11 18:08:52Z bapt $ PORTNAME= grass -PORTVERSION= 6.4.2 -PORTREVISION= 7 +PORTVERSION= 6.4.3 PORTEPOCH= 2 CATEGORIES= databases geography MASTER_SITES= http://grass.osgeo.org/%SUBDIR%/ \ - http://wgbis.ces.iisc.ernet.in/grass/%SUBDIR%/ \ - http://grass.bergenheim.net/%SUBDIR%/ \ http://grass.cict.fr/%SUBDIR%/ \ - http://www.phygeo.uni-hannover.de/grass/%SUBDIR%/ \ http://grass.fbk.eu/%SUBDIR%/ \ http://grass.gis-lab.info/%SUBDIR%/ \ - http://mirrors.ibiblio.org/grass/%SUBDIR%/ + http://grass.meteo.uni.wroc.pl/%SUBDIR%/ \ + http://grass.polytechnic.edu.na/%SUBDIR%/ \ + http://grass.unibuc.ro/%SUBDIR%/ \ + http://mirrors.ibiblio.org/grass/%SUBDIR%/ \ + http://pinus.gntech.ac.kr/grass/%SUBDIR%/ \ + http://wgbis.ces.iisc.ernet.in/grass/%SUBDIR%/ \ + http://wgrass.media.osaka-cu.ac.jp/grassh/%SUBDIR%/ MASTER_SITE_SUBDIR= grass64/source MAINTAINER= ports@FreeBSD.org @@ -21,8 +23,6 @@ LICENSE= GPLv2 -BROKEN= Does not build - BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 LIB_DEPENDS= libgdal.so:${PORTSDIR}/graphics/gdal \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ @@ -33,17 +33,25 @@ libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= bash:${PORTSDIR}/shells/bash -USES= gettext gmake iconv readline perl5 tk -USE_XORG= sm ice xi x11 xt xmu xext -USE_GL= glut -USE_PYTHON= yes -USE_WX= 2.8 -WX_COMPS= wx:build python:run +OPTIONS_DEFINE= ATLAS FFMPEG MOTIF MYSQL ODBC PGSQL SQLITE +OPTIONS_DEFAULT= PGSQL +OPTIONS_SUB= yes +ATLAS_DESC= Use ATLAS for BLAS and LAPACK + +USES= gettext gmake iconv perl5 pkgconfig readline shebangfix tk +SHEBANG_FILES= scripts/i.spectral/i.spectral \ + scripts/r.tileset/r.tileset PATCH_TCL_SCRIPTS=lib/init/init.sh PATCH_TK_SCRIPTS=lib/init/init.sh - -ALL_TARGET= +USE_XORG= sm ice x11 xext xi xmu xt +USE_GL= glu +USE_GNOME= cairo +USE_PYTHON= -2.7 +USE_WX= 2.8 +WX_COMPS= wx:build python:run +USE_FORTRAN= yes GNU_CONFIGURE= yes +CONFIGURE_ENV= PERL="${PERL}" CONFIGURE_ARGS= --with-includes=${LOCALBASE}/include \ --with-libs=${LOCALBASE}/lib \ --with-tcltk-includes="${TCL_INCLUDEDIR} ${TK_INCLUDEDIR}" \ @@ -51,34 +59,51 @@ --with-opengl-libs=${LOCALBASE}/lib/ \ --with-freetype \ --with-freetype-includes=${LOCALBASE}/include/freetype2 \ + --with-blas \ + --with-lapack \ + --with-cairo \ --with-nls \ --with-cxx \ --with-readline \ --with-curses \ --enable-largefile \ - --with-python=${LOCALBASE}/bin/python-config \ + --with-python=${PYTHON_CMD}-config \ --with-wxwidgets=${WX_CONFIG} - -PLIST_SUB= GRASS_INST_DIR=${GRASS_INST_DIR} \ - VERSION=${PORTVERSION} \ - VER=${PORTVERSION:R:C/\.//} +MAKE_ENV= DESTDIR="${STAGEDIR}" +ALL_TARGET= default USE_LDCONFIG= ${PREFIX}/${GRASS_INST_DIR}/lib - -OPTIONS_DEFINE= MYSQL ODBC PGSQL SQLITE -OPTIONS_DEFAULT= PGSQL - -BASH_SCRIPTS= i.spectral r.tileset - -NO_STAGE= yes -.include - -.if ${ARCH} == "sparc64" -BROKEN= Does not configure on sparc64 -.endif - -.if !defined (GRASS_INST_DIR) -GRASS_INST_DIR= ${PORTNAME}-${PORTVERSION} +PLIST_SUB= GRASS_INST_DIR="${GRASS_INST_DIR}" \ + VERSION="${PORTVERSION}" \ + VER="${PORTVERSION:R:C/\.//}" + +.include + +.if ${PORT_OPTIONS:MATLAS} +LIB_DEPENDS+= libalapack.so:${PORTSDIR}/math/atlas +BLASLIB= f77blas +LAPACKLIB= alapack +.else +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas \ + liblapack.so:${PORTSDIR}/math/lapack +BLASLIB= blas +LAPACKLIB= lapack +.endif + +.if ${PORT_OPTIONS:MFFMPEG} +LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +CONFIGURE_ARGS+=--with-ffmpeg \ + --with-ffmpeg-includes="${LOCALBASE}/include/libavcodec \ + ${LOCALBASE}/include/libavformat \ + ${LOCALBASE}/include/libavutil \ + ${LOCALBASE}/include/libswscale" \ + --with-ffmpeglibs=${LOCALBASE}/lib +.endif + +.if ${PORT_OPTIONS:MMOTIF} +USES+= motif +USE_GL+= glw +CONFIGURE_ARGS+=--with-motif --with-glw .endif .if ${PORT_OPTIONS:MMYSQL} @@ -86,41 +111,50 @@ CONFIGURE_ARGS+=--with-mysql \ --with-mysql-includes=${LOCALBASE}/include/mysql \ --with-mysql-libs=${LOCALBASE}/lib/mysql -PLIST_SUB+= MYSQL="" -.else -PLIST_SUB+= MYSQL="@comment " .endif .if ${PORT_OPTIONS:MODBC} LIB_DEPENDS+= libodbc.so:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-odbc -PLIST_SUB+= ODBC="" -.else -PLIST_SUB+= ODBC="@comment " .endif .if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes CONFIGURE_ARGS+=--with-postgres -PLIST_SUB+= PGSQL="" -.else -PLIST_SUB+= PGSQL="@comment " .endif .if ${PORT_OPTIONS:MSQLITE} USE_SQLITE= yes CONFIGURE_ARGS+=--with-sqlite -PLIST_SUB+= SQLITE="" -.else -PLIST_SUB+= SQLITE="@comment " +.endif + +.include + +.if ${ARCH} == "sparc64" +BROKEN= Does not configure on sparc64 +.endif + +.if !defined (GRASS_INST_DIR) +GRASS_INST_DIR= ${PORTNAME}-${PORTVERSION} .endif post-patch: - @${REINPLACE_CMD} -e "/^INST_DIR=/s|grass-.*|${GRASS_INST_DIR}|" \ - ${WRKSRC}/Makefile -.for s in ${BASH_SCRIPTS} - @${REINPLACE_CMD} -e "1s|/bin/bash|${LOCALBASE}/bin/bash|" \ - ${WRKSRC}/scripts/$s/$s -.endfor + @${REINPLACE_CMD} -e \ + 's|-lblas|-l${BLASLIB}| ; \ + s|echo blas|echo ${BLASLIB}| ; \ + s|-llapack|-l${LAPACKLIB}| ; \ + s|echo lapack|echo ${LAPACKLIB}|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|make -C|$$(MAKE) -C| ; \ + /^BINDIR/s|=.*|= $${DESTDIR}$${UNIX_BIN}| ; \ + /test /s| $${INST_DIR}| $${DESTDIR}$${INST_DIR}|g ; \ + /tar /s| $${INST_DIR}| $${DESTDIR}$${INST_DIR}|g ; \ + /chmod /s| $${INST_DIR}| $${DESTDIR}$${INST_DIR}|g ; \ + /GISBASE/s| $${INST_DIR}| $${DESTDIR}$${INST_DIR}|g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|^CC=.*|CC?=cc| ; \ + s|^CFLAGS=.*|CFLAGS+=-fno-common|' ${WRKSRC}/gem/Makefile + @${REINPLACE_CMD} -e \ + 's|= python|= ${PYTHON_CMD:T}|' ${WRKSRC}/include/Make/Platform.make.in .include diff -urN /usr/ports/databases/grass/distinfo databases/grass/distinfo --- /usr/ports/databases/grass/distinfo 2013-11-06 22:03:45.000000000 +0900 +++ databases/grass/distinfo 2013-12-15 04:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (grass-6.4.2.tar.gz) = 670bb74d3000ea0932b7e988d3080d0c629f9eb22a8479bb2987ded473f7b4ca -SIZE (grass-6.4.2.tar.gz) = 24097202 +SHA256 (grass-6.4.3.tar.gz) = 5d29d322a262330894aa046845e6790258cd6e3f95b28c350ed7839810672ed6 +SIZE (grass-6.4.3.tar.gz) = 25287682 diff -urN /usr/ports/databases/grass/files/patch-configure databases/grass/files/patch-configure --- /usr/ports/databases/grass/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 +++ databases/grass/files/patch-configure 2013-12-15 04:00:00.000000000 +0900 @@ -0,0 +1,15 @@ +--- configure.orig ++++ configure +@@ -2485,10 +2485,10 @@ + FreeBSD-*) + # FreeBSD 3.* and greater have ELF. + SHLIB_CFLAGS="-fPIC" +- SHLIB_LD="ld -Bshareable -x" ++ SHLIB_LD="${CC} -shared" + SHLIB_LD_LIBS='${LIBS}' + SHLIB_SUFFIX=".so" +- LDFLAGS="-export-dynamic" ++ LDFLAGS="-Wl,--export-dynamic" + CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}' + if test "${GRASS_THREADS}" = "1" ; then diff -urN /usr/ports/databases/grass/files/patch-gui__wxpython__Makefile databases/grass/files/patch-gui__wxpython__Makefile --- /usr/ports/databases/grass/files/patch-gui__wxpython__Makefile 1970-01-01 09:00:00.000000000 +0900 +++ databases/grass/files/patch-gui__wxpython__Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -0,0 +1,12 @@ +--- gui/wxpython/Makefile.orig ++++ gui/wxpython/Makefile +@@ -19,7 +19,8 @@ + mapdisp modules nviz psmap vdigit wxplot) + DSTDIRS := $(patsubst %,$(ETCDIR)/%,compat icons scripts xml) + +-default: $(DSTFILES) menustrings.py ++default: $(DSTFILES) ++ -$(MAKE) menustrings.py + $(MAKE) parsubdirs + + $(ETCDIR)/%: % | $(PYDSTDIRS) $(DSTDIRS) diff -urN /usr/ports/databases/grass/pkg-plist databases/grass/pkg-plist --- /usr/ports/databases/grass/pkg-plist 2013-11-06 22:03:45.000000000 +0900 +++ databases/grass/pkg-plist 2013-12-15 04:00:00.000000000 +0900 @@ -91,7 +91,10 @@ %%GRASS_INST_DIR%%/bin/i.group %%GRASS_INST_DIR%%/bin/i.his.rgb %%GRASS_INST_DIR%%/bin/i.ifft +%%GRASS_INST_DIR%%/bin/i.landsat.acca +%%GRASS_INST_DIR%%/bin/i.landsat.toar %%GRASS_INST_DIR%%/bin/i.maxlik +%%GRASS_INST_DIR%%/bin/i.modis.qc %%GRASS_INST_DIR%%/bin/i.ortho.photo %%GRASS_INST_DIR%%/bin/i.pca %%GRASS_INST_DIR%%/bin/i.photo.rectify @@ -352,10 +355,12 @@ %%GRASS_INST_DIR%%/bin/v.transform %%GRASS_INST_DIR%%/bin/v.type %%GRASS_INST_DIR%%/bin/v.univar +%%GRASS_INST_DIR%%/bin/v.vect.stats %%GRASS_INST_DIR%%/bin/v.vol.rst %%GRASS_INST_DIR%%/bin/v.voronoi %%GRASS_INST_DIR%%/bin/v.what %%GRASS_INST_DIR%%/bin/v.what.rast +%%MOTIF%%%%GRASS_INST_DIR%%/bin/xganim %%GRASS_INST_DIR%%/bwidget/CHANGES.txt %%GRASS_INST_DIR%%/bwidget/LGPL-2.1.txt %%GRASS_INST_DIR%%/bwidget/LICENSE.txt @@ -432,6 +437,7 @@ %%GRASS_INST_DIR%%/contributors.csv %%GRASS_INST_DIR%%/contributors_extra.csv %%GRASS_INST_DIR%%/docs/html/aspect.png +%%GRASS_INST_DIR%%/docs/html/cairodriver.html %%GRASS_INST_DIR%%/docs/html/circle_1.png %%GRASS_INST_DIR%%/docs/html/circle_2.png %%GRASS_INST_DIR%%/docs/html/circle_3.png @@ -566,8 +572,12 @@ %%GRASS_INST_DIR%%/docs/html/gm_profile2.jpg %%GRASS_INST_DIR%%/docs/html/gm_profile3.png %%GRASS_INST_DIR%%/docs/html/grass-dbf.html +%%MYSQL%%%%GRASS_INST_DIR%%/docs/html/grass-mesql.html +%%MYSQL%%%%GRASS_INST_DIR%%/docs/html/grass-mysql.html +%%ODBC%%%%GRASS_INST_DIR%%/docs/html/grass-odbc.html %%GRASS_INST_DIR%%/docs/html/grass-ogr.html -%%GRASS_INST_DIR%%/docs/html/grass-pg.html +%%PGSQL%%%%GRASS_INST_DIR%%/docs/html/grass-pg.html +%%SQLITE%%%%GRASS_INST_DIR%%/docs/html/grass-sqlite.html %%GRASS_INST_DIR%%/docs/html/grass6.html %%GRASS_INST_DIR%%/docs/html/grass_logo.txt %%GRASS_INST_DIR%%/docs/html/grass_start.png @@ -589,8 +599,11 @@ %%GRASS_INST_DIR%%/docs/html/i.ifft.html %%GRASS_INST_DIR%%/docs/html/i.image.mosaic.html %%GRASS_INST_DIR%%/docs/html/i.in.spotvgt.html +%%GRASS_INST_DIR%%/docs/html/i.landsat.acca.html %%GRASS_INST_DIR%%/docs/html/i.landsat.rgb.html +%%GRASS_INST_DIR%%/docs/html/i.landsat.toar.html %%GRASS_INST_DIR%%/docs/html/i.maxlik.html +%%GRASS_INST_DIR%%/docs/html/i.modis.qc.html %%GRASS_INST_DIR%%/docs/html/i.oif.html %%GRASS_INST_DIR%%/docs/html/i.ortho.photo.html %%GRASS_INST_DIR%%/docs/html/i.pca.html @@ -613,9 +626,13 @@ %%GRASS_INST_DIR%%/docs/html/i.zc.html %%GRASS_INST_DIR%%/docs/html/i_landsat_rgb_corrected.jpg %%GRASS_INST_DIR%%/docs/html/i_landsat_rgb_uncorrected.jpg +%%GRASS_INST_DIR%%/docs/html/i_spectral.png %%GRASS_INST_DIR%%/docs/html/icons/3d-fringe.png +%%GRASS_INST_DIR%%/docs/html/icons/3d-help.png %%GRASS_INST_DIR%%/docs/html/icons/3d-light.png %%GRASS_INST_DIR%%/docs/html/icons/3d-raster.png +%%GRASS_INST_DIR%%/docs/html/icons/3d-rotate.png +%%GRASS_INST_DIR%%/docs/html/icons/3d-settings.png %%GRASS_INST_DIR%%/docs/html/icons/3d-vector.png %%GRASS_INST_DIR%%/docs/html/icons/3d-view.png %%GRASS_INST_DIR%%/docs/html/icons/3d-volume.png @@ -658,6 +675,7 @@ %%GRASS_INST_DIR%%/docs/html/icons/file-open.gif %%GRASS_INST_DIR%%/docs/html/icons/file-print.gif %%GRASS_INST_DIR%%/docs/html/icons/file-save.gif +%%GRASS_INST_DIR%%/docs/html/icons/flythrough.png %%GRASS_INST_DIR%%/docs/html/icons/font.png %%GRASS_INST_DIR%%/docs/html/icons/gcp-add.png %%GRASS_INST_DIR%%/docs/html/icons/gcp-create.png @@ -717,6 +735,7 @@ %%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_out.gif %%GRASS_INST_DIR%%/docs/html/icons/gui-zoom_region.gif %%GRASS_INST_DIR%%/docs/html/icons/help.png +%%GRASS_INST_DIR%%/docs/html/icons/image-add.png %%GRASS_INST_DIR%%/docs/html/icons/image-export.png %%GRASS_INST_DIR%%/docs/html/icons/info.png %%GRASS_INST_DIR%%/docs/html/icons/layer-add.png @@ -745,11 +764,13 @@ %%GRASS_INST_DIR%%/docs/html/icons/layer-vector-more.png %%GRASS_INST_DIR%%/docs/html/icons/layer-vector-thematic-add.png %%GRASS_INST_DIR%%/docs/html/icons/legend-add.png +%%GRASS_INST_DIR%%/docs/html/icons/line-add.png %%GRASS_INST_DIR%%/docs/html/icons/line-create.png %%GRASS_INST_DIR%%/docs/html/icons/line-delete.png %%GRASS_INST_DIR%%/docs/html/icons/line-edit.png %%GRASS_INST_DIR%%/docs/html/icons/line-move.png %%GRASS_INST_DIR%%/docs/html/icons/line-split.png +%%GRASS_INST_DIR%%/docs/html/icons/loop-add.png %%GRASS_INST_DIR%%/docs/html/icons/map-add.png %%GRASS_INST_DIR%%/docs/html/icons/map-export.png %%GRASS_INST_DIR%%/docs/html/icons/map-info.png @@ -788,12 +809,14 @@ %%GRASS_INST_DIR%%/docs/html/icons/module-xganim.gif %%GRASS_INST_DIR%%/docs/html/icons/monitor-create.png %%GRASS_INST_DIR%%/docs/html/icons/move.png +%%GRASS_INST_DIR%%/docs/html/icons/north-arrow-add.png %%GRASS_INST_DIR%%/docs/html/icons/open.png %%GRASS_INST_DIR%%/docs/html/icons/options.png %%GRASS_INST_DIR%%/docs/html/icons/overlay-add.png %%GRASS_INST_DIR%%/docs/html/icons/page-settings.png %%GRASS_INST_DIR%%/docs/html/icons/pan.png %%GRASS_INST_DIR%%/docs/html/icons/pdf-export.png +%%GRASS_INST_DIR%%/docs/html/icons/point-add.png %%GRASS_INST_DIR%%/docs/html/icons/point-create.png %%GRASS_INST_DIR%%/docs/html/icons/pointer.png %%GRASS_INST_DIR%%/docs/html/icons/polygon-create.png @@ -802,6 +825,7 @@ %%GRASS_INST_DIR%%/docs/html/icons/ps-export.png %%GRASS_INST_DIR%%/docs/html/icons/python-export.png %%GRASS_INST_DIR%%/docs/html/icons/quit.png +%%GRASS_INST_DIR%%/docs/html/icons/rectangle-add.png %%GRASS_INST_DIR%%/docs/html/icons/redo.png %%GRASS_INST_DIR%%/docs/html/icons/redraw.png %%GRASS_INST_DIR%%/docs/html/icons/relation-create.png @@ -844,7 +868,6 @@ %%GRASS_INST_DIR%%/docs/html/modcolr.html %%GRASS_INST_DIR%%/docs/html/modhead.html %%GRASS_INST_DIR%%/docs/html/modhist.html -%%GRASS_INST_DIR%%/docs/html/nviz.html %%GRASS_INST_DIR%%/docs/html/nviz/bugs_todo.html %%GRASS_INST_DIR%%/docs/html/nviz/gmsmodviz.gif %%GRASS_INST_DIR%%/docs/html/nviz/grass_logo.png @@ -940,6 +963,7 @@ %%GRASS_INST_DIR%%/docs/html/nviz/nviz_startup.html %%GRASS_INST_DIR%%/docs/html/nviz/nviz_state.html %%GRASS_INST_DIR%%/docs/html/nviz/nviz_toc.html +%%GRASS_INST_DIR%%/docs/html/nviz.html %%GRASS_INST_DIR%%/docs/html/p.out.vrml.html %%GRASS_INST_DIR%%/docs/html/pcurv.png %%GRASS_INST_DIR%%/docs/html/photo.camera.png @@ -1044,6 +1068,7 @@ %%GRASS_INST_DIR%%/docs/html/r.out.vrml.html %%GRASS_INST_DIR%%/docs/html/r.out.vtk.html %%GRASS_INST_DIR%%/docs/html/r.out.xyz.html +%%GRASS_INST_DIR%%/docs/html/r.pack.html %%GRASS_INST_DIR%%/docs/html/r.param.scale.html %%GRASS_INST_DIR%%/docs/html/r.patch.html %%GRASS_INST_DIR%%/docs/html/r.plane.html @@ -1103,6 +1128,7 @@ %%GRASS_INST_DIR%%/docs/html/r.transect.html %%GRASS_INST_DIR%%/docs/html/r.univar.html %%GRASS_INST_DIR%%/docs/html/r.univar.sh.html +%%GRASS_INST_DIR%%/docs/html/r.unpack.html %%GRASS_INST_DIR%%/docs/html/r.volume.html %%GRASS_INST_DIR%%/docs/html/r.walk.html %%GRASS_INST_DIR%%/docs/html/r.water.outlet.html @@ -1131,8 +1157,13 @@ %%GRASS_INST_DIR%%/docs/html/r3.to.rast.png %%GRASS_INST_DIR%%/docs/html/r3.univar.html %%GRASS_INST_DIR%%/docs/html/r_gwflow_concept.png +%%GRASS_INST_DIR%%/docs/html/r_in_wms_nc_landcover_wms.jpg +%%GRASS_INST_DIR%%/docs/html/r_lake_lidar_dem.jpg +%%GRASS_INST_DIR%%/docs/html/r_li_pielou.png +%%GRASS_INST_DIR%%/docs/html/r_li_renyi.png %%GRASS_INST_DIR%%/docs/html/r_param_scale_morph.jpg %%GRASS_INST_DIR%%/docs/html/r_sim_water.png +%%GRASS_INST_DIR%%/docs/html/r_surf_fractal.jpg %%GRASS_INST_DIR%%/docs/html/r_surf_gauss_hist.png %%GRASS_INST_DIR%%/docs/html/r_surf_random_hist.png %%GRASS_INST_DIR%%/docs/html/r_water_outlet.png @@ -1278,6 +1309,7 @@ %%GRASS_INST_DIR%%/docs/html/v.type.html %%GRASS_INST_DIR%%/docs/html/v.univar.html %%GRASS_INST_DIR%%/docs/html/v.univar.sh.html +%%GRASS_INST_DIR%%/docs/html/v.vect.stats.html %%GRASS_INST_DIR%%/docs/html/v.vol.rst.html %%GRASS_INST_DIR%%/docs/html/v.voronoi.html %%GRASS_INST_DIR%%/docs/html/v.what.html @@ -1289,6 +1321,9 @@ %%GRASS_INST_DIR%%/docs/html/v_net_alloc.png %%GRASS_INST_DIR%%/docs/html/v_net_alloc_time.png %%GRASS_INST_DIR%%/docs/html/v_overlay_area_lines.png +%%GRASS_INST_DIR%%/docs/html/v_overlay_census_wake2000.png +%%GRASS_INST_DIR%%/docs/html/v_overlay_urban_census2000.png +%%GRASS_INST_DIR%%/docs/html/v_overlay_urbanarea.png %%GRASS_INST_DIR%%/docs/html/v_voronoi_delaunay.png %%GRASS_INST_DIR%%/docs/html/variables.html %%GRASS_INST_DIR%%/docs/html/vectorintro.html @@ -1300,6 +1335,7 @@ %%GRASS_INST_DIR%%/docs/html/vnetsteiner.png %%GRASS_INST_DIR%%/docs/html/vnetsteinertime.png %%GRASS_INST_DIR%%/docs/html/wxGUI.Attribute_Table_Manager.html +%%GRASS_INST_DIR%%/docs/html/wxGUI.Components.html %%GRASS_INST_DIR%%/docs/html/wxGUI.GCP_Manager.html %%GRASS_INST_DIR%%/docs/html/wxGUI.Modeler.html %%GRASS_INST_DIR%%/docs/html/wxGUI.Nviz.html @@ -1311,16 +1347,19 @@ %%GRASS_INST_DIR%%/docs/html/wxGUI_map_display.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_modeler.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_toolbar.jpg +%%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_light.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_surface.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_vector.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_view.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_nviz_tools_volume.jpg %%GRASS_INST_DIR%%/docs/html/wxGUI_vector_digitizer_toolbar.jpg %%GRASS_INST_DIR%%/docs/html/xdriver.html +%%MOTIF%%%%GRASS_INST_DIR%%/docs/html/xganim.html %%GRASS_INST_DIR%%/driver/HTMLMAP %%GRASS_INST_DIR%%/driver/PNG %%GRASS_INST_DIR%%/driver/PS %%GRASS_INST_DIR%%/driver/XDRIVER +%%GRASS_INST_DIR%%/driver/cairo %%GRASS_INST_DIR%%/driver/db/dbf %%MYSQL%%%%GRASS_INST_DIR%%/driver/db/mysql %%ODBC%%%%GRASS_INST_DIR%%/driver/db/odbc @@ -1332,7 +1371,6 @@ %%GRASS_INST_DIR%%/etc/VERSIONNUMBER %%GRASS_INST_DIR%%/etc/bmif_to_cell %%GRASS_INST_DIR%%/etc/clean_temp -%%GRASS_INST_DIR%%/etc/colors.desc %%GRASS_INST_DIR%%/etc/colors/aspect %%GRASS_INST_DIR%%/etc/colors/aspectcolr %%GRASS_INST_DIR%%/etc/colors/bcyr @@ -1367,6 +1405,7 @@ %%GRASS_INST_DIR%%/etc/colors/srtm %%GRASS_INST_DIR%%/etc/colors/terrain %%GRASS_INST_DIR%%/etc/colors/wave +%%GRASS_INST_DIR%%/etc/colors.desc %%GRASS_INST_DIR%%/etc/current_time_s_ms %%GRASS_INST_DIR%%/etc/d.polar/ps_defs.eps %%GRASS_INST_DIR%%/etc/d.rast.edit.tcl @@ -1525,9 +1564,6 @@ %%GRASS_INST_DIR%%/etc/gtcltk/gronsole.tcl %%GRASS_INST_DIR%%/etc/gtcltk/options.tcl %%GRASS_INST_DIR%%/etc/gtcltk/select.tcl -%%GRASS_INST_DIR%%/etc/gui.tcl -%%GRASS_INST_DIR%%/etc/gui/icons/grass-48x48.png -%%GRASS_INST_DIR%%/etc/gui/icons/grass.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-blue.gif %%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-green.gif %%GRASS_INST_DIR%%/etc/gui/icons/grass/channel-his.gif @@ -1668,9 +1704,15 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.pan.gif %%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.region.gif %%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit/zoom.window.gif +%%GRASS_INST_DIR%%/etc/gui/icons/grass-48x48.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass-64x64.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-fringe.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-help.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-light.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-raster.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-rotate.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-settings.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-vector.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-view.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/3d-volume.png @@ -1686,6 +1728,7 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/edit.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/erase.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/execute.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/flythrough.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/font.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-create.png @@ -1695,6 +1738,7 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/gcp-save.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/georectify.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/help.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/image-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/image-export.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/info.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-add.png @@ -1723,11 +1767,13 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-vector-more.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/layer-vector-thematic-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/legend-add.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-create.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-delete.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-edit.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-move.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/line-split.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/loop-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/map-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/map-export.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/map-info.png @@ -1738,12 +1784,14 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/module-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/monitor-create.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/move.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/north-arrow-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/open.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/options.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/overlay-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/page-settings.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/pan.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/pdf-export.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/point-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/point-create.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/pointer.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/polygon-create.png @@ -1752,6 +1800,7 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/ps-export.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/python-export.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/quit.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass2/rectangle-add.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/redo.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/redraw.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/relation-create.png @@ -1775,11 +1824,16 @@ %%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-last.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-more.png %%GRASS_INST_DIR%%/etc/gui/icons/grass2/zoom-out.png +%%GRASS_INST_DIR%%/etc/gui/icons/grass_cmd.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass_dialog.ico -%%GRASS_INST_DIR%%/etc/gui/icons/grass_error.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass_map.ico +%%GRASS_INST_DIR%%/etc/gui/icons/grass_msys.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass_nviz.ico +%%GRASS_INST_DIR%%/etc/gui/icons/grass_osgeo.ico %%GRASS_INST_DIR%%/etc/gui/icons/grass_sql.ico +%%GRASS_INST_DIR%%/etc/gui/icons/grass_tcltk.ico +%%GRASS_INST_DIR%%/etc/gui/icons/grass_web.ico +%%GRASS_INST_DIR%%/etc/gui/icons/msys.ico %%GRASS_INST_DIR%%/etc/gui/icons/silk/application.png %%GRASS_INST_DIR%%/etc/gui/icons/silk/application_add.png %%GRASS_INST_DIR%%/etc/gui/icons/silk/application_delete.png @@ -1855,6 +1909,7 @@ %%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_extent.png %%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_in.png %%GRASS_INST_DIR%%/etc/gui/icons/silk/zoom_out.png +%%GRASS_INST_DIR%%/etc/gui/icons/wingrass.ico %%GRASS_INST_DIR%%/etc/gui/images/grass_form.png %%GRASS_INST_DIR%%/etc/gui/images/loc_wizard.png %%GRASS_INST_DIR%%/etc/gui/images/loc_wizard_qgis.png @@ -1865,13 +1920,74 @@ %%GRASS_INST_DIR%%/etc/gui/images/small_down_arrow.png %%GRASS_INST_DIR%%/etc/gui/images/small_up_arrow.png %%GRASS_INST_DIR%%/etc/gui/images/startup_banner.gif +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/arrow1.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/arrow2.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/arrow3.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/box.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/circle.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/cross1.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/cross2.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/cross3.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/diamond.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/marker.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/octagon.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/point.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/pushpin.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/star.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/triangle.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/basic/x.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/demo/muchomurka.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/demo/smrk.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/4pt_star.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/adcp.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/airport.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/alpha_flag.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/bridge.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/compass.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/dim_arrow.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/dive_flag.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/fancy_compass.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/fiducial.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/fish.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/half-box.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/half-circle.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow1.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow1b.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow2.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow3.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow4.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow5.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow6.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow7a.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow7b.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow8a.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow8b.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/n_arrow9.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/offbox_ne.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/offbox_nw.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/offbox_se.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/offbox_sw.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/pentagon.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/ping.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/ring.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/simple_zia.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/extra/target.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/half-arrow_left.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/half-arrow_right.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/strike_box.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/strike_circle.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/strike_half-bowtie.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/strike_line.png +%%GRASS_INST_DIR%%/etc/gui/images/symbols/geology/strike_triangle.png %%GRASS_INST_DIR%%/etc/gui/scripts/d.colors.sh %%GRASS_INST_DIR%%/etc/gui/scripts/d.path.sh +%%GRASS_INST_DIR%%/etc/gui/scripts/d.rast3d.py %%GRASS_INST_DIR%%/etc/gui/scripts/g.change.gui.py %%GRASS_INST_DIR%%/etc/gui/scripts/g.change.gui.sh %%GRASS_INST_DIR%%/etc/gui/scripts/g.extension.py %%GRASS_INST_DIR%%/etc/gui/scripts/g.extension.rebuild.all.py %%GRASS_INST_DIR%%/etc/gui/scripts/r.colors.rules +%%GRASS_INST_DIR%%/etc/gui/scripts/r.mapcalc_wrapper %%GRASS_INST_DIR%%/etc/gui/scripts/r.reclass.file %%GRASS_INST_DIR%%/etc/gui/scripts/r.reclass.rules %%GRASS_INST_DIR%%/etc/gui/scripts/r.recode.file @@ -1879,6 +1995,7 @@ %%GRASS_INST_DIR%%/etc/gui/scripts/r.support.sh %%GRASS_INST_DIR%%/etc/gui/scripts/v.type_wrapper.py %%GRASS_INST_DIR%%/etc/gui/scripts/v.type_wrapper.sh +%%GRASS_INST_DIR%%/etc/gui.tcl %%GRASS_INST_DIR%%/etc/i.ask %%GRASS_INST_DIR%%/etc/i.find %%GRASS_INST_DIR%%/etc/i.oif/i.oifcalc @@ -1919,6 +2036,7 @@ %%GRASS_INST_DIR%%/etc/msgs/ko.msg %%GRASS_INST_DIR%%/etc/msgs/lv.msg %%GRASS_INST_DIR%%/etc/msgs/mr.msg +%%GRASS_INST_DIR%%/etc/msgs/nl.msg %%GRASS_INST_DIR%%/etc/msgs/pl.msg %%GRASS_INST_DIR%%/etc/msgs/pt.msg %%GRASS_INST_DIR%%/etc/msgs/pt_br.msg @@ -1961,9 +2079,11 @@ %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/trash.gif %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/up %%GRASS_INST_DIR%%/etc/nviz2.2/msgs/de.msg +%%GRASS_INST_DIR%%/etc/nviz2.2/msgs/fr.msg %%GRASS_INST_DIR%%/etc/nviz2.2/msgs/it.msg %%GRASS_INST_DIR%%/etc/nviz2.2/msgs/ja.msg %%GRASS_INST_DIR%%/etc/nviz2.2/msgs/lv.msg +%%GRASS_INST_DIR%%/etc/nviz2.2/msgs/nl.msg %%GRASS_INST_DIR%%/etc/nviz2.2/msgs/pl.msg %%GRASS_INST_DIR%%/etc/nviz2.2/nviz %%GRASS_INST_DIR%%/etc/nviz2.2/scripts/ACS_utils.tcl @@ -2032,9 +2152,16 @@ %%GRASS_INST_DIR%%/etc/ogr_csv/projop_wparm.csv %%GRASS_INST_DIR%%/etc/ogr_csv/stateplane.csv %%GRASS_INST_DIR%%/etc/ogr_csv/unit_of_measure.csv +%%GRASS_INST_DIR%%/etc/paint/decorations/NorthArrow1.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/NorthArrow3.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/NorthArrow5.eps %%GRASS_INST_DIR%%/etc/paint/decorations/compass_exterior.eps %%GRASS_INST_DIR%%/etc/paint/decorations/compass_interior.eps %%GRASS_INST_DIR%%/etc/paint/decorations/grasslogo.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/n_arrow1.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/n_arrow1_fancy.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/n_arrow2.eps +%%GRASS_INST_DIR%%/etc/paint/decorations/north-arrow_1_simple_half_arrow.eps %%GRASS_INST_DIR%%/etc/paint/patterns/brick.eps %%GRASS_INST_DIR%%/etc/paint/patterns/cross_diag.eps %%GRASS_INST_DIR%%/etc/paint/patterns/cross_diag5.eps @@ -2142,10 +2269,12 @@ %%GRASS_INST_DIR%%/etc/state83 %%GRASS_INST_DIR%%/etc/symbol/basic/arrow1 %%GRASS_INST_DIR%%/etc/symbol/basic/arrow2 +%%GRASS_INST_DIR%%/etc/symbol/basic/arrow3 %%GRASS_INST_DIR%%/etc/symbol/basic/box %%GRASS_INST_DIR%%/etc/symbol/basic/circle %%GRASS_INST_DIR%%/etc/symbol/basic/cross1 %%GRASS_INST_DIR%%/etc/symbol/basic/cross2 +%%GRASS_INST_DIR%%/etc/symbol/basic/cross3 %%GRASS_INST_DIR%%/etc/symbol/basic/diamond %%GRASS_INST_DIR%%/etc/symbol/basic/marker %%GRASS_INST_DIR%%/etc/symbol/basic/octagon @@ -2162,6 +2291,7 @@ %%GRASS_INST_DIR%%/etc/symbol/extra/alpha_flag %%GRASS_INST_DIR%%/etc/symbol/extra/bridge %%GRASS_INST_DIR%%/etc/symbol/extra/compass +%%GRASS_INST_DIR%%/etc/symbol/extra/dim_arrow %%GRASS_INST_DIR%%/etc/symbol/extra/dive_flag %%GRASS_INST_DIR%%/etc/symbol/extra/fancy_compass %%GRASS_INST_DIR%%/etc/symbol/extra/fiducial @@ -2169,8 +2299,17 @@ %%GRASS_INST_DIR%%/etc/symbol/extra/half-box %%GRASS_INST_DIR%%/etc/symbol/extra/half-circle %%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow1 +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow1b %%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow2 %%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow3 +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow4 +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow5 +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow6 +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow7a +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow7b +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow8a +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow8b +%%GRASS_INST_DIR%%/etc/symbol/extra/n_arrow9 %%GRASS_INST_DIR%%/etc/symbol/extra/offbox_ne %%GRASS_INST_DIR%%/etc/symbol/extra/offbox_nw %%GRASS_INST_DIR%%/etc/symbol/extra/offbox_se @@ -2178,6 +2317,7 @@ %%GRASS_INST_DIR%%/etc/symbol/extra/pentagon %%GRASS_INST_DIR%%/etc/symbol/extra/ping %%GRASS_INST_DIR%%/etc/symbol/extra/ring +%%GRASS_INST_DIR%%/etc/symbol/extra/simple_zia %%GRASS_INST_DIR%%/etc/symbol/extra/target %%GRASS_INST_DIR%%/etc/symbol/geology/half-arrow_left %%GRASS_INST_DIR%%/etc/symbol/geology/half-arrow_right @@ -2197,107 +2337,81 @@ %%GRASS_INST_DIR%%/etc/wxpython/compat/__init__.pyc %%GRASS_INST_DIR%%/etc/wxpython/compat/subprocess.py %%GRASS_INST_DIR%%/etc/wxpython/compat/subprocess.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/core/debug.py +%%GRASS_INST_DIR%%/etc/wxpython/core/debug.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/gcmd.py +%%GRASS_INST_DIR%%/etc/wxpython/core/gcmd.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/globalvar.py +%%GRASS_INST_DIR%%/etc/wxpython/core/globalvar.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/menudata.py +%%GRASS_INST_DIR%%/etc/wxpython/core/menudata.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/render.py +%%GRASS_INST_DIR%%/etc/wxpython/core/render.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/settings.py +%%GRASS_INST_DIR%%/etc/wxpython/core/settings.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/units.py +%%GRASS_INST_DIR%%/etc/wxpython/core/units.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/utils.py +%%GRASS_INST_DIR%%/etc/wxpython/core/utils.pyc +%%GRASS_INST_DIR%%/etc/wxpython/core/workspace.py +%%GRASS_INST_DIR%%/etc/wxpython/core/workspace.pyc +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/manager.py +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/manager.pyc +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/sqlbuilder.py +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/sqlbuilder.pyc +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/vinfo.py +%%GRASS_INST_DIR%%/etc/wxpython/dbmgr/vinfo.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gcp/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/gcp/manager.py +%%GRASS_INST_DIR%%/etc/wxpython/gcp/manager.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gcp/mapdisplay.py +%%GRASS_INST_DIR%%/etc/wxpython/gcp/mapdisplay.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gcp/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/gcp/toolbars.pyc %%GRASS_INST_DIR%%/etc/wxpython/gis_set.py %%GRASS_INST_DIR%%/etc/wxpython/gis_set.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/__init__.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/__init__.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/colorrules.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/colorrules.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm_base.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm_base.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm_dialogs.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/dbm_dialogs.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/debug.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/debug.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/disp_print.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/disp_print.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcmd.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcmd.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcpmanager.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcpmanager.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcpmapdisp.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gcpmapdisp.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gdialogs.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gdialogs.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/ghelp.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/ghelp.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/globalvar.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/globalvar.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gmodeler.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gmodeler.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/goutput.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/goutput.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gpyshell.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gpyshell.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gselect.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/gselect.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/histogram.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/histogram.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/layertree.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/layertree.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/location_wizard.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/location_wizard.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_command.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_command.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_vdigit.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_vdigit.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_window.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mapdisp_window.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mcalc_builder.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/mcalc_builder.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menu.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menu.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menudata.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menudata.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menuform.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/menuform.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_mapdisp.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_mapdisp.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_preferences.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_preferences.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_tools.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/nviz_tools.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/ogc_services.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/ogc_services.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/preferences.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/preferences.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/profile.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/profile.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/prompt.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/prompt.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/psmap.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/psmap.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/psmap_dialogs.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/psmap_dialogs.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/render.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/render.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/sqlbuilder.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/sqlbuilder.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/states.txt -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/toolbars.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/toolbars.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/units.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/units.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/utils.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/utils.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/vclean.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/vclean.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/vdigit.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/vdigit.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/workspace.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/workspace.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxnviz.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxnviz.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxvdigit.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxvdigit.pyc -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxvdriver.py -%%GRASS_INST_DIR%%/etc/wxpython/gui_modules/wxvdriver.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/frame.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/frame.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/menudata.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/menudata.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/model.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/model.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/preferences.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/preferences.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/gmodeler/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/forms.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/forms.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/ghelp.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/ghelp.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/goutput.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/goutput.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/gselect.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/gselect.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/mapdisp.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/mapdisp.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/mapwindow.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/mapwindow.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/menu.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/menu.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/preferences.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/preferences.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/prompt.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/prompt.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/widgets.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/widgets.pyc %%GRASS_INST_DIR%%/etc/wxpython/icons/__init__.py %%GRASS_INST_DIR%%/etc/wxpython/icons/__init__.pyc %%GRASS_INST_DIR%%/etc/wxpython/icons/grass2_icons.py @@ -2308,15 +2422,116 @@ %%GRASS_INST_DIR%%/etc/wxpython/icons/icon.pyc %%GRASS_INST_DIR%%/etc/wxpython/icons/silk_icons.py %%GRASS_INST_DIR%%/etc/wxpython/icons/silk_icons.pyc -%%GRASS_INST_DIR%%/etc/wxpython/scripts/d.rast3d -%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.cmd -%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.db -%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.mon -%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.rast -%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.vect -%%GRASS_INST_DIR%%/etc/wxpython/scripts/vkrige +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/frame.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/frame.pyc +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/layertree.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/layertree.pyc +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/menudata.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/menudata.pyc +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/pyshell.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/pyshell.pyc +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/lmgr/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/base.py +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/base.pyc +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/wizard.py +%%GRASS_INST_DIR%%/etc/wxpython/location_wizard/wizard.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/frame.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/frame.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/gprint.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/gprint.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/main.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/main.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/mapwindow.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/mapwindow.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/overlays.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/overlays.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/statusbar.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/statusbar.pyc +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/mapdisp/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/colorrules.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/colorrules.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/extensions.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/extensions.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/histogram.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/histogram.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/mcalc_builder.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/mcalc_builder.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/ogc_services.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/ogc_services.pyc +%%GRASS_INST_DIR%%/etc/wxpython/modules/vclean.py +%%GRASS_INST_DIR%%/etc/wxpython/modules/vclean.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/animation.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/animation.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/main.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/main.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/mapwindow.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/mapwindow.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/preferences.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/preferences.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/tools.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/tools.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/workspace.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/workspace.pyc +%%GRASS_INST_DIR%%/etc/wxpython/nviz/wxnviz.py +%%GRASS_INST_DIR%%/etc/wxpython/nviz/wxnviz.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/frame.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/frame.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/instructions.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/instructions.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/menudata.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/menudata.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/psmap/utils.py +%%GRASS_INST_DIR%%/etc/wxpython/psmap/utils.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.cmd.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.cmd.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.db.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.db.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.mon.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.mon.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.rast.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.rast.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.vect.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/p.vect.pyc +%%GRASS_INST_DIR%%/etc/wxpython/scripts/vkrige.py +%%GRASS_INST_DIR%%/etc/wxpython/scripts/vkrige.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/main.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/main.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/mapwindow.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/mapwindow.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/preferences.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/preferences.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/toolbars.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/toolbars.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/wxdigit.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/wxdigit.pyc +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/wxdisplay.py +%%GRASS_INST_DIR%%/etc/wxpython/vdigit/wxdisplay.pyc %%GRASS_INST_DIR%%/etc/wxpython/wxgui.py %%GRASS_INST_DIR%%/etc/wxpython/wxgui.pyc +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/__init__.py +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/base.py +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/base.pyc +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/dialogs.py +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/dialogs.pyc +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/profile.py +%%GRASS_INST_DIR%%/etc/wxpython/wxplot/profile.pyc %%GRASS_INST_DIR%%/etc/wxpython/xml/grass-gxm.dtd %%GRASS_INST_DIR%%/etc/wxpython/xml/grass-gxw.dtd %%GRASS_INST_DIR%%/etc/wxpython/xml/menudata.xml @@ -2386,7 +2601,6 @@ %%GRASS_INST_DIR%%/include/grass/datetime.h %%GRASS_INST_DIR%%/include/grass/dbmi.h %%GRASS_INST_DIR%%/include/grass/devlib.h -%%GRASS_INST_DIR%%/include/grass/dgl.h %%GRASS_INST_DIR%%/include/grass/dgl/avl.h %%GRASS_INST_DIR%%/include/grass/dgl/graph.h %%GRASS_INST_DIR%%/include/grass/dgl/graph_v1.h @@ -2396,6 +2610,7 @@ %%GRASS_INST_DIR%%/include/grass/dgl/tavl.h %%GRASS_INST_DIR%%/include/grass/dgl/tree.h %%GRASS_INST_DIR%%/include/grass/dgl/type.h +%%GRASS_INST_DIR%%/include/grass/dgl.h %%GRASS_INST_DIR%%/include/grass/dig_atts.h %%GRASS_INST_DIR%%/include/grass/display.h %%GRASS_INST_DIR%%/include/grass/dlg.h @@ -2461,10 +2676,10 @@ %%GRASS_INST_DIR%%/include/grass/readsites.h %%GRASS_INST_DIR%%/include/grass/region_bm.h %%GRASS_INST_DIR%%/include/grass/rowio.h -%%GRASS_INST_DIR%%/include/grass/rtree.h %%GRASS_INST_DIR%%/include/grass/rtree/card.h %%GRASS_INST_DIR%%/include/grass/rtree/index.h %%GRASS_INST_DIR%%/include/grass/rtree/split_q.h +%%GRASS_INST_DIR%%/include/grass/rtree.h %%GRASS_INST_DIR%%/include/grass/search.h %%GRASS_INST_DIR%%/include/grass/segment.h %%GRASS_INST_DIR%%/include/grass/shapefil.h @@ -2488,108 +2703,110 @@ %%GRASS_INST_DIR%%/include/grass/version.h %%GRASS_INST_DIR%%/include/grass/waterglobs.h %%GRASS_INST_DIR%%/include/grass/winname.h -%%GRASS_INST_DIR%%/lib/libgrass_I.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_I.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_I.so -%%GRASS_INST_DIR%%/lib/libgrass_Iortho.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_Iortho.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_Iortho.so -%%GRASS_INST_DIR%%/lib/libgrass_arraystats.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_arraystats.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_arraystats.so -%%GRASS_INST_DIR%%/lib/libgrass_bitmap.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_bitmap.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_bitmap.so -%%GRASS_INST_DIR%%/lib/libgrass_btree.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_btree.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_btree.so -%%GRASS_INST_DIR%%/lib/libgrass_cdhc.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_cairodriver.so +%%GRASS_INST_DIR%%/lib/libgrass_cairodriver.%%VERSION%%.so +%%GRASS_INST_DIR%%/lib/libgrass_cdhc.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_cdhc.so -%%GRASS_INST_DIR%%/lib/libgrass_cluster.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_cluster.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_cluster.so -%%GRASS_INST_DIR%%/lib/libgrass_datetime.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_datetime.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_datetime.so -%%GRASS_INST_DIR%%/lib/libgrass_dbmibase.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dbmibase.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dbmibase.so -%%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dbmiclient.so -%%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dbmidriver.so -%%GRASS_INST_DIR%%/lib/libgrass_dbstubs.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dbstubs.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dbstubs.so -%%GRASS_INST_DIR%%/lib/libgrass_dgl.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dgl.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dgl.so -%%GRASS_INST_DIR%%/lib/libgrass_dig2.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dig2.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dig2.so -%%GRASS_INST_DIR%%/lib/libgrass_display.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_display.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_display.so -%%GRASS_INST_DIR%%/lib/libgrass_driver.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_driver.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_driver.so -%%GRASS_INST_DIR%%/lib/libgrass_dspf.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_dspf.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_dspf.so -%%GRASS_INST_DIR%%/lib/libgrass_edit.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_edit.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_edit.so -%%GRASS_INST_DIR%%/lib/libgrass_form.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_form.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_form.so -%%GRASS_INST_DIR%%/lib/libgrass_g3d.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_g3d.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_g3d.so -%%GRASS_INST_DIR%%/lib/libgrass_gis.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_gis.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_gis.so -%%GRASS_INST_DIR%%/lib/libgrass_gmath.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_gmath.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_gmath.so -%%GRASS_INST_DIR%%/lib/libgrass_gpde.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_gpde.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_gpde.so -%%GRASS_INST_DIR%%/lib/libgrass_gproj.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_gproj.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_gproj.so -%%GRASS_INST_DIR%%/lib/libgrass_interpdata.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_interpdata.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_interpdata.so -%%GRASS_INST_DIR%%/lib/libgrass_interpfl.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_interpfl.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_interpfl.so -%%GRASS_INST_DIR%%/lib/libgrass_iostream.6.4.2.a -%%GRASS_INST_DIR%%/lib/libgrass_ismap.6.4.2.a -%%GRASS_INST_DIR%%/lib/libgrass_lidar.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_iostream.%%VERSION%%.a +%%GRASS_INST_DIR%%/lib/libgrass_ismap.%%VERSION%%.a +%%GRASS_INST_DIR%%/lib/libgrass_lidar.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_lidar.so -%%GRASS_INST_DIR%%/lib/libgrass_linkm.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_linkm.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_linkm.so -%%GRASS_INST_DIR%%/lib/libgrass_lrs.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_lrs.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_lrs.so -%%GRASS_INST_DIR%%/lib/libgrass_manage.6.4.2.a -%%GRASS_INST_DIR%%/lib/libgrass_neta.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_manage.%%VERSION%%.a +%%GRASS_INST_DIR%%/lib/libgrass_neta.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_neta.so -%%GRASS_INST_DIR%%/lib/libgrass_nviz.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_nviz.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_nviz.so -%%GRASS_INST_DIR%%/lib/libgrass_ogsf.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_ogsf.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_ogsf.so -%%GRASS_INST_DIR%%/lib/libgrass_pngdriver.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_pngdriver.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_pngdriver.so -%%GRASS_INST_DIR%%/lib/libgrass_psdriver.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_psdriver.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_psdriver.so -%%GRASS_INST_DIR%%/lib/libgrass_qtree.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_qtree.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_qtree.so -%%GRASS_INST_DIR%%/lib/libgrass_raster.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_raster.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_raster.so -%%GRASS_INST_DIR%%/lib/libgrass_rli.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_rli.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_rli.so -%%GRASS_INST_DIR%%/lib/libgrass_rowio.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_rowio.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_rowio.so -%%GRASS_INST_DIR%%/lib/libgrass_rtree.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_rtree.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_rtree.so -%%GRASS_INST_DIR%%/lib/libgrass_segment.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_segment.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_segment.so -%%GRASS_INST_DIR%%/lib/libgrass_shape.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_shape.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_shape.so -%%GRASS_INST_DIR%%/lib/libgrass_sim.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_sim.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_sim.so -%%GRASS_INST_DIR%%/lib/libgrass_sites.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_sites.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_sites.so -%%GRASS_INST_DIR%%/lib/libgrass_sqlp.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_sqlp.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_sqlp.so -%%GRASS_INST_DIR%%/lib/libgrass_stats.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_stats.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_stats.so -%%GRASS_INST_DIR%%/lib/libgrass_symb.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_symb.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_symb.so -%%GRASS_INST_DIR%%/lib/libgrass_trans.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_trans.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_trans.so -%%GRASS_INST_DIR%%/lib/libgrass_vask.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_vask.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_vask.so -%%GRASS_INST_DIR%%/lib/libgrass_vect.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_vect.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_vect.so -%%GRASS_INST_DIR%%/lib/libgrass_vedit.6.4.2.so +%%GRASS_INST_DIR%%/lib/libgrass_vedit.%%VERSION%%.so %%GRASS_INST_DIR%%/lib/libgrass_vedit.so %%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES/grassmods.mo @@ -2625,6 +2842,9 @@ %%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES/grasswxpy.mo %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES/grassmods.mo +%%GRASS_INST_DIR%%/locale/nl/LC_MESSAGES/grasslibs.mo +%%GRASS_INST_DIR%%/locale/nl/LC_MESSAGES/grassmods.mo +%%GRASS_INST_DIR%%/locale/nl/LC_MESSAGES/grasswxpy.mo %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grassmods.mo %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES/grasswxpy.mo @@ -2634,6 +2854,9 @@ %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES/grassmods.mo %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES/grasswxpy.mo +%%GRASS_INST_DIR%%/locale/ro/LC_MESSAGES/grasslibs.mo +%%GRASS_INST_DIR%%/locale/ro/LC_MESSAGES/grassmods.mo +%%GRASS_INST_DIR%%/locale/ro/LC_MESSAGES/grasswxpy.mo %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grassmods.mo %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES/grasswxpy.mo @@ -2651,6 +2874,7 @@ %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grasslibs.mo %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grassmods.mo %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES/grasswxpy.mo +%%GRASS_INST_DIR%%/man/man1/cairodriver.1 %%GRASS_INST_DIR%%/man/man1/d.ask.1 %%GRASS_INST_DIR%%/man/man1/d.barscale.1 %%GRASS_INST_DIR%%/man/man1/d.colorlist.1 @@ -2760,14 +2984,14 @@ %%GRASS_INST_DIR%%/man/man1/gm_animate.1 %%GRASS_INST_DIR%%/man/man1/gm_georect.1 %%GRASS_INST_DIR%%/man/man1/gm_profile.1 -%%GRASS_INST_DIR%%/man/man1/grass6.1 %%GRASS_INST_DIR%%/man/man1/grass-dbf.1 %%MYSQL%%%%GRASS_INST_DIR%%/man/man1/grass-mesql.1 %%MYSQL%%%%GRASS_INST_DIR%%/man/man1/grass-mysql.1 -%%ODBC%%%%GRASS_INST_DIR%%/man/man1/grass-odbc.1 %%GRASS_INST_DIR%%/man/man1/grass-ogr.1 +%%ODBC%%%%GRASS_INST_DIR%%/man/man1/grass-odbc.1 %%PGSQL%%%%GRASS_INST_DIR%%/man/man1/grass-pg.1 %%SQLITE%%%%GRASS_INST_DIR%%/man/man1/grass-sqlite.1 +%%GRASS_INST_DIR%%/man/man1/grass6.1 %%GRASS_INST_DIR%%/man/man1/helptext.1 %%GRASS_INST_DIR%%/man/man1/htmlmapdriver.1 %%GRASS_INST_DIR%%/man/man1/i.ask.1 @@ -2785,8 +3009,11 @@ %%GRASS_INST_DIR%%/man/man1/i.ifft.1 %%GRASS_INST_DIR%%/man/man1/i.image.mosaic.1 %%GRASS_INST_DIR%%/man/man1/i.in.spotvgt.1 +%%GRASS_INST_DIR%%/man/man1/i.landsat.acca.1 %%GRASS_INST_DIR%%/man/man1/i.landsat.rgb.1 +%%GRASS_INST_DIR%%/man/man1/i.landsat.toar.1 %%GRASS_INST_DIR%%/man/man1/i.maxlik.1 +%%GRASS_INST_DIR%%/man/man1/i.modis.qc.1 %%GRASS_INST_DIR%%/man/man1/i.oif.1 %%GRASS_INST_DIR%%/man/man1/i.ortho.photo.1 %%GRASS_INST_DIR%%/man/man1/i.pca.1 @@ -2920,6 +3147,7 @@ %%GRASS_INST_DIR%%/man/man1/r.out.vrml.1 %%GRASS_INST_DIR%%/man/man1/r.out.vtk.1 %%GRASS_INST_DIR%%/man/man1/r.out.xyz.1 +%%GRASS_INST_DIR%%/man/man1/r.pack.1 %%GRASS_INST_DIR%%/man/man1/r.param.scale.1 %%GRASS_INST_DIR%%/man/man1/r.patch.1 %%GRASS_INST_DIR%%/man/man1/r.plane.1 @@ -2977,6 +3205,7 @@ %%GRASS_INST_DIR%%/man/man1/r.transect.1 %%GRASS_INST_DIR%%/man/man1/r.univar.1 %%GRASS_INST_DIR%%/man/man1/r.univar.sh.1 +%%GRASS_INST_DIR%%/man/man1/r.unpack.1 %%GRASS_INST_DIR%%/man/man1/r.volume.1 %%GRASS_INST_DIR%%/man/man1/r.walk.1 %%GRASS_INST_DIR%%/man/man1/r.water.outlet.1 @@ -3119,6 +3348,7 @@ %%GRASS_INST_DIR%%/man/man1/v.type.1 %%GRASS_INST_DIR%%/man/man1/v.univar.1 %%GRASS_INST_DIR%%/man/man1/v.univar.sh.1 +%%GRASS_INST_DIR%%/man/man1/v.vect.stats.1 %%GRASS_INST_DIR%%/man/man1/v.vol.rst.1 %%GRASS_INST_DIR%%/man/man1/v.voronoi.1 %%GRASS_INST_DIR%%/man/man1/v.what.1 @@ -3128,12 +3358,14 @@ %%GRASS_INST_DIR%%/man/man1/vectorintro.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.Attribute_Table_Manager.1 +%%GRASS_INST_DIR%%/man/man1/wxGUI.Components.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.GCP_Manager.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.Modeler.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.Nviz.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.PsMap.1 %%GRASS_INST_DIR%%/man/man1/wxGUI.Vector_Digitizer.1 %%GRASS_INST_DIR%%/man/man1/xdriver.1 +%%MOTIF%%%%GRASS_INST_DIR%%/man/man1/xganim.1 %%GRASS_INST_DIR%%/scripts/d.correlate %%GRASS_INST_DIR%%/scripts/d.font.freetype %%GRASS_INST_DIR%%/scripts/d.m @@ -3184,11 +3416,13 @@ %%GRASS_INST_DIR%%/scripts/r.mask %%GRASS_INST_DIR%%/scripts/r.out.gdal.sh %%GRASS_INST_DIR%%/scripts/r.out.xyz +%%GRASS_INST_DIR%%/scripts/r.pack %%GRASS_INST_DIR%%/scripts/r.plane %%GRASS_INST_DIR%%/scripts/r.reclass.area %%GRASS_INST_DIR%%/scripts/r.shaded.relief %%GRASS_INST_DIR%%/scripts/r.tileset %%GRASS_INST_DIR%%/scripts/r.univar.sh +%%GRASS_INST_DIR%%/scripts/r.unpack %%GRASS_INST_DIR%%/scripts/r3.mapcalculator %%GRASS_INST_DIR%%/scripts/v.build.all %%GRASS_INST_DIR%%/scripts/v.centroids @@ -3218,10 +3452,10 @@ %%GRASS_INST_DIR%%/scripts/v.report %%GRASS_INST_DIR%%/scripts/v.univar.sh %%GRASS_INST_DIR%%/scripts/v.what.vect -%%GRASS_INST_DIR%%/tools/g.html2man/g.html2man +%%GRASS_INST_DIR%%/tools/g.echo +%%GRASS_INST_DIR%%/tools/g.html2man %%GRASS_INST_DIR%%/tools/mkhtml.sh %%GRASS_INST_DIR%%/translators.csv -@dirrm %%GRASS_INST_DIR%%/tools/g.html2man @dirrm %%GRASS_INST_DIR%%/tools @dirrm %%GRASS_INST_DIR%%/scripts @dirrm %%GRASS_INST_DIR%%/man/man1 @@ -3238,12 +3472,16 @@ @dirrm %%GRASS_INST_DIR%%/locale/sl @dirrm %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES @dirrm %%GRASS_INST_DIR%%/locale/ru +@dirrm %%GRASS_INST_DIR%%/locale/ro/LC_MESSAGES +@dirrm %%GRASS_INST_DIR%%/locale/ro @dirrm %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES @dirrm %%GRASS_INST_DIR%%/locale/pt_br @dirrm %%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES @dirrm %%GRASS_INST_DIR%%/locale/pt @dirrm %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES @dirrm %%GRASS_INST_DIR%%/locale/pl +@dirrm %%GRASS_INST_DIR%%/locale/nl/LC_MESSAGES +@dirrm %%GRASS_INST_DIR%%/locale/nl @dirrm %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES @dirrm %%GRASS_INST_DIR%%/locale/mr @dirrm %%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES @@ -3283,10 +3521,21 @@ @dirrm %%GRASS_INST_DIR%%/include @dirrm %%GRASS_INST_DIR%%/fonts @dirrm %%GRASS_INST_DIR%%/etc/wxpython/xml +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/wxplot +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/vdigit @dirrm %%GRASS_INST_DIR%%/etc/wxpython/scripts -@dirrm %%GRASS_INST_DIR%%/etc/wxpython/icons/silk +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/psmap +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/nviz +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/modules +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/mapdisp +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/location_wizard +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/lmgr @dirrm %%GRASS_INST_DIR%%/etc/wxpython/icons -@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gui_modules +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gui_core +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gmodeler +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gcp +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/dbmgr +@dirrm %%GRASS_INST_DIR%%/etc/wxpython/core @dirrm %%GRASS_INST_DIR%%/etc/wxpython/compat @dirrm %%GRASS_INST_DIR%%/etc/wxpython @dirrm %%GRASS_INST_DIR%%/etc/v.digit @@ -3315,6 +3564,11 @@ @dirrm %%GRASS_INST_DIR%%/etc/lister @dirrm %%GRASS_INST_DIR%%/etc/i.oif @dirrm %%GRASS_INST_DIR%%/etc/gui/scripts +@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/geology +@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/extra +@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/demo +@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/basic +@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols @dirrm %%GRASS_INST_DIR%%/etc/gui/images @dirrm %%GRASS_INST_DIR%%/etc/gui/icons/silk @dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass2 --Multipart=_Sun__15_Dec_2013_04_28_17_+0900_Wb.91DQa5vQ3cUWa-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:40:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFCD74B9 for ; Sat, 14 Dec 2013 19:40:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B06501891 for ; Sat, 14 Dec 2013 19:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJe347053111 for ; Sat, 14 Dec 2013 19:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJe31n053110; Sat, 14 Dec 2013 19:40:03 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 19:40:03 GMT Message-Id: <201312141940.rBEJe31n053110@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/184234: databases/gtksql: Fix build on -current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:40:03 -0000 The following reply was made to PR ports/184234; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184234: databases/gtksql: Fix build on -current Date: Sun, 15 Dec 2013 04:28:21 +0900 This is a multi-part message in MIME format. --Multipart=_Sun__15_Dec_2013_04_28_21_+0900_bW+fw0ZUyafevU7/ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Sun__15_Dec_2013_04_28_21_+0900_bW+fw0ZUyafevU7/ Content-Type: text/x-diff; name="databases_gtksql.diff" Content-Disposition: attachment; filename="databases_gtksql.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/databases/gtksql/Makefile databases/gtksql/Makefile --- /usr/ports/databases/gtksql/Makefile 2013-12-12 07:58:07.000000000 +0900 +++ databases/gtksql/Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -3,73 +3,80 @@ PORTNAME= gtksql PORTVERSION= 0.4.5 +PORTREVISION= 1 CATEGORIES= databases -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-testing/${PORTNAME}-${PORTVERSION}/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-testing/${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Graphical query tool for PostgreSQL/MySQL/SQLite -LICENSE= GPLv2 +LICENSE= GPLv2 # (or later) -LIB_DEPENDS= libavahi-client.so:${PORTSDIR}/net/avahi-app +LIB_DEPENDS= libscintilla.so:${PORTSDIR}/x11-toolkits/scintilla +RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -GNU_CONFIGURE= yes -USE_AUTOTOOLS= libtool -USES= pkgconfig gmake -USE_GNOME= gtk20 -LDFLAGS+= -L${LOCALBASE}/lib -lgmodule-2.0 +OPTIONS_DEFINE= AVAHI +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE +OPTIONS_DEFAULT= SQLITE -MAN1= ${PORTNAME}.1 -PORTDOCS= AUTHORS ChangeLog NEWS README TODO +USES= gettext gmake pkgconfig +USE_GNOME= gtk20 +GNU_CONFIGURE= yes +MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ + AUTOHEADER="${TRUE}" -OPTIONS_MULTI= DB -OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE3 -OPTIONS_DEFAULT= MYSQL PGSQL SQLITE3 +CPPFLAGS+= -I${LOCALBASE}/include/scintilla -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lscintilla -lscintilla_lexers -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes +.if ${PORT_OPTIONS:MAVAHI} +LIB_DEPENDS+= libavahi-common.so:${PORTSDIR}/net/avahi-app .else -CONFIGURE_ARGS+=--without-mysql +CONFIGURE_ARGS+= --without-avahi .endif -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" +.if ${PORT_OPTIONS:MMYSQL} +USE_MYSQL= yes +CPPFLAGS+= -I${LOCALBASE}/include/mysql +LDFLAGS+= -L${LOCALBASE}/lib/mysql .else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " +CONFIGURE_ARGS+= --without-mysql .endif .if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes .else -CONFIGURE_ARGS+=--without-postgresql +CONFIGURE_ARGS+= --without-postgresql .endif -.if ${PORT_OPTIONS:MSQLITE3} -LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3 +.if ${PORT_OPTIONS:MSQLITE} +USE_SQLITE= yes .else -CONFIGURE_ARGS+=--without-sqlite +CONFIGURE_ARGS+= --without-sqlite .endif post-patch: - @${REINPLACE_CMD} -e 's|/usr/include/mysql|${LOCALBASE}/include/mysql|g' \ - -e 's|/usr/include/postgresql|${LOCALBASE}/include/postgresql/server|g' \ + @${REINPLACE_CMD} -e \ + '/-lstdc++/s|^|#| ; \ + /scintilla.a/s|^|#| ; \ + /\/scintilla\/include/s|^|#| ; \ + /ac_header/s|postgres.h|libpq-fe.h| ; \ + /^packagedatadir/s|=.*|=share/gtksql|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} 's|make|$$(MAKE)|' \ - ${WRKSRC}/scintilla/Makefile.in - @${REINPLACE_CMD} 's|-Os|${CFLAGS}|g' \ - ${WRKSRC}/scintilla/gtk/makefile - -post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -.for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif + @${REINPLACE_CMD} -e \ + 's|-O1|| ; \ + s|-g$$|-DGTK|' \ + ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e \ + 's|||' \ + ${WRKSRC}/src/d_postgres_f.c + @${REINPLACE_CMD} -e \ + 's|mozilla|xdg-open|' \ + ${WRKSRC}/src/gtkui-object.c + @${REINPLACE_CMD} -e \ + 's|/usr/local/gtksql|${PREFIX}/lib/gtksql|' \ + ${WRKSRC}/src/plugins.c .include diff -urN /usr/ports/databases/gtksql/files/patch-Makefile.in databases/gtksql/files/patch-Makefile.in --- /usr/ports/databases/gtksql/files/patch-Makefile.in 2013-11-06 22:04:17.000000000 +0900 +++ databases/gtksql/files/patch-Makefile.in 2013-12-15 04:00:00.000000000 +0900 @@ -1,20 +1,19 @@ --- Makefile.in.orig 2013-10-08 11:01:04.306764000 +0200 +++ Makefile.in 2013-10-08 11:27:51.000000000 +0200 -@@ -728,7 +728,7 @@ +@@ -237,14 +237,12 @@ + target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-SUBDIRS = Pics po scintilla intl src pixmaps man gnome +-gtksqldocdir = ${prefix}/doc/gtksql ++SUBDIRS = Pics po src pixmaps man gnome ++gtksqldocdir = ${docdir} + gtksqldoc_DATA = \ + README\ +- COPYING\ + AUTHORS\ + ChangeLog\ +- INSTALL\ + NEWS\ + TODO - info-am: - --install-data-am: install-gtksqldocDATA -+install-data-am: - - install-dvi: install-dvi-recursive - -@@ -764,7 +764,7 @@ - - ps-am: - --uninstall-am: uninstall-gtksqldocDATA -+uninstall-am: - - .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip diff -urN /usr/ports/databases/gtksql/pkg-plist databases/gtksql/pkg-plist --- /usr/ports/databases/gtksql/pkg-plist 2013-11-06 22:04:17.000000000 +0900 +++ databases/gtksql/pkg-plist 2013-12-15 04:00:00.000000000 +0900 @@ -1,35 +1,44 @@ bin/gtksql +man/man1/gtksql.1.gz share/applications/gtksql.desktop -%%NLS%%share/locale/de_DE/LC_MESSAGES/gtksql.mo -share/pixmaps/connect-grey.xpm -share/pixmaps/connect.png -share/pixmaps/connect.xpm -share/pixmaps/delete-grey.xpm -share/pixmaps/delete.xpm -share/pixmaps/disconnect-grey.xpm -share/pixmaps/disconnect.png -share/pixmaps/disconnect.xpm -share/pixmaps/export-grey.xpm -share/pixmaps/export.xpm -share/pixmaps/gtksql.png -share/pixmaps/gtksql.xpm -share/pixmaps/gtksql_db.png -share/pixmaps/gtksql_field.png -share/pixmaps/gtksql_gnome_icon.png -share/pixmaps/gtksql_table.png -share/pixmaps/new-grey.xpm -share/pixmaps/new.xpm -share/pixmaps/open-grey.xpm -share/pixmaps/open.xpm -share/pixmaps/question.xpm -share/pixmaps/refresh-grey.xpm -share/pixmaps/refresh.xpm -share/pixmaps/rename-grey.xpm -share/pixmaps/rename.xpm -share/pixmaps/save-grey.xpm -share/pixmaps/save.xpm -share/pixmaps/send-grey.xpm -share/pixmaps/send.xpm -share/pixmaps/warning.xpm -%%NLS%%@dirrmtry share/locale/de_DE/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/de_DE +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%DATADIR%%/pixmaps/connect-grey.xpm +%%DATADIR%%/pixmaps/connect.png +%%DATADIR%%/pixmaps/connect.xpm +%%DATADIR%%/pixmaps/delete-grey.xpm +%%DATADIR%%/pixmaps/delete.xpm +%%DATADIR%%/pixmaps/disconnect-grey.xpm +%%DATADIR%%/pixmaps/disconnect.png +%%DATADIR%%/pixmaps/disconnect.xpm +%%DATADIR%%/pixmaps/export-grey.xpm +%%DATADIR%%/pixmaps/export.xpm +%%DATADIR%%/pixmaps/gtksql.png +%%DATADIR%%/pixmaps/gtksql.xpm +%%DATADIR%%/pixmaps/gtksql_db.png +%%DATADIR%%/pixmaps/gtksql_field.png +%%DATADIR%%/pixmaps/gtksql_gnome_icon.png +%%DATADIR%%/pixmaps/gtksql_table.png +%%DATADIR%%/pixmaps/new-grey.xpm +%%DATADIR%%/pixmaps/new.xpm +%%DATADIR%%/pixmaps/open-grey.xpm +%%DATADIR%%/pixmaps/open.xpm +%%DATADIR%%/pixmaps/question.xpm +%%DATADIR%%/pixmaps/refresh-grey.xpm +%%DATADIR%%/pixmaps/refresh.xpm +%%DATADIR%%/pixmaps/rename-grey.xpm +%%DATADIR%%/pixmaps/rename.xpm +%%DATADIR%%/pixmaps/save-grey.xpm +%%DATADIR%%/pixmaps/save.xpm +%%DATADIR%%/pixmaps/send-grey.xpm +%%DATADIR%%/pixmaps/send.xpm +%%DATADIR%%/pixmaps/warning.xpm +share/locale/de_DE/LC_MESSAGES/gtksql.mo +@dirrmtry share/locale/de_DE/LC_MESSAGES +@dirrmtry share/locale/de_DE +@dirrm %%DATADIR%%/pixmaps +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% --Multipart=_Sun__15_Dec_2013_04_28_21_+0900_bW+fw0ZUyafevU7/-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 19:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0A1C4B8 for ; Sat, 14 Dec 2013 19:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B10871890 for ; Sat, 14 Dec 2013 19:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEJe2aK053105 for ; Sat, 14 Dec 2013 19:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEJe2qF053104; Sat, 14 Dec 2013 19:40:02 GMT (envelope-from gnats) Date: Sat, 14 Dec 2013 19:40:02 GMT Message-Id: <201312141940.rBEJe2qF053104@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/184246: emulators/mame: Update to version 0.151 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 19:40:02 -0000 The following reply was made to PR ports/184246; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184246: emulators/mame: Update to version 0.151 Date: Sun, 15 Dec 2013 04:28:24 +0900 This is a multi-part message in MIME format. --Multipart=_Sun__15_Dec_2013_04_28_24_+0900_+023D1cjUAUo9x31 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Sun__15_Dec_2013_04_28_24_+0900_+023D1cjUAUo9x31 Content-Type: text/x-diff; name="emulators_mame.diff" Content-Disposition: attachment; filename="emulators_mame.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/emulators/mame/Makefile emulators/mame/Makefile --- /usr/ports/emulators/mame/Makefile 2013-11-25 18:57:44.000000000 +0900 +++ emulators/mame/Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -2,15 +2,12 @@ # $FreeBSD: head/emulators/mame/Makefile 334792 2013-11-24 21:09:22Z mva $ PORTNAME= mame -PORTVERSION= 0.150${PATCHSUFFIX} -PORTREVISION= 1 +PORTVERSION= 0.151${PATCHSUFFIX} CATEGORIES= emulators -MASTER_SITES= SF/${PORTNAME}.mirror/${PORTNAME:U}%20${PORTVERSION} \ - http://mame.mirrors.zippykid.com/releases/ \ +MASTER_SITES= http://mame.mirrors.zippykid.com/releases/ \ http://emumovies.com/aarongiles/releases/ \ http://mamedev.org/updates/:patchsets -DISTNAME= ${PORTNAME}${PORTVERSION:S/.//:C/p[0-9]*$//}s -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ +DISTFILES= ${PORTNAME}${PORTVERSION:S/.//:C/p[0-9]*$//}s.zip \ ${UPDATE_PATCHES:C/$/.zip:patchsets/} DIST_SUBDIR= ${PORTNAME} @@ -23,26 +20,22 @@ libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= liberation-fonts-ttf>=0:${PORTSDIR}/x11-fonts/liberation-fonts-ttf -OPTIONS_DEFINE= SDL2 DEBUG DOCS EXAMPLES -OPTIONS_RADIO= BUILTIN_DEBUGGER -OPTIONS_RADIO_BUILTIN_DEBUGGER= GTK2 QT4 +OPTIONS_DEFINE= BUILTIN_DEBUGGER SDL2 DEBUG DOCS EXAMPLES SDL2_DESC= SDL2 libraries support BUILTIN_DEBUGGER_DESC= Builtin debugger support NO_WRKSUBDIR= yes -USE_ZIP= yes -USES= gmake pkgconfig shebangfix dos2unix +USES= gmake pkgconfig shebangfix SHEBANG_FILES= src/emu/cpu/m6502/m6502make.py \ src/emu/cpu/m6809/m6809make.py \ src/emu/cpu/mcs96/mcs96make.py \ src/emu/cpu/tms57002/tmsmake.py -DOS2UNIX_FILES= src/osd/sdl/input.c \ - src/osd/sdl/testkeys.c USE_XORG= xext xi xinerama xrender USE_GL= gl -USE_PYTHON_BUILD=-2.7 +USE_PYTHON_BUILD= -2.7 MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ + LD="${CXX}" PYTHON="${PYTHON_CMD}" \ OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ TARGET="${PORTNAME}" FULLNAME="${PORTNAME}" MAKEFILE= makefile @@ -60,6 +53,12 @@ .include +.if ${PORT_OPTIONS:MBUILTIN_DEBUGGER} +USE_QT4= gui moc_build qmake_build +.else +MAKE_ENV+= NO_DEBUGGER=1 NO_USE_QTDEBUG=1 +.endif + .if ${PORT_OPTIONS:MSDL2} USE_SDL= sdl2 ttf2 MAKE_ENV+= SDL_LIBVER="sdl2" @@ -71,43 +70,15 @@ MAKE_ENV+= DEBUG=1 .endif -.if ${PORT_OPTIONS:MGTK2} -USE_GNOME= gtk20 gconf2 -MAKE_ENV+= GTK_INCPATH="$$(pkg-config --cflags-only-I gtk+-2.0 gconf-2.0)" \ - GTK_CCOMFLAGS="$$(pkg-config --cflags-only-other gtk+-2.0 gconf-2.0)" \ - GTK_LIBS="$$(pkg-config --libs gtk+-2.0 gconf-2.0)" -.else -MAKE_ENV+= GTK_INCPATH="" \ - GTK_CCOMFLAGS="" \ - GTK_LIBS="" -.endif - -.if ${PORT_OPTIONS:MQT4} -USE_QT4= gui moc_build qmake_build -.else -MAKE_ENV+= NO_USE_QTDEBUG=1 -.endif - -.if empty(PORT_OPTIONS:MGTK2) && empty(PORT_OPTIONS:MQT4) -MAKE_ENV+= NO_DEBUGGER=1 -.endif - .include -.if exists(/usr/bin/clang) && ${OSVERSION} >= 900014 -CC= /usr/bin/clang -CPP= /usr/bin/clang-cpp -CXX= /usr/bin/clang++ -.else -USE_GCC= yes -.endif - .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not install on ia64, powerpc, or sparc64 .endif post-extract: - @${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${WRKDIR}/mame.zip ${EXTRACT_AFTER_ARGS} + @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} mame.zip \ + ${EXTRACT_AFTER_ARGS}) @${RM} -f ${WRKDIR}/mame.zip # Use post-extract target to get in before dos2unix-isation .if defined(UPDATE_PATCHES) @@ -120,14 +91,14 @@ post-patch: @${REINPLACE_CMD} -e \ - 's|^BUILD_EXPAT|# BUILD_EXPAT| ; \ - s|^BUILD_ZLIB|# BUILD_ZLIB| ; \ - s|^BUILD_FLAC|# BUILD_FLAC| ; \ - s|^BUILD_JPEGLIB|# BUILD_JPEGLIB| ; \ - s| = @gcc| := $$(CC)| ; \ - s| = @g++| := $$(CXX)| ; \ + '/^BUILD_EXPAT /s|^|#| ; \ + /^BUILD_ZLIB /s|^|#| ; \ + /^BUILD_FLAC /s|^|#| ; \ + /^BUILD_JPEGLIB /s|^|#| ; \ + /^CC /s|^|#| ; \ + /^LD /s|^|#| ; \ + /^PYTHON /s|^|#| ; \ s|-O$$(OPTIMIZE)|| ; \ - s| = @python| = ${PYTHON_CMD}| ; \ /--warn-common/s|= -Wl,|= $$(GCC_LDFLAGS) -Wl,| ; \ /LDFLAGS/s|-s|| ; \ /LIBS/s|-lstdc++|| ; \ @@ -136,10 +107,7 @@ '/realloc/s|^|// |' ${WRKSRC}/src/emu/emualloc.h @${REINPLACE_CMD} -e \ '/LIBS/s|-lpthread|-pthread| ; \ - /-system/s|/usr/local/|${LOCALBASE}/| ; \ - /--cflags-only-I gtk+-2.0/s|=.*|= $$(GTK_INCPATH)| ; \ - /--cflags-only-other gtk+-2.0/s|=.*|= $$(GTK_CCOMFLAGS)| ; \ - /--libs gtk+-2.0/s|=.*|= $$(GTK_LIBS)| ; \ + /-isystem/s|^|#| ; \ /X11R6/s|^|#|' ${WRKSRC}/src/osd/sdl/sdl.mak do-install: diff -urN /usr/ports/emulators/mame/distinfo emulators/mame/distinfo --- /usr/ports/emulators/mame/distinfo 2013-11-06 22:06:22.000000000 +0900 +++ emulators/mame/distinfo 2013-12-15 04:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mame/mame0150s.zip) = e672b033baa001e1a909498b6c9206c68d0456fd883e410ad50f1a4f4c2253f7 -SIZE (mame/mame0150s.zip) = 35999158 +SHA256 (mame/mame0151s.zip) = 84ae6a40ea4652bb2211504704e479530ab0182fe5a18641a5dca6d80e4ed72e +SIZE (mame/mame0151s.zip) = 36052471 diff -urN /usr/ports/emulators/mame/files/patch-src__osd__sdl__input.c emulators/mame/files/patch-src__osd__sdl__input.c --- /usr/ports/emulators/mame/files/patch-src__osd__sdl__input.c 2013-11-06 22:06:22.000000000 +0900 +++ emulators/mame/files/patch-src__osd__sdl__input.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- src/osd/sdl/input.c.orig -+++ src/osd/sdl/input.c -@@ -720,7 +720,11 @@ - mame_printf_verbose("Joystick: Start initialization\n"); - for (physical_stick = 0; physical_stick < SDL_NumJoysticks(); physical_stick++) - { -+#if (SDLMAME_SDL2) -+ char *joy_name = remove_spaces(machine, SDL_JoystickNameForIndex(physical_stick)); -+#else - char *joy_name = remove_spaces(machine, SDL_JoystickName(physical_stick)); -+#endif - - devmap_register(&joy_map, physical_stick, joy_name); - } diff -urN /usr/ports/emulators/mame/files/patch-src__osd__sdl__testkeys.c emulators/mame/files/patch-src__osd__sdl__testkeys.c --- /usr/ports/emulators/mame/files/patch-src__osd__sdl__testkeys.c 2013-11-06 22:06:22.000000000 +0900 +++ emulators/mame/files/patch-src__osd__sdl__testkeys.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,18 +0,0 @@ ---- src/osd/sdl/testkeys.c.orig -+++ src/osd/sdl/testkeys.c -@@ -146,7 +146,6 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.scancode), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, - ""); - lasttext[0] = 0; - #else -@@ -165,7 +164,6 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.scancode), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, - lasttext); - #else - memset(buf, 0, 19); diff -urN /usr/ports/emulators/mame/pkg-plist emulators/mame/pkg-plist --- /usr/ports/emulators/mame/pkg-plist 2013-11-06 22:06:22.000000000 +0900 +++ emulators/mame/pkg-plist 2013-12-15 04:00:00.000000000 +0900 @@ -11,6 +11,7 @@ %%PORTDOCS%%%%DOCSDIR%%/docs/hlsl.txt %%PORTDOCS%%%%DOCSDIR%%/docs/imgtool.txt %%PORTDOCS%%%%DOCSDIR%%/docs/license.txt +%%PORTDOCS%%%%DOCSDIR%%/docs/licenseinfo.txt %%PORTDOCS%%%%DOCSDIR%%/docs/m6502.txt %%PORTDOCS%%%%DOCSDIR%%/docs/mame.txt %%PORTDOCS%%%%DOCSDIR%%/docs/newvideo.txt @@ -127,7 +128,9 @@ %%DATADIR%%/hash/ibm5140.xml %%DATADIR%%/hash/ibm5150.xml %%DATADIR%%/hash/ibm5150_cass.xml +%%DATADIR%%/hash/ibm5160_flop.xml %%DATADIR%%/hash/ibm5170.xml +%%DATADIR%%/hash/ibm5170_cdrom.xml %%DATADIR%%/hash/ibmpcjr_cart.xml %%DATADIR%%/hash/ibmpcjr_flop.xml %%DATADIR%%/hash/interact.xml --Multipart=_Sun__15_Dec_2013_04_28_24_+0900_+023D1cjUAUo9x31 Content-Type: text/x-diff; name="emulators_mess.diff" Content-Disposition: attachment; filename="emulators_mess.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/emulators/mess/Makefile emulators/mess/Makefile --- /usr/ports/emulators/mess/Makefile 2013-12-15 03:47:03.000000000 +0900 +++ emulators/mess/Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -2,15 +2,12 @@ # $FreeBSD: head/emulators/mess/Makefile 336466 2013-12-14 18:34:01Z mva $ PORTNAME= mess -PORTVERSION= 0.150${PATCHSUFFIX} -PORTREVISION= 1 +PORTVERSION= 0.151${PATCHSUFFIX} CATEGORIES= emulators -MASTER_SITES= SF/mame.mirror/MAME%20${PORTVERSION} \ - http://mame.mirrors.zippykid.com/releases/ \ +MASTER_SITES= http://mame.mirrors.zippykid.com/releases/ \ http://emumovies.com/aarongiles/releases/ \ http://mamedev.org/updates/:patchsets -DISTNAME= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ +DISTFILES= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s.zip \ ${UPDATE_PATCHES:C/$/.zip:patchsets/} DIST_SUBDIR= mame @@ -23,26 +20,22 @@ libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= liberation-fonts-ttf>=0:${PORTSDIR}/x11-fonts/liberation-fonts-ttf -OPTIONS_DEFINE= SDL2 DEBUG DOCS EXAMPLES -OPTIONS_RADIO= BUILTIN_DEBUGGER -OPTIONS_RADIO_BUILTIN_DEBUGGER= GTK2 QT4 +OPTIONS_DEFINE= BUILTIN_DEBUGGER SDL2 DEBUG DOCS EXAMPLES SDL2_DESC= SDL2 libraries support BUILTIN_DEBUGGER_DESC= Builtin debugger support NO_WRKSUBDIR= yes -USE_ZIP= yes -USES= gmake pkgconfig shebangfix dos2unix +USES= gmake pkgconfig shebangfix SHEBANG_FILES= src/emu/cpu/m6502/m6502make.py \ src/emu/cpu/m6809/m6809make.py \ src/emu/cpu/mcs96/mcs96make.py \ src/emu/cpu/tms57002/tmsmake.py -DOS2UNIX_FILES= src/osd/sdl/input.c \ - src/osd/sdl/testkeys.c USE_XORG= xext xi xinerama xrender USE_GL= gl -USE_PYTHON_BUILD=yes +USE_PYTHON_BUILD= -2.7 MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ + LD="${CXX}" PYTHON="${PYTHON_CMD}" \ OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ TARGET="${PORTNAME}" FULLNAME="${PORTNAME}" MAKEFILE= makefile @@ -60,6 +53,12 @@ .include +.if ${PORT_OPTIONS:MBUILTIN_DEBUGGER} +USE_QT4= gui moc_build qmake_build +.else +MAKE_ENV+= NO_DEBUGGER=1 NO_USE_QTDEBUG=1 +.endif + .if ${PORT_OPTIONS:MSDL2} USE_SDL= sdl2 ttf2 MAKE_ENV+= SDL_LIBVER="sdl2" @@ -71,43 +70,15 @@ MAKE_ENV+= DEBUG=1 .endif -.if ${PORT_OPTIONS:MGTK2} -USE_GNOME= gtk20 gconf2 -MAKE_ENV+= GTK_INCPATH="$$(pkg-config --cflags-only-I gtk+-2.0 gconf-2.0)" \ - GTK_CCOMFLAGS="$$(pkg-config --cflags-only-other gtk+-2.0 gconf-2.0)" \ - GTK_LIBS="$$(pkg-config --libs gtk+-2.0 gconf-2.0)" -.else -MAKE_ENV+= GTK_INCPATH="" \ - GTK_CCOMFLAGS="" \ - GTK_LIBS="" -.endif - -.if ${PORT_OPTIONS:MQT4} -USE_QT4= gui moc_build qmake_build -.else -MAKE_ENV+= NO_USE_QTDEBUG=1 -.endif - -.if empty(PORT_OPTIONS:MGTK2) && empty(PORT_OPTIONS:MQT4) -MAKE_ENV+= NO_DEBUGGER=1 -.endif - .include -.if exists(/usr/bin/clang) && ${OSVERSION} >= 900014 -CC= /usr/bin/clang -CPP= /usr/bin/clang-cpp -CXX= /usr/bin/clang++ -.else -USE_GCC= yes -.endif - .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not install on ia64, powerpc, or sparc64 .endif post-extract: - @${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${WRKDIR}/mame.zip ${EXTRACT_AFTER_ARGS} + @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} mame.zip \ + ${EXTRACT_AFTER_ARGS}) @${RM} -f ${WRKDIR}/mame.zip # Use post-extract target to get in before dos2unix-isation .if defined(UPDATE_PATCHES) @@ -120,13 +91,13 @@ post-patch: @${REINPLACE_CMD} -e \ - 's|^BUILD_EXPAT|# BUILD_EXPAT| ; \ - s|^BUILD_ZLIB|# BUILD_ZLIB| ; \ - s|^BUILD_FLAC|# BUILD_FLAC| ; \ - s|^BUILD_JPEGLIB|# BUILD_JPEGLIB| ; \ - s| = @gcc| := $$(CC)| ; \ - s| = @g++| := $$(CXX)| ; \ - s| = @python| := @${PYTHON_CMD}| ; \ + '/^BUILD_EXPAT /s|^|#| ; \ + /^BUILD_ZLIB /s|^|#| ; \ + /^BUILD_FLAC /s|^|#| ; \ + /^BUILD_JPEGLIB /s|^|#| ; \ + /^CC /s|^|#| ; \ + /^LD /s|^|#| ; \ + /^PYTHON /s|^|#| ; \ s|-O$$(OPTIMIZE)|| ; \ /--warn-common/s|= -Wl,|= $$(GCC_LDFLAGS) -Wl,| ; \ /LDFLAGS/s|-s|| ; \ @@ -136,29 +107,26 @@ '/realloc/s|^|// |' ${WRKSRC}/src/emu/emualloc.h @${REINPLACE_CMD} -e \ '/LIBS/s|-lpthread|-pthread| ; \ - /-system/s|/usr/local/|${LOCALBASE}/| ; \ - /--cflags-only-I gtk+-2.0/s|=.*|= $$(GTK_INCPATH)| ; \ - /--cflags-only-other gtk+-2.0/s|=.*|= $$(GTK_CCOMFLAGS)| ; \ - /--libs gtk+-2.0/s|=.*|= $$(GTK_LIBS)| ; \ + /-isystem/s|^|#| ; \ /X11R6/s|^|#|' ${WRKSRC}/src/osd/sdl/sdl.mak do-install: (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ - ${STAGEDIR}/${PREFIX}/bin) - @${MKDIR} ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME} + ${STAGEDIR}${PREFIX}/bin) + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} .for F in castool chdman imgtool jedutil ldresample ldverify romcmp \ testkeys unidasm (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${F} \ - ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}) + ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}) .endfor - @${MKDIR} ${STAGEDIR}/${DATADIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}/${DATADIR}) - @(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}/${DATADIR}) + @${MKDIR} ${STAGEDIR}${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR}) @(cd ${WRKSRC}/src/osd/sdl && ${COPYTREE_SHARE} keymaps \ - ${STAGEDIR}/${DATADIR}) - @${MKDIR} ${STAGEDIR}/${DOCSDIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}/${DOCSDIR}) - @${MKDIR} ${STAGEDIR}/${EXAMPLESDIR} - (cd ${FILESDIR} && ${INSTALL_DATA} mess.ini ${STAGEDIR}/${EXAMPLESDIR}) + ${STAGEDIR}${DATADIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${FILESDIR} && ${INSTALL_DATA} mess.ini ${STAGEDIR}${EXAMPLESDIR}) .include diff -urN /usr/ports/emulators/mess/distinfo emulators/mess/distinfo --- /usr/ports/emulators/mess/distinfo 2013-11-06 22:06:20.000000000 +0900 +++ emulators/mess/distinfo 2013-12-15 04:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (mame/mame0150s.zip) = e672b033baa001e1a909498b6c9206c68d0456fd883e410ad50f1a4f4c2253f7 -SIZE (mame/mame0150s.zip) = 35999158 +SHA256 (mame/mame0151s.zip) = 84ae6a40ea4652bb2211504704e479530ab0182fe5a18641a5dca6d80e4ed72e +SIZE (mame/mame0151s.zip) = 36052471 diff -urN /usr/ports/emulators/mess/files/patch-src__osd__sdl__input.c emulators/mess/files/patch-src__osd__sdl__input.c --- /usr/ports/emulators/mess/files/patch-src__osd__sdl__input.c 2013-11-06 22:06:20.000000000 +0900 +++ emulators/mess/files/patch-src__osd__sdl__input.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- src/osd/sdl/input.c.orig -+++ src/osd/sdl/input.c -@@ -720,7 +720,11 @@ - mame_printf_verbose("Joystick: Start initialization\n"); - for (physical_stick = 0; physical_stick < SDL_NumJoysticks(); physical_stick++) - { -+#if (SDLMAME_SDL2) -+ char *joy_name = remove_spaces(machine, SDL_JoystickNameForIndex(physical_stick)); -+#else - char *joy_name = remove_spaces(machine, SDL_JoystickName(physical_stick)); -+#endif - - devmap_register(&joy_map, physical_stick, joy_name); - } diff -urN /usr/ports/emulators/mess/files/patch-src__osd__sdl__testkeys.c emulators/mess/files/patch-src__osd__sdl__testkeys.c --- /usr/ports/emulators/mess/files/patch-src__osd__sdl__testkeys.c 2013-11-06 22:06:20.000000000 +0900 +++ emulators/mess/files/patch-src__osd__sdl__testkeys.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,38 +0,0 @@ ---- src/osd/sdl/testkeys.c.orig 2013-10-30 21:16:48.577335486 +0100 -+++ src/osd/sdl/testkeys.c 2013-10-30 21:27:06.551455870 +0100 -@@ -146,7 +146,7 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.scancode), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, -+ (int) event.key.keysym.mod, - ""); - lasttext[0] = 0; - #else -@@ -155,7 +155,7 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.sym), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, -+ (int) event.key.keysym.mod, - buf); - #endif - } -@@ -165,7 +165,7 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.scancode), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, -+ (int) event.key.keysym.mod, - lasttext); - #else - memset(buf, 0, 19); -@@ -173,7 +173,7 @@ - printf("ITEM_ID_XY %s 0x%x 0x%x %s\n", - lookup_key_name(sdl_lookup, event.key.keysym.sym), - (int) event.key.keysym.scancode, -- (int) event.key.keysym.unicode, -+ (int) event.key.keysym.mod, - buf); - #endif - break; diff -urN /usr/ports/emulators/mess/pkg-plist emulators/mess/pkg-plist --- /usr/ports/emulators/mess/pkg-plist 2013-11-06 22:06:20.000000000 +0900 +++ emulators/mess/pkg-plist 2013-12-15 04:00:00.000000000 +0900 @@ -13,6 +13,7 @@ %%PORTDOCS%%%%DOCSDIR%%/docs/hlsl.txt %%PORTDOCS%%%%DOCSDIR%%/docs/imgtool.txt %%PORTDOCS%%%%DOCSDIR%%/docs/license.txt +%%PORTDOCS%%%%DOCSDIR%%/docs/licenseinfo.txt %%PORTDOCS%%%%DOCSDIR%%/docs/m6502.txt %%PORTDOCS%%%%DOCSDIR%%/docs/mame.txt %%PORTDOCS%%%%DOCSDIR%%/docs/newvideo.txt @@ -129,7 +130,9 @@ %%DATADIR%%/hash/ibm5140.xml %%DATADIR%%/hash/ibm5150.xml %%DATADIR%%/hash/ibm5150_cass.xml +%%DATADIR%%/hash/ibm5160_flop.xml %%DATADIR%%/hash/ibm5170.xml +%%DATADIR%%/hash/ibm5170_cdrom.xml %%DATADIR%%/hash/ibmpcjr_cart.xml %%DATADIR%%/hash/ibmpcjr_flop.xml %%DATADIR%%/hash/interact.xml --Multipart=_Sun__15_Dec_2013_04_28_24_+0900_+023D1cjUAUo9x31 Content-Type: text/x-diff; name="emulators_qmc2.diff" Content-Disposition: attachment; filename="emulators_qmc2.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/emulators/qmc2/Makefile emulators/qmc2/Makefile --- /usr/ports/emulators/qmc2/Makefile 2013-11-06 22:06:22.000000000 +0900 +++ emulators/qmc2/Makefile 2013-12-15 04:00:00.000000000 +0900 @@ -2,8 +2,7 @@ # $FreeBSD: head/emulators/qmc2/Makefile 332169 2013-10-30 20:42:02Z pawel $ PORTNAME= qmc2 -PORTVERSION= 0.40 -PORTREVISION= 1 +PORTVERSION= 0.41 CATEGORIES= emulators MASTER_SITES= SF diff -urN /usr/ports/emulators/qmc2/distinfo emulators/qmc2/distinfo --- /usr/ports/emulators/qmc2/distinfo 2013-11-06 22:06:22.000000000 +0900 +++ emulators/qmc2/distinfo 2013-12-15 04:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (qmc2-0.40.tar.bz2) = 1119b991a93f9a29a1605219a05459aa1345397906eb7e32856d7ec96a2dc717 -SIZE (qmc2-0.40.tar.bz2) = 17910405 +SHA256 (qmc2-0.41.tar.bz2) = 4c37a1cc64f6799aaafe09133475f988d7221d198b2a23005138ed182038289b +SIZE (qmc2-0.41.tar.bz2) = 16353382 --Multipart=_Sun__15_Dec_2013_04_28_24_+0900_+023D1cjUAUo9x31-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 20:42:50 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 050C0217; Sat, 14 Dec 2013 20:42:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C8D071D81; Sat, 14 Dec 2013 20:42:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEKgn64067258; Sat, 14 Dec 2013 20:42:49 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEKgnCr067257; Sat, 14 Dec 2013 20:42:49 GMT (envelope-from thierry) Date: Sat, 14 Dec 2013 20:42:49 GMT Message-Id: <201312142042.rBEKgnCr067257@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org From: thierry@FreeBSD.org Subject: Re: ports/184407: Update for multimedia/mplayer and mencoder to a new snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 20:42:50 -0000 Synopsis: Update for multimedia/mplayer and mencoder to a new snapshot Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: thierry Responsible-Changed-When: sam 14 déc 2013 20:42:16 UTC Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184407 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 20:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA15F4EB for ; Sat, 14 Dec 2013 20:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AAE2A1DC3 for ; Sat, 14 Dec 2013 20:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEKo0qb067444 for ; Sat, 14 Dec 2013 20:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEKo0oK067443; Sat, 14 Dec 2013 20:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 20:50:00 GMT Resent-Message-Id: <201312142050.rBEKo0oK067443@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Zander Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F4ED211 for ; Sat, 14 Dec 2013 20:42:32 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B7F11D7E for ; Sat, 14 Dec 2013 20:42:32 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBEKgWtr070843 for ; Sat, 14 Dec 2013 20:42:32 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBEKgW5k070829; Sat, 14 Dec 2013 20:42:32 GMT (envelope-from nobody) Message-Id: <201312142042.rBEKgW5k070829@oldred.freebsd.org> Date: Sat, 14 Dec 2013 20:42:32 GMT From: Thomas Zander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184768: [PATCH] audio/musicpd does not play wma files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 20:50:01 -0000 >Number: 184768 >Category: ports >Synopsis: [PATCH] audio/musicpd does not play wma files >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 20:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Thomas Zander >Release: >Organization: >Environment: >Description: Since musicpd uses ffmpeg >= 1.0, it does no longer play wma files. A trivial patch for this change to the ffmpeg API has been committed upstream but did not make it into a release yet, see https://github.com/bjaglin/mpd/commit/a84774fd46e4f3b6147bfd3d19ff4841bde8c98d Since we don't know when the next release of mpd with this patch will be, we should include this into our ports tree for now. >How-To-Repeat: Play any wma or asf file that works in mplayer. It won't work in the ports version of musicpd. >Fix: Patch is attached. Just place it in ${PORTSDIR}/audio/musicpd/files. Rebuild musicpd. All good :-) Patch attached with submission follows: --- src/decoder/ffmpeg_decoder_plugin.c.orig 2013-01-07 01:39:40.000000000 +0100 +++ src/decoder/ffmpeg_decoder_plugin.c 2013-12-14 21:22:19.284609914 +0100 @@ -395,6 +395,11 @@ #endif return SAMPLE_FORMAT_S32; +#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(51,17,0) + case AV_SAMPLE_FMT_FLTP: + return SAMPLE_FORMAT_FLOAT; +#endif + default: break; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 20:50:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3A5E518; Sat, 14 Dec 2013 20:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A901F1DC4; Sat, 14 Dec 2013 20:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEKo8s6067578; Sat, 14 Dec 2013 20:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBEKo8pU067577; Sat, 14 Dec 2013 20:50:08 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 20:50:08 GMT Message-Id: <201312142050.rBEKo8pU067577@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184768: [PATCH] audio/musicpd does not play wma files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 20:50:08 -0000 Synopsis: [PATCH] audio/musicpd does not play wma files Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 20:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184768 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 21:10:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 542A280A; Sat, 14 Dec 2013 21:10:03 +0000 (UTC) Received: from mail-ve0-x22d.google.com (mail-ve0-x22d.google.com [IPv6:2607:f8b0:400c:c01::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5D961EB7; Sat, 14 Dec 2013 21:10:02 +0000 (UTC) Received: by mail-ve0-f173.google.com with SMTP id oz11so2330390veb.18 for ; Sat, 14 Dec 2013 13:10:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=9/J8GyW5ydj1ZPTJ5ryUqM1XTGxenhxxA41Ul1vsvcY=; b=N2980+s5RoJ70K9FGcJYVKc17BiRNbOl5JrV6kfPC8T7LNEqA1yVXWe31I9mvG6InP yB+k6G6Raq0Y0me15JxbDWpAc/olqlV+MomHvSPowrTBKQrPjGJPNM7g8wYfniEInyRl ifi65PrjK9tmGtnAxsCTAmulYmh8ih/O9h1AsUy6NdlBd1e3m6MDzaFxZ3xlDav2+8wL 4ApvkVNtKzNeG6bKIcLpaI2DnLPRy7EptuJfDnHQfT8GI12UeEfE23RVAZ+t/ZWsbsz3 0kUPwx7zqaZm0HfwUoafl6F4xTExfAjKhFbGgaJbofghvypVqV54MKZHvkk0axTblhVC 3zLg== MIME-Version: 1.0 X-Received: by 10.58.156.106 with SMTP id wd10mr4714226veb.7.1387055401597; Sat, 14 Dec 2013 13:10:01 -0800 (PST) Received: by 10.220.139.212 with HTTP; Sat, 14 Dec 2013 13:10:01 -0800 (PST) In-Reply-To: <201312010930.rB19U0t4074304@freefall.freebsd.org> References: <201312010927.rB19RGQ6026118@oldred.freebsd.org> <201312010930.rB19U0t4074304@freefall.freebsd.org> Date: Sat, 14 Dec 2013 22:10:01 +0100 Message-ID: Subject: Re: ports/184407: Update for multimedia/mplayer and mencoder to a new snapshot From: Thomas Zander To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: multipart/mixed; boundary=047d7b5db7be7f58c304ed8500ac X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 21:10:03 -0000 --047d7b5db7be7f58c304ed8500ac Content-Type: text/plain; charset=ISO-8859-1 As discussed in PM with Thierry, updated patch to accomodate recent changes to the ports tree. Should apply cleanly now. Best regards Riggs --047d7b5db7be7f58c304ed8500ac Content-Type: text/plain; charset=US-ASCII; name="m.diff.txt" Content-Disposition: attachment; filename="m.diff.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hp7cx7q40 ZGlmZiAtciA0YTEyODQyNjA0OTAgbWVuY29kZXIvTWFrZWZpbGUKLS0tIGEvbWVuY29kZXIvTWFr ZWZpbGUJU2F0IERlYyAxNCAyMjowNjo0MiAyMDEzICswMTAwCisrKyBiL21lbmNvZGVyL01ha2Vm aWxlCVNhdCBEZWMgMTQgMjI6MDc6MzAgMjAxMyArMDEwMApAQCAtMywxNiArMywxNiBAQAogCiBQ T1JUTkFNRT0JbWVuY29kZXIKIFBPUlRWRVJTSU9OPQkke01QTEFZRVJfUE9SVF9WRVJTSU9OfQot UE9SVFJFVklTSU9OPQkxCitQT1JUUkVWSVNJT049CTAKIAogQ09NTUVOVD0JQ29udmVuaWVudCB2 aWRlbyBmaWxlIGFuZCBtb3ZpZSBlbmNvZGVyCiAKLU5PX1NUQUdFPQl5ZXMKIC5pbmNsdWRlICIk ey5DVVJESVJ9Ly4uL21wbGF5ZXIvTWFrZWZpbGUuc2hhcmVkIgogCiBPUFRJT05TX0RFRklORT0g QU1SX05CIEFNUl9XQiBCTFVSQVkgQ0RJTyBDRFBBUkFOT0lBIERFQlVHIERJUkFDIFwKLQkJRFYg RkFBQyBGT05UQ09ORklHIEZSSUJJREkgR0lGIEdTTSBJUFY2IEpBQ0sgTEFEU1BBIFwKLQkJTElC TU5HIExJVkVNRURJQSBMWk8gTUFEIE5BUyBPQ0ZMQUdTIE9QRU5BTCBPUEVOSlBFRyBcCisJCURW IEZBQUMgRk9OVENPTkZJRyBGUklCSURJIEdJRiBHU00gSVBWNiBKQUNLIFwKKwkJTEFEU1BBIExJ Qk1ORyBMSVZFTUVESUEgTFpPIE1BRCBOQVMgT0NGTEFHUyBcCisJCU9QRU5BTCBPUEVOSlBFRyBP UFVTIFwKIAkJT1RDSEFJTiBQVUxTRUFVRElPIFJFQUwgUlRDUFUgUlRNUCBTQ0hST0VESU5HRVIg U01CIFwKIAkJVEhFT1JBIFRXT0xBTUUgVjRMIFZQWCBXSU4zMiBYMjY0IFhWSUQKIApAQCAtMjEs MTMgKzIxLDEyIEBACiBCTFVSQVlfREVTQz89CUJsdVJheSBzdXBwb3J0CiBMWk9fREVTQz89CUVu YWJsZSBleHRlcm5hbCBsaWJsem8gbGlicmFyeQogT0NGTEFHU19ERVNDPz0JVXNlIG9wdGltaXpl ZCBjb21waWxlciBmbGFncworT1BVU19ERVNDPz0JT3B1cyBkZWNvZGluZyB3aXRoIGxpYm9wdXMK IE9UQ0hBSU5fREVTQz89CVVzZSBnY2MgNC42KyB0b29sY2hhaW4gb24gbGVnYWN5IHN5c3RlbXMK IFJFQUxfREVTQz89CUVuYWJsZSByZWFscGxheWVyIHBsdWdpbgogUlRDUFVfREVTQz89CVVzZSBy dW50aW1lIENQVSBkZXRlY3Rpb24KIFdJTjMyX0RFU0M/PQlJbnN0YWxsIHdpbjMyIGJpbmFyeSBj b2RlY3MKIAotTUFOMT0JCW1lbmNvZGVyLjEKLQogUkVTVFJJQ1RFRD0JUG9ydCBoYXMgcmVzdHJp Y3RlZCBkZXBlbmRlbmNpZXMKIAogUEFUQ0hESVI9CSR7LkNVUkRJUn0vLi4vbXBsYXllci9maWxl cwpAQCAtNDMsMTAgKzQyLDEwIEBACiAJCXN1YmVkaXQucGwgc3Vic2VhcmNoLnNoIHZvYnNoaWZ0 LnB5IFwKIAkJdzMyY29kZWNfZGwucGwgd21hMm9nZy5wbAogCisuaW5jbHVkZSAiJHsuQ1VSRElS fS8uLi9tcGxheWVyL01ha2VmaWxlLm9wdHZhcnMiCisuaW5jbHVkZSA8YnNkLnBvcnQub3B0aW9u cy5taz4KIC5pbmNsdWRlIDxic2QucG9ydC5wcmUubWs+CiAKLUxJQl9ERVBFTkRTKz0JbXAzbGFt ZToke1BPUlRTRElSfS9hdWRpby9sYW1lCi0KIENPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLW1w bGF5ZXIgXAogCQkJLS1kaXNhYmxlLWxpYmRjYSBcCiAJCQktLWRpc2FibGUteDExIFwKQEAgLTY1 LDQ2ICs2NCwxMiBAQAogCQkJLS1kaXNhYmxlLWVuY2EgXAogCQkJLS1kaXNhYmxlLW11c2VwYWNr CiAKK0xJQl9ERVBFTkRTKz0JbGlibXAzbGFtZS5zbzoke1BPUlRTRElSfS9hdWRpby9sYW1lCisK IEFMTF9UQVJHRVQ9CW1lbmNvZGVyCiAKIC5pbmNsdWRlICIkey5DVVJESVJ9Ly4uL21wbGF5ZXIv TWFrZWZpbGUub3B0aW9ucyIKIAotLmlmICR7UE9SVF9PUFRJT05TOk1GT05UQ09ORklHfQotTElC X0RFUEVORFMrPQkJZm9udGNvbmZpZzoke1BPUlRTRElSfS94MTEtZm9udHMvZm9udGNvbmZpZwot LmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWZvbnRjb25maWcKLS5lbmRpZgotCi0u aWYgJHtQT1JUX09QVElPTlM6TVRXT0xBTUV9Ci1MSUJfREVQRU5EUys9CQl0d29sYW1lOiR7UE9S VFNESVJ9L2F1ZGlvL3R3b2xhbWUKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS10 d29sYW1lCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1GQUFDfQotTElCX0RFUEVORFMr PQkJZmFhYzoke1BPUlRTRElSfS9hdWRpby9mYWFjCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQkt LWRpc2FibGUtZmFhYwotLmVuZGlmCi0KLS5pZiAke1BPUlRfT1BUSU9OUzpNWDI2NH0KLUxJQl9E RVBFTkRTKz0JCXgyNjQ6JHtQT1JUU0RJUn0vbXVsdGltZWRpYS94MjY0Ci0uZWxzZQotQ09ORklH VVJFX0FSR1MrPQktLWRpc2FibGUteDI2NAotLmVuZGlmCi0KLS5pZiAke1BPUlRfT1BUSU9OUzpN WFZJRH0KLUxJQl9ERVBFTkRTKz0JCXh2aWRjb3JlOiR7UE9SVFNESVJ9L211bHRpbWVkaWEveHZp ZAotLmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLXh2aWQKLS5lbmRpZgotCi0uaWYg JHtQT1JUX09QVElPTlM6TURJUkFDfQotTElCX0RFUEVORFMrPQkJZGlyYWNfZW5jb2Rlcjoke1BP UlRTRElSfS9tdWx0aW1lZGlhL2RpcmFjCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2Fi bGUtbGliZGlyYWMtbGF2YwotLmVuZGlmCi0KIHByZS1ldmVyeXRoaW5nOjoKIAlAJHtFQ0hPX01T R30gIk4gLSBPIC0gVCAtIEUiCiAJQCR7RUNIT19NU0d9ICIiCkBAIC0xNDEsMjAgKzEwNiwxNiBA QAogCQkgc3wvZGV2L1xcOihjZHJvbVtbOmFsbnVtOl1dKltbOj46XV0pfCR7REVGQVVMVF9DRFJP TV9ERVZJQ0U6Uy9kZXZcLy9kZXZcL1xcXDovfXxnJwogCiBkby1pbnN0YWxsOgotCUAke0lOU1RB TExfUFJPR1JBTX0gJHtXUktTUkN9L21lbmNvZGVyICR7UFJFRklYfS9iaW4KKwlAJHtJTlNUQUxM X1BST0dSQU19ICR7V1JLU1JDfS9tZW5jb2RlciAke1NUQUdFRElSfSR7UFJFRklYfS9iaW4KIAog cG9zdC1pbnN0YWxsOgotCUAke0lOU1RBTExfTUFOfSAke1dSS1NSQ30vRE9DUy9tYW4vZW4vbXBs YXllci4xICR7TUFOMVBSRUZJWH0vbWFuL21hbjEvbWVuY29kZXIuMQotCUAke01LRElSfSAke0RB VEFESVJ9Ci0JQCR7Q0hNT0R9IDc1NSAke0RBVEFESVJ9Ci0JQCR7TUtESVJ9ICR7REFUQURJUn0v dG9vbHMKLQlAJHtDSE1PRH0gNzU1ICR7REFUQURJUn0vdG9vbHMKKwlAJHtJTlNUQUxMX01BTn0g JHtXUktTUkN9L0RPQ1MvbWFuL2VuL21wbGF5ZXIuMSAke1NUQUdFRElSfSR7TUFOMVBSRUZJWH0v bWFuL21hbjEvbWVuY29kZXIuMQorCUAke01LRElSfSAke1NUQUdFRElSfSR7REFUQURJUn0KKwlA JHtDSE1PRH0gNzU1ICR7U1RBR0VESVJ9JHtEQVRBRElSfQorCUAke01LRElSfSAke1NUQUdFRElS fSR7REFUQURJUn0vdG9vbHMKKwlAJHtDSE1PRH0gNzU1ICR7U1RBR0VESVJ9JHtEQVRBRElSfS90 b29scwogLmZvciB0b29sIGluICR7VE9PTEZJTEVTfQotCUAke0lOU1RBTExfU0NSSVBUfSAke1dS S1NSQ30vVE9PTFMvJHt0b29sfSAke0RBVEFESVJ9L3Rvb2xzCisJQCR7SU5TVEFMTF9TQ1JJUFR9 ICR7V1JLU1JDfS9UT09MUy8ke3Rvb2x9ICR7U1RBR0VESVJ9JHtEQVRBRElSfS90b29scwogLmVu ZGZvcgogCi0uaWYgJHtBUkNIfSA9PSAiaWE2NCIgfHwgJHtBUkNIfSA9PSAic3BhcmM2NCIKLUJS T0tFTj0JCURvZXMgbm90IGRldGVjdCBDUFUgY29ycmVjdGx5IG9uIGlhNjQgb3Igc3BhcmM2NAot LmVuZGlmCi0KIC5pbmNsdWRlIDxic2QucG9ydC5wb3N0Lm1rPgpkaWZmIC1yIDRhMTI4NDI2MDQ5 MCBtZW5jb2Rlci9kaXN0aW5mbwotLS0gYS9tZW5jb2Rlci9kaXN0aW5mbwlTYXQgRGVjIDE0IDIy OjA2OjQyIDIwMTMgKzAxMDAKKysrIGIvbWVuY29kZXIvZGlzdGluZm8JU2F0IERlYyAxNCAyMjow NzozMCAyMDEzICswMTAwCkBAIC0xLDIgKzEsMiBAQAotU0hBMjU2IChtcGxheWVyLTEuMS4yMDEz MDMwOC50YXIueHopID0gOTIwYmQ2OTE0M2Q1Yjg2N2ZkMDA0MWE5OWI2MzAyYTM5ZWQ0OGVjYzE2 NzNmZTNhMDUxYjNhYmNjZmYxNzI1OAotU0laRSAobXBsYXllci0xLjEuMjAxMzAzMDgudGFyLnh6 KSA9IDEwMzI2ODQwCitTSEEyNTYgKG1wbGF5ZXItMS4xLjIwMTMxMTA5LnRhci54eikgPSA1NjQ3 OTE5YjYxZjAxMzk2YWYyMDI3MzQxOWQ1ZmM3NGY4YjM1MjMxNzdjNDBlN2QxY2EwNjNhZDQ1ZWIx M2ViCitTSVpFIChtcGxheWVyLTEuMS4yMDEzMTEwOS50YXIueHopID0gMTA3MzgwMzYKZGlmZiAt ciA0YTEyODQyNjA0OTAgbWVuY29kZXIvcGtnLXBsaXN0Ci0tLSBhL21lbmNvZGVyL3BrZy1wbGlz dAlTYXQgRGVjIDE0IDIyOjA2OjQyIDIwMTMgKzAxMDAKKysrIGIvbWVuY29kZXIvcGtnLXBsaXN0 CVNhdCBEZWMgMTQgMjI6MDc6MzAgMjAxMyArMDEwMApAQCAtMSw0ICsxLDUgQEAKIGJpbi9tZW5j b2RlcgorbWFuL21hbjEvbWVuY29kZXIuMS5negogJSVEQVRBRElSJSUvdG9vbHMvYWNvbnZlcnQu c2gKICUlREFUQURJUiUlL3Rvb2xzL2JpbmFyeV9jb2RlY3Muc2gKICUlREFUQURJUiUlL3Rvb2xz L2NhbGNicHAucGwKZGlmZiAtciA0YTEyODQyNjA0OTAgbXBsYXllci9NYWtlZmlsZQotLS0gYS9t cGxheWVyL01ha2VmaWxlCVNhdCBEZWMgMTQgMjI6MDY6NDIgMjAxMyArMDEwMAorKysgYi9tcGxh eWVyL01ha2VmaWxlCVNhdCBEZWMgMTQgMjI6MDc6MzAgMjAxMyArMDEwMApAQCAtMSwxOSArMSwx OCBAQAogIyBDcmVhdGVkIGJ5OiBUaG9tYXMgRS4gWmFuZGVyIHdpdGggaGVscCBmcm9tIFZsYWRp bWlyIEt1c2huaXIKLSMgJEZyZWVCU0Q6IGhlYWQvbXVsdGltZWRpYS9tcGxheWVyL01ha2VmaWxl IDMzNTQ0NiAyMDEzLTEyLTAxIDIxOjU4OjE1WiB0aGllcnJ5ICQKKyMgJEZyZWVCU0Q6IGhlYWQv bXVsdGltZWRpYS9tcGxheWVyL01ha2VmaWxlIDMyNzc0NyAyMDEzLTA5LTIwIDIwOjU3OjQ4WiBi YXB0ICQKIAogUE9SVE5BTUU9CW1wbGF5ZXIKIFBPUlRWRVJTSU9OPQkke01QTEFZRVJfUE9SVF9W RVJTSU9OfQotUE9SVFJFVklTSU9OPQkxCitQT1JUUkVWSVNJT049CTAKIAogQ09NTUVOVD0JSGln aCBwZXJmb3JtYW5jZSBtZWRpYSBwbGF5ZXIgc3VwcG9ydGluZyBtYW55IGZvcm1hdHMKIAotTk9f U1RBR0U9CXllcwogLmluY2x1ZGUgIiR7LkNVUkRJUn0vTWFrZWZpbGUuc2hhcmVkIgogCi1PUFRJ T05TX0RFRklORT0JQUFMSUIgQU1SX05CIEFNUl9XQiBCTFVSQVkgQ0FDQSBERUJVRyBEViBcCitP UFRJT05TX0RFRklORT0gQUFMSUIgQU1SX05CIEFNUl9XQiBCTFVSQVkgQ0FDQSBERUJVRyBEViBc CiAJCUVOQ0EgRVNPVU5EIEZSSUJJREkgR0lGIEdTTSBHVUkgSVBWNiBKQUNLIFwKLQkJSk9ZU1RJ Q0sgTEFEU1BBIExJQk1ORyBMSVJDIExJVkVNRURJQSBMWk8gTUFEIFwKLQkJTkFTIE9DRkxBR1Mg T1BFTkFMIE9QRU5HTCBPUEVOSlBFRyBPVENIQUlOIFwKKwkJTEFEU1BBIExJQk1ORyBMSVJDIExa TyBOQVMgT0NGTEFHUyBcCisJCU9QRU5BTCBPUEVOR0wgT1BFTkpQRUcgT1BVUyBPVENIQUlOIFwK IAkJUFVMU0VBVURJTyBSRUFMIFJUQyBSVENQVSBSVE1QIFNDSFJPRURJTkdFUiBTREwgXAogCQlT S0lOUyBTTUIgU1ZHQUxJQiBWNEwgVkRQQVUgV0lOMzIgXAogCQlYMTEgWDExREdBIFgxMVZNIFhJ TkVSQU1BIFhWSURFTyBYVk1DCkBAIC0yNiw5ICsyNSw5IEBACiAKIEJMVVJBWV9ERVNDPz0JQmx1 UmF5IHN1cHBvcnQKIEVOQ0FfREVTQz89CUNoYXJzZXQgY29udmVyc2lvbiB2aWEgZW5jYQotSk9Z U1RJQ0tfREVTQz89CUpveXN0aWNrIHN1cHBvcnQKIExaT19ERVNDPz0JRXh0ZXJuYWwgbGlibHpv IHN1cHBvcnQKIE9DRkxBR1NfREVTQz89CVVzZSBvcHRpbWl6ZWQgY29tcGlsZXIgZmxhZ3MKK09Q VVNfREVTQz89CU9wdXMgZGVjb2Rpbmcgd2l0aCBsaWJvcHVzCiBPVENIQUlOX0RFU0M/PQlVc2Ug Z2NjIDQuNisgdG9vbGNoYWluIG9uIGxlZ2FjeSBzeXN0ZW1zCiBSRUFMX0RFU0M/PQlFbmFibGUg cmVhbHBsYXllciBwbHVnaW4KIFJUQ19ERVNDPz0JQWRkIHN1cHBvcnQgZm9yIGtlcm5lbCByZWFs IHRpbWUgY2xvY2sKQEAgLTM4LDI0ICszNywyMCBAQAogWDExREdBX0RFU0M/PQlYMTEgREdBIHZp ZGVvIGRyaXZlciBzdXBwb3J0CiBYMTFWTV9ERVNDPz0JWDExIFZpZE1vZGUgc3VwcG9ydAogCi1N QU4xPQkJbXBsYXllci4xCi1NQU5DT01QUkVTU0VEPQlubworI01BTkNPTVBSRVNTRUQ9CW5vCiAK IFNVQl9GSUxFUz0JcGtnLW1lc3NhZ2UKIAogQ09ORkZJTEVTPQlleGFtcGxlLmNvbmYgaW5wdXQu Y29uZiBtZW51LmNvbmYgZHZiLW1lbnUuY29uZgotVVNFUz0JCXBrZ2NvbmZpZworVVNFUys9CQlw a2djb25maWcKIAorLmluY2x1ZGUgIiR7LkNVUkRJUn0vTWFrZWZpbGUub3B0dmFycyIKKy5pbmNs dWRlIDxic2QucG9ydC5vcHRpb25zLm1rPgogLmluY2x1ZGUgPGJzZC5wb3J0LnByZS5taz4KIAot LmlmICR7QVJDSH0gPT0gInNwYXJjNjQiCi1CUk9LRU49CQlEb2VzIG5vdCBjb21waWxlIG9uIHNw YXJjNjQKLS5lbmRpZgotCiBDT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1hcnRzIFwKIAkJCS0t ZGlzYWJsZS1kaXJlY3RmYiBcCiAJCQktLWRpc2FibGUtZmFhYyBcCi0JCQktLWRpc2FibGUtZmFh ZCBcCiAJCQktLWRpc2FibGUtbGliZGNhIFwKIAkJCS0tZGlzYWJsZS10b29sYW1lIFwKIAkJCS0t ZGlzYWJsZS10d29sYW1lIFwKQEAgLTY3LDE1ICs2Miw5IEBACiAJCQktLWRpc2FibGUtbXVzZXBh Y2sgXAogCQkJLS1kaXNhYmxlLXRoZW9yYQogCi0jIEZpeCBhIHByb2JsZW0gd2l0aCB1bmtub3du IGFzc2VtYmx5IG9wY29kZXMgaW4gZW1iZWRkZWQgZmZtcGVnCi0uaWYgJHtBUkNIfSA9PSAicHBj IgotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtYXNtCi0uZW5kaWYKLQogLmluY2x1ZGUgIiR7 LkNVUkRJUn0vTWFrZWZpbGUub3B0aW9ucyIKIAogLmlmICR7UE9SVF9PUFRJT05TOk1HVUl9ICYm ICR7UE9SVF9PUFRJT05TOk1YMTF9Ci1NTElOS1MrPQltcGxheWVyLjEgZ21wbGF5ZXIuMQogUExJ U1RfU1VCKz0JR01QTEFZRVI9IiIKIERFU0tUT1BfRU5UUklFUz0JIk1QbGF5ZXIiICJIaWdoIHBl cmZvcm1hbmNlIG1lZGlhIHBsYXllciIgIm1wbGF5ZXIiICJnbXBsYXllciIgIiIgZmFsc2UKIC5p ZiAke1BPUlRfT1BUSU9OUzpNU0tJTlN9CkBAIC05NCw3ICs4Myw3IEBACiAuZW5kaWYgI0dVSSAm JiBYMTEKIAogLmlmICR7UE9SVF9PUFRJT05TOk1YMTF9Ci1VU0VfWE9SRz0JeDExCitVU0VfWE9S Rz0JeDExIHhzY3Juc2F2ZXIKIC5pZiAke1BPUlRfT1BUSU9OUzpNWFZJREVPfQogVVNFX1hPUkcr PQl4dgogLmVsc2UKQEAgLTEzMCw3NSArMTE5LDYgQEAKIAkJLS1kaXNhYmxlLWZvbnRjb25maWcK IC5lbmRpZgogCi0uaWYgJHtQT1JUX09QVElPTlM6TVZEUEFVfQotTElCX0RFUEVORFMrPQl2ZHBh dToke1BPUlRTRElSfS9tdWx0aW1lZGlhL2xpYnZkcGF1Ci0uZWxzZQotQ09ORklHVVJFX0FSR1Mr PQktLWRpc2FibGUtdmRwYXUKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TVJUQ30KLUJV SUxEX0RFUEVORFMrPQkke0xPQ0FMQkFTRX0vbW9kdWxlcy9ydGMua286JHtQT1JUU0RJUn0vZW11 bGF0b3JzL3J0YwotUlVOX0RFUEVORFMrPQkke0xPQ0FMQkFTRX0vbW9kdWxlcy9ydGMua286JHtQ T1JUU0RJUn0vZW11bGF0b3JzL3J0YwotQ09ORklHVVJFX0FSR1MrPQktLWVuYWJsZS1ydGMKLS5l bHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1ydGMKLS5lbmRpZgotCi0uaWYgJHtQT1JU X09QVElPTlM6TUNBQ0F9Ci1MSUJfREVQRU5EUys9CQljYWNhOiR7UE9SVFNESVJ9L2dyYXBoaWNz L2xpYmNhY2EKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1jYWNhCi0uZW5kaWYK LQotLmlmICR7UE9SVF9PUFRJT05TOk1MSVJDfQotTElCX0RFUEVORFMrPQkJbGlyY19jbGllbnQ6 JHtQT1JUU0RJUn0vY29tbXMvbGlyYwotLmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxl LWxpcmMKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TVNETH0KLVVTRV9TREw9CXNkbAot LmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLXNkbAotLmVuZGlmCi0KLS5pZiAke1BP UlRfT1BUSU9OUzpNU1ZHQUxJQn0KLUxJQl9ERVBFTkRTKz0JCXZnYToke1BPUlRTRElSfS9ncmFw aGljcy9zdmdhbGliCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtc3ZnYQotLmVu ZGlmCi0KLS5pZiAke1BPUlRfT1BUSU9OUzpNQUFMSUJ9IHx8ICR7UE9SVF9PUFRJT05TOk1TREx9 Ci1MSUJfREVQRU5EUys9CQlhYToke1BPUlRTRElSfS9ncmFwaGljcy9hYWxpYgotLmVsc2UKLUNP TkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWFhCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05T Ok1FU09VTkR9Ci1VU0VfR05PTUUrPQllc291bmQKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0t ZGlzYWJsZS1lc2QKLS5lbmRpZgotCi0uaWYgZGVmaW5lZChXSVRIX0tFUk5fSFopCi1ERUZBVUxU X0tFUk5fSFo9JHtXSVRIX0tFUk5fSFp9Ci0uZWxzZQotREVGQVVMVF9LRVJOX0haPTEwMjQKLS5l bmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUpPWVNUSUNLfQotQlVJTERfREVQRU5EUys9CSR7 TE9DQUxCQVNFfS9pbmNsdWRlL2xpbnV4L2pveXN0aWNrLmg6JHtQT1JUU0RJUn0vZGV2ZWwvbGlu dXgtanMKLUNPTkZJR1VSRV9BUkdTKz0tLWVuYWJsZS1qb3lzdGljawotLmVsc2UKLUNPTkZJR1VS RV9BUkdTKz0tLWRpc2FibGUtam95c3RpY2sKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6 TUVOQ0F9Ci1MSUJfREVQRU5EUys9CQllbmNhOiR7UE9SVFNESVJ9L2NvbnZlcnRlcnMvZW5jYQot LmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWVuY2EKLS5lbmRpZgotCiBwcmUtZXZl cnl0aGluZzo6CiAJQCR7RUNIT19NU0d9ICJOIC0gTyAtIFQgLSBFIgogCUAke0VDSE9fTVNHfSAi IgpAQCAtMjQ4LDE2ICsxNjgsMTcgQEAKIC5lbmRpZgogCiBwb3N0LWluc3RhbGw6Ci0JQCR7TUtE SVJ9ICR7REFUQURJUn0KLQlAJHtDSE1PRH0gNzU1ICR7REFUQURJUn0KLQlAJHtNS0RJUn0gJHtE QVRBRElSfS9leGFtcGxlcy9ldGMKLQlAJHtDSE1PRH0gNzU1ICR7REFUQURJUn0vZXhhbXBsZXMv ZXRjCisJQCR7TUtESVJ9ICR7U1RBR0VESVJ9JHtEQVRBRElSfQorCUAke0NITU9EfSA3NTUgJHtT VEFHRURJUn0ke0RBVEFESVJ9CisJQCR7TUtESVJ9ICR7U1RBR0VESVJ9JHtEQVRBRElSfS9leGFt cGxlcy9ldGMKKwlAJHtDSE1PRH0gNzU1ICR7U1RBR0VESVJ9JHtEQVRBRElSfS9leGFtcGxlcy9l dGMKIC5mb3IgY29uZiBpbiAke0NPTkZGSUxFU30KLQkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9 L2V0Yy8ke2NvbmZ9ICR7REFUQURJUn0vZXhhbXBsZXMvZXRjCisJJHtJTlNUQUxMX0RBVEF9ICR7 V1JLU1JDfS9ldGMvJHtjb25mfSAke1NUQUdFRElSfSR7REFUQURJUn0vZXhhbXBsZXMvZXRjCiAu ZW5kZm9yCiAuaWYgJHtQT1JUX09QVElPTlM6TUdVSX0gJiYgJHtQT1JUX09QVElPTlM6TVgxMX0K LQlAJHtMTn0gLXNmICR7UFJFRklYfS9iaW4vbXBsYXllciAke1BSRUZJWH0vYmluL2dtcGxheWVy Ci0JJHtDUH0gLWYgJHtXUktTUkN9L2V0Yy9tcGxheWVyMjU2eDI1Ni5wbmcgJHtMT0NBTEJBU0V9 L3NoYXJlL3BpeG1hcHMvbXBsYXllci5wbmcKKwlAJHtMTn0gLXNmICR7UFJFRklYfS9iaW4vbXBs YXllciAke1NUQUdFRElSfSR7UFJFRklYfS9iaW4vZ21wbGF5ZXIKKwlAKGNkICR7U1RBR0VESVJ9 JHtNQU4xUFJFRklYfS9tYW4vbWFuMSAmJiAke0xOfSAtc2YgbXBsYXllci4xLmd6IGdtcGxheWVy LjEuZ3opCisJJHtDUH0gLWYgJHtXUktTUkN9L2V0Yy9tcGxheWVyMjU2eDI1Ni5wbmcgJHtTVEFH RURJUn0ke0xPQ0FMQkFTRX0vc2hhcmUvcGl4bWFwcy9tcGxheWVyLnBuZwogLmVuZGlmCiAJQCR7 Q0FUfSAke1BLR01FU1NBR0V9CiAKZGlmZiAtciA0YTEyODQyNjA0OTAgbXBsYXllci9NYWtlZmls ZS5vcHRpb25zCi0tLSBhL21wbGF5ZXIvTWFrZWZpbGUub3B0aW9ucwlTYXQgRGVjIDE0IDIyOjA2 OjQyIDIwMTMgKzAxMDAKKysrIGIvbXBsYXllci9NYWtlZmlsZS5vcHRpb25zCVNhdCBEZWMgMTQg MjI6MDc6MzAgMjAxMyArMDEwMApAQCAtMSwxMCArMSwxMSBAQAotIyBDb250YWlucyB0aGUgb3B0 aW9ucyBhbmQgZGVwZW5kZW5jaWVzIHRoYXQgYXJlIHNoYXJlZAotIyBhbW9uZyBtcGxheWVyIGFu ZCBtZW5jb2RlcgorIyBDb250YWlucyBub24tdHJpdmlhbCBoYW5kbGluZyBvZiBvcHRpb24gdmFy aWFibGVzCisjIGFuZCBidWlsZCBlbnZpcm9ubWVudC4gTXVzdCBiZSBpbmNsdWRlZCBhZnRlcgor IyBic2QucG9ydC5wcmUubWsKICMKICMgU29tZSBvZiB0aGUga25vYnMgYXJlIG5vdCB0dW5hYmxl IGJ5IHRoZSBPUFRJT05TIGZyYW1ld29yay4gVGhlc2UgYXJlCiAjIGV4cGxhaW5lZCBoZXJlIGlu IGRldGFpbC4KICMKLSMgJEZyZWVCU0Q6IGhlYWQvbXVsdGltZWRpYS9tcGxheWVyL01ha2VmaWxl Lm9wdGlvbnMgMzM1NDQ2IDIwMTMtMTItMDEgMjE6NTg6MTVaIHRoaWVycnkgJAorIyAkRnJlZUJT RDogaGVhZC9tdWx0aW1lZGlhL21wbGF5ZXIvTWFrZWZpbGUub3B0aW9ucyAzMzA3MjkgMjAxMy0x MC0xOCAwNzo0NTo0OFogdGlqbCAkCiAjCiAjIEZlYXR1cmUgb3B0aW9uczoKICMgVGhlc2Ugb3B0 aW9ucyBpbmZsdWVuY2Ugc29tZSBnZW5lcmFsIGJlaGF2aW91ciBvZiBtcGxheWVyLiBBbG1vc3Qg YWxsIG9mIHRoZSBmZWF0dWVzLApAQCAtMjcsMTQgKzI4LDg3IEBACiAjIEVuYWJsZXMgbGFuZ3Vh Z2Ugc3VwcG9ydCBiZywgY3osIGRlLCBkaywgZW4sIGVzLCBmciwgZ3IsIGh1LCBpdCwga28sIG5s LCBubywgcGwsIHB0X0JSLCBybywgcnUsIHNrLCB0ciwgdWssIHpoCiAjCiAKLS5pZiAke09TVkVS U0lPTn0gPCA4MDI1MDIKLUVYVFJBX1BBVENIRVMrPQkke0ZJTEVTRElSfS9leHRyYS1wYXRjaC1i YXNlX3N5c3RlbV9sb2cyZgotLmVuZGlmCisjIE5vbi1PUFRJT05TIGtub2IgaGFuZGxpbmcKKyMg PT09PT09PT09PT09PT09PT09PT09PT09PQogCiAuaWYgZGVmaW5lZChXSVRIX0xBTkcpCiBDT05G SUdVUkVfQVJHUys9LS1sYW5ndWFnZT0ke1dJVEhfTEFOR30KIC5lbmRpZgogCisuaWYgZGVmaW5l ZChXSVRIX0RWRF9ERVZJQ0UpCitERUZBVUxUX0RWRF9ERVZJQ0U9JHtXSVRIX0RWRF9ERVZJQ0V9 CisuZWxzZQorREVGQVVMVF9EVkRfREVWSUNFPS9kZXYvY2QwCisuZW5kaWYKKworLmlmIGRlZmlu ZWQoV0lUSF9DRFJPTV9ERVZJQ0UpCitERUZBVUxUX0NEUk9NX0RFVklDRT0ke1dJVEhfQ0RST01f REVWSUNFfQorLmVsc2UKK0RFRkFVTFRfQ0RST01fREVWSUNFPS9kZXYvY2QwCisuZW5kaWYKKwor LmlmIGRlZmluZWQoV0lUSF9LRVJOX0haKQorREVGQVVMVF9LRVJOX0haPSR7V0lUSF9LRVJOX0ha fQorLmVsc2UKK0RFRkFVTFRfS0VSTl9IWj0xMDI0CisuZW5kaWYKKworCisjIE5vbi1zaW1wbGlm aWVkIE9QVElPTlMgaGFuZGxpbmcKKyMgPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQor CisuaWYgJHtQT1JUX09QVElPTlM6TUVTT1VORH0KK1VTRV9HTk9NRSs9CWVzb3VuZAorLmVsc2UK K0NPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWVzZAorLmVuZGlmCisKKy5pZiAke1BPUlRfT1BU SU9OUzpNSVBWNn0KK0NBVEVHT1JJRVMrPQlpcHY2CisuZWxzZQorQ09ORklHVVJFX0FSR1MrPQkt LWRpc2FibGUtaW5ldDYKKy5lbmRpZgorCisuaWYgJHtQT1JUX09QVElPTlM6TU9QRU5BTH0KK1VT RV9PUEVOQUw9CXNvZnQKKy5lbHNlCitDT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1vcGVuYWwK Ky5lbmRpZgorCisuaWYgJHtQT1JUX09QVElPTlM6TVJUTVB9CitMSUJfREVQRU5EUys9CQlsaWJy dG1wLnNvOiR7UE9SVFNESVJ9L211bHRpbWVkaWEvbGlicnRtcAorQ09ORklHVVJFX0FSR1MrPQkt LWVuYWJsZS1saWJydG1wCitFWFRSQV9MSUJTKz0JCS1scnRtcAorLmVsc2UKK0NPTkZJR1VSRV9B UkdTKz0JLS1kaXNhYmxlLWxpYnJ0bXAKKy5lbmRpZgorCisuaWYgJHtQT1JUX09QVElPTlM6TVNE TH0KK1VTRV9TREw9CXNkbAorTElCX0RFUEVORFMrPQkJbGliYWEuc286JHtQT1JUU0RJUn0vZ3Jh cGhpY3MvYWFsaWIKKy5lbHNlCitDT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1zZGwKKy5lbmRp ZgorCisuaWYgJHtQT1JUX09QVElPTlM6TVY0TH0KK0JVSUxEX0RFUEVORFMrPQkJJHtMT0NBTEJB U0V9L2luY2x1ZGUvbGludXgvdmlkZW9kZXYyLmg6JHtQT1JUU0RJUn0vbXVsdGltZWRpYS92NGxf Y29tcGF0CitMSUJfREVQRU5EUys9CQlsaWJ2NGwyLnNvOiR7UE9SVFNESVJ9L211bHRpbWVkaWEv bGlidjRsCitDT05GSUdVUkVfQVJHUys9CS0tZW5hYmxlLXR2LXY0bDEgXAorCQkJLS1lbmFibGUt dHYtdjRsMgorRVhUUkFfTElCUys9CQktbHY0bDEgLWx2NGwyCisuZWxzZQorQ09ORklHVVJFX0FS R1MrPQktLWRpc2FibGUtdHYtdjRsMSBcCisJCQktLWRpc2FibGUtdHYtdjRsMgorLmVuZGlmCisK KworIyBCdWlsZCBzeXN0ZW0gaGFuZGxpbmcgKGluY2x1ZGluZyBPUFRJT05TKQorIyA9PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQorCisuaWYgJHtPU1ZFUlNJT059IDwg ODAyNTAyCitFWFRSQV9QQVRDSEVTKz0JJHtGSUxFU0RJUn0vZXh0cmEtcGF0Y2gtYmFzZV9zeXN0 ZW1fbG9nMmYKKy5lbmRpZgorCiAjT24gaTM4NiwgZ2NjIHJ1bnMgb3V0IG9mIGdlbmVyYWwgcHVy cG9zZSByZWdpc3RlcnMgd2hlbgogI3RyeWluZyB0byBjb21waWxlIGEgZGVidWcgdmVyc2lvbiB3 aXRoIHRoZSBkZWZhdWx0IGZsYWdzLgogLmlmICR7UE9SVF9PUFRJT05TOk1ERUJVR30KQEAgLTQ5 LDExICsxMjMsMjUgQEAKIC5lbmRpZiAjT0NGTEFHUwogLmVuZGlmICNERUJVRwogCi0jU3VwcG9y dGVkIGFyY2hpdGVjdHVyZXMgZm9yIGNsYW5nCisjIFN1cHBvcnRlZCBhcmNoaXRlY3R1cmVzIGZv ciBjbGFuZwogLmlmICR7QVJDSH0gPT0gImFtZDY0IiB8fCAke0FSQ0h9ID09ICJpMzg2IgogTVBM QVlFUl9DTEFOR19TVVBQT1JURURfQVJDSD0JeWVzCiAuZW5kaWYKIAorIyBVbnN1cHBvcnRlZCBh cmNoaXRlY3R1cmVzIGZvciBpbmxpbmUgYXNzZW1ibHkKKy5pZiAke0FSQ0h9ID09ICJwcGMiCitD T05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1hc20KKy5lbmRpZgorCisjIFVuc3VwcG9ydGVkIGFy Y2hpdGVjdHVyZXMKKy5pZiAke0FSQ0h9ID09ICJzcGFyYzY0IgorQlJPS0VOPQkJRG9lcyBub3Qg Y29tcGlsZSBvbiBzcGFyYzY0CisuZW5kaWYKKy5pZiAke0FSQ0h9ID09ICJpYTY0IgorQlJPS0VO PQkJRG9lcyBub3QgZGV0ZWN0IENQVSBjb3JyZWN0bHkgb24gaWE2NAorLmVuZGlmCisKKwogLmlm ICR7UE9SVF9PUFRJT05TOk1SVENQVX0KIENPTkZJR1VSRV9BUkdTKz0tLWVuYWJsZS1ydW50aW1l LWNwdWRldGVjdGlvbgogLmVuZGlmCkBAIC04NSwxNDkgKzE3Myw2IEBACiAuZW5kaWYKIC5lbmRp ZgogCi0uaWYgJHtQT1JUX09QVElPTlM6TUlQVjZ9Ci1DQVRFR09SSUVTKz0JaXB2NgotLmVsc2UK LUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWluZXQ2Ci0uZW5kaWYKLQotLmlmICR7UE9SVF9P UFRJT05TOk1HSUZ9Ci1MSUJfREVQRU5EUys9CQlnaWY6JHtQT1JUU0RJUn0vZ3JhcGhpY3MvZ2lm bGliCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtZ2lmCi0uZW5kaWYKLQotLmlm ICR7UE9SVF9PUFRJT05TOk1PUEVOSlBFR30KLUxJQl9ERVBFTkRTKz0JCW9wZW5qcGVnOiR7UE9S VFNESVJ9L2dyYXBoaWNzL29wZW5qcGVnCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2Fi bGUtbGlib3BlbmpwZWcKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TU1BRH0KLUxJQl9E RVBFTkRTKz0JCW1hZDoke1BPUlRTRElSfS9hdWRpby9saWJtYWQKLS5lbHNlCi1DT05GSUdVUkVf QVJHUys9CS0tZGlzYWJsZS1tYWQKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TURWfQot TElCX0RFUEVORFMrPQkJZHY6JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saWJkdgotLmVsc2UKLUNP TkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWxpYmR2Ci0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJ T05TOk1USEVPUkF9Ci1MSUJfREVQRU5EUys9CQl0aGVvcmE6JHtQT1JUU0RJUn0vbXVsdGltZWRp YS9saWJ0aGVvcmEKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS10aGVvcmEKLS5l bmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TVZQWH0KLUxJQl9ERVBFTkRTKz0JCXZweDoke1BP UlRTRElSfS9tdWx0aW1lZGlhL2xpYnZweAotLmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNh YmxlLWxpYnZweC1sYXZjCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1TQ0hST0VESU5H RVJ9Ci1MSUJfREVQRU5EUys9CQlzY2hyb2VkaW5nZXItMS4wLjExOiR7UE9SVFNESVJ9L211bHRp bWVkaWEvc2Nocm9lZGluZ2VyCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtbGli c2Nocm9lZGluZ2VyLWxhdmMKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUxJVkVNRURJ QX0KLUNPTkZJR1VSRV9BUkdTKz0JLS1lbmFibGUtbGl2ZQotTElCX0RFUEVORFMrPQkJbGlibGl2 ZU1lZGlhLnNvOiR7UE9SVFNESVJ9L25ldC9saXZlTWVkaWEKLUNGTEFHUys9CQktSSR7TE9DQUxC QVNFfS9pbmNsdWRlL2xpdmVNZWRpYQlcCi0JCQktSSR7TE9DQUxCQVNFfS9pbmNsdWRlL1VzYWdl RW52aXJvbm1lbnQJXAotCQkJLUkke0xPQ0FMQkFTRX0vaW5jbHVkZS9ncm91cHNvY2sJXAotCQkJ LUkke0xPQ0FMQkFTRX0vaW5jbHVkZS9CYXNpY1VzYWdlRW52aXJvbm1lbnQKLUxERkxBR1MrPQkJ LUwke0xPQ0FMQkFTRX0vbGliCVwKLQkJCS1sbGl2ZU1lZGlhIFwKLQkJCS1sVXNhZ2VFbnZpcm9u bWVudCBcCi0JCQktbEJhc2ljVXNhZ2VFbnZpcm9ubWVudCBcCi0JCQktbGdyb3Vwc29jayBcCi0J CQktbHN0ZGMrKwotLmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWxpdmUKLS5lbmRp ZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUpBQ0t9Ci1MSUJfREVQRU5EUys9CQlqYWNrOiR7UE9S VFNESVJ9L2F1ZGlvL2phY2sKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1qYWNr Ci0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1OQVN9Ci1MSUJfREVQRU5EUys9CQlhdWRp bzoke1BPUlRTRElSfS9hdWRpby9uYXMKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJs ZS1uYXMKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TU9QRU5BTH0KLVVTRV9PUEVOQUw9 CXNvZnQKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1vcGVuYWwKLS5lbmRpZgot Ci0uaWYgJHtQT1JUX09QVElPTlM6TVBVTFNFQVVESU99Ci1MSUJfREVQRU5EUys9CQlwdWxzZTok e1BPUlRTRElSfS9hdWRpby9wdWxzZWF1ZGlvCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRp c2FibGUtcHVsc2UKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUJMVVJBWX0KLUxJQl9E RVBFTkRTKz0JCWJsdXJheToke1BPUlRTRElSfS9tdWx0aW1lZGlhL2xpYmJsdXJheQotLmVsc2UK LUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWJsdXJheQotLmVuZGlmCi0KLS5pZiAke1BPUlRf T1BUSU9OUzpNU01CfQotTElCX0RFUEVORFMrPQkJc21iY2xpZW50OiR7UE9SVFNESVJ9L25ldC9z YW1iYS1saWJzbWJjbGllbnQKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1zbWIK LS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUZSSUJJREl9Ci1MSUJfREVQRU5EUys9CQlm cmliaWRpOiR7UE9SVFNESVJ9L2NvbnZlcnRlcnMvZnJpYmlkaQotLmVsc2UKLUNPTkZJR1VSRV9B UkdTKz0JLS1kaXNhYmxlLWZyaWJpZGkKLS5lbmRpZgotCi0uaWYgJHtQT1JUX09QVElPTlM6TUNE UEFSQU5PSUF9Ci1MSUJfREVQRU5EUys9CQljZGRhX3BhcmFub2lhOiR7UE9SVFNESVJ9L2F1ZGlv L2NkcGFyYW5vaWEKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1jZHBhcmFub2lh Ci0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1DRElPfQotTElCX0RFUEVORFMrPQkJY2Rp bzoke1BPUlRTRElSfS9zeXN1dGlscy9saWJjZGlvCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQkt LWRpc2FibGUtbGliY2RpbwotLmVuZGlmCi0KLS5pZiAke1BPUlRfT1BUSU9OUzpNTEFEU1BBfQot UlVOX0RFUEVORFMrPQkke0xPQ0FMQkFTRX0vbGliL2xhZHNwYS9hbXAuc286JHtQT1JUU0RJUn0v YXVkaW8vbGFkc3BhCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtbGFkc3BhCi0u ZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1MWk99Ci1MSUJfREVQRU5EUys9CQlsem8yOiR7 UE9SVFNESVJ9L2FyY2hpdmVycy9sem8yCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2Fi bGUtbGlibHpvCi0uZW5kaWYKLQotLmlmIGRlZmluZWQoV0lUSF9EVkRfREVWSUNFKQotREVGQVVM VF9EVkRfREVWSUNFPSR7V0lUSF9EVkRfREVWSUNFfQotLmVsc2UKLURFRkFVTFRfRFZEX0RFVklD RT0vZGV2L2NkMAotLmVuZGlmCi0KLS5pZiBkZWZpbmVkKFdJVEhfQ0RST01fREVWSUNFKQotREVG QVVMVF9DRFJPTV9ERVZJQ0U9JHtXSVRIX0NEUk9NX0RFVklDRX0KLS5lbHNlCi1ERUZBVUxUX0NE Uk9NX0RFVklDRT0vZGV2L2NkMAotLmVuZGlmCi0KIC5pZiAke0FSQ0h9ID09ICJpMzg2IiB8fCAk e0FSQ0h9ID09ICJhbWQ2NCIKIC5pZiAke1BPUlRfT1BUSU9OUzpNV0lOMzJ9ICYmICFkZWZpbmVk KFBBQ0tBR0VfQlVJTERJTkcpICYmICR7QVJDSH0gPT0gImkzODYiCiBSVU5fREVQRU5EUys9CSR7 Q09ERUNfREVURUNUSU9OX0ZJTEV9OiR7Q09ERUNfUE9SVH0KQEAgLTI0MCw1NyArMTg1LDcgQEAK IC5lbmRpZgogLmVuZGlmICMgQVJDSCA9PSBpMzg2L2FtZDY0CiAKLS5pZiAke1BPUlRfT1BUSU9O UzpNUkVBTH0KLVJVTl9ERVBFTkRTKz0JCXJlYWxwbGF5OiR7UE9SVFNESVJ9L211bHRpbWVkaWEv bGludXgtcmVhbHBsYXllcgotQlVJTERfREVQRU5EUys9CQlyZWFscGxheToke1BPUlRTRElSfS9t dWx0aW1lZGlhL2xpbnV4LXJlYWxwbGF5ZXIKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlz YWJsZS1yZWFsCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1BTVJfTkJ9IHx8ICR7UE9S VF9PUFRJT05TOk1BTVJfV0J9Ci1MSUJfREVQRU5EUys9CQlvcGVuY29yZS1hbXJuYjoke1BPUlRT RElSfS9hdWRpby9vcGVuY29yZS1hbXIKLS5lbmRpZgotCi0uaWYgISR7UE9SVF9PUFRJT05TOk1B TVJfTkJ9Ci1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1saWJvcGVuY29yZV9hbXJuYgotLmVu ZGlmCi0KLS5pZiAhJHtQT1JUX09QVElPTlM6TUFNUl9XQn0KLUNPTkZJR1VSRV9BUkdTKz0JLS1k aXNhYmxlLWxpYm9wZW5jb3JlX2FtcndiCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJT05TOk1H U019Ci1MSUJfREVQRU5EUys9CQlnc206JHtQT1JUU0RJUn0vYXVkaW8vZ3NtCi0uZWxzZQotQ09O RklHVVJFX0FSR1MrPQktLWRpc2FibGUtbGliZ3NtCi0uZW5kaWYKLQotLmlmICR7UE9SVF9PUFRJ T05TOk1WNEx9Ci1CVUlMRF9ERVBFTkRTKz0JCSR7TE9DQUxCQVNFfS9pbmNsdWRlL2xpbnV4L3Zp ZGVvZGV2Mi5oOiR7UE9SVFNESVJ9L211bHRpbWVkaWEvdjRsX2NvbXBhdAotTElCX0RFUEVORFMr PQkJdjRsMi4wOiR7UE9SVFNESVJ9L211bHRpbWVkaWEvbGlidjRsCi1DT05GSUdVUkVfQVJHUys9 CS0tZW5hYmxlLXR2LXY0bDEgXAotCQkJLS1lbmFibGUtdHYtdjRsMgotRVhUUkFfTElCUys9CQkt bHY0bDEgLWx2NGwyCi0uZWxzZQotQ09ORklHVVJFX0FSR1MrPQktLWRpc2FibGUtdHYtdjRsMSBc Ci0JCQktLWRpc2FibGUtdHYtdjRsMgotLmVuZGlmCi0KLS5pZiAke1BPUlRfT1BUSU9OUzpNUlRN UH0KLUxJQl9ERVBFTkRTKz0JCXJ0bXA6JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9ydG1wZHVtcAot Q09ORklHVVJFX0FSR1MrPQktLWVuYWJsZS1saWJydG1wCi1FWFRSQV9MSUJTKz0JCS1scnRtcAot LmVsc2UKLUNPTkZJR1VSRV9BUkdTKz0JLS1kaXNhYmxlLWxpYnJ0bXAKLS5lbmRpZgotCi0uaWYg JHtQT1JUX09QVElPTlM6TUxJQk1OR30KLUxJQl9ERVBFTkRTKz0JCW1uZzoke1BPUlRTRElSfS9n cmFwaGljcy9saWJtbmcKLS5lbHNlCi1DT05GSUdVUkVfQVJHUys9CS0tZGlzYWJsZS1tbmcKLS5l bmRpZgogCiAuaWYgZGVmaW5lZChFWFRSQV9MSUJTKQogQ09ORklHVVJFX0FSR1MrPQktLWV4dHJh LWxpYnM9IiR7RVhUUkFfTElCU30iCiAuZW5kaWYKLQpkaWZmIC1yIDRhMTI4NDI2MDQ5MCBtcGxh eWVyL01ha2VmaWxlLm9wdHZhcnMKLS0tIC9kZXYvbnVsbAlUaHUgSmFuIDAxIDAwOjAwOjAwIDE5 NzAgKzAwMDAKKysrIGIvbXBsYXllci9NYWtlZmlsZS5vcHR2YXJzCVNhdCBEZWMgMTQgMjI6MDc6 MzAgMjAxMyArMDEwMApAQCAtMCwwICsxLDExMCBAQAorIyBDb250YWlucyBzaW1wbGUgb3B0aW9u IHZhcmlhYmxlcyB0aGF0IGFyZSB1c2VkCisjIGJlZm9yZSBpbmNsdWRpbmcgYnNkLnBvcnQub3B0 aW9ucy5taworIyBpbiBNYWtlZmlsZXMKKworQUFMSUJfTElCX0RFUEVORFM9CWxpYmFhLnNvOiR7 UE9SVFNESVJ9L2dyYXBoaWNzL2FhbGliCitBQUxJQl9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUt YWEKKworQU1SX05CX0xJQl9ERVBFTkRTPQlsaWJvcGVuY29yZS1hbXJuYi5zbzoke1BPUlRTRElS fS9hdWRpby9vcGVuY29yZS1hbXIKK0FNUl9OQl9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtbGli b3BlbmNvcmVfYW1ybmIKKworQU1SX1dCX0xJQl9ERVBFTkRTPQlsaWJvcGVuY29yZS1hbXJ3Yi5z bzoke1BPUlRTRElSfS9hdWRpby9vcGVuY29yZS1hbXIKK0FNUl9XQl9DT05GSUdVUkVfT0ZGPQkt LWRpc2FibGUtbGlib3BlbmNvcmVfYW1yd2IKKworQkxVUkFZX0xJQl9ERVBFTkRTPQlsaWJibHVy YXkuc286JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saWJibHVyYXkKK0JMVVJBWV9DT05GSUdVUkVf T0ZGPQktLWRpc2FibGUtYmx1cmF5CisKK0NBQ0FfTElCX0RFUEVORFM9CWxpYmNhY2Euc286JHtQ T1JUU0RJUn0vZ3JhcGhpY3MvbGliY2FjYQorQ0FDQV9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUt Y2FjYQorCitDRElPX0xJQl9ERVBFTkRTPQlsaWJjZGlvLnNvOiR7UE9SVFNESVJ9L3N5c3V0aWxz L2xpYmNkaW8KK0NESU9fQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLWxpYmNkaW8KKworQ0RQQVJB Tk9JQV9MSUJfREVQRU5EUz0JbGliY2RkYV9wYXJhbm9pYS5zbzoke1BPUlRTRElSfS9hdWRpby9j ZHBhcmFub2lhCitDRFBBUkFOT0lBX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1jZHBhcmFub2lh CisKK0RJUkFDX0xJQl9ERVBFTkRTPQlsaWJkaXJhY19lbmNvZGVyLnNvOiR7UE9SVFNESVJ9L211 bHRpbWVkaWEvZGlyYWMKK0RJUkFDX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1saWJkaXJhYy1s YXZjCisKK0RWX0xJQl9ERVBFTkRTPQkJZHYuc286JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saWJk dgorRFZfQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLWxpYmR2CisKK0VOQ0FfTElCX0RFUEVORFM9 CWxpYmVuY2Euc286JHtQT1JUU0RJUn0vY29udmVydGVycy9lbmNhCitFTkNBX0NPTkZJR1VSRV9P RkY9CQktLWRpc2FibGUtZW5jYQorCitGQUFDX0xJQl9ERVBFTkRTPQlsaWJmYWFjLnNvOiR7UE9S VFNESVJ9L2F1ZGlvL2ZhYWMKK0ZBQUNfQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLWZhYWMKKwor Rk9OVENPTkZJR19MSUJfREVQRU5EUz0JbGliZm9udGNvbmZpZy5zbzoke1BPUlRTRElSfS94MTEt Zm9udHMvZm9udGNvbmZpZworRk9OVENPTkZJR19DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtZm9u dGNvbmZpZworCitGUklCSURJX0xJQl9ERVBFTkRTPQlsaWJmcmliaWRpLnNvOiR7UE9SVFNESVJ9 L2NvbnZlcnRlcnMvZnJpYmlkaQorRlJJQklESV9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtZnJp YmlkaQorCitHSUZfTElCX0RFUEVORFM9CWxpYmdpZi5zbzoke1BPUlRTRElSfS9ncmFwaGljcy9n aWZsaWIKK0dJRl9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtZ2lmCisKK0dTTV9MSUJfREVQRU5E Uz0JbGliZ3NtLnNvOiR7UE9SVFNESVJ9L2F1ZGlvL2dzbQorR1NNX0NPTkZJR1VSRV9PRkY9CS0t ZGlzYWJsZS1saWJnc20KKworSkFDS19MSUJfREVQRU5EUz0JbGliamFjay5zbzoke1BPUlRTRElS fS9hdWRpby9qYWNrCitKQUNLX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1qYWNrCisKK0xBRFNQ QV9SVU5fREVQRU5EUz0JJHtMT0NBTEJBU0V9L2xpYi9sYWRzcGEvYW1wLnNvOiR7UE9SVFNESVJ9 L2F1ZGlvL2xhZHNwYQorTEFEU1BBX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1sYWRzcGEKKwor TElCTU5HX0xJQl9ERVBFTkRTPQlsaWJtbmcuc286JHtQT1JUU0RJUn0vZ3JhcGhpY3MvbGlibW5n CitMSUJNTkdfQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLW1uZworCitMSVJDX0xJQl9ERVBFTkRT PQlsaWJsaXJjX2NsaWVudC5zbzoke1BPUlRTRElSfS9jb21tcy9saXJjCitMSVJDX0NPTkZJR1VS RV9PRkY9CS0tZGlzYWJsZS1saXJjCisKK0xaT19MSUJfREVQRU5EUz0JbGlibHpvMi5zbzoke1BP UlRTRElSfS9hcmNoaXZlcnMvbHpvMgorTFpPX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1saWJs em8KKworTkFTX0xJQl9ERVBFTkRTPQlsaWJhdWRpby5zbzoke1BPUlRTRElSfS9hdWRpby9uYXMK K05BU19DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtbmFzCisKK09QRU5KUEVHX0xJQl9ERVBFTkRT PQlsaWJvcGVuanBlZy5zbzoke1BPUlRTRElSfS9ncmFwaGljcy9vcGVuanBlZworT1BFTkpQRUdf Q09ORklHVVJFX09GRj0JLS1kaXNhYmxlLWxpYm9wZW5qcGVnCisKK09QVVNfTElCX0RFUEVORFM9 CWxpYm9wdXMuc286JHtQT1JUU0RJUn0vYXVkaW8vb3B1cworT1BVU19DT05GSUdVUkVfT0ZGPQkt LWRpc2FibGUtbGlib3B1cworCitQVUxTRUFVRElPX0xJQl9ERVBFTkRTPQlsaWJwdWxzZS5zbzok e1BPUlRTRElSfS9hdWRpby9wdWxzZWF1ZGlvCitQVUxTRUFVRElPX0NPTkZJR1VSRV9PRkY9CS0t ZGlzYWJsZS1wdWxzZQorCitSRUFMX1JVTl9ERVBFTkRTPQlyZWFscGxheToke1BPUlRTRElSfS9t dWx0aW1lZGlhL2xpbnV4LXJlYWxwbGF5ZXIKK1JFQUxfQlVJTERfREVQRU5EUz0JcmVhbHBsYXk6 JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saW51eC1yZWFscGxheWVyCitSRUFMX0NPTkZJR1VSRV9P RkY9CS0tZGlzYWJsZS1yZWFsCisKK1JUQ19CVUlMRF9ERVBFTkRTPQkke0xPQ0FMQkFTRX0vbW9k dWxlcy9ydGMua286JHtQT1JUU0RJUn0vZW11bGF0b3JzL3J0YworUlRDX1JVTl9ERVBFTkRTPQkk e0xPQ0FMQkFTRX0vbW9kdWxlcy9ydGMua286JHtQT1JUU0RJUn0vZW11bGF0b3JzL3J0YworUlRD X0NPTkZJR1VSRV9FTkFCTEU9CXJ0YworCitTQ0hST0VESU5HRVJfTElCX0RFUEVORFM9CWxpYnNj aHJvZWRpbmdlci0xLjAuc286JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9zY2hyb2VkaW5nZXIKK1ND SFJPRURJTkdFUl9DT05GSUdVUkVfT0ZGPQktLWRpc2FibGUtbGlic2Nocm9lZGluZ2VyLWxhdmMK KworU01CX0xJQl9ERVBFTkRTPQlsaWJzbWJjbGllbnQuc286JHtQT1JUU0RJUn0vbmV0L3NhbWJh LWxpYnNtYmNsaWVudAorU01CX0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS1zbWIKKworU1ZHQUxJ Ql9MSUJfREVQRU5EUz0JbGlidmdhLnNvOiR7UE9SVFNESVJ9L2dyYXBoaWNzL3N2Z2FsaWIKK1NW R0FMSUJfQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLXN2Z2EKKworVEhFT1JBX0xJQl9ERVBFTkRT PQlsaWJ0aGVvcmEuc286JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saWJ0aGVvcmEKK1RIRU9SQV9D T05GSUdVUkVfT0ZGPQktLWRpc2FibGUtdGhlb3JhCisKK1RXT0xBTUVfTElCX0RFUEVORFM9CWxp YnR3b2xhbWUuc286JHtQT1JUU0RJUn0vYXVkaW8vdHdvbGFtZQorVFdPTEFNRV9DT05GSUdVUkVf T0ZGPQktLWRpc2FibGUtdHdvbGFtZQorCitWRFBBVV9MSUJfREVQRU5EUz0JbGlidmRwYXUuc286 JHtQT1JUU0RJUn0vbXVsdGltZWRpYS9saWJ2ZHBhdQorVkRQQVVfQ09ORklHVVJFX09GRj0JLS1k aXNhYmxlLXZkcGF1CisKK1ZQWF9MSUJfREVQRU5EUz0JbGlidnB4LnNvOiR7UE9SVFNESVJ9L211 bHRpbWVkaWEvbGlidnB4CitWUFhfQ09ORklHVVJFX09GRj0JLS1kaXNhYmxlLWxpYnZweC1sYXZj CisKK1gyNjRfTElCX0RFUEVORFM9CWxpYngyNjQuc286JHtQT1JUU0RJUn0vbXVsdGltZWRpYS94 MjY0CitYMjY0X0NPTkZJR1VSRV9PRkY9CS0tZGlzYWJsZS14MjY0CisKK1hWSURfTElCX0RFUEVO RFM9CWxpYnh2aWRjb3JlLnNvOiR7UE9SVFNESVJ9L211bHRpbWVkaWEveHZpZAorWFZJRF9DT05G SUdVUkVfT0ZGPQktLWRpc2FibGUteHZpZApkaWZmIC1yIDRhMTI4NDI2MDQ5MCBtcGxheWVyL01h a2VmaWxlLnNoYXJlZAotLS0gYS9tcGxheWVyL01ha2VmaWxlLnNoYXJlZAlTYXQgRGVjIDE0IDIy OjA2OjQyIDIwMTMgKzAxMDAKKysrIGIvbXBsYXllci9NYWtlZmlsZS5zaGFyZWQJU2F0IERlYyAx NCAyMjowNzozMCAyMDEzICswMTAwCkBAIC00LDcgKzQsNyBAQAogIwogIyAkRnJlZUJTRDogaGVh ZC9tdWx0aW1lZGlhL21wbGF5ZXIvTWFrZWZpbGUuc2hhcmVkIDMyNzY4MyAyMDEzLTA5LTIwIDEw OjU0OjIyWiBhayAkCiAKLU1QTEFZRVJfU05BUFNIT1RfREFURT0JMjAxMy0wMy0wOAorTVBMQVlF Ul9TTkFQU0hPVF9EQVRFPQkyMDEzLTExLTA5CiBNUExBWUVSX1BPUlRfVkVSU0lPTj0JMS4xLnIk e01QTEFZRVJfU05BUFNIT1RfREFURTpTLy0vL2d9CiBDQVRFR09SSUVTPz0JbXVsdGltZWRpYSBh dWRpbwogTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX0dPT0dMRV9DT0RFfQpAQCAtMTcsMTQg KzE3LDEzIEBACiAKIExJQ0VOU0U9CUdQTHYyCiAKLUxJQl9ERVBFTkRTPQlwbmcxNToke1BPUlRT RElSfS9ncmFwaGljcy9wbmcgXAotCQlmcmVldHlwZToke1BPUlRTRElSfS9wcmludC9mcmVldHlw ZTIKK0xJQl9ERVBFTkRTPQlsaWJwbmcxNS5zbzoke1BPUlRTRElSfS9ncmFwaGljcy9wbmcgXAor CQlsaWJmcmVldHlwZS5zbzoke1BPUlRTRElSfS9wcmludC9mcmVldHlwZTIKIAogQlVJTERfREVQ RU5EUz0JJHtMT0NBTEJBU0V9L2Jpbi95YXNtOiR7UE9SVFNESVJ9L2RldmVsL3lhc20KIAotVVNF Uz0JCWljb252IG5jdXJzZXMKK1VTRVM9CQlnbWFrZSBpY29udiBuY3Vyc2VzCiBVU0VfWFo9CQl5 ZXMKLVVTRV9HTUFLRT0JeWVzCiBHTlVfQ09ORklHVVJFPQl5ZXMKIENPTkZJR1VSRV9FTlY9CVBU SFJFQURfQ0ZMQUdTPSIke1BUSFJFQURfQ0ZMQUdTfSIgXAogCQlQVEhSRUFEX0xJQlM9IiR7UFRI UkVBRF9MSUJTfSIgXApAQCAtMzQsMTYgKzMzLDIyIEBACiAJCS0tYXM9IiR7QVN9IiBcCiAJCS0t ZXh0cmEtY2ZsYWdzPSItSSR7UFJFRklYfS9pbmNsdWRlIC1JJHtMT0NBTEJBU0V9L2luY2x1ZGUi IFwKIAkJLS1leHRyYS1saWJzPSItTCR7UFJFRklYfS9saWIiIFwKKwkJLS1kaXNhYmxlLWFsc2Eg XAogCQktLWRpc2FibGUtYml0bWFwLWZvbnQgXAorCQktLWRpc2FibGUtY3J5c3RhbGhkIFwKKwkJ LS1kaXNhYmxlLWZhYWQgXAogCQktLWRpc2FibGUtbGliYTUyIFwKLQkJLS1kaXNhYmxlLWFsc2Eg XAogCQktLWRpc2FibGUtbGliYnMyYiBcCisJCS0tZGlzYWJsZS1saWJpbGJjIFwKKwkJLS1kaXNh YmxlLWxpYm51dCBcCisJCS0tZGlzYWJsZS1saWJ2b3JiaXMgXAorCQktLWRpc2FibGUtbGl2ZSBc CisJCS0tZGlzYWJsZS1qb3lzdGljayBcCisJCS0tZGlzYWJsZS1tYWQgXAogCQktLWRpc2FibGUt bXAzbGliIFwKLQkJLS1lbmFibGUtYXNzLWludGVybmFsIFwKLQkJLS1kaXNhYmxlLWxpYnZvcmJp cyBcCisJCS0tZGlzYWJsZS1uZW1lc2kgXAogCQktLWRpc2FibGUtc3BlZXggXAotCQktLWRpc2Fi bGUtbGlib3B1cyBcCi0JCS0tZGlzYWJsZS1saWJpbGJjCisJCS0tZW5hYmxlLWFzcy1pbnRlcm5h bAogCiBXQU5UX0dOT01FPQl5ZXMKIFdBTlRfU0RMPQl5ZXMKZGlmZiAtciA0YTEyODQyNjA0OTAg bXBsYXllci9kaXN0aW5mbwotLS0gYS9tcGxheWVyL2Rpc3RpbmZvCVNhdCBEZWMgMTQgMjI6MDY6 NDIgMjAxMyArMDEwMAorKysgYi9tcGxheWVyL2Rpc3RpbmZvCVNhdCBEZWMgMTQgMjI6MDc6MzAg MjAxMyArMDEwMApAQCAtMSwyICsxLDIgQEAKLVNIQTI1NiAobXBsYXllci0xLjEuMjAxMzAzMDgu dGFyLnh6KSA9IDkyMGJkNjkxNDNkNWI4NjdmZDAwNDFhOTliNjMwMmEzOWVkNDhlY2MxNjczZmUz YTA1MWIzYWJjY2ZmMTcyNTgKLVNJWkUgKG1wbGF5ZXItMS4xLjIwMTMwMzA4LnRhci54eikgPSAx MDMyNjg0MAorU0hBMjU2IChtcGxheWVyLTEuMS4yMDEzMTEwOS50YXIueHopID0gNTY0NzkxOWI2 MWYwMTM5NmFmMjAyNzM0MTlkNWZjNzRmOGIzNTIzMTc3YzQwZTdkMWNhMDYzYWQ0NWViMTNlYgor U0laRSAobXBsYXllci0xLjEuMjAxMzExMDkudGFyLnh6KSA9IDEwNzM4MDM2CmRpZmYgLXIgNGEx Mjg0MjYwNDkwIG1wbGF5ZXIvZmlsZXMvcGF0Y2gtY29uZmlndXJlCi0tLSBhL21wbGF5ZXIvZmls ZXMvcGF0Y2gtY29uZmlndXJlCVNhdCBEZWMgMTQgMjI6MDY6NDIgMjAxMyArMDEwMAorKysgYi9t cGxheWVyL2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZQlTYXQgRGVjIDE0IDIyOjA3OjMwIDIwMTMgKzAx MDAKQEAgLTEsNiArMSw2IEBACi0tLS0gY29uZmlndXJlLm9yaWcJMjAxMy0xMS0xNiAyMzoyODoy MS4wMDAwMDAwMDAgKzAxMDAKLSsrKyBjb25maWd1cmUJMjAxMy0xMS0xNiAyMzozNjozMi4wMDAw MDAwMDAgKzAxMDAKLUBAIC02NjgsNyArNjY4LDcgQEAKKy0tLSBjb25maWd1cmUub3JpZwkyMDEz LTExLTA4IDE3OjU5OjU1LjAwMDAwMDAwMCArMDEwMAorKysrIGNvbmZpZ3VyZQkyMDEzLTExLTA5 IDE0OjM0OjUzLjk5Njg2ODkyMyArMDEwMAorQEAgLTY0MCw3ICs2NDAsNyBAQAogIF9pd21teHQ9 YXV0bwogIF9tdHJyPWF1dG8KICBfYWx0aXZlYz1hdXRvCkBAIC05LDcgKzksNyBAQAogIF9yYW5s aWI9cmFubGliCiAgX3dpbmRyZXM9d2luZHJlcwogIF9jYz1jYwotQEAgLTE1MzQsNyArMTUzNCw2 IEBACitAQCAtMTQ1Miw3ICsxNDUyLDYgQEAKICAKICAgICopCiAgICAgIGVjaG8gIlVua25vd24g cGFyYW1ldGVyOiAkYWNfb3B0aW9uIgpAQCAtMTcsMTcgKzE3LDggQEAKICAgICAgOzsKICAKICAg IGVzYWMKLUBAIC0xNTkyLDcgKzE1OTEsNyBAQAotICAgZXNhYwotICAgZWNob3JlcyAiJGNjX3Zl cnNpb24iCi0gZWxzZQotLSAgZm9yIF9jYyBpbiAiJF9jYyIgZ2NjIGNjIDsgZG8KLSsgIGZvciBf Y2MgaW4gIiRfY2MiIGNsYW5nIGNjIDsgZG8KLSAgICAgY2NfbmFtZV90bXA9JCgkX2NjIC12IDI+ JjEgfCB0YWlsIC1uIDEgfCBjdXQgLWQgJyAnIC1mIDEpCi0gICAgIGlmIHRlc3QgIiRjY19uYW1l X3RtcCIgPSAiZ2NjIjsgdGhlbgotICAgICAgIGNjX25hbWU9JGNjX25hbWVfdG1wCi1AQCAtMTY2 OSw3ICsxNjY4LDcgQEAKLSAgIGNhc2UgIiQodW5hbWUgLW0gMj4mMSkiIGluCitAQCAtMTY4OSw3 ICsxNjg4LDcgQEAKKyAgIGNhc2UgIiQxIiBpbgogICAgICAgIHg4Nl82NHxhbWQ2NHxpWzMtOV04 Nip8aTg2cGN8eDg2fHg4NnBjfGs1fGs2fGs2XzJ8azZfM3xrNi0yfGs2LTN8cGVudGl1bSp8YXRo bG9uKnxpNTg2X2k2ODZ8aTU4Ni1pNjg2KSBob3N0X2FyY2g9aTM4NiA7OwogICAgICAgIGlhNjQp IGhvc3RfYXJjaD1pYTY0IDs7CiAtICAgICAgbWFjcHBjfHBwYyp8UG93ZXIqKSBob3N0X2FyY2g9 cHBjIDs7CkBAIC0zNSwxNTUgKzI2LDcgQEAKICAgICAgICBhbHBoYSkgaG9zdF9hcmNoPWFscGhh IDs7CiAgICAgICAgc3VuNCp8c3BhcmMqKSBob3N0X2FyY2g9c3BhcmMgOzsKICAgICAgICBwYXJp c2MqfGhwcGEqfDkwMDAqKSBob3N0X2FyY2g9aHBwYSA7OwotQEAgLTE3MDksNiArMTcwOCw3IEBA Ci0gZmkKLSAKLSBleHRyYV9jZmxhZ3M9Ii1JLiAtSWZmbXBlZyAkZXh0cmFfY2ZsYWdzIgotK2V4 dHJhX2xkZmxhZ3M9IiRleHRyYV9sZGZsYWdzIC1MJF9wcmVmaXgvbGliIgotIF90aW1lcj10aW1l ci1saW51eC5jCi0gX2dldGNoPWdldGNoMi5jCi0gCi1AQCAtMTk0NSw3ICsxOTQ1LDcgQEAKLSAg IGlmIHRlc3QgIiRfZ2NjM19leHQiICE9ICIiOyB0aGVuCi0gICAgICMgSWYgd2UgaGFkIHRvIGRp c2FibGUgU1NFL1NTRTIgYmVjYXVzZSB0aGUgYWN0aXZlIGtlcm5lbCBkb2VzIG5vdAotICAgICAj IHN1cHBvcnQgdGhpcyBpbnN0cnVjdGlvbiBzZXQgZXh0ZW5zaW9uLCB3ZSBhbHNvIGhhdmUgdG8g dGVsbAotLSAgICAjIGdjYzMgdG8gbm90IGdlbmVyYXRlIFNTRS9TU0UyIGluc3RydWN0aW9ucyBm b3Igbm9ybWFsIEMgY29kZS4KLSsgICAgIyBjbGFuZyB0byBub3QgZ2VuZXJhdGUgU1NFL1NTRTIg aW5zdHJ1Y3Rpb25zIGZvciBub3JtYWwgQyBjb2RlLgotICAgICBjZmxhZ19jaGVjayAkX21hcmNo ICRfZ2NjM19leHQgJiYgX21hcmNoPSIkX21hcmNoICRfZ2NjM19leHQiCi0gICBmaQotIAotQEAg LTE5OTYsMTUgKzE5OTYsMTUgQEAKLSAgICAgICAgICMgQU1EIENQVXMganVzdCBmcm9tIHRoZWly IHNpZ25hdHVyZS4gSW5zdGVhZCwgd2UgY2hlY2sgZGlyZWN0bHkKLSAgICAgICAgICMgd2hldGhl ciBpdCBzdXBwb3J0cyBTU0UuCi0gICAgICAgICBpZiB0ZXN0ICIkX3NzZSIgPSB5ZXM7IHRoZW4K LS0gICAgICAgICAgICAjIGdjYyB0cmVhdHMgYXRobG9uLXhwLCBhdGhsb24tNCBhbmQgYXRobG9u LW1wIHNpbWlsYXJseS4KLSsgICAgICAgICAgICAjIGNsYW5nIHRyZWF0cyBhdGhsb24teHAsIGF0 aGxvbi00IGFuZCBhdGhsb24tbXAgc2ltaWxhcmx5LgotICAgICAgICAgICAgIHByb2M9YXRobG9u LXhwCi0gICAgICAgICBlbHNlCi0tICAgICAgICAgICAgIyBBZ2FpbiwgZ2NjIHRyZWF0cyBhdGhs b24gYW5kIGF0aGxvbi10YmlyZCBzaW1pbGFybHkuCi0rICAgICAgICAgICAgIyBBZ2FpbiwgY2xh bmcgdHJlYXRzIGF0aGxvbiBhbmQgYXRobG9uLXRiaXJkIHNpbWlsYXJseS4KLSAgICAgICAgICAg ICBwcm9jPWF0aGxvbgotICAgICAgICAgZmkKLSAgICAgICAgIDs7Ci0gICAgIDE1KSBpcHJvYz02 ODYKLS0gICAgICAgICMgazggQ1BVIHR5cGUgb25seSBzdXBwb3J0ZWQgaW4gZ2NjID49IDMuNC4w LCBidXQgdGhhdCB3aWxsIGJlCi0rICAgICAgICAjIGs4IENQVSB0eXBlIG9ubHkgc3VwcG9ydGVk IGluIGNsYW5nID49IDMuNC4wLCBidXQgdGhhdCB3aWxsIGJlCi0gICAgICAgICAjIGNhdWdodCBh bmQgcmVtZWRpZWQgaW4gdGhlIG9wdGltaXphdGlvbiB0ZXN0cyBiZWxvdy4KLSAgICAgICAgIHBy b2M9azgKLSAgICAgICAgIDs7Ci1AQCAtMjA5MCwxMSArMjA5MCwxMSBAQAotICAgZmkgIyB0ZXN0 ICIkX3J1bnRpbWVfY3B1ZGV0ZWN0aW9uIiA9IG5vCi0gCi0gCi0tICAgICMgY2hlY2sgdGhhdCBn Y2Mgc3VwcG9ydHMgb3VyIENQVSwgaWYgbm90LCBmYWxsIGJhY2sgdG8gZWFybGllciBvbmVzCi0r ICAgICMgY2hlY2sgdGhhdCBjbGFuZyBzdXBwb3J0cyBvdXIgQ1BVLCBpZiBub3QsIGZhbGwgYmFj ayB0byBlYXJsaWVyIG9uZXMKLSAgICAgIyBMR0I6IGNoZWNrIC1tY3B1IGFuZCAtbWFyY2ggc3dp dGhpbmcgc3RlcCBieSBzdGVwIHdpdGggZW5hYmxpbmcKLSAgICAgIyB0byBmYWxsIGJhY2sgdGls bCAzODYuCi0gCi0tICAgICMgZ2NjID49IDMuNC4wICBkb2Vzbid0IHN1cHBvcnQgLW1jcHUsIHdl IGhhdmUgdG8gdXNlIC1tdHVuZSBpbnN0ZWFkCi0rICAgICMgY2xhbmcgPj0gMy40LjAgIGRvZXNu J3Qgc3VwcG9ydCAtbWNwdSwgd2UgaGF2ZSB0byB1c2UgLW10dW5lIGluc3RlYWQKLSAKLSAgICAg aWYgWyAiJGNjX3ZlbmRvciIgPSAiZ251IiBdICYmIChbICIkX2NjX21ham9yIiAtZ3QgMyBdIHx8 ICggWyAiJF9jY19tYWpvciIgPSAzIF0gJiYgWyAiJF9jY19taW5vciIgLWdlIDQgXSkpIDsgdGhl bgotICAgICAgICAgY3B1b3B0PS1tdHVuZQotQEAgLTIyMjQsNyArMjIyNCw3IEBACi0gICAgIGRl Zl9mYXN0XzY0Yml0PScjZGVmaW5lIEhBVkVfRkFTVF82NEJJVCAxJwotICAgICBpcHJvYz0neDg2 XzY0JwotIAotLSAgICAjIGdjYyA+PSAzLjQuMCAgZG9lc24ndCBzdXBwb3J0IC1tY3B1LCB3ZSBo YXZlIHRvIHVzZSAtbXR1bmUgaW5zdGVhZAotKyAgICAjIGNsYW5nID49IDMuNC4wICBkb2Vzbid0 IHN1cHBvcnQgLW1jcHUsIHdlIGhhdmUgdG8gdXNlIC1tdHVuZSBpbnN0ZWFkCi0gICAgIGlmIHRl c3QgIiRjY192ZW5kb3IiID0gImdudSIgJiYgdGVzdCAiJF9jY19tYWpvciIgLWd0IDMgLW8gIiRf Y2NfbWFqb3IiIC1lcSAzIC1hICIkX2NjX21pbm9yIiAtZ2UgNCA7IHRoZW4KLSAgICAgICAgIGNw dW9wdD0tbXR1bmUKLSAgICAgZWxzZQotQEAgLTIyODAsNyArMjI4MCw3IEBACi0gICAgICAgaWYg dGVzdCAiJHByb2MiID0gIms4IjsgdGhlbgotICAgICAgICAgY2ZsYWdfY2hlY2sgLW1hcmNoPSRw cm9jICRjcHVvcHQ9JHByb2MgfHwgcHJvYz1hdGhsb24teHAKLSAgICAgICBmaQotLSAgICAgICMg VGhpcyB3aWxsIGZhaWwgaWYgZ2NjIHZlcnNpb24gPCAzLjMsIHdoaWNoIGlzIE9LIGJlY2F1c2Ug ZWFybGllcgotKyAgICAgICMgVGhpcyB3aWxsIGZhaWwgaWYgY2xhbmcgdmVyc2lvbiA8IDMuMywg d2hpY2ggaXMgT0sgYmVjYXVzZSBlYXJsaWVyCi0gICAgICAgIyB2ZXJzaW9ucyBkb24ndCByZWFs bHkgc3VwcG9ydCA2NC1iaXQgb24gYW1kNjQuCi0gICAgICAgIyBJcyB0aGlzIGEgdmFsaWQgYXNz dW1wdGlvbj8gLUNvcmV5Ci0gICAgICAgaWYgdGVzdCAiJHByb2MiID0gImF0aGxvbi14cCI7IHRo ZW4KLUBAIC0yNDAwLDcgKzI0MDAsNyBAQAotICAgICAgICAgZmkKLSAgICAgICAgIDs7Ci0gICAg ICAgTmV0QlNEKQotLSAgICAgICAgIyBvbmx5IGdjYyAzLjQgd29ya3MgcmVsaWFibHkgd2l0aCBB bHRpVmVjIGNvZGUgdW5kZXIgTmV0QlNECi0rICAgICAgICAjIG9ubHkgY2xhbmcgMy40IHdvcmtz IHJlbGlhYmx5IHdpdGggQWx0aVZlYyBjb2RlIHVuZGVyIE5ldEJTRAotICAgICAgICAgY2FzZSAk Y2NfdmVyc2lvbiBpbgotICAgICAgICAgICAgIDIqfDMuMCp8My4xKnwzLjIqfDMuMyopCi0gICAg ICAgICAgICAgICAgIDs7Ci1AQCAtMjQzNyw3ICsyNDM3LDcgQEAKLSAgICAgICAgICAgICBQT1dF UjMpIF9tYXJjaD0nLW1jcHU9cG93ZXIzJyBfbWNwdT0nLW10dW5lPXBvd2VyMycgOzsKLSAgICAg ICAgICAgICAqKSA7OwotICAgICAgICAgZXNhYwotLSAgICAgICAgIyBnY2MgMy4xKC4xKSBhbmQg dXAgc3VwcG9ydHMgNzQwMCBhbmQgNzQ1MAotKyAgICAgICAgIyBjbGFuZyAzLjEoLjEpIGFuZCB1 cCBzdXBwb3J0cyA3NDAwIGFuZCA3NDUwCi0gICAgICAgICBpZiB0ZXN0ICIkX2NjX21ham9yIiAt Z2UgIjMiICYmIHRlc3QgIiRfY2NfbWlub3IiIC1nZSAiMSIgfHwgdGVzdCAiJF9jY19tYWpvciIg LWdlICI0IjsgdGhlbgotICAgICAgICAgICAgIGNhc2UgIiRwcm9jIiBpbgotICAgICAgICAgICAg ICAgICA3NDAwKnw3NDEwKikgX21hcmNoPSctbWNwdT03NDAwJyBfbWNwdT0nLW10dW5lPTc0MDAn IDs7Ci1AQCAtMjQ0NSw3ICsyNDQ1LDcgQEAKLSAgICAgICAgICAgICAgICAgKikgOzsKLSAgICAg ICAgICAgICBlc2FjCi0gICAgICAgICBmaQotLSAgICAgICAgIyBnY2MgMy4yIGFuZCB1cCBzdXBw b3J0cyA5NzAKLSsgICAgICAgICMgY2xhbmcgMy4yIGFuZCB1cCBzdXBwb3J0cyA5NzAKLSAgICAg ICAgIGlmIHRlc3QgIiRfY2NfbWFqb3IiIC1nZSAiMyIgJiYgdGVzdCAiJF9jY19taW5vciIgLWdl ICIzIiB8fCB0ZXN0ICIkX2NjX21ham9yIiAtZ2UgIjQiOyB0aGVuCi0gICAgICAgICAgICAgY2Fz ZSAiJHByb2MiIGluCi0gICAgICAgICAgICAgICAgIDk3MCp8UFBDOTcwKikgX21hcmNoPSctbWNw dT05NzAnIF9tY3B1PSctbXR1bmU9OTcwJwotQEAgLTI0NTMsMTQgKzI0NTMsMTQgQEAKLSAgICAg ICAgICAgICAgICAgKikgOzsKLSAgICAgICAgICAgICBlc2FjCi0gICAgICAgICBmaQotLSAgICAg ICAgIyBnY2MgMy4zIGFuZCB1cCBzdXBwb3J0cyBQT1dFUjQKLSsgICAgICAgICMgY2xhbmcgMy4z IGFuZCB1cCBzdXBwb3J0cyBQT1dFUjQKLSAgICAgICAgIGlmIHRlc3QgIiRfY2NfbWFqb3IiIC1n ZSAiMyIgJiYgdGVzdCAiJF9jY19taW5vciIgLWdlICIzIiB8fCB0ZXN0ICIkX2NjX21ham9yIiAt Z2UgIjQiOyB0aGVuCi0gICAgICAgICAgICAgY2FzZSAiJHByb2MiIGluCi0gICAgICAgICAgICAg ICAgIFBPV0VSNCkgX21hcmNoPSctbWNwdT1wb3dlcjQnIF9tY3B1PSctbXR1bmU9cG93ZXI0JyA7 OwotICAgICAgICAgICAgICAgICAqKSA7OwotICAgICAgICAgICAgIGVzYWMKLSAgICAgICAgIGZp Ci0tICAgICAgICAjIGdjYyAzLjQgYW5kIHVwIHN1cHBvcnRzIDQ0MCoKLSsgICAgICAgICMgY2xh bmcgMy40IGFuZCB1cCBzdXBwb3J0cyA0NDAqCi0gICAgICAgICBpZiB0ZXN0ICIkX2NjX21ham9y IiAtZ2UgIjMiICYmIHRlc3QgIiRfY2NfbWlub3IiIC1nZSAiNCIgfHwgdGVzdCAiJF9jY19tYWpv ciIgLWdlICI0IjsgdGhlbgotICAgICAgICAgICAgIGNhc2UgIiRwcm9jIiBpbgotICAgICAgICAg ICAgICAgICA0NDBFUCopIF9tYXJjaD0nLW1jcHU9NDQwZnAnIF9tY3B1PSctbXR1bmU9NDQwZnAn IDs7Ci1AQCAtMjQ2OCw3ICsyNDY4LDcgQEAKLSAgICAgICAgICAgICAgICAgKikgOzsKLSAgICAg ICAgICAgICBlc2FjCi0gICAgICAgICBmaQotLSAgICAgICAgIyBnY2MgNC4wIGFuZCB1cCBzdXBw b3J0cyBQT1dFUjUKLSsgICAgICAgICMgY2xhbmcgNC4wIGFuZCB1cCBzdXBwb3J0cyBQT1dFUjUK LSAgICAgICAgIGlmIHRlc3QgIiRfY2NfbWFqb3IiIC1nZSAiNCI7IHRoZW4KLSAgICAgICAgICAg ICBjYXNlICIkcHJvYyIgaW4KLSAgICAgICAgICAgICAgICAgUE9XRVI1KikgX21hcmNoPSctbWNw dT1wb3dlcjUnIF9tY3B1PSctbXR1bmU9cG93ZXI1JyA7OwotQEAgLTI1NDUsNyArMjU0NSw3IEBA Ci0gICAgICAgICAgICAgUjUwMDApIF9tYXJjaD0nLW1pcHM0JyBfbWNwdT0nLW10dW5lPXI1MDAw JyA7OwotICAgICAgICAgICAgIFI4MDAwfFIxMDAwMHxSMTIwMDB8UjE0MDAwfFIxNjAwMCkgX21h cmNoPSctbWlwczQnIF9tY3B1PSctbXR1bmU9cjgwMDAnIDs7Ci0gICAgICAgICBlc2FjCi0tICAg ICAgICAjIGdjYyA8IDMueCBkb2VzIG5vdCBzdXBwb3J0IC1tdHVuZS4KLSsgICAgICAgICMgY2xh bmcgPCAzLnggZG9lcyBub3Qgc3VwcG9ydCAtbXR1bmUuCi0gICAgICAgICBpZiB0ZXN0ICIkY2Nf dmVuZG9yIiA9ICJnbnUiICYmIHRlc3QgIiRfY2NfbWFqb3IiIC1sdCAzIDsgdGhlbgotICAgICAg ICAgICAgIF9tY3B1PScnCi0gICAgICAgICBmaQotQEAgLTI2NjksNyArMjY2OSw3IEBACi0gZWNo b2NoZWNrICJHQ0Mgc3VwcG9ydCBvZiAtbXN0YWNrcmVhbGlnbiIKLSAjIEdDQyA0LjIgYW5kIHNv bWUgZWFybGllciBBcHBsZSB2ZXJzaW9ucyBzdXBwb3J0IHRoaXMgZmxhZyBvbiB4ODYuIFNpbmNl Ci0gIyBNYWMgT1MgWC9JbnRlbCBoYXMgYW4gQUJJIGRpZmZlcmVudCBmcm9tIFdpbmRvd3MgdGhp cyBpcyBuZWVkZWQgdG8gYXZvaWQKLS0jIGNyYXNoZXMgd2hlbiBsb2FkaW5nIFdpbjMyIERMTHMu IFVuZm9ydHVuYXRlbHkgc29tZSBnY2MgdmVyc2lvbnMgY3JlYXRlCi0rIyBjcmFzaGVzIHdoZW4g bG9hZGluZyBXaW4zMiBETExzLiBVbmZvcnR1bmF0ZWx5IHNvbWUgY2xhbmcgdmVyc2lvbnMgY3Jl YXRlCi0gIyB3cm9uZyBjb2RlIHdpdGggdGhpcyBmbGFnLCBidXQgdGhpcyBjYW4gYmUgd29ya2Vk IGFyb3VuZCBieSBhZGRpbmcKLSAjIC1mbm8tdW5pdC1hdC1hLXRpbWUgYXMgZGVzY3JpYmVkIGlu IHRoZSBibG9nIHBvc3QgYXQKLSAjIGh0dHA6Ly93d3cuZHJpYmluLm9yZy9kYXZlL2Jsb2cvYXJj aGl2ZXMvMjAwNi8xMi8wNS9taXNzaW5nX3RoaXJkX3BhcmFtLwotQEAgLTI4NjIsNyArMjg2Miw3 IEBACi0gICAgICAgICAieG9yICUwLCAlMCIKLSAgICAgICAgIDoiPWIiKHgpCi0gICAgICAgICAv LyBqdXN0IGFkZGluZyBlYnggdG8gY2xvYmJlciBsaXN0IHNlZW1zIHVucmVsaWFibGUgd2l0aCBz b21lCi0tICAgICAgICAvLyBjb21waWxlcnMsIGUuZy4gSGFpa3UncyBnY2MgMi45NQotKyAgICAg ICAgLy8gY29tcGlsZXJzLCBlLmcuIEhhaWt1J3MgY2xhbmcgMi45NQotICAgICApOwotICAgICAv LyBhbmQgdGhlIGFib3ZlIGNoZWNrIGRvZXMgbm90IHdvcmsgZm9yIE9TWCA2NCBiaXQuLi4KLSAg ICAgX19hc21fXyB2b2xhdGlsZSgiIjo6OiIlZWJ4Iik7Ci1AQCAtMzc2NSw3ICszNzY1LDcgQEAK K0BAIC0zODIyLDcgKzM4MjEsNyBAQAogIGlmIGxpbnV4IDsgdGhlbgogICAgVEhSRUFEX0NGTEFH Uz0tRF9SRUVOVFJBTlQKICBlbGlmIGZyZWVic2QgfHwgbmV0YnNkIHx8IG9wZW5ic2QgfHwgYnNk b3MgOyB0aGVuCkBAIC0xOTIsNyArMzUsNyBAQAogIGZpCiAgaWYgdGVzdCAiJF9wdGhyZWFkcyIg PSBhdXRvIDsgdGhlbgogIGNhdCA+ICRUTVBDIDw8IEVPRgotQEAgLTM3NzUsNyArMzc3NSw3IEBA CitAQCAtMzgzMiw3ICszODMxLDcgQEAKICBFT0YKICBfcHRocmVhZHM9bm8KICBpZiAhIGhwdXgg OyB0aGVuCkBAIC0yMDEsNTAgKzQ0LDI2IEBACiAgICAgICMgZm9yIGNyb3NzY29tcGlsYXRpb24s IHdlIGNhbm5vdCBleGVjdXRlIHRoZSBwcm9ncmFtLCBiZSBoYXBweSBpZiB3ZSBjYW4gbGluayBz dGF0aWNhbGx5CiAgICAgIGNjX2NoZWNrICRUSFJFQURfQ0ZMQUdTICRsZF90bXAgJiYgKHRtcF9y dW4gfHwgdGVzdCAiJGxkX3N0YXRpYyIpICYmIGxkX3B0aHJlYWQ9IiRsZF90bXAiICYmIF9wdGhy ZWFkcz15ZXMgJiYgYnJlYWsKICAgIGRvbmUKLUBAIC00MDMxLDcgKzQwMzEsNyBAQAotIGVjaG9j aGVjayAidGVybWNhcCIKLSBpZiB0ZXN0ICIkX3Rlcm1jYXAiID0gYXV0byA7IHRoZW4KLSAgIF90 ZXJtY2FwPW5vCi0tICBmb3IgbGRfdG1wIGluICItbG5jdXJzZXMiICItbHRpbmZvIiAiLWx0ZXJt Y2FwIjsgZG8KLSsgIGZvciBsZF90bXAgaW4gIi91c3IvbGliL2xpYm5jdXJzZXMuc28iICItbHRp bmZvIiAiLWx0ZXJtY2FwIjsgZG8KLSAgICAgc3RhdGVtZW50X2NoZWNrIHRlcm0uaCAndGdldGVu dCgwLCAwKScgJGxkX3RtcCAmJgotICAgICAgIGV4dHJhX2xkZmxhZ3M9IiRleHRyYV9sZGZsYWdz ICRsZF90bXAiICYmIF90ZXJtY2FwPXllcyAmJiBicmVhaworQEAgLTM5NzksNyArMzk3OCw3IEBA CisgICAjIE5PVEU6IC1ML3Vzci9saWIgaXMgYSBoYWNrIHRvIGF2b2lkIGlzc3VlcyBkdWUgdG8g YQorICAgIyBicm9rZW4gbGliaWNvbnYgdGhhdCBlLmcuIG1hY3BvcnRzIGluc3RhbGxzIGludG8g L29wdC9sb2NhbC9saWIKKyAgICMgd2hpY2ggbWlnaHQgZ2V0IGFkZGRlZCB0byB0aGUgc2VhcmNo IHBhdGggbGF0ZXIgYnkgZS5nLiBTREwKKy0gIGZvciBsZF90bXAgaW4gIiIgIi1ML3Vzci9saWIg LWxpY29udiIgIi1saWNvbnYiICItbGljb252ICRsZF9kbCIgOyBkbworKyAgZm9yIGxkX3RtcCBp biAiIiAiLUwkX3ByZWZpeC9saWIgLWxpY29udiIgIi1saWNvbnYiICItbGljb252ICRsZF9kbCIg OyBkbworICAgICBjY19jaGVjayAkbGRfdG1wICYmIGV4dHJhX2xkZmxhZ3M9IiRleHRyYV9sZGZs YWdzICRsZF90bXAiICYmCisgICAgICAgbGRfaWNvbnY9IiRsZF90bXAiICYmIF9pY29udj15ZXMg JiYgYnJlYWsKICAgIGRvbmUKLUBAIC00NDY0LDcgKzQ0NjQsNyBAQAotICAgICBmaQotICAgZG9u ZQotICAgaWYgdGVzdCAkX2Nyb3NzX2NvbXBpbGUgPSBubzsgdGhlbgotLSAgICBmb3IgSSBpbiAv dXNyL1gxMS9pbmNsdWRlIC91c3IvWDExUjcvaW5jbHVkZSAvdXNyL2xvY2FsL2luY2x1ZGUgL3Vz ci9YMTFSNi9pbmNsdWRlIFwKLSsgICAgZm9yIEkgaW4gL3Vzci9YMTEvaW5jbHVkZSAvdXNyL1gx MVI3L2luY2x1ZGUgL3Vzci9sb2NhbC9pbmNsdWRlIC91c3IvbG9jYWwvaW5jbHVkZSBcCi0gICAg ICAgICAgICAgIC91c3IvaW5jbHVkZS9YMTFSNiAvdXNyL29wZW53aW4vaW5jbHVkZSA7IGRvCi0g ICAgICAgaWYgdGVzdCAtZiAiJEkvWDExL1hsaWIuaCIgOyB0aGVuCi0gICAgICAgICBleHRyYV9j ZmxhZ3M9IiRleHRyYV9jZmxhZ3MgLUkkSSIKLUBAIC00NDc5LDggKzQ0NzksOCBAQAotIAotIGVj aG9jaGVjayAiWDExIgotIGlmIHRlc3QgIiRfeDExIiA9IGF1dG8gJiYgdGVzdCAiJF94MTFfaGVh ZGVycyIgPSB5ZXMgOyB0aGVuCi0tICBmb3IgSSBpbiAiIiAtTC91c3IvWDExUjcvbGliIC1ML3Vz ci9sb2NhbC9saWIgLUwvdXNyL1gxMVI2L2xpYiAtTC91c3IvbGliL1gxMVI2IFwKLS0gICAgICAg ICAgIC1ML3Vzci9YMTEvbGliIC1ML3Vzci9saWIzMiAtTC91c3Ivb3Blbndpbi9saWIgLUwvdXNy L2xvY2FsL2xpYjY0IC1ML3Vzci9YMTFSNi9saWI2NCBcCi0rICBmb3IgSSBpbiAiIiAtTC91c3Iv WDExUjcvbGliIC1ML3Vzci9sb2NhbC9saWIgLUwvdXNyL2xvY2FsL2xpYiAtTC91c3IvbGliL1gx MVI2IFwKLSsgICAgICAgICAgIC1ML3Vzci9YMTEvbGliIC1ML3Vzci9saWIzMiAtTC91c3Ivb3Bl bndpbi9saWIgLUwvdXNyL2xvY2FsL2xpYjY0IC1ML3Vzci9sb2NhbC9saWI2NCBcCi0gICAgICAg ICAgICAtTC91c3IvbGliIDsgZG8KLSAgICAgaWYgbmV0YnNkOyB0aGVuCi0gICAgICAgbGRfdG1w PSIkSSAtbFhleHQgLWxYMTEgJGxkX3B0aHJlYWQgLVdsLC1SJChlY2hvICRJIHwgc2VkIHMvXi1M Ly8pIgotQEAgLTU5MDQsNyArNTkwNCw3IEBACitAQCAtNTkwMyw3ICs1OTAyLDcgQEAKICBlbGlm IGRyYWdvbmZseSA7IHRoZW4KICAgIGRlZmF1bHRfY2Ryb21fZGV2aWNlPSIvZGV2L2NkMCIKICBl bGlmIGZyZWVic2QgOyB0aGVuCiAtICBkZWZhdWx0X2Nkcm9tX2RldmljZT0iL2Rldi9hY2QwIgot KyAgZGVmYXVsdF9jZHJvbV9kZXZpY2U9Ii9kZXYvY2QwIgorKyAgZGVmYXVsdF9jZHJvbV9kZXZp Y2U9Ii9kZXYvY2Ryb20iCiAgZWxpZiBvcGVuYnNkIDsgdGhlbgogICAgZGVmYXVsdF9jZHJvbV9k ZXZpY2U9Ii9kZXYvcmNkMGMiCiAgZWxpZiBzdW5vcyA7IHRoZW4KLUBAIC01OTE0LDE1ICs1OTE0 LDE1IEBACi0gZWxpZiBhbWlnYW9zIDsgdGhlbgotICAgZGVmYXVsdF9jZHJvbV9kZXZpY2U9ImEx aWRlLmRldmljZToyIgotIGVsc2UKLS0gIGRlZmF1bHRfY2Ryb21fZGV2aWNlPSIvZGV2L2Nkcm9t IgotKyAgZGVmYXVsdF9jZHJvbV9kZXZpY2U9Ii9kZXYvY2QwIgorQEAgLTU5MTYsNyArNTkxNSw3 IEBACisgICBkZWZhdWx0X2Nkcm9tX2RldmljZT0iL2Rldi9jZHJvbSIKICBmaQogIAogLWlmIHdp bjMyIHx8IG9zMiB8fCBkcmFnb25mbHkgfHwgZnJlZWJzZCB8fCBvcGVuYnNkIHx8IHN1bm9zIHx8 IGFtaWdhb3MgOyB0aGVuCkBAIC0yNTIsMjYgKzcxLDcgQEAKICAgIGRlZmF1bHRfZHZkX2Rldmlj ZT0kZGVmYXVsdF9jZHJvbV9kZXZpY2UKICBlbGlmIGRhcndpbiA7IHRoZW4KICAgIGRlZmF1bHRf ZHZkX2RldmljZT0iL2Rldi9yZGlza04iCi0gZWxzZQotLSAgZGVmYXVsdF9kdmRfZGV2aWNlPSIv ZGV2L2R2ZCIKLSsgIGRlZmF1bHRfZHZkX2RldmljZT0iL2Rldi9jZDAiCi0gZmkKLSAKLSAKLUBA IC02MzE2LDEwICs2MzE2LDEwIEBACi0gZWNob2NoZWNrICJiemxpYiIKLSBiemxpYj1ubwotIGRl Zl9iemxpYj0nI2RlZmluZSBDT05GSUdfQlpMSUIgMCcKLS1zdGF0ZW1lbnRfY2hlY2sgYnpsaWIu aCAnQloyX2J6bGliVmVyc2lvbigpJyAtbGJ6MiAmJiBiemxpYj15ZXMKLStzdGF0ZW1lbnRfY2hl Y2sgYnpsaWIuaCAnQloyX2J6bGliVmVyc2lvbigpJyAvdXNyL2xpYi9saWJiejIuc28gJiYgYnps aWI9eWVzCi0gaWYgdGVzdCAiJGJ6bGliIiA9IHllcyA7IHRoZW4KLSAgIGRlZl9iemxpYj0nI2Rl ZmluZSBDT05GSUdfQlpMSUIgMScKLS0gIGV4dHJhX2xkZmxhZ3M9IiRleHRyYV9sZGZsYWdzIC1s YnoyIgotKyAgZXh0cmFfbGRmbGFncz0iJGV4dHJhX2xkZmxhZ3MgL3Vzci9saWIvbGliYnoyLnNv IgotIGZpCi0gZWNob3JlcyAiJGJ6bGliIgotIAotQEAgLTY0NzAsNyArNjQ3MCw3IEBACitAQCAt NjUxNCw3ICs2NTEzLDcgQEAKICBlY2hvY2hlY2sgImxpYmdzbSIKICBpZiB0ZXN0ICIkX2xpYmdz bSIgPSBhdXRvIDsgdGhlbgogICAgX2xpYmdzbT1ubwpAQCAtMjgwLDIxICs4MCw3IEBACiAgZmkK ICBpZiB0ZXN0ICIkX2xpYmdzbSIgPSB5ZXMgOyB0aGVuCiAgICBkZWZfbGliZ3NtPScjZGVmaW5l IENPTkZJR19MSUJHU00gMScKLUBAIC02ODg4LDExICs2ODg4LDEyIEBACi0gICBjYXQgPiAkVE1Q Q1BQIDw8IEVPRgotICNkZWZpbmUgUlRTUENMSUVOVF9TWU5DSFJPTk9VU19JTlRFUkZBQ0UgMQot ICNpbmNsdWRlIDxsaXZlTWVkaWEuaGg+Ci0rLy8gUGF0Y2ggZnJvbSBBcm1pbiBLLiA8a3Jlanpp IGF0IGVtYWlsIGRvdCBjb20+Ci0gI2lmIChMSVZFTUVESUFfTElCUkFSWV9WRVJTSU9OX0lOVCA8 IDExNDEyNTc2MDApCi0gI2Vycm9yIFBsZWFzZSB1cGdyYWRlIHRvIHZlcnNpb24gMjAwNi4wMy4w MyBvciBsYXRlciBvZiB0aGUgIkxJVkU1NTUgU3RyZWFtaW5nIE1lZGlhIiBsaWJyYXJpZXMgLSBh dmFpbGFibGUgZnJvbSA8d3d3LmxpdmU1NTUuY29tL2xpdmVNZWRpYS8+Ci0gI2VuZGlmCi0gI2lu Y2x1ZGUgIkJhc2ljVXNhZ2VFbnZpcm9ubWVudC5oaCIKLS1pbnQgbWFpbih2b2lkKSB7IFJUU1BD bGllbnQ6OmNyZWF0ZU5ldygqQmFzaWNVc2FnZUVudmlyb25tZW50OjpjcmVhdGVOZXcoKkJhc2lj VGFza1NjaGVkdWxlcjo6Y3JlYXRlTmV3KCkpLCAwLCAiIiwgMCk7IHJldHVybiAwOyB9Ci0raW50 IG1haW4odm9pZCkgeyBSVFNQQ2xpZW50OjpjcmVhdGVOZXcoKkJhc2ljVXNhZ2VFbnZpcm9ubWVu dDo6Y3JlYXRlTmV3KCpCYXNpY1Rhc2tTY2hlZHVsZXI6OmNyZWF0ZU5ldygpKSwgIiIsIDAsICIi LCAwKTsgcmV0dXJuIDA7IH0KLSBFT0YKLSAKLSAgIF9saXZlPW5vCi1AQCAtNjk1NCw2ICs2OTU1 LDE2IEBACitAQCAtNjk5OSw2ICs2OTk4LDE2IEBACiAgICBub2xpYnJ0bXA9bm8KICAgIGRlZl9s aWJydG1wPScjZGVmaW5lIENPTkZJR19MSUJSVE1QIDEnCiAgICBpbnB1dG1vZHVsZXM9ImxpYnJ0 bXAgJGlucHV0bW9kdWxlcyIKQEAgLTMxMSw3ICs5Nyw3IEBACiAgZWxzZQogICAgbm9saWJydG1w PXllcwogICAgX2xpYnJ0bXA9bm8KLUBAIC03MzQ2LDcgKzczNTcsNyBAQAorQEAgLTczOTEsNyAr NzQwMCw3IEBACiAgZWNob2NoZWNrICJtZW5jb2RlciIKICBpZiB0ZXN0ICIkX21lbmNvZGVyIiA9 IG5vIDsgdGhlbgogICAgIyBtcGVnMXZpZGVvIGZvciB2Zl9sYXZjLCBzbm93IGZvciB2Zl91c3Bw IC8gdmZfbWNkZWludCwKQEAgLTMyMCw3ICsxMDYsNyBAQAogIGZpCiAgZWNob3JlcyAiJF9tZW5j b2RlciIKICAKLUBAIC03Njg0LDggKzc2OTUsMTEgQEAKK0BAIC03NzI5LDggKzc3MzgsMTEgQEAK ICBpZiB0ZXN0ICIkX2d1aSIgPSB5ZXMgOyB0aGVuCiAgCiAgICAjIFJlcXVpcmVkIGxpYnJhcmll cwpAQCAtMzM0LDE2ICsxMjAsNyBAQAogICAgICBkaWUgIlRoZSBHVUkgcmVxdWlyZXMgbGliYXZj b2RlYyB3aXRoIFBORyBzdXBwb3J0IChuZWVkcyB6bGliKS4iCiAgICBmaQogICAgdGVzdCAiJF9m cmVldHlwZSIgPSBubyAmJiB0ZXN0ICIkX2JpdG1hcF9mb250IiA9IG5vICYmCi1AQCAtNzk2OSw3 ICs3OTgzLDcgQEAKLSAKLSAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwotIAotLUNGTEFHUz0iJENGTEFH UyAtRF9MQVJHRUZJTEVfU09VUkNFIC1EX0ZJTEVfT0ZGU0VUX0JJVFM9NjQgLURfTEFSR0VGSUxF NjRfU09VUkNFIgotK0NGTEFHUz0iJENGTEFHUyAtRF9MQVJHRUZJTEVfU09VUkNFIC1EX0ZJTEVf T0ZGU0VUX0JJVFM9NjQgLURfRklMRV9PRkZTRVRfQklUUz02NCIKLSAKLSBDWFhGTEFHUz0iICRD RkxBR1MgLURfX1NURENfQ09OU1RBTlRfTUFDUk9TIC1EX19TVERDX0ZPUk1BVF9NQUNST1MgLURf X1NURENfTElNSVRfTUFDUk9TIgotIAotQEAgLTgyNzEsNyArODI4NSw3IEBACitAQCAtODMxOCw3 ICs4MzMwLDcgQEAKICBFWEVTVUYgICAgICA9ICRfZXhlc3VmCiAgRVhFU1VGU19BTEwgPSAuZXhl CiAgCkBAIC0zNTIsMTIgKzEyOSwzIEBACiAgJChtYWtfZW5hYmxlICIkYXJjaF9hbGwiICAgICIk YXJjaCIgICAgQVJDSCkKICAkKG1ha19lbmFibGUgIiRzdWJhcmNoX2FsbCIgIiRzdWJhcmNoIiBB UkNIKQogICQobWFrX2VuYWJsZSAiJGNwdWV4dHNfYWxsIiAiJGNwdWV4dHMiIEhBVkUpCi1AQCAt ODQ3Myw3ICs4NDg3LDcgQEAKLSBBU19DICAgICAgID0gLWMKLSBDQ19DICAgICAgID0gLWMKLSBD WFhfQyAgICAgID0gLWMKLS1MRCAgICAgICAgID0gZ2NjCi0rTEQgICAgICAgICA9IGNsYW5nCi0g UkFOTElCICAgICA9ICRfcmFubGliCi0gWUFTTSAgICAgICA9ICRfeWFzbQotIERFUFlBU00gICAg PSAkX3lhc20KZGlmZiAtciA0YTEyODQyNjA0OTAgbXBsYXllci9maWxlcy9wYXRjaC1saWJhdmNv ZGVjLXg4Ni1hYzNkc3BfaW5pdC5jCi0tLSBhL21wbGF5ZXIvZmlsZXMvcGF0Y2gtbGliYXZjb2Rl Yy14ODYtYWMzZHNwX2luaXQuYwlTYXQgRGVjIDE0IDIyOjA2OjQyIDIwMTMgKzAxMDAKKysrIC9k ZXYvbnVsbAlUaHUgSmFuIDAxIDAwOjAwOjAwIDE5NzAgKzAwMDAKQEAgLTEsMTEgKzAsMCBAQAot LS0tIGZmbXBlZy9saWJhdmNvZGVjL3g4Ni9hYzNkc3BfaW5pdC5jCTIwMTMtMDctMDMgMjE6MzQ6 MjAuMDAwMDAwMDAwICswMjAwCi0rKysgZmZtcGVnL2xpYmF2Y29kZWMveDg2L2FjM2RzcF9pbml0 LmMJMjAxMy0wNy0wMyAyMTozNDo0NS4wMDAwMDAwMDAgKzAyMDAKLUBAIC01MSw3ICs1MSw3IEBA Ci0gZXh0ZXJuIHZvaWQgZmZfYWMzX2V4dHJhY3RfZXhwb25lbnRzX3NzZTIgKHVpbnQ4X3QgKmV4 cCwgaW50MzJfdCAqY29lZiwgaW50IG5iX2NvZWZzKTsKLSBleHRlcm4gdm9pZCBmZl9hYzNfZXh0 cmFjdF9leHBvbmVudHNfc3NzZTModWludDhfdCAqZXhwLCBpbnQzMl90ICpjb2VmLCBpbnQgbmJf Y29lZnMpOwotIAotLSNpZiBBUkNIX1g4Nl8zMiAmJiBkZWZpbmVkKF9fSU5URUxfQ09NUElMRVIp Ci0rI2lmIEFSQ0hfWDg2XzMyICYmIChkZWZpbmVkKF9fSU5URUxfQ09NUElMRVIpIHx8IGRlZmlu ZWQoX19jbGFuZ19fKSkKLSAjICAgICAgIHVuZGVmIEhBVkVfN1JFR1MKLSAjICAgICAgIGRlZmlu ZSBIQVZFXzdSRUdTIDAKLSAjZW5kaWYKZGlmZiAtciA0YTEyODQyNjA0OTAgbXBsYXllci9maWxl cy9wYXRjaC1saWJhdnV0aWwteDg2LWFzbS5oCi0tLSAvZGV2L251bGwJVGh1IEphbiAwMSAwMDow MDowMCAxOTcwICswMDAwCisrKyBiL21wbGF5ZXIvZmlsZXMvcGF0Y2gtbGliYXZ1dGlsLXg4Ni1h c20uaAlTYXQgRGVjIDE0IDIyOjA3OjMwIDIwMTMgKzAxMDAKQEAgLTAsMCArMSwxMSBAQAorLS0t IGZmbXBlZy9saWJhdnV0aWwveDg2L2FzbS5oLm9yaWcJMjAxMy0wNS0yNSAxOToyMDowNC4wMDAw MDAwMDAgKzAyMDAKKysrKyBmZm1wZWcvbGliYXZ1dGlsL3g4Ni9hc20uaAkyMDEzLTExLTExIDIx OjUxOjU3Ljk0MDI2OTc2NCArMDEwMAorQEAgLTcwLDcgKzcwLDcgQEAKKyB0eXBlZGVmIGludCB4 ODZfcmVnOworICNlbmRpZgorIAorLSNkZWZpbmUgSEFWRV83UkVHUyAoQVJDSF9YODZfNjQgfHwg KEhBVkVfRUJYX0FWQUlMQUJMRSAmJiBIQVZFX0VCUF9BVkFJTEFCTEUpKQorKyNkZWZpbmUgSEFW RV83UkVHUyAoQVJDSF9YODZfNjQpCisgI2RlZmluZSBIQVZFXzZSRUdTIChBUkNIX1g4Nl82NCB8 fCAoSEFWRV9FQlhfQVZBSUxBQkxFIHx8IEhBVkVfRUJQX0FWQUlMQUJMRSkpCisgCisgI2lmIEFS Q0hfWDg2XzY0ICYmIGRlZmluZWQoUElDKQpkaWZmIC1yIDRhMTI4NDI2MDQ5MCBtcGxheWVyL2Zp bGVzL3BhdGNoLWxpYm1wZGVtdXgtZGVtdXhfZ2lmLmMKLS0tIGEvbXBsYXllci9maWxlcy9wYXRj aC1saWJtcGRlbXV4LWRlbXV4X2dpZi5jCVNhdCBEZWMgMTQgMjI6MDY6NDIgMjAxMyArMDEwMAor KysgL2Rldi9udWxsCVRodSBKYW4gMDEgMDA6MDA6MDAgMTk3MCArMDAwMApAQCAtMSw5OSArMCww IEBACi0tLS0gbGlibXBkZW11eC9kZW11eF9naWYuYy5vcmlnCTIwMTAtMTItMTIgMTE6Mzc6MTUu MDAwMDAwMDAwICswMTAwCi0rKysgbGlibXBkZW11eC9kZW11eF9naWYuYwkyMDEyLTA2LTA2IDE2 OjU4OjUyLjAwMDAwMDAwMCArMDIwMAotQEAgLTQ1LDYgKzQ1LDE2IEBACi0gCi0gI2RlZmluZSBH SUZfU0lHTkFUVVJFICgoJ0cnIDw8IDE2KSB8ICgnSScgPDwgOCkgfCAnRicpCi0gCi0rc3RhdGlj IHZvaWQgbG9jYWxQcmludEdpZkVycm9yKHZvaWQpCi0rewotKyAgY2hhciAqRXJyID0gR2lmRXJy b3JTdHJpbmcoKTsKLSsKLSsgIGlmIChFcnIgIT0gTlVMTCkKLSsgICAgZnByaW50ZihzdGRlcnIs ICJcbkdJRi1MSUIgZXJyb3I6ICVzLlxuIiwgRXJyKTsKLSsgIGVsc2UKLSsgICAgZnByaW50Zihz dGRlcnIsICJcbkdJRi1MSUIgdW5kZWZpbmVkIGVycm9yICVkLlxuIiwgR2lmRXJyb3IoKSk7Ci0r fQotKwotICNpZm5kZWYgQ09ORklHX0dJRl9UVlRfSEFDSwotIC8vIG5vdCBzdXBwb3J0ZWQgYnkg Y2VydGFpbiB2ZXJzaW9ucyBvZiB0aGUgbGlicmFyeQotIHN0YXRpYyBpbnQgbXlfcmVhZF9naWYo R2lmRmlsZVR5cGUgKmdpZiwgdWludDhfdCAqYnVmLCBpbnQgbGVuKQotQEAgLTk0LDE0ICsxMDQs MTQgQEAKLSAKLSAgIHdoaWxlICh0eXBlICE9IElNQUdFX0RFU0NfUkVDT1JEX1RZUEUpIHsKLSAg ICAgaWYgKERHaWZHZXRSZWNvcmRUeXBlKGdpZiwgJnR5cGUpID09IEdJRl9FUlJPUikgewotLSAg ICAgIFByaW50R2lmRXJyb3IoKTsKLSsgICAgICBsb2NhbFByaW50R2lmRXJyb3IoKTsKLSAgICAg ICByZXR1cm4gMDsgLy8gb29wcwotICAgICB9Ci0gICAgIGlmICh0eXBlID09IFRFUk1JTkFURV9S RUNPUkRfVFlQRSkKLSAgICAgICByZXR1cm4gMDsgLy8gZW9mCi0gICAgIGlmICh0eXBlID09IFND UkVFTl9ERVNDX1JFQ09SRF9UWVBFKSB7Ci0gICAgICAgaWYgKERHaWZHZXRTY3JlZW5EZXNjKGdp ZikgPT0gR0lGX0VSUk9SKSB7Ci0tICAgICAgICBQcmludEdpZkVycm9yKCk7Ci0rICAgICAgICBs b2NhbFByaW50R2lmRXJyb3IoKTsKLSAgICAgICAgIHJldHVybiAwOyAvLyBvb3BzCi0gICAgICAg fQotICAgICB9Ci1AQCAtMTA5LDcgKzExOSw3IEBACi0gICAgICAgaW50IGNvZGU7Ci0gICAgICAg dW5zaWduZWQgY2hhciAqcCA9IE5VTEw7Ci0gICAgICAgaWYgKERHaWZHZXRFeHRlbnNpb24oZ2lm LCAmY29kZSwgJnApID09IEdJRl9FUlJPUikgewotLSAgICAgICAgUHJpbnRHaWZFcnJvcigpOwot KyAgICAgICAgbG9jYWxQcmludEdpZkVycm9yKCk7Ci0gICAgICAgICByZXR1cm4gMDsgLy8gb29w cwotICAgICAgIH0KLSAgICAgICBpZiAoY29kZSA9PSAweEY5KSB7Ci1AQCAtMTM4LDcgKzE0OCw3 IEBACi0gCSAgY29tbWVudHNbbGVuZ3RoXSA9IDA7Ci0gCSAgcHJpbnRmKCIlcyIsIGNvbW1lbnRz KTsKLSAgICAgICAgICAgaWYgKERHaWZHZXRFeHRlbnNpb25OZXh0KGdpZiwgJnApID09IEdJRl9F UlJPUikgewotLSAgICAgICAgICAgIFByaW50R2lmRXJyb3IoKTsKLSsgICAgICAgICAgICBsb2Nh bFByaW50R2lmRXJyb3IoKTsKLSAgICAgICAgICAgICByZXR1cm4gMDsgLy8gb29wcwotICAgICAg ICAgICB9Ci0gCX0KLUBAIC0xNDYsNyArMTU2LDcgQEAKLSAgICAgICB9Ci0gICAgICAgd2hpbGUg KHAgIT0gTlVMTCkgewotICAgICAgICAgaWYgKERHaWZHZXRFeHRlbnNpb25OZXh0KGdpZiwgJnAp ID09IEdJRl9FUlJPUikgewotLSAgICAgICAgICBQcmludEdpZkVycm9yKCk7Ci0rICAgICAgICAg IGxvY2FsUHJpbnRHaWZFcnJvcigpOwotICAgICAgICAgICByZXR1cm4gMDsgLy8gb29wcwotICAg ICAgICAgfQotICAgICAgIH0KLUBAIC0xNTQsNyArMTY0LDcgQEAKLSAgIH0KLSAKLSAgIGlmIChE R2lmR2V0SW1hZ2VEZXNjKGdpZikgPT0gR0lGX0VSUk9SKSB7Ci0tICAgIFByaW50R2lmRXJyb3Io KTsKLSsgICAgbG9jYWxQcmludEdpZkVycm9yKCk7Ci0gICAgIHJldHVybiAwOyAvLyBvb3BzCi0g ICB9Ci0gCi1AQCAtMTY3LDcgKzE3Nyw3IEBACi0gICAgIG1lbXNldChkcC0+YnVmZmVyLCBnaWYt PlNCYWNrR3JvdW5kQ29sb3IsIHByaXYtPncgKiBwcml2LT5oKTsKLSAKLSAgIGlmIChER2lmR2V0 TGluZShnaWYsIGJ1ZiwgbGVuKSA9PSBHSUZfRVJST1IpIHsKLS0gICAgUHJpbnRHaWZFcnJvcigp OwotKyAgICBsb2NhbFByaW50R2lmRXJyb3IoKTsKLSAgICAgZnJlZShidWYpOwotICAgICByZXR1 cm4gMDsgLy8gb29wcwotICAgfQotQEAgLTI2MCw3ICsyNzAsNyBAQAotICAgZ2lmID0gREdpZk9w ZW4oZGVtdXhlci0+c3RyZWFtLCBteV9yZWFkX2dpZik7Ci0gI2VuZGlmCi0gICBpZiAoIWdpZikg ewotLSAgICBQcmludEdpZkVycm9yKCk7Ci0rICAgIGxvY2FsUHJpbnRHaWZFcnJvcigpOwotICAg ICBmcmVlKHByaXYpOwotICAgICByZXR1cm4gTlVMTDsKLSAgIH0KLUBAIC0zMDIsNyArMzEyLDcg QEAKLSAgIGdpZl9wcml2X3QgKnByaXYgPSBkZW11eGVyLT5wcml2OwotICAgaWYgKCFwcml2KSBy ZXR1cm47Ci0gICBpZiAocHJpdi0+Z2lmICYmIERHaWZDbG9zZUZpbGUocHJpdi0+Z2lmKSA9PSBH SUZfRVJST1IpCi0tICAgIFByaW50R2lmRXJyb3IoKTsKLSsgICAgbG9jYWxQcmludEdpZkVycm9y KCk7Ci0gICBmcmVlKHByaXYtPnJlZmltZyk7Ci0gICBmcmVlKHByaXYpOwotIH0KZGlmZiAtciA0 YTEyODQyNjA0OTAgbXBsYXllci9maWxlcy9wYXRjaC1saWJtcGRlbXV4LWRlbXV4X3J0cC5jcHAK LS0tIGEvbXBsYXllci9maWxlcy9wYXRjaC1saWJtcGRlbXV4LWRlbXV4X3J0cC5jcHAJU2F0IERl YyAxNCAyMjowNjo0MiAyMDEzICswMTAwCisrKyAvZGV2L251bGwJVGh1IEphbiAwMSAwMDowMDow MCAxOTcwICswMDAwCkBAIC0xLDEwNyArMCwwIEBACi0tLS0gbGlibXBkZW11eC9kZW11eF9ydHAu Y3BwLm9yaWcJMjAxMi0wMy0wNSAxOToxNDozOC4wMDAwMDAwMDAgKzAxMDAKLSsrKyBsaWJtcGRl bXV4L2RlbXV4X3J0cC5jcHAJMjAxMy0xMS0xNiAyMzozOTo1NC4wMDAwMDAwMDAgKzAxMDAKLUBA IC0xOSw3ICsxOSw3IEBACi0gICogNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9z dG9uLCBNQSAwMjExMC0xMzAxIFVTQS4KLSAgKi8KLSAKLS0jZGVmaW5lIFJUU1BDTElFTlRfU1lO Q0hST05PVVNfSU5URVJGQUNFIDEKLSsvLyBQYXRjaCBmcm9tIEFybWluIEsuIDxrcmVqemkgYXQg ZW1haWwgZG90IGNvbT4KLSAKLSBleHRlcm4gIkMiIHsKLSAvLyBvbiBNaW5HVywgd2UgbXVzdCBp bmNsdWRlIHdpbmRvd3MuaCBiZWZvcmUgdGhlIHRoaW5ncyBpdCBjb25mbGljdHMKLUBAIC05NCwx NSArOTQsNiBAQAotIAotIGV4dGVybiAiQyIgY2hhciogbmV0d29ya191c2VybmFtZTsKLSBleHRl cm4gIkMiIGNoYXIqIG5ldHdvcmtfcGFzc3dvcmQ7Ci0tc3RhdGljIGNoYXIqIG9wZW5VUkxfcnRz cChSVFNQQ2xpZW50KiBjbGllbnQsIGNoYXIgY29uc3QqIHVybCkgewotLSAgLy8gSWYgd2Ugd2Vy ZSBnaXZlbiBhIHVzZXIgbmFtZSAoYW5kIG9wdGlvbmFsIHBhc3N3b3JkKSwgdGhlbiB1c2UgdGhl bToKLS0gIGlmIChuZXR3b3JrX3VzZXJuYW1lICE9IE5VTEwpIHsKLS0gICAgY2hhciBjb25zdCog cGFzc3dvcmQgPSBuZXR3b3JrX3Bhc3N3b3JkID09IE5VTEwgPyAiIiA6IG5ldHdvcmtfcGFzc3dv cmQ7Ci0tICAgIHJldHVybiBjbGllbnQtPmRlc2NyaWJlV2l0aFBhc3N3b3JkKHVybCwgbmV0d29y a191c2VybmFtZSwgcGFzc3dvcmQpOwotLSAgfSBlbHNlIHsKLS0gICAgcmV0dXJuIGNsaWVudC0+ ZGVzY3JpYmVVUkwodXJsKTsKLS0gIH0KLS19Ci0gCi0gc3RhdGljIGNoYXIqIG9wZW5VUkxfc2lw KFNJUENsaWVudCogY2xpZW50LCBjaGFyIGNvbnN0KiB1cmwpIHsKLSAgIC8vIElmIHdlIHdlcmUg Z2l2ZW4gYSB1c2VyIG5hbWUgKGFuZCBvcHRpb25hbCBwYXNzd29yZCksIHRoZW4gdXNlIHRoZW06 Ci1AQCAtMTI2LDYgKzExNywxOSBAQAotIGV4dGVybiBBVkNvZGVjQ29udGV4dCAqYXZjY3R4Owot ICNlbmRpZgotIAotK3N0YXRpYyBjaGFyIGZXYXRjaFZhcmlhYmxlRm9yU3luY0ludGVyZmFjZTsK LStzdGF0aWMgY2hhciogZlJlc3VsdFN0cmluZzsKLStzdGF0aWMgaW50IGZSZXN1bHRDb2RlOwot KwotK3N0YXRpYyB2b2lkIHJlc3BvbnNlSGFuZGxlckZvclN5bmNJbnRlcmZhY2UoUlRTUENsaWVu dCogcnRzcENsaWVudCwgaW50IHJlc3BvbnNlQ29kZSwgY2hhciogcmVzcG9uc2VTdHJpbmcpIHsK LSsgIC8vIFNldCByZXN1bHQgdmFsdWVzOgotKyAgZlJlc3VsdENvZGUgPSByZXNwb25zZUNvZGU7 Ci0rICBmUmVzdWx0U3RyaW5nID0gcmVzcG9uc2VTdHJpbmc7Ci0rCi0rICAvLyBTaWduYWwgYSBi cmVhayBmcm9tIHRoZSBldmVudCBsb29wICh0aGVyZWJ5IHJldHVybmluZyBmcm9tIHRoZSBibG9j a2luZyBjb21tYW5kKToKLSsgIGZXYXRjaFZhcmlhYmxlRm9yU3luY0ludGVyZmFjZSA9IH4wOwot K30KLSsKLSBleHRlcm4gIkMiIGludCBhdWRpb19pZCwgdmlkZW9faWQsIGR2ZHN1Yl9pZDsKLSBl eHRlcm4gIkMiIGRlbXV4ZXJfdCogZGVtdXhfb3Blbl9ydHAoZGVtdXhlcl90KiBkZW11eGVyKSB7 Ci0gICBCb29sZWFuIHN1Y2Nlc3MgPSBGYWxzZTsKLUBAIC0xNTQsMTMgKzE1OCwxOSBAQAotIAkg IHJ0c3BfdHJhbnNwb3J0X2h0dHAgPSBkZW11eGVyLT5zdHJlYW0tPnN0cmVhbWluZ19jdHJsLT51 cmwtPnBvcnQ7Ci0gCSAgcnRzcF90cmFuc3BvcnRfdGNwID0gMTsKLSAJfQotLQlydHNwQ2xpZW50 ID0gUlRTUENsaWVudDo6Y3JlYXRlTmV3KCplbnYsIHZlcmJvc2UsICJNUGxheWVyIiwgcnRzcF90 cmFuc3BvcnRfaHR0cCk7Ci0rCXJ0c3BDbGllbnQgPSBSVFNQQ2xpZW50OjpjcmVhdGVOZXcoKmVu diwgdXJsLCB2ZXJib3NlLCAiTVBsYXllciIsIHJ0c3BfdHJhbnNwb3J0X2h0dHApOwotIAlpZiAo cnRzcENsaWVudCA9PSBOVUxMKSB7Ci0gCSAgZnByaW50ZihzdGRlcnIsICJGYWlsZWQgdG8gY3Jl YXRlIFJUU1AgY2xpZW50OiAlc1xuIiwKLSAJCSAgZW52LT5nZXRSZXN1bHRNc2coKSk7Ci0gCSAg YnJlYWs7Ci0gCX0KLS0Jc2RwRGVzY3JpcHRpb24gPSBvcGVuVVJMX3J0c3AocnRzcENsaWVudCwg dXJsKTsKLSsJZldhdGNoVmFyaWFibGVGb3JTeW5jSW50ZXJmYWNlID0gMDsKLSsJcnRzcENsaWVu dC0+c2VuZERlc2NyaWJlQ29tbWFuZChyZXNwb25zZUhhbmRsZXJGb3JTeW5jSW50ZXJmYWNlKTsK LSsJZW52LT50YXNrU2NoZWR1bGVyKCkuZG9FdmVudExvb3AoJmZXYXRjaFZhcmlhYmxlRm9yU3lu Y0ludGVyZmFjZSk7Ci0rCWlmIChmUmVzdWx0Q29kZSA9PSAwKQotKwkgICAgc2RwRGVzY3JpcHRp b24gPSBmUmVzdWx0U3RyaW5nOwotKwllbHNlCi0rCSAgICBkZWxldGVbXSBmUmVzdWx0U3RyaW5n OwotICAgICAgIH0gZWxzZSB7IC8vIFNJUAotIAl1bnNpZ25lZCBjaGFyIGRlc2lyZWRBdWRpb1R5 cGUgPSAwOyAvLyBQQ01VICh1c2UgMyBmb3IgR1NNKQotIAlzaXBDbGllbnQgPSBTSVBDbGllbnQ6 OmNyZWF0ZU5ldygqZW52LCBkZXNpcmVkQXVkaW9UeXBlLCBOVUxMLAotQEAgLTI0NCw4ICsyNTQs MTIgQEAKLSAKLSAJaWYgKHJ0c3BDbGllbnQgIT0gTlVMTCkgewotIAkgIC8vIElzc3VlIGEgUlRT UCAiU0VUVVAiIGNvbW1hbmQgb24gdGhlIGNob3NlbiBzdWJzZXNzaW9uOgotLQkgIGlmICghcnRz cENsaWVudC0+c2V0dXBNZWRpYVN1YnNlc3Npb24oKnN1YnNlc3Npb24sIEZhbHNlLAotLQkJCQkJ CXJ0c3BfdHJhbnNwb3J0X3RjcCkpIGJyZWFrOwotKwkgIGZXYXRjaFZhcmlhYmxlRm9yU3luY0lu dGVyZmFjZSA9IDA7Ci0rCSAgcnRzcENsaWVudC0+c2VuZFNldHVwQ29tbWFuZCgqc3Vic2Vzc2lv biwgcmVzcG9uc2VIYW5kbGVyRm9yU3luY0ludGVyZmFjZSwgRmFsc2UsIHJ0c3BfdHJhbnNwb3J0 X3RjcCk7Ci0rCSAgZW52LT50YXNrU2NoZWR1bGVyKCkuZG9FdmVudExvb3AoJmZXYXRjaFZhcmlh YmxlRm9yU3luY0ludGVyZmFjZSk7Ci0rCSAgZGVsZXRlW10gZlJlc3VsdFN0cmluZzsKLSsJICBp ZiAoZlJlc3VsdENvZGUgIT0gMCkgYnJlYWs7Ci0rCi0gCSAgaWYgKCFzdHJjbXAoc3Vic2Vzc2lv bi0+bWVkaXVtTmFtZSgpLCAiYXVkaW8iKSkKLSAJICAgIGF1ZGlvZm91bmQgPSAxOwotIAkgIGlm ICghc3RyY21wKHN1YnNlc3Npb24tPm1lZGl1bU5hbWUoKSwgInZpZGVvIikpCi1AQCAtMjU2LDcg KzI3MCwxMSBAQAotIAotICAgICBpZiAocnRzcENsaWVudCAhPSBOVUxMKSB7Ci0gICAgICAgLy8g SXNzdWUgYSBSVFNQIGFnZ3JlZ2F0ZSAiUExBWSIgY29tbWFuZCBvbiB0aGUgd2hvbGUgc2Vzc2lv bjoKLS0gICAgICBpZiAoIXJ0c3BDbGllbnQtPnBsYXlNZWRpYVNlc3Npb24oKm1lZGlhU2Vzc2lv bikpIGJyZWFrOwotKyAgICAgIGZXYXRjaFZhcmlhYmxlRm9yU3luY0ludGVyZmFjZSA9IDA7Ci0r ICAgICAgcnRzcENsaWVudC0+c2VuZFBsYXlDb21tYW5kKCptZWRpYVNlc3Npb24sIHJlc3BvbnNl SGFuZGxlckZvclN5bmNJbnRlcmZhY2UpOwotKyAgICAgIGVudi0+dGFza1NjaGVkdWxlcigpLmRv RXZlbnRMb29wKCZmV2F0Y2hWYXJpYWJsZUZvclN5bmNJbnRlcmZhY2UpOwotKyAgICAgIGRlbGV0 ZVtdIGZSZXN1bHRTdHJpbmc7Ci0rICAgICAgaWYgKGZSZXN1bHRDb2RlICE9IDApIGJyZWFrOwot ICAgICB9IGVsc2UgaWYgKHNpcENsaWVudCAhPSBOVUxMKSB7Ci0gICAgICAgc2lwQ2xpZW50LT5z ZW5kQUNLKCk7IC8vIHRvIHN0YXJ0IHRoZSBzdHJlYW0gZmxvd2luZwotICAgICB9Ci1AQCAtNjQ1 LDcgKzY2Myw4IEBACi0gICBNZWRpYVNlc3Npb24qIG1lZGlhU2Vzc2lvbiA9IHJ0cFN0YXRlLT5t ZWRpYVNlc3Npb247Ci0gICBpZiAobWVkaWFTZXNzaW9uID09IE5VTEwpIHJldHVybjsKLSAgIGlm IChydHBTdGF0ZS0+cnRzcENsaWVudCAhPSBOVUxMKSB7Ci0tICAgIHJ0cFN0YXRlLT5ydHNwQ2xp ZW50LT50ZWFyZG93bk1lZGlhU2Vzc2lvbigqbWVkaWFTZXNzaW9uKTsKLSsgICAgZldhdGNoVmFy aWFibGVGb3JTeW5jSW50ZXJmYWNlID0gMDsKLSsgICAgcnRwU3RhdGUtPnJ0c3BDbGllbnQtPnNl bmRUZWFyZG93bkNvbW1hbmQoKm1lZGlhU2Vzc2lvbiwgTlVMTCk7Ci0gICB9IGVsc2UgaWYgKHJ0 cFN0YXRlLT5zaXBDbGllbnQgIT0gTlVMTCkgewotICAgICBydHBTdGF0ZS0+c2lwQ2xpZW50LT5z ZW5kQllFKCk7Ci0gICB9CmRpZmYgLXIgNGExMjg0MjYwNDkwIG1wbGF5ZXIvZmlsZXMvcGF0Y2gt c3RyZWFtLXR2aV9ic2RidDg0OC5jCi0tLSBhL21wbGF5ZXIvZmlsZXMvcGF0Y2gtc3RyZWFtLXR2 aV9ic2RidDg0OC5jCVNhdCBEZWMgMTQgMjI6MDY6NDIgMjAxMyArMDEwMAorKysgYi9tcGxheWVy L2ZpbGVzL3BhdGNoLXN0cmVhbS10dmlfYnNkYnQ4NDguYwlTYXQgRGVjIDE0IDIyOjA3OjMwIDIw MTMgKzAxMDAKQEAgLTEsNiArMSw2IEBACi0tLS0gc3RyZWFtL3R2aV9ic2RidDg0OC5jLm9yaWcJ MjAwOS0wNS0xMiAyMTo1ODo1Ny4wMDAwMDAwMDAgLTA1MDAKLSsrKyBzdHJlYW0vdHZpX2JzZGJ0 ODQ4LmMJMjAwOS0wNy0yMyAyMDozOToxMy41MzY2ODEyNDggLTA1MDAKLUBAIC0zNTIsMTEgKzM1 MiwxMSBAQAorLS0tIHN0cmVhbS90dmlfYnNkYnQ4NDguYy5vcmlnCTIwMTMtMDMtMTYgMTE6MTU6 MDcuMDAwMDAwMDAwICswMTAwCisrKysgc3RyZWFtL3R2aV9ic2RidDg0OC5jCTIwMTMtMTEtMDkg MTM6NDc6NDMuODA0ODY4MjA4ICswMTAwCitAQCAtMzY2LDExICszNjYsMTEgQEAKICAgICAgICAg IGludCByZXFfbW9kZSA9ICooaW50ICopYXJnOwogIAl1X3Nob3J0IHRtcF9mcHM7CiAgCkBAIC0x NCw3ICsxNCw3IEBACiAgICAgICAgICAgICAgcHJpdi0+bWF4aGVpZ2h0ID0gUEFMX0hFSUdIVDsK ICAgICAgICAgICAgICBwcml2LT5tYXh3aWR0aCA9IFBBTF9XSURUSDsKICAgICAgICAgICAgICBw cml2LT5tYXhmcHMgPSBQQUxfRlBTOwotQEAgLTM3Nyw3ICszNzcsNyBAQAorQEAgLTM5MSw3ICsz OTEsNyBAQAogIAogICAgICAgICAgaWYocmVxX21vZGUgPT0gVFZfTk9STV9OVFNDKQogICAgICAg ICAgICAgIHsKQEAgLTIzLDcgKzIzLDcgQEAKICAgICAgICAgICAgICBwcml2LT5tYXhoZWlnaHQg PSBOVFNDX0hFSUdIVDsKICAgICAgICAgICAgICBwcml2LT5tYXh3aWR0aCA9IE5UU0NfV0lEVEg7 CiAgICAgICAgICAgICAgcHJpdi0+bWF4ZnBzID0gTlRTQ19GUFM7Ci1AQCAtNDAxLDkgKzQwMSwy OCBAQAorQEAgLTQxNSw5ICs0MTUsMjggQEAKICAgICAgICAgICAgICAgICAgfQogICAgICAgICAg ICAgIH0KICAKQEAgLTU0LDIxICs1NCwyMSBAQAogICAgICAgICAgICAgIHsKICAgICAgICAgICAg ICBtcF9tc2coTVNHVF9UViwgTVNHTF9FUlIsIE1TR1RSX1RWX0J0ODQ4SW9jdGxGYWlsZWQsICJN RVRFT1JTRk1UIiwgc3RyZXJyb3IoZXJybm8pKTsKICAgICAgICAgICAgICByZXR1cm4gVFZJX0NP TlRST0xfRkFMU0U7Ci1AQCAtNTMyLDggKzU1MSw5IEBACitAQCAtNTQ2LDggKzU2NSw5IEBACiAg LyogVmlkZW8gQ29uZmlndXJhdGlvbiAqLwogIAotIHByaXYtPnZpZGVvcmVhZHkgPSBUUlVFOwor IHByaXYtPnZpZGVvcmVhZHkgPSAxOwogK3ByaXYtPmJ0ZGV2ID0gc3RyZHVwKCIvZGV2L2JrdHIw Iik7Ci0gcHJpdi0+aW1tZWRpYXRlbW9kZSA9IEZBTFNFOworIHByaXYtPmltbWVkaWF0ZW1vZGUg PSAwOwogLXByaXYtPmlmb3JtYXQgPSBNRVRFT1JfRk1UX1BBTDsKICtwcml2LT5pZm9ybWF0ID0g QlQ4NDhfSUZPUk1fRl9QQUxCREdISTsKICBwcml2LT5tYXhoZWlnaHQgPSBQQUxfSEVJR0hUOwog IHByaXYtPm1heHdpZHRoID0gUEFMX1dJRFRIOwogIHByaXYtPm1heGZwcyA9IFBBTF9GUFM7Ci1A QCAtNTU4LDcgKzU3OCw3IEBACitAQCAtNTcyLDcgKzU5Miw3IEBACiAgICAgIH0KICAKLSBpZihw cml2LT52aWRlb3JlYWR5ID09IFRSVUUgJiYKKyBpZihwcml2LT52aWRlb3JlYWR5ICYmCiAtICAg aW9jdGwocHJpdi0+YnRmZCwgTUVURU9SU0ZNVCwgJnByaXYtPmlmb3JtYXQpIDwgMCkKICsgICBp b2N0bChwcml2LT5idGZkLCBCVDg0OFNGTVQsICZwcml2LT5pZm9ybWF0KSA8IDApCiAgICAgIHsK ZGlmZiAtciA0YTEyODQyNjA0OTAgbXBsYXllci9wa2ctcGxpc3QKLS0tIGEvbXBsYXllci9wa2ct cGxpc3QJU2F0IERlYyAxNCAyMjowNjo0MiAyMDEzICswMTAwCisrKyBiL21wbGF5ZXIvcGtnLXBs aXN0CVNhdCBEZWMgMTQgMjI6MDc6MzAgMjAxMyArMDEwMApAQCAtMSw1ICsxLDcgQEAKIGJpbi9t cGxheWVyCittYW4vbWFuMS9tcGxheWVyLjEuZ3oKICUlR01QTEFZRVIlJWJpbi9nbXBsYXllcgor JSVHTVBMQVlFUiUlbWFuL21hbjEvZ21wbGF5ZXIuMS5negogJSVHTVBMQVlFUiUlc2hhcmUvcGl4 bWFwcy9tcGxheWVyLnBuZwogJSVEQVRBRElSJSUvZXhhbXBsZXMvZXRjL2V4YW1wbGUuY29uZgog JSVEQVRBRElSJSUvZXhhbXBsZXMvZXRjL2lucHV0LmNvbmYK --047d7b5db7be7f58c304ed8500ac-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 23:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2F07E87 for ; Sat, 14 Dec 2013 23:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82BBC177B for ; Sat, 14 Dec 2013 23:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBENo0K6006378 for ; Sat, 14 Dec 2013 23:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBENo0wg006377; Sat, 14 Dec 2013 23:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 14 Dec 2013 23:50:00 GMT Resent-Message-Id: <201312142350.rBENo0wg006377@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kenneth Lind Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10AC7E6B for ; Sat, 14 Dec 2013 23:46:25 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F02A11769 for ; Sat, 14 Dec 2013 23:46:24 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rBENkOe1047712 for ; Sat, 14 Dec 2013 23:46:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rBENkOHB047694; Sat, 14 Dec 2013 23:46:24 GMT (envelope-from nobody) Message-Id: <201312142346.rBENkOHB047694@oldred.freebsd.org> Date: Sat, 14 Dec 2013 23:46:24 GMT From: Kenneth Lind To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/184769: ports/www/mod_auth_imap2 Makefile should reflect apache version compatibility. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 23:50:00 -0000 >Number: 184769 >Category: ports >Synopsis: ports/www/mod_auth_imap2 Makefile should reflect apache version compatibility. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 14 23:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kenneth Lind >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD zappa 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255948: Tue Oct 1 02:23:16 CEST 2013 root@zappa:/usr/obj/usr/src/sys/ZAPPA.i386.mp i386 >Description: www/mod_auth_imap2 is not compatible with apache24. >How-To-Repeat: Configure www/apache24 to load mod_auth_imap2 >Fix: In ports/www/mod_auth_imap2, substitute USE_APACHE= 22 for USE_APACHE= 22+ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 14 23:50:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24F99EB7; Sat, 14 Dec 2013 23:50:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDB2117C3; Sat, 14 Dec 2013 23:50:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBENoYQb008100; Sat, 14 Dec 2013 23:50:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBENoYUa008099; Sat, 14 Dec 2013 23:50:34 GMT (envelope-from edwin) Date: Sat, 14 Dec 2013 23:50:34 GMT Message-Id: <201312142350.rBENoYUa008099@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184769: ports/www/mod_auth_imap2 Makefile should reflect apache version compatibility. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Dec 2013 23:50:35 -0000 Synopsis: ports/www/mod_auth_imap2 Makefile should reflect apache version compatibility. Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 14 23:50:34 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184769