From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 41EAB1F463 for ; Mon, 2 Dec 2019 08:23:27 +0000 (UTC) Received: from localhost ([::1]:60384 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibgzO-0006N0-07 for e@80x24.org; Mon, 02 Dec 2019 03:23:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:43777) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibgzL-0006Mq-Ci for dtas-all@nongnu.org; Mon, 02 Dec 2019 03:23:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibgzK-00047Q-FR for dtas-all@nongnu.org; Mon, 02 Dec 2019 03:23:23 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:49338) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ibgzK-00046Z-9P for dtas-all@nongnu.org; Mon, 02 Dec 2019 03:23:22 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 64E2A1F463; Mon, 2 Dec 2019 08:23:19 +0000 (UTC) Date: Mon, 2 Dec 2019 08:23:19 +0000 From: Eric Wong To: James Rowe Subject: Re: [PATCH 0/2] Trivial fixes for setup.rb usage. Message-ID: <20191202082319.GA22184@dcvr> References: <20191201200349.19732-1-jnrowe@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20191201200349.19732-1-jnrowe@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 64.71.152.64 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: duct tape audio suite List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: dtas-all@nongnu.org Errors-To: dtas-all-bounces+e=80x24.org@nongnu.org Sender: "dtas-all" James Rowe wrote: > Having decided to update my dtas installation, I noticed a couple of > problems with installation using the included `setup.rb`. Thanks! Applied and pushed. > Given that the `Config` name was removed so long ago, an alternative fix > might be to remove `setup.rb` altogether? RubyGems is a huge barrier to startup performance; so users should be able to opt-out of using gems. A painful thing is just having more gems installed (and even not using them) slows down startup. Removing use of sleepy_penguin is also going to help in that area a small bit, at least (if users uninstall it). I might rewrite shebangs and load paths via "make install" or similar, and allow the shebang to use "--disable=gems", too... (but yeah, also brainstorming some ideas around creating a new scripting language because I've been hugely frustrated with the incompatibilities/warnings Ruby is introducing for 2.7..)