all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72856] [PATCH 0/2] gnu: uniutils: Update to 2.28.
@ 2024-08-28 16:26 Artyom V. Poptsov
  2024-08-28 16:27 ` [bug#72856] [PATCH 1/2] " Artyom V. Poptsov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-08-28 16:26 UTC (permalink / raw)
  To: 72856; +Cc: Artyom V. Poptsov

This patchset updates uniutils to the version 2.28.

Artyom V. Poptsov (2):
  gnu: uniutils: Update to 2.28.
  gnu: uniutils: Use GEXPs.

 gnu/packages/textutils.scm | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)


base-commit: 0c908518375aea50be6dec703367c01944c8c721
-- 
2.45.2





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#72856] [PATCH 1/2] gnu: uniutils: Update to 2.28.
  2024-08-28 16:26 [bug#72856] [PATCH 0/2] gnu: uniutils: Update to 2.28 Artyom V. Poptsov
@ 2024-08-28 16:27 ` Artyom V. Poptsov
  2024-08-28 16:27 ` [bug#72856] [PATCH 2/2] gnu: uniutils: Use GEXPs Artyom V. Poptsov
  2024-08-29  3:25 ` bug#72856: [PATCH 0/2] gnu: uniutils: Update to 2.28 Z572
  2 siblings, 0 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-08-28 16:27 UTC (permalink / raw)
  To: 72856; +Cc: Artyom V. Poptsov

* gnu/packages/textutils.scm (uniutils): Update to 2.28.
[source]: Change HTTP to HTTPS in the URI.

Change-Id: I8c01c6021bf9f28c2bd9a6039ff26a8dc5e4dd16
---
 gnu/packages/textutils.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index b7ed686371..52aaa0771d 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -32,6 +32,7 @@
 ;;; Copyright © 2024 Timotej Lazar <timotej.lazar@araneo.si>
 ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -475,14 +476,14 @@ (define-public ascii2binary
 (define-public uniutils
   (package
     (name "uniutils")
-    (version "2.27")
+    (version "2.28")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "http://billposer.org/Software/Downloads/"
+       (uri (string-append "https://billposer.org/Software/Downloads/"
                            "uniutils-" version ".tar.bz2"))
        (sha256
-        (base32 "19w1510w87gx7n4qy3zsb0m467a4rn5scvh4ajajg7jh6x5xri08"))))
+        (base32 "0z4ibnd2zzya489vl84cfh82bmdwdhf0isf1myqwrs3s9s0vqyyn"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--disable-dependency-tracking")
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#72856] [PATCH 2/2] gnu: uniutils: Use GEXPs.
  2024-08-28 16:26 [bug#72856] [PATCH 0/2] gnu: uniutils: Update to 2.28 Artyom V. Poptsov
  2024-08-28 16:27 ` [bug#72856] [PATCH 1/2] " Artyom V. Poptsov
@ 2024-08-28 16:27 ` Artyom V. Poptsov
  2024-08-29  3:25 ` bug#72856: [PATCH 0/2] gnu: uniutils: Update to 2.28 Z572
  2 siblings, 0 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-08-28 16:27 UTC (permalink / raw)
  To: 72856; +Cc: Artyom V. Poptsov

* gnu/packages/textutils.scm (uniutils): Use GEXPs.

Change-Id: I9e59018b41820778b92e69aad2f64c715986c4e9
---
 gnu/packages/textutils.scm | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 52aaa0771d..4ff50b6732 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -486,19 +486,18 @@ (define-public uniutils
         (base32 "0z4ibnd2zzya489vl84cfh82bmdwdhf0isf1myqwrs3s9s0vqyyn"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:configure-flags '("--disable-dependency-tracking")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'build 'fix-paths
-           (lambda* (#:key outputs inputs #:allow-other-keys)
-             (let ((out (assoc-ref outputs "out"))
-                   (a2b (assoc-ref inputs "ascii2binary"))
-                   (iconv (assoc-ref inputs "libiconv")))
-               (substitute* "utf8lookup"
-                 (("^ascii2binary ") (string-append a2b "/bin/ascii2binary "))
-                 (("^uniname ") (string-append out "/bin/uniname "))
-                 (("^iconv ") (string-append iconv "/bin/iconv ")))
-             #t))))))
+     (list #:configure-flags #~(list "--disable-dependency-tracking")
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'build 'fix-paths
+                 (lambda* (#:key outputs inputs #:allow-other-keys)
+                   (let ((out (assoc-ref outputs "out"))
+                         (a2b (assoc-ref inputs "ascii2binary"))
+                         (iconv (assoc-ref inputs "libiconv")))
+                     (substitute* "utf8lookup"
+                       (("^ascii2binary ") (string-append a2b "/bin/ascii2binary "))
+                       (("^uniname ") (string-append out "/bin/uniname "))
+                       (("^iconv ") (string-append iconv "/bin/iconv ")))))))))
     (inputs
      (list ascii2binary libiconv))
     (home-page "https://billposer.org/Software/unidesc.html")
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#72856: [PATCH 0/2] gnu: uniutils: Update to 2.28.
  2024-08-28 16:26 [bug#72856] [PATCH 0/2] gnu: uniutils: Update to 2.28 Artyom V. Poptsov
  2024-08-28 16:27 ` [bug#72856] [PATCH 1/2] " Artyom V. Poptsov
  2024-08-28 16:27 ` [bug#72856] [PATCH 2/2] gnu: uniutils: Use GEXPs Artyom V. Poptsov
@ 2024-08-29  3:25 ` Z572
  2 siblings, 0 replies; 4+ messages in thread
From: Z572 @ 2024-08-29  3:25 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 72856-done

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> This patchset updates uniutils to the version 2.28.
>
> Artyom V. Poptsov (2):
>   gnu: uniutils: Update to 2.28.
>   gnu: uniutils: Use GEXPs.
>
>  gnu/packages/textutils.scm | 32 ++++++++++++++++----------------
>  1 file changed, 16 insertions(+), 16 deletions(-)
>
>
> base-commit: 0c908518375aea50be6dec703367c01944c8c721

push, close.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-29  3:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-28 16:26 [bug#72856] [PATCH 0/2] gnu: uniutils: Update to 2.28 Artyom V. Poptsov
2024-08-28 16:27 ` [bug#72856] [PATCH 1/2] " Artyom V. Poptsov
2024-08-28 16:27 ` [bug#72856] [PATCH 2/2] gnu: uniutils: Use GEXPs Artyom V. Poptsov
2024-08-29  3:25 ` bug#72856: [PATCH 0/2] gnu: uniutils: Update to 2.28 Z572

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.