GNU bug report logs - #73379
[PATCH] gnu: screentest: Update to 3.0.

Previous Next

Package: guix-patches;

Reported by: Evgeny Pisemsky <mail <at> pisemsky.site>

Date: Fri, 20 Sep 2024 11:52:02 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

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 73379 in the body.
You can then email your comments to 73379 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#73379; Package guix-patches. (Fri, 20 Sep 2024 11:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Evgeny Pisemsky <mail <at> pisemsky.site>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 20 Sep 2024 11:52:02 GMT) Full text and rfc822 format available.

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

From: Evgeny Pisemsky <mail <at> pisemsky.site>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: screentest: Update to 3.0.
Date: Fri, 20 Sep 2024 14:50:22 +0300
[0001-gnu-screentest-Update-to-3.0.patch (text/x-patch, inline)]
From d9bee5c8be44029dccb08c50337c4141e3769884 Mon Sep 17 00:00:00 2001
Message-ID: <d9bee5c8be44029dccb08c50337c4141e3769884.1726832854.git.mail <at> pisemsky.site>
From: Evgeny Pisemsky <mail <at> pisemsky.site>
Date: Fri, 20 Sep 2024 14:41:51 +0300
Subject: [PATCH] gnu: screentest: Update to 3.0.

* gnu/packages/hardware.scm (screentest): Update to 3.0.

Change-Id: I16fab59d7a25ac009094869ce1c174016ff06601
---
 gnu/packages/hardware.scm | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index d8530f8705..2922b14a42 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -1366,7 +1366,7 @@ (define-public usbguard
 (define-public screentest
   (package
     (name "screentest")
-    (version "2.1")
+    (version "3.0")
     (source
      (origin
        (method git-fetch)
@@ -1375,19 +1375,13 @@ (define-public screentest
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0gv3xj9sbk1wsyijfw9xjnvy8pg7j4arjnma2r2kfi18qy32wd30"))))
-    (build-system gnu-build-system)
-    (inputs
-     (list glib gtk+-2))
-    (native-inputs
-     (list autoconf
-           intltool
-           libtool
-           `(,glib "bin")
-           automake
-           pkg-config))
+        (base32 "00422jbl8l10iw82m9m8sikaa9fwlnj7mgzvmnnazyq383aa1dkm"))))
+    (build-system meson-build-system)
+    (inputs (list glib gtk+))
+    (native-inputs (list gettext-minimal pkg-config))
     (synopsis "Simple screen testing tool")
-    (description "This is a program for testing the quality of CRT/LCD
+    (description
+     "This is a program for testing the quality of CRT/LCD
 screens.  It displays various patterns and allows you to estimate the quality
 of your CRT/LCD monitor.")
     (home-page "https://github.com/TobiX/screentest")

base-commit: 99261e8b53d3769fe273f1750f04095e9eb25cb7
-- 
2.46.0





Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Sun, 29 Sep 2024 16:42:02 GMT) Full text and rfc822 format available.

Notification sent to Evgeny Pisemsky <mail <at> pisemsky.site>:
bug acknowledged by developer. (Sun, 29 Sep 2024 16:42:02 GMT) Full text and rfc822 format available.

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

From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Evgeny Pisemsky <mail <at> pisemsky.site>
Cc: 73379-done <at> debbugs.gnu.org
Subject: Re: [bug#73379] [PATCH] gnu: screentest: Update to 3.0.
Date: Mon, 30 Sep 2024 00:41:06 +0800
[Message part 1 (text/plain, inline)]
Evgeny Pisemsky <mail <at> pisemsky.site> writes:

> From d9bee5c8be44029dccb08c50337c4141e3769884 Mon Sep 17 00:00:00 2001
> Message-ID: <d9bee5c8be44029dccb08c50337c4141e3769884.1726832854.git.mail <at> pisemsky.site>
> From: Evgeny Pisemsky <mail <at> pisemsky.site>
> Date: Fri, 20 Sep 2024 14:41:51 +0300
> Subject: [PATCH] gnu: screentest: Update to 3.0.
>
> * gnu/packages/hardware.scm (screentest): Update to 3.0.
>
adjust to:

* gnu/packages/hardware.scm (screentest): Update to 3.0.
[build-system]: Switch to meson-build-system.
[native-inputs]: Add gettext-minimal. Remove autoconf intltool libtool
glib:bin automake.
[inputs]: Add gtk+. Remove gtk+-2.

and can see etc/committer.scm


> Change-Id: I16fab59d7a25ac009094869ce1c174016ff06601
> ---
>  gnu/packages/hardware.scm | 20 +++++++-------------
>  1 file changed, 7 insertions(+), 13 deletions(-)
>
> diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
> index d8530f8705..2922b14a42 100644
> --- a/gnu/packages/hardware.scm
> +++ b/gnu/packages/hardware.scm
> @@ -1366,7 +1366,7 @@ (define-public usbguard
>  (define-public screentest
>    (package
>      (name "screentest")
> -    (version "2.1")
> +    (version "3.0")
>      (source
>       (origin
>         (method git-fetch)
> @@ -1375,19 +1375,13 @@ (define-public screentest
>               (commit version)))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "0gv3xj9sbk1wsyijfw9xjnvy8pg7j4arjnma2r2kfi18qy32wd30"))))
> -    (build-system gnu-build-system)
> -    (inputs
> -     (list glib gtk+-2))
> -    (native-inputs
> -     (list autoconf
> -           intltool
> -           libtool
> -           `(,glib "bin")
> -           automake
> -           pkg-config))
> +        (base32 "00422jbl8l10iw82m9m8sikaa9fwlnj7mgzvmnnazyq383aa1dkm"))))
> +    (build-system meson-build-system)
> +    (inputs (list glib gtk+))
> +    (native-inputs (list gettext-minimal pkg-config))
>      (synopsis "Simple screen testing tool")
> -    (description "This is a program for testing the quality of CRT/LCD
> +    (description
> +     "This is a program for testing the quality of CRT/LCD
>  screens.  It displays various patterns and allows you to estimate the quality
>  of your CRT/LCD monitor.")
>      (home-page "https://github.com/TobiX/screentest")
>
> base-commit: 99261e8b53d3769fe273f1750f04095e9eb25cb7
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 28 Oct 2024 11:24:14 GMT) Full text and rfc822 format available.

This bug report was last modified 230 days ago.

Previous Next


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