unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61751] [PATCH 0/2] Update dos2unix
@ 2023-02-24 14:11 Timotej Lazar
  2023-02-24 14:15 ` [bug#61751] [PATCH 1/2] gnu: dos2unix: Update to 7.4.4 Timotej Lazar
  2023-03-02  3:14 ` bug#61751: [PATCH 0/2] Update dos2unix 宋文武 via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-02-24 14:11 UTC (permalink / raw)
  To: 61751; +Cc: Timotej Lazar

Timotej Lazar (2):
  gnu: dos2unix: Update to 7.4.4.
  gnu: dos2unix: Use new package style.

 gnu/packages/textutils.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)


base-commit: e615aaca28fd6b797e9b41a71096ebe878c89299
-- 
2.39.1





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

* [bug#61751] [PATCH 1/2] gnu: dos2unix: Update to 7.4.4.
  2023-02-24 14:11 [bug#61751] [PATCH 0/2] Update dos2unix Timotej Lazar
@ 2023-02-24 14:15 ` Timotej Lazar
  2023-02-24 14:15   ` [bug#61751] [PATCH 2/2] gnu: dos2unix: Use new package style Timotej Lazar
  2023-03-02  3:14 ` bug#61751: [PATCH 0/2] Update dos2unix 宋文武 via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Timotej Lazar @ 2023-02-24 14:15 UTC (permalink / raw)
  To: 61751; +Cc: Timotej Lazar

* gnu/packages/textutils.scm (dos2unix): Update to 7.4.4.
---
 gnu/packages/textutils.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index aeff4593a8..9efcda688b 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -79,14 +79,14 @@ (define-module (gnu packages textutils)
 (define-public dos2unix
   (package
     (name "dos2unix")
-    (version "7.4.3")
+    (version "7.4.4")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://waterlan.home.xs4all.nl/dos2unix/"
                            "dos2unix-" version ".tar.gz"))
        (sha256
-        (base32 "0wnacvz99rnlx0ayf5jrxwljvh801r8k1ai3hj137yfsaqcv93dn"))))
+        (base32 "0vj3wix17vl7a85hg673qqyrhw9sbq0xiadbbij7v0nm1gdl3a18"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.39.1





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

* [bug#61751] [PATCH 2/2] gnu: dos2unix: Use new package style.
  2023-02-24 14:15 ` [bug#61751] [PATCH 1/2] gnu: dos2unix: Update to 7.4.4 Timotej Lazar
@ 2023-02-24 14:15   ` Timotej Lazar
  0 siblings, 0 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-02-24 14:15 UTC (permalink / raw)
  To: 61751; +Cc: Timotej Lazar

* gnu/packages/textutils.scm (dos2unix)[arguments]: Use gexps.
[native-inputs]: Drop labels.
---
 gnu/packages/textutils.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 9efcda688b..e5d3a0efc0 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -89,15 +89,14 @@ (define-public dos2unix
         (base32 "0vj3wix17vl7a85hg673qqyrhw9sbq0xiadbbij7v0nm1gdl3a18"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags
-       (list (string-append "CC=" ,(cc-for-target))
-             (string-append "prefix=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)))) ; no configure script
+     (list #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "prefix=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure)))) ; no configure script
     (native-inputs
-     `(("gettext" ,gettext-minimal)
-       ("perl" ,perl)))
+     (list gettext-minimal perl))
     (home-page "https://waterlan.home.xs4all.nl/dos2unix.html")
     (synopsis "DOS/Mac to Unix and vice versa text file format converter")
     (description
-- 
2.39.1





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

* bug#61751: [PATCH 0/2] Update dos2unix
  2023-02-24 14:11 [bug#61751] [PATCH 0/2] Update dos2unix Timotej Lazar
  2023-02-24 14:15 ` [bug#61751] [PATCH 1/2] gnu: dos2unix: Update to 7.4.4 Timotej Lazar
@ 2023-03-02  3:14 ` 宋文武 via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-03-02  3:14 UTC (permalink / raw)
  To: Timotej Lazar; +Cc: 61751-done

Timotej Lazar <timotej.lazar@araneo.si> writes:

> Timotej Lazar (2):
>   gnu: dos2unix: Update to 7.4.4.
>   gnu: dos2unix: Use new package style.
>
>  gnu/packages/textutils.scm | 19 +++++++++----------
>  1 file changed, 9 insertions(+), 10 deletions(-)

Pushed, thank you!




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

end of thread, other threads:[~2023-03-02  3:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-24 14:11 [bug#61751] [PATCH 0/2] Update dos2unix Timotej Lazar
2023-02-24 14:15 ` [bug#61751] [PATCH 1/2] gnu: dos2unix: Update to 7.4.4 Timotej Lazar
2023-02-24 14:15   ` [bug#61751] [PATCH 2/2] gnu: dos2unix: Use new package style Timotej Lazar
2023-03-02  3:14 ` bug#61751: [PATCH 0/2] Update dos2unix 宋文武 via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).