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

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

bug#59418: closed ([PATCH] gnu: add raider)


From: GNU bug Tracking System
Subject: bug#59418: closed ([PATCH] gnu: add raider)
Date: Fri, 25 Nov 2022 10:55:02 +0000

Your message dated Fri, 25 Nov 2022 10:53:28 +0000
with message-id <87fse7z4lp.fsf@cbaines.net>
and subject line Re: [bug#59418] [PATCH] add raider
has caused the debbugs.gnu.org bug report #59418,
regarding [PATCH] gnu: add raider
to be marked as done.

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


-- 
59418: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59418
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: add raider Date: Sun, 20 Nov 2022 19:05:19 +0000
* gnu/packages/gnome.scm (raider): New variable.
---
 gnu/packages/gnome.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 3d942635a2..08b6c4263a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4956,6 +4956,46 @@ (define-public glib-networking
 from the GSettings schemas in gsettings-desktop-schemas.")
     (license license:lgpl2.1+)))
 
+(define-public raider
+  (package
+    (name "raider")
+    (version "1.3.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ADBeveridge/raider/";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0ll9220d6qf9m7wdi5xhq69p8h8whs7l5h5nzdhlbn99qh5388bz"))))
+    (build-system meson-build-system)
+    (arguments
+     (list #:meson meson-0.63
+           #:phases #~(modify-phases %standard-phases
+                        (add-after 'unpack 'patch-paths
+                          (lambda* (#:key inputs #:allow-other-keys)
+                            (substitute* 
"data/com.github.ADBeveridge.Raider.gschema.xml"
+                              (("/usr/bin/shred")
+                               (which "shred"))))))))
+    (native-inputs (list gettext-minimal
+                         pkg-config
+                         cmake
+                         `(,glib "bin")
+                         desktop-file-utils
+                         itstool
+                         gobject-introspection
+                         blueprint-compiler
+                         libadwaita
+                         gtk
+                         `(,gtk "bin")))
+    (home-page "https://github.com/ADBeveridge/raider";)
+    (synopsis "File shredder for GNOME")
+    (description
+     "Raider is a simple shredding program built for GNOME.  Also known as File
+Shredder, it uses the GNU Core Utility called shred.")
+    (license license:gpl3)))
+
 (define-public rest
   (package
     (name "rest")

base-commit: 347733bcde2edb60bc831d363971c488eb74e3f8
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#59418] [PATCH] add raider Date: Fri, 25 Nov 2022 10:53:28 +0000 User-agent: mu4e 1.8.11; emacs 28.2
Ahriman via Guix-patches via <guix-patches@gnu.org> writes:

> Hi,
> https://github.com/ADBeveridge/raider/blob/develop/meson.build has 
> meson_version: '>= 0.61.0'
>
> * gnu/packages/gnome.scm (raider): New variable.
> ---
>  gnu/packages/gnome.scm | 40 ++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 40 insertions(+)

Thanks for the updated patch, I made some minor tweaks, in particular
wrapping with GSETTINGS_SCHEMA_DIR so that it starts when run directly
from the store (like /gnu/store/.../bin/raider) and pushed to master as
123e6f5f2422f573673a5fdce88d88014bcbe0f1.

Chris

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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