From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: [PATCH] wxwidgets: enable extended regexps Date: Tue, 16 Feb 2016 20:42:11 +0100 Message-ID: <20160216204211.57667538@scratchpost.org> References: <20160215172839.6e00fcd9@scratchpost.org> <20160215220409.GC22965@jasmine> <20160215220746.GA1691@solar> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVlVq-0004OZ-JQ for guix-devel@gnu.org; Tue, 16 Feb 2016 14:42:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVlVn-0001VL-AW for guix-devel@gnu.org; Tue, 16 Feb 2016 14:42:18 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:37300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVlVn-0001VE-2q for guix-devel@gnu.org; Tue, 16 Feb 2016 14:42:15 -0500 In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: "Thompson, David" Cc: guix-devel Hi, On Mon, 15 Feb 2016 17:47:36 -0500 "Thompson, David" wrote: > On Mon, Feb 15, 2016 at 5:07 PM, Andreas Enge wrote: > > On Mon, Feb 15, 2016 at 05:04:09PM -0500, Leo Famulari wrote: > >> Can you test that some of these other apps still work with this change? > > > > $ guix refresh -l wxwidgets > > A single dependent package: wxmaxima-15.04.0 > > Additionally, the wxwidgets-2 package, which inherits from wxwidgets, > is used by Audacity. Thanks. For the record (since it will take some time for this to be able to be tested), the only place wxRegEx is used in in audacity is in the Help, which I'm currently trying to get to work at all (see bug# 22705). It's mangling the pagename of the page it's supposed to open like this: - Replace pattern-matched "%.." => "_" - Replace all non-alphanumeric which aren't space or "." by "_" - Replace space => "+" - Replace multiple underscores by single underscore (__+ => _) - Non-regex-Replace "_." by "." - concatenate the result and ReleaseSuffix and anchor in order to yield a filename and an URL to look up.