GNU bug report logs -
#51184
[PATCH] gnu: Add renameutils.
Previous Next
Reported by: Wiktor Żelazny <wz <at> freeshell.de>
Date: Wed, 13 Oct 2021 17:03:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 14 Nov 2021 00:31:55 +0100
with message-id <87y25raaz8.fsf <at> 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 <at> gnu.org.)
--
51184: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51184
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* 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 <at> waegenei.re>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2021 Maxime Devos <maximedevos <at> telenet.be>
+;;; Copyright © 2021 Wiktor Żelazny <wzelazny <at> 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
[Message part 3 (message/rfc822, inline)]
Hi,
Wiktor Żelazny <wz <at> 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’.
This bug report was last modified 3 years and 269 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.