GNU bug report logs - #64000
[PATCH 1/2] gnu: tessen: Update to 2.2.1.

Previous Next

Package: guix-patches;

Reported by: Hilton Chain <hako <at> ultrarare.space>

Date: Sat, 10 Jun 2023 12:15:01 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

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 64000 in the body.
You can then email your comments to 64000 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#64000; Package guix-patches. (Sat, 10 Jun 2023 12:15:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Hilton Chain <hako <at> ultrarare.space>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 10 Jun 2023 12:15:01 GMT) Full text and rfc822 format available.

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

From: Hilton Chain <hako <at> ultrarare.space>
To: guix-patches <at> gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH 1/2] gnu: tessen: Update to 2.2.1.
Date: Sat, 10 Jun 2023 19:57:51 +0800
* gnu/packages/password-utils.scm (tessen): Update to 2.2.1.
[arguments]<#:make-flags>: Set DESTDIR.
[license]: License has been changed to GPL2-only.
---
 gnu/packages/password-utils.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 74e465d21e..5caf0b80b5 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -859,7 +859,7 @@ (define-public rofi-pass
 (define-public tessen
   (package
     (name "tessen")
-    (version "2.1.2")
+    (version "2.2.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -868,7 +868,7 @@ (define-public tessen
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "01jaxakq847k3v2wid8fzhcmq8mraxz0q1j87s1jv75l1gy4qiij"))))
+                "0v0mkdwwxpy23fm5dqspp9c77b5ifcj7fsi8xhjrkrv1vqwmh67j"))))
     (build-system gnu-build-system)
     (arguments
      (list #:tests?
@@ -885,15 +885,15 @@ (define-public tessen
                      (("xdg-open") (search-input-file inputs "/bin/xdg-open")))))
                (delete 'configure)) ;no configure script
            #:make-flags
-           #~(list (string-append "PREFIX="
-                                  #$output))))
+           #~(list (string-append "DESTDIR=" #$output)
+                   "PREFIX=''")))
     (native-inputs (list scdoc))
     (inputs (list libnotify wl-clipboard wtype xdg-utils))
     (home-page "https://github.com/ayushnix/tessen")
     (synopsis "Frontend for password-store and gopass")
     (description "Tessen is a bash script that can autotype and copy data
 from password-store and gopass files.")
-    (license license:gpl2+)))
+    (license license:gpl2)))
 
 (define-public browserpass-native
   (package

base-commit: 9504dd2c3eef0277369acc0944f87fb4546251b1
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64000; Package guix-patches. (Sat, 10 Jun 2023 12:17:01 GMT) Full text and rfc822 format available.

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

From: Hilton Chain <hako <at> ultrarare.space>
To: 64000 <at> debbugs.gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH 2/2] gnu: tessen: Wrap script.
Date: Sat, 10 Jun 2023 20:16:23 +0800
* gnu/packages/password-utils.scm (tessen)[arguments]<#:phases> Add phase
wrap.
Remove phase patch-wtype-path.
[inputs]: Add guile-3.0.
---
 gnu/packages/password-utils.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 5caf0b80b5..afd5109b31 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -875,20 +875,20 @@ (define-public tessen
            #f ;no tests
            #:phases
            #~(modify-phases %standard-phases
-               (add-after 'unpack 'patch-wtype-path
+               (add-after 'install 'wrap
                  (lambda* (#:key inputs #:allow-other-keys)
-                   (substitute* "tessen"
-                     (("notify-send") (search-input-file inputs
-                                                         "/bin/notify-send"))
-                     (("wl-copy") (search-input-file inputs "/bin/wl-copy"))
-                     (("wtype") (search-input-file inputs "/bin/wtype"))
-                     (("xdg-open") (search-input-file inputs "/bin/xdg-open")))))
+                   (wrap-script (string-append #$output "/bin/tessen")
+                     `("PATH" suffix
+                       ,(map (lambda (program)
+                               (dirname (search-input-file
+                                         inputs (string-append "/bin/" program))))
+                             '("notify-send" "wl-copy" "wtype" "xdg-open"))))))
                (delete 'configure)) ;no configure script
            #:make-flags
            #~(list (string-append "DESTDIR=" #$output)
                    "PREFIX=''")))
     (native-inputs (list scdoc))
-    (inputs (list libnotify wl-clipboard wtype xdg-utils))
+    (inputs (list guile-3.0 libnotify wl-clipboard wtype xdg-utils))
     (home-page "https://github.com/ayushnix/tessen")
     (synopsis "Frontend for password-store and gopass")
     (description "Tessen is a bash script that can autotype and copy data
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64000; Package guix-patches. (Wed, 19 Jul 2023 15:38:02 GMT) Full text and rfc822 format available.

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

From: Hilton Chain <hako <at> ultrarare.space>
To: 64000 <at> debbugs.gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH v2] gnu: tessen: Update to 2.2.1.
Date: Wed, 19 Jul 2023 23:37:22 +0800
* gnu/packages/password-utils.scm (tessen): Update to 2.2.1.
[arguments]<#:make-flags>: Set DESTDIR.
[license]: License has been changed to GPL2-only.
---
v1 -> v2:
No change on [PATCH 1/2] (gnu: tessen: Update to 2.2.1.)
Removed [PATCH 2/2] (gnu: tessen: Wrap script.)

 gnu/packages/password-utils.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 06e00a69d4..aa911120f3 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -959,7 +959,7 @@ (define-public rofi-pass
 (define-public tessen
   (package
     (name "tessen")
-    (version "2.1.2")
+    (version "2.2.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -968,7 +968,7 @@ (define-public tessen
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "01jaxakq847k3v2wid8fzhcmq8mraxz0q1j87s1jv75l1gy4qiij"))))
+                "0v0mkdwwxpy23fm5dqspp9c77b5ifcj7fsi8xhjrkrv1vqwmh67j"))))
     (build-system gnu-build-system)
     (arguments
      (list #:tests?
@@ -985,15 +985,15 @@ (define-public tessen
                      (("xdg-open") (search-input-file inputs "/bin/xdg-open")))))
                (delete 'configure)) ;no configure script
            #:make-flags
-           #~(list (string-append "PREFIX="
-                                  #$output))))
+           #~(list (string-append "DESTDIR=" #$output)
+                   "PREFIX=''")))
     (native-inputs (list scdoc))
     (inputs (list libnotify wl-clipboard wtype xdg-utils))
     (home-page "https://github.com/ayushnix/tessen")
     (synopsis "Frontend for password-store and gopass")
     (description "Tessen is a bash script that can autotype and copy data
 from password-store and gopass files.")
-    (license license:gpl2+)))
+    (license license:gpl2)))
 
 (define-public browserpass-native
   (package

base-commit: b2750695f72519286cb0530431396767588cc67d
-- 
2.41.0





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Sat, 22 Jul 2023 03:38:01 GMT) Full text and rfc822 format available.

Notification sent to Hilton Chain <hako <at> ultrarare.space>:
bug acknowledged by developer. (Sat, 22 Jul 2023 03:38:02 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: Hilton Chain <hako <at> ultrarare.space>
Cc: 64000-done <at> debbugs.gnu.org
Subject: Re: bug#64000: [PATCH 1/2] gnu: tessen: Update to 2.2.1.
Date: Sat, 22 Jul 2023 11:37:37 +0800
Hilton Chain <hako <at> ultrarare.space> writes:

> * gnu/packages/password-utils.scm (tessen): Update to 2.2.1.
> [arguments]<#:make-flags>: Set DESTDIR.
> [license]: License has been changed to GPL2-only.
> ---
> v1 -> v2:
> No change on [PATCH 1/2] (gnu: tessen: Update to 2.2.1.)
> Removed [PATCH 2/2] (gnu: tessen: Wrap script.)

Applied, thank you!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 19 Aug 2023 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 309 days ago.

Previous Next


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