From debbugs-submit-bounces@debbugs.gnu.org Sat May 08 19:28:16 2021 Received: (at submit) by debbugs.gnu.org; 8 May 2021 23:28:16 +0000 Received: from localhost ([127.0.0.1]:52898 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfWMq-0002k3-AD for submit@debbugs.gnu.org; Sat, 08 May 2021 19:28:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:44080) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfWMn-0002jx-2n for submit@debbugs.gnu.org; Sat, 08 May 2021 19:28:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35254) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lfWMm-00071W-Ga for guix-patches@gnu.org; Sat, 08 May 2021 19:28:12 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:46424) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lfWMh-0004Zj-Hx for guix-patches@gnu.org; Sat, 08 May 2021 19:28:11 -0400 Received: from localhost.localdomain (91-114-247-246.adsl.highway.telekom.at [91.114.247.246]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4Fd3QT4KvNz1LLyW; Sun, 9 May 2021 01:28:01 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4Fd3QT4KvNz1LLyW DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1620516481; bh=/Dd0D20C2ypCt4wJYoEYmUmjr+F2npnVI6y5APpzIrI=; h=From:To:Cc:Subject:Date:From; b=YDMtUo/jpvl4AaYYe0OMTocxt0Jh9iHtwXSt8y+GjNvAMvQ3X6GOLfu8sBUn7xvAQ W2PsPjMBjO5S9ApF/434pn1BPs69wJNNSY+P9DIq3AMRnRmhqZjnAk9PXiFs/WhEFa ijO6EiPf8dX3bt+1ZGNb13JwEVvWTHb67hMWnH9A= From: Leo Prikler To: guix-patches@gnu.org Subject: [PATCH] gnu: expat: Update via graft. Date: Sun, 9 May 2021 01:27:29 +0200 Message-Id: <20210508232729.11557-1-leo.prikler@student.tugraz.at> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 Received-SPF: pass client-ip=129.27.2.202; envelope-from=leo.prikler@student.tugraz.at; helo=mailrelay.tugraz.at X-Spam_score_int: -42 X-Spam_score: -4.3 X-Spam_bar: ---- X-Spam_report: (-4.3 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: sebastian@pipping.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: -2.3 (--) * gnu/packages/xml.scm (expat-2.3.0): New variable. (expat)[replacement]: Add it. --- gnu/packages/xml.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 931698a575..d8472f5fa3 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -120,6 +120,7 @@ the entire document.") (package (name "expat") (version "2.2.9") + (replacement expat-2.3.0) (source (let ((dot->underscore (lambda (c) (if (char=? #\. c) #\_ c)))) (origin (method url-fetch) @@ -143,6 +144,23 @@ stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags).") (license license:expat))) +(define-public expat-2.3.0 + (package + (inherit expat) + (version "2.3.0") + (source (let ((dot->underscore (lambda (c) (if (char=? #\. c) #\_ c)))) + (origin + (method url-fetch) + (uri (list (string-append "mirror://sourceforge/expat/expat/" + version "/expat-" version ".tar.xz") + (string-append + "https://github.com/libexpat/libexpat/releases/download/R_" + (string-map dot->underscore version) + "/expat-" version ".tar.xz"))) + (sha256 + (base32 + "1ab7fkab4wbj53xqsx2a4h5m310ak9abczjh0a2ymg73nsclz8ya"))))))) + (define-public libebml (package (name "libebml") -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 10:05:46 2021 Received: (at 48304) by debbugs.gnu.org; 9 May 2021 14:05:46 +0000 Received: from localhost ([127.0.0.1]:55484 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfk42-00069q-Jx for submit@debbugs.gnu.org; Sun, 09 May 2021 10:05:46 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:35749) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfk3z-00069k-8R for 48304@debbugs.gnu.org; Sun, 09 May 2021 10:05:45 -0400 Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id EDB235C00F2; Sun, 9 May 2021 10:05:37 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sun, 09 May 2021 10:05:37 -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=rn2oRYM1NGpOmNhOGUe3RkzX RHbAyevrRA2DDaW6bDU=; b=SUgWNudneQQrrpIM3gBhQye3C3PH81oSn+RdxaEP YWuPTpYNgBUPKkChI1yJLHdSKUdppGeCt71SE5WzIGFrtgoaE8cMcyrTvPuNqoUq Q3p4ymXJVX8Yb+De5aWUCD/pGQsuFJsgupVdrNej/BqjoY8kdM9JrSnRZLgUAZml a9k= 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=rn2oRY M1NGpOmNhOGUe3RkzXRHbAyevrRA2DDaW6bDU=; b=tdCzw+/iMd+E8LSbL3vFxZ +9vcY0cj06zGtl1CoYFMNs16M1oVU/f1R8PfcJF6F6ksUJ+wDP2cM4raeNItVoyv JKJLdDfRVxLdijwIsWssWGYm8uN1ESSVa3dvS6Be8bnu6UnhR0xoNyaoo51veZVp mQ4sOioPlFvPGgCxOS0KNeCPJeELPLZGYNn0mpUC27b/Sr2VhObEDVjClGEVhGn2 ii5nTZK/FCJa7AGffq315hsixSTTfl20fNzbi9Y5KO+Hv2X14VeqRYrjPwZgQ/0Y tuN3a6T8o2Xf5VKOvClawu0k1aJwpLvCswV604CJ2cYlerrDkNAUjjGKNHqLkJew == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrvdegiedgjeehucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepuddttddruddurdduieelrdduudeknecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (pool-100-11-169-118.phlapa.fios.verizon.net [100.11.169.118]) by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 9 May 2021 10:05:37 -0400 (EDT) Date: Sun, 9 May 2021 10:05:34 -0400 From: Leo Famulari To: Leo Prikler Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. Message-ID: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210508232729.11557-1-leo.prikler@student.tugraz.at> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48304 Cc: 48304@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 Sun, May 09, 2021 at 01:27:29AM +0200, Leo Prikler wrote: > * gnu/packages/xml.scm (expat-2.3.0): New variable. > (expat)[replacement]: Add it. Nitpick: It should be (expat)[replacement]: New field. Otherwise, looks okay assuming ABI compatibility, but we only use grafts for security updates. From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 10:27:26 2021 Received: (at 48304) by debbugs.gnu.org; 9 May 2021 14:27:26 +0000 Received: from localhost ([127.0.0.1]:55588 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkP0-0006Lr-1Q for submit@debbugs.gnu.org; Sun, 09 May 2021 10:27:26 -0400 Received: from albert.telenet-ops.be ([195.130.137.90]:42128) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkOw-0006Ll-Qh for 48304@debbugs.gnu.org; Sun, 09 May 2021 10:27:24 -0400 Received: from butterfly.local ([213.251.116.230]) by albert.telenet-ops.be with bizsmtp id 2eTL2500U4yL7Jl06eTMF9; Sun, 09 May 2021 16:27:21 +0200 Message-ID: <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. From: Maxime Devos To: Leo Famulari , Leo Prikler Date: Sun, 09 May 2021 16:27:20 +0200 In-Reply-To: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-urPLFgj4rdSGp+W4eVCv" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21; t=1620570441; bh=+N2YNPnpx76EnWXsGCSbBpMW/sQQtnB27yheuwJlcmo=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=tGvL9u6XUGGQcB/Rdjnw2Pxhzd13uQeAFpz1mp6R+pQYQr+CEbOVZt6tCe9LyltGH kizJmmS3/XlfRZL9S0eaJW8qlGaUptmvUR3IAJB1gcBmWpd4J5RcSVLM0Xc1rLsoAt ddJphm+G1gGR3yc47h3u/InF5xU3uEqIRvNQUMlQbHt7WNk9xAIH1hrcs20eyGtQgZ ogpLSbnni00ISbiNhqkMS6YESmy3GVlQWtYN5Cz+lROhGyBkN5YzkEorE6yDw9uRjF tQ0fPd2w8RrNlDPbTKkNMKM9+BOyWiG4OqDuVWgpGevKFiVORY4zkX1DQCJlnr0Y5A BGEaQ5fTrrTXA== X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48304 Cc: 48304@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 (-) --=-urPLFgj4rdSGp+W4eVCv Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Leo Famulari schreef op zo 09-05-2021 om 10:05 [-0400]: > On Sun, May 09, 2021 at 01:27:29AM +0200, Leo Prikler wrote: > > * gnu/packages/xml.scm (expat-2.3.0): New variable. > > (expat)[replacement]: Add it. >=20 > Nitpick: It should be >=20 > (expat)[replacement]: New field. >=20 > Otherwise, looks okay assuming ABI compatibility, but we only use grafts > for security updates. The maintainer of expat will release a 2.4.0 with security fixes soon. Greetings, Maxime. --=-urPLFgj4rdSGp+W4eVCv Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iI0EABYKADUWIQTB8z7iDFKP233XAR9J4+4iGRcl7gUCYJfxSBccbWF4aW1lZGV2 b3NAdGVsZW5ldC5iZQAKCRBJ4+4iGRcl7t5cAP4jLEoCF/w0AWqKOFcL19cxENdb 9h3dyFlRQwsz4ppUYAD/cafSwJHIUA5MEB8RBfY/l1jMyislJMVUNYWwRlFc5QI= =j72h -----END PGP SIGNATURE----- --=-urPLFgj4rdSGp+W4eVCv-- From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 10:33:00 2021 Received: (at 48304) by debbugs.gnu.org; 9 May 2021 14:33:00 +0000 Received: from localhost ([127.0.0.1]:55616 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkUN-0006Pz-ST for submit@debbugs.gnu.org; Sun, 09 May 2021 10:33:00 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:47969) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkUM-0006Ps-71 for 48304@debbugs.gnu.org; Sun, 09 May 2021 10:32:58 -0400 Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0D9995C00B8; Sun, 9 May 2021 10:32:53 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 09 May 2021 10:32:53 -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=TWOqktjy+OytWURSw4/uvawl J87mYwgmgOcfQEPPpys=; b=w8O3bZXzsIls75wb0o7fPIL0Y6ncdH7iG1IENXgp WDgIRSUYylU+HdGK+6Kq51cJqo6MyxJg0T/aZnKlNKvjZaPct6YKHdUfmgQVN0fI YxQfDZTqlDti8CUQSW0K1xjgnHUHVYLHU8pO+DCaqH8o3H9f/cza+J/iKvYn9Vrh xWQ= 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=TWOqkt jy+OytWURSw4/uvawlJ87mYwgmgOcfQEPPpys=; b=hitlB5OCIZ0BtuQ2egYTGG cvHwmFSuoAtbQpDhAGIG2dGpnb+RrqtdQdfYyVtm/SDI+KURcc0uF46toRhApVtZ lhjKxlcKoXFz8CJU6RL3iVB+rxMaMcQqonY5Ew1+m0nS/xXilKcadUXdFAdkNp6L dpS68+gGCSho5SW6ffi5fqJBGK4HImSs9M9quCUwpGFlyDWDrMgSIa/nZsRTK1Ox o9stBS25/OPdBcEqRbzPS+lYtmQ3aZpVdaToNaqRxj6HbjS7oy2f4fXddougubvw KY0WEETErY3QGIWDNWJvkXhh73yVFoB4X3PzB5bIf3B3JEr8uZeQa6C/+mIwMf4w == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrvdegiedgkedtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehgtderredttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpedukeevgeetkeeltefgiedtjefgjeekffduteehvdfhueekudelieekjeefheff teenucfkphepuddttddruddurdduieelrdduudeknecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (pool-100-11-169-118.phlapa.fios.verizon.net [100.11.169.118]) by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 9 May 2021 10:32:51 -0400 (EDT) Date: Sun, 9 May 2021 10:32:50 -0400 From: Leo Famulari To: Maxime Devos Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. Message-ID: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="dFryhdWvBcOjVV2P" Content-Disposition: inline In-Reply-To: <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48304 Cc: Leo Prikler , 48304@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 (-) --dFryhdWvBcOjVV2P Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 09, 2021 at 04:27:20PM +0200, Maxime Devos wrote: > Leo Famulari schreef op zo 09-05-2021 om 10:05 [-0400]: > > On Sun, May 09, 2021 at 01:27:29AM +0200, Leo Prikler wrote: > > > * gnu/packages/xml.scm (expat-2.3.0): New variable. > > > (expat)[replacement]: Add it. > >=20 > > Nitpick: It should be > >=20 > > (expat)[replacement]: New field. > >=20 > > Otherwise, looks okay assuming ABI compatibility, but we only use grafts > > for security updates. >=20 > The maintainer of expat will release a 2.4.0 with security fixes soon. Yes, I know :) I think we all received the same private email. We can test the graft with 2.3.0 but wait until 2.4.0 to actually use it. --dFryhdWvBcOjVV2P Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAmCX8pIACgkQJkb6MLrK fwigKBAA8VcYfpllG7WDqiYjKCbCTXcIoeXpT2YkSO1Fhsc7UZHQTCgat31Th2bd tuz9fH9T9yBMl77x3c1I4DOBh1mAWUNQYNGUWrWQY1Wl3JSLbdzgxtjtJcQCREdw 0NeTSFhtIePc+c0V7g/Fuj3xGpZs39mDcwlo/7IyP6q7Z60hvLG19QHv52yPJtqV NS+h8f3FtSheVB530MyIp0MvoYT8GEycPppZAFS2isYsOHLHsfVqdKr42TJolrbH PEpoBMO+j1NQkpeR943gSCXGtiDA6rdve7QDJl0/m0pt5VAUrJtoTKnSKg0qtH0U yjSznnJjz1f1p/PMK7CfRclGJsE0nJMWzKgV6c+FflRqzHG2Z/ETst6ub1gxkOgI DdyPPfGNci31CQg/ITX45mqA28TKRmLq9s48BsaCPz3N79OsMMj4kxX+LsiyRrrm 0hQN5lgK77mJrasOE3bmESSA0S8JigRjYvxIKkTtiezYj4SjAAXfWQaLP+UTPNkm i4RroaPbaXdYfoktTKZPtSUnoAFbZPuXI8q59hvCgbS/woZtoTOpAjch2jAekSw1 wP6+HfBpaBfjkhlMo4dgu615D0G3NLvo/yJqYEPCTDplW4nxrf+fzcatBH4Bc3Bs GRFNLUKAEs/BNTgwnhWr/bNFObG5RJpGlrUT1xWNHk/T10b0Q8I= =3W4z -----END PGP SIGNATURE----- --dFryhdWvBcOjVV2P-- From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 10:37:49 2021 Received: (at 48304) by debbugs.gnu.org; 9 May 2021 14:37:49 +0000 Received: from localhost ([127.0.0.1]:55644 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkZ3-0006St-Ky for submit@debbugs.gnu.org; Sun, 09 May 2021 10:37:49 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:36960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfkYy-0006Sn-VU for 48304@debbugs.gnu.org; Sun, 09 May 2021 10:37:48 -0400 Received: from nijino.local (91-114-247-246.adsl.highway.telekom.at [91.114.247.246]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4FdRc45W3Dz1LLyW; Sun, 9 May 2021 16:37:40 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4FdRc45W3Dz1LLyW DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1620571061; bh=33D8bwVAn3vvYP9xb5EvyzKjnbJeDEDrVwMzm+nCaGA=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=Zm10R7cLFRx4d0InpIpJ6wsYsz1YOqGPAM8WLDmejZljkJgi89XHOQVOOIHiutv7N GqF9vkLFfE8daFszsa+VoDpILYrUe5VMWn/Uly5skwLc8C8hf5WPoijTTj64t7lkSx IHRJE3F6lxJ33JfzoMxMaGHwVtO/IKu7vc9NVj0Y= Message-ID: <276aa14b795b9046b326e5bc0235049a5710c765.camel@student.tugraz.at> Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. From: Leo Prikler To: Maxime Devos , Leo Famulari Date: Sun, 09 May 2021 16:37:39 +0200 In-Reply-To: <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48304 Cc: 48304@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: -3.3 (---) Am Sonntag, den 09.05.2021, 16:27 +0200 schrieb Maxime Devos: > Leo Famulari schreef op zo 09-05-2021 om 10:05 [-0400]: > > On Sun, May 09, 2021 at 01:27:29AM +0200, Leo Prikler wrote: > > > * gnu/packages/xml.scm (expat-2.3.0): New variable. > > > (expat)[replacement]: Add it. > > > > Nitpick: It should be > > > > (expat)[replacement]: New field. > > > > Otherwise, looks okay assuming ABI compatibility, but we only use > > grafts > > for security updates. > > The maintainer of expat will release a 2.4.0 with security fixes > soon. > > Greetings, > Maxime. Indeed, the mail they dropped over at guix-devel made it seem as though not being on 2.3.0 was a security risk already. The ChangeLog does mention some items worth fuzzing over. That said, I simply wanted to claim a bug ID for this and let people check whether the update really breaks nothing. The list of dependants is far too big for me to handle. Regards, Leo From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 11:23:05 2021 Received: (at 48304) by debbugs.gnu.org; 9 May 2021 15:23:05 +0000 Received: from localhost ([127.0.0.1]:55843 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lflGr-0000g4-Hj for submit@debbugs.gnu.org; Sun, 09 May 2021 11:23:05 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:42865) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lflGo-0000fS-Ji for 48304@debbugs.gnu.org; Sun, 09 May 2021 11:23:03 -0400 Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 86AB55C0045; Sun, 9 May 2021 11:22:57 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 09 May 2021 11:22:57 -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=0bUFgFjc6m4hjCQ02ItDECsS rgPd0MOS+gdROA2ZWKI=; b=pUmlPYm2xAl6cQ5PSRlvlkFU/2261yxOUbrhBsCs aKUHfJcmNOEDp0TnY2tRGcckiFOBGFFkb2C5JUolqeulBnGcjZL6piJcRyKL9Htf pcCpNpClkUexemdiK5epGwGWP1pusuny6aKwoop8EmqbkG2DyWVSpmktF97g0lck XPs= 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=0bUFgF jc6m4hjCQ02ItDECsSrgPd0MOS+gdROA2ZWKI=; b=KOcFpBU/urC+I9oG+kFGMv omrr7J+w5L4iLzkolCMutYYwaRKHoA1n/m5+gnXw007krXvr8+DPVfPMZAAYIrWt Ozyv2XmV6UsiJjIdA0CGgDwUD+nnxLOUKMgWEuqRUrKUgC5c4KxUnLXBJknbRAAU xrrJWN2ZxeitkVtItcndHoZQUjiRHJidZyswoLs9j+mOu892JMXZT2QdcFXAuRES JBX7XGJodRfHFbilmnpUi4xHKb1U/BY0WQxpIX1y/tixvYw36ec+0pflX6W6Bcnk AJJEDxa8e7biO9EDF+sVU8z8qebPx2QstqVqAWOIJ1PBEqvmjLTHeiopy15aYUbg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrvdegiedgledtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepuddttddruddurdduieelrdduudeknecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (pool-100-11-169-118.phlapa.fios.verizon.net [100.11.169.118]) by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 9 May 2021 11:22:56 -0400 (EDT) Date: Sun, 9 May 2021 11:22:54 -0400 From: Leo Famulari To: Leo Prikler Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. Message-ID: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> <276aa14b795b9046b326e5bc0235049a5710c765.camel@student.tugraz.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <276aa14b795b9046b326e5bc0235049a5710c765.camel@student.tugraz.at> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48304 Cc: 48304@debbugs.gnu.org, Maxime Devos 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 Sun, May 09, 2021 at 04:37:39PM +0200, Leo Prikler wrote: > Indeed, the mail they dropped over at guix-devel made it seem as though > not being on 2.3.0 was a security risk already. The ChangeLog does > mention some items worth fuzzing over. In general, all updates are security updates. But we shouldn't / can't update all core packages with grafts just because. Grafting is a kludge that doesn't always work as expected (and the problems are hidden), and it has a high I/O performance cost. So, let's wait for a security advisory. From debbugs-submit-bounces@debbugs.gnu.org Sat May 15 06:12:39 2021 Received: (at control) by debbugs.gnu.org; 15 May 2021 10:12:39 +0000 Received: from localhost ([127.0.0.1]:47665 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhrHj-0007g1-8O for submit@debbugs.gnu.org; Sat, 15 May 2021 06:12:39 -0400 Received: from eggs.gnu.org ([209.51.188.92]:41474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhrHh-0007fj-Cr for control@debbugs.gnu.org; Sat, 15 May 2021 06:12:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40064) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lhrHc-0002xM-8b for control@debbugs.gnu.org; Sat, 15 May 2021 06:12:32 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=51184 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lhrHb-0001Ys-SH for control@debbugs.gnu.org; Sat, 15 May 2021 06:12:32 -0400 Date: Sat, 15 May 2021 12:12:30 +0200 Message-Id: <87cztsl301.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #48304 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 48304 + security quit From debbugs-submit-bounces@debbugs.gnu.org Sun May 23 11:33:23 2021 Received: (at 48304) by debbugs.gnu.org; 23 May 2021 15:33:23 +0000 Received: from localhost ([127.0.0.1]:41659 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lkq6V-0003rz-67 for submit@debbugs.gnu.org; Sun, 23 May 2021 11:33:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:42482) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lkq6Q-0003rh-J1 for 48304@debbugs.gnu.org; Sun, 23 May 2021 11:33:22 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:34782) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lkq6I-0004yB-Fh; Sun, 23 May 2021 11:33:10 -0400 Received: from host-37-191-231-185.lynet.no ([37.191.231.185]:44148 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lkq6G-0002sJ-0W; Sun, 23 May 2021 11:33:10 -0400 From: Marius Bakke To: Leo Famulari , Leo Prikler Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. In-Reply-To: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> <276aa14b795b9046b326e5bc0235049a5710c765.camel@student.tugraz.at> Date: Sun, 23 May 2021 17:33:05 +0200 Message-ID: <871r9xqxce.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48304 Cc: Maxime Devos , 48304@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: -3.3 (---) --=-=-= Content-Type: text/plain merge 48304 48612 thanks Leo Famulari skriver: > On Sun, May 09, 2021 at 04:37:39PM +0200, Leo Prikler wrote: >> Indeed, the mail they dropped over at guix-devel made it seem as though >> not being on 2.3.0 was a security risk already. The ChangeLog does >> mention some items worth fuzzing over. > > In general, all updates are security updates. But we shouldn't / can't > update all core packages with grafts just because. Grafting is a kludge > that doesn't always work as expected (and the problems are hidden), and > it has a high I/O performance cost. > > So, let's wait for a security advisory. I opened a similar discussion about the security fix in Expat 2.4.0 recently and am merging with this issue (which I had not seen): https://issues.guix.gnu.org/48612 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEARYKAC0WIQRNTknu3zbaMQ2ddzTocYulkRQQdwUCYKp1sQ8cbWFyaXVzQGdu dS5vcmcACgkQ6HGLpZEUEHe8oAD/e+0e6g1Wvp+wcZ9dDv1CMtr0CIDekMTfBBou PsAScIMA/2vmC+4Bw9wGrZ7z52fr+kjvNvIFGCTkvSYBaVvOXmoC =dihy -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 02 23:17:49 2021 Received: (at 48304-done) by debbugs.gnu.org; 3 Jun 2021 03:17:49 +0000 Received: from localhost ([127.0.0.1]:41728 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lodrh-00015S-Gx for submit@debbugs.gnu.org; Wed, 02 Jun 2021 23:17:49 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:43165) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lodrg-00015G-37 for 48304-done@debbugs.gnu.org; Wed, 02 Jun 2021 23:17:48 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 074385C00EC; Wed, 2 Jun 2021 23:17:43 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Wed, 02 Jun 2021 23:17:43 -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=ehkO+m1rtrtT0kCqFLn1IfnL MdR9SGD9VvK6w4GzpUQ=; b=FS9kWxRTkt2n0bnpv4FOCzBsr/W9J6Zdl1hU0Cuv c/qlQNXSWLjHD3gDGEVfS8OdC3LuW1NUw+I11uPhpodAvqIfYRyAgdfD3SN+kLyG YTgi7SgrvbUaMKM96ufeymMGlYjdrpQslOYZdZ4mLjWBCNYnnTPKPBgL+vkquI9c UZU= 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=ehkO+m 1rtrtT0kCqFLn1IfnLMdR9SGD9VvK6w4GzpUQ=; b=NB6oOGghXDcJbYJsb3nx6c MyNfjwbq/dppyrlHX0VIspUU1hD3MA8blvSFvM/oX0xHkLZ+iumSu+QBpeXTfkRE 1nkx9IccAh6JYElpFzMRkMjnHP42ZI6u6UXai+QGNsCO4s4N2578ewDXBeo2z3Ws Bq5XIjEZ4eLXZCreXjVWKny1j+i5lWoTe8JbBV3SvACpgPlDIOYOVH5KFkVgtXZ0 kmJRFm0Pyjf6unt2WgnQMDlAVpVe7bO6BNCqK6Cm1CBwtWfkWFjof7ElCOx7lFqQ igKaJ1J3qUsD0dFGq6ehUDUn1Qzba++Yhez8AtDRieGmnJTCvVP17S56u2CgFDow == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrvdelkedgieejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehgtderredttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpedukeevgeetkeeltefgiedtjefgjeekffduteehvdfhueekudelieekjeefheff teenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehlvg hosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Wed, 2 Jun 2021 23:17:41 -0400 (EDT) Date: Wed, 2 Jun 2021 23:17:40 -0400 From: Leo Famulari To: Marius Bakke Subject: Re: [bug#48304] [PATCH] gnu: expat: Update via graft. Message-ID: References: <20210508232729.11557-1-leo.prikler@student.tugraz.at> <829778414d37d154393f014d52c17e58b72aa1ac.camel@telenet.be> <276aa14b795b9046b326e5bc0235049a5710c765.camel@student.tugraz.at> <871r9xqxce.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="7p1VBcM21Vf7pZlM" Content-Disposition: inline In-Reply-To: <871r9xqxce.fsf@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 48304-done Cc: Maxime Devos , Leo Prikler , 48304-done@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 (-) --7p1VBcM21Vf7pZlM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, May 23, 2021 at 05:33:05PM +0200, Marius Bakke wrote: > merge 48304 48612 The merge didn't work (one bug was for 'guix', and one for 'guix-patches'), but I pushed a graft as 6d71f6a73cd27d61d3302b9658893428af6314d2 --7p1VBcM21Vf7pZlM Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAmC4SdQACgkQJkb6MLrK fwizLBAAwqKDw/uFawB3km99bSTNzP0eCPB0+dPJ733qu3Nh6e6sk7VVRJ5514Ie V6yT9x+/51EsaPVcd0kgYpM53T483JuGYXnMwASR3o+PJkLayS0/S7f73IbENsFe QqPruuRIiZAFmIJPqpMfDdBJK9aOEpGdUA16gmsHs9DIyF+2i+cseH+88w1oeOz2 ndkGFGpFQiF9gMuPKevDIbTF61GtkvP+vpWIhSeUNw7FWP1eFrLAxJliOmZbp8YM lVdtGhKQfDZ2laJlhlzuTcGvPMJBELMSknywlFYnna7vSPzM1EIbhD/IEmUEjx6R QX2Puw3+itknFrWNc9Wt4tI/SDHydYmEQy+6PIc8rnu7uFn2b84dC1d1MW2kzJl4 7tLMqpb2JxOa9j0g6QSnE/p9jkUwKJq9MbFBcGOYCIa2q43O6pICkx5U1X/f7A2G 5Fyctk8kTUEK8rBD3fvczi8zBVzyIErOHOxrXiXqQR/m8I/iYF8v+N2MZ5vobufz wRF/i/aI6G7fEEuq2xbBmPcFNeNU4EaLuVyyA0W/dZVONyzxikMRsE2FIM0RmtW3 fM6V7NllT1MxbkzkRSflgL1jlWg9MAHipFuq+GMF8Xp21OQOJV5DDZQFXiCviym0 dYFUCPGbWLb5VYN5SIPVmIvE9yMjT631Nv/tN2VO5jNEa+NTmw8= =O9C7 -----END PGP SIGNATURE----- --7p1VBcM21Vf7pZlM-- From unknown Sat Jun 21 10:43:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Jul 2021 11:24:05 +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