From unknown Sun Jun 15 08:49:23 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48786] [PATCH] gnu: Add udftools. Resent-From: Ron Nazarov Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 01 Jun 2021 22:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 48786 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48786@debbugs.gnu.org Cc: Ron Nazarov X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162258739516378 (code B ref -1); Tue, 01 Jun 2021 22:44:02 +0000 Received: (at submit) by debbugs.gnu.org; 1 Jun 2021 22:43:15 +0000 Received: from localhost ([127.0.0.1]:38142 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loD6R-0004G6-Bo for submit@debbugs.gnu.org; Tue, 01 Jun 2021 18:43:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:33260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loD6P-0004Fy-AC for submit@debbugs.gnu.org; Tue, 01 Jun 2021 18:43:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44292) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1loD6P-0000Lr-2p for guix-patches@gnu.org; Tue, 01 Jun 2021 18:43:13 -0400 Received: from knopi.disroot.org ([178.21.23.139]:39970) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1loD6M-0006Oj-Lm for guix-patches@gnu.org; Tue, 01 Jun 2021 18:43:12 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 42695544BE; Wed, 2 Jun 2021 00:43:07 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3-4bGUApSWrr; Wed, 2 Jun 2021 00:43:05 +0200 (CEST) From: Ron Nazarov DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1622587385; bh=3ydlU+1CQeakea6NViiM5HIkhdnj1JmzX30N2s65ONM=; h=From:To:Cc:Subject:Date; b=i8+ni9O3NrjKMlhgGxUZVjm6Mf36y2AppsgwYkmHE+jugFB34FaGNFLB/X1+ikY6m gb3qtlteYeLK0k8kv2vrGpcxJqS6fr5nKAuFsQXKYDDQPw39wPu5K/GGoTF2t6kzQW p7hpFsK/vQvgfzWBPhRhFfGVOvQUmpnfHS+Vyc+sewMXBT0SIvtj/vcZ3QQgXlzeRy lr/R1/sIUX/p3mjNhe/OSvQuYL4Njr81fJgdv4cFQ+bDw6wpkA3DTOzcfR6kgyazan Fv2402KP4XTaiZDbslLQd7jU6EL94Mn7P7NUuYOPJRxTfj9aUqkmhoVLUvhbSQ37Wv FLJrupQA2yYhA== Date: Tue, 1 Jun 2021 23:42:50 +0100 Message-Id: <20210601224250.30896-1-noisytoot@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=noisytoot@disroot.org; helo=knopi.disroot.org 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/linux.scm (udftools): New variable. --- gnu/packages/linux.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b803426b74..aaafd892a7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -54,6 +54,7 @@ ;;; Copyright © 2020 David Dashyan ;;; Copyright © 2020 pukkamustard ;;; Copyright © 2021 B. Wilson +;;; Copyright © 2021 Noisytoot ;;; ;;; This file is part of GNU Guix. ;;; @@ -5226,6 +5227,33 @@ small devices. This version has additional features such as uncompressed blocks and random block placement.") (license license:gpl2+))) +(define-public udftools + (package + (name "udftools") + (version "2.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pali/udftools") + (commit version))) + (sha256 + (base32 + "1nl2s61znyzaap23zhbdg3znj6l6akr313fchn5wwvjzj8k70is9")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (home-page "https://github.com/pali/udftools") + (synopsis "Tools to manage @acronym{UDF, Universal Disk Format} filesystems and DVD/CD-R(W) drives") + (description "@code{udftools} is a set of programs for reading +and modifying @acronym{UDF, Universal Disk Format} filesystems. +@acronym{UDF, Universal Disk Format} is a filesystem mostly used for DVDs and other optical media. +It supports read-only media (DVD/CD-R) and rewritable media that wears out (DVD/CD-RW).") + (license license:gpl2+))) + (define-public compsize (package (name "compsize") -- 2.31.1 From unknown Sun Jun 15 08:49:23 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48786] [PATCH v2] gnu: Add udftools. References: <20210601224250.30896-1-noisytoot@disroot.org> In-Reply-To: <20210601224250.30896-1-noisytoot@disroot.org> Resent-From: Ron Nazarov Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 02 Jun 2021 12:34:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 48786 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48786@debbugs.gnu.org Cc: Ron Nazarov Received: via spool by 48786-submit@debbugs.gnu.org id=B48786.162263718730728 (code B ref 48786); Wed, 02 Jun 2021 12:34:02 +0000 Received: (at 48786) by debbugs.gnu.org; 2 Jun 2021 12:33:07 +0000 Received: from localhost ([127.0.0.1]:39163 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loQ3T-0007zP-7f for submit@debbugs.gnu.org; Wed, 02 Jun 2021 08:33:07 -0400 Received: from knopi.disroot.org ([178.21.23.139]:50892) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loQ3N-0007yu-JF for 48786@debbugs.gnu.org; Wed, 02 Jun 2021 08:33:02 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id B1F74544D3; Wed, 2 Jun 2021 14:32:55 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nwamqMOaed6H; Wed, 2 Jun 2021 14:32:54 +0200 (CEST) From: Ron Nazarov DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1622637174; bh=0Uu9KhE62wQ5zpx2UIoWLE/bQbD5VdR/2/qna5X2huI=; h=From:To:Cc:Subject:Date; b=UFqhEIzD8eMuZpZ+kkm135udXFJUIIFOM2MG6tnXuADtDp4q4GZd+xYFgaTDndMpk yWdvDELgSMUMQuZsg1kak1pNs1Z5TAQQXAn8szyC9Jk9oc0F/0PYUsfzprAjDwCBbn mVucc1GIg8Oa6BOx+8W7rCkDFACEFGBtKoNSeWvTzO9REPjA3UCCKnFV9HyGfKc9yR KDdDrIMOjHotxjZ1PK0qaaHWjvwa4yfji/nE4t6VHfeQ8KJHdEQpLU8DsACC+jsAld Pb1hRDnWb+c/pNQ7wEePmUSXUIDrNdmlLyfsVzX/gaEnbUgquyRNMH8pHGD/tc/4UW P8M6LZy2VivCg== Date: Wed, 2 Jun 2021 13:32:45 +0100 Message-Id: <20210602123245.14264-1-noisytoot@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) 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 (-) * gnu/packages/file-systems.scm (udftools): New variable. --- gnu/packages/file-systems.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index c64c0df727..f9fb256602 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2020 Morgan Smith ;;; Copyright © 2021 raid5atemyhomework ;;; Copyright © 2021 Stefan Reichör +;;; Copyright © 2021 Noisytoot ;;; ;;; This file is part of GNU Guix. ;;; @@ -1526,3 +1527,31 @@ your put them. TMSU maintains its own database and you simply gain an additional view, which you can mount where you like, based upon the tags you set up.") (license license:gpl3+))) + +(define-public udftools + (package + (name "udftools") + (version "2.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pali/udftools") + (commit version))) + (sha256 + (base32 + "1nl2s61znyzaap23zhbdg3znj6l6akr313fchn5wwvjzj8k70is9")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (home-page "https://github.com/pali/udftools") + (synopsis "Tools to manage UDF file systems and DVD/CD-R(W) drives") + (description "@code{udftools} is a set of programs for reading +and modifying @acronym{UDF, Universal Disk Format} file systems. +@acronym{UDF, Universal Disk Format} is a file system mostly used for DVDs +and other optical media. It supports read-only media (DVD/CD-R) +and rewritable media that wears out (DVD/CD-RW).") + (license license:gpl2+))) -- 2.31.1 From unknown Sun Jun 15 08:49:23 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ron Nazarov Subject: bug#48786: closed (Re: [bug#48786] [PATCH v2] gnu: Add udftools.) Message-ID: References: <87pmx4z8l9.fsf@nckx> <20210601224250.30896-1-noisytoot@disroot.org> X-Gnu-PR-Message: they-closed 48786 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48786@debbugs.gnu.org Date: Wed, 02 Jun 2021 13:43:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1622641382-13597-1" This is a multi-part message in MIME format... ------------=_1622641382-13597-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #48786: [PATCH] gnu: Add udftools. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 48786@debbugs.gnu.org. --=20 48786: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48786 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1622641382-13597-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48786-done) by debbugs.gnu.org; 2 Jun 2021 13:42:18 +0000 Received: from localhost ([127.0.0.1]:39301 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loR8U-0003W9-E8 for submit@debbugs.gnu.org; Wed, 02 Jun 2021 09:42:18 -0400 Received: from tobias.gr ([80.241.217.52]:43502) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loR8R-0003W0-KA for 48786-done@debbugs.gnu.org; Wed, 02 Jun 2021 09:42:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tobias.gr; s=2018; bh=VwkuCQZ0EIxVGOFHqMWr2O3wf1nuo13wh7+DPQFyeDg=; h=date:in-reply-to: subject:cc:to:from:references; b=leWxYXAqTjgtCRJTa3iM+pIDf5fzTcbbsqBDz E3oy026Urrrl8kS5qFG7teF348iXZxNEUntwf1zSz5WnKdKjp43BahFTjIXnpZ9hGYq1QZ Tn3HASR7EKrGoIaLJtDClfLaCuy8T+6HGNleGaEGqjgGBJ52xBwBu0HSapoyVm2AReP4gG 3CfAOSwnj4ptFZ7fxVro1XWlO/WYhecxs8hcaEJpe4W1MwskMvFi0yRqNRXcmz8GNRriMw 3RG9sB+u2hLHd5tT2GIlMcrBImjqni+nI6UfBGf7dTZOL36pAV+srbCzlFbgzPG1Hv84+a 95E5ZqTijzfKPMpfHQBmlr8+g== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 8905906b (TLSv1.2:ECDHE-ECDSA-AES256-GCM-SHA384:256:NO); Wed, 2 Jun 2021 13:42:12 +0000 (UTC) References: <20210601224250.30896-1-noisytoot@disroot.org> <20210602123245.14264-1-noisytoot@disroot.org> From: Tobias Geerinckx-Rice To: Ron Nazarov Subject: Re: [bug#48786] [PATCH v2] gnu: Add udftools. In-reply-to: <20210602123245.14264-1-noisytoot@disroot.org> BIMI-Selector: v=BIMI1; s=default; Date: Wed, 02 Jun 2021 15:42:26 +0200 Message-ID: <87pmx4z8l9.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 48786-done Cc: 48786-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.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Ron Nazarov via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A > * gnu/packages/file-systems.scm (udftools): New variable. Thanks! Pushed. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYLeKwg0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW156e0BAIaVju14uh1rs/bKsHLKFfPFAk4SUkzc7YnVg0U/ 4ZLAAQCN4gm7vSMr2XXeJw5WOwLzHVFRNFh9+GA4aqhFJuZfCw== =rXp2 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1622641382-13597-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 1 Jun 2021 22:43:15 +0000 Received: from localhost ([127.0.0.1]:38142 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loD6R-0004G6-Bo for submit@debbugs.gnu.org; Tue, 01 Jun 2021 18:43:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:33260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1loD6P-0004Fy-AC for submit@debbugs.gnu.org; Tue, 01 Jun 2021 18:43:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44292) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1loD6P-0000Lr-2p for guix-patches@gnu.org; Tue, 01 Jun 2021 18:43:13 -0400 Received: from knopi.disroot.org ([178.21.23.139]:39970) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1loD6M-0006Oj-Lm for guix-patches@gnu.org; Tue, 01 Jun 2021 18:43:12 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 42695544BE; Wed, 2 Jun 2021 00:43:07 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3-4bGUApSWrr; Wed, 2 Jun 2021 00:43:05 +0200 (CEST) From: Ron Nazarov DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1622587385; bh=3ydlU+1CQeakea6NViiM5HIkhdnj1JmzX30N2s65ONM=; h=From:To:Cc:Subject:Date; b=i8+ni9O3NrjKMlhgGxUZVjm6Mf36y2AppsgwYkmHE+jugFB34FaGNFLB/X1+ikY6m gb3qtlteYeLK0k8kv2vrGpcxJqS6fr5nKAuFsQXKYDDQPw39wPu5K/GGoTF2t6kzQW p7hpFsK/vQvgfzWBPhRhFfGVOvQUmpnfHS+Vyc+sewMXBT0SIvtj/vcZ3QQgXlzeRy lr/R1/sIUX/p3mjNhe/OSvQuYL4Njr81fJgdv4cFQ+bDw6wpkA3DTOzcfR6kgyazan Fv2402KP4XTaiZDbslLQd7jU6EL94Mn7P7NUuYOPJRxTfj9aUqkmhoVLUvhbSQ37Wv FLJrupQA2yYhA== To: guix-patches@gnu.org Subject: [PATCH] gnu: Add udftools. Date: Tue, 1 Jun 2021 23:42:50 +0100 Message-Id: <20210601224250.30896-1-noisytoot@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=noisytoot@disroot.org; helo=knopi.disroot.org 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Ron Nazarov 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.4 (--) * gnu/packages/linux.scm (udftools): New variable. --- gnu/packages/linux.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b803426b74..aaafd892a7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -54,6 +54,7 @@ ;;; Copyright © 2020 David Dashyan ;;; Copyright © 2020 pukkamustard ;;; Copyright © 2021 B. Wilson +;;; Copyright © 2021 Noisytoot ;;; ;;; This file is part of GNU Guix. ;;; @@ -5226,6 +5227,33 @@ small devices. This version has additional features such as uncompressed blocks and random block placement.") (license license:gpl2+))) +(define-public udftools + (package + (name "udftools") + (version "2.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pali/udftools") + (commit version))) + (sha256 + (base32 + "1nl2s61znyzaap23zhbdg3znj6l6akr313fchn5wwvjzj8k70is9")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (home-page "https://github.com/pali/udftools") + (synopsis "Tools to manage @acronym{UDF, Universal Disk Format} filesystems and DVD/CD-R(W) drives") + (description "@code{udftools} is a set of programs for reading +and modifying @acronym{UDF, Universal Disk Format} filesystems. +@acronym{UDF, Universal Disk Format} is a filesystem mostly used for DVDs and other optical media. +It supports read-only media (DVD/CD-R) and rewritable media that wears out (DVD/CD-RW).") + (license license:gpl2+))) + (define-public compsize (package (name "compsize") -- 2.31.1 ------------=_1622641382-13597-1--