From unknown Wed Jun 18 23:13:05 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#62565 <62565@debbugs.gnu.org> To: bug#62565 <62565@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add texlive-soulutf8. Reply-To: bug#62565 <62565@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:13:05 +0000 retitle 62565 [PATCH] gnu: Add texlive-soulutf8. reassign 62565 guix-patches submitter 62565 Nicolas Goaziou severity 62565 normal tag 62565 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 31 03:55:09 2023 Received: (at submit) by debbugs.gnu.org; 31 Mar 2023 07:55:10 +0000 Received: from localhost ([127.0.0.1]:60312 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pi9bJ-0005Go-6P for submit@debbugs.gnu.org; Fri, 31 Mar 2023 03:55:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:50792) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pi9bG-0005GS-SM for submit@debbugs.gnu.org; Fri, 31 Mar 2023 03:55:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pi9bG-0000Ad-LB for guix-patches@gnu.org; Fri, 31 Mar 2023 03:55:06 -0400 Received: from relay11.mail.gandi.net ([2001:4b98:dc4:8::231]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pi9bD-00018n-IJ for guix-patches@gnu.org; Fri, 31 Mar 2023 03:55:06 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 8B70010000C for ; Fri, 31 Mar 2023 07:54:57 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] gnu: Add texlive-soulutf8. Date: Fri, 31 Mar 2023 09:54:52 +0200 Message-Id: <20230331075452.592565-1-mail@nicolasgoaziou.fr> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:4b98:dc4:8::231; envelope-from=mail@nicolasgoaziou.fr; helo=relay11.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) 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: -2.6 (--) * gnu/packages/tex.scm (texlive-soulutf8): New variable. --- gnu/packages/tex.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b40e72c582..0257bb89a6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12452,6 +12452,46 @@ (define-public texlive-soul (define-deprecated-package texlive-generic-soul texlive-soul) +(define-public texlive-soulutf8 + (let ((template (simple-texlive-package + "texlive-soulutf8" + (list "doc/latex/soulutf8/" + "source/latex/soulutf8/" + "tex/generic/soulutf8/") + (base32 + "0d9lv3xsads8ms642ys3pghxnsa2hlzafkcx66d2hbq224bz1phc")))) + (package + (inherit template) + (outputs '("out" "doc")) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ #t) "generic/soulutf8") + ((#:build-targets _ '()) '(list "soulutf8.dtx")) + ((#:phases phases) + #~(modify-phases #$phases + (add-after 'unpack 'chdir + (lambda _ (chdir "source/latex/soulutf8/"))) + (replace 'copy-files + (lambda* (#:key inputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append #$output + "/share/texmf-dist/source")) + (doc (string-append #$output:doc + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) + (propagated-inputs + (list texlive-generic-etexcmds + texlive-generic-infwarerr + texlive-soul)) + (home-page "https://ctan.org/pkg/soulutf8") + (synopsis "Permit use of UTF-8 characters in @code{soul}") + (description + "This package extends package @code{soul} and adds some support for +UTF-8. Namely the input encodings in @file{utf8.def} from package +@code{inputenc} and @file{utf8x.def} from package @code{ucs} are supported.") + (license license:lppl1.3+)))) + (define-public texlive-xstring (let ((template (simple-texlive-package "texlive-xstring" base-commit: 65afc8fa44051da2c5acaa230af74fa0a99cbbd5 -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 08 08:08:51 2023 Received: (at 62565-done) by debbugs.gnu.org; 8 Apr 2023 12:08:51 +0000 Received: from localhost ([127.0.0.1]:57881 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pl7NC-00077w-RO for submit@debbugs.gnu.org; Sat, 08 Apr 2023 08:08:51 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:34037) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pl7NA-00077l-Bo for 62565-done@debbugs.gnu.org; Sat, 08 Apr 2023 08:08:48 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 261451BF204 for <62565-done@debbugs.gnu.org>; Sat, 8 Apr 2023 12:08:41 +0000 (UTC) From: Nicolas Goaziou To: 62565-done@debbugs.gnu.org Subject: Re: [bug#62565] [PATCH] gnu: Add texlive-soulutf8. References: <20230331075452.592565-1-mail@nicolasgoaziou.fr> Date: Sat, 08 Apr 2023 14:08:41 +0200 In-Reply-To: <20230331075452.592565-1-mail@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 31 Mar 2023 09:54:52 +0200") Message-ID: <87mt3ilgom.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 62565-done 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 (-) Nicolas Goaziou writes: > * gnu/packages/tex.scm (texlive-soulutf8): New variable. Applied. From unknown Wed Jun 18 23:13: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: Sun, 07 May 2023 11:24:11 +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