From debbugs-submit-bounces@debbugs.gnu.org Tue May 26 17:16:23 2020 Received: (at submit) by debbugs.gnu.org; 26 May 2020 21:16:23 +0000 Received: from localhost ([127.0.0.1]:46534 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jdgvv-0005Mo-HG for submit@debbugs.gnu.org; Tue, 26 May 2020 17:16:23 -0400 Received: from lists.gnu.org ([209.51.188.17]:36606) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jdgvt-0005Mg-J5 for submit@debbugs.gnu.org; Tue, 26 May 2020 17:16:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49640) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jdgvt-000335-Be for guix-patches@gnu.org; Tue, 26 May 2020 17:16:21 -0400 Received: from lepiller.eu ([2a00:5884:8208::1]:38202) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jdgvq-0002rX-8s for guix-patches@gnu.org; Tue, 26 May 2020 17:16:20 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 1fe37708 for ; Tue, 26 May 2020 21:16:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:subject:message-id:mime-version:content-type; s=dkim; bh=Qac CfRicxiRtJnIZX5kJvJ+juuK7Zcz+1ydVqcvu/i4=; b=eItt4NZPV9cq4/9pTNW IgodBAh2SR3Sm+3LSaIJcIRzShx1JE4F50QeyFd5XGX1MfGPqSjckrhKoMVG0vDR W8XJD/OXXOG2tnDx5gUAhTn6dde9IceXf67AfdIAiDUEzLAGmPlBgWgvte19D/r0 HPxco/Lrc0mLnmQPi2ar5yGQ6fnlrVPa02cf2pQe3Ga+3NYtN9Zhl61Ylh6nLmf1 fOZVDCzD3KaoItkA9ctbJMGR/eolhltq1v7Au1ylAK1cljahM9rCcF5whgz/R4ow XUBtREheCvR4vUkZ7YEZbdz9j+Nl96MoebQKTEi/wttSyh5IksuAt6nCXXj/zBjY qAQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id c38f5a24 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 26 May 2020 21:16:09 +0000 (UTC) Date: Tue, 26 May 2020 23:15:57 +0200 From: Julien Lepiller To: guix-patches@gnu.org Subject: [PATCH] gnu: mozjs: Remove static library Message-ID: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/ZAWwBpSX7Au+ulQxyOfhUE0" Received-SPF: none client-ip=2a00:5884:8208::1; envelope-from=julien@lepiller.eu; helo=lepiller.eu X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --MP_/ZAWwBpSX7Au+ulQxyOfhUE0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, the attached patch removes lib/libjs_static.ajs from the output of mozjs, a 30 MB static library. This mozjs is part of the closure of gdm and gnome, so it reduces the size of most desktop systems. The reason why I found that file, is because it is mentionned in BLFS: http://linuxfromscratch.org/blfs/view/svn/general/js68.html --MP_/ZAWwBpSX7Au+ulQxyOfhUE0 Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-mozjs-Remove-static-library.patch >From 9529f1442323bad4f96fe070a510e1dd64a2c8ce Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 26 May 2020 23:08:15 +0200 Subject: [PATCH] gnu: mozjs: Remove static library. * gnu/packages/gnuzilla.scm (mozjs-60): Remove static library. --- gnu/packages/gnuzilla.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 7bf9850e97..808c04f1db 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -404,6 +404,12 @@ in C/C++.") ;; This test assumes that /bin exists and contains certain ;; executables. (delete-file "js/src/tests/shell/os.js") + #t)) + (add-after 'install 'remove-static + (lambda* (#:key outputs #:allow-other-keys) + ;; this saves ~30 MB + (delete-file (string-append (assoc-ref outputs "out") + "/lib/libjs_static.ajs")) #t))))) (native-inputs `(("autoconf" ,autoconf) -- 2.26.2 --MP_/ZAWwBpSX7Au+ulQxyOfhUE0-- From debbugs-submit-bounces@debbugs.gnu.org Thu May 28 13:47:02 2020 Received: (at 41548) by debbugs.gnu.org; 28 May 2020 17:47:03 +0000 Received: from localhost ([127.0.0.1]:52966 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeMcQ-0007NW-Nn for submit@debbugs.gnu.org; Thu, 28 May 2020 13:47:02 -0400 Received: from wout3-smtp.messagingengine.com ([64.147.123.19]:32959) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeMcO-0007N3-Iq for 41548@debbugs.gnu.org; Thu, 28 May 2020 13:47:01 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.west.internal (Postfix) with ESMTP id 3304485F; Thu, 28 May 2020 13:46:54 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute2.internal (MEProxy); Thu, 28 May 2020 13:46:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=fAH38RGdxTBYRJyy/XH99neE dAg/lcRcJN2EuGyCf88=; b=v7YUe0j6EAziug6gi1GoCADsNrpm2GTxnSI1TeXD 6QRe5fz7sg8vVUb9AuoHPvbtD2CacNsZKnhPNt7PoWNWmjBsCwwTGZ7IQXUlo+ft /i1Nm76ixcVvVJ0tiIPowGcJGscGjX25+ah0S6TFa+pr6fkQcl0sVJZ0oQedNGPy btA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=fAH38R GdxTBYRJyy/XH99neEdAg/lcRcJN2EuGyCf88=; b=SQkURrIGTjFq4PyPC+o1wM KPTlUi29fByqacEcxmP/oHuNk5lxtgTjJNnzfBh223uoFFYjf6e7UYBKjzGd6V6M YpGr+h3Fj0PCWpWY7AIRAj7kHU3Nih2ynw3ovOhivePY86GTfqN5QHRYmpd0HXtn ZMUMUQ1Ii/t0Pg95c4M2xK/Lt0HQlehgT+7QvcJAGM3ne7Kb6K26BhSocdnTfPYW ZPINk5zVNYG/TYbz093pMttnoOaNtRVP/P46s+MIPuO0aGuK2rK5jVT7wVENfMgm /Fb8knf/Vedh1U7iUwxLKrAPRrqi7rKiSVKnAWosSHiWvgc/WKABHYWmcNqnwC4w == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedruddviedgieegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepjeeirdduvdegrddufeekrdeifeenucevlhhushhtvghrufhiiigvpedtne curfgrrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Received: from localhost (c-76-124-138-63.hsd1.pa.comcast.net [76.124.138.63]) by mail.messagingengine.com (Postfix) with ESMTPA id 45AA83061856; Thu, 28 May 2020 13:46:51 -0400 (EDT) Date: Thu, 28 May 2020 13:46:49 -0400 From: Leo Famulari To: Julien Lepiller Subject: Re: [bug#41548] [PATCH] gnu: mozjs: Remove static library Message-ID: <20200528174649.GA23745@jasmine.lan> References: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41548 Cc: 41548@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Tue, May 26, 2020 at 11:15:57PM +0200, Julien Lepiller wrote: > Hi, > > the attached patch removes lib/libjs_static.ajs from the output of > mozjs, a 30 MB static library. This mozjs is part of the closure of > gdm and gnome, so it reduces the size of most desktop systems. Awesome! I figure that things seem to keep working without it? From debbugs-submit-bounces@debbugs.gnu.org Thu May 28 13:57:58 2020 Received: (at 41548) by debbugs.gnu.org; 28 May 2020 17:57:58 +0000 Received: from localhost ([127.0.0.1]:52976 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeMmo-0007dD-Iv for submit@debbugs.gnu.org; Thu, 28 May 2020 13:57:58 -0400 Received: from lepiller.eu ([89.234.186.109]:51130) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeMmm-0007d4-Ac for 41548@debbugs.gnu.org; Thu, 28 May 2020 13:57:45 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 5128b5c3; Thu, 28 May 2020 17:57:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=wYog//h6zgodzHrVW0ocFgd/Be60FgfsM005lriP6hM=; b=PgkNsuC JA6F7KikoULeIrd1GWveUFIKY1FTizNOL8qc/KSiA1nKhy2U9k91RF/sFfOuOCal igEECeSB2sr7BL8HzDnHm4qKuSlcl8fCltkYO9bcPHd0rLKRgYY1yaH2XpQuiREK 8Vw/pWiOsmznQokLvukjEYwGzUqKRooMZScpgUx2zBtKQrgOyDI1rUetmnkQKIH7 UhLNgTX4NiHue6NnNpHxjIbK0GFozqVXy0SYtVPSXnnmgq+bFCbSDKDp0qUNcCRI LcldpXJY3pLa19ZkpE3yP6ofCUye00TL5FxHikqHS9t18hlXeksgjMXoa/CnHL3x UCHUfUqZvJtUGIg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 50b5e57c (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 28 May 2020 17:57:41 +0000 (UTC) Date: Thu, 28 May 2020 13:57:32 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <20200528174649.GA23745@jasmine.lan> References: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> <20200528174649.GA23745@jasmine.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [bug#41548] [PATCH] gnu: mozjs: Remove static library To: Leo Famulari From: Julien Lepiller Message-ID: X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41548 Cc: 41548@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Le 28 mai 2020 13:46:49 GMT-04:00, Leo Famulari a =C3= =A9crit : >On Tue, May 26, 2020 at 11:15:57PM +0200, Julien Lepiller wrote: >> Hi, >>=20 >> the attached patch removes lib/libjs_static=2Eajs from the output of >> mozjs, a 30 MB static library=2E This mozjs is part of the closure of >> gdm and gnome, so it reduces the size of most desktop systems=2E > >Awesome! I figure that things seem to keep working without it? At least gdm still builds, but I'm not sure how to test it properly From debbugs-submit-bounces@debbugs.gnu.org Fri May 29 12:54:55 2020 Received: (at 41548) by debbugs.gnu.org; 29 May 2020 16:54:55 +0000 Received: from localhost ([127.0.0.1]:56017 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeiHW-0004on-Po for submit@debbugs.gnu.org; Fri, 29 May 2020 12:54:54 -0400 Received: from wout2-smtp.messagingengine.com ([64.147.123.25]:44529) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jeiHW-0004ob-3e for 41548@debbugs.gnu.org; Fri, 29 May 2020 12:54:54 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.west.internal (Postfix) with ESMTP id 5837113B3; Fri, 29 May 2020 12:54:48 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute2.internal (MEProxy); Fri, 29 May 2020 12:54:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-transfer-encoding:in-reply-to; s=mesmtp; bh=IUObcYw25LrvZanOjIj7TgVzMXbtqRc9IduxiRnpccY=; b=s3DubRN2ZSfM 91qxtnkxBIFSBrPW1VOwdp57CVY8CcAyPOEK2yxR//AFFW4FZCmy/TK+97R8AO+A Bje/ApbejX+ueo+Qs30I1bOL8QSNGaVFxKD1lU/6K3lHt6AYT9pJVpM7q4JeFOlN M1Wn/Xowc4fM97vwDsahkS25KwczU/g= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=IUObcYw25LrvZanOjIj7TgVzMXbtqRc9IduxiRnpc cY=; b=efYn9PcGa0YV14NZUZyjEc6HvX6HBEuM3522d1L9Uk+WfP0jigzTDU1Z9 JJPfQyZjxvkx5q3sLdNKiT+wYOBHj3yyIII/80K7h4HiRWWD8jQR1+vQJ1PctUIh qqtDTWsRyCMwe+G0ZlkOYzDQqCv3Yf9pdlkMkHfnygfs51C10AJyx97E+gHVZnmj Uuasa0AR5PjqecvVP+4P5TDZw/8fIFrU7tSpCI+btqZ0MnXIRLbfYFfAQbbNVBsd N45Hfpn3do/3qScMX16G3M+zues1a/pwIo8G7DhXKxBbuTW5YqunZ3Ajl8YRpUHe 5vDsuPMKFh7aM4x5dR4J0HzZ1XR3g== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedruddvkedgkedvucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtugfgjgesthekredttddtudenucfhrhhomhepnfgvohcu hfgrmhhulhgrrhhiuceolhgvohesfhgrmhhulhgrrhhirdhnrghmvgeqnecuggftrfgrth htvghrnhepueeugedugfdvgfevuedvleduleefjefhgefgjeetgfegkedukefhvdefleej hefgnecukfhppeejiedruddvgedrudefkedrieefnecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-76-124-138-63.hsd1.pa.comcast.net [76.124.138.63]) by mail.messagingengine.com (Postfix) with ESMTPA id F1F723061CB6; Fri, 29 May 2020 12:54:46 -0400 (EDT) Date: Fri, 29 May 2020 12:54:45 -0400 From: Leo Famulari To: Julien Lepiller Subject: Re: [bug#41548] [PATCH] gnu: mozjs: Remove static library Message-ID: <20200529165445.GB27027@jasmine.lan> References: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> <20200528174649.GA23745@jasmine.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41548 Cc: 41548@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Thu, May 28, 2020 at 01:57:32PM -0400, Julien Lepiller wrote: > Le 28 mai 2020 13:46:49 GMT-04:00, Leo Famulari a écrit : > >On Tue, May 26, 2020 at 11:15:57PM +0200, Julien Lepiller wrote: > >> Hi, > >> > >> the attached patch removes lib/libjs_static.ajs from the output of > >> mozjs, a 30 MB static library. This mozjs is part of the closure of > >> gdm and gnome, so it reduces the size of most desktop systems. > > > >Awesome! I figure that things seem to keep working without it? > > At least gdm still builds, but I'm not sure how to test it properly You could make a vm-image with %desktop-services, which uses GDM. From debbugs-submit-bounces@debbugs.gnu.org Sat May 30 12:07:54 2020 Received: (at 41548-close) by debbugs.gnu.org; 30 May 2020 16:07:54 +0000 Received: from localhost ([127.0.0.1]:58925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jf41a-0005dl-GZ for submit@debbugs.gnu.org; Sat, 30 May 2020 12:07:54 -0400 Received: from lepiller.eu ([89.234.186.109]:52334) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jf41Y-0005dc-Vz for 41548-close@debbugs.gnu.org; Sat, 30 May 2020 12:07:53 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id d701dc44; Sat, 30 May 2020 16:07:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=dkim; bh=13fkqkn+Ebaf YoWrrG9zjHpxpcLQdxdbDhe31I4fxDs=; b=PXq3TvSd8oGyW/9UJtTAjNCcnfMp 3O+7GWeB9mSKfnVAZ90t3XZj0zLgDpaEq+25TtegqRc3ydoKCIWtThFLLlLgiZhi ES5k05dCOpdXjB8k/ZBO5EuotFQT8u15zfS/SUYfNscQuz4lrylSfqbMs9p+ZcRh VVOTfpLqa14cXdrljuHKw9gb2iA4iH8JWtFpuDgsX2QKYOKrQmtJghu22DdGhrLa as8aGwATySAAKP50it/00duTTqI51IGi+iuH/TlGhzLoCkUbHz213UktnUCJavtL PsKu8YWeX7zTOSZxfllers4LD0F+K0RiPFg0kkRpVHI3xiOHpn+lQP5r+Q== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 42bb9c33 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Sat, 30 May 2020 16:07:50 +0000 (UTC) Date: Sat, 30 May 2020 18:07:36 +0200 From: Julien Lepiller To: Leo Famulari Subject: Re: [bug#41548] [PATCH] gnu: mozjs: Remove static library Message-ID: <20200530180736.4d3cc380@tachikoma.lepiller.eu> In-Reply-To: <20200529165445.GB27027@jasmine.lan> References: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> <20200528174649.GA23745@jasmine.lan> <20200529165445.GB27027@jasmine.lan> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41548-close Cc: 41548-close@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Le Fri, 29 May 2020 12:54:45 -0400, Leo Famulari a =C3=A9crit : > On Thu, May 28, 2020 at 01:57:32PM -0400, Julien Lepiller wrote: > > Le 28 mai 2020 13:46:49 GMT-04:00, Leo Famulari > > a =C3=A9crit : =20 > > >On Tue, May 26, 2020 at 11:15:57PM +0200, Julien Lepiller wrote: =20 > > >> Hi, > > >>=20 > > >> the attached patch removes lib/libjs_static.ajs from the output > > >> of mozjs, a 30 MB static library. This mozjs is part of the > > >> closure of gdm and gnome, so it reduces the size of most desktop > > >> systems. =20 > > > > > >Awesome! I figure that things seem to keep working without it? =20 > >=20 > > At least gdm still builds, but I'm not sure how to test it properly > > =20 >=20 > You could make a vm-image with %desktop-services, which uses GDM. Thanks, that's a good idea. I managed to build a vm that way and unfortunately gdm fails to start, so the static library must be used in some way. I'm closing this without pushing anything. From debbugs-submit-bounces@debbugs.gnu.org Sat May 30 13:08:39 2020 Received: (at 41548-close) by debbugs.gnu.org; 30 May 2020 17:08:39 +0000 Received: from localhost ([127.0.0.1]:59056 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jf4yN-0007DI-0j for submit@debbugs.gnu.org; Sat, 30 May 2020 13:08:39 -0400 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:43943) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jf4yL-0007D3-Ch for 41548-close@debbugs.gnu.org; Sat, 30 May 2020 13:08:37 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.west.internal (Postfix) with ESMTP id 6445E9F4; Sat, 30 May 2020 13:08:31 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute2.internal (MEProxy); Sat, 30 May 2020 13:08:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=F8ktnXRT2CjkS45X9fKw9MBL yXB8xRI7sdT6+KS8aEQ=; b=RD0xJkbkxAbtvcrVc18pJDZjQ+jm2FemhBLcL0Gp SMrgXQq/znvzS4vh6NudrqaaMbbAqPVykZdXRiYRFfISkul+x4a/DmAvT5BNpGfo hmXMs0PdU3ZVXVsNcHwdGXQrTphozmjnyc465+B8j+bBfJIbZcWRDx6wa/pnIZ8E moM= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=F8ktnX RT2CjkS45X9fKw9MBLyXB8xRI7sdT6+KS8aEQ=; b=AI1j3fs2UAUEWllP6GtQn+ B08tLdKM7HuAOEprr1Ma4MODcoyeWEk7KVQIuLeKuyTkRXQUBltXlcVQHi7cLCc8 FmDaXIEFXCZIRxDmSAJJaOowYhoFHEmD2ia58UF3AQI7r+yZGK99npIuGO7bd1W4 RrPNVQ9NRV3WkVdrmyRC7QsyufnYiVA4pX6y8XQ7GcIDja7ztjI0vH26E1BNtm8f f6NIPL6Y0iRFAZ0epW3QNflCz8tuHxT/lSwnm7vgYp/WpHoWlod1uQWYuQT+caY3 SbJ/98khTWI+9Sbgdlq2LpPdHEJZDxgLTyTaVL1KbLxTCGjTugUWyNg+YMuo80fQ == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrudeftddguddtjecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpeffhffvuffkfhggtggujgesthdtredttddtvdenucfhrhhomhepnfgvohcu hfgrmhhulhgrrhhiuceolhgvohesfhgrmhhulhgrrhhirdhnrghmvgeqnecuggftrfgrth htvghrnhepueekkedtffdvtddugeejgedtvefhueefiedvjeeitdeigedtveejvdejheff vefgnecukfhppeejiedruddvgedrudefkedrieefnecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-76-124-138-63.hsd1.pa.comcast.net [76.124.138.63]) by mail.messagingengine.com (Postfix) with ESMTPA id A2C7A30618C1; Sat, 30 May 2020 13:08:30 -0400 (EDT) Date: Sat, 30 May 2020 13:08:28 -0400 From: Leo Famulari To: Julien Lepiller Subject: Re: [bug#41548] [PATCH] gnu: mozjs: Remove static library Message-ID: <20200530170828.GC25025@jasmine.lan> References: <20200526231557.0e4c40a5@tachikoma.lepiller.eu> <20200528174649.GA23745@jasmine.lan> <20200529165445.GB27027@jasmine.lan> <20200530180736.4d3cc380@tachikoma.lepiller.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200530180736.4d3cc380@tachikoma.lepiller.eu> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41548-close Cc: 41548-close@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Sat, May 30, 2020 at 06:07:36PM +0200, Julien Lepiller wrote: > Thanks, that's a good idea. I managed to build a vm that way and > unfortunately gdm fails to start, so the static library must be used in > some way. I'm closing this without pushing anything. Okay, but did it work without your patch? From unknown Thu Aug 14 21:53:03 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 28 Jun 2020 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator