From owner-svn-ports-branches@FreeBSD.ORG Sun Sep 28 16:47:45 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DA34208; Sun, 28 Sep 2014 16:47:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60652AFE; Sun, 28 Sep 2014 16:47:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8SGljuK037826; Sun, 28 Sep 2014 16:47:45 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8SGliqL037823; Sun, 28 Sep 2014 16:47:44 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201409281647.s8SGliqL037823@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Sun, 28 Sep 2014 16:47:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369468 - in branches/2014Q3/shells/bash: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2014 16:47:45 -0000 Author: bdrewery Date: Sun Sep 28 16:47:44 2014 New Revision: 369468 URL: http://svnweb.freebsd.org/changeset/ports/369468 QAT: https://qat.redports.org/buildarchive/r369468/ Log: MFH: r369467 - Update to patchlevel 27 which changes how functions are exported. This should eliminate the recent vulnerabilities, but keep the requirement for --import-functions/IMPORTFUNCTIONS option for now. - Loosen the --import-functions requirement so it is not needed when running an interactive shell. It is already disallowed for privileged/setuid mode. - Show an error on stderr when an imported function is ignored. Modified: branches/2014Q3/shells/bash/Makefile branches/2014Q3/shells/bash/distinfo branches/2014Q3/shells/bash/files/extrapatch-import-functions Directory Properties: branches/2014Q3/ (props changed) Modified: branches/2014Q3/shells/bash/Makefile ============================================================================== --- branches/2014Q3/shells/bash/Makefile Sun Sep 28 16:47:00 2014 (r369467) +++ branches/2014Q3/shells/bash/Makefile Sun Sep 28 16:47:44 2014 (r369468) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 26 +PATCHLEVEL= 27 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} PORTREVISION?= 0 CATEGORIES= shells Modified: branches/2014Q3/shells/bash/distinfo ============================================================================== --- branches/2014Q3/shells/bash/distinfo Sun Sep 28 16:47:00 2014 (r369467) +++ branches/2014Q3/shells/bash/distinfo Sun Sep 28 16:47:44 2014 (r369468) @@ -52,3 +52,5 @@ SHA256 (bash/bash43-025) = 1e5186f5c4a61 SIZE (bash/bash43-025) = 3940 SHA256 (bash/bash43-026) = 2ecc12201b3ba4273b63af4e9aad2305168cf9babf6d11152796db08724c214d SIZE (bash/bash43-026) = 1575 +SHA256 (bash/bash43-027) = 1eb76ad28561d27f7403ff3c76a36e932928a4b58a01b868d663c165f076dabe +SIZE (bash/bash43-027) = 6889 Modified: branches/2014Q3/shells/bash/files/extrapatch-import-functions ============================================================================== --- branches/2014Q3/shells/bash/files/extrapatch-import-functions Sun Sep 28 16:47:00 2014 (r369467) +++ branches/2014Q3/shells/bash/files/extrapatch-import-functions Sun Sep 28 16:47:44 2014 (r369468) @@ -19,12 +19,9 @@ Based on christos@NetBSD's patch { "noprofile", Int, &no_profile, (char **)0x0 }, { "norc", Int, &no_rc, (char **)0x0 }, -$NetBSD: patch-variables.c,v 1.1 2014/09/25 20:28:32 christos Exp $ - -Only read functions from environment if flag is set. ---- variables.c.christos 2014-09-25 16:09:41.000000000 -0400 -+++ variables.c 2014-09-25 16:12:10.000000000 -0400 -@@ -105,6 +105,7 @@ +--- variables.c.orig 2014-09-28 11:15:53.189768951 -0500 ++++ variables.c 2014-09-28 11:27:07.250722694 -0500 +@@ -110,6 +110,7 @@ extern time_t shell_start_time; extern int assigning_in_environment; extern int executing_builtin; extern int funcnest_max; @@ -32,12 +29,38 @@ Only read functions from environment if #if defined (READLINE) extern int no_line_editing; -@@ -349,7 +350,7 @@ initialize_shell_variables (env, privmod +@@ -328,6 +329,7 @@ initialize_shell_variables (env, privmod + char *name, *string, *temp_string; + int c, char_index, string_index, string_length, ro; + SHELL_VAR *temp_var; ++ int skipped_import; + + create_variable_tables (); + +@@ -352,9 +354,12 @@ initialize_shell_variables (env, privmod + temp_var = (SHELL_VAR *)NULL; + ++ skipped_import = 0; ++reval: ++ /* If exported function, define it now. Don't import functions from the environment in privileged mode. */ -- if (privmode == 0 && read_but_dont_execute == 0 && STREQN ("() {", string, 4)) -+ if (import_functions && privmode == 0 && read_but_dont_execute == 0 && STREQN ("() {", string, 4)) - { +- if (privmode == 0 && read_but_dont_execute == 0 && ++ if (skipped_import == 0 && privmode == 0 && read_but_dont_execute == 0 && + STREQN (BASHFUNC_PREFIX, name, BASHFUNC_PREFLEN) && + STREQ (BASHFUNC_SUFFIX, name + char_index - BASHFUNC_SUFFLEN) && + STREQN ("() {", string, 4)) +@@ -367,6 +372,12 @@ initialize_shell_variables (env, privmod + tname = name + BASHFUNC_PREFLEN; /* start of func name */ + tname[namelen] = '\0'; /* now tname == func name */ + ++ if (!import_functions && !interactive_shell) { ++ skipped_import = 1; ++ report_error (_("Skipping importing function definition for `%s': --import-functions required."), tname); ++ goto reval; ++ } ++ string_length = strlen (string); - temp_string = (char *)xmalloc (3 + string_length + char_index); + temp_string = (char *)xmalloc (namelen + string_length + 2); + From owner-svn-ports-branches@FreeBSD.ORG Mon Sep 29 23:28:24 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C3355B3; Mon, 29 Sep 2014 23:28:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58A1C8A2; Mon, 29 Sep 2014 23:28:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8TNSOXA006554; Mon, 29 Sep 2014 23:28:24 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8TNSN0j006549; Mon, 29 Sep 2014 23:28:23 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201409292328.s8TNSN0j006549@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 29 Sep 2014 23:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369564 - branches/2014Q3/shells/fish X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2014 23:28:24 -0000 Author: bdrewery Date: Mon Sep 29 23:28:23 2014 New Revision: 369564 URL: http://svnweb.freebsd.org/changeset/ports/369564 QAT: https://qat.redports.org/buildarchive/r369564/ Log: MFH: r369563 (without @dir changes) - Update to 2.1.1 Security: CVE-2014-2905 Security: CVE-2014-2906 Security: CVE-2014-3856 Security: CVE-2014-2914 Security: CVE-2014-3219 Modified: branches/2014Q3/shells/fish/Makefile branches/2014Q3/shells/fish/distinfo Directory Properties: branches/2014Q3/ (props changed) Modified: branches/2014Q3/shells/fish/Makefile ============================================================================== --- branches/2014Q3/shells/fish/Makefile Mon Sep 29 23:27:26 2014 (r369563) +++ branches/2014Q3/shells/fish/Makefile Mon Sep 29 23:28:23 2014 (r369564) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fish -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= shells MASTER_SITES= http://fishshell.com/files/${PORTVERSION}/ Modified: branches/2014Q3/shells/fish/distinfo ============================================================================== --- branches/2014Q3/shells/fish/distinfo Mon Sep 29 23:27:26 2014 (r369563) +++ branches/2014Q3/shells/fish/distinfo Mon Sep 29 23:28:23 2014 (r369564) @@ -1,2 +1,2 @@ -SHA256 (fish-2.1.0.tar.gz) = af527af9d145df5675ca3031c1a87007d4f4753a1cde49da88f4eb883a1cf044 -SIZE (fish-2.1.0.tar.gz) = 1707921 +SHA256 (fish-2.1.1.tar.gz) = b7e4d3c3d55fc3859edcb20462fcf0d14ab26e920eddcd503072e8105284d924 +SIZE (fish-2.1.1.tar.gz) = 1681744 From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 03:35:41 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A13097E; Wed, 1 Oct 2014 03:35:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6564167; Wed, 1 Oct 2014 03:35:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s913Zfq6006839; Wed, 1 Oct 2014 03:35:41 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s913ZfCv006837; Wed, 1 Oct 2014 03:35:41 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410010335.s913ZfCv006837@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 1 Oct 2014 03:35:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369685 - in branches/2014Q3/shells/bash: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 03:35:41 -0000 Author: bdrewery Date: Wed Oct 1 03:35:40 2014 New Revision: 369685 URL: http://svnweb.freebsd.org/changeset/ports/369685 QAT: https://qat.redports.org/buildarchive/r369685/ Log: MFH: r369684 Add RedHat's patch for CVE-2014-7186, commonly known as "redir_stack" overflow, which has not been shown to be as critical as "shellshock" currently. Security: CVE-2014-7186 Added: branches/2014Q3/shells/bash/files/patch-parse.y - copied unchanged from r369684, head/shells/bash/files/patch-parse.y Modified: branches/2014Q3/shells/bash/Makefile Directory Properties: branches/2014Q3/ (props changed) Modified: branches/2014Q3/shells/bash/Makefile ============================================================================== --- branches/2014Q3/shells/bash/Makefile Wed Oct 1 03:35:12 2014 (r369684) +++ branches/2014Q3/shells/bash/Makefile Wed Oct 1 03:35:40 2014 (r369685) @@ -4,7 +4,7 @@ PORTNAME= bash PATCHLEVEL= 27 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= shells MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} Copied: branches/2014Q3/shells/bash/files/patch-parse.y (from r369684, head/shells/bash/files/patch-parse.y) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q3/shells/bash/files/patch-parse.y Wed Oct 1 03:35:40 2014 (r369685, copy of r369684, head/shells/bash/files/patch-parse.y) @@ -0,0 +1,86 @@ +From Florian Weimer at RedHat for CVE-2014-7186: +http://www.openwall.com/lists/oss-security/2014/09/25/32 + +--- parse.y.orig 2014-09-30 12:58:08.462512373 -0400 ++++ parse.y 2014-09-30 12:58:08.629018000 -0400 +@@ -265,9 +265,21 @@ + + /* Variables to manage the task of reading here documents, because we need to + defer the reading until after a complete command has been collected. */ +-static REDIRECT *redir_stack[10]; ++static REDIRECT **redir_stack; + int need_here_doc; + ++/* Pushes REDIR onto redir_stack, resizing it as needed. */ ++static void ++push_redir_stack (REDIRECT *redir) ++{ ++ /* Guard against oveflow. */ ++ if (need_here_doc + 1 > INT_MAX / sizeof (*redir_stack)) ++ abort (); ++ redir_stack = xrealloc (redir_stack, ++ (need_here_doc + 1) * sizeof (*redir_stack)); ++ redir_stack[need_here_doc++] = redir; ++} ++ + /* Where shell input comes from. History expansion is performed on each + line when the shell is interactive. */ + static char *shell_input_line = (char *)NULL; +@@ -520,42 +532,42 @@ + source.dest = 0; + redir.filename = $2; + $$ = make_redirection (source, r_reading_until, redir, 0); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | NUMBER LESS_LESS WORD + { + source.dest = $1; + redir.filename = $3; + $$ = make_redirection (source, r_reading_until, redir, 0); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | REDIR_WORD LESS_LESS WORD + { + source.filename = $1; + redir.filename = $3; + $$ = make_redirection (source, r_reading_until, redir, REDIR_VARASSIGN); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | LESS_LESS_MINUS WORD + { + source.dest = 0; + redir.filename = $2; + $$ = make_redirection (source, r_deblank_reading_until, redir, 0); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | NUMBER LESS_LESS_MINUS WORD + { + source.dest = $1; + redir.filename = $3; + $$ = make_redirection (source, r_deblank_reading_until, redir, 0); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | REDIR_WORD LESS_LESS_MINUS WORD + { + source.filename = $1; + redir.filename = $3; + $$ = make_redirection (source, r_deblank_reading_until, redir, REDIR_VARASSIGN); +- redir_stack[need_here_doc++] = $$; ++ push_redir_stack ($$); + } + | LESS_LESS_LESS WORD + { +@@ -4905,7 +4917,7 @@ + case CASE: + case SELECT: + case FOR: +- if (word_top < MAX_CASE_NEST) ++ if (word_top + 1 < MAX_CASE_NEST) + word_top++; + word_lineno[word_top] = line_number; + break; From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 06:46:07 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04362E47; Wed, 1 Oct 2014 06:46:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC3F9E8C; Wed, 1 Oct 2014 06:46:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s916k6OE097732; Wed, 1 Oct 2014 06:46:06 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s916k6ND097731; Wed, 1 Oct 2014 06:46:06 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410010646.s916k6ND097731@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 1 Oct 2014 06:46:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369695 - branches/2014Q4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 06:46:07 -0000 Author: bapt Date: Wed Oct 1 06:46:06 2014 New Revision: 369695 URL: https://svnweb.freebsd.org/changeset/ports/369695 QAT: https://qat.redports.org/buildarchive/r369695/ Log: Branch 2014Q4 Added: branches/2014Q4/ - copied from r369694, head/ From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 12:41:18 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B3C342E; Wed, 1 Oct 2014 12:41:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17EA8E31; Wed, 1 Oct 2014 12:41:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91CfHAt068255; Wed, 1 Oct 2014 12:41:17 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91CfHLB068254; Wed, 1 Oct 2014 12:41:17 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410011241.s91CfHLB068254@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 1 Oct 2014 12:41:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369721 - branches/2014Q4/deskutils/horde-kronolith X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 12:41:18 -0000 Author: bapt Date: Wed Oct 1 12:41:17 2014 New Revision: 369721 URL: https://svnweb.freebsd.org/changeset/ports/369721 QAT: https://qat.redports.org/buildarchive/r369721/ Log: MFH: r369720 Fix option Reported by: mat Modified: branches/2014Q4/deskutils/horde-kronolith/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/deskutils/horde-kronolith/Makefile ============================================================================== --- branches/2014Q4/deskutils/horde-kronolith/Makefile Wed Oct 1 12:40:23 2014 (r369720) +++ branches/2014Q4/deskutils/horde-kronolith/Makefile Wed Oct 1 12:41:17 2014 (r369721) @@ -54,7 +54,7 @@ USE_HORDE_RUN= Horde_Role \ Horde_Util \ Horde_View -HOLIDAYS_RUN_DEPENDS= ${PEARDIR}/Date/Holidays.php:${PORTSDIR}/devel/pear-Date_Holidays +DATE_HOLIDAYS_RUN_DEPENDS= ${PEARDIR}/Date/Holidays.php:${PORTSDIR}/devel/pear-Date_Holidays TIMEOBJECTS_USE= HORDE_RUN=timeobjects XMLWRITER_USE= PHP=xmlwriter From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 13:08:56 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 535BA71; Wed, 1 Oct 2014 13:08:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F5E5262; Wed, 1 Oct 2014 13:08:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91D8uTE079643; Wed, 1 Oct 2014 13:08:56 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91D8uTo079642; Wed, 1 Oct 2014 13:08:56 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410011308.s91D8uTo079642@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 1 Oct 2014 13:08:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369724 - branches/2014Q4/archivers/pear-Horde_Compress_Fast X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 13:08:56 -0000 Author: bapt Date: Wed Oct 1 13:08:55 2014 New Revision: 369724 URL: https://svnweb.freebsd.org/changeset/ports/369724 QAT: https://qat.redports.org/buildarchive/r369724/ Log: MFH: r369723 Readd a removed (by accident) runtime dependency Reported by: mat Modified: branches/2014Q4/archivers/pear-Horde_Compress_Fast/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/archivers/pear-Horde_Compress_Fast/Makefile ============================================================================== --- branches/2014Q4/archivers/pear-Horde_Compress_Fast/Makefile Wed Oct 1 13:08:17 2014 (r369723) +++ branches/2014Q4/archivers/pear-Horde_Compress_Fast/Makefile Wed Oct 1 13:08:55 2014 (r369724) @@ -2,6 +2,7 @@ PORTNAME= Horde_Compress_Fast PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= archivers www pear PKGNAMEPREFIX= pear- @@ -9,5 +10,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Fast Compression Library USES= horde +USE_HORDE_RUN= Horde_Exception .include From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 16:58:54 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F36E520; Wed, 1 Oct 2014 16:58:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7AEFE5E9; Wed, 1 Oct 2014 16:58:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91Gwsdo090253; Wed, 1 Oct 2014 16:58:54 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91Gwsdt090252; Wed, 1 Oct 2014 16:58:54 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410011658.s91Gwsdt090252@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 1 Oct 2014 16:58:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369736 - branches/2014Q4/net/syncthing-cli X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 16:58:54 -0000 Author: antoine Date: Wed Oct 1 16:58:53 2014 New Revision: 369736 URL: https://svnweb.freebsd.org/changeset/ports/369736 QAT: https://qat.redports.org/buildarchive/r369736/ Log: MFH: r369726 net/syncthing-cli: fix fetch The archive of text.go that I had was regenerated due to a mistake on my part, this fixes it. PR: 194059 Reported by: marino Modified: branches/2014Q4/net/syncthing-cli/distinfo Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/net/syncthing-cli/distinfo ============================================================================== --- branches/2014Q4/net/syncthing-cli/distinfo Wed Oct 1 16:51:04 2014 (r369735) +++ branches/2014Q4/net/syncthing-cli/distinfo Wed Oct 1 16:58:53 2014 (r369736) @@ -6,8 +6,8 @@ SHA256 (syncthing-0.9.4.tar.gz) = e1cfbc SIZE (syncthing-0.9.4.tar.gz) = 1814400 SHA256 (crypto.go-f3cebac2bd11.tar.gz) = 9de8c02f5f4b29db4ec31e772acc5b2b75323d5a20f58bfadfe1d10300256f37 SIZE (crypto.go-f3cebac2bd11.tar.gz) = 326871 -SHA256 (text.go-d65bffbc88a1.tar.gz) = 5b87e4dddc48c363bf190982a0d229ed5c9b57793ae4ec68004dc1c2f2a31309 -SIZE (text.go-d65bffbc88a1.tar.gz) = 3231005 +SHA256 (text.go-d65bffbc88a1.tar.gz) = c78ad1d2bbd296ccddba7c86e4250f66490a3479c068a78a520fd42d68e0aa9d +SIZE (text.go-d65bffbc88a1.tar.gz) = 3234551 SHA256 (bkaradzic-go-lz4-77e2ba8.tar.gz) = 8d6a3f73bb2e21a64292d14af1a8466707c14f71b70d48fde317746cd2ac8d0e SIZE (bkaradzic-go-lz4-77e2ba8.tar.gz) = 232876 SHA256 (calmh-xdr-e1714bb.tar.gz) = 354133594fc70dac499a44ffd6d857f1f730345f8db3d07def4e38daec5ec791 From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 17:00:58 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D7556A1; Wed, 1 Oct 2014 17:00:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E6F7693; Wed, 1 Oct 2014 17:00:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91H0wi1091738; Wed, 1 Oct 2014 17:00:58 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91H0vlj091735; Wed, 1 Oct 2014 17:00:57 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410011700.s91H0vlj091735@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 1 Oct 2014 17:00:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369737 - in branches/2014Q4/devel/py-tables: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 17:00:58 -0000 Author: antoine Date: Wed Oct 1 17:00:56 2014 New Revision: 369737 URL: https://svnweb.freebsd.org/changeset/ports/369737 QAT: https://qat.redports.org/buildarchive/r369737/ Log: MFH: r369728 - Update to 3.1.1 - Fix build with cython-0.21 Modified: branches/2014Q4/devel/py-tables/Makefile branches/2014Q4/devel/py-tables/distinfo branches/2014Q4/devel/py-tables/files/patch-setup.py Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/devel/py-tables/Makefile ============================================================================== --- branches/2014Q4/devel/py-tables/Makefile Wed Oct 1 16:58:53 2014 (r369736) +++ branches/2014Q4/devel/py-tables/Makefile Wed Oct 1 17:00:56 2014 (r369737) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tables -PORTVERSION= 3.0.0 -PORTREVISION= 4 +PORTVERSION= 3.1.1 CATEGORIES= devel python MASTER_SITES= SF/py${PORTNAME:tl}/py${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,8 +22,8 @@ LIB_DEPENDS= libhdf5.so:${PORTSDIR}/scie libucl.so:${PORTSDIR}/archivers/ucl RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= python +USE_PYTHON= distutils PLIST_FILES= bin/pt2to3 bin/ptdump bin/ptrepack Modified: branches/2014Q4/devel/py-tables/distinfo ============================================================================== --- branches/2014Q4/devel/py-tables/distinfo Wed Oct 1 16:58:53 2014 (r369736) +++ branches/2014Q4/devel/py-tables/distinfo Wed Oct 1 17:00:56 2014 (r369737) @@ -1,4 +1,4 @@ -SHA256 (tables-3.0.0.tar.gz) = 53532a59c8f03c3c5ef3c73c04f5bfd8384d6a3d508683cb87fc17af4c71dfe1 -SIZE (tables-3.0.0.tar.gz) = 6191726 -SHA256 (pytablesmanual-3.0.0.pdf) = 623cf4d64884c0c34996ac8d4208dd899450a96ddd64d1267c733da0a59a6ed6 -SIZE (pytablesmanual-3.0.0.pdf) = 2515096 +SHA256 (tables-3.1.1.tar.gz) = 39b9036376f1185599771c19276f13b5b9119d98f9108f58595745ded3fe2da3 +SIZE (tables-3.1.1.tar.gz) = 6715786 +SHA256 (pytablesmanual-3.1.1.pdf) = a21ca95e2386c503d4835686b69543e96c15ea85f305e1243a45de25959774fe +SIZE (pytablesmanual-3.1.1.pdf) = 2527370 Modified: branches/2014Q4/devel/py-tables/files/patch-setup.py ============================================================================== --- branches/2014Q4/devel/py-tables/files/patch-setup.py Wed Oct 1 16:58:53 2014 (r369736) +++ branches/2014Q4/devel/py-tables/files/patch-setup.py Wed Oct 1 17:00:56 2014 (r369737) @@ -1,29 +1,57 @@ ---- setup.py.orig 2013-08-20 10:38:37.000000000 +0800 -+++ setup.py 2013-08-20 10:40:44.000000000 +0800 -@@ -133,8 +133,8 @@ +--- setup.py.orig 2014-03-26 04:49:03.000000000 +0800 ++++ setup.py 2014-10-01 21:25:20.000000000 +0800 +@@ -25,6 +25,7 @@ + from distutils.dep_util import newer + from distutils.util import convert_path + from distutils.ccompiler import new_compiler ++from distutils.version import LooseVersion + + cmdclass = {} + setuptools_kwargs = {} +@@ -122,21 +123,21 @@ + + # Check if Cython is installed or not (requisite) + try: ++ from Cython import __version__ as cython_version + from Cython.Distutils import build_ext +- from Cython.Compiler.Main import Version + cmdclass['build_ext'] = build_ext + except ImportError: + exit_with_error( + "You need %(pkgname)s %(pkgver)s or greater to compile PyTables!" + % {'pkgname': 'Cython', 'pkgver': min_cython_version}) + +-if Version.version < min_cython_version: ++if LooseVersion(cython_version) < min_cython_version: + exit_with_error( +- "At least Cython %s is needed so as to generate extensions!" +- % (min_cython_version)) ++ "You need %(pkgname)s %(pkgver)s or greater to run PyTables!" ++ % {'pkgname': 'Cython', 'pkgver': min_cython_version}) + else: + print("* Found %(pkgname)s %(pkgver)s package installed." +- % {'pkgname': 'Cython', 'pkgver': Version.version}) ++ % {'pkgname': 'Cython', 'pkgver': cython_version}) + + VERSION = open('VERSION').read().strip() + +@@ -145,8 +146,8 @@ debug = '--debug' in sys.argv # Global variables -lib_dirs = [] --inc_dirs = ['blosc'] +-inc_dirs = ['c-blosc/hdf5'] +lib_dirs = ['%%LOCALBASE%%/lib'] -+inc_dirs = ['blosc','%%LOCALBASE%%/include'] ++inc_dirs = ['c-blosc/hdf5','%%LOCALBASE%%/include'] optional_libs = [] data_files = [] # list of data files to add to packages (mainly for DLL's) -@@ -160,13 +160,13 @@ - add_from_path("CPATH", default_header_dirs) - add_from_path("C_INCLUDE_PATH", default_header_dirs) - add_from_flags("CPPFLAGS", "-I", default_header_dirs) -- default_header_dirs.extend(['/usr/include', '/usr/local/include']) -+ default_header_dirs.extend(['/usr/include', '/usr/local/include','%%LOCALBASE%%/include']) - - default_library_dirs = [] - add_from_flags("LDFLAGS", "-L", default_library_dirs) - default_library_dirs.extend( - os.path.join(_tree, _arch) -- for _tree in ('/usr/local', '/sw', '/opt', '/opt/local', '/usr', '/') -+ for _tree in ('/usr/local', '/sw', '/opt', '/opt/local', '/usr', '/','%%LOCALBASE%%') - for _arch in ('lib64', 'lib')) - default_runtime_dirs = default_library_dirs +@@ -168,7 +169,7 @@ + dirs.append(flag[len(flag_key):]) + if os.name == 'posix': +- prefixes = ('/usr/local', '/sw', '/opt', '/opt/local', '/usr', '/') ++ prefixes = ('/usr/local', '/sw', '/opt', '/opt/local', '/usr', '/','%%LOCALBASE%%') + + default_header_dirs = [] + add_from_path("CPATH", default_header_dirs) From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 17:04:08 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D9007DB; Wed, 1 Oct 2014 17:04:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6994A6BD; Wed, 1 Oct 2014 17:04:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91H48i9094683; Wed, 1 Oct 2014 17:04:08 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91H48GC094681; Wed, 1 Oct 2014 17:04:08 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410011704.s91H48GC094681@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 1 Oct 2014 17:04:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369738 - branches/2014Q4/net/py-s3cmd X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 17:04:08 -0000 Author: bdrewery Date: Wed Oct 1 17:04:07 2014 New Revision: 369738 URL: https://svnweb.freebsd.org/changeset/ports/369738 QAT: https://qat.redports.org/buildarchive/r369738/ Log: MFH: r369735 - Add missing run dependency on devel/py-dateutil - Fix WWW Modified: branches/2014Q4/net/py-s3cmd/Makefile branches/2014Q4/net/py-s3cmd/pkg-descr Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/net/py-s3cmd/Makefile ============================================================================== --- branches/2014Q4/net/py-s3cmd/Makefile Wed Oct 1 17:00:56 2014 (r369737) +++ branches/2014Q4/net/py-s3cmd/Makefile Wed Oct 1 17:04:07 2014 (r369738) @@ -3,6 +3,7 @@ PORTNAME= s3cmd DISTVERSION= 1.5.0-rc1 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= SF/s3tools/${PORTNAME}/${DISTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +15,8 @@ USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil + OPTIONS_DEFINE= DOCS .include Modified: branches/2014Q4/net/py-s3cmd/pkg-descr ============================================================================== --- branches/2014Q4/net/py-s3cmd/pkg-descr Wed Oct 1 17:00:56 2014 (r369737) +++ branches/2014Q4/net/py-s3cmd/pkg-descr Wed Oct 1 17:04:07 2014 (r369738) @@ -1,3 +1,3 @@ s3cmd - unix-like tools to manipulate stored files from the command line. -WWW: http://s3tools.logix.cz/s3cmd +WWW: http://s3tools.org/s3cmd From owner-svn-ports-branches@FreeBSD.ORG Wed Oct 1 21:46:51 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99EDF455; Wed, 1 Oct 2014 21:46:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 869FFF02; Wed, 1 Oct 2014 21:46:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91LkpbI030791; Wed, 1 Oct 2014 21:46:51 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91Lkp8U030789; Wed, 1 Oct 2014 21:46:51 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410012146.s91Lkp8U030789@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 1 Oct 2014 21:46:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369768 - branches/2014Q4/databases/phpmyadmin X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 21:46:51 -0000 Author: matthew Date: Wed Oct 1 21:46:50 2014 New Revision: 369768 URL: https://svnweb.freebsd.org/changeset/ports/369768 QAT: https://qat.redports.org/buildarchive/r369768/ Log: MFH: r369766 Security update to 4.2.9.1: XSS vulnerabilities in table search and table structure pages. Approved by: portmgr (erwin) Advisory: http://www.phpmyadmin.net/home_page/security/PMASA-2014-11.php Security: 3e8b7f8a-49b0-11e4-b711-6805ca0b3d42 Modified: branches/2014Q4/databases/phpmyadmin/Makefile branches/2014Q4/databases/phpmyadmin/distinfo Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/databases/phpmyadmin/Makefile ============================================================================== --- branches/2014Q4/databases/phpmyadmin/Makefile Wed Oct 1 21:42:33 2014 (r369767) +++ branches/2014Q4/databases/phpmyadmin/Makefile Wed Oct 1 21:46:50 2014 (r369768) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpMyAdmin -DISTVERSION= 4.2.9 +DISTVERSION= 4.2.9.1 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME}/${DISTVERSION} DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages Modified: branches/2014Q4/databases/phpmyadmin/distinfo ============================================================================== --- branches/2014Q4/databases/phpmyadmin/distinfo Wed Oct 1 21:42:33 2014 (r369767) +++ branches/2014Q4/databases/phpmyadmin/distinfo Wed Oct 1 21:46:50 2014 (r369768) @@ -1,2 +1,2 @@ -SHA256 (phpMyAdmin-4.2.9-all-languages.tar.xz) = 0b403e98fbb8b2a7b38ca18cdd148b21650170200d7b45fcea6251629b86c020 -SIZE (phpMyAdmin-4.2.9-all-languages.tar.xz) = 5148452 +SHA256 (phpMyAdmin-4.2.9.1-all-languages.tar.xz) = 755915d7ad118b93a327dc6c1baeb312c69139a73fb0c3d7809a7ab213b36cfa +SIZE (phpMyAdmin-4.2.9.1-all-languages.tar.xz) = 5217840 From owner-svn-ports-branches@FreeBSD.ORG Thu Oct 2 00:24:05 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24CB2BAC; Thu, 2 Oct 2014 00:24:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1111E400; Thu, 2 Oct 2014 00:24:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s920O474008668; Thu, 2 Oct 2014 00:24:04 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s920O4ED008666; Thu, 2 Oct 2014 00:24:04 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410020024.s920O4ED008666@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 2 Oct 2014 00:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369785 - in branches/2014Q4/shells/bash: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2014 00:24:05 -0000 Author: bdrewery Date: Thu Oct 2 00:24:04 2014 New Revision: 369785 URL: https://svnweb.freebsd.org/changeset/ports/369785 QAT: https://qat.redports.org/buildarchive/r369785/ Log: MFH: r369784 - Update to patchlevel 28 which fixes issues that were mostly addressed already in r369684. Deleted: branches/2014Q4/shells/bash/files/patch-parse.y Modified: branches/2014Q4/shells/bash/Makefile branches/2014Q4/shells/bash/distinfo Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/shells/bash/Makefile ============================================================================== --- branches/2014Q4/shells/bash/Makefile Thu Oct 2 00:22:12 2014 (r369784) +++ branches/2014Q4/shells/bash/Makefile Thu Oct 2 00:24:04 2014 (r369785) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 27 +PATCHLEVEL= 28 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 1 +PORTREVISION?= 0 CATEGORIES= shells MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} Modified: branches/2014Q4/shells/bash/distinfo ============================================================================== --- branches/2014Q4/shells/bash/distinfo Thu Oct 2 00:22:12 2014 (r369784) +++ branches/2014Q4/shells/bash/distinfo Thu Oct 2 00:24:04 2014 (r369785) @@ -54,3 +54,5 @@ SHA256 (bash/bash43-026) = 2ecc12201b3ba SIZE (bash/bash43-026) = 1575 SHA256 (bash/bash43-027) = 1eb76ad28561d27f7403ff3c76a36e932928a4b58a01b868d663c165f076dabe SIZE (bash/bash43-027) = 6889 +SHA256 (bash/bash43-028) = e8b0dbed4724fa7b9bd8ff77d12c7f03da0fbfc5f8251ef5cb8511eb082b469d +SIZE (bash/bash43-028) = 69606 From owner-svn-ports-branches@FreeBSD.ORG Thu Oct 2 00:48:52 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4B88475; Thu, 2 Oct 2014 00:48:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90D4282B; Thu, 2 Oct 2014 00:48:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s920mqrh019315; Thu, 2 Oct 2014 00:48:52 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s920mq7s019312; Thu, 2 Oct 2014 00:48:52 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410020048.s920mq7s019312@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 2 Oct 2014 00:48:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369789 - branches/2014Q4/devel/jenkins X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2014 00:48:52 -0000 Author: bdrewery Date: Thu Oct 2 00:48:51 2014 New Revision: 369789 URL: https://svnweb.freebsd.org/changeset/ports/369789 QAT: https://qat.redports.org/buildarchive/r369789/ Log: MFH: r369788 Update to 1.583 which fixes 12 critical security issues. Security: 549a2771-49cc-11e4-ae2c-c80aa9043978 Modified: branches/2014Q4/devel/jenkins/Makefile branches/2014Q4/devel/jenkins/distinfo Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/devel/jenkins/Makefile ============================================================================== --- branches/2014Q4/devel/jenkins/Makefile Thu Oct 2 00:48:09 2014 (r369788) +++ branches/2014Q4/devel/jenkins/Makefile Thu Oct 2 00:48:51 2014 (r369789) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.581 +PORTVERSION= 1.583 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: branches/2014Q4/devel/jenkins/distinfo ============================================================================== --- branches/2014Q4/devel/jenkins/distinfo Thu Oct 2 00:48:09 2014 (r369788) +++ branches/2014Q4/devel/jenkins/distinfo Thu Oct 2 00:48:51 2014 (r369789) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.581/jenkins.war) = 010578bb2fbb80b1ad29b01dc9bb20bd06addd6cf0bbebd103c48a688bebc30e -SIZE (jenkins/1.581/jenkins.war) = 67789860 +SHA256 (jenkins/1.583/jenkins.war) = 18a6c81317f4943a9ac563b44414c746ed5ae48f3378bccb8ca937aa6be5b07e +SIZE (jenkins/1.583/jenkins.war) = 67867388 From owner-svn-ports-branches@FreeBSD.ORG Thu Oct 2 16:35:29 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B4C4A91; Thu, 2 Oct 2014 16:35:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 169CACB3; Thu, 2 Oct 2014 16:35:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s92GZSU1072572; Thu, 2 Oct 2014 16:35:28 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s92GZR6A072563; Thu, 2 Oct 2014 16:35:27 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410021635.s92GZR6A072563@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 2 Oct 2014 16:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369838 - in branches/2014Q4/multimedia/libva: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2014 16:35:29 -0000 Author: madpilot Date: Thu Oct 2 16:35:26 2014 New Revision: 369838 URL: https://svnweb.freebsd.org/changeset/ports/369838 QAT: https://qat.redports.org/buildarchive/r369838/ Log: MFH: r369769 - Update to 1.4.0 - Rename patch files - Remove dirrm Fixes fetch. Approved by: portmgr (bapt) Added: branches/2014Q4/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp - copied unchanged from r369769, head/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp branches/2014Q4/multimedia/libva/files/patch-va__glx__va_glx_private.h - copied unchanged from r369769, head/multimedia/libva/files/patch-va__glx__va_glx_private.h branches/2014Q4/multimedia/libva/files/patch-va__va.c - copied unchanged from r369769, head/multimedia/libva/files/patch-va__va.c Deleted: branches/2014Q4/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp branches/2014Q4/multimedia/libva/files/patch-va-glx-va_glx_private.h branches/2014Q4/multimedia/libva/files/patch-va-va.c Modified: branches/2014Q4/multimedia/libva/Makefile branches/2014Q4/multimedia/libva/distinfo branches/2014Q4/multimedia/libva/pkg-plist Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/multimedia/libva/Makefile ============================================================================== --- branches/2014Q4/multimedia/libva/Makefile Thu Oct 2 16:23:31 2014 (r369837) +++ branches/2014Q4/multimedia/libva/Makefile Thu Oct 2 16:35:26 2014 (r369838) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libva -PORTVERSION= 1.3.1 -PORTREVISION= 3 +PORTVERSION= 1.4.0 CATEGORIES= multimedia MASTER_SITES= http://cgit.freedesktop.org/${PORTNAME}/snapshot/ Modified: branches/2014Q4/multimedia/libva/distinfo ============================================================================== --- branches/2014Q4/multimedia/libva/distinfo Thu Oct 2 16:23:31 2014 (r369837) +++ branches/2014Q4/multimedia/libva/distinfo Thu Oct 2 16:35:26 2014 (r369838) @@ -1,2 +1,2 @@ -SHA256 (libva-1.3.1.tar.bz2) = c21dfe770b957769ce2a1bf833abb0727f2ad133e2609d8b5137f0fb0c5e216e -SIZE (libva-1.3.1.tar.bz2) = 585004 +SHA256 (libva-1.4.0.tar.bz2) = bc061ab38acb89d80c1748e2cdf57bce95f05a287f7e94751fe82cf65bd824e8 +SIZE (libva-1.4.0.tar.bz2) = 590900 Copied: branches/2014Q4/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp (from r369769, head/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp Thu Oct 2 16:35:26 2014 (r369838, copy of r369769, head/multimedia/libva/files/patch-test__v4l_h264__encode__capture.cpp) @@ -0,0 +1,38 @@ +--- test/v4l_h264/encode/capture.cpp.orig 2012-10-04 15:30:51.000000000 +0200 ++++ test/v4l_h264/encode/capture.cpp 2012-10-11 17:57:55.361081933 +0200 +@@ -30,6 +30,7 @@ + */ + + #include /* EXIT_FAILURE, EXIT_SUCCESS */ ++#include /* printf */ + #include + #include /* strerror() */ + #include +@@ -37,7 +38,11 @@ + #include /* low-level i/o */ + #include + #include ++#ifdef __FreeBSD__ ++#include ++#else + #include ++#endif + #include + #include + #include +@@ -451,10 +456,15 @@ + } + for (n_buffers = 0; n_buffers < 4; ++n_buffers) { + buffers[n_buffers].length = buffer_size; ++#ifdef __FreeBSD__ ++ if(posix_memalign(&buffers[n_buffers].start, page_size, buffer_size)) ++ { ++#else + buffers[n_buffers].start = memalign (/* boundary */ page_size, + buffer_size); + + if (!buffers[n_buffers].start) { ++#endif + std::cerr << "Out of memory\n"; + exit (EXIT_FAILURE); + } Copied: branches/2014Q4/multimedia/libva/files/patch-va__glx__va_glx_private.h (from r369769, head/multimedia/libva/files/patch-va__glx__va_glx_private.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/multimedia/libva/files/patch-va__glx__va_glx_private.h Thu Oct 2 16:35:26 2014 (r369838, copy of r369769, head/multimedia/libva/files/patch-va__glx__va_glx_private.h) @@ -0,0 +1,11 @@ +--- va/glx/va_glx_private.h~ ++++ va/glx/va_glx_private.h +@@ -38,7 +38,7 @@ typedef void (*PFNGLXBINDTEXIMAGEEXTPROC + typedef void (*PFNGLXRELEASETEXIMAGEEXTPROC)(Display *, GLXDrawable, int); + #endif + +-#if GLX_GLXEXT_VERSION < 27 ++#if GLX_GLXEXT_VERSION < 21 + /* XXX: this is not exactly that version but this is the only means to + make sure we have the correct with those signatures */ + typedef GLXPixmap (*PFNGLXCREATEPIXMAPPROC)(Display *, GLXFBConfig, Pixmap, const int *); Copied: branches/2014Q4/multimedia/libva/files/patch-va__va.c (from r369769, head/multimedia/libva/files/patch-va__va.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/multimedia/libva/files/patch-va__va.c Thu Oct 2 16:35:26 2014 (r369838, copy of r369769, head/multimedia/libva/files/patch-va__va.c) @@ -0,0 +1,11 @@ +--- va/va.c.orig 2014-09-30 01:48:34 UTC ++++ va/va.c +@@ -227,7 +227,7 @@ + strncat( driver_path, DRIVER_EXTENSION, strlen(DRIVER_EXTENSION) ); + + va_infoMessage("Trying to open %s\n", driver_path); +-#ifndef ANDROID ++#if !defined(ANDROID) && defined(RTLD_NODELETE) + handle = dlopen( driver_path, RTLD_NOW | RTLD_GLOBAL | RTLD_NODELETE ); + #else + handle = dlopen( driver_path, RTLD_NOW| RTLD_GLOBAL); Modified: branches/2014Q4/multimedia/libva/pkg-plist ============================================================================== --- branches/2014Q4/multimedia/libva/pkg-plist Thu Oct 2 16:23:31 2014 (r369837) +++ branches/2014Q4/multimedia/libva/pkg-plist Thu Oct 2 16:35:26 2014 (r369838) @@ -19,6 +19,7 @@ include/va/va_drm.h include/va/va_drmcommon.h include/va/va_enc_h264.h include/va/va_enc_mpeg2.h +include/va/va_enc_vp8.h include/va/va_glx.h include/va/va_tpi.h include/va/va_version.h @@ -26,24 +27,22 @@ include/va/va_vpp.h include/va/va_x11.h lib/libva-drm.so lib/libva-drm.so.1 -lib/libva-drm.so.1.3501.0 +lib/libva-drm.so.1.3600.0 lib/libva-glx.so lib/libva-glx.so.1 -lib/libva-glx.so.1.3501.0 +lib/libva-glx.so.1.3600.0 lib/libva-tpi.so lib/libva-tpi.so.1 -lib/libva-tpi.so.1.3501.0 +lib/libva-tpi.so.1.3600.0 lib/libva-x11.so lib/libva-x11.so.1 -lib/libva-x11.so.1.3501.0 +lib/libva-x11.so.1.3600.0 lib/libva.so lib/libva.so.1 -lib/libva.so.1.3501.0 +lib/libva.so.1.3600.0 lib/va/dummy_drv_video.so libdata/pkgconfig/libva-drm.pc libdata/pkgconfig/libva-glx.pc libdata/pkgconfig/libva-tpi.pc libdata/pkgconfig/libva-x11.pc libdata/pkgconfig/libva.pc -@dirrm include/va -@dirrmtry lib/va From owner-svn-ports-branches@FreeBSD.ORG Thu Oct 2 22:02:26 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DCE3929; Thu, 2 Oct 2014 22:02:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68810958; Thu, 2 Oct 2014 22:02:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s92M2QWr033827; Thu, 2 Oct 2014 22:02:26 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s92M2POP033824; Thu, 2 Oct 2014 22:02:25 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410022202.s92M2POP033824@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 2 Oct 2014 22:02:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369867 - branches/2014Q4/www/rt42 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2014 22:02:26 -0000 Author: matthew Date: Thu Oct 2 22:02:25 2014 New Revision: 369867 URL: https://svnweb.freebsd.org/changeset/ports/369867 QAT: https://qat.redports.org/buildarchive/r369867/ Log: MFH: r369860 Security update to 4.2.8 The SMIME integration has led to www/rt42 being vulnerable to shellshock related exploits. Also contains minor fixes to Oracle DB schema updates from 4.2.7. No changes for other RDBMS backends. While here: - Drop @dirrmtry from pkg-plist (mostly) and use @dir() to set the permissions on ${LOCALBASE}/etc/rt42/ Approved by: portmgr (erwin) Release Notes: http://bestpractical.com/release-notes/rt/4.2.8 Security: 81e2b308-4a6c-11e4-b711-6805ca0b3d42 Modified: branches/2014Q4/www/rt42/Makefile branches/2014Q4/www/rt42/distinfo branches/2014Q4/www/rt42/pkg-plist Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/www/rt42/Makefile ============================================================================== --- branches/2014Q4/www/rt42/Makefile Thu Oct 2 21:29:19 2014 (r369866) +++ branches/2014Q4/www/rt42/Makefile Thu Oct 2 22:02:25 2014 (r369867) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -DISTVERSION= 4.2.7 +DISTVERSION= 4.2.8 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 Modified: branches/2014Q4/www/rt42/distinfo ============================================================================== --- branches/2014Q4/www/rt42/distinfo Thu Oct 2 21:29:19 2014 (r369866) +++ branches/2014Q4/www/rt42/distinfo Thu Oct 2 22:02:25 2014 (r369867) @@ -1,2 +1,2 @@ -SHA256 (rt-4.2.7.tar.gz) = d1631333e6cf9d6fa7712da5160a5205aa581f88ca97e7a0092e5ce8aece8fea -SIZE (rt-4.2.7.tar.gz) = 7592821 +SHA256 (rt-4.2.8.tar.gz) = 25009913d2d495ff91f21a47a61ebec1a246a2c89422e22700810a7ef51ede4c +SIZE (rt-4.2.8.tar.gz) = 7612063 Modified: branches/2014Q4/www/rt42/pkg-plist ============================================================================== --- branches/2014Q4/www/rt42/pkg-plist Thu Oct 2 21:29:19 2014 (r369866) +++ branches/2014Q4/www/rt42/pkg-plist Thu Oct 2 22:02:25 2014 (r369867) @@ -2,12 +2,12 @@ bin/rt bin/rt-crontool bin/rt-mailgate +@dir(root,rt,0750) %%RT_ETC_DIR%% @mode 0440 %%RT_ETC_DIR%%/RT_Config.pm @unexec if cmp -s %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm-dist %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm ; then rm -f %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm; fi %%RT_ETC_DIR%%/RT_SiteConfig.pm-dist @exec [ -f %B/RT_SiteConfig.pm ] || cp -p %D/%F %B/RT_SiteConfig.pm -@mode %%RT_ETC_DIR%%/acl.Oracle %%RT_ETC_DIR%%/acl.Pg %%RT_ETC_DIR%%/acl.mysql @@ -16,8 +16,6 @@ bin/rt-mailgate %%RT_ETC_DIR%%/schema.Pg %%RT_ETC_DIR%%/schema.SQLite %%RT_ETC_DIR%%/schema.mysql -@exec chmod 0750 %D/%%RT_ETC_DIR%% -@exec chgrp rt %D/%%RT_ETC_DIR%% @group wheel %%SITE_PERL%%/RT.pm %%SITE_PERL%%/RT/ACE.pm @@ -480,6 +478,7 @@ sbin/standalone_httpd %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.2.6/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.2.6/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.2.7/content +%%PORTDOCS%%%%DOCSDIR%%/upgrade/4.2.8/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/generate-rtaddressregexp %%PORTDOCS%%%%DOCSDIR%%/upgrade/sanity-check-stylesheets.pl %%PORTDOCS%%%%DOCSDIR%%/upgrade/shrink_cgm_table.pl @@ -1500,309 +1499,6 @@ sbin/standalone_httpd %%DATADIR%%/static/js/supersubs.js %%DATADIR%%/static/js/titlebox-state.js %%DATADIR%%/static/js/util.js -@dirrmtry %%RT_ETC_DIR%% -@dirrmtry %%SITE_PERL%%/RT/Action -@dirrmtry %%SITE_PERL%%/RT/Approval/Rule -@dirrmtry %%SITE_PERL%%/RT/Approval -@dirrmtry %%SITE_PERL%%/RT/Condition -@dirrmtry %%SITE_PERL%%/RT/Crypt/GnuPG -@dirrmtry %%SITE_PERL%%/RT/Crypt -@dirrmtry %%SITE_PERL%%/RT/CustomFieldValues -@dirrmtry %%SITE_PERL%%/RT/Dashboard -@dirrmtry %%SITE_PERL%%/RT/DependencyWalker -@dirrmtry %%SITE_PERL%%/RT/Graph -@dirrmtry %%SITE_PERL%%/RT/I18N -@dirrmtry %%SITE_PERL%%/RT/Interface/Email/Auth -@dirrmtry %%SITE_PERL%%/RT/Interface/Email -@dirrmtry %%SITE_PERL%%/RT/Interface/Web/Middleware -@dirrmtry %%SITE_PERL%%/RT/Interface/Web/QueryBuilder -@dirrmtry %%SITE_PERL%%/RT/Interface/Web -@dirrmtry %%SITE_PERL%%/RT/Interface -@dirrmtry %%SITE_PERL%%/RT/Lifecycle -@dirrmtry %%SITE_PERL%%/RT/Migrate/Importer -@dirrmtry %%SITE_PERL%%/RT/Migrate/Serializer -@dirrmtry %%SITE_PERL%%/RT/Migrate -@dirrmtry %%SITE_PERL%%/RT/Pod -@dirrmtry %%SITE_PERL%%/RT/Record/Role -@dirrmtry %%SITE_PERL%%/RT/Record -@dirrmtry %%SITE_PERL%%/RT/Report/Tickets -@dirrmtry %%SITE_PERL%%/RT/Report -@dirrmtry %%SITE_PERL%%/RT/Search -@dirrmtry %%SITE_PERL%%/RT/SearchBuilder/Role -@dirrmtry %%SITE_PERL%%/RT/SearchBuilder -@dirrmtry %%SITE_PERL%%/RT/Shredder/Plugin/Base -@dirrmtry %%SITE_PERL%%/RT/Shredder/Plugin -@dirrmtry %%SITE_PERL%%/RT/Shredder -@dirrmtry %%SITE_PERL%%/RT/Squish -@dirrmtry %%SITE_PERL%%/RT/Test -@dirrmtry %%SITE_PERL%%/RT/URI -@dirrmtry %%SITE_PERL%%/RT -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/customizing -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/extending -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/images -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/incremental-export -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/reporting -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.15 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.17 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.3.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.3.11 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.5.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.10 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.15 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.19 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.81 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.82 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.85 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.86 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.87 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.8 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.9 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.5 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.8 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.12 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.13 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.18 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.19 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.9 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.10 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.11 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.12 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.13 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.14 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.15 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.16 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.17 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.18 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.19 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.20 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.21 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.22 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.23 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.5 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.8 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.1.9 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.2.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.2.2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.2.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.2.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.2.7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% -@dirrmtry %%DATADIR%%/etc -@dirrmtry %%DATADIR%%/fonts -@dirrmtry %%DATADIR%%/html/Admin/Articles/Classes -@dirrmtry %%DATADIR%%/html/Admin/Articles/Elements -@dirrmtry %%DATADIR%%/html/Admin/Articles -@dirrmtry %%DATADIR%%/html/Admin/CustomFields -@dirrmtry %%DATADIR%%/html/Admin/Elements -@dirrmtry %%DATADIR%%/html/Admin/Global/CustomFields -@dirrmtry %%DATADIR%%/html/Admin/Global -@dirrmtry %%DATADIR%%/html/Admin/Groups -@dirrmtry %%DATADIR%%/html/Admin/Queues -@dirrmtry %%DATADIR%%/html/Admin/Scrips/Elements -@dirrmtry %%DATADIR%%/html/Admin/Scrips -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Dumps -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Error -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Object -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder -@dirrmtry %%DATADIR%%/html/Admin/Tools -@dirrmtry %%DATADIR%%/html/Admin/Users -@dirrmtry %%DATADIR%%/html/Admin -@dirrmtry %%DATADIR%%/html/Approvals/Elements -@dirrmtry %%DATADIR%%/html/Approvals -@dirrmtry %%DATADIR%%/html/Articles/Article/Elements -@dirrmtry %%DATADIR%%/html/Articles/Article -@dirrmtry %%DATADIR%%/html/Articles/Elements -@dirrmtry %%DATADIR%%/html/Articles -@dirrmtry %%DATADIR%%/html/Dashboards/Elements/ShowPortlet -@dirrmtry %%DATADIR%%/html/Dashboards/Elements -@dirrmtry %%DATADIR%%/html/Dashboards -@dirrmtry %%DATADIR%%/html/Download/CustomFieldValue -@dirrmtry %%DATADIR%%/html/Download -@dirrmtry %%DATADIR%%/html/Elements/CollectionAsTable -@dirrmtry %%DATADIR%%/html/Elements/Crypt -@dirrmtry %%DATADIR%%/html/Elements/RT__Article -@dirrmtry %%DATADIR%%/html/Elements/RT__Class -@dirrmtry %%DATADIR%%/html/Elements/RT__CustomField -@dirrmtry %%DATADIR%%/html/Elements/RT__Dashboard -@dirrmtry %%DATADIR%%/html/Elements/RT__Group -@dirrmtry %%DATADIR%%/html/Elements/RT__Queue -@dirrmtry %%DATADIR%%/html/Elements/RT__SavedSearch -@dirrmtry %%DATADIR%%/html/Elements/RT__Scrip -@dirrmtry %%DATADIR%%/html/Elements/RT__Template -@dirrmtry %%DATADIR%%/html/Elements/RT__Ticket -@dirrmtry %%DATADIR%%/html/Elements/RT__User -@dirrmtry %%DATADIR%%/html/Elements -@dirrmtry %%DATADIR%%/html/Errors/WebRemoteUser -@dirrmtry %%DATADIR%%/html/Errors -@dirrmtry %%DATADIR%%/html/Helpers/Autocomplete -@dirrmtry %%DATADIR%%/html/Helpers/Toggle -@dirrmtry %%DATADIR%%/html/Helpers -@dirrmtry %%DATADIR%%/html/Install/Elements -@dirrmtry %%DATADIR%%/html/Install -@dirrmtry %%DATADIR%%/html/NoAuth/Helpers/CustomLogo -@dirrmtry %%DATADIR%%/html/NoAuth/Helpers -@dirrmtry %%DATADIR%%/html/NoAuth/RichText -@dirrmtry %%DATADIR%%/html/NoAuth/css/aileron -@dirrmtry %%DATADIR%%/html/NoAuth/css/ballard -@dirrmtry %%DATADIR%%/html/NoAuth/css/base -@dirrmtry %%DATADIR%%/html/NoAuth/css/rudder -@dirrmtry %%DATADIR%%/html/NoAuth/css/web2 -@dirrmtry %%DATADIR%%/html/NoAuth/css -@dirrmtry %%DATADIR%%/html/NoAuth/iCal -@dirrmtry %%DATADIR%%/html/NoAuth/js -@dirrmtry %%DATADIR%%/html/NoAuth/rss -@dirrmtry %%DATADIR%%/html/NoAuth -@dirrmtry %%DATADIR%%/html/Prefs -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/attachment -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/group -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/queue -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/ticket -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/transaction -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/user -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms -@dirrmtry %%DATADIR%%/html/REST/1.0/NoAuth -@dirrmtry %%DATADIR%%/html/REST/1.0/search -@dirrmtry %%DATADIR%%/html/REST/1.0/ticket -@dirrmtry %%DATADIR%%/html/REST/1.0 -@dirrmtry %%DATADIR%%/html/REST -@dirrmtry %%DATADIR%%/html/Search/Elements -@dirrmtry %%DATADIR%%/html/Search -@dirrmtry %%DATADIR%%/html/SelfService/Article -@dirrmtry %%DATADIR%%/html/SelfService/Attachment -@dirrmtry %%DATADIR%%/html/SelfService/Elements -@dirrmtry %%DATADIR%%/html/SelfService/Helpers/Autocomplete -@dirrmtry %%DATADIR%%/html/SelfService/Helpers -@dirrmtry %%DATADIR%%/html/SelfService -@dirrmtry %%DATADIR%%/html/Ticket/Attachment/WithHeaders -@dirrmtry %%DATADIR%%/html/Ticket/Attachment -@dirrmtry %%DATADIR%%/html/Ticket/Elements -@dirrmtry %%DATADIR%%/html/Ticket/Graphs/Elements -@dirrmtry %%DATADIR%%/html/Ticket/Graphs -@dirrmtry %%DATADIR%%/html/Ticket -@dirrmtry %%DATADIR%%/html/Tools -@dirrmtry %%DATADIR%%/html/User/Elements/Portlets -@dirrmtry %%DATADIR%%/html/User/Elements -@dirrmtry %%DATADIR%%/html/User -@dirrmtry %%DATADIR%%/html/Widgets/Form -@dirrmtry %%DATADIR%%/html/Widgets -@dirrmtry %%DATADIR%%/html/m/_elements -@dirrmtry %%DATADIR%%/html/m/ticket -@dirrmtry %%DATADIR%%/html/m/tickets -@dirrmtry %%DATADIR%%/html/m -@dirrmtry %%DATADIR%%/html -@dirrmtry %%DATADIR%%/lib -@dirrmtry %%DATADIR%%/plugins -@dirrmtry %%DATADIR%%/po -@dirrmtry %%DATADIR%%/static/RichText/lang -@dirrmtry %%DATADIR%%/static/RichText/plugins/a11yhelp/dialogs/lang -@dirrmtry %%DATADIR%%/static/RichText/plugins/a11yhelp/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/a11yhelp -@dirrmtry %%DATADIR%%/static/RichText/plugins/about/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/about -@dirrmtry %%DATADIR%%/static/RichText/plugins/clipboard/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/clipboard -@dirrmtry %%DATADIR%%/static/RichText/plugins/colordialog/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/colordialog -@dirrmtry %%DATADIR%%/static/RichText/plugins/dialog -@dirrmtry %%DATADIR%%/static/RichText/plugins/div/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/div -@dirrmtry %%DATADIR%%/static/RichText/plugins/fakeobjects/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/fakeobjects -@dirrmtry %%DATADIR%%/static/RichText/plugins/find/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/find -@dirrmtry %%DATADIR%%/static/RichText/plugins/flash/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/flash/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/flash -@dirrmtry %%DATADIR%%/static/RichText/plugins/forms/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/forms/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/forms -@dirrmtry %%DATADIR%%/static/RichText/plugins/iframe/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/iframe/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/iframe -@dirrmtry %%DATADIR%%/static/RichText/plugins/image/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/image/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/image -@dirrmtry %%DATADIR%%/static/RichText/plugins/link/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/link/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/link -@dirrmtry %%DATADIR%%/static/RichText/plugins/liststyle/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/liststyle -@dirrmtry %%DATADIR%%/static/RichText/plugins/magicline/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/magicline -@dirrmtry %%DATADIR%%/static/RichText/plugins/pagebreak/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/pagebreak -@dirrmtry %%DATADIR%%/static/RichText/plugins/pastefromword/filter -@dirrmtry %%DATADIR%%/static/RichText/plugins/pastefromword -@dirrmtry %%DATADIR%%/static/RichText/plugins/preview -@dirrmtry %%DATADIR%%/static/RichText/plugins/scayt/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/scayt -@dirrmtry %%DATADIR%%/static/RichText/plugins/showblocks/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/showblocks -@dirrmtry %%DATADIR%%/static/RichText/plugins/smiley/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/smiley/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/smiley -@dirrmtry %%DATADIR%%/static/RichText/plugins/specialchar/dialogs/lang -@dirrmtry %%DATADIR%%/static/RichText/plugins/specialchar/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/specialchar -@dirrmtry %%DATADIR%%/static/RichText/plugins/table/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/table -@dirrmtry %%DATADIR%%/static/RichText/plugins/tabletools/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/tabletools -@dirrmtry %%DATADIR%%/static/RichText/plugins/templates/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/templates/templates/images -@dirrmtry %%DATADIR%%/static/RichText/plugins/templates/templates -@dirrmtry %%DATADIR%%/static/RichText/plugins/templates -@dirrmtry %%DATADIR%%/static/RichText/plugins/wsc/dialogs -@dirrmtry %%DATADIR%%/static/RichText/plugins/wsc -@dirrmtry %%DATADIR%%/static/RichText/plugins -@dirrmtry %%DATADIR%%/static/RichText/skins/kama/images -@dirrmtry %%DATADIR%%/static/RichText/skins/kama -@dirrmtry %%DATADIR%%/static/RichText/skins -@dirrmtry %%DATADIR%%/static/RichText -@dirrmtry %%DATADIR%%/static/css/aileron -@dirrmtry %%DATADIR%%/static/css/ballard -@dirrmtry %%DATADIR%%/static/css/base -@dirrmtry %%DATADIR%%/static/css/images -@dirrmtry %%DATADIR%%/static/css/rudder -@dirrmtry %%DATADIR%%/static/css/web2 -@dirrmtry %%DATADIR%%/static/css -@dirrmtry %%DATADIR%%/static/images/css -@dirrmtry %%DATADIR%%/static/images/farbtastic -@dirrmtry %%DATADIR%%/static/images/jquery_ui -@dirrmtry %%DATADIR%%/static/images/tablesorter -@dirrmtry %%DATADIR%%/static/images -@dirrmtry %%DATADIR%%/static/js -@dirrmtry %%DATADIR%%/static -@dirrmtry %%DATADIR%% -@dirrmtry %%WWWDIR%%42 @unexec rmdir "/var/run/rt42/mason_data/cache" >/dev/null 2>&1 || : @unexec rmdir "/var/run/rt42/mason_data/etc" >/dev/null 2>&1 || : @unexec rmdir "/var/run/rt42/mason_data/obj" >/dev/null 2>&1 || : From owner-svn-ports-branches@FreeBSD.ORG Fri Oct 3 08:38:09 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A04A6C4; Fri, 3 Oct 2014 08:38:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E086EACD; Fri, 3 Oct 2014 08:38:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s938c8nB032866; Fri, 3 Oct 2014 08:38:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s938c8sn032861; Fri, 3 Oct 2014 08:38:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410030838.s938c8sn032861@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 3 Oct 2014 08:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369877 - in branches/2014Q4: . Mk X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 08:38:09 -0000 Author: bapt Date: Fri Oct 3 08:38:08 2014 New Revision: 369877 URL: https://svnweb.freebsd.org/changeset/ports/369877 QAT: https://qat.redports.org/buildarchive/r369877/ Log: MFH: r369875 Switch to WITH_NEW_XORG for all supported version of FreeBSD by default Modified: branches/2014Q4/Mk/bsd.port.mk branches/2014Q4/UPDATING Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/Mk/bsd.port.mk ============================================================================== --- branches/2014Q4/Mk/bsd.port.mk Fri Oct 3 08:36:17 2014 (r369876) +++ branches/2014Q4/Mk/bsd.port.mk Fri Oct 3 08:38:08 2014 (r369877) @@ -1217,12 +1217,10 @@ _OSVERSION_MAJOR= ${OSVERSION:C/([0-9]?[ # Enable new xorg for FreeBSD versions after Radeon KMS was imported unless # WITHOUT_NEW_XORG is set. -.if ${OSVERSION} >= 902510 -. if !defined(WITHOUT_NEW_XORG) +.if !defined(WITHOUT_NEW_XORG) WITH_NEW_XORG?= yes -. else +.else .undef WITH_NEW_XORG -. endif .endif # Only define tools here (for transition period with between pkg tools) Modified: branches/2014Q4/UPDATING ============================================================================== --- branches/2014Q4/UPDATING Fri Oct 3 08:36:17 2014 (r369876) +++ branches/2014Q4/UPDATING Fri Oct 3 08:38:08 2014 (r369877) @@ -5,6 +5,21 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20141003: + AFFECTS: xorg users + AUTHOR: bapt@FreeBSD.org + + The WITH_NEW_XORG setting has been activated by default on all versions + of FreeBSD, which allows us to have packages for xorg 1.12 and kde4. + + Please be aware that on systems that only support syscons + switching virtual terminals or exiting X + results in a black screen or the last image of their desktop + (like a screenshot) being presented. Commands can still be typed blindly. + + Most, if not all, systems should be using vt(4) and this can be enabled + by setting kern.vty=vt in /boot/loader.conf and reboot to activate. + 20141001: AFFECTS: xorg users AUTHOR: bapt@FreeBSD.org From owner-svn-ports-branches@FreeBSD.ORG Fri Oct 3 08:38:39 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4307F7B0; Fri, 3 Oct 2014 08:38:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2EC27AD4; Fri, 3 Oct 2014 08:38:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s938cdhA033045; Fri, 3 Oct 2014 08:38:39 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s938cdTg033044; Fri, 3 Oct 2014 08:38:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410030838.s938cdTg033044@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 3 Oct 2014 08:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369878 - in branches/2014Q4/x11-drivers: . xf86-video-ati-ums X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 08:38:39 -0000 Author: bapt Date: Fri Oct 3 08:38:38 2014 New Revision: 369878 URL: https://svnweb.freebsd.org/changeset/ports/369878 QAT: https://qat.redports.org/buildarchive/r369878/ Log: MFH: r369876 Add a ums only version of the ati drivers Added: branches/2014Q4/x11-drivers/xf86-video-ati-ums/ - copied from r369876, head/x11-drivers/xf86-video-ati-ums/ Modified: branches/2014Q4/x11-drivers/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/x11-drivers/Makefile ============================================================================== --- branches/2014Q4/x11-drivers/Makefile Fri Oct 3 08:38:08 2014 (r369877) +++ branches/2014Q4/x11-drivers/Makefile Fri Oct 3 08:38:38 2014 (r369878) @@ -20,6 +20,7 @@ SUBDIR += xf86-video-apm SUBDIR += xf86-video-ark SUBDIR += xf86-video-ati + SUBDIR += xf86-video-ati-ums SUBDIR += xf86-video-chips SUBDIR += xf86-video-cirrus SUBDIR += xf86-video-dummy From owner-svn-ports-branches@FreeBSD.ORG Fri Oct 3 13:10:59 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E4B0563; Fri, 3 Oct 2014 13:10:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDBACB3B; Fri, 3 Oct 2014 13:10:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s93DAwkY064517; Fri, 3 Oct 2014 13:10:58 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s93DAwIq064516; Fri, 3 Oct 2014 13:10:58 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410031310.s93DAwIq064516@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 3 Oct 2014 13:10:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369896 - branches/2014Q4/x11-drivers/xf86-video-ati-ums X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 13:10:59 -0000 Author: bapt Date: Fri Oct 3 13:10:58 2014 New Revision: 369896 URL: https://svnweb.freebsd.org/changeset/ports/369896 QAT: https://qat.redports.org/buildarchive/r369896/ Log: MFH: r369895 Fix pkgname Modified: branches/2014Q4/x11-drivers/xf86-video-ati-ums/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/x11-drivers/xf86-video-ati-ums/Makefile ============================================================================== --- branches/2014Q4/x11-drivers/xf86-video-ati-ums/Makefile Fri Oct 3 13:10:15 2014 (r369895) +++ branches/2014Q4/x11-drivers/xf86-video-ati-ums/Makefile Fri Oct 3 13:10:58 2014 (r369896) @@ -3,6 +3,7 @@ PORTNAME= xf86-video-ati PORTVERSION= 6.14.6 PORTREVISION= 4 +PKGNAMESUFFIX= -ums CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org From owner-svn-ports-branches@FreeBSD.ORG Fri Oct 3 17:57:55 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B335478C; Fri, 3 Oct 2014 17:57:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F3AAF0B; Fri, 3 Oct 2014 17:57:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s93HvtXD099450; Fri, 3 Oct 2014 17:57:55 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s93Hvteq099446; Fri, 3 Oct 2014 17:57:55 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410031757.s93Hvteq099446@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 3 Oct 2014 17:57:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369922 - branches/2014Q4/shells/bash X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 17:57:55 -0000 Author: bdrewery Date: Fri Oct 3 17:57:54 2014 New Revision: 369922 URL: https://svnweb.freebsd.org/changeset/ports/369922 QAT: https://qat.redports.org/buildarchive/r369922/ Log: MFH: r369921 - Update to patchlevel 4.3.29. This addresses the local crash from CVE-2014-6277. Note that the fixes applied in 4.3.25_2 (and upstream 4.3.27) already made this non-exploitable remotely. This makes 'bashcheck' [1] fully green now. It had a soft warning before for CVE-2014-6277. [1] https://github.com/hannob/bashcheck Modified: branches/2014Q4/shells/bash/Makefile branches/2014Q4/shells/bash/distinfo Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/shells/bash/Makefile ============================================================================== --- branches/2014Q4/shells/bash/Makefile Fri Oct 3 17:57:32 2014 (r369921) +++ branches/2014Q4/shells/bash/Makefile Fri Oct 3 17:57:54 2014 (r369922) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 28 +PATCHLEVEL= 29 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} PORTREVISION?= 0 CATEGORIES= shells Modified: branches/2014Q4/shells/bash/distinfo ============================================================================== --- branches/2014Q4/shells/bash/distinfo Fri Oct 3 17:57:32 2014 (r369921) +++ branches/2014Q4/shells/bash/distinfo Fri Oct 3 17:57:54 2014 (r369922) @@ -56,3 +56,5 @@ SHA256 (bash/bash43-027) = 1eb76ad28561d SIZE (bash/bash43-027) = 6889 SHA256 (bash/bash43-028) = e8b0dbed4724fa7b9bd8ff77d12c7f03da0fbfc5f8251ef5cb8511eb082b469d SIZE (bash/bash43-028) = 69606 +SHA256 (bash/bash43-029) = 4cc4a397fe6bc63ecb97d030a4e44258ef2d4e076d0e90c77782968cc43d6292 +SIZE (bash/bash43-029) = 1824 From owner-svn-ports-branches@FreeBSD.ORG Sat Oct 4 22:47:24 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCED87DD; Sat, 4 Oct 2014 22:47:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC665FCE; Sat, 4 Oct 2014 22:47:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s94MlOf9023800; Sat, 4 Oct 2014 22:47:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s94MlOVS023798; Sat, 4 Oct 2014 22:47:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410042247.s94MlOVS023798@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 4 Oct 2014 22:47:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r370010 - in branches/2014Q4/x11-toolkits/py-kivy: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Oct 2014 22:47:25 -0000 Author: antoine Date: Sat Oct 4 22:47:23 2014 New Revision: 370010 URL: https://svnweb.freebsd.org/changeset/ports/370010 QAT: https://qat.redports.org/buildarchive/r370010/ Log: MFH: r369949 Fix x11-toolkits/py-kivy due to cython update. Cython changes its temporary variable handling and now fails on the file: kivy/graphics/sahder/pyx This has already been fixed upstream so just backport that fix. Also, update the USE_PYTHON et al variables. PR: 194065 Reported by: John Marino (marino@FreeBSD.org) Obtained from: https://github.com/kivy/kivy/commit/b2bc566 Added: branches/2014Q4/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx - copied unchanged from r369949, head/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx Modified: branches/2014Q4/x11-toolkits/py-kivy/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/x11-toolkits/py-kivy/Makefile ============================================================================== --- branches/2014Q4/x11-toolkits/py-kivy/Makefile Sat Oct 4 22:45:24 2014 (r370009) +++ branches/2014Q4/x11-toolkits/py-kivy/Makefile Sat Oct 4 22:47:23 2014 (r370010) @@ -20,14 +20,12 @@ MAKE_JOBS_UNSAFE= yes # does not (reall USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME} GH_COMMIT= d602d4b -USES= shebangfix +USES= python:2.7+ shebangfix USE_GL= gl -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes PYDISTUTILS_BUILD_TARGET= build_ext PYDISTUTILS_BUILDARGS= --inplace PYDISTUTILS_EGGINFO= Kivy-${PORTVERSION}-py${PYTHON_VER}.egg-info -USE_PYTHON= 2.7+ +USE_PYTHON= autoplist distutils SHEBANG_FILES= kivy/lib/osc/OSC.py OPTIONS_DEFINE= DOCS PDF TEST Copied: branches/2014Q4/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx (from r369949, head/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx Sat Oct 4 22:47:23 2014 (r370010, copy of r369949, head/x11-toolkits/py-kivy/files/patch-kivy__grahics__shader.pyx) @@ -0,0 +1,22 @@ +diff --git a/kivy/graphics/shader.pyx b/kivy/graphics/shader.pyx +index eab0f42..39c449a 100644 +--- kivy/graphics/shader.pyx ++++ kivy/graphics/shader.pyx +@@ -421,6 +421,7 @@ cdef class Shader: + cdef void bind_vertex_format(self, VertexFormat vertex_format): + cdef unsigned int i + cdef vertex_attr_t *attr ++ cdef bytes name + + # if the current vertex format used in the shader is the current one, do + # nothing. +@@ -445,7 +446,8 @@ cdef class Shader: + attr = &vertex_format.vattr[i] + if attr.per_vertex == 0: + continue +- attr.index = glGetAttribLocation(self.program, attr.name) ++ name = attr.name ++ attr.index = glGetAttribLocation(self.program, name) + glEnableVertexAttribArray(attr.index) + + # save for the next run.