GNU bug report logs - #52858
[PATCH] gnu: passwordsafe: Update to 5.1.

Previous Next

Package: guix-patches;

Reported by: raingloom <raingloom <at> riseup.net>

Date: Tue, 28 Dec 2021 21:10:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 52858 in the body.
You can then email your comments to 52858 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#52858; Package guix-patches. (Tue, 28 Dec 2021 21:10:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to raingloom <raingloom <at> riseup.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 28 Dec 2021 21:10:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: raingloom <raingloom <at> riseup.net>
To: Guix Patches <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: passwordsafe: Update to 5.1.
Date: Tue, 28 Dec 2021 22:09:13 +0100
* gnu/packages/gnome.scm (passwordsafe): Update to 5.1.
* gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch:
  New file.
* gnu/local.mk: Add it.
---
 gnu/local.mk                                  |  1 +
 gnu/packages/gnome.scm                        |  7 ++++---
 ...wordsafe-meson-remove-extra-argument.patch | 20 +++++++++++++++++++
 3 files changed, 25 insertions(+), 3 deletions(-)
 create mode 100644
  gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 72fa405e17..0cac2b5508 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1570,6 +1570,7 @@ dist_patch_DATA =
		\
%D%/packages/patches/p7zip-remove-unused-code.patch		\
%D%/packages/patches/pam-krb5-CVE-2020-10595.patch		\
%D%/packages/patches/pango-skip-libthai-test.patch		\
+
%D%/packages/patches/passwordsafe-meson-remove-extra-argument.patch
\ %D%/packages/patches/pciutils-hurd-configure.patch		\
%D%/packages/patches/pciutils-hurd-fix.patch			\
%D%/packages/patches/pitivi-fix-build-with-meson-0.60.patch	\
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index
47178a9de9..d98d1968e8 100644 --- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10707,16 +10707,17 @@ (define-public cheese
 (define-public passwordsafe
   (package
     (name "passwordsafe")
-    (version "5.0")
+    (version "5.1")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://gitlab.gnome.org/World/PasswordSafe")
+             (url "https://gitlab.gnome.org/World/secrets")
              (commit version)))
        (file-name (git-file-name name version))
+       (patches (search-patches
"passwordsafe-meson-remove-extra-argument.patch")) (sha256
-        (base32
"1xh64bbg10gnfzlck5jvqy2zk6hbk9cyqgv85xc9kbdvs8n4lhgh"))))
+        (base32
"0kd43j6i017wdsqj6d5gnxhfv4ijnh3xahlw7md2gh51i8p682j6"))))
(build-system meson-build-system) (arguments
      `(#:glib-or-gtk? #t
diff --git
a/gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch
b/gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch
new file mode 100644 index 0000000000..3cb61a364a --- /dev/null
+++
b/gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch
@@ -0,0 +1,20 @@ +diff --git a/data/meson.build b/data/meson.build
+index 46f6373..26a2c18 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -35,7 +35,6 @@ if get_option('profile') == 'development'
+ endif
+ desktop_conf.set('ICON', application_id)
+ desktop = i18n.merge_file(
+-  'desktop',
+   input: configure_file(
+     input: files('org.gnome.PasswordSafe.desktop.in.in'),
+     output: 'org.gnome.PasswordSafe.desktop.in',
+@@ -65,7 +64,6 @@ if get_option('profile') == 'development'
+ endif
+ appdata_conf.set('APPID', application_id)
+ appdata = i18n.merge_file(
+-  'appdata',
+   input: configure_file(
+     input: files('org.gnome.PasswordSafe.appdata.xml.in.in'),
+     output: 'org.gnome.PasswordSafe.appdata.xml.in',
-- 
2.34.0




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 15 Jan 2022 21:58:02 GMT) Full text and rfc822 format available.

Notification sent to raingloom <raingloom <at> riseup.net>:
bug acknowledged by developer. (Sat, 15 Jan 2022 21:58:02 GMT) Full text and rfc822 format available.

Message #10 received at 52858-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: raingloom <raingloom <at> riseup.net>
Cc: 52858-done <at> debbugs.gnu.org
Subject: Re: bug#52858: [PATCH] gnu: passwordsafe: Update to 5.1.
Date: Sat, 15 Jan 2022 22:57:28 +0100
Hi,

raingloom <raingloom <at> riseup.net> skribis:

> * gnu/packages/gnome.scm (passwordsafe): Update to 5.1.
> * gnu/packages/patches/passwordsafe-meson-remove-extra-argument.patch:
>   New file.
> * gnu/local.mk: Add it.

Applied, thanks!

Please use ‘git send-email’ or attach the patch next time; this one got
mangled and I had to “repair” it, which is a bit tedious.

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 13 Feb 2022 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 67 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.