From owner-svn-ports-all@freebsd.org Sat Oct 10 07:51:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D385B9D2B5A; Sat, 10 Oct 2015 07:51:51 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82DB5D1A; Sat, 10 Oct 2015 07:51:51 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9A7poh7003515; Sat, 10 Oct 2015 07:51:50 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9A7popw003513; Sat, 10 Oct 2015 07:51:50 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201510100751.t9A7popw003513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 10 Oct 2015 07:51:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398980 - in head/x11-fm/krusader2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Oct 2015 07:51:51 -0000 Author: kwm Date: Sat Oct 10 07:51:50 2015 New Revision: 398980 URL: https://svnweb.freebsd.org/changeset/ports/398980 Log: Add upstream patch to fix that the first symbol in directory's name can't be changed in the new directory dialog. PR: 201336 Submitted by: Andriy Solonenko Tested by: Tobias Berner Obtained from: krusader upstream Added: head/x11-fm/krusader2/files/ head/x11-fm/krusader2/files/patch-git-5cb23ac (contents, props changed) Modified: head/x11-fm/krusader2/Makefile Modified: head/x11-fm/krusader2/Makefile ============================================================================== --- head/x11-fm/krusader2/Makefile Sat Oct 10 07:10:19 2015 (r398979) +++ head/x11-fm/krusader2/Makefile Sat Oct 10 07:51:50 2015 (r398980) @@ -3,7 +3,7 @@ PORTNAME= krusader DISTVERSION= 2.4.0-beta3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fm kde MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ Added: head/x11-fm/krusader2/files/patch-git-5cb23ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/krusader2/files/patch-git-5cb23ac Sat Oct 10 07:51:50 2015 (r398980) @@ -0,0 +1,20 @@ +commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9 +Author: Jan Lepper +Date: Wed Jan 2 21:38:52 2013 +0100 + + FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text + return QValidator::Intermediate instead of Invalid when input is empty + BUG: 309119 + + +--- krusader/Panel/panelfunc.cpp.orig 2012-10-21 12:55:54.000000000 +0200 ++++ krusader/Panel/panelfunc.cpp 2015-10-09 17:43:53.794177000 +0200 +@@ -100,7 +100,7 @@ + { + public: + virtual State validate(QString &input, int &pos) const { +- return input.isEmpty() ? Invalid : Acceptable; ++ return input.isEmpty() ? Intermediate : Acceptable; + } + }; +