all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67040] [PATCH] gnu: Add krename.
@ 2023-11-10 11:38 Sughosha via Guix-patches via
  2023-11-18 17:16 ` Bruno Victal
  0 siblings, 1 reply; 3+ messages in thread
From: Sughosha via Guix-patches via @ 2023-11-10 11:38 UTC (permalink / raw)
  To: 67040; +Cc: Sughosha

* gnu/packages/kde-utils.scm (krename): New variable.

Change-Id: I004f1fffa269f6182f89481970bd223aeec48bc4
---
 gnu/packages/kde-utils.scm | 63 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)

diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index 4e665da599..719139a320 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -35,11 +35,15 @@ (define-module (gnu packages kde-utils)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages cups)
+  #:use-module (gnu packages fontutils)
   #:use-module (gnu packages glib) ; dbus for tests
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gstreamer)
+  #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages mp3)
   #:use-module (gnu packages multiprecision)
+  #:use-module (gnu packages pdf)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages kde)
   #:use-module (gnu packages kde-frameworks)
@@ -887,6 +891,65 @@ (define-public kmouth
     (license ;; GPL for programs, FDL for documentation
      (list license:gpl2+ license:fdl1.2+))))
 
+(define-public krename
+  (package
+    (name "krename")
+    (version "5.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/krename/" version
+                                  "/src/krename-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1v935xlsy7lyp1fgmy5ad3x5i9d8rigwanpmsx6xpxnrvnkn0g5j"))))
+    (build-system qt-build-system)
+    (native-inputs
+     (list extra-cmake-modules pkg-config))
+    (inputs
+     (list exiv2
+           freetype
+           karchive
+           kcompletion
+           kconfig
+           kcoreaddons
+           kcrash
+           ki18n
+           kiconthemes
+           kio
+           kitemviews
+           kjobwidgets
+           kjs
+           kservice
+           kwidgetsaddons
+           kxmlgui
+           podofo
+           taglib))
+    (home-page "https://userbase.kde.org/KRename")
+    (synopsis "Utility to handle specialized file renames")
+    (description "KRename is a batch file renamer by KDE.  It allows you to
+easily rename hundreds or even more files in one go.  The filenames can be
+created by parts of the original filename, numbering the files or accessing
+hundreds of information about the file, like creation date or Exif information
+of an image.
+
+Its features include:
+
+@itemize
+@item renaming a list of files based on a set of expressions,
+@item copying/moving a list of files to another directory,
+@item converting filenames to upper/lower case,
+@item adding numbers to filenames,
+@item finding and replacing parts of the filename,
+@item rename Mp3/Ogg Vorbis files based on their ID3 tags,
+@item setting access and modification dates, permissions and file ownership,
+@item a plug-in API which allows you to extend KRename's features,
+@item renaming directories recursively,
+@item support for KFilePlugins,
+@item creating undo file
+@item and many more...
+@end itemize")
+    (license license:gpl3+)))
+
 (define-public kronometer
   (package
     (name "kronometer")

base-commit: 857c1996129e32f41cd7e1d4c04420b47563daed
-- 
2.41.0





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

* [bug#67040] [PATCH] gnu: Add krename.
  2023-11-10 11:38 [bug#67040] [PATCH] gnu: Add krename Sughosha via Guix-patches via
@ 2023-11-18 17:16 ` Bruno Victal
  2023-11-18 21:37   ` Sughosha via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Bruno Victal @ 2023-11-18 17:16 UTC (permalink / raw)
  To: Sughosha; +Cc: 67040


[-- Attachment #1.1: Type: text/plain, Size: 1081 bytes --]

Hi Sughosha,

On 2023-11-10 11:38, Sughosha wrote:
> +easily rename hundreds or even more files in one go.  The filenames can be
> +created by parts of the original filename, numbering the files or accessing
> +hundreds of information about the file, like creation date or Exif information
> +of an image.

I'd reword this to: “The filenames can be constructed using parts of the original
filename or information from the file metadata such as the creation date or Exif
information of an image.

> +Its features include:
> +
> +@itemize
> (…)
> +@item rename Mp3/Ogg Vorbis files based on their ID3 tags,

How about: “rename audio files (e.g. mp3, ogg) files based on their
metadata.”
Ogg files typically use “Vorbis comment” [1] for metadata, while
.mp3 files use IDv3 tags.

> +@item and many more...

I'd remove this from the @itemize list since it doesn't convey
anything worth noting.


[1]: <https://en.wikipedia.org/wiki/Vorbis_comment>

-- 
Furthermore, I consider that nonfree software must be eradicated.

Cheers,
Bruno.


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* [bug#67040] [PATCH] gnu: Add krename.
  2023-11-18 17:16 ` Bruno Victal
@ 2023-11-18 21:37   ` Sughosha via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Sughosha via Guix-patches via @ 2023-11-18 21:37 UTC (permalink / raw)
  To: Bruno Victal; +Cc: 67040

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

Hi Bruno,

Thanks for reviewing. These modifications are fine with me.


Regards,
Sughosha

On 18 November 2023 18:16:26 CET, Bruno Victal <mirai@makinata.eu> wrote:
>Hi Sughosha,
>
>On 2023-11-10 11:38, Sughosha wrote:
>> +easily rename hundreds or even more files in one go.  The filenames can be
>> +created by parts of the original filename, numbering the files or accessing
>> +hundreds of information about the file, like creation date or Exif information
>> +of an image.
>
>I'd reword this to: “The filenames can be constructed using parts of the original
>filename or information from the file metadata such as the creation date or Exif
>information of an image.
>
>> +Its features include:
>> +
>> +@itemize
>> (…)
>> +@item rename Mp3/Ogg Vorbis files based on their ID3 tags,
>
>How about: “rename audio files (e.g. mp3, ogg) files based on their
>metadata.”
>Ogg files typically use “Vorbis comment” [1] for metadata, while
>.mp3 files use IDv3 tags.
>
>> +@item and many more...
>
>I'd remove this from the @itemize list since it doesn't convey
>anything worth noting.
>
>
>[1]: <https://en.wikipedia.org/wiki/Vorbis_comment>
>
>-- 
>Furthermore, I consider that nonfree software must be eradicated.
>
>Cheers,
>Bruno.
>

[-- Attachment #2: Type: text/html, Size: 2121 bytes --]

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

end of thread, other threads:[~2023-11-18 21:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-10 11:38 [bug#67040] [PATCH] gnu: Add krename Sughosha via Guix-patches via
2023-11-18 17:16 ` Bruno Victal
2023-11-18 21:37   ` Sughosha via Guix-patches via

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.