emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51184: closed ([PATCH] gnu: Add renameutils.)


From: GNU bug Tracking System
Subject: bug#51184: closed ([PATCH] gnu: Add renameutils.)
Date: Sat, 13 Nov 2021 23:33:01 +0000

Your message dated Sun, 14 Nov 2021 00:31:55 +0100
with message-id <87y25raaz8.fsf@gnu.org>
and subject line Re: bug#51184: [PATCH] gnu: Add renameutils.
has caused the debbugs.gnu.org bug report #51184,
regarding [PATCH] gnu: Add renameutils.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
51184: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51184
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add renameutils. Date: Wed, 13 Oct 2021 19:01:13 +0200
* gnu/packages/admin.scm (renameutils): New variable.
---
 gnu/packages/admin.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 850372bdc6..9faf2fca61 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -44,6 +44,7 @@
 ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2021 Wiktor Żelazny <wzelazny@vurv.cz>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4794,3 +4795,32 @@ setup, maintenance, supervision, or any long-running 
processes.")
       (description "Utility to convert @code{lsof} output to a graph showing
 FIFO and UNIX interprocess communication.")
       (license license:bsd-2))))
+
+(define-public renameutils
+  (package
+    (name "renameutils")
+    (version "0.12.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append 
"https://download.savannah.gnu.org/releases/renameutils/";
+                       name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb"))
+       (modules '((guix build utils)))
+       (snippet '(begin
+                   (substitute* "src/Makefile.in"
+                     (("\\(\\$bindir\\)") "$(bindir)"))
+                   #t))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("readline" ,readline)))
+    (home-page "https://www.nongnu.org/renameutils/";)
+    (synopsis "File renaming utilities")
+    (description "The file renaming utilities (renameutils for short) are a set
+of programs designed to make renaming of files faster and less cumbersome.  The
+file renaming utilities consists of five programs - qmv, qcp, imv, icp and
+deurlname.")
+    (license license:gpl3)))

base-commit: 37832406bef8e9b61b1c3b533988d5a873cb9a21
-- 
2.33.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#51184: [PATCH] gnu: Add renameutils. Date: Sun, 14 Nov 2021 00:31:55 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hi,

Wiktor Żelazny <wz@freeshell.de> skribis:

> * gnu/packages/admin.scm (renameutils): New variable.

I moved it to shellutils.scm and followed up with minor tweaks: using a
mirror:// URL, using Texinfo markup in the description, and changing the
license to ‘gpl3+’ since it’s “version 3 or later” according to source
file headers.

Thanks,
Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]